diff --git a/.gitignore b/.gitignore index 1ed333673..5facb22a4 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,9 @@ dist/ build/ *.egg-info/ helpers/* -json_template/ \ No newline at end of file +json_template/ + +lib/ +bin/ +pyvenv.cfg + diff --git a/backend/app.py b/backend/app.py index 296c3cfbf..bf04ed519 100644 --- a/backend/app.py +++ b/backend/app.py @@ -4,43 +4,123 @@ from flask_cors import CORS from helpers.MySQLDatabaseHandler import MySQLDatabaseHandler import pandas as pd - -# ROOT_PATH for linking with all your files. +import re +from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer +from sklearn.metrics.pairwise import cosine_similarity +from nltk.stem import PorterStemmer +ps = PorterStemmer() +# ROOT_PATH for linking with all your files. # Feel free to use a config.py or settings.py with a global export variable -os.environ['ROOT_PATH'] = os.path.abspath(os.path.join("..",os.curdir)) +os.environ['ROOT_PATH'] = os.path.abspath(os.path.join("..", os.curdir)) # Get the directory of the current script current_directory = os.path.dirname(os.path.abspath(__file__)) - +print(current_directory) # Specify the path to the JSON file relative to the current script json_file_path = os.path.join(current_directory, 'init.json') # Assuming your JSON data is stored in a file named 'init.json' with open(json_file_path, 'r') as file: - data = json.load(file) - episodes_df = pd.DataFrame(data['episodes']) - reviews_df = pd.DataFrame(data['reviews']) + tweets_data = json.load(file) + + +###### +word_regex = re.compile(r""" + (\w+) + """, re.VERBOSE) + + +def getwords(sent): + return [w.lower() + for w in word_regex.findall(sent)] + + +splitter = re.compile(r""" + (? 1 and len(item) < 20] + # we want real words + sent_words_lower = [ps.stem(word) for word in sent_words_lower] + words += sent_words_lower + + list_words.append(words) + key += 1 + + +# print(set_words[1]) +for i in range(0, len(list_words)): + list_words[i] = " ".join(list_words[i]) +# print(len(list_words[1])) + + +vectorizer = TfidfVectorizer() +counter = CountVectorizer() + +# TD-IDF Matrix +tfidf = vectorizer.fit_transform(list_words) +print("HERE") +print(cosine_similarity(tfidf, tfidf)) app = Flask(__name__) CORS(app) # Sample search using json with pandas -def json_search(query): - matches = [] - merged_df = pd.merge(episodes_df, reviews_df, left_on='id', right_on='id', how='inner') - matches = merged_df[merged_df['title'].str.lower().str.contains(query.lower())] - matches_filtered = matches[['title', 'descr', 'imdb_rating']] - matches_filtered_json = matches_filtered.to_json(orient='records') - return matches_filtered_json + + +def cossim_search(query): + # matches = [] + + list_words.append(query.lower()) + tfidf = vectorizer.fit_transform(list_words) + cossim = cosine_similarity(tfidf, tfidf) + print(cossim) + relevant = (-cossim[-1]).argsort()[1:min(len(cossim[-1]), 3)] + ret = [] + # print(relevant) + for r in relevant: + # print(r) + if r != len(cossim[-1]) - 1: + ret.append(list(tweets_data.keys())[r]) + data = { + "matches": ret, + } + print(json.dumps(data)) + list_words.remove(query.lower()) + return json.dumps(data) + + # merged_df = pd.merge(episodes_df, reviews_df, + # left_on='id', right_on='id', how='inner') + # matches = merged_df[merged_df['title'].str.lower( + # ).str.contains(query.lower())] + # matches_filtered = matches[['title', 'descr', 'imdb_rating']] + # matches_filtered_json = matches_filtered.to_json(orient='records') + # return matches_filtered_json + +# we should also print out tweets/popularity + @app.route("/") def home(): - return render_template('base.html',title="sample html") + return render_template('base.html', title="sample html") + @app.route("/episodes") def episodes_search(): text = request.args.get("title") - return json_search(text) + return cossim_search(text) + if 'DB_NAME' not in os.environ: - app.run(debug=True,host="0.0.0.0",port=5000) \ No newline at end of file + app.run(debug=True, host="0.0.0.0", port=5000) diff --git a/backend/experimental/cosine_sim.py b/backend/experimental/cosine_sim.py new file mode 100644 index 000000000..23c861abe --- /dev/null +++ b/backend/experimental/cosine_sim.py @@ -0,0 +1,346 @@ +import numpy as np +import nltk +import csv +import pandas as pd +from nltk.tokenize import TreebankWordTokenizer +import math +import json + +treebank_tokenizer = TreebankWordTokenizer() + + +def build_inverted_index(msgs): + """ Builds an inverted index from the messages. + + Arguments + ========= + + msgs: list of lists. + Each message in this list is represented as a list of tokens + in the lyrics. + e.g. ['eyes', 'transfixed', 'deadly', 'riff', 'future'] + + Returns + ======= + + inverted_index: dict + For each term, the index contains + a sorted list of tuples (doc_id, count_of_term_in_doc) + such that tuples with smaller doc_ids appear first: + inverted_index[term] = [(d1, tf1), (d2, tf2), ...] + + Example + ======= + + >> test_idx = build_inverted_index([ + ... ['yeah', 'bro'], + ... ['yeah', 'yeah'] + ...]) + + >> test_idx['yeah'] + [(0, 1), (1, 2)] + + >> test_idx['bro'] + [(0, 1)] + + """ + # YOUR CODE HERE + inverted_index = {} + + for i, tokens in enumerate(msgs): + term_count = {} + for token in tokens: + if not (token in term_count): + term_count[token] = 1 + else: + term_count[token] += 1 + + for term in term_count: + if not (term in inverted_index): + inverted_index[term] = [(i, term_count[term])] + else: + inverted_index[term].append((i, term_count[term])) + + return inverted_index + + +def compute_idf(inv_idx, n_docs, min_df=10, max_df_ratio=0.95): + """ Compute term IDF values from the inverted index. + Words that are too frequent or too infrequent get pruned. + + Hint: Make sure to use log base 2. + + Arguments + ========= + + inv_idx: an inverted index as above + + n_docs: int, + The number of documents. + + min_df: int, + Minimum number of documents a term must occur in. + Less frequent words get ignored. + Documents that appear min_df number of times should be included. + + max_df_ratio: float, + Maximum ratio of documents a term can occur in. + More frequent words get ignored. + + Returns + ======= + + idf: dict + For each term, the dict contains the idf value. + + """ + + # YOUR CODE HERE + idf = {} + + for term in inv_idx: + df = len(inv_idx[term]) + df_percent = df / n_docs + + if df >= 10 and df_percent <= max_df_ratio: + # compute IDF + idf[term] = math.log2(n_docs / (1+df)) + + return idf + + +def compute_doc_norms(index, idf, n_docs): + """ Precompute the euclidean norm of each document. + + Arguments + ========= + + index: the inverted index as above + + idf: dict, + Precomputed idf values for the terms. + + n_docs: int, + The total number of documents. + + Returns + ======= + + norms: np.array, size: n_docs + norms[i] = the norm of document i. + """ + + # YOUR CODE HERE + doc_norms = np.zeros(n_docs) + + for term in idf: + for doc_id, tf in index[term]: + term_idf = idf[term] + doc_norms[doc_id] += (tf * term_idf)**2 + + return np.sqrt(doc_norms) + + +def accumulate_dot_scores(query_word_counts, index, idf): + """ Perform a term-at-a-time iteration to efficiently compute the numerator term of cosine similarity across multiple documents. + + Arguments + ========= + + query_word_counts: dict, + A dictionary containing all words that appear in the query; + Each word is mapped to a count of how many times it appears in the query. + In other words, query_word_counts[w] = the term frequency of w in the query. + You may safely assume all words in the dict have been already lowercased. + + index: the inverted index as above, + + idf: dict, + Precomputed idf values for the terms. + + Returns + ======= + + doc_scores: dict + Dictionary mapping from doc ID to the final accumulated score for that doc + """ + + # YOUR CODE HERE + doc_scores = {} + doc_keywords = {} + for word in query_word_counts: + q_i = query_word_counts[word] * idf[word] + + for doc_id, tf in index[word]: + d_ij = tf * idf[word] + if not (doc_id in doc_scores): + doc_scores[doc_id] = 0 + if not (doc_id in doc_keywords): + doc_keywords[doc_id] = [] + + doc_scores[doc_id] += q_i * d_ij + doc_keywords[doc_id].append((word, q_i * d_ij)) + + return (doc_scores, doc_keywords) + + +def text_to_term_dict(text): + text = text.split() + text_dict = {} + for token in text: + if token in text_dict: + text_dict[token] += 1 + else: + text_dict[token] = 1 + + return text_dict + + +def index_search(query, index, idf, doc_norms, score_func=accumulate_dot_scores, tokenizer=treebank_tokenizer): + """ Search the collection of documents for the given query + + Arguments + ========= + + query: string, + The query we are looking for. + + index: an inverted index as above + + idf: idf values precomputed as above + + doc_norms: document norms as computed above + + score_func: function, + A function that computes the numerator term of cosine similarity (the dot product) for all documents. + Takes as input a dictionary of query word counts, the inverted index, and precomputed idf values. + (See Q7) + + tokenizer: a TreebankWordTokenizer + + Returns + ======= + + results, list of tuples (score, doc_id) + Sorted list of results such that the first element has + the highest score, and `doc_id` points to the document + with the highest score. + + Note: + + """ + + # YOUR CODE HERE + query = query.lower() + query_words = tokenizer.tokenize(query) + + # calculate word count in query + query_word_count = {} + for word in query_words: + if word in idf: + if not (word in query_word_count): + query_word_count[word] = 0 + query_word_count[word] += 1 + + # compute query norm + q_norm = 0 + for word in query_word_count: + q_norm += (query_word_count[word] * idf[word]) ** 2 + q_norm = math.sqrt(q_norm) + + # compute numerator for all documents + dot_prods = score_func(query_word_count, index, idf) + + # for each document, compute the sim score + cosine_sim = [] + + for i, d_norm in enumerate(doc_norms): + numerator = dot_prods[i] if i in dot_prods else 0 + score = 0 if d_norm == 0 else numerator / (q_norm * d_norm) + cosine_sim.append((score, i)) + + return sorted(cosine_sim, key=lambda x: x[0], reverse=True) + + +def result_to_json(first_25_songs): + song_list = [] + for query_result in first_25_songs.values(): + song = {} + song['title'] = query_result['track_name'] + song['genre'] = query_result['playlist_genre'] + song['duration'] = query_result['duration_ms'] + song['artist'] = query_result['track_artist'] + + # process lyrics to a long string with new lines after each lyric line + lyrics = query_result['lyrics'] + lyrics = lyrics[1:-1] # brute force way to remove [] on both sides + # remove beginning and ending quotations marks in the strings + lyrics = [l.strip()[1:-1] for l in lyrics.split(',')] + song['lyrics'] = '\n'.join(lyrics) + + song['popularity'] = query_result['track_popularity'] + features = {} + features['danceability'] = query_result['danceability'] + features['energy'] = query_result['energy'] + features['key'] = query_result['key'] + features['loudness'] = query_result['loudness'] + features['mode'] = query_result['mode'] + features['speechiness'] = query_result['speechiness'] + features['acousticness'] = query_result['acousticness'] + features['instrumentalness'] = query_result['instrumentalness'] + features['liveness'] = query_result['liveness'] + features['valence'] = query_result['valence'] + features['tempo'] = query_result['tempo'] + song['features'] = features + song_list.append(song) + return song_list + + +def compute_cosine_tuple(df): + inverted_index = build_inverted_index(df['tokens']) + n_docs = df.shape[0] + lyric_idf = compute_idf(inverted_index, n_docs) + doc_norms = compute_doc_norms(inverted_index, lyric_idf, n_docs) + + return (inverted_index, n_docs, lyric_idf, doc_norms) + + +# # precompute inverted index and idf +# pd.set_option('max_colwidth', 600) +# songs_df = pd.read_csv("clean_spotify.csv") +# movies_df = pd.read_csv("clean_movie_dataset.csv") + +# # extract lyrics and movie tokens as list of strings +# songs_df['tokens'] = songs_df["clean lyrics"].apply(eval) +# movies_df['tokens'] = movies_df["clean about"].apply(eval) + +# # build inverted index of song lyrics +# inverted_lyric_index = build_inverted_index(songs_df['tokens']) + +# # build idf +# n_docs = songs_df.shape[0] +# lyric_idf = compute_idf(inverted_lyric_index, n_docs) + +# # build norms +# doc_norms = compute_doc_norms(inverted_lyric_index, lyric_idf, n_docs) + +# target_movie = movies_df[movies_df['title'].str.lower() == "the dark knight"].iloc[0] +# movie_tokens = target_movie['tokens'] +# movie_about = target_movie['about'].lower() +# print(movie_about) + +# ranked_cosine_score = index_search( +# movie_about, +# inverted_lyric_index, +# lyric_idf, +# doc_norms +# ) + +# first_25_scores = ranked_cosine_score[:25] +# first_25_index = [ind for _, ind in first_25_scores] +# first_25_songs = songs_df.iloc[first_25_index].to_dict('index') + +# # return the values as a list of dictionaries +# song_list = result_to_json(first_25_songs) + +# print(song_list[0]['lyrics']) diff --git a/backend/experimental/init.json b/backend/experimental/init.json new file mode 100644 index 000000000..8b5fa7b43 --- /dev/null +++ b/backend/experimental/init.json @@ -0,0 +1,1856 @@ +{ + "Donald J. Trump": [ + { + "Retweets": "478K", + "Likes": "0", + "Content": "http://DONALDJTRUMP.COM" + }, + { + "Retweets": "183K", + "Likes": "695K", + "Content": "To all of those who have asked, I will not be going to the Inauguration on January 20th." + }, + { + "Retweets": "128K", + "Likes": "596K", + "Content": "The 75,000,000 great American Patriots who voted for me, AMERICA FIRST, and MAKE AMERICA GREAT AGAIN, will have a GIANT VOICE long into the future. They will not be disrespected or treated unfairly in any way, shape or form!!!" + }, + { + "Retweets": "244K", + "Likes": "766K", + "Content": "I am asking for everyone at the U.S. Capitol to remain peaceful. No violence! Remember, WE are the Party of Law & Order \u2013 respect the Law and our great men and women in Blue. Thank you!" + }, + { + "Retweets": "134K", + "Likes": "556K", + "Content": "Please support our Capitol Police and Law Enforcement. They are truly on the side of our Country. Stay peaceful!" + }, + { + "Retweets": "38K", + "Likes": "202K", + "Content": "These scoundrels are only toying with the (a great guy) vote. Just didn\u2019t want to announce quite yet. They\u2019ve got as many ballots as are necessary. Rigged Election!" + }, + { + "Retweets": "71K", + "Likes": "412K", + "Content": "Even Mexico uses Voter I.D." + }, + { + "Retweets": "47K", + "Likes": "244K", + "Content": "The States want to redo their votes. They found out they voted on a FRAUD. Legislatures never approved. Let them do it. BE STRONG!" + }, + { + "Retweets": "68K", + "Likes": "303K", + "Content": "They just happened to find 50,000 ballots late last night. The USA is embarrassed by fools. Our Election Process is worse than that of third world countries!" + }, + { + "Retweets": "46K", + "Likes": "272K", + "Content": "THE REPUBLICAN PARTY AND, MORE IMPORTANTLY, OUR COUNTRY, NEEDS THE PRESIDENCY MORE THAN EVER BEFORE - THE POWER OF THE VETO. STAY STRONG!" + }, + { + "Retweets": "45K", + "Likes": "197K", + "Content": "States want to correct their votes, which they now know were based on irregularities and fraud, plus corrupt process never received legislative approval. All Mike Pence has to do is send them back to the States, AND WE WIN. Do it Mike, this is a time for extreme courage!" + }, + { + "Retweets": "24K", + "Likes": "152K", + "Content": "Sleepy Eyes Chuck Todd is so happy with the fake voter tabulation process that he can\u2019t even get the words out straight. Sad to watch!" + }, + { + "Retweets": "52K", + "Likes": "216K", + "Content": "If Vice President comes through for us, we will win the Presidency. Many States want to decertify the mistake they made in certifying incorrect & even fraudulent numbers in a process NOT approved by their State Legislatures (which it must be). Mike can send it back!" + }, + { + "Retweets": "28K", + "Likes": "127K", + "Content": "WOW! We hear you from the West Wing\u2014THANK YOU" + }, + { + "Retweets": "18K", + "Likes": "110K", + "Content": "Pennsylvania is going to Trump. The legislators have spoken." + }, + { + "Retweets": "17K", + "Likes": "98K", + "Content": "Get smart Republicans. FIGHT!" + }, + { + "Retweets": "7.9K", + "Likes": "67K", + "Content": "I wonder when the water main is gonna burst in Georgia...." + }, + { + "Retweets": "10K", + "Likes": "57K", + "Content": "Democrats scrounging up votes from mystical places again...." + }, + { + "Retweets": "12K", + "Likes": "79K", + "Content": "The steal is in the making in Georgia. Wait for it." + }, + { + "Retweets": "21K", + "Likes": "104K", + "Content": "Why are they stopping the vote count in Democrat Chatham county, Georgia?\n\nThis sounds familiar! " + }, + { + "Retweets": "46K", + "Likes": "224K", + "Content": "Just happened to have found another 4000 ballots from Fulton County. Here we go!" + }, + { + "Retweets": "52K", + "Likes": "236K", + "Content": "Looks like they are setting up a big \u201cvoter dump\u201d against the Republican candidates. Waiting to see how many votes they need?" + }, + { + "Retweets": "47K", + "Likes": "193K", + "Content": "BIG NEWS IN PENNSYLVANIA!" + }, + { + "Retweets": "25K", + "Likes": "99K", + "Content": "For nine weeks, Democrats have been afraid to have a real debate on election integrity. \n\nWhy?" + }, + { + "Retweets": "31K", + "Likes": "135K", + "Content": "I will be speaking at the SAVE AMERICA RALLY tomorrow on the Ellipse at 11AM Eastern. Arrive early \u2014 doors open at 7AM Eastern. BIG CROWDS!" + }, + { + "Retweets": "45K", + "Likes": "194K", + "Content": "Antifa is a Terrorist Organization, stay out of Washington. Law enforcement is watching you very closely! " + }, + { + "Retweets": "33K", + "Likes": "143K", + "Content": "I hope the Democrats, and even more importantly, the weak and ineffective RINO section of the Republican Party, are looking at the thousands of people pouring into D.C. They won\u2019t stand for a landslide election victory to be stolen. @senatemajldr " + }, + { + "Retweets": "50K", + "Likes": "226K", + "Content": "Washington is being inundated with people who don\u2019t want to see an election victory stolen by emboldened Radical Left Democrats. Our Country has had enough, they won\u2019t take it anymore! We hear you (and love you) from the Oval Office. MAKE AMERICA GREAT AGAIN!" + }, + { + "Retweets": "20K", + "Likes": "120K", + "Content": "GEORGIA! Get out today and VOTE for and @Perduesenate!" + }, + { + "Retweets": "34K", + "Likes": "135K", + "Content": "Reports are coming out of the 12th Congressional District of Georgia that Dominion Machines are not working in certain Republican Strongholds for over an hour. Ballots are being left in lock boxes, hopefully they count them. Thank you Congressman !" + }, + { + "Retweets": "6.4K", + "Likes": "39K", + "Content": "Thank you, . Go vote, Georgia!" + }, + { + "Retweets": "6.6K", + "Likes": "31K", + "Content": "Georgia, we have a job to do TODAY. \n\nWe have to STOP socialism. \n\nWe have to PROTECT the American Dream. \n\nWe have to SAVE our country! \n\nVOTE! #gapol #gasen" + }, + { + "Retweets": "5.2K", + "Likes": "28K", + "Content": "It\u2019s lunchtime. Have you voted yet? \n\nIf you haven\u2019t \u2014 GO VOTE and bring 10 people know! \n\nIf you have \u2014 call your family, friends, and neighbors to make sure they have too! #gapol #gasen" + }, + { + "Retweets": "5.6K", + "Likes": "27K", + "Content": "The Trump family is right \u2014 we need YOU to get out and vote today to defend our majority and defend America! #GASen #gapol" + }, + { + "Retweets": "69K", + "Likes": "310K", + "Content": "The Vice President has the power to reject fraudulently chosen electors." + }, + { + "Retweets": "14K", + "Likes": "85K", + "Content": "See you in D.C." + }, + { + "Retweets": "24K", + "Likes": "150K", + "Content": "Georgia, get out and VOTE for two great Senators, and . So important to do so!" + }, + { + "Retweets": "25K", + "Likes": "119K", + "Content": "Pleased to announce that & have just joined our great #StopTheSteal group of Senators. They will fight the ridiculous Electoral College Certification of Biden. How do you certify numbers that have now proven to be wrong and, in many cases, fraudulent!" + }, + { + "Retweets": "21K", + "Likes": "100K", + "Content": "https://pscp.tv/w/csKFZDEyMzE3NDF8MU95SkFFblllTk5KYin7ZbG5hndqbEy27bUnTj5L4vySHotzFeXv5QAa93Qq?t=1s\u2026" + }, + { + "Retweets": "20K", + "Likes": "130K", + "Content": "On my way, see you soon!" + }, + { + "Retweets": "25K", + "Likes": "225K", + "Content": "Heading to Georgia now. See you soon!" + }, + { + "Retweets": "37K", + "Likes": "155K", + "Content": "The \u201cSurrender Caucus\u201d within the Republican Party will go down in infamy as weak and ineffective \u201cguardians\u201d of our Nation, who were willing to accept the certification of fraudulent presidential numbers!" + }, + { + "Retweets": "34K", + "Likes": "184K", + "Content": "\u201cWe are not acting to thwart the Democratic process, we are acting to protect it.\u201d " + }, + { + "Retweets": "32K", + "Likes": "167K", + "Content": "\u201cWe\u2019ve seen in the last few months, unprecedented amounts of Voter Fraud.\u201d True!" + }, + { + "Retweets": "33K", + "Likes": "138K", + "Content": "How can you certify an election when the numbers being certified are verifiably WRONG. You will see the real numbers tonight during my speech, but especially on JANUARY 6th. Republicans have pluses & minuses, but one thing is sure, THEY NEVER FORGET!" + }, + { + "Retweets": "28K", + "Likes": "125K", + "Content": "I will be there. Historic day!" + }, + { + "Retweets": "39K", + "Likes": "190K", + "Content": "Sorry, but the number of votes in the Swing States that we are talking about is VERY LARGE and totally OUTCOME DETERMINATIVE! Only the Democrats and some RINO\u2019S would dare dispute this - even though they know it is true!" + }, + { + "Retweets": "32K", + "Likes": "141K", + "Content": "The Swing States did not even come close to following the dictates of their State Legislatures. These States \u201celection laws\u201d were made up by local judges & politicians, not by their Legislatures, & are therefore, before even getting to irregularities & fraud, UNCONSTITUTIONAL!" + }, + { + "Retweets": "10K", + "Likes": "66K", + "Content": ".... @senatemajldr @GOPLeader & THE WORLD!" + }, + { + "Retweets": "16K", + "Likes": "74K", + "Content": "Trump Speaks to State Legislators on Call About Decertifying Election https://breitbart.com/politics/2021/01/03/president-trump-joins-call-urging-state-legislators-to-review-evidence-and-consider-decertifying-unlawful-election-results/\u2026 via " + }, + { + "Retweets": "10K", + "Likes": "39K", + "Content": "We are excited to announce the site of our January 6th event will be The Ellipse in the President\u2019s Park, just steps from the White House!\n\nJoin us January 6th, doors will open at 7am & you\u2019ll want to get there early!\n\nRSVP @ http://TrumpMarch.com!#MarchForTrump #StopTheSteal" + }, + { + "Retweets": "5.3K", + "Likes": "25K", + "Content": "Arkansas, you were !\nNext stop: Cape Girardeau, Mo. Bus Tour Livestream provided by .#JAN6 #StopTheSteal #MarchForTrump" + }, + { + "Retweets": "6.2K", + "Likes": "25K", + "Content": "Why are my own #GA Senators \u2066\u2069 & \u2066@Perduesenate\u2069 not supporting this effort?\n\n\u2066\u2069 \u2066\u2069 #DoNotCertify #StoptheSteal #MillionMagaMarch #JAN6 #GAsen #gagop" + }, + { + "Retweets": "5.3K", + "Likes": "24K", + "Content": "Leaders!" + }, + { + "Retweets": "28K", + "Likes": "125K", + "Content": "I will be there. Historic day!" + }, + { + "Retweets": "5.9K", + "Likes": "33K", + "Content": " My President" + }, + { + "Retweets": "4.8K", + "Likes": "22K", + "Content": "They only had 5 people RSVP and Hunter wasn\u2019t one of them..." + }, + { + "Retweets": "4.7K", + "Likes": "26K", + "Content": "The #MarchForTrump bus has gone to more states than Joe Biden has supporters!" + }, + { + "Retweets": "8.1K", + "Likes": "48K", + "Content": "Great!" + }, + { + "Retweets": "5K", + "Likes": "23K", + "Content": "The #MarchForTrump bus rolls into Bowling Green today at 12 noon.\n\nSenator , come join us & pledge to contest the electoral college for states in which we know there was voter fraud. \n\nWe welcome you, Senator.#SaveAmerica #DoNotCertify #MillionMagaMarch #StopTheSteaI" + }, + { + "Retweets": "15K", + "Likes": "56K", + "Content": "This \u201celection\u201d was stolen from the voters in a massive fraud that you & others are now complicit in. American elections are supposed to be completely auditable and transparent. #WeThePeople demand the Truth & the prosecutions of all who committed voter fraud. " + }, + { + "Retweets": "9.8K", + "Likes": "48K", + "Content": "We The People Refuse To Concede To A Fraudulent Election!!" + }, + { + "Retweets": "6.4K", + "Likes": "30K", + "Content": "If you only do what's easy, you will seldom do what's right." + }, + { + "Retweets": "4.9K", + "Likes": "19K", + "Content": "42 U.S.C. 1974\nRetention and preservation of records and papers by officers of elections; deposit with custodian; penalty for violationhttps://govinfo.gov/app/details/USCODE-2010-title42/USCODE-2010-title42-chap20-subchapII-sec1974/summary\u2026" + }, + { + "Retweets": "7.3K", + "Likes": "33K", + "Content": "Hillary canceled her fireworks show a few days before the 2016 General Election." + }, + { + "Retweets": "14K", + "Likes": "64K", + "Content": "If you are planning to attend peaceful protests in DC on the 6th, i recommend wearing a body camera. \nThe more video angles of that day the better." + }, + { + "Retweets": "4.2K", + "Likes": "18K", + "Content": "More interesting is that he suggests the inauguration date of January 20 can be extended." + }, + { + "Retweets": "14K", + "Likes": "53K", + "Content": "There's a difference between not having the evidence and not hearing the evidence.\n\nPass it on." + }, + { + "Retweets": "5.4K", + "Likes": "28K", + "Content": "We have been marching all around the country for you Mr President. Now we will bring it to DC on Jan 6 and PROUDLY stand beside you! Thank you for fighting for us ! " + }, + { + "Retweets": "24K", + "Likes": "134K", + "Content": "Something how Dr. Fauci is revered by the LameStream Media as such a great professional, having done, they say, such an incredible job, yet he works for me and the Trump Administration, and I am in no way given any credit for my work. Gee, could this just be more Fake News?" + }, + { + "Retweets": "24K", + "Likes": "104K", + "Content": "\u201cGeorgia election data, just revealed, shows that over 17,000 votes illegally flipped from Trump to Biden.\u201d This alone (there are many other irregularities) is enough to easily \u201cswing Georgia to Trump\u201d. #StopTheSteal " + }, + { + "Retweets": "32K", + "Likes": "131K", + "Content": "I spoke to Secretary of State Brad Raffensperger yesterday about Fulton County and voter fraud in Georgia. He was unwilling, or unable, to answer questions such as the \u201cballots under table\u201d scam, ballot destruction, out of state \u201cvoters\u201d, dead voters, and more. He has no clue!" + }, + { + "Retweets": "20K", + "Likes": "100K", + "Content": "Republicans in Georgia must be careful of the political corruption in Fulton County, which is rampant. The Governor, , and his puppet Lt. Governor, , have done less than nothing. They are a disgrace to the great people of Georgia!" + }, + { + "Retweets": "33K", + "Likes": "139K", + "Content": "The number of cases and deaths of the China Virus is far exaggerated in the United States because of \u2019s ridiculous method of determination compared to other countries, many of whom report, purposely, very inaccurately and low. \u201cWhen in doubt, call it Covid.\u201d Fake News!" + }, + { + "Retweets": "14K", + "Likes": "105K", + "Content": "The vaccines are being delivered to the states by the Federal Government far faster than they can be administered!" + }, + { + "Retweets": "5.3K", + "Likes": "19K", + "Content": "\u201cThey fear for their safety and the safety of their families in this hyper-political climate.\u201d\n\nA #Michigan attorney in the case that led to a #ForensicAudit of #VotingMachines asked the court to keep secret the identities of the forensic investigators." + }, + { + "Retweets": "7.2K", + "Likes": "25K", + "Content": "SCOOP: A growing number of Republican senators \u2014 led by Ted Cruz \u2014 are set to announce today they also will object to certifying state Electoral College votes on Wednesday, congressional sources familiar with their conversations tell Axios." + }, + { + "Retweets": "12K", + "Likes": "68K", + "Content": "GOP Senators Join Hawley in Objecting to Electoral College Votes https://breitbart.com/politics/2021/01/02/gop-senators-including-cruz-blackburn-to-reject-the-electors-from-disputed-states-january-6/\u2026 via " + }, + { + "Retweets": "8.1K", + "Likes": "39K", + "Content": "NEW: A growing number of Republican senators \u2014 led by Ted Cruz \u2014 are set to announce today they also will object to certifying state Electoral College votes on Wednesday, several congressional sources familiar with their conversations tell me" + }, + { + "Retweets": "9.3K", + "Likes": "47K", + "Content": "Today, I am joining a group of Senators to propose an election commission to resolve the electoral issues. You can view my full statement here: https://facebook.com/SenatorLankford/posts/3852576874804606\u2026" + }, + { + "Retweets": "15K", + "Likes": "73K", + "Content": "Glad to see more Senators joining the fight on #JAN6. I hope many more will listen to their constituents and act" + }, + { + "Retweets": "17K", + "Likes": "104K", + "Content": "So true. Thanks Josh!" + }, + { + "Retweets": "24K", + "Likes": "110K", + "Content": "An attempt to steal a landslide win. Can\u2019t let it happen!" + }, + { + "Retweets": "10K", + "Likes": "47K", + "Content": "BREAKING: A coalition of GOP senators and senators-elect, led by Sen. Ted Cruz, will object to the Jan. 6 certification of the election results when a joint session of Congress meets next week unless there is an emergency 10-day audit of the results." + }, + { + "Retweets": "10K", + "Likes": "51K", + "Content": "Congratulations to Ted Cruz and these Senate colleagues for stepping up against the mob!" + }, + { + "Retweets": "18K", + "Likes": "91K", + "Content": "...And after they see the facts, plenty more to come...Our Country will love them for it! #StopTheSteal" + }, + { + "Retweets": "10K", + "Likes": "58K", + "Content": "Wow, I guess it\u2019s not good to go against a President who everyone in Georgia knows got you into office!" + }, + { + "Retweets": "7.6K", + "Likes": "40K", + "Content": ".@senatemajldr Mitch M, and all!" + }, + { + "Retweets": "5.3K", + "Likes": "25K", + "Content": "You know that sound when a sheet of glass begins to shatter, but slowly? That first hard CRACK!!! Then it spiders out? Listen......." + }, + { + "Retweets": "12K", + "Likes": "56K", + "Content": "Civil War: Tucker Carlson Hits His Own Network in Epic Post-Election Monologue" + }, + { + "Retweets": "10K", + "Likes": "27K", + "Content": "Listen to , and then ask yourself where is the ?" + }, + { + "Retweets": "16K", + "Likes": "68K", + "Content": "We never, ever paid to get our people home. Appeasement invites more hostage-taking. We restored America's credibility. No more phony \"redlines\" or pallets of cash to dictators and bullies. #Realism #AmericansFirst" + }, + { + "Retweets": "33K", + "Likes": "145K", + "Content": "Why haven\u2019t they done signature verification in Fulton County, Georgia. Why haven\u2019t they deducted all of the dead people who \u201cvoted\u201d, illegals who voted, non Georgia residents who voted, and tens of thousands of others who voted illegally, from the final vote tally?" + }, + { + "Retweets": "17K", + "Likes": "87K", + "Content": "....Just a small portion of these votes give US a big and conclusive win in Georgia. Have they illegally destroyed ballots in Fulton County? After many weeks, we don\u2019t yet even have a judge to hear this large scale voter fraud case. The only judge seems to be Stacey\u2019s sister!" + }, + { + "Retweets": "60K", + "Likes": "398K", + "Content": "MAKE AMERICA GREAT AGAIN!" + }, + { + "Retweets": "20K", + "Likes": "125K", + "Content": "Will be in Georgia on Monday night, 9:00 P.M. to RALLY for two GREAT people, & . GET READY TO VOTE ON TUESDAY!!!" + }, + { + "Retweets": "26K", + "Likes": "152K", + "Content": "TRANSPARENCY in medical pricing will be one of the biggest and most important things done for the American citizen. It was just put into service, January 1, against long odds and bitter opposition. Final lawsuits won last week. Enjoy all the extra money you will have!" + }, + { + "Retweets": "26K", + "Likes": "159K", + "Content": "For historical purposes remember, I was able to get rid of the INDIVIDUAL MANDATE, the most unpopular and expensive part of ObamaCare. You are no longer forced to pay a fortune for the \u201cprivilege\u201d of NOT getting bad healthcare. This ended ObamaCare as we knew it. Thank you!" + }, + { + "Retweets": "13K", + "Likes": "92K", + "Content": "Some States are very slow to inoculate recipients despite successful and very large scale distribution of vaccines by the Federal Government. They will get it done!" + }, + { + "Retweets": "37K", + "Likes": "205K", + "Content": "Because of the Trump Administration, hospitals are now required, effective immediately, to publish their REAL PRICES, which will create competition and drive downs costs MASSIVELY. Won lawsuit last week. Bigger than healthcare, it\u2019s called PRICE TRANSPARENCY...." + }, + { + "Retweets": "18K", + "Likes": "151K", + "Content": "....Please remember who got it done!!!" + }, + { + "Retweets": "13K", + "Likes": "71K", + "Content": "Only because Biden got very few votes, just like the Election!" + }, + { + "Retweets": "22K", + "Likes": "59K", + "Content": "Judge blocks voter purge in 2 Georgia counties. \n\nDon\u2019t believe these things are rigged? \n\nTHE JUDGE IS STACY ABRAMS\u2019 SISTER!!! WTF." + }, + { + "Retweets": "20K", + "Likes": "92K", + "Content": "Herschel is speaking the truth!" + }, + { + "Retweets": "14K", + "Likes": "76K", + "Content": "Thank you Madison!" + }, + { + "Retweets": "18K", + "Likes": "104K", + "Content": "Alec Baldwin should play Alec Baldwin when SNL parodies his wife pretending she\u2019s Spanish for the last few decades as opposed to the basic white girl from Mass that she actually is. \n\nIt would be the first funny thing Saturday Night Live has produced in years." + }, + { + "Retweets": "16K", + "Likes": "64K", + "Content": "Republicans should have gotten rid of Section 230 in the Defense Bill, and you wouldn\u2019t have had this problem. Never learn!!!" + }, + { + "Retweets": "31K", + "Likes": "105K", + "Content": "January 6th. See you in D.C." + }, + { + "Retweets": "24K", + "Likes": "109K", + "Content": "Before even discussing the massive corruption which took place in the 2020 Election, which gives us far more votes than is necessary to win all of the Swing States (only need three), it must be noted that the State Legislatures were not in any way responsible for the massive...." + }, + { + "Retweets": "13K", + "Likes": "73K", + "Content": "....changes made to the voting process, rules and regulations, many made hastily before the election, and therefore the whole State Election is not legal or Constitutional. Additionally, the Georgia Consent Decree is Unconstitutional & the State 2020 Presidential Election...." + }, + { + "Retweets": "14K", + "Likes": "75K", + "Content": "....is therefore both illegal and invalid, and that would include the two current Senatorial Elections. In Wisconsin, Voters not asking for applications invalidates the Election. All of this without even discussing the millions of fraudulent votes that were cast or altered!" + }, + { + "Retweets": "30K", + "Likes": "140K", + "Content": "Our Republican Senate just missed the opportunity to get rid of Section 230, which gives unlimited power to Big Tech companies. Pathetic!!! Now they want to give people ravaged by the China Virus $600, rather than the $2000 which they so desperately need. Not fair, or smart!" + }, + { + "Retweets": "20K", + "Likes": "129K", + "Content": ". Weekend Daytime is not watchable. Switching over to !" + }, + { + "Retweets": "14K", + "Likes": "70K", + "Content": "A great honor!" + }, + { + "Retweets": "12K", + "Likes": "54K", + "Content": "NOW!" + }, + { + "Retweets": "31K", + "Likes": "117K", + "Content": "Massive amounts of evidence will be presented on the 6th. We won, BIG!" + }, + { + "Retweets": "42K", + "Likes": "193K", + "Content": "The BIG Protest Rally in Washington, D.C., will take place at 11.00 A.M. on January 6th. Locational details to follow. StopTheSteal!" + }, + { + "Retweets": "18K", + "Likes": "105K", + "Content": "I hope to see the great Governor of South Dakota , run against RINO , in the upcoming 2022 Primary. She would do a fantastic job in the U.S. Senate, but if not Kristi, others are already lining up. South Dakota wants strong leadership, NOW!" + }, + { + "Retweets": "13K", + "Likes": "43K", + "Content": "GeorgiaContact House Speaker David Ralston & Senate Majority Leader Mike Dugan!\n\nThey must:Hear the evidenceCorrect false statementsDemand a vote on decertification\n\nRalston:\n(404) 656-5020\ndavid.ralston@house.ga.gov\n\nDugan:\n(404) 463-2478\nmike.dugan@senate.ga.gov" + }, + { + "Retweets": "11K", + "Likes": "37K", + "Content": "The calvary is coming, Mr. President!\n\nJANUARY 6th | Washington, DChttp://TrumpMarch.com #MarchForTrump #StopTheSteal" + }, + { + "Retweets": "56K", + "Likes": "513K", + "Content": "HAPPY NEW YEAR!" + }, + { + "Retweets": "20K", + "Likes": "92K", + "Content": "Sen. Josh Hawley Slams Walmart Tweet Calling Him a \u2018Sore Loser\u2018 https://breitbart.com/politics/2020/12/30/sen-josh-hawley-slams-walmart-tweet-calling-him-sore-loser-for-objecting-to-electoral-college-results/\u2026 via America is proud of Josh and the many others who are joining him. The USA cannot have fraudulent elections!" + }, + { + "Retweets": "36K", + "Likes": "264K", + "Content": "Finished off the year with the highest Stock Market in history. Setting records with your 401k\u2019s, just like I said you would. Congratulations to all!" + }, + { + "Retweets": "49K", + "Likes": "227K", + "Content": "We now have far more votes than needed to flip Georgia in the Presidential race. Massive VOTER FRAUD took place. Thank you to the Georgia Legislature for today\u2019s revealing meeting!" + }, + { + "Retweets": "24K", + "Likes": "105K", + "Content": "., his puppet Lt. Governor , and Secretary of State, are disasters for Georgia. Won\u2019t let professionals get anywhere near Fulton County for signature verifications, or anything else. They are virtually controlled by & the Democrats. Fools!" + }, + { + "Retweets": "28K", + "Likes": "169K", + "Content": "Watching is almost as bad as watching Fake News . New alternatives are developing!" + }, + { + "Retweets": "43K", + "Likes": "182K", + "Content": "The United States had more votes than it had people voting, by a lot. This travesty cannot be allowed to stand. It was a Rigged Election, one not even fit for third world countries!" + }, + { + "Retweets": "77K", + "Likes": "328K", + "Content": "JANUARY SIXTH, SEE YOU IN DC!" + }, + { + "Retweets": "35K", + "Likes": "164K", + "Content": "Twitter is shadow banning like never before. A disgrace that our weak and ineffective political leadership refuses to do anything about Big Tech. They\u2019re either afraid or stupid, nobody really knows!" + }, + { + "Retweets": "25K", + "Likes": "132K", + "Content": "Thank you, a great honor! https://africaworldnewspaper.com/president-donald-j-trump-is-africaworld-man-of-the-year-2020/\u2026" + }, + { + "Retweets": "16K", + "Likes": "78K", + "Content": "Hearings from Atlanta on the Georgia Election overturn now being broadcast LIVE via !" + }, + { + "Retweets": "13K", + "Likes": "37K", + "Content": "Time for state legislators to take the Election seriously. \n\nPresident needs you to DEMAND they call a SPECIAL SESSION & hear the evidence.\n\nContact your state legislators NOW!\n\nGA: (404) 656-1776\n\nWI: (608) 266-2517\n\nMI: (517) 373-6339\n\nAZ: (602) 542-4331" + }, + { + "Retweets": "26K", + "Likes": "114K", + "Content": "Hearings from Atlanta on the Georgia Election overturn now being broadcast. Check it out. and many more. should resign from office. He is an obstructionist who refuses to admit that we won Georgia, BIG! Also won the other Swing States." + }, + { + "Retweets": "46K", + "Likes": "209K", + "Content": "$2000 ASAP!" + }, + { + "Retweets": "18K", + "Likes": "119K", + "Content": "The Federal Government has distributed the vaccines to the states. Now it is up to the states to administer. Get moving!" + }, + { + "Retweets": "23K", + "Likes": "120K", + "Content": "\u201cBarack Obama was toppled from the top spot and President Trump claimed the title of the year\u2019s Most Admired Man. Trump number one, Obama number two, and Joe Biden a very distant number three. That\u2019s also rather odd given the fact that on November 3rd, Biden allegedly racked up" + }, + { + "Retweets": "16K", + "Likes": "88K", + "Content": "...millions more votes than Trump, but can\u2019t get anywhere close to him in this poll. No incoming president has ever done as badly in this annual survey.\u201d That\u2019s because he got millions of Fake Votes in the 2020 Election, which was RIGGED!" + }, + { + "Retweets": "19K", + "Likes": "81K", + "Content": "New Lott study estimates 11,350 absentee votes lost to Trump in Georgia. Another 289,000 \"excess (fraudulent) votes\" across GA, AZ, MI, NV, PA, and WI. Check it out! https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3756988\u2026" + }, + { + "Retweets": "17K", + "Likes": "101K", + "Content": "The Wall Street Journal\u2019s very boring & incoherent Editorial fails to mention my big & easy wins in Texas, Florida, Ohio, Iowa & many other states that the & other joke polls said I would lose. Also, they fail to mention the fact that I got many Republican Senators elected.." + }, + { + "Retweets": "13K", + "Likes": "81K", + "Content": "....that, quite frankly, didn\u2019t have much of a chance, like 7, 8 or 9. The Presidential Election was Rigged with hundreds of thousands of ballots mysteriously flowing into Swing States very late at night as everyone thought the election was easily won by me. There were many...." + }, + { + "Retweets": "13K", + "Likes": "83K", + "Content": "....other acts of fraud and irregularities as well. STAY TUNED!" + }, + { + "Retweets": "21K", + "Likes": "112K", + "Content": "I love the Great State of Georgia, but the people who run it, from the Governor, , to the Secretary of State, are a complete disaster and don\u2019t have a clue, or worse. Nobody can be this stupid. Just allow us to find the crime, and turn the state Republican...." + }, + { + "Retweets": "15K", + "Likes": "77K", + "Content": "...The consent decree signed by the \u201cSecretary\u201d, with the consent of Kemp, is perhaps even more poorly negotiated than the deal that John Kerry made with Iran. Now it turns out that Brad R\u2019s brother works for China, and they definitely don\u2019t want \u201cTrump\u201d. So disgusting! #MAGA" + }, + { + "Retweets": "13K", + "Likes": "42K", + "Content": "Electoral irregularities are real and prevalent in Pennsylvania. Sadly, despite evidence, our Governor and State Department Secretary refuse to investigate.\n\nMy letter to Acting Deputy Attorney General Richard Donoghue." + }, + { + "Retweets": "6.5K", + "Likes": "27K", + "Content": "Read my opinion on this year\u2019s election process in PA here:" + }, + { + "Retweets": "38K", + "Likes": "171K", + "Content": "When are we going to be allowed to do signature verification in Fulton County, Georgia? The process is going VERY slowly. Pennsylvania just found 205,000 votes more than they had voters. Therefore, we WIN Pennsylvania!!!" + }, + { + "Retweets": "19K", + "Likes": "102K", + "Content": "It is up to the States to distribute the vaccines once brought to the designated areas by the Federal Government. We have not only developed the vaccines, including putting up money to move the process along quickly, but gotten them to the states. Biden failed with Swine Flu!" + }, + { + "Retweets": "13K", + "Likes": "62K", + "Content": "Loeffler, Perdue Support Increasing Relief Payments to $2K https://breitbart.com/politics/2020/12/29/kelly-loeffler-david-perdue-support-increasing-payments-2k-we-need-get-relief-americans-now/\u2026 via . Republicans must support the $2000 payments and must FIGHT the crooked presidential election. We won big!" + }, + { + "Retweets": "8.3K", + "Likes": "26K", + "Content": "The House votes at Trump\u2019s request to boost stimulus checks to $2,000 per person. The bill\u2019s fate in the Senate is uncertain." + }, + { + "Retweets": "33K", + "Likes": "122K", + "Content": "Unless Republicans have a death wish, and it is also the right thing to do, they must approve the $2000 payments ASAP. $600 IS NOT ENOUGH! Also, get rid of Section 230 - Don\u2019t let Big Tech steal our Country, and don\u2019t let the Democrats steal the Presidential Election. Get tough!" + }, + { + "Retweets": "34K", + "Likes": "139K", + "Content": "\u201cA group of Republican lawmakers in Pennsylvania say 200,000 more votes were counted in the 2020 Election than voters (100% went to Biden). State Representative Frank Ryan said they found troubling discrepancies after an analysis of Election Day data.\u201d This is far...." + }, + { + "Retweets": "16K", + "Likes": "92K", + "Content": "....Can you imagine if the Republicans stole a Presidential Election from the Democrats - All hell would break out. Republican leadership only wants the path of least resistance. Our leaders (not me, of course!) are pathetic. They only know how to lose! P.S. I got MANY Senators.." + }, + { + "Retweets": "12K", + "Likes": "81K", + "Content": "....and Congressmen/Congresswomen Elected. I do believe they forgot!" + }, + { + "Retweets": "43K", + "Likes": "267K", + "Content": "$2000 for our great people, not $600! They have suffered enough from the China Virus!!!" + }, + { + "Retweets": "21K", + "Likes": "98K", + "Content": "Weak and tired Republican \u201cleadership\u201d will allow the bad Defense Bill to pass. Say goodbye to VITAL Section 230 termination, your National Monuments, Forts (names!) and Treasures (inserted by Elizabeth \u201cPocahontas\u201d Warren), 5G, and our great soldiers...." + }, + { + "Retweets": "14K", + "Likes": "78K", + "Content": "....being removed and brought home from foreign lands who do NOTHING for us. A disgraceful act of cowardice and total submission by weak people to Big Tech. Negotiate a better Bill, or get better leaders, NOW! Senate should not approve NDAA until fixed!!!" + }, + { + "Retweets": "18K", + "Likes": "106K", + "Content": "Give the people $2000, not $600. They have suffered enough!" + }, + { + "Retweets": "5.7K", + "Likes": "36K", + "Content": "While I support many provisions of the NDAA, I respect our Commander-in-Chief\u2019s calls to make it even stronger for our men & women in uniform. Alongside , I\u2019ll keep fighting to support the warfighter, bolster our strong national defense, & equip our Armed Forces." + }, + { + "Retweets": "5.2K", + "Likes": "31K", + "Content": "I want to thank Pres. Trump for signing the COVID relief bill much needed by Main St. small businesses & their employees across the country. I support his veto of the massive, unaudited NDAA & his call for Congress to address wasteful spending in the Omnibus spending bill... 1/3" + }, + { + "Retweets": "5.9K", + "Likes": "30K", + "Content": "Today I will be voting NO on the override of 's veto of the NDAA.\n\nHere's why:\n\nThe act fails to terminate Section 230 and is a gift to our enemies like communist China!" + }, + { + "Retweets": "7.4K", + "Likes": "30K", + "Content": "The NDAA was hijacked by the forever war lobby and their bought and paid for allies in the United States Congress.\n\nPresident took a principled stand against this unprincipled legislation by vetoing it." + }, + { + "Retweets": "7.7K", + "Likes": "40K", + "Content": "Today, I voted to defend President 's veto of the NDAA because it serves foreign interests, not American interests. \n\nPresident Trump has always been a staunch advocate of our troops, and sadly, this bill does not prioritize them or our nation's future." + }, + { + "Retweets": "5.7K", + "Likes": "39K", + "Content": "Both are reasonable demands, and I hope Congress is listening. The biggest winner would be the American people." + }, + { + "Retweets": "7.8K", + "Likes": "47K", + "Content": "Congress will vote on additional stimulus checks and repealing Section 230 -- all wins for the American people. \n\nWell done Mr. President!" + }, + { + "Retweets": "80K", + "Likes": "308K", + "Content": "\u201cBreaking News: In Pennsylvania there were 205,000 more votes than there were voters. This alone flips the state to President Trump.\u201d" + }, + { + "Retweets": "8.7K", + "Likes": "34K", + "Content": "Helter Stelter, Fake Tapper, et al, have forever destroyed their reputations. CNN has been fully exposed by Project Veritas and the daily insane rants of their on-air Democrat." + }, + { + "Retweets": "29K", + "Likes": "207K", + "Content": "Good news on Covid Relief Bill. Information to follow!" + }, + { + "Retweets": "52K", + "Likes": "276K", + "Content": "See you in Washington, DC, on January 6th. Don\u2019t miss it. Information to follow!" + }, + { + "Retweets": "25K", + "Likes": "148K", + "Content": "On behalf of two GREAT Senators, & , I will be going to Georgia on Monday night, January 4th., to have a big and wonderful RALLY. So important for our Country that they win!" + }, + { + "Retweets": "35K", + "Likes": "128K", + "Content": "A must see!" + } + ], + "Orb\u00e1n Viktor": [ + { + "Retweets": "2.3K", + "Likes": "9.5K", + "Content": "We need a change in #Brussels in order to #MakeEuropeGreatAgain ! #MEGA" + }, + { + "Retweets": "6.8K", + "Likes": "20K", + "Content": "President was a president of peace. He commanded respect in the world, and created the conditions for peace. During his presidency there was peace in the Middle East and peace in Ukraine. We need him back more than ever! Thank you for the invitation, Mr.\u2026" + }, + { + "Retweets": "4.3K", + "Likes": "19K", + "Content": "Thank you for the invitation and the kind words, President !" + }, + { + "Retweets": "10K", + "Likes": "46K", + "Content": "It was a pleasure to visit President today. We need leaders in the world who are respected and can bring peace. He is one of them! Come back and bring us peace, Mr. President!" + }, + { + "Retweets": "2.3K", + "Likes": "9.5K", + "Content": "We need a change in #Brussels in order to #MakeEuropeGreatAgain ! #MEGA" + }, + { + "Retweets": "6.8K", + "Likes": "20K", + "Content": "President was a president of peace. He commanded respect in the world, and created the conditions for peace. During his presidency there was peace in the Middle East and peace in Ukraine. We need him back more than ever! Thank you for the invitation, Mr.\u2026" + }, + { + "Retweets": "1.1K", + "Likes": "4.1K", + "Content": "The greatest fight in international politics is between the globalists and those who believe in national sovereignty. I was happy to see at the Foundation that we sovereignists have many friends in the US as well." + }, + { + "Retweets": "548", + "Likes": "2.6K", + "Content": "Supporting families, fighting illegal migration and standing up for the sovereignty of our nations. This is the common ground for cooperation between the conservative forces of Europe and the US. I talked about this and many other topics with at the \u2026" + }, + { + "Retweets": "916", + "Likes": "4.3K", + "Content": "The Hungarian position is simple: we advocate for #peace, because it is the Hungarian interest. #AntalyaDiplomacyForum" + }, + { + "Retweets": "912", + "Likes": "8K", + "Content": "Ya\u015fas\u0131n Macar-T\u00fcrk Karde\u015fli\u011fi! It was a privilege to meet with President on the margins of the #AntalyaDiplomacyForum . I am looking forward to further strengthening our enhanced strategic partnership in the field of trade, energy and the defence industry. " + }, + { + "Retweets": "171", + "Likes": "1K", + "Content": "Meeting with President Rumen Radev ahead of the . There are few leaders in Europe who dare to speak up for peace. Thank you for your courage and friendship, Mr. President! #AntalyaDiplomacyForum" + }, + { + "Retweets": "1.7K", + "Likes": "5.9K", + "Content": "It is clear that there is no military solution to the #RussiaUkraineWar. The moment of truth is near: instead of fueling the war-machine, we need a ceasefire and #peacetalks!" + }, + { + "Retweets": "524", + "Likes": "2.4K", + "Content": "The #V4 is alive and well! We may disagree on how we should help #Ukraine, but there are many other fields where the V4 countries can and will cooperate: fighting #migration, standing up for our farmers and defending low taxes against Brussels." + }, + { + "Retweets": "1.4K", + "Likes": "5.3K", + "Content": "Illegal #migration is a security risk and a hotbed of anti-Semitism. We will continue to protect our borders, whether the #Brussels bureaucrats like it or not!" + }, + { + "Retweets": "1K", + "Likes": "3.7K", + "Content": "The #RussiaUkraineWar has been raging on in our immediate neighbourhood for two years. It\u2019s time for peace! #ceasefire #peacetalks" + }, + { + "Retweets": "1K", + "Likes": "5.3K", + "Content": "The future of the automotive industry is written in Hungary! The world's largest electric car manufacturer, is building its first European car factory in Szeged." + }, + { + "Retweets": "177", + "Likes": "1.2K", + "Content": "Today we opened a new phase of cooperation between Hungary and Sweden with Ulf Kristersson. Thank you for your visit, Prime Minister! " + }, + { + "Retweets": "214", + "Likes": "2K", + "Content": "Welcome to Hungary, ! " + }, + { + "Retweets": "2.4K", + "Likes": "8.3K", + "Content": "Brussels has abandoned the European people. There has never before been such a distance between #Brussels politics and the interests and will of the European people. We need a change in Brussels!" + }, + { + "Retweets": "286", + "Likes": "1.5K", + "Content": "It will be my pleasure to welcome Ulf Kristersson in Budapest this Friday. We are planning to discuss how to strengthen the defence and security policy cooperation between #Hungary and #Sweden, as well as our plans for the Hungarian Presidency of the Council of the\u2026" + }, + { + "Retweets": "848", + "Likes": "4.9K", + "Content": "We want Hungary to become one of the best countries in Europe. And we have a plan how to do it! #connectivity" + }, + { + "Retweets": "2.3K", + "Likes": "7.9K", + "Content": "The name of peace is Trump! " + }, + { + "Retweets": "184", + "Likes": "905", + "Content": "We have taken important steps with Ulf Kristersson in order to rebuild trust. We are on course to ratify Sweden\u2019s accession to at the beginning of Parliament\u2019s spring session." + }, + { + "Retweets": "5.2K", + "Likes": "23K", + "Content": "An honest patriot. Keep on fighting, Mr. President! " + }, + { + "Retweets": "312", + "Likes": "1.7K", + "Content": "Just got off the phone with President Ilham Aliyev . I congratulated him on his enormous and indisputable victory at the Azerbaijani presidential elections. I am looking forward to further strengthening the cooperation between Hungary and Azerbaijan, as well as\u2026" + }, + { + "Retweets": "216", + "Likes": "1.4K", + "Content": "It was a pleasure to welcome Vahagn Khachaturyan in Hungary today. Hungarian-Armenian relations are based on mutual respect and our common Christian heritage." + }, + { + "Retweets": "4.1K", + "Likes": "11K", + "Content": "#Brussels is suffocating European farmers. They introduce new burdens and at the same time open up the European market to cheap and uncontrolled agricultural products from #Ukraine. This has to stop! We need a change in Brussels! #farmerprotests2024" + }, + { + "Retweets": "535", + "Likes": "2K", + "Content": "There will be a lot of fuss around yesterday\u2019s #EUCO. We are always ready to have a good deal, if we see it. And we got the guarantees we needed yesterday: control over the funds we will send to . This is a god deal for both and the European taxpayers." + }, + { + "Retweets": "6.4K", + "Likes": "21K", + "Content": "Mission accomplished. Hungary\u2019s funds will not end up in Ukraine and we have a control mechanism at the end of the first and the second year. Our position on the war in Ukraine remains unchanged: we need a ceasefire and peace talks." + }, + { + "Retweets": "266", + "Likes": "1.3K", + "Content": "Casual morning conversation before the #EUCO with and ." + }, + { + "Retweets": "6.9K", + "Likes": "20K", + "Content": "Back in #Brussels. We will stand up for the voice of the people! Even if the bureaucrats in Brussels blackmail us. #FarmerProtests" + }, + { + "Retweets": "9.1K", + "Likes": "27K", + "Content": "We made a compromise proposal. In return, we were blackmailed by Brussels. The #Brussels blackmail manual was published in the earlier this week. The cat is out of the bag. Forget about the rule of law, Hungary is blackmailed for having a it\u2019s own opinion on #migration, the\u2026" + }, + { + "Retweets": "368", + "Likes": "1.7K", + "Content": "International Holocaust Remembrance Day. Due to our efforts in the fight against anti-Semitism in the past decade, Hungary has become one of the safest countries for the Jewish community. We will keep it that way! #NotOnMyWatch #InternationalHolocaustMemorialDay" + }, + { + "Retweets": "133", + "Likes": "1K", + "Content": "It was a privilege to host Prime Minister on his official visit to Hungary today. The Republic of Moldova and Hungary are strategic partners. Our cooperation in the field of agriculture, banking and the pharmaceutical industry is exemplary. Hungary will continue to\u2026" + }, + { + "Retweets": "1.2K", + "Likes": "4.2K", + "Content": "Just finished a phone call with Secretary General . I reaffirmed that the Hungarian government supports the NATO-membership of #Sweden. I also stressed that we will continue to urge the Hungarian National Assembly to vote in favor of Sweden\u2019s accession and\u2026" + }, + { + "Retweets": "707", + "Likes": "2.6K", + "Content": "Today I sent an invitation letter to Prime Minister Ulf Kristersson for a visit to Hungary to negotiate on Sweden\u2019s NATO accession." + }, + { + "Retweets": "2.2K", + "Likes": "8.8K", + "Content": "Brothers in arms " + }, + { + "Retweets": "2.1K", + "Likes": "8.9K", + "Content": "Thank you for your support, Robert! " + }, + { + "Retweets": "10K", + "Likes": "29K", + "Content": "#Hungary cannot be blackmailed! There is not enough money in the world to force us to accept mass #migration and to put our children in the hands of LGBTQ activists. This is impossible!" + }, + { + "Retweets": "336", + "Likes": "2.3K", + "Content": "Prime Minister Pham Minh Chin of #Vietnam began his three-day visit to #Hungary today. Vietnam is a nation of fellow freedom fighters, a pioneer of #connectivity in Asia, and our important economic partner. Welcome to Hungary, Prime Minister!" + }, + { + "Retweets": "1.7K", + "Likes": "6K", + "Content": "Liberal MEP\u2019s attacked Hungary once again in the yesterday. They want to give money to #Ukraine for 4 years, while the European elections are just 5 months away. They essentially want to strip people of their rights to make decisions on their future. What an\u2026" + }, + { + "Retweets": "602", + "Likes": "2.8K", + "Content": "It was my pleasure to host PM Robert Fico today in Budapest. We discussed bilateral relations and of course the hottest item on the EU-agenda: #Ukraine." + }, + { + "Retweets": "1.3K", + "Likes": "7.7K", + "Content": "A long expected victory! " + }, + { + "Retweets": "391", + "Likes": "2.1K", + "Content": "It\u2019s good to see that the is preparing a plan B for the 1st of February, according to which financial support given to #Ukraine could be managed outside the EU-budget. This is a good decision! The Commission\u2019s plan B is the Hungarian plan A!" + }, + { + "Retweets": "155", + "Likes": "1K", + "Content": "Jacques Delors was a friend of Hungary and a visionary leader of Europe during the fall of Communism. It was a privilege to work with him! I expressed the condolences of Hungary and the Hungarian people today to President in #Paris." + }, + { + "Retweets": "3.5K", + "Likes": "13K", + "Content": "2024 is the year of great plans. #Brussels is turning a blind eye to the real problems of European people: war, #migration and economic troubles. It\u2019s time to make a change in Brussels! #2024Goals" + }, + { + "Retweets": "175", + "Likes": "1.4K", + "Content": "Today we mourn a visionary German politician, a great European statesman and a true friend of Hungary: Wolfgang Sch\u00e4uble. My deepest condolences to his family and the people of Germany." + }, + { + "Retweets": "1.8K", + "Likes": "13K", + "Content": "Zsigmond\u2019s first #Christmas. May God bless you and your family during this Christmas season!" + }, + { + "Retweets": "941", + "Likes": "4.2K", + "Content": "We ended the year with an international press conference. I stressed that I will continue to stand up for Hungary\u2019s interests, even if members of the continue to blackmail #Hungary!" + }, + { + "Retweets": "454", + "Likes": "3.5K", + "Content": "I was deeply shocked by the heinous shooting that took place at Charles University in #Prague today. Our thoughts and prayers are with the families of the victims! " + }, + { + "Retweets": "235", + "Likes": "958", + "Content": "Is this fake news?!?!?!\n\nKeep on fighting, ! The world needs you! " + }, + { + "Retweets": "559", + "Likes": "4K", + "Content": "Important bilateral visit today by President in Hungary. We signed the Enhanced Strategic Partnership Agreement between our countries, and attended the opening ceremony of the 2024 Hungarian-Turkish Cultural Year. Te\u015fekk\u00fcrler Say\u0131n Cumhurba\u015fkan\u0131! " + }, + { + "Retweets": "144", + "Likes": "862", + "Content": "My sincere congratulations to President on his unquestionable victory at the Egyptian presidential elections! The people of Egypt voted for stability and prosperity once again." + }, + { + "Retweets": "1.3K", + "Likes": "11K", + "Content": "The best deal I\u2019ve ever made! For one horse power, I got 435. Welcome to #Hungary President ! " + }, + { + "Retweets": "621", + "Likes": "3.9K", + "Content": "#Serbia will not stop! Congratulations to President and members of his list on their overwhelming election victory!" + }, + { + "Retweets": "2.2K", + "Likes": "8.9K", + "Content": "#Ukraine is not ready for EU membership. Luckily we will have many opportunities to correct the decision made yesterday." + }, + { + "Retweets": "1.1K", + "Likes": "5.1K", + "Content": "Summary of the nightshift: veto for the extra money to Ukraine, veto for the MFF review.\nWe will come back to the issue next year in the #EUCO after proper preparation." + }, + { + "Retweets": "3.1K", + "Likes": "11K", + "Content": "Starting accession negotiations with #Ukraine is a bad decision. Hungary did not participate in the decision." + }, + { + "Retweets": "1.5K", + "Likes": "6.4K", + "Content": "Our position is clear and we will not give it up! #EUCO" + }, + { + "Retweets": "446", + "Likes": "2.1K", + "Content": "Meeting before the #EUCO with , , and . Enlargement is a merit-based process. There are no exceptions!" + }, + { + "Retweets": "2.2K", + "Likes": "7.4K", + "Content": "#Ukraine\u2019s swift accession to the European Union would have devastating consequences for European #farmers, the EU\u2019s budget and European security. It serves the best interests of neither Hungary, nor the European Union, therefore we cannot support it! #EUCO" + }, + { + "Retweets": "185", + "Likes": "1.2K", + "Content": "Had a great phone conversation today with my old friend, PM . He is a leader I can always count on when it comes to strengthening Hungarian-Bulgarian relations. " + }, + { + "Retweets": "910", + "Likes": "3.9K", + "Content": "Our position is based on one thing and one thing only: the will of the Hungarian people." + }, + { + "Retweets": "2.6K", + "Likes": "8.5K", + "Content": "The numbers are clear: the bureaucrats in Brussels do not represent the European people! \n\n71% of Europeans (EU27+UK) want the #RussiaUkraineWar to end immediately, while 73% agree that #Russia and #Ukraine should be forced into peace negotiations according to the latest Project\u2026" + }, + { + "Retweets": "253", + "Likes": "1.6K", + "Content": "Thank you for the meeting President ! This is only the beginning!" + }, + { + "Retweets": "2.4K", + "Likes": "18K", + "Content": "\u00a1Viva la libertad! Congratulations to President on his inauguration. A new hope for Argentina!" + }, + { + "Retweets": "2.4K", + "Likes": "18K", + "Content": "A new hope for Latin America! I congratulated President today on his landslide victory at the presidential elections in Argentina. Thank you for the invitation!" + }, + { + "Retweets": "212", + "Likes": "1.8K", + "Content": "A busy day in Buenos Aires. Just had a good and honest conversation with Mark Rutte on the preparation of the December #EUCO." + }, + { + "Retweets": "2.1K", + "Likes": "8.5K", + "Content": "Had a great discussion with about our preparation for next year\u2019s European elections. The winds of change are strong in Europe! Viva !" + }, + { + "Retweets": "5.2K", + "Likes": "26K", + "Content": "We\u2019re in Buenos Aires to celebrate the huge win of President . Had the pleasure of meeting with my good friend, President . The Right is rising not only in Europe but all around the world!" + }, + { + "Retweets": "273", + "Likes": "1.6K", + "Content": "Had a great meeting yesterday with President in Paris. The Hungarian position is clear ahead of the December #EUCO. You can read it in :https://lepoint.fr/monde/exclusif-viktor-orban-si-vous-laissez-entrer-l-ukraine-dans-notre-systeme-agricole-europeen-elle-le-detruira-08-12-2023-2546242_24.php\u2026" + }, + { + "Retweets": "430", + "Likes": "2.2K", + "Content": "I had a frank phone conversation today with Prime Minister . My message was clear: we should refrain from discussing the issue of Ukraine\u2019s EU accession during the December #EUCO, as there is no unity among member states on this matter." + }, + { + "Retweets": "1.7K", + "Likes": "5.8K", + "Content": "It is clear that there will be no solution for the #RussiaUkraineWar on the battlefield. Instead of financing the war, we should finally devote Europe\u2019s resources to making #peace." + }, + { + "Retweets": "1.1K", + "Likes": "4.3K", + "Content": "It is clear that the proposal of the on Ukraine\u2019s EU accession is unfounded and poorly prepared. There is no place for it on the agenda of the December #EUCO !" + }, + { + "Retweets": "821", + "Likes": "4K", + "Content": "My greetings and best wishes go out to and all our friends gathered in #Florence today. The winds of change are here! #FreeEurope" + }, + { + "Retweets": "1.7K", + "Likes": "5K", + "Content": "The didn\u2019t do it\u2019s homework. They want to shove Ukraine\u2019s EU accession down our throats, without assessing the consequences for European taxpayers and farmers. This is nonsense! The Commission should go back to the drawing board. #Ukraine\u2019s EU-accession shouldn\u2019t\u2026" + }, + { + "Retweets": "2K", + "Likes": "7K", + "Content": "The Hungarian model is simple and based on common sense: #workfare economy low taxes pro-family policies no #migration" + }, + { + "Retweets": "4.2K", + "Likes": "12K", + "Content": "The reality I see is that ever more decisions are being taken by the #Brussels institutions instead of national leaders. The problem is that #bureaucrats don\u2019t represent the people. That is the job of democratically elected leaders. That is our job!" + }, + { + "Retweets": "529", + "Likes": "2K", + "Content": "I had the honour of giving a keynote speech at the jubilee of , one of Europe's most prestigious #Conservative newspapers. My entire speech is now available with English subtitles. Thank you for the invitation !" + }, + { + "Retweets": "107", + "Likes": "883", + "Content": "Had a useful meeting today with Charles Michel in Budapest." + }, + { + "Retweets": "2.2K", + "Likes": "8.4K", + "Content": "Europe cannot chain itself blindly to the United States. The US is an important ally, but we must stand up for the interests of the European people!" + }, + { + "Retweets": "1.8K", + "Likes": "12K", + "Content": "I recently phoned President to congratulate him on his astounding victory at the Argentinian presidential election. Looking forward to working together with a true #patriot! See you at the inauguration in Buenos Aires." + }, + { + "Retweets": "1.5K", + "Likes": "5.1K", + "Content": "The #Democrats in the US often present their foreign policy interests as universal values. By doing so, we lose the possibility of a meaningful dialogue. The nature of disputes over values is completely different from disputes over interests. Interests can be aligned, values\u2026" + }, + { + "Retweets": "3.6K", + "Likes": "17K", + "Content": "The winds of change are here! Congratulations to on winning the Dutch elections!" + }, + { + "Retweets": "6.5K", + "Likes": "18K", + "Content": "Brussels\u2019 model for Europe leads to chaos. We don\u2019t want to be #Soros\u2019 debt slaves, we don\u2019t want to live in a zone of gang wars and we don\u2019t want to live in a world of #migrant ghettos. It\u2019s time for a change in #Brussels!" + }, + { + "Retweets": "1.6K", + "Likes": "5.8K", + "Content": "While the rest of the world is gaining new momentum, Brussels\u2019 model for Europe has grown old. It\u2019s time to shake things up! It\u2019s time for a change in #Brussels!" + }, + { + "Retweets": "4.6K", + "Likes": "15K", + "Content": "The Hungarian model works! Many people in Western Europe would give half their lives if they could have a country without illegal migrants again. In Hungary we have zero #ILLEGALimmigrants. Only those can come whom we let in." + }, + { + "Retweets": "1.5K", + "Likes": "5K", + "Content": "The strategy of #Brussels regarding the #RussiaUkraineWar was simple: Ukraine will win on the frontline and the Russians will lose. It\u2019s time to face the music: the frontline has frozen and this strategy has failed. We need a plan B. But most importantly, we need a #ceasefire and\u2026" + }, + { + "Retweets": "3K", + "Likes": "10K", + "Content": "The majority of Europeans want #peace. The majority of Europeans want to #STOPmigration. The majority of Europeans want #secureborders. Today, Hungary is the voice of Europe!" + }, + { + "Retweets": "844", + "Likes": "4K", + "Content": "Today, the beautiful Pancho Arena in my hometown, Felcs\u00fat is home to the #EURO2024 qualifier between #Israel and #Switzerland. Over 10 years ago, we introduced a policy of zero-tolerance towards anti-Semitism. Today, Hungary is the safest country in Europe for the Jewish\u2026" + }, + { + "Retweets": "99", + "Likes": "875", + "Content": "Difficult times require experienced leaders. Glad to see a friendly and familiar face in the arena of politics. Welcome back, !" + }, + { + "Retweets": "5.2K", + "Likes": "14K", + "Content": "The bureaucrats in #Brussels are in the pockets of a globalist elite. The European people don\u2019t want #migration, they don\u2019t want #war and they don\u2019t want unrest. It\u2019s time their voices are heard! It\u2019s time to make a change in Brussels!" + }, + { + "Retweets": "5.3K", + "Likes": "17K", + "Content": "We made a tolerance offer to Brussels: every country can deal with #migration the way they want to, but they cannot force #Hungary to copy the failed migration policies of Western Europe. We don\u2019t want #terrorism, gang wars and mini Gazas in Budapest!" + }, + { + "Retweets": "1.9K", + "Likes": "5.9K", + "Content": "A bureaucratic terrorist attack against free speech: the European Parliament lifted the immunity of four PiS MEP\u2019s for speaking out against illegal migration. The beginning of the end\u2026 Good morning, Europe!https://tvpworld.com/74016681/new-bolshevism-pis-leader-on-ep-lifting-immunity-of-partys-four-meps\u2026" + }, + { + "Retweets": "6.2K", + "Likes": "20K", + "Content": "There is only one way to stop #IllegalMigration : don\u2019t let them in. This is the Hungarian model, and it works." + }, + { + "Retweets": "3.2K", + "Likes": "11K", + "Content": "Brussels chose to support #migration, and now that the toothpaste is out of the tube, they want us to shoulder the burden. This is is impossible! We will not risk the safety of #Hungary and the Hungarian people! #IllegalMigration #EUCO #Brussels" + }, + { + "Retweets": "2.4K", + "Likes": "9.5K", + "Content": "Hungary is following a #peace strategy. We will do everything in order to make peace. My meeting with the President of Russia served this purpose." + }, + { + "Retweets": "2.5K", + "Likes": "8.6K", + "Content": "There is an obvious connection between #terrorism and illegal migration. Hungary is against terrorism, so we cannot support migration either!" + }, + { + "Retweets": "879", + "Likes": "5.3K", + "Content": "Back to the future #RobertFico #EUCO" + }, + { + "Retweets": "230", + "Likes": "1.6K", + "Content": "Let\u2019s get ready to rumble! #EUCO" + }, + { + "Retweets": "3.3K", + "Likes": "16K", + "Content": "Look what came in the mail today! Thank you for your support, ! " + }, + { + "Retweets": "1.2K", + "Likes": "4.8K", + "Content": "Brussels is not Moscow. The Soviet Union was a tragedy. The EU is only a weak contemporary comedy. The Soviet Union was hopeless, but we can change Brussels and the EU. This change can come at the elections next year!" + }, + { + "Retweets": "566", + "Likes": "2.5K", + "Content": "Instead of \u201cde-risking\u201d and #decoupling , the Hungarian economic strategy is built on #connectivity. We want to become the economic meeting point of the East and the West. If we want to live in a peaceful world then #ThisIsTheWay !" + }, + { + "Retweets": "1.2K", + "Likes": "5.2K", + "Content": "A busy day in #Beijing . Had a meeting today with President Xi, followed by a meeting with President Putin. For us Hungarians and for the whole of Europe, the most important thing is to put an end to the influx of refugees, sanctions and fighting in our neighbourhood." + }, + { + "Retweets": "2.2K", + "Likes": "11K", + "Content": "Meeting with President Putin in #Beijing. Everyone in Europe is asking the same thing: can there be a ceasefire in Ukraine? It\u2019s crucial for Europe, including Hungary, that the flood of refugees, sanctions and fighting should end!" + }, + { + "Retweets": "1K", + "Likes": "5.6K", + "Content": "Meeting with President Xi in #Beijing. #Connectivity instead of #decoupling: this is the Hungarian model. Our aim is to strengthen Hungarian-Chinese relations. This is good for Hungary and good for the European economy. " + }, + { + "Retweets": "345", + "Likes": "2.3K", + "Content": "My deepest condolences to and PM on the heinous terrorist attack that took place in #Brussels last night. Our thoughts and prayers are with the families of the victims." + }, + { + "Retweets": "5.6K", + "Likes": "20K", + "Content": "Thank God we made the right decision in 2015 and built a fence on our southern border to stop #IllegalMigration ! Thanks to this we can live in safety." + }, + { + "Retweets": "6.3K", + "Likes": "34K", + "Content": "There will be NO pro-terror demonstrations in Hungary! \n\nWe will protect the people of Hungary." + }, + { + "Retweets": "304", + "Likes": "2K", + "Content": "The Hungarian-Georgian Intergovernmental Summit kicks off today. Our cooperation is based on shared values, our common Christian heritage and our commitment to peace. Thank you for your hospitality, @GaribashviliGe ! " + }, + { + "Retweets": "4.9K", + "Likes": "17K", + "Content": "The dangers of #MassMigration are becoming more and more evident. This is why Hungary cannot accept Brussels\u2019 migrant quota system. There will be no migrant ghettos in Hungary!" + }, + { + "Retweets": "2.1K", + "Likes": "11K", + "Content": "We strongly condemn the brutal attack against #Israel , and unequivocally support Israel\u2019s right to self-defence. I would like to express my sympathy and condolences to Prime Minister . Our thoughts and prayers are with the people of Israel in these dark hours." + }, + { + "Retweets": "5K", + "Likes": "16K", + "Content": "Brussels legally raped Poland and Hungary by forcing through the #MigrationPact . So there will be no compromise on migration. Not today, and not in the upcoming years. We will defend our borders from migrants and from the Brussels bureaucrats as well!" + }, + { + "Retweets": "3.9K", + "Likes": "13K", + "Content": "The heat is on in #Brussels: the budget is a mess, the #MigrationPact has failed, and the Brusselian strategy on the Russia-Ukraine war is fundamentally flawed. In this situation, Hungary cannot support any budget amendment proposal." + }, + { + "Retweets": "7.7K", + "Likes": "19K", + "Content": "#Brussels is creating an Orwellian world in front of our eyes. They buy and supply weapons through the #EuropeanPeaceFacility . They want to control the media through the #MediaFreedomAct . We didn\u2019t fight the communists to end up in 1984!" + }, + { + "Retweets": "4K", + "Likes": "11K", + "Content": "Another anti-freedom proposal from Brussels: establishing total control over the media. We Central Europeans have seen such things in the past. They called it the Kominform and the Reichspressekammer. Never again! #MediaFreedomAct" + }, + { + "Retweets": "117", + "Likes": "1.1K", + "Content": "I was deeply shocked by the tragic bus accident that happened last night near Venice. My deepest condolences to and the people of #Italy. Our thoughts and prayers are with the families of the victims." + }, + { + "Retweets": "8.5K", + "Likes": "30K", + "Content": "Hungary is a sovereign country. We will not become a migrant ghetto and we will not give up our right to have our own foreign and economic policy. #ThisIsTheWay" + }, + { + "Retweets": "151", + "Likes": "1.1K", + "Content": "Ferenc Krausz, Scientific Director and CEO of the Hungarian Center for Molecular Fingerprinting earns another #NobelPrize for Hungary in #physics. We are proud of his remarkable achievements!" + }, + { + "Retweets": "255", + "Likes": "2.6K", + "Content": "Katalin Karik\u00f3 is the first Hungarian woman to win a #NobelPrize and join the long list of Hungarian Nobel laureates. Hungary is proud! " + }, + { + "Retweets": "3.1K", + "Likes": "15K", + "Content": "Guess who's back! Congratulations to Robert Fico on his undisputable victory at the Slovak parliamentary elections. Always good to work together with a patriot. Looking forward to it! " + }, + { + "Retweets": "1.7K", + "Likes": "5.4K", + "Content": "There is loads of literature on how to stop #IllegalMigration. The Hungarian solution is based on experience and it works: don\u2019t let migrants in." + }, + { + "Retweets": "1.9K", + "Likes": "6.6K", + "Content": "Instead of solving the global food crisis, the #Brussels pact on #UkraineGrain turned out to be a scam. Brussels doesn\u2019t care about the interests of European #farmers, but we do. , and are leading the resistance!" + }, + { + "Retweets": "1.7K", + "Likes": "9.1K", + "Content": "Always a pleasure to meet true patriots. Had a great meeting today with Marine Le Pen in Budapest. We need a change in Brussels: this is the only way to stop illegal migration, protect our families and kickstart the European economy. Merci pour la rencontre d'aujourd'hui\u2026" + }, + { + "Retweets": "2.5K", + "Likes": "8.2K", + "Content": "#Brussels wants to shove the failed #migrant pact down our throat before the upcoming #European elections. While illegal migrants are attacking our policemen, Brussels wants to force us to let them in. Another insane idea from the bubble in Brussels. We will not let it happen!\u2026" + }, + { + "Retweets": "4K", + "Likes": "12K", + "Content": "Migrant violence is on the rise. Three nights ago, a joint border patrol came under fire from automatic weapons. With this, migrants have crossed the Rubicon. It\u2019s time to face the facts: the Brussels #migration pact has failed." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Latest news from the Hungarian border: the pressure of illegal migration is mounting due to the failed policies of Brussels. Hungary has blocked over 125,000 illegal border-crossing attempts just this year. We will protect our borders, but we need a change in #Brussels if we want\u2026" + }, + { + "Retweets": "1.7K", + "Likes": "5.7K", + "Content": "The stakes are high in the upcoming European elections. We need a change in #Brussels! We need a leadership that wants peace. We need a leadership that\u2019s finally able to stop migration. We need a leadership that puts the interests of European people first!" + }, + { + "Retweets": "2.8K", + "Likes": "10K", + "Content": "In #Hungary, we believe that the key to solving our #demographic problems is not migration, but supporting Hungarian #families . Since 2010 the per capita income of families with children has doubled, and the per capita income of families with more than one child has tripled. In\u2026" + }, + { + "Retweets": "2.3K", + "Likes": "8.3K", + "Content": "It\u2019s time to take matters into our own hands! Ukrainian agricultural products destined for #Africa are flooding Central European markets. The bureaucrats in Brussels are turning a blind eye to the problems of European farmers once again, so Hungary, Poland and Slovakia are\u2026" + }, + { + "Retweets": "89", + "Likes": "842", + "Content": "Had a great meeting today with CEO Timotheus H\u00f6ttges. We signed an agreement on how we will work together on the digital transformation of Hungary. Connectivity is the key to the success of the economy, so we greatly appreciate the investments of our \u2026" + }, + { + "Retweets": "607", + "Likes": "3.6K", + "Content": "It was a privilege to welcome Prime Minister in Hungary. We need more #conservative governments in Europe to make a change in Brussels. and are leading the way!" + }, + { + "Retweets": "151", + "Likes": "1.2K", + "Content": "The 5th #BudapestDemographicSummit starts today with , , and many other fantastic speakers. Thank you for joining us! #FamilyFriendlyHungary" + }, + { + "Retweets": "656", + "Likes": "3.7K", + "Content": "The ultimate goal of politics and political competition is to unify the nation. Persecuting political opponents makes this impossible." + }, + { + "Retweets": "2.3K", + "Likes": "8.7K", + "Content": "You may or may not like , but his foreign policy was good for the US and good for the world. He didn\u2019t start a war, he strengthened NATO and brought peace to the Middle East. Bring him back, so he can bring us peace!" + }, + { + "Retweets": "64K", + "Likes": "233K", + "Content": "Ep. 20 Hungary shares a border with Ukraine. We traveled to Budapest to speak with the country\u2019s prime minister, Viktor Orb\u00e1n." + }, + { + "Retweets": "12K", + "Likes": "91K", + "Content": "Coming Soon\n\nPrime Minister Viktor Orb\u00e1n of Hungary\n\nWe sat down with him in Budapest" + }, + { + "Retweets": "173", + "Likes": "1.3K", + "Content": "It was an an honour to welcome His Highness during his official visit to Hungary. #Qatar has become an indispensable player in the energy supply of Europe. We are ramping up our cooperation in the field of economy, agriculture and energy. Big things ahead! " + }, + { + "Retweets": "555", + "Likes": "3.5K", + "Content": "St. Stephen\u2019s day. God bless Hungary! " + }, + { + "Retweets": "368", + "Likes": "2.6K", + "Content": "Busy day today. Had the privilege of welcoming President , , , , as well as the President of #Kyrgyzstan and #Turkmenistan at my office. That\u2019s what I call #connectivity." + }, + { + "Retweets": "141", + "Likes": "1K", + "Content": "Important meeting today with President Shavkat Mirziyoyev . #Uzbekistan is one of the most important destination countries for Hungarian investments. Banking sector, food industry, pharmaceutical production: Hungarian companies are getting stronger! #connectivity\u2026" + }, + { + "Retweets": "89", + "Likes": "848", + "Content": "I started the day with , President of . After years of hard work and preparation starts today. #Hungary connects the world! " + }, + { + "Retweets": "261", + "Likes": "1.9K", + "Content": "All eyes on #Hungary: kicks off today. " + }, + { + "Retweets": "411", + "Likes": "2K", + "Content": "Peace is the only acceptable moral and political position for Hungary. But #peace requires strength. This is why we are ramping up our defence industry. Inauguration of the factory in Zalaegerszeg. #MadeInHungary" + }, + { + "Retweets": "374", + "Likes": "2.3K", + "Content": "Nice to see that came back from retirement. Now he wants to decide who is European and who is not. It seems that some people just can\u2019t let go of #Communism " + }, + { + "Retweets": "3.5K", + "Likes": "12K", + "Content": "Hungary does not want to take chances when it comes to #migration. We don\u2019t want migrant quotas or migrant ghettos in our country!" + }, + { + "Retweets": "190", + "Likes": "1.1K", + "Content": "We are deeply concerned about the attempted coup d\u2019Etat against the democratically elected President of Niger. Hungary condemns every attempt aimed at undermining the peace and stability of . We stand by President and pray for his wellbeing." + }, + { + "Retweets": "1.1K", + "Likes": "4.3K", + "Content": "#Brussels has created its own political class, which is no longer accountable and no longer has any #Christian or #democratic convictions. Federalist governance in #Europe has led to an unaccountable empire. But Europe is ours too - this is why we will fight for it. We will stand\u2026" + }, + { + "Retweets": "466", + "Likes": "2.1K", + "Content": "If want to know more than what you get from the mainstream media: my speech at the 32nd B\u00e1lv\u00e1nyos summer free university and student camp is now available in English: https://miniszterelnok.hu/en/speech-by-prime-minister-viktor-orban-at-the-32nd-balvanyos-summer-free-university-and-student-camp/\u2026" + }, + { + "Retweets": "413", + "Likes": "2.2K", + "Content": "Annual speech at the B\u00e1lv\u00e1nyos Free Summer University and Student Camp in Tusn\u00e1df\u00fcrd\u0151. Europe has created its own political class, which is not accountable, and has no democratic or Christian convictions. Because of this, we have no choice. We have to fight! We don't want\u2026" + }, + { + "Retweets": "129", + "Likes": "1.2K", + "Content": "Meeting with Prime Minister in #Bucharest. This is the beginning of a beautiful friendship " + }, + { + "Retweets": "1K", + "Likes": "3.9K", + "Content": "The #EUCELACSummit confirmed that the majority of the world has had enough of the #RussiaUkraineWar . Today we argued once again for an immediate ceasefire and peace talks, and this time the leaders of Latin America joined us. The time for peace has come!" + }, + { + "Retweets": "1K", + "Likes": "2.1K", + "Content": " El primer ministro de Hungr\u00eda, , recuerda a los espa\u00f1oles la importancia de decidir el rumbo de una naci\u00f3n:\n\n\"Este domingo les toca a ustedes decidir el rumbo que tomar\u00e1 Espa\u00f1a. Levanten bien alto las banderas, luchen por la victoria y demuestren que el futuro\u2026" + }, + { + "Retweets": "4K", + "Likes": "13K", + "Content": "Hungary has found the solution to the #migrantcrisis: no finished asylum procedure, no entry to the EU. This is the Hungarian system, and it works. Now Brussels wants to destroy it. We will not let this happen. There will be no migrant ghettos in Hungary under my watch! " + }, + { + "Retweets": "217", + "Likes": "1.5K", + "Content": "Had a great meeting with President Yoon Suk Yeol on the margins of the #NATOSummitVilnius . South Korea has become one of the largest foreign investors in Hungary, and our trade relations are breaking all previous records as well. Hungary has become an important hub for South\u2026" + }, + { + "Retweets": "4.8K", + "Likes": "17K", + "Content": "Instead of shipping weapons to Ukraine we should finally bring peace. Hungary stands firmly on the side of #peace at the #NATOSummitVilnius !" + }, + { + "Retweets": "1.5K", + "Likes": "9.4K", + "Content": "#NATOSummitVilniusHungary stands firmly on the side of peace!" + }, + { + "Retweets": "130", + "Likes": "1.1K", + "Content": "Today I called President Shavkat Mirziyoyev to congratulate him on his overwhelming and indisputable victory at yesterday\u2019s presidential election. Hungary stands ready to further develop the strategic cooperation between and !" + }, + { + "Retweets": "10K", + "Likes": "37K", + "Content": "Hungary will not implement Brussels' #migration decisions. We will not accept mandatory quotas and we will not build migrant ghettos. Hungary first! " + }, + { + "Retweets": "998", + "Likes": "4.1K", + "Content": "Migration summit in #Vienna with Chancellor and President . Hungary must defend itself not only against human traffickers and illegal migrants, but also against Brussels. I made it clear today: we will continue to defend the borders of the #EU, and we will\u2026" + }, + { + "Retweets": "785", + "Likes": "3.2K", + "Content": "Migration summit in #Vienna with Chancellor and President . The Hungarian model is simple and effective: defend your borders and stop illegal migration. If we have to, we\u2019ll do it on our own! " + }, + { + "Retweets": "541", + "Likes": "1.4K", + "Content": "Had a great meeting today with Chairman . International cooperation between right-wing, conservative parties is more important than ever. Chairman Harper is a great ally in this respect. Thank you for your support, Mr. Chairman!" + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "Poland and Hungary fought side-by-side during the #EUCO against mandatory migrant quotas. Creating pull factors will only make illegal #migration worse. We will continue to defend our borders!" + }, + { + "Retweets": "6.9K", + "Likes": "15K", + "Content": "Brussels, #EUCO. We want to know who is responsible for bringing the European Union to the brink of bankruptcy. Where is the money ?" + }, + { + "Retweets": "2.7K", + "Likes": "8.9K", + "Content": "Just 2 years into the 7-year budget, #Brussels is running out of money. How did this happen? What happened to the budget? Where is the money, ?" + }, + { + "Retweets": "277", + "Likes": "1.2K", + "Content": "\u201cWe have to trust politicians and diplomats to negotiate a ceasefire. This is the only way we can save lives at this moment.\u201d Read this and more in my exclusive interview with Bild:" + }, + { + "Retweets": "217", + "Likes": "1K", + "Content": "#EUCO preparation with @LudoOdorPM and . I reaffirmed the position on the budget amendment proposal: it is frivolous and unfit for debate!" + }, + { + "Retweets": "124", + "Likes": "593", + "Content": "3. Instead of stopping illegal #migration, Brussels wants to spend billions more on settling illegal migrants in Europe." + }, + { + "Retweets": "115", + "Likes": "576", + "Content": "4. In addition to all this, the Commission would take additional billions of euros from member states to raise the salaries of Brussels bureaucrats. This is outrageous!" + }, + { + "Retweets": "174", + "Likes": "797", + "Content": "We discussed in depth the topic of migration at today\u2019s V4 summit with , @LudoOdorPM and . The position is clear: the latest budget amendment proposal of the is frivolous. We are asking for a new proposal from the EU Commission that can\u2026" + }, + { + "Retweets": "98", + "Likes": "773", + "Content": "V4 summit in Bratislava. Thank you for your hospitality, @LudoOdorPM ! " + }, + { + "Retweets": "423", + "Likes": "1.9K", + "Content": "Serbian President Aleksandar Vucic has just informed me that in accordance with the request made at our meeting last week, the Serbian authorities will soon release the three previously arrested Kosovo policemen from custody. We highly appreciate the step of President ,\u2026" + }, + { + "Retweets": "217", + "Likes": "1K", + "Content": "#EUCO preparation with @LudoOdorPM and . I reaffirmed the position on the budget amendment proposal: it is frivolous and unfit for debate!" + }, + { + "Retweets": "152", + "Likes": "1K", + "Content": "With the Hungarian presidency of the EU Council just a year away, I had the pleasure of visiting #Serbia, #Albania, #Montenegro and #Bosnia and Herzegovina in the past seven days. We must speed up the EU-accession of the Western Balkans. The presidency will do its best to make\u2026" + }, + { + "Retweets": "157", + "Likes": "943", + "Content": "The #EU needs the energy and dynamism of the Western Balkans. We must speed up the EU accession of the region!" + }, + { + "Retweets": "93", + "Likes": "634", + "Content": "The Tour de Balkans continues with my official visit to . Instead of #sanctions, the countries of the Western Balkans need EU membership as fast as possible. You can count on #Hungary when it comes to #enlargement!" + }, + { + "Retweets": "213", + "Likes": "1.5K", + "Content": "Today we held the first meeting of the- strategic council with , , and members of the two governments. and are both on the side of peace. For this reason I asked President to let the three Kosovars in Serbian custody go home.\u2026" + }, + { + "Retweets": "931", + "Likes": "2.6K", + "Content": "Brussels is calling for mandatory migrant quotas once again. The Soros-empire strikes back." + }, + { + "Retweets": "121", + "Likes": "849", + "Content": "Official visit to #Albania. The pace of #EUenlargement is shameful and unacceptable. If we want a peaceful and prosperous Europe, we must accelerate the EU integration of the Western Balkans. You can count on us, ! " + }, + { + "Retweets": "1.5K", + "Likes": "4.6K", + "Content": "The pro-war camp are attacking with full force. That\u2019s what you get nowadays if you\u2019re on the side of peace. Keep on fighting, Mr. President! The world needs you, the world needs #peace." + }, + { + "Retweets": "695", + "Likes": "4.1K", + "Content": "Final farewell to Silvio Berlusconi. He was a great statesman and a true friend. Our life is emptier without you. God bless you!" + }, + { + "Retweets": "1.8K", + "Likes": "11K", + "Content": "Gone is the great fighter." + }, + { + "Retweets": "1.7K", + "Likes": "7.6K", + "Content": "Soros 2.0https://reuters.com/business/finance/billionaire-george-soros-hands-control-empire-son-wsj-2023-06-11/\u2026" + }, + { + "Retweets": "1.3K", + "Likes": "6.1K", + "Content": "Your fight is a good fight . Never give up!" + }, + { + "Retweets": "140", + "Likes": "1K", + "Content": "Preparations for the Hungarian EU Council presidency are underway. Today we met from the to discuss how can contribute to managing the challenges ahead of Europe. This is my government\u2019s second presidency, so we are experienced and capable enough to\u2026" + }, + { + "Retweets": "100", + "Likes": "765", + "Content": "International monday, AKA #connectivity . Today I met with many important international partners of Hungary: CEO, Alexei Likhachev President, Jin Liqun \n\nHE Mr. Kim Jin-pyo, Speaker of the National Assembly of South Korea.\n\nHE Mr. Ayman Hussein Abdullah\u2026" + }, + { + "Retweets": "1.5K", + "Likes": "8.8K", + "Content": "I congratulated President on his election victory during his inauguration in Ankara. His pro-peace stance is like a breath of fresh air for Hungary!" + }, + { + "Retweets": "260", + "Likes": "1.4K", + "Content": "Great meeting yesterday in Budapest with members of the #conservative group (EC/DA) of the Parliamentary Assembly of the Council of Europe. Important elections ahead of us in Europe. The conservative wave is coming! " + }, + { + "Retweets": "258", + "Likes": "1.7K", + "Content": "Among friends today at the EPC Summit in Moldova. " + }, + { + "Retweets": "2.2K", + "Likes": "9K", + "Content": "The right-wing reconquista continues in Spain. Congratulations to and on their excellent result at yesterday's municipal elections #Elecciones28M. The next step: parliamentary elections in July. \u00a1Vamos, Santiago! \u00a1Vamos, Vox!" + }, + { + "Retweets": "7.2K", + "Likes": "44K", + "Content": "Congratulations to President on his unquestionable election victory! Tebrikler, Say\u0131n Cumhurba\u015fkan\u0131!" + }, + { + "Retweets": "425", + "Likes": "2.2K", + "Content": "Christians and Muslims can and should cooperate on the main dilemmas of the future, like migration, gender propaganda and sovereignty. Christians and Muslims can and should work together to defend traditional values. My trip to #Qatar and my meeting with HH \u2026" + }, + { + "Retweets": "1.9K", + "Likes": "6K", + "Content": "Hungarians love freedom and sovereignty. This is why we don\u2019t like to be lectured or educated. Every nation has the right to determine their own way of life. #ThisIsTheWay " + }, + { + "Retweets": "92", + "Likes": "635", + "Content": "Just concluded a three-day visit to #Qatar . We agreed with HH to establish a strategic cooperation between and . Today I talked about this and much more at the ." + }, + { + "Retweets": "288", + "Likes": "1.3K", + "Content": "We held the executive meeting of in Bled today with PM PM and President \nHungary supports every peace plan aimed at ending the #russiaukrainewar\ufe0f . We must take the first step towards #peace ASAP!" + }, + { + "Retweets": "2.4K", + "Likes": "11K", + "Content": "I just called President to congratulate him on his overwhelming victory in the first round of the presidential elections, and the outstanding and unquestionable victory of at the recent Turkish parliamentary elections. Good luck for the second round,\u2026" + }, + { + "Retweets": "142", + "Likes": "2.2K", + "Content": "Happy Mothers\u2019 Day!" + }, + { + "Retweets": "110", + "Likes": "1.2K", + "Content": "God bless your reign, Your Majesty!" + }, + { + "Retweets": "4.6K", + "Likes": "18K", + "Content": "Thank you for your message ! Please come back, and bring us peace!" + }, + { + "Retweets": "475", + "Likes": "1.9K", + "Content": "Great meeting in Budapest today with and other friends.\nWe made an important first step one year ahead of the European elections. Big\u2026" + } + ] +} \ No newline at end of file diff --git a/backend/experimental/orban-tweet-length.png b/backend/experimental/orban-tweet-length.png new file mode 100644 index 000000000..33c76dc2d Binary files /dev/null and b/backend/experimental/orban-tweet-length.png differ diff --git a/backend/experimental/orban-word-lengths.png b/backend/experimental/orban-word-lengths.png new file mode 100644 index 000000000..0db900312 Binary files /dev/null and b/backend/experimental/orban-word-lengths.png differ diff --git a/backend/experimental/preprocess.py b/backend/experimental/preprocess.py new file mode 100644 index 000000000..3e408b6e0 --- /dev/null +++ b/backend/experimental/preprocess.py @@ -0,0 +1,81 @@ +import json +import re +from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer +from sklearn.metrics.pairwise import cosine_similarity +import matplotlib.pyplot as plt +import pandas as pd +from nltk.stem import PorterStemmer +ps = PorterStemmer() +# Path to your JSON file +json_file_path = 'init.json' + +# Read the JSON file +with open(json_file_path, 'r', encoding='utf-8') as file: + tweets_data = json.load(file) + +word_regex = re.compile(r""" + (\w+) + """, re.VERBOSE) + + +def getwords(sent): + return [w.lower() + for w in word_regex.findall(sent)] + + +splitter = re.compile(r""" + (? 1 and len(item) < 20] + # we want real words + sent_words_lower = [ps.stem(word) for word in sent_words_lower] + words += sent_words_lower + + list_words.append(words) + key += 1 + + +# print(set_words[1]) +for i in range(0, len(list_words)): + list_words[i] = " ".join(list_words[i]) +# print(len(list_words[1])) +list_words.append("america one") + + +vectorizer = TfidfVectorizer() +counter = CountVectorizer() + +# TD-IDF Matrix +tfidf = vectorizer.fit_transform(list_words) +print("HERE") +cs = cosine_similarity(tfidf, tfidf) +# cs.sort() +relevant = (-cs[-1]).argsort()[1:] +for r in relevant: + print(list(tweets_data.keys())[r]) +# print(cs.sort()) +# counts = counter.fit_transform(list_words) +# print(counts) +# print(tfidf.shape) +# print(len(tfidf[2])) +# print(tfidf[0, 1900]) +# print(tfidf) + + +# for i, feature in enumerate(vectorizer.get_feature_names()): +# print(i, feature) diff --git a/backend/experimental/test.py b/backend/experimental/test.py new file mode 100644 index 000000000..87771b0f5 --- /dev/null +++ b/backend/experimental/test.py @@ -0,0 +1,83 @@ +import json +import re +from collections import defaultdict +from sklearn.feature_extraction.text import TfidfVectorizer +import matplotlib.pyplot as plt +# Path to your JSON file +json_file_path = 'init.json' + +# Read the JSON file +with open(json_file_path, 'r', encoding='utf-8') as file: + tweets_data = json.load(file) + +word_regex = re.compile(r""" + (\w+) + """, re.VERBOSE) + + +def getwords(sent): + return [w.lower() + for w in word_regex.findall(sent)] + + +splitter = re.compile(r""" + (?" + }, + { + "Retweets": "3", + "Likes": "70", + "Content": "Let\u2019s Gooooo!" + }, + { + "Retweets": "24", + "Likes": "249", + "Content": "#Merica" + }, + { + "Retweets": "16", + "Likes": "290", + "Content": "Am in a barbershop\u2026\nold dude customer: \u201cI\u2019m getting married on March 30.\u201d \nold dude barber: \u201cWhy?\u201d\ncustomer, earnestly trying to answer\u2026\nbarber, interrupting: \u201cDoes she have a boat?\u201d" + }, + { + "Retweets": "0", + "Likes": "34", + "Content": "(Note to self:\ngotta teach him about the leprosy stuff)" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester" + }, + { + "Retweets": "9", + "Likes": "177", + "Content": "one of my college daughters:\n\u201cIs Travis Kelce literally a golden retriever?\u201d" + }, + { + "Retweets": "2", + "Likes": "91", + "Content": "Bonus football!" + }, + { + "Retweets": "0", + "Likes": "86", + "Content": "(well played)" + }, + { + "Retweets": "6", + "Likes": "31", + "Content": "\u201c\u2026ravaging people's ingesting and causing many to defecate bodily\u201d??" + }, + { + "Retweets": "7", + "Likes": "60", + "Content": "\u2018Merican innovation is alive and well\n\u2014>" + }, + { + "Retweets": "0", + "Likes": "52", + "Content": "anyone hear him call glass?" + }, + { + "Retweets": "1", + "Likes": "21", + "Content": "" + }, + { + "Retweets": "3", + "Likes": "49", + "Content": "" + }, + { + "Retweets": "0", + "Likes": "13", + "Content": "" + }, + { + "Retweets": "8", + "Likes": "110", + "Content": "Thanks for the ride,\n\u2066\u2069\nSpaceX launches UF/IFAS microbiology experiment to ISS today - News" + }, + { + "Retweets": "9", + "Likes": "106", + "Content": "Come to Florida, they said\u2026\nWoman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago \u2013 NBC 6" + }, + { + "Retweets": "0", + "Likes": "72", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "0", + "Likes": "24", + "Content": "there\u2019s more where that came from \u2014>" + }, + { + "Retweets": "7", + "Likes": "95", + "Content": "#FloridaMan rocks" + }, + { + "Retweets": "5", + "Likes": "216", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "5", + "Likes": "206", + "Content": "10-1 odds this is florida" + }, + { + "Retweets": "2", + "Likes": "44", + "Content": "Yes. \nThank you for the question, karen" + }, + { + "Retweets": "3", + "Likes": "77", + "Content": "six days with no football is wrong" + }, + { + "Retweets": "1", + "Likes": "19", + "Content": "that\u2019s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries\u2026)" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "1", + "Likes": "49", + "Content": "Amazing, again (and again)" + }, + { + "Retweets": "11", + "Likes": "266", + "Content": " our exchange students. \nThree today have called their time in G\u2019ville\n\u201cthe best year of their lives\u201d" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "6", + "Likes": "153", + "Content": "Same." + }, + { + "Retweets": "5", + "Likes": "82", + "Content": "checks out\u2026" + }, + { + "Retweets": "5", + "Likes": "267", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "1", + "Likes": "42", + "Content": "Dude is special" + }, + { + "Retweets": "1", + "Likes": "50", + "Content": "Moly\u2026." + }, + { + "Retweets": "0", + "Likes": "30", + "Content": "Go Gators!" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "(This isn\u2019t the only reason)" + }, + { + "Retweets": "2", + "Likes": "52", + "Content": "12-5. #GatorsSweep" + }, + { + "Retweets": "5", + "Likes": "255", + "Content": " " + }, + { + "Retweets": "2", + "Likes": "21", + "Content": "At the tape\u2026we have a best baby\u2014>" + }, + { + "Retweets": "3", + "Likes": "70", + "Content": "Let\u2019s Gooooo!" + }, + { + "Retweets": "24", + "Likes": "249", + "Content": "#Merica" + }, + { + "Retweets": "16", + "Likes": "290", + "Content": "Am in a barbershop\u2026\nold dude customer: \u201cI\u2019m getting married on March 30.\u201d \nold dude barber: \u201cWhy?\u201d\ncustomer, earnestly trying to answer\u2026\nbarber, interrupting: \u201cDoes she have a boat?\u201d" + }, + { + "Retweets": "0", + "Likes": "34", + "Content": "(Note to self:\ngotta teach him about the leprosy stuff)" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester" + }, + { + "Retweets": "9", + "Likes": "177", + "Content": "one of my college daughters:\n\u201cIs Travis Kelce literally a golden retriever?\u201d" + }, + { + "Retweets": "2", + "Likes": "91", + "Content": "Bonus football!" + }, + { + "Retweets": "0", + "Likes": "86", + "Content": "(well played)" + }, + { + "Retweets": "6", + "Likes": "31", + "Content": "\u201c\u2026ravaging people's ingesting and causing many to defecate bodily\u201d??" + }, + { + "Retweets": "7", + "Likes": "60", + "Content": "\u2018Merican innovation is alive and well\n\u2014>" + }, + { + "Retweets": "0", + "Likes": "52", + "Content": "anyone hear him call glass?" + }, + { + "Retweets": "1", + "Likes": "21", + "Content": "" + }, + { + "Retweets": "3", + "Likes": "49", + "Content": "" + }, + { + "Retweets": "0", + "Likes": "13", + "Content": "" + }, + { + "Retweets": "8", + "Likes": "110", + "Content": "Thanks for the ride,\n\u2066\u2069\nSpaceX launches UF/IFAS microbiology experiment to ISS today - News" + }, + { + "Retweets": "9", + "Likes": "106", + "Content": "Come to Florida, they said\u2026\nWoman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago \u2013 NBC 6" + }, + { + "Retweets": "0", + "Likes": "72", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "0", + "Likes": "24", + "Content": "there\u2019s more where that came from \u2014>" + }, + { + "Retweets": "7", + "Likes": "95", + "Content": "#FloridaMan rocks" + }, + { + "Retweets": "5", + "Likes": "216", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "5", + "Likes": "206", + "Content": "10-1 odds this is florida" + }, + { + "Retweets": "2", + "Likes": "44", + "Content": "Yes. \nThank you for the question, karen" + }, + { + "Retweets": "3", + "Likes": "77", + "Content": "six days with no football is wrong" + }, + { + "Retweets": "1", + "Likes": "19", + "Content": "that\u2019s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries\u2026)" + } + ], + "Brian Schatz": [ + { + "Retweets": "580", + "Likes": "4.8K", + "Content": "One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity." + }, + { + "Retweets": "57", + "Likes": "330", + "Content": "1) Campaigns are about winning arguments, and our argument is that these last four years have been an improvement on the previous four.\n2) The more people think seriously about the choice, the better Biden performs. \n3) We should compare their records. It\u2019s fair and compelling." + }, + { + "Retweets": "580", + "Likes": "4.8K", + "Content": "One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity." + }, + { + "Retweets": "1.2K", + "Likes": "5.3K", + "Content": "Very easy to just say \u201cno we are not taking foreign money\u201d that\u2019s not at all what she said." + }, + { + "Retweets": "435", + "Likes": "1.2K", + "Content": "If you want to help Democrats win, memorize this list, and repeat it everywhere. It is fair and true because these are their actual policy positions, and it is politically effective because you could literally not find less popular positions. Pass it on." + }, + { + "Retweets": "157", + "Likes": "565", + "Content": "Hey this race is gonna be expensive https://secure.actblue.com/donate/sbhomepage\u2026" + }, + { + "Retweets": "328", + "Likes": "2.2K", + "Content": "Jewish families all across America are arguing about Israel policy. But one thing we can all agree upon is that Donald Trump is not the arbiter of anyone\u2019s Jewishness." + }, + { + "Retweets": "528", + "Likes": "2.8K", + "Content": "Democrats have a lot of work to do in shoring up our base and reaching independents and making the case for Biden against Trump. But victory also depends on patriots like Kinzinger and Cheney and Pence and Romney being joined by millions of voters. All hands on deck." + }, + { + "Retweets": "3K", + "Likes": "11K", + "Content": "Headline writers: Don\u2019t outsmart yourself. Just do \u201cTrump Promises Bloodbath if he Doesn\u2019t Win Election.\u201d" + }, + { + "Retweets": "5.2K", + "Likes": "20K", + "Content": "Promising a bloodbath is disqualifying. I don\u2019t care what you think about other issues. This guy is promising a bloodbath. He needs to lose. Stand up for America. Please." + }, + { + "Retweets": "358", + "Likes": "1.5K", + "Content": "Trump promising violence again and I believe that plenty of people don\u2019t know that." + }, + { + "Retweets": "410", + "Likes": "2.9K", + "Content": "This is a gutsy, historic speech from Leader Schumer. I know he didn\u2019t arrive at this conclusion casually or painlessly." + }, + { + "Retweets": "40", + "Likes": "1K", + "Content": "Never gets old." + }, + { + "Retweets": "112", + "Likes": "944", + "Content": "NEWS: We secured a record $1.3B in federal funds for Native housing in the funding deal\u2014a more than $300M increase from last year" + }, + { + "Retweets": "8", + "Likes": "89", + "Content": "Native housing has historically\u2014and unacceptably\u2014been underfunded by the federal government\n \nBecause of the federal government\u2019s failure over time to provide adequate housing support, Native communities are dealing with urgent and unique housing needs" + }, + { + "Retweets": "3", + "Likes": "47", + "Content": "We fought hard to secure this record investment. It helps bring us one step closer to upholding our crucial trust responsibility to Native communities.\n \nFor more info on the funding, check out this link. (4/4)" + }, + { + "Retweets": "6", + "Likes": "59", + "Content": "This historic NAHASDA funding will help families in Native communities move into affordable homes, make renovations, & receive services vital to addressing their urgent housing needs\n \nIncreased Tribal transportation funding will also improve Tribal access to programs" + }, + { + "Retweets": "989", + "Likes": "3.9K", + "Content": "This whole thing is so ghoulish and cruel and the facts don\u2019t support it. If you reported this bullshit like it was some tough but fair shot, I\u2019m just begging you personally to do some self reflection on whether you want to be this kind of professional." + }, + { + "Retweets": "198", + "Likes": "2.3K", + "Content": "There\u2019s so much real antisemitism in the world you don\u2019t have to make anything up to make your point." + }, + { + "Retweets": "17", + "Likes": "182", + "Content": "Hey get me on this bill!" + }, + { + "Retweets": "314", + "Likes": "3.9K", + "Content": "Hahahahhahahhahahhahahahhahahhahahahhahahahah aaaaaarrrrrrrrgggggh" + } + ], + "Elizabeth Warren": [ + { + "Retweets": "34", + "Likes": "142", + "Content": "President Biden has taken another important step forward in the fight against the climate crisis.\nThe \u2019s new rule will slash our carbon emissions, make our air cleaner, and save Americans thousands of dollars." + }, + { + "Retweets": "113", + "Likes": "497", + "Content": "Today, we lost a bright light. Sarah-Ann Shaw was a historic trailblazer and civil rights leader.\n \nSarah-Ann used the power of journalism to make every voice heard, and her impact will be felt for generations.\n \nMy thoughts are with her family & loved ones." + }, + { + "Retweets": "72", + "Likes": "355", + "Content": "I strongly support ' nomination of Brian Murphy to serve as a judge on the US District Court in Massachusetts! Murphy started as a public defender in Worcester & has dedicated his career to upholding fundamental rights. He'll bring valuable perspective to the federal bench." + }, + { + "Retweets": "346", + "Likes": "1.2K", + "Content": "It's time to break up 's monopoly.\nFrom limiting digital wallets to raising iPhone prices, Apple has used its power to stop innovation, crush competition & harm consumers.\nThis a new era of antitrust enforcement. Kanter is holding Big Tech accountable." + }, + { + "Retweets": "75", + "Likes": "355", + "Content": "LFG! 78,000 more public service workers are getting student debt relief.\nBefore President Biden, this program was broken\u2014only 7,000 borrowers got relief.\nNow has cancelled student debt for over 870,000 public servants like nurses & teachers, including 19,000 folks in MA." + }, + { + "Retweets": "1K", + "Likes": "2.3K", + "Content": "Republicans in Congress just announced they're endorsing an extremist budget plan that would ban abortion and rip away access to IVF nationwide.\nThey claim they want to protect IVF, but are doing the exact opposite.\n \nTheir agenda is extreme and dangerous." + }, + { + "Retweets": "71", + "Likes": "219", + "Content": "Tens of thousands of seniors who rely on Social Security aren't getting their full checks after defaulting on their student loans. It pushes many into poverty\u2014and it's wrong.\nI'm leading over 30 lawmakers calling for an end to this devastating practice." + }, + { + "Retweets": "1.3K", + "Likes": "4K", + "Content": "President Biden wants to tax billionaires and invest in affordable child care.\nThat means most families will pay less than $10 a day for child care \u2014 and they won\u2019t keep paying higher tax rates than Jeff Bezos." + }, + { + "Retweets": "107", + "Likes": "581", + "Content": "Double woo-hoo! I joined and federal and local leaders to celebrate 142 new apartment units that will house seniors and people with disabilities in Brighton. I'll keep working hard to bring home more federal funding to grow our housing supply." + }, + { + "Retweets": "54", + "Likes": "207", + "Content": "Democrats & have pushed to lower drug prices for years & challenged drug companies after I warned about Big Pharma's sham patent claims.\nNow and are reducing inhaler costs to $35/month. & should step up!" + }, + { + "Retweets": "131", + "Likes": "381", + "Content": ". Chair Powell's interest rate hikes are holding back clean energy projects across our country that will create new clean jobs and cut electricity costs.\nIt's time for the Fed to cut interest rates." + }, + { + "Retweets": "126", + "Likes": "526", + "Content": "Today I'm re-introducing my Ultra-Millionaires Tax so that when someone makes it really big\u2014earning over $50 million\u2014they have to chip in 2 cents on the next dollar.\nThat means Jeff Bezos can\u2019t keep paying lower tax rates than public school teachers." + }, + { + "Retweets": "442", + "Likes": "1.5K", + "Content": "I\u2019m calling on the CEO of , one of the nation\u2019s largest student loan servicers, to testify at my subcommittee hearing.\nMillions of borrowers have faced obstacles to repayment. Public servants haven\u2019t gotten relief they\u2019re owed.\n \nAmericans deserve answers." + }, + { + "Retweets": "952", + "Likes": "2.3K", + "Content": "President Biden has canceled student loan debt for nearly 4 million Americans. It\u2019s been life-changing." + }, + { + "Retweets": "1.9K", + "Likes": "5.7K", + "Content": "A lot of people think the Supreme Court is to blame for overturning Roe. And they\u2019re right. \nBut who packed the court with anti-abortion extremists? The man who brags about getting Roe overturned: Donald Trump." + }, + { + "Retweets": "162", + "Likes": "475", + "Content": "Thanks to Democrats passing the PACT Act, if you or a veteran you know was exposed to toxins & other hazards during service, you may be eligible for VA health care! This is one of the largest-ever expansions of veteran care. \nApply to get care: http://VA.gov/PACT" + }, + { + "Retweets": "625", + "Likes": "2K", + "Content": "Are you tired of surprise costs and junk fees on your TV bills? \n \nWell, and the are cracking down. This is a big win for families and for competition." + }, + { + "Retweets": "156", + "Likes": "445", + "Content": "The new Sentinel nuclear missile program is 2 years behind schedule and already costs billions more than expected.\n \nThe Pentagon misled Congress and owes the American people an explanation.\n and I are pressing for answers." + }, + { + "Retweets": "933", + "Likes": "3.6K", + "Content": "Roe wasn\u2019t overturned by some accident. We\u2019re here because Republican extremists have been waging a decades-long war to take down Roe. \nBut one thing they got wrong? Our motivation to fight back and restore Roe." + }, + { + "Retweets": "341", + "Likes": "1.2K", + "Content": "After a years-long delay in investigating 4 senior Fed officials\u2019 suspicious trades, the Fed\u2019s internal watchdog let them all off the hook despite violations of the Fed's own policies.\nI have a bipartisan bill to end the culture of corruption at the Fed." + }, + { + "Retweets": "149", + "Likes": "409", + "Content": "Netanyahu's right-wing government is blocking humanitarian aid into Gaza. Palestinians are starving and need immediate relief. It's horrific and violates U.S. law. With these illegal restrictions, the U.S. cannot continue providing bombs to Israel." + }, + { + "Retweets": "1K", + "Likes": "2.7K", + "Content": "It\u2019s time to crack down on shrinkflation and corporate price gouging." + }, + { + "Retweets": "732", + "Likes": "2.7K", + "Content": "The IRS is cracking down on CEOs who dodge taxes while using corporate jets for private trips - that\u2019s great, and I\u2019m asking Treasury & IRS to also close a loophole that helps these high flying tax dodgers." + }, + { + "Retweets": "299", + "Likes": "1.1K", + "Content": "Criminal records for minor marijuana offenses make it harder for people to get housing, jobs, and more.'s cannabis pardons are powerfully important to right systemic wrongs and advance racial justice.\nWeed is legal is Massachusetts, and it should be nationwide." + }, + { + "Retweets": "548", + "Likes": "1.7K", + "Content": "The majority of Americans agree: It's time to rein in corporate price gouging and shrinkflation and hold giant corporations accountable for raising costs to pad their bottom line." + }, + { + "Retweets": "76", + "Likes": "321", + "Content": "$335 million in federal funds is transformative for Allston. The Mass Pike has divided this community for too long.\nIt's a big win for more green space, good public transit, and new bike lanes.\nKudos to strong partnership w , , & ." + }, + { + "Retweets": "125", + "Likes": "473", + "Content": "Rural Native communities have been hit especially hard by the housing crisis, facing hurdles to finding housing & making much-needed repairs. \nToday, I introduced a bill to guarantee rural tribal communities access to federal housing funds they deserve." + }, + { + "Retweets": "90", + "Likes": "338", + "Content": "I stand in solidarity with workers striking for higher pay at . \nMuseum management should negotiate with union workers in good faith for a fair deal." + }, + { + "Retweets": "415", + "Likes": "1.1K", + "Content": "BIG NEWS: the IRS Direct File pilot has launched!\nMany Americans in 12 states, including MA, have a truly free & easy option to file taxes online directly with the IRS. I fought for this program to save you time & money.\n \nCheck your eligibility & file at http://directfile.IRS.gov" + }, + { + "Retweets": "65", + "Likes": "451", + "Content": "Wishing a blessed Ramadan to families in Massachusetts and around the world. \nIn the midst of profound pain in Muslim communities, I hope this holy month can be a chance for solace, renewal, and peace. Ramadan Kareem!" + }, + { + "Retweets": "81", + "Likes": "379", + "Content": "This reversal is a win for consumers.\nI warned that this giant hotel merger would lead to higher prices and fewer choices. I\u2019m glad the deal was scrapped after scrutiny." + }, + { + "Retweets": "90", + "Likes": "307", + "Content": "After Silicon Valley Bank crashed a year ago, banking regulators told me they'd put tougher rules on big banks. \nNow, I'm asking & to deliver on their commitments to protect our financial system & economy." + }, + { + "Retweets": "3.2K", + "Likes": "10K", + "Content": "How brazen do you have to be to make over $1 million in a single year, and then not file taxes?\nRich tax cheats thought they could get away with it. No more. Thanks to IRS funding Democrats secured, the ultra-rich is being held accountable.https://cnbc.com/2024/02/29/irs-targets-wealthy-non-filers-with-new-wave-of-compliance-letters.html\u2026" + }, + { + "Retweets": "139", + "Likes": "525", + "Content": "This law includes a big win for Mass: $350 million in federal funding to help replace the Cape Cod bridges.\nI worked with to prioritize this project, the to add it into Biden\u2019s budget, and + to secure its inclusion in this bill." + }, + { + "Retweets": "246", + "Likes": "884", + "Content": "The chaos in Haiti is gut-wrenching. The Haitian people deserve free and fair elections, and safety from violence. I\u2019m monitoring this crisis that is deeply personal for the Haitian community in Massachusetts. Parole has been a lifeline, and we must ensure protections for asylum." + }, + { + "Retweets": "437", + "Likes": "1.6K", + "Content": "Birth control is health care & by law, health insurers must cover contraception without copays or burdensome requirements.\n\nBut not all of them do. \n\nThat\u2019s why , , , & I led 150+ colleagues to urge insurance companies to follow the law." + }, + { + "Retweets": "561", + "Likes": "2.1K", + "Content": "University of Phoenix has a long track record of scamming borrowers. And when students can't graduate or get jobs, their inability to pay those loans can destroy lives.\n\nWe must do more to ensure federal dollars don't go to for-profit schools like that rip students off." + }, + { + "Retweets": "859", + "Likes": "1.8K", + "Content": "Under the Trump tax giveaway, 55 companies raked in $667 billion but paid under 5% in federal income tax. \n\nWhile Republicans want tax giveaways for the ultra-rich, Democrats will keep fighting to make sure giant corporations pay their fair share." + }, + { + "Retweets": "81", + "Likes": "229", + "Content": "The IRS Direct File pilot won\u2019t try to trick you into paying junk fees or signing away your privacy like giant tax prep company does. \n\nSee if you\u2019re eligible to file your taxes for free directly with the IRS at: http://directfile.irs.gov" + }, + { + "Retweets": "201", + "Likes": "619", + "Content": "Regulators must block 's merger with .\n\nIf this goes through, it would create another too-big-to-fail bank that could threaten our economy & jack up prices on working people using credit & debit cards.\n\nI explain why in my new op-ed." + }, + { + "Retweets": "5.5K", + "Likes": "41K", + "Content": "What can I say, President Biden just said let\u2019s tax some billionaires and give public school teachers a raise!" + }, + { + "Retweets": "2.8K", + "Likes": "12K", + "Content": "Canceling student debt\nTaxing the rich\nProtecting abortion access\nReceipts. Proof. Timeline.\n\nThis has been a life-changing presidency & isn't done yet." + } + ], + "John Kennedy": [ + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "176", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "442", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "511", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "134", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "199", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "231", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "317", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "548", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "506", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "662", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "923", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "220", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "502", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "278", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "176", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "442", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "511", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "134", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "199", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "231", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "317", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "548", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "506", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "662", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "925", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "220", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "502", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "278", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "280", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "175", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "280", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "443", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "511", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "134", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "199", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "231", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "317", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "548", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "505", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "662", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "925", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "220", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "502", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "278", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "91", + "Likes": "284", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.7K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "175", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "91", + "Likes": "284", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "444", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.2K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "512", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "135", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "200", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "230", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "318", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "549", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "505", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "663", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "925", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "221", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "501", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "277", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + } + ], + "David Perdue": [ + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "144", + "Likes": "320", + "Content": "Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families." + }, + { + "Retweets": "117", + "Likes": "587", + "Content": "The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!" + }, + { + "Retweets": "19", + "Likes": "98", + "Content": "Up next on !" + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "8", + "Likes": "47", + "Content": "Joining and live on Fox News around 9:30 AM ET. Hope you\u2019ll tune in!" + }, + { + "Retweets": "226", + "Likes": "748", + "Content": "The polls are OPEN! \nI\u2019d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud." + }, + { + "Retweets": "80", + "Likes": "335", + "Content": "Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. \nPlease make a plan to vote tomorrow if you haven't already!" + }, + { + "Retweets": "80", + "Likes": "206", + "Content": "Abrams doesn\u2019t care about Georgia. She wants to live in the White House. It\u2019s up to us to make sure that NEVER happens." + }, + { + "Retweets": "163", + "Likes": "539", + "Content": "Join us TONIGHT for a tele-rally with President Donald J. Trump!" + }, + { + "Retweets": "172", + "Likes": "458", + "Content": "President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!" + }, + { + "Retweets": "55", + "Likes": "133", + "Content": "Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us.\nGet out and vote on Tuesday, May 24th if you haven\u2019t already!" + }, + { + "Retweets": "48", + "Likes": "178", + "Content": "Great to be with Bikers for Trump on a beautiful night in Plainville!" + }, + { + "Retweets": "51", + "Likes": "145", + "Content": "Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th." + }, + { + "Retweets": "201", + "Likes": "562", + "Content": "Thank you, Mr. President! We\u2019re pushing for a big WIN on Tuesday!" + }, + { + "Retweets": "50", + "Likes": "163", + "Content": "Great to have my friend with us on the campaign trail in Savannah! \nSarah is an America First warrior, and I\u2019m proud to have her support and endorsement.\nGet out and vote, Georgia! Together, we will take back our state and country." + }, + { + "Retweets": "24", + "Likes": "86", + "Content": "Started the morning with a press conference in Columbus. Next stop: Macon!" + }, + { + "Retweets": "31", + "Likes": "103", + "Content": "Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!" + }, + { + "Retweets": "462", + "Likes": "796", + "Content": "Couldn\u2019t pass up the hot sign between campaign stops!" + }, + { + "Retweets": "87", + "Likes": "249", + "Content": "Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th." + }, + { + "Retweets": "70", + "Likes": "203", + "Content": "Proud to have \u2019s endorsement and looking forward to having her join us in Savannah on Friday!" + }, + { + "Retweets": "18", + "Likes": "71", + "Content": "Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory." + }, + { + "Retweets": "16", + "Likes": "74", + "Content": "Enjoyed being in Madison with the Morgan County GOP tonight! \nThe primary election is just ONE WEEK away. Make a plan to vote if you haven\u2019t already!" + }, + { + "Retweets": "21", + "Likes": "84", + "Content": "Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!" + }, + { + "Retweets": "27", + "Likes": "58", + "Content": "Great to be with the Barrow County GOP last night.\nMake a plan to vote if you haven\u2019t already! Find your early voting location at http://voteperdue.com." + }, + { + "Retweets": "63", + "Likes": "156", + "Content": "Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! \nWhen I\u2019m Governor, we will enforce the law and deport criminal illegals." + }, + { + "Retweets": "57", + "Likes": "171", + "Content": "We need a Governor who will stand up and FIGHT!" + }, + { + "Retweets": "18", + "Likes": "99", + "Content": "Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!" + }, + { + "Retweets": "55", + "Likes": "260", + "Content": "Proud to have the support and endorsement of Bikers for Trump!" + }, + { + "Retweets": "39", + "Likes": "74", + "Content": "Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. \nShelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that\u2019s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html\u2026" + }, + { + "Retweets": "21", + "Likes": "45", + "Content": "We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros." + }, + { + "Retweets": "28", + "Likes": "97", + "Content": "Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!" + }, + { + "Retweets": "39", + "Likes": "82", + "Content": "Threatening justices, vandalizing churches \u2014 this behavior is unacceptable and has to stop now.\nAs Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. \nIntimidation and harassment will not be tolerated." + }, + { + "Retweets": "67", + "Likes": "240", + "Content": "Head to http://VotePerdue.com to find your polling location.\nDon\u2019t wait until Election Day. Go ahead and vote early!" + }, + { + "Retweets": "246", + "Likes": "893", + "Content": "If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia.\nI've called on Brian Kemp to commit to doing the same.\nPeople deserve to know where their Governor stands on this issue." + }, + { + "Retweets": "24", + "Likes": "125", + "Content": "Great crowd at our meet and greet in Norcross this weekend!" + }, + { + "Retweets": "13", + "Likes": "131", + "Content": "Wishing a Happy Mother\u2019s Day to all moms, especially my beautiful wife Bonnie." + }, + { + "Retweets": "39", + "Likes": "158", + "Content": "Great morning with the Fulton County GOP. Thank you for having me!" + }, + { + "Retweets": "37", + "Likes": "122", + "Content": "Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections." + }, + { + "Retweets": "6", + "Likes": "63", + "Content": "Joining live on Fox News around 9:25 PM. Tune in if you can!" + }, + { + "Retweets": "9", + "Likes": "59", + "Content": "Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. \n\nWe\u2019re encouraging everybody across the state to get out and VOTE!" + }, + { + "Retweets": "24", + "Likes": "103", + "Content": "Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!" + }, + { + "Retweets": "18", + "Likes": "69", + "Content": "Matthew 18:20 tells us, \u201cFor where two or three gather in my name, there am I with them.\u201d\n\nToday & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer" + }, + { + "Retweets": "31", + "Likes": "127", + "Content": "Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!" + }, + { + "Retweets": "32", + "Likes": "108", + "Content": "I was extremely disappointed by the Governor\u2019s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. \n\nGeorgia voters deserve to know where their Governor stands on this issue. (1/2)" + }, + { + "Retweets": "31", + "Likes": "91", + "Content": "I\u2019m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. \n\nYou are either going to fight for the sanctity of life or you\u2019re not. (2/2)" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "323", + "Likes": "556", + "Content": "In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts.\n \nToday we delivered:\n\u2192 More PPP for small biz\n\u2192 2nd round of relief checks\n\u2192 Funding for hospitals & schools\n\u2192 Efficient vaccine distribution\n\u2192 Support for farmers" + }, + { + "Retweets": "186", + "Likes": "316", + "Content": "Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed.\n \nChuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago.\n \nStatement w/ :" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "32", + "Likes": "164", + "Content": "GREAT NEWS: Two #COVID19 vaccines are now authorized for use!" + }, + { + "Retweets": "21", + "Likes": "43", + "Content": "Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area." + }, + { + "Retweets": "16", + "Likes": "57", + "Content": "Great opportunity for high school students interested in #STEM to work with researchers." + }, + { + "Retweets": "42", + "Likes": "234", + "Content": "The first shipments of #COVID19 vaccine have arrived in Georgia!" + }, + { + "Retweets": "105", + "Likes": "402", + "Content": "Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year.\nThis is nothing short of extraordinary and a testament to the power of American ingenuity." + }, + { + "Retweets": "21", + "Likes": "87", + "Content": "As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials.\nWhile we are one step closer to getting back to normal, our work is not done and we must all remain vigilant." + }, + { + "Retweets": "55", + "Likes": "173", + "Content": "A strong America requires a strong military. This defense bill:\n\u2192 Fully funds our military\n\u2192 Gives troops significant pay raise\n\u2192 Supports military families\n\u2192 Strengthens cybersecurity\n\u2192 Holds China accountable" + }, + { + "Retweets": "75", + "Likes": "98", + "Content": "Statement from & me on passage of the #NDAA:" + }, + { + "Retweets": "35", + "Likes": "259", + "Content": "Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world." + }, + { + "Retweets": "17", + "Likes": "56", + "Content": "Thanks to \u2019s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide." + }, + { + "Retweets": "41", + "Likes": "178", + "Content": "We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay" + }, + { + "Retweets": "148", + "Likes": "411", + "Content": "When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now." + }, + { + "Retweets": "19", + "Likes": "79", + "Content": "While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let\u2019s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago." + }, + { + "Retweets": "35", + "Likes": "69", + "Content": "It\u2019s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality.\n \nFull statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians\u2026" + }, + { + "Retweets": "154", + "Likes": "491", + "Content": "Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !" + }, + { + "Retweets": "189", + "Likes": "1.6K", + "Content": "Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at ." + }, + { + "Retweets": "80", + "Likes": "280", + "Content": "The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses." + }, + { + "Retweets": "20", + "Likes": "65", + "Content": "Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery\u2026" + }, + { + "Retweets": "37", + "Likes": "68", + "Content": ". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record." + }, + { + "Retweets": "62", + "Likes": "152", + "Content": "Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday" + }, + { + "Retweets": "44", + "Likes": "173", + "Content": "This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country." + }, + { + "Retweets": "52", + "Likes": "446", + "Content": "Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving." + }, + { + "Retweets": "18", + "Likes": "36", + "Content": "On Monday, 11/30, will host a virtual Q&A for #veterans and their families. \nRSVP on Facebook:" + }, + { + "Retweets": "42", + "Likes": "131", + "Content": "Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America\u2019s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing\u2026" + }, + { + "Retweets": "107", + "Likes": "251", + "Content": "When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus." + }, + { + "Retweets": "47", + "Likes": "89", + "Content": "Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy." + }, + { + "Retweets": "49", + "Likes": "121", + "Content": "Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible." + }, + { + "Retweets": "39", + "Likes": "104", + "Content": "Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for ." + }, + { + "Retweets": "38", + "Likes": "85", + "Content": "Georgia veterans: VA\u2019s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 \u2013 6:00 p.m.\n \nCall 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf\u2026" + }, + { + "Retweets": "80", + "Likes": "177", + "Content": "#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War." + }, + { + "Retweets": "145", + "Likes": "591", + "Content": "America remains a nation worthy of envy because of our veterans and their families." + }, + { + "Retweets": "3.1K", + "Likes": "18K", + "Content": "The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html\u2026" + }, + { + "Retweets": "64", + "Likes": "324", + "Content": "Georgia\u2019s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. " + }, + { + "Retweets": "42", + "Likes": "149", + "Content": "Georgia\u2019s business-friendly climate continues to attract new jobs and investments, even during #COVID19." + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "144", + "Likes": "320", + "Content": "Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families." + }, + { + "Retweets": "117", + "Likes": "587", + "Content": "The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!" + }, + { + "Retweets": "19", + "Likes": "98", + "Content": "Up next on !" + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "8", + "Likes": "47", + "Content": "Joining and live on Fox News around 9:30 AM ET. Hope you\u2019ll tune in!" + }, + { + "Retweets": "226", + "Likes": "748", + "Content": "The polls are OPEN! \nI\u2019d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud." + }, + { + "Retweets": "80", + "Likes": "335", + "Content": "Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. \nPlease make a plan to vote tomorrow if you haven't already!" + }, + { + "Retweets": "80", + "Likes": "206", + "Content": "Abrams doesn\u2019t care about Georgia. She wants to live in the White House. It\u2019s up to us to make sure that NEVER happens." + }, + { + "Retweets": "163", + "Likes": "539", + "Content": "Join us TONIGHT for a tele-rally with President Donald J. Trump!" + }, + { + "Retweets": "172", + "Likes": "458", + "Content": "President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!" + }, + { + "Retweets": "55", + "Likes": "133", + "Content": "Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us.\nGet out and vote on Tuesday, May 24th if you haven\u2019t already!" + }, + { + "Retweets": "48", + "Likes": "178", + "Content": "Great to be with Bikers for Trump on a beautiful night in Plainville!" + }, + { + "Retweets": "51", + "Likes": "145", + "Content": "Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th." + }, + { + "Retweets": "201", + "Likes": "562", + "Content": "Thank you, Mr. President! We\u2019re pushing for a big WIN on Tuesday!" + }, + { + "Retweets": "50", + "Likes": "163", + "Content": "Great to have my friend with us on the campaign trail in Savannah! \nSarah is an America First warrior, and I\u2019m proud to have her support and endorsement.\nGet out and vote, Georgia! Together, we will take back our state and country." + }, + { + "Retweets": "24", + "Likes": "86", + "Content": "Started the morning with a press conference in Columbus. Next stop: Macon!" + }, + { + "Retweets": "31", + "Likes": "103", + "Content": "Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!" + }, + { + "Retweets": "462", + "Likes": "796", + "Content": "Couldn\u2019t pass up the hot sign between campaign stops!" + }, + { + "Retweets": "87", + "Likes": "249", + "Content": "Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th." + }, + { + "Retweets": "70", + "Likes": "203", + "Content": "Proud to have \u2019s endorsement and looking forward to having her join us in Savannah on Friday!" + }, + { + "Retweets": "18", + "Likes": "71", + "Content": "Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory." + }, + { + "Retweets": "16", + "Likes": "74", + "Content": "Enjoyed being in Madison with the Morgan County GOP tonight! \nThe primary election is just ONE WEEK away. Make a plan to vote if you haven\u2019t already!" + }, + { + "Retweets": "21", + "Likes": "84", + "Content": "Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!" + }, + { + "Retweets": "27", + "Likes": "58", + "Content": "Great to be with the Barrow County GOP last night.\nMake a plan to vote if you haven\u2019t already! Find your early voting location at http://voteperdue.com." + }, + { + "Retweets": "63", + "Likes": "156", + "Content": "Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! \nWhen I\u2019m Governor, we will enforce the law and deport criminal illegals." + }, + { + "Retweets": "57", + "Likes": "171", + "Content": "We need a Governor who will stand up and FIGHT!" + }, + { + "Retweets": "18", + "Likes": "99", + "Content": "Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!" + }, + { + "Retweets": "55", + "Likes": "260", + "Content": "Proud to have the support and endorsement of Bikers for Trump!" + }, + { + "Retweets": "39", + "Likes": "74", + "Content": "Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. \nShelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that\u2019s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html\u2026" + }, + { + "Retweets": "21", + "Likes": "45", + "Content": "We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros." + }, + { + "Retweets": "28", + "Likes": "97", + "Content": "Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!" + }, + { + "Retweets": "39", + "Likes": "82", + "Content": "Threatening justices, vandalizing churches \u2014 this behavior is unacceptable and has to stop now.\nAs Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. \nIntimidation and harassment will not be tolerated." + }, + { + "Retweets": "67", + "Likes": "240", + "Content": "Head to http://VotePerdue.com to find your polling location.\nDon\u2019t wait until Election Day. Go ahead and vote early!" + }, + { + "Retweets": "246", + "Likes": "893", + "Content": "If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia.\nI've called on Brian Kemp to commit to doing the same.\nPeople deserve to know where their Governor stands on this issue." + }, + { + "Retweets": "24", + "Likes": "125", + "Content": "Great crowd at our meet and greet in Norcross this weekend!" + }, + { + "Retweets": "13", + "Likes": "131", + "Content": "Wishing a Happy Mother\u2019s Day to all moms, especially my beautiful wife Bonnie." + }, + { + "Retweets": "39", + "Likes": "158", + "Content": "Great morning with the Fulton County GOP. Thank you for having me!" + }, + { + "Retweets": "37", + "Likes": "122", + "Content": "Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections." + }, + { + "Retweets": "6", + "Likes": "63", + "Content": "Joining live on Fox News around 9:25 PM. Tune in if you can!" + }, + { + "Retweets": "9", + "Likes": "59", + "Content": "Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. \n\nWe\u2019re encouraging everybody across the state to get out and VOTE!" + }, + { + "Retweets": "24", + "Likes": "103", + "Content": "Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!" + }, + { + "Retweets": "18", + "Likes": "69", + "Content": "Matthew 18:20 tells us, \u201cFor where two or three gather in my name, there am I with them.\u201d\n\nToday & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer" + }, + { + "Retweets": "31", + "Likes": "127", + "Content": "Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!" + }, + { + "Retweets": "32", + "Likes": "108", + "Content": "I was extremely disappointed by the Governor\u2019s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. \n\nGeorgia voters deserve to know where their Governor stands on this issue. (1/2)" + }, + { + "Retweets": "31", + "Likes": "91", + "Content": "I\u2019m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. \n\nYou are either going to fight for the sanctity of life or you\u2019re not. (2/2)" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "323", + "Likes": "556", + "Content": "In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts.\n \nToday we delivered:\n\u2192 More PPP for small biz\n\u2192 2nd round of relief checks\n\u2192 Funding for hospitals & schools\n\u2192 Efficient vaccine distribution\n\u2192 Support for farmers" + }, + { + "Retweets": "186", + "Likes": "316", + "Content": "Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed.\n \nChuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago.\n \nStatement w/ :" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "32", + "Likes": "164", + "Content": "GREAT NEWS: Two #COVID19 vaccines are now authorized for use!" + }, + { + "Retweets": "21", + "Likes": "43", + "Content": "Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area." + }, + { + "Retweets": "16", + "Likes": "57", + "Content": "Great opportunity for high school students interested in #STEM to work with researchers." + }, + { + "Retweets": "42", + "Likes": "234", + "Content": "The first shipments of #COVID19 vaccine have arrived in Georgia!" + }, + { + "Retweets": "105", + "Likes": "402", + "Content": "Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year.\nThis is nothing short of extraordinary and a testament to the power of American ingenuity." + }, + { + "Retweets": "21", + "Likes": "87", + "Content": "As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials.\nWhile we are one step closer to getting back to normal, our work is not done and we must all remain vigilant." + }, + { + "Retweets": "55", + "Likes": "173", + "Content": "A strong America requires a strong military. This defense bill:\n\u2192 Fully funds our military\n\u2192 Gives troops significant pay raise\n\u2192 Supports military families\n\u2192 Strengthens cybersecurity\n\u2192 Holds China accountable" + }, + { + "Retweets": "75", + "Likes": "98", + "Content": "Statement from & me on passage of the #NDAA:" + }, + { + "Retweets": "35", + "Likes": "259", + "Content": "Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world." + }, + { + "Retweets": "17", + "Likes": "56", + "Content": "Thanks to \u2019s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide." + }, + { + "Retweets": "41", + "Likes": "178", + "Content": "We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay" + }, + { + "Retweets": "148", + "Likes": "411", + "Content": "When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now." + }, + { + "Retweets": "19", + "Likes": "79", + "Content": "While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let\u2019s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago." + }, + { + "Retweets": "35", + "Likes": "69", + "Content": "It\u2019s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality.\n \nFull statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians\u2026" + }, + { + "Retweets": "154", + "Likes": "491", + "Content": "Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !" + }, + { + "Retweets": "189", + "Likes": "1.6K", + "Content": "Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at ." + }, + { + "Retweets": "80", + "Likes": "280", + "Content": "The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses." + }, + { + "Retweets": "20", + "Likes": "65", + "Content": "Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery\u2026" + }, + { + "Retweets": "37", + "Likes": "68", + "Content": ". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record." + }, + { + "Retweets": "62", + "Likes": "152", + "Content": "Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday" + }, + { + "Retweets": "44", + "Likes": "173", + "Content": "This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country." + }, + { + "Retweets": "52", + "Likes": "446", + "Content": "Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving." + }, + { + "Retweets": "18", + "Likes": "36", + "Content": "On Monday, 11/30, will host a virtual Q&A for #veterans and their families. \nRSVP on Facebook:" + }, + { + "Retweets": "42", + "Likes": "131", + "Content": "Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America\u2019s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing\u2026" + }, + { + "Retweets": "107", + "Likes": "251", + "Content": "When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus." + }, + { + "Retweets": "47", + "Likes": "89", + "Content": "Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy." + }, + { + "Retweets": "49", + "Likes": "121", + "Content": "Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible." + }, + { + "Retweets": "39", + "Likes": "104", + "Content": "Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for ." + }, + { + "Retweets": "38", + "Likes": "85", + "Content": "Georgia veterans: VA\u2019s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 \u2013 6:00 p.m.\n \nCall 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf\u2026" + }, + { + "Retweets": "80", + "Likes": "177", + "Content": "#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War." + }, + { + "Retweets": "145", + "Likes": "591", + "Content": "America remains a nation worthy of envy because of our veterans and their families." + }, + { + "Retweets": "3.1K", + "Likes": "18K", + "Content": "The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html\u2026" + }, + { + "Retweets": "64", + "Likes": "324", + "Content": "Georgia\u2019s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. " + }, + { + "Retweets": "42", + "Likes": "149", + "Content": "Georgia\u2019s business-friendly climate continues to attract new jobs and investments, even during #COVID19." + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "144", + "Likes": "320", + "Content": "Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families." + }, + { + "Retweets": "117", + "Likes": "587", + "Content": "The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!" + }, + { + "Retweets": "19", + "Likes": "99", + "Content": "Up next on !" + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "8", + "Likes": "47", + "Content": "Joining and live on Fox News around 9:30 AM ET. Hope you\u2019ll tune in!" + }, + { + "Retweets": "226", + "Likes": "748", + "Content": "The polls are OPEN! \nI\u2019d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud." + }, + { + "Retweets": "80", + "Likes": "335", + "Content": "Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. \nPlease make a plan to vote tomorrow if you haven't already!" + }, + { + "Retweets": "80", + "Likes": "206", + "Content": "Abrams doesn\u2019t care about Georgia. She wants to live in the White House. It\u2019s up to us to make sure that NEVER happens." + }, + { + "Retweets": "163", + "Likes": "539", + "Content": "Join us TONIGHT for a tele-rally with President Donald J. Trump!" + }, + { + "Retweets": "172", + "Likes": "458", + "Content": "President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!" + }, + { + "Retweets": "55", + "Likes": "133", + "Content": "Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us.\nGet out and vote on Tuesday, May 24th if you haven\u2019t already!" + }, + { + "Retweets": "48", + "Likes": "178", + "Content": "Great to be with Bikers for Trump on a beautiful night in Plainville!" + }, + { + "Retweets": "51", + "Likes": "146", + "Content": "Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th." + }, + { + "Retweets": "201", + "Likes": "562", + "Content": "Thank you, Mr. President! We\u2019re pushing for a big WIN on Tuesday!" + }, + { + "Retweets": "50", + "Likes": "163", + "Content": "Great to have my friend with us on the campaign trail in Savannah! \nSarah is an America First warrior, and I\u2019m proud to have her support and endorsement.\nGet out and vote, Georgia! Together, we will take back our state and country." + }, + { + "Retweets": "24", + "Likes": "87", + "Content": "Started the morning with a press conference in Columbus. Next stop: Macon!" + }, + { + "Retweets": "31", + "Likes": "103", + "Content": "Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!" + }, + { + "Retweets": "462", + "Likes": "796", + "Content": "Couldn\u2019t pass up the hot sign between campaign stops!" + }, + { + "Retweets": "87", + "Likes": "249", + "Content": "Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th." + }, + { + "Retweets": "70", + "Likes": "203", + "Content": "Proud to have \u2019s endorsement and looking forward to having her join us in Savannah on Friday!" + }, + { + "Retweets": "18", + "Likes": "71", + "Content": "Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory." + }, + { + "Retweets": "16", + "Likes": "74", + "Content": "Enjoyed being in Madison with the Morgan County GOP tonight! \nThe primary election is just ONE WEEK away. Make a plan to vote if you haven\u2019t already!" + }, + { + "Retweets": "21", + "Likes": "84", + "Content": "Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!" + }, + { + "Retweets": "27", + "Likes": "58", + "Content": "Great to be with the Barrow County GOP last night.\nMake a plan to vote if you haven\u2019t already! Find your early voting location at http://voteperdue.com." + }, + { + "Retweets": "63", + "Likes": "156", + "Content": "Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! \nWhen I\u2019m Governor, we will enforce the law and deport criminal illegals." + }, + { + "Retweets": "57", + "Likes": "171", + "Content": "We need a Governor who will stand up and FIGHT!" + }, + { + "Retweets": "18", + "Likes": "99", + "Content": "Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!" + }, + { + "Retweets": "55", + "Likes": "260", + "Content": "Proud to have the support and endorsement of Bikers for Trump!" + }, + { + "Retweets": "39", + "Likes": "74", + "Content": "Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. \nShelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that\u2019s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html\u2026" + }, + { + "Retweets": "21", + "Likes": "45", + "Content": "We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros." + }, + { + "Retweets": "28", + "Likes": "98", + "Content": "Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!" + }, + { + "Retweets": "39", + "Likes": "82", + "Content": "Threatening justices, vandalizing churches \u2014 this behavior is unacceptable and has to stop now.\nAs Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. \nIntimidation and harassment will not be tolerated." + }, + { + "Retweets": "67", + "Likes": "240", + "Content": "Head to http://VotePerdue.com to find your polling location.\nDon\u2019t wait until Election Day. Go ahead and vote early!" + }, + { + "Retweets": "246", + "Likes": "893", + "Content": "If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia.\nI've called on Brian Kemp to commit to doing the same.\nPeople deserve to know where their Governor stands on this issue." + }, + { + "Retweets": "24", + "Likes": "125", + "Content": "Great crowd at our meet and greet in Norcross this weekend!" + }, + { + "Retweets": "13", + "Likes": "131", + "Content": "Wishing a Happy Mother\u2019s Day to all moms, especially my beautiful wife Bonnie." + }, + { + "Retweets": "39", + "Likes": "158", + "Content": "Great morning with the Fulton County GOP. Thank you for having me!" + }, + { + "Retweets": "37", + "Likes": "122", + "Content": "Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections." + }, + { + "Retweets": "6", + "Likes": "63", + "Content": "Joining live on Fox News around 9:25 PM. Tune in if you can!" + }, + { + "Retweets": "9", + "Likes": "60", + "Content": "Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. \n\nWe\u2019re encouraging everybody across the state to get out and VOTE!" + }, + { + "Retweets": "24", + "Likes": "103", + "Content": "Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!" + }, + { + "Retweets": "18", + "Likes": "69", + "Content": "Matthew 18:20 tells us, \u201cFor where two or three gather in my name, there am I with them.\u201d\n\nToday & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer" + }, + { + "Retweets": "31", + "Likes": "127", + "Content": "Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!" + }, + { + "Retweets": "32", + "Likes": "108", + "Content": "I was extremely disappointed by the Governor\u2019s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. \n\nGeorgia voters deserve to know where their Governor stands on this issue. (1/2)" + }, + { + "Retweets": "31", + "Likes": "91", + "Content": "I\u2019m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. \n\nYou are either going to fight for the sanctity of life or you\u2019re not. (2/2)" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "323", + "Likes": "556", + "Content": "In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts.\n \nToday we delivered:\n\u2192 More PPP for small biz\n\u2192 2nd round of relief checks\n\u2192 Funding for hospitals & schools\n\u2192 Efficient vaccine distribution\n\u2192 Support for farmers" + }, + { + "Retweets": "186", + "Likes": "316", + "Content": "Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed.\n \nChuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago.\n \nStatement w/ :" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "32", + "Likes": "164", + "Content": "GREAT NEWS: Two #COVID19 vaccines are now authorized for use!" + }, + { + "Retweets": "21", + "Likes": "43", + "Content": "Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area." + }, + { + "Retweets": "16", + "Likes": "57", + "Content": "Great opportunity for high school students interested in #STEM to work with researchers." + }, + { + "Retweets": "42", + "Likes": "234", + "Content": "The first shipments of #COVID19 vaccine have arrived in Georgia!" + }, + { + "Retweets": "105", + "Likes": "402", + "Content": "Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year.\nThis is nothing short of extraordinary and a testament to the power of American ingenuity." + }, + { + "Retweets": "21", + "Likes": "87", + "Content": "As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials.\nWhile we are one step closer to getting back to normal, our work is not done and we must all remain vigilant." + }, + { + "Retweets": "55", + "Likes": "173", + "Content": "A strong America requires a strong military. This defense bill:\n\u2192 Fully funds our military\n\u2192 Gives troops significant pay raise\n\u2192 Supports military families\n\u2192 Strengthens cybersecurity\n\u2192 Holds China accountable" + }, + { + "Retweets": "75", + "Likes": "98", + "Content": "Statement from & me on passage of the #NDAA:" + }, + { + "Retweets": "35", + "Likes": "259", + "Content": "Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world." + }, + { + "Retweets": "17", + "Likes": "56", + "Content": "Thanks to \u2019s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide." + }, + { + "Retweets": "41", + "Likes": "178", + "Content": "We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay" + }, + { + "Retweets": "148", + "Likes": "411", + "Content": "When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now." + }, + { + "Retweets": "19", + "Likes": "79", + "Content": "While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let\u2019s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago." + }, + { + "Retweets": "35", + "Likes": "69", + "Content": "It\u2019s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality.\n \nFull statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians\u2026" + }, + { + "Retweets": "154", + "Likes": "491", + "Content": "Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !" + }, + { + "Retweets": "189", + "Likes": "1.6K", + "Content": "Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at ." + }, + { + "Retweets": "80", + "Likes": "280", + "Content": "The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses." + }, + { + "Retweets": "20", + "Likes": "65", + "Content": "Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery\u2026" + }, + { + "Retweets": "37", + "Likes": "68", + "Content": ". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record." + }, + { + "Retweets": "62", + "Likes": "152", + "Content": "Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday" + }, + { + "Retweets": "44", + "Likes": "173", + "Content": "This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country." + }, + { + "Retweets": "52", + "Likes": "446", + "Content": "Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving." + }, + { + "Retweets": "18", + "Likes": "36", + "Content": "On Monday, 11/30, will host a virtual Q&A for #veterans and their families. \nRSVP on Facebook:" + }, + { + "Retweets": "42", + "Likes": "131", + "Content": "Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America\u2019s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing\u2026" + }, + { + "Retweets": "107", + "Likes": "251", + "Content": "When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus." + }, + { + "Retweets": "47", + "Likes": "89", + "Content": "Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy." + }, + { + "Retweets": "49", + "Likes": "121", + "Content": "Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible." + }, + { + "Retweets": "39", + "Likes": "104", + "Content": "Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for ." + }, + { + "Retweets": "38", + "Likes": "85", + "Content": "Georgia veterans: VA\u2019s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 \u2013 6:00 p.m.\n \nCall 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf\u2026" + }, + { + "Retweets": "80", + "Likes": "177", + "Content": "#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War." + }, + { + "Retweets": "145", + "Likes": "591", + "Content": "America remains a nation worthy of envy because of our veterans and their families." + }, + { + "Retweets": "3.1K", + "Likes": "18K", + "Content": "The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html\u2026" + }, + { + "Retweets": "64", + "Likes": "324", + "Content": "Georgia\u2019s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. " + }, + { + "Retweets": "42", + "Likes": "149", + "Content": "Georgia\u2019s business-friendly climate continues to attract new jobs and investments, even during #COVID19." + } + ], + "Chuck Grassley": [ + { + "Retweets": "9", + "Likes": "45", + "Content": "HAPPY Natl Women in Ag Day Iowa has over 50K female producers & added over 1K since 2017 That\u2019s gr8 news Women play an essential role in ag + I was proud 2 support Sen Ernst\u2019s bipart effort to recognize their achievements & success" + }, + { + "Retweets": "9", + "Likes": "46", + "Content": "HAPPY Natl Women in Ag Day Iowa has over 50K female producers & added over 1K since 2017 That\u2019s gr8 news Women play an essential role in ag + I was proud 2 support Sen Ernst\u2019s bipart effort to recognize their achievements & success" + } + ], + "Ben Sasse": [ + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "1", + "Likes": "49", + "Content": "Amazing, again (and again)" + }, + { + "Retweets": "11", + "Likes": "266", + "Content": " our exchange students. \nThree today have called their time in G\u2019ville\n\u201cthe best year of their lives\u201d" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "6", + "Likes": "153", + "Content": "Same." + }, + { + "Retweets": "5", + "Likes": "82", + "Content": "checks out\u2026" + }, + { + "Retweets": "5", + "Likes": "267", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "1", + "Likes": "42", + "Content": "Dude is special" + }, + { + "Retweets": "1", + "Likes": "50", + "Content": "Moly\u2026." + }, + { + "Retweets": "0", + "Likes": "30", + "Content": "Go Gators!" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "(This isn\u2019t the only reason)" + }, + { + "Retweets": "2", + "Likes": "52", + "Content": "12-5. #GatorsSweep" + }, + { + "Retweets": "5", + "Likes": "255", + "Content": " " + }, + { + "Retweets": "2", + "Likes": "21", + "Content": "At the tape\u2026we have a best baby\u2014>" + }, + { + "Retweets": "3", + "Likes": "70", + "Content": "Let\u2019s Gooooo!" + }, + { + "Retweets": "24", + "Likes": "249", + "Content": "#Merica" + }, + { + "Retweets": "16", + "Likes": "290", + "Content": "Am in a barbershop\u2026\nold dude customer: \u201cI\u2019m getting married on March 30.\u201d \nold dude barber: \u201cWhy?\u201d\ncustomer, earnestly trying to answer\u2026\nbarber, interrupting: \u201cDoes she have a boat?\u201d" + }, + { + "Retweets": "0", + "Likes": "34", + "Content": "(Note to self:\ngotta teach him about the leprosy stuff)" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester" + }, + { + "Retweets": "9", + "Likes": "177", + "Content": "one of my college daughters:\n\u201cIs Travis Kelce literally a golden retriever?\u201d" + }, + { + "Retweets": "2", + "Likes": "91", + "Content": "Bonus football!" + }, + { + "Retweets": "0", + "Likes": "86", + "Content": "(well played)" + }, + { + "Retweets": "6", + "Likes": "31", + "Content": "\u201c\u2026ravaging people's ingesting and causing many to defecate bodily\u201d??" + }, + { + "Retweets": "7", + "Likes": "60", + "Content": "\u2018Merican innovation is alive and well\n\u2014>" + }, + { + "Retweets": "0", + "Likes": "52", + "Content": "anyone hear him call glass?" + }, + { + "Retweets": "1", + "Likes": "21", + "Content": "" + }, + { + "Retweets": "3", + "Likes": "49", + "Content": "" + }, + { + "Retweets": "0", + "Likes": "13", + "Content": "" + }, + { + "Retweets": "8", + "Likes": "110", + "Content": "Thanks for the ride,\n\u2066\u2069\nSpaceX launches UF/IFAS microbiology experiment to ISS today - News" + }, + { + "Retweets": "9", + "Likes": "106", + "Content": "Come to Florida, they said\u2026\nWoman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago \u2013 NBC 6" + }, + { + "Retweets": "0", + "Likes": "72", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "0", + "Likes": "24", + "Content": "there\u2019s more where that came from \u2014>" + }, + { + "Retweets": "7", + "Likes": "95", + "Content": "#FloridaMan rocks" + }, + { + "Retweets": "5", + "Likes": "216", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "5", + "Likes": "206", + "Content": "10-1 odds this is florida" + }, + { + "Retweets": "2", + "Likes": "44", + "Content": "Yes. \nThank you for the question, karen" + }, + { + "Retweets": "3", + "Likes": "77", + "Content": "six days with no football is wrong" + }, + { + "Retweets": "1", + "Likes": "19", + "Content": "that\u2019s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries\u2026)" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "1", + "Likes": "49", + "Content": "Amazing, again (and again)" + }, + { + "Retweets": "11", + "Likes": "266", + "Content": " our exchange students. \nThree today have called their time in G\u2019ville\n\u201cthe best year of their lives\u201d" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "6", + "Likes": "153", + "Content": "Same." + }, + { + "Retweets": "5", + "Likes": "82", + "Content": "checks out\u2026" + }, + { + "Retweets": "5", + "Likes": "267", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "1", + "Likes": "42", + "Content": "Dude is special" + }, + { + "Retweets": "1", + "Likes": "50", + "Content": "Moly\u2026." + }, + { + "Retweets": "0", + "Likes": "30", + "Content": "Go Gators!" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "(This isn\u2019t the only reason)" + }, + { + "Retweets": "2", + "Likes": "52", + "Content": "12-5. #GatorsSweep" + }, + { + "Retweets": "5", + "Likes": "255", + "Content": " " + }, + { + "Retweets": "2", + "Likes": "21", + "Content": "At the tape\u2026we have a best baby\u2014>" + }, + { + "Retweets": "3", + "Likes": "70", + "Content": "Let\u2019s Gooooo!" + }, + { + "Retweets": "24", + "Likes": "249", + "Content": "#Merica" + }, + { + "Retweets": "16", + "Likes": "290", + "Content": "Am in a barbershop\u2026\nold dude customer: \u201cI\u2019m getting married on March 30.\u201d \nold dude barber: \u201cWhy?\u201d\ncustomer, earnestly trying to answer\u2026\nbarber, interrupting: \u201cDoes she have a boat?\u201d" + }, + { + "Retweets": "0", + "Likes": "34", + "Content": "(Note to self:\ngotta teach him about the leprosy stuff)" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester" + }, + { + "Retweets": "9", + "Likes": "177", + "Content": "one of my college daughters:\n\u201cIs Travis Kelce literally a golden retriever?\u201d" + }, + { + "Retweets": "2", + "Likes": "91", + "Content": "Bonus football!" + }, + { + "Retweets": "0", + "Likes": "86", + "Content": "(well played)" + }, + { + "Retweets": "6", + "Likes": "31", + "Content": "\u201c\u2026ravaging people's ingesting and causing many to defecate bodily\u201d??" + }, + { + "Retweets": "7", + "Likes": "60", + "Content": "\u2018Merican innovation is alive and well\n\u2014>" + }, + { + "Retweets": "0", + "Likes": "52", + "Content": "anyone hear him call glass?" + }, + { + "Retweets": "1", + "Likes": "21", + "Content": "" + }, + { + "Retweets": "3", + "Likes": "49", + "Content": "" + }, + { + "Retweets": "0", + "Likes": "13", + "Content": "" + }, + { + "Retweets": "8", + "Likes": "110", + "Content": "Thanks for the ride,\n\u2066\u2069\nSpaceX launches UF/IFAS microbiology experiment to ISS today - News" + }, + { + "Retweets": "9", + "Likes": "106", + "Content": "Come to Florida, they said\u2026\nWoman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago \u2013 NBC 6" + }, + { + "Retweets": "0", + "Likes": "72", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "0", + "Likes": "24", + "Content": "there\u2019s more where that came from \u2014>" + }, + { + "Retweets": "7", + "Likes": "95", + "Content": "#FloridaMan rocks" + }, + { + "Retweets": "5", + "Likes": "216", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "5", + "Likes": "206", + "Content": "10-1 odds this is florida" + }, + { + "Retweets": "2", + "Likes": "44", + "Content": "Yes. \nThank you for the question, karen" + }, + { + "Retweets": "3", + "Likes": "77", + "Content": "six days with no football is wrong" + }, + { + "Retweets": "1", + "Likes": "19", + "Content": "that\u2019s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries\u2026)" + } + ], + "Brian Schatz": [ + { + "Retweets": "580", + "Likes": "4.8K", + "Content": "One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity." + }, + { + "Retweets": "57", + "Likes": "330", + "Content": "1) Campaigns are about winning arguments, and our argument is that these last four years have been an improvement on the previous four.\n2) The more people think seriously about the choice, the better Biden performs. \n3) We should compare their records. It\u2019s fair and compelling." + }, + { + "Retweets": "580", + "Likes": "4.8K", + "Content": "One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity." + }, + { + "Retweets": "1.2K", + "Likes": "5.3K", + "Content": "Very easy to just say \u201cno we are not taking foreign money\u201d that\u2019s not at all what she said." + }, + { + "Retweets": "435", + "Likes": "1.2K", + "Content": "If you want to help Democrats win, memorize this list, and repeat it everywhere. It is fair and true because these are their actual policy positions, and it is politically effective because you could literally not find less popular positions. Pass it on." + }, + { + "Retweets": "157", + "Likes": "565", + "Content": "Hey this race is gonna be expensive https://secure.actblue.com/donate/sbhomepage\u2026" + }, + { + "Retweets": "328", + "Likes": "2.2K", + "Content": "Jewish families all across America are arguing about Israel policy. But one thing we can all agree upon is that Donald Trump is not the arbiter of anyone\u2019s Jewishness." + }, + { + "Retweets": "528", + "Likes": "2.8K", + "Content": "Democrats have a lot of work to do in shoring up our base and reaching independents and making the case for Biden against Trump. But victory also depends on patriots like Kinzinger and Cheney and Pence and Romney being joined by millions of voters. All hands on deck." + }, + { + "Retweets": "3K", + "Likes": "11K", + "Content": "Headline writers: Don\u2019t outsmart yourself. Just do \u201cTrump Promises Bloodbath if he Doesn\u2019t Win Election.\u201d" + }, + { + "Retweets": "5.2K", + "Likes": "20K", + "Content": "Promising a bloodbath is disqualifying. I don\u2019t care what you think about other issues. This guy is promising a bloodbath. He needs to lose. Stand up for America. Please." + }, + { + "Retweets": "358", + "Likes": "1.5K", + "Content": "Trump promising violence again and I believe that plenty of people don\u2019t know that." + }, + { + "Retweets": "410", + "Likes": "2.9K", + "Content": "This is a gutsy, historic speech from Leader Schumer. I know he didn\u2019t arrive at this conclusion casually or painlessly." + }, + { + "Retweets": "40", + "Likes": "1K", + "Content": "Never gets old." + }, + { + "Retweets": "112", + "Likes": "944", + "Content": "NEWS: We secured a record $1.3B in federal funds for Native housing in the funding deal\u2014a more than $300M increase from last year" + }, + { + "Retweets": "8", + "Likes": "89", + "Content": "Native housing has historically\u2014and unacceptably\u2014been underfunded by the federal government\n \nBecause of the federal government\u2019s failure over time to provide adequate housing support, Native communities are dealing with urgent and unique housing needs" + }, + { + "Retweets": "3", + "Likes": "47", + "Content": "We fought hard to secure this record investment. It helps bring us one step closer to upholding our crucial trust responsibility to Native communities.\n \nFor more info on the funding, check out this link. (4/4)" + }, + { + "Retweets": "6", + "Likes": "59", + "Content": "This historic NAHASDA funding will help families in Native communities move into affordable homes, make renovations, & receive services vital to addressing their urgent housing needs\n \nIncreased Tribal transportation funding will also improve Tribal access to programs" + }, + { + "Retweets": "989", + "Likes": "3.9K", + "Content": "This whole thing is so ghoulish and cruel and the facts don\u2019t support it. If you reported this bullshit like it was some tough but fair shot, I\u2019m just begging you personally to do some self reflection on whether you want to be this kind of professional." + }, + { + "Retweets": "198", + "Likes": "2.3K", + "Content": "There\u2019s so much real antisemitism in the world you don\u2019t have to make anything up to make your point." + }, + { + "Retweets": "17", + "Likes": "182", + "Content": "Hey get me on this bill!" + }, + { + "Retweets": "314", + "Likes": "3.9K", + "Content": "Hahahahhahahhahahhahahahhahahhahahahhahahahah aaaaaarrrrrrrrgggggh" + } + ], + "Elizabeth Warren": [ + { + "Retweets": "34", + "Likes": "142", + "Content": "President Biden has taken another important step forward in the fight against the climate crisis.\nThe \u2019s new rule will slash our carbon emissions, make our air cleaner, and save Americans thousands of dollars." + }, + { + "Retweets": "113", + "Likes": "497", + "Content": "Today, we lost a bright light. Sarah-Ann Shaw was a historic trailblazer and civil rights leader.\n \nSarah-Ann used the power of journalism to make every voice heard, and her impact will be felt for generations.\n \nMy thoughts are with her family & loved ones." + }, + { + "Retweets": "72", + "Likes": "355", + "Content": "I strongly support ' nomination of Brian Murphy to serve as a judge on the US District Court in Massachusetts! Murphy started as a public defender in Worcester & has dedicated his career to upholding fundamental rights. He'll bring valuable perspective to the federal bench." + }, + { + "Retweets": "346", + "Likes": "1.2K", + "Content": "It's time to break up 's monopoly.\nFrom limiting digital wallets to raising iPhone prices, Apple has used its power to stop innovation, crush competition & harm consumers.\nThis a new era of antitrust enforcement. Kanter is holding Big Tech accountable." + }, + { + "Retweets": "75", + "Likes": "355", + "Content": "LFG! 78,000 more public service workers are getting student debt relief.\nBefore President Biden, this program was broken\u2014only 7,000 borrowers got relief.\nNow has cancelled student debt for over 870,000 public servants like nurses & teachers, including 19,000 folks in MA." + }, + { + "Retweets": "1K", + "Likes": "2.3K", + "Content": "Republicans in Congress just announced they're endorsing an extremist budget plan that would ban abortion and rip away access to IVF nationwide.\nThey claim they want to protect IVF, but are doing the exact opposite.\n \nTheir agenda is extreme and dangerous." + }, + { + "Retweets": "71", + "Likes": "219", + "Content": "Tens of thousands of seniors who rely on Social Security aren't getting their full checks after defaulting on their student loans. It pushes many into poverty\u2014and it's wrong.\nI'm leading over 30 lawmakers calling for an end to this devastating practice." + }, + { + "Retweets": "1.3K", + "Likes": "4K", + "Content": "President Biden wants to tax billionaires and invest in affordable child care.\nThat means most families will pay less than $10 a day for child care \u2014 and they won\u2019t keep paying higher tax rates than Jeff Bezos." + }, + { + "Retweets": "107", + "Likes": "581", + "Content": "Double woo-hoo! I joined and federal and local leaders to celebrate 142 new apartment units that will house seniors and people with disabilities in Brighton. I'll keep working hard to bring home more federal funding to grow our housing supply." + }, + { + "Retweets": "54", + "Likes": "207", + "Content": "Democrats & have pushed to lower drug prices for years & challenged drug companies after I warned about Big Pharma's sham patent claims.\nNow and are reducing inhaler costs to $35/month. & should step up!" + }, + { + "Retweets": "131", + "Likes": "381", + "Content": ". Chair Powell's interest rate hikes are holding back clean energy projects across our country that will create new clean jobs and cut electricity costs.\nIt's time for the Fed to cut interest rates." + }, + { + "Retweets": "126", + "Likes": "526", + "Content": "Today I'm re-introducing my Ultra-Millionaires Tax so that when someone makes it really big\u2014earning over $50 million\u2014they have to chip in 2 cents on the next dollar.\nThat means Jeff Bezos can\u2019t keep paying lower tax rates than public school teachers." + }, + { + "Retweets": "442", + "Likes": "1.5K", + "Content": "I\u2019m calling on the CEO of , one of the nation\u2019s largest student loan servicers, to testify at my subcommittee hearing.\nMillions of borrowers have faced obstacles to repayment. Public servants haven\u2019t gotten relief they\u2019re owed.\n \nAmericans deserve answers." + }, + { + "Retweets": "952", + "Likes": "2.3K", + "Content": "President Biden has canceled student loan debt for nearly 4 million Americans. It\u2019s been life-changing." + }, + { + "Retweets": "1.9K", + "Likes": "5.7K", + "Content": "A lot of people think the Supreme Court is to blame for overturning Roe. And they\u2019re right. \nBut who packed the court with anti-abortion extremists? The man who brags about getting Roe overturned: Donald Trump." + }, + { + "Retweets": "162", + "Likes": "475", + "Content": "Thanks to Democrats passing the PACT Act, if you or a veteran you know was exposed to toxins & other hazards during service, you may be eligible for VA health care! This is one of the largest-ever expansions of veteran care. \nApply to get care: http://VA.gov/PACT" + }, + { + "Retweets": "625", + "Likes": "2K", + "Content": "Are you tired of surprise costs and junk fees on your TV bills? \n \nWell, and the are cracking down. This is a big win for families and for competition." + }, + { + "Retweets": "156", + "Likes": "445", + "Content": "The new Sentinel nuclear missile program is 2 years behind schedule and already costs billions more than expected.\n \nThe Pentagon misled Congress and owes the American people an explanation.\n and I are pressing for answers." + }, + { + "Retweets": "933", + "Likes": "3.6K", + "Content": "Roe wasn\u2019t overturned by some accident. We\u2019re here because Republican extremists have been waging a decades-long war to take down Roe. \nBut one thing they got wrong? Our motivation to fight back and restore Roe." + }, + { + "Retweets": "341", + "Likes": "1.2K", + "Content": "After a years-long delay in investigating 4 senior Fed officials\u2019 suspicious trades, the Fed\u2019s internal watchdog let them all off the hook despite violations of the Fed's own policies.\nI have a bipartisan bill to end the culture of corruption at the Fed." + }, + { + "Retweets": "149", + "Likes": "409", + "Content": "Netanyahu's right-wing government is blocking humanitarian aid into Gaza. Palestinians are starving and need immediate relief. It's horrific and violates U.S. law. With these illegal restrictions, the U.S. cannot continue providing bombs to Israel." + }, + { + "Retweets": "1K", + "Likes": "2.7K", + "Content": "It\u2019s time to crack down on shrinkflation and corporate price gouging." + }, + { + "Retweets": "732", + "Likes": "2.7K", + "Content": "The IRS is cracking down on CEOs who dodge taxes while using corporate jets for private trips - that\u2019s great, and I\u2019m asking Treasury & IRS to also close a loophole that helps these high flying tax dodgers." + }, + { + "Retweets": "299", + "Likes": "1.1K", + "Content": "Criminal records for minor marijuana offenses make it harder for people to get housing, jobs, and more.'s cannabis pardons are powerfully important to right systemic wrongs and advance racial justice.\nWeed is legal is Massachusetts, and it should be nationwide." + }, + { + "Retweets": "548", + "Likes": "1.7K", + "Content": "The majority of Americans agree: It's time to rein in corporate price gouging and shrinkflation and hold giant corporations accountable for raising costs to pad their bottom line." + }, + { + "Retweets": "76", + "Likes": "321", + "Content": "$335 million in federal funds is transformative for Allston. The Mass Pike has divided this community for too long.\nIt's a big win for more green space, good public transit, and new bike lanes.\nKudos to strong partnership w , , & ." + }, + { + "Retweets": "125", + "Likes": "473", + "Content": "Rural Native communities have been hit especially hard by the housing crisis, facing hurdles to finding housing & making much-needed repairs. \nToday, I introduced a bill to guarantee rural tribal communities access to federal housing funds they deserve." + }, + { + "Retweets": "90", + "Likes": "338", + "Content": "I stand in solidarity with workers striking for higher pay at . \nMuseum management should negotiate with union workers in good faith for a fair deal." + }, + { + "Retweets": "415", + "Likes": "1.1K", + "Content": "BIG NEWS: the IRS Direct File pilot has launched!\nMany Americans in 12 states, including MA, have a truly free & easy option to file taxes online directly with the IRS. I fought for this program to save you time & money.\n \nCheck your eligibility & file at http://directfile.IRS.gov" + }, + { + "Retweets": "65", + "Likes": "451", + "Content": "Wishing a blessed Ramadan to families in Massachusetts and around the world. \nIn the midst of profound pain in Muslim communities, I hope this holy month can be a chance for solace, renewal, and peace. Ramadan Kareem!" + }, + { + "Retweets": "81", + "Likes": "379", + "Content": "This reversal is a win for consumers.\nI warned that this giant hotel merger would lead to higher prices and fewer choices. I\u2019m glad the deal was scrapped after scrutiny." + }, + { + "Retweets": "90", + "Likes": "307", + "Content": "After Silicon Valley Bank crashed a year ago, banking regulators told me they'd put tougher rules on big banks. \nNow, I'm asking & to deliver on their commitments to protect our financial system & economy." + }, + { + "Retweets": "3.2K", + "Likes": "10K", + "Content": "How brazen do you have to be to make over $1 million in a single year, and then not file taxes?\nRich tax cheats thought they could get away with it. No more. Thanks to IRS funding Democrats secured, the ultra-rich is being held accountable.https://cnbc.com/2024/02/29/irs-targets-wealthy-non-filers-with-new-wave-of-compliance-letters.html\u2026" + }, + { + "Retweets": "139", + "Likes": "525", + "Content": "This law includes a big win for Mass: $350 million in federal funding to help replace the Cape Cod bridges.\nI worked with to prioritize this project, the to add it into Biden\u2019s budget, and + to secure its inclusion in this bill." + }, + { + "Retweets": "246", + "Likes": "884", + "Content": "The chaos in Haiti is gut-wrenching. The Haitian people deserve free and fair elections, and safety from violence. I\u2019m monitoring this crisis that is deeply personal for the Haitian community in Massachusetts. Parole has been a lifeline, and we must ensure protections for asylum." + }, + { + "Retweets": "437", + "Likes": "1.6K", + "Content": "Birth control is health care & by law, health insurers must cover contraception without copays or burdensome requirements.\n\nBut not all of them do. \n\nThat\u2019s why , , , & I led 150+ colleagues to urge insurance companies to follow the law." + }, + { + "Retweets": "561", + "Likes": "2.1K", + "Content": "University of Phoenix has a long track record of scamming borrowers. And when students can't graduate or get jobs, their inability to pay those loans can destroy lives.\n\nWe must do more to ensure federal dollars don't go to for-profit schools like that rip students off." + }, + { + "Retweets": "859", + "Likes": "1.8K", + "Content": "Under the Trump tax giveaway, 55 companies raked in $667 billion but paid under 5% in federal income tax. \n\nWhile Republicans want tax giveaways for the ultra-rich, Democrats will keep fighting to make sure giant corporations pay their fair share." + }, + { + "Retweets": "81", + "Likes": "229", + "Content": "The IRS Direct File pilot won\u2019t try to trick you into paying junk fees or signing away your privacy like giant tax prep company does. \n\nSee if you\u2019re eligible to file your taxes for free directly with the IRS at: http://directfile.irs.gov" + }, + { + "Retweets": "201", + "Likes": "619", + "Content": "Regulators must block 's merger with .\n\nIf this goes through, it would create another too-big-to-fail bank that could threaten our economy & jack up prices on working people using credit & debit cards.\n\nI explain why in my new op-ed." + }, + { + "Retweets": "5.5K", + "Likes": "41K", + "Content": "What can I say, President Biden just said let\u2019s tax some billionaires and give public school teachers a raise!" + }, + { + "Retweets": "2.8K", + "Likes": "12K", + "Content": "Canceling student debt\nTaxing the rich\nProtecting abortion access\nReceipts. Proof. Timeline.\n\nThis has been a life-changing presidency & isn't done yet." + } + ] +} \ No newline at end of file diff --git a/backend/names.csv b/backend/names.csv new file mode 100644 index 000000000..390c2c849 --- /dev/null +++ b/backend/names.csv @@ -0,0 +1,9273 @@ +Luther Strange +John Kennedy +Catherine Cortez Masto +Thom Tillis +Mike Rounds +Dan Sullivan +David Perdue +Ernst Joni +Ben Sasse +Brian Schatz +Mcconnell Mitch +E. James Risch +Heinrich Martin +Baldwin Tammy +Cruz Ted +Deb Fischer +Angus Jr. King S. +Heidi Heitkamp +Duckworth Tammy +Elizabeth Warren +Cotton Tom +Hassan Margaret Wood +Crapo Mike +Cochran Thad +Jon Tester +Jack Reed +Dianne Feinstein +Graham Lindsey +Hoeven John +John Thune +Murray Patty +B. Enzi Michael +Blumenthal Richard +Dean Heller +F. Roger Wicker +G. Hatch Orrin +Ron Wyden +Carper R. Thomas +Durbin J. Richard +J. Leahy Patrick +Sheldon Whitehouse +C. Gary Peters +Cory Gardner +Todd Young +Iii Joe Manchin +Johnson Ron +James Lankford +Bennet F. Michael +J. Patrick Toomey +Scott Tim +Paul Rand +Donnelly Joe +Barrasso John +Capito Moore Shelley +Kaine Tim +Casey Jr. P. Robert +Christopher Murphy +Cantwell Maria +Jeanne Shaheen +Benjamin Cardin L. +Hirono K. Mazie +Lee Mike +Isakson Johnny +Alexander Lamar +Debbie Stabenow +Pat Roberts +Bob Corker +E. Gillibrand Kirsten +Tom Udall +Bill Cassidy +Brown Sherrod +Amy Klobuchar +D. Harris Kamala +Bernard Sanders +Jeff Merkley +Edward J. Markey +Blunt Roy +Burr Richard +C. Richard Shelby +Bill Nelson +Inhofe James M. +Collins M. Susan +John Mccain +Portman Rob +Menendez Robert +Jerry Moran +Chris Hollen Van +Lisa Murkowski +Charles E. Schumer +Claire Mccaskill +Flake Jeff +A. Booker Cory +Marco Rubio +A. Christopher Coons +Cornyn John +Daines Steve +Chuck Grassley +Mark R. Warner +Al Franken +Boozman John +Aguilar Pete +Austin Scott +Bennie G. Thompson +Asunción Concha De García-Mauriño Jacoba La María Pía +Betty Mccollum +Bill Jr. Pascrell +C. Robert Scott +E. Latta Robert +Brad Sherman +A. C. Dutch Ruppersberger +Cathy Mcmorris Rodgers +Chellie Pingree +Clyburn E. James +C. Collin Peterson +Conaway K. Michael +Bill Posey +Boyle Brendan +Culberson John +Michael Simpson +Palazzo Steven +Hice Jody +Krishnamoorthi Raja +Raul Ruiz +Daniel Donovan +Darrell Issa +David Loebsack +David G. Reichert +Desjarlais Scott +Donald Norcross +Doris Matsui O. +Dunn Neal +David Roe +Eleanor Holmes Norton +Blake Farenthold +Frank Jr. Pallone +Garret Graves +"""Gerry"" Connolly E. Gerald" +Butterfield G.K. +Kevin Mccarthy +Grace Napolitano +Gregg Harper +Gregory Meeks W. +Beutler Herrera Jaime +Hurd Will +Jackson Lee Sheila +Himes James +Janice Schakowsky +Jared Polis +Chaffetz Jason +Fortenberry Jeff +Jim Jordan +James Langevin +F. James Sensenbrenner +Castro Joaquin +Carter John +Poe Ted +Brownley Julia +Amash Justin +Ellison Keith +Keith Rothfus +Calvert Ken +Comer James +"""Lacy"" Clay Jr. William" +Lamar Smith +Lee Zeldin +Louise Slaughter +Mac Thornberry +Diaz-Balart Mario +Amodei Mark +Blackburn Marsha +Maxine Waters +Burgess Michael +Capuano E. Michael +Kelly Mike +Nancy Pelosi +Niki Tsongas +Lowey Nita +Norma Torres +M. Nydia Velã¡Zquez +Mchenry Patrick T. +Pat Tiberi +Olson Pete +J. Peter Roskam +Peter Welch +Pete Sessions +Labrador R. Raul +Devin Nunes +D. Duncan Hunter +Steve Womack +Garrett Thomas +Abraham Ralph +Adams Alma +Adam Schiff +Adam Smith +Adrian Smith +Alexander Mooney +Al Green +Al Lawson +Amata Aumua Radewagen +Andrã© Carson +Andy Barr +Andy Biggs +Andy Harris +Anna Eshoo G. +Ann Kuster +Ann Wagner +Anthony Brown +Arrington Jodey +Barbara Lee +Barragán Nanette +Beatty Joyce +Ben Lujan R. +Ami Bera +Beto O'Rourke +Bill Flores +Bill Foster +Bill Johnson +Bill Shuster +Blaine Luetkemeyer +Blumenauer Earl +Bobby L. Rush +Bob Gibbs +Bonamici Suzanne +Bonnie Coleman Watson +Bost Mike +Brad Wenstrup +Brady Robert +Babin Brian +Brian Fitzpatrick +Brian Higgins +Brian Mast +Blunt Lisa Rochester +Buddy Carter +Bradley Byrne +Carbajal Salud +Cã¡Rdenas Tony +Cartwright Matthew +Charlie Crist +Charles Dent W. +Bustos Cheri +Chris Collins +Christopher Smith +Chris Stewart +Charles Fleischmann +Cicilline David +Clay Higgins +Cleaver Emanuel +Cohen Steve +Barbara Comstock +Cuellar Henry +Cummings Elijah +Carlos Curbelo +Daniel Kildee +Danny Davis K. +Darren Soto +Brat Dave +David Joyce +Dave Trott +David Schweikert +David Kustoff +David Rouzer +David Scott +David G. Valadao +David Young +Debbie Dingell +Delbene Suzan +Dennis Ross +Denny Heck +Derek Kilmer +Desantis Ron +Desaulnier Mark +Degette Diana +Black Diane +Dina Titus +Doug Lamborn +Donald Jr. Payne +Bacon Don +Beyer Donald +Don Young +Collins Doug +A. Drew Ferguson +Dwight Evans +Debbie Schultz Wasserman +Ed Royce +Eliot Engel +Erik Paulsen +Adriano Espaillat +Elizabeth Esty +Evan Jenkins +Filemon Vela +Frank Lucas +Fred Upton +French Hill J. +Gallagher Mike +Garamendi John +Gene Green +Gonzalez Vicente +Bob Goodlatte +A. Gosar Paul +Grace Meng +Greg Walden +Glenn Grothman +Bilirakis Gus M. +Brett Guthrie S. +Gutierrez Luis +Gwen Moore +Harold Rogers +Colleen Hanabusa +Hartzler Vicky +Alcee Hastings L. +Hensarling Jeb +George Holding +Huffman Jared +Bill Huizenga +Hultgren Randy +Bergman Jack +Jacky Rosen +Jason Lewis +Jason Smith +Jayapal Pramila +Bridenstine Jim +Denham Jeff +Duncan Jeff +Hakeem Jeffries +Gonzã¡Lez-Colã³N Jenniffer +Jerrold Nadler +Banks Jim +Cooper Jim +Costa Jim +Jimmy Panetta +Jim Renacci +Barton Joe +Courtney Joe +Crowley Joseph +Iii Joseph Kennedy P. +Joe Wilson +Conyers John Jr. +Delaney John +Duncan J. John Jr. +Faso John +John Katko +B. John Larson +John Lewis +A. John Yarmuth +E. Josã© Serrano +Gottheimer Josh +Juan Vargas +Chu Judy +Bass Karen +Kathleen Rice +Granger Kay +Clark Katherine +Buck Ken +Kenny Marchant +Brady Kevin +Cramer Kevin +Kevin Yoder +J. Kihuen Ruben +Adam Kinzinger +Kristi Noem +Darin Lahood +Doug Lamalfa +Lance Leonard +Bucshon Larry +Brenda Lawrence +Linda Sã¡Nchez +Daniel Lipinski +Cheney Liz +Doggett Lloyd +Frank Lobiondo +Frankel Lois +Barletta Lou +Correa J. Luis +Barry Loudermilk +Gohmert Louie +Alan Lowenthal +Grisham Lujan Michelle +Luke Messer +Jenkins Lynn +Carolyn Maloney +Fudge L. Marcia +Kaptur Marcy +Mark Meadows +Mark Pocan +Mark Takano +Mark Walker +Marshall Roger +Martha Roby +Gaetz Matt +Mccaul Michael T. +Mcclintock Tom +A. Donald Mceachin +James Mcgovern +David Mckinley +Jerry Mcnerney +Martha Mcsally +Meehan Pat +Griffith H. Morgan +Love Mia +Bishop Mike +Coffman Mike +Johnson Mike +Mike Quigley +Mike Rogers +Michael Turner +Mimi Walters +Brooks Mo +John Moolenaar +Markwayne Mullin +Dan Newhouse +O'Halleran Tom +Cook Paul +Mitchell Paul +D. Paul Tonko +Ed Perlmutter +King Peter +Defazio Peter +Pittenger Robert +Bruce Poliquin +Jamie Raskin +John Ratcliffe +Grijalva Raúl +E. Neal Richard +Hudson Richard +Cedric L.- Richmond Vacancy +Allen Rick +Crawford Eric “Rick” +Larsen Rick +Bishop Rob +Kelly Robin +Robert Woodall +Blum Rod +Dana Rohrabacher +Khanna Ro +Estes Ron +Kind Ron +Francis Rooney +Lucille Roybal-Allard +Gallego Ruben +Russell Steve +John Rutherford +Roger Williams +Costello Ryan +Graves Sam +Levin Sander +Mark Sanford +John P. Sarbanes +Kurt Schrader +Perry Scott +Peters Scott +Scott Taylor +Duffy P. Sean +Maloney Patrick Sean +Carol Shea-Porter +John Shimkus +Kyrsten Sinema +Albio Sires +Lloyd Smucker +Jackie Speier +Elise Stefanik +F. Lynch Stephen +Murphy Stephanie +Chabot Steve +Pearce Steve +Steve Stivers +Davis Susan +Eric Swalwell +Budd Ted +Deutch Theodore +Lieu Ted +Ted Yoho +Claudia Tenney +A. Sewell Terri +Massie Thomas +Mike Thompson +Ryan Tim +J. Timothy Walz +Scott Tipton +Emmer Tom +Graves Tom +Macarthur Tom +Marino Tom +Reed Tom +Rice Tom +Suozzi Thomas +Kelly Trent +Hollingsworth Trey +Demings Val +Marc Veasey +Peter Visclosky +Tim Walberg +Jackie Walorski +B. Jones Walter +Daniel Webster +Bruce Westerman +Frederica Wilson +Clarke D. Yvette +Lofgren Zoe +Aderholt Robert +J. Robert Wittman +Davis Rodney +Delauro L. Rosa +Ileana Ros-Lehtinen +Johnson Sam +Bishop D. Jr. Sanford +Ryan Zinke +Moulton Seth +D. Paul Ryan +Plaskett Stacey +King Steve +Knight Steve +Scalise Steve +Brooks Susan W. +Gowdy Trey +Rokita Todd +Cole Tom +Rooney Tom +Gabbard Tulsi +Randy Weber +Gary Palmer +Castor Kathy +Keating William +Billy Long +Doyle Michael +Nolan Rick +Frelinghuysen Rodney +Buchanan Vern +Foxx Virginia +Davidson Warren +H. Hoyer Steny +Becerra Xavier +David Price +Bernice Eddie Johnson +Gregorio Kilili Sablan +Bordallo Madeleine +Mick Mulvaney +Abbott Diane Ms +Abrahams Debbie +Adams Nigel +Afolami Bim +Adam Afriyie +Aldous Peter +Ali Rushanara +Allan Lucy +Allen Heidi +Allin-Khan Dr Rosena +Amesbury Mike +Amess David Sir +Andrew Stuart +Antoniazzi Tonia +Ashworth Jonathan +Austin Ian +Bacon Richard +Badenoch Kemi +Adrian Bailey +Baker Mr Steve +Baldwin Harriett +Barclay Stephen +Bardell Hannah +Barron Kevin +Bebb Guto +Begley Órfhlaith +Benn Hilary +Benyon Richard +Berger Luciana +Berry Jake +Black Mhairi +Blackford Ian +Blackman Bob +Blackman Kirsty +Blackman-Woods Roberta +Blomfield Paul +Blunt Crispin +Boles Nick +Bone Mr Peter +Bottomley Peter Sir +Andrew Bowie +Brabin Tracy +Ben Bradshaw Mr +Brady Graham +Brady Mickey +Brake Tom +Braverman Suella +Brennan Kevin +Andrew Bridgen +Brine Steve +Brock Deidre +Brokenshire James +Alan Brown +Brown Lyn Ms +Bryant Chris +Buck Karen Ms +Buckland Robert +Burden Richard +Alex Burghart +Burgon Richard +Burns Conor +Alistair Burt +Butler Dawn +Byrne Liam +Cable Vince +Cadbury Ruth +Alun Cairns +Cameron Dr Lisa +Alan Campbell Sir +Carden Dan +Alistair Carmichael Mr +Cartlidge James +Cash Sir William +Caulfield Maria +Alex Chalk +Champion Sarah +Chapman Douglas +Chapman Jenny +Bambos Charalambous +Cherry Joanna +Chishti Rehman +Churchill Jo +Clark Colin +Clark Greg +Clarke Kenneth +Clarke Mr Simon +Cleverly James +Ann Clwyd +Coaker Vernon +Ann Coffey +Coffey Dr Thérèse +Collins Damian +Cooper Julie +Cooper Rosie +Cooper Yvette +Corbyn Jeremy +Alberto Costa +Courts Robert +Cowan Ronnie +Cox Geoffrey Mr +Coyle Neil +Crabb Stephen +Crausby David +Angela Crawley +Creagh Mary +Creasy Stella +Crouch Tracey +Cruddas Jon +Cryer John +Cummins Judith +Alex Cunningham +Cunningham Jim +Daby Janet +Dakin Nic +Davey Edward Sir +David Wayne +C. David Davies T. +Davies Geraint +Davies Glyn +Davies Mims +Davies Philip +David Davis Mr +Day Martyn +Cordova De Marsha +De Gloria Piero +Debbonaire Thangam +Coad Dent Emma +Dhesi Mr Singh Tanmanjeet +Caroline Dinenage +Djanogly Jonathan Mr +Docherty Leo +Docherty-Hughes Martin +Anneliese Dodds +Dodds Nigel +Donaldson Jeffrey M Sir +Donelan Michelle +Dorries Ms Nadine +Double Steve +Doughty Stephen +Dowd Peter +Doyle-Price Jackie +Drax Richard +David Drew +Dromey Jack +Duddridge James +Duffield Rosie +David Duguid +Alan Duncan +Dunne Philip +Angela Eagle Ms +Eagle Maria +Edwards Jonathan +Clive Efford +Elliott Julie +Ellis Michael +Ellman Louise +Ellwood Mr Tobias +Chris Elmore +Charlie Elphicke +Bill Esterson +Chris Evans +Evans Mr Nigel +David Evennett Sir +Fabricant Michael +Farron Tim +Fellows Marion +Field Frank +Field Mark +Fitzpatrick Jim +Caroline Flint +Flynn Paul +Ford Vicky +Foster Kevin +Fovargue Yvonne +Dr Fox Liam +Foxcroft Vicky +Frazer Lucy +Freeman George +Frith James +Furniss Gill +Fysh Marcus Mr +Gaffney Hugh +Gapes Mike +Barry Gardiner +Garnier Mark +David Gauke +George Ruth +Gethins Stephen +Ghani Ms Nusrat +Gibb Nick +Gibson Patricia +Gildernew Michelle +Gill Kaur Preet +Cheryl Dame Gillan +Girvan Paul +Glen John +Glindon Mary +Godsiff Roger +Goldsmith Zac +Goodman Helen +Gove Michael +Grady Patrick +Graham Luke +Graham Richard +Grant Helen Mrs +Grant Peter +Gray James +Gray Neil +Chris Green +Damian Green +Green Kate +Greening Justine +Greenwood Lilian +Greenwood Margaret +Griffith Nia +Andrew Gwynne +Gyimah Sam +Haigh Louise +Hair Kirstene +Halfon Robert +Hall Luke +Fabian Hamilton +Hammond Philip +Hammond Stephen +Hancock Matt +Greg Hands +David Hanson +Emma Hardy +Harman Harriet Ms +Harper Mark Mr +Harrington Richard +Carolyn Harris +Harris Rebecca +Hart Simon +Hayes Helen +Hayman Sue +Chris Hazzard +Heald Oliver Sir +Healey John +Heappey James +Chris Heaton-Harris +Heaton-Jones Peter +Hendrick Mark Sir +Drew Hendry +Hepburn Stephen +Herbert Nick +Hill Mike +Hillier Meg +Damian Hinds +Hoare Simon +Hobhouse Wera +Dame Hodge Margaret +Hodgson Mrs Sharon +Hoey Kate +Hollern Kate +George Hollingbery +Hollinrake Kevin +Hosie Stewart +Howell John +Hoyle Lindsay Sir +Huddleston Nigel +Eddie Hughes +Hunt Jeremy +Dr Huq Rupa +Hurd Nick +Hussain Imran +James Margot +Christine Jardine +Dan Jarvis +Javid Sajid +Jayawardena Ranil +Bernard Jenkin Sir +Andrea Jenkyns Mrs +Jenrick Robert +Boris Johnson +Caroline Johnson +Dame Diana Johnson +Gareth Johnson +Johnson Joseph +Andrew Jones +Darren Jones +David Jones Mr +Gerald Jones +Graham Jones P +Helen Jones +Jones Kevan Mr +Jones Marcus Mr +Jones Sarah +Elan Jones Susan +Kane Mike +Daniel Kawczynski +Gillian Keegan +Barbara Keeley +Kendall Liz +Kennedy Seema +Kerr Stephen +Afzal Khan +Ged Killen +Kinnock Stephen +Greg Knight Sir +Julian Knight +Kwarteng Kwasi +Kyle Peter +Dame Eleanor Laing +Laird Lesley +Ben Lake +Lamb Norman +David Lammy Mr +John Lamont +Lancaster Mark +Latham Mrs Pauline +Ian Lavery +Chris Law +Andrea Leadsom +Karen Lee +Lee Phillip +Jeremy Lefroy +Edward Leigh Sir +Chris Leslie +Letwin Oliver +Emma Lewell-Buck Mrs +Andrew Lewer +Brandon Lewis +Clive Lewis +Ivan Lewis +Julian Lewis +David Lidington +David Linden +Emma Little Pengelly +Lloyd Stephen +Lloyd Tony +Bailey Long Rebecca +Julia Lopez +Jack Lopresti +Jonathan Lord Mr +Loughton Tim +Caroline Lucas +C. Ian Lucas +Holly Lynch +Mccabe Steve +Elisha Mccallion +Kerry Mccarthy +Mcdonagh Siobhain +Andy Mcdonald +Malcolm Mcdonald Stewart +C. Mcdonald Stuart +John Mcdonnell +Mcfadden Pat +Conor Mcginn +Alison Mcgovern +Liz Mcinnes +Craig Mackinlay +Catherine Mckinnell +Maclean Rachel +Mcloughlin Patrick +Jim Mcmahon +Anna Mcmorrin +John Mcnally +Angus Brendan Macneil +Mcpartland Stephen +Esther Mcvey +Justin Madders +Khalid Mahmood Mr +Mahmood Shabana +Anne Main +Alan Mak +Malhotra Seema +Kit Malthouse +John Mann +Mann Scott +Gordon Marsden +Martin Sandy +Maskell Rachael +Maskey Paul +Masterton Paul +Christian Matheson +May Mrs Theresa +Maynard Paul +Ian Mearns +Johnny Mercer +Huw Merriman +Metcalfe Stephen +Edward Miliband +Maria Miller Mrs +Amanda Milling +Mills Nigel +Anne Milton +Andrew Mitchell +Francie Molloy +Carol Monaghan +Madeleine Moon +Layla Moran +Mordaunt Penny +Jessica Morden +Morgan Nicky +Morgan Stephen +Anne Marie Morris +David Morris +Grahame Morris +James Morris +Morton Wendy +David Mundell +Ian Murray +Mrs Murray Sheryll +Andrew Dr Murrison +Lisa Nandy +Neill Robert Sir +Gavin Newlands +Newton Sarah +Caroline Nokes +Jesse Norman +Alex Norris +Neil O'Brien +Dr Matthew Offord +Brendan O'Hara +Jared O'Mara +Fiona Onasanya +Melanie Onn +Chi Onwurah +Guy Opperman +Kate Osamor +Albert Owen +Neil Parish +Patel Priti +Mr Owen Paterson +Mark Pawsey +Peacock Stephanie +Pearce Teresa +Matthew Pennycook +John Penrose +Mr Perkins Toby +Claire Perry +Jess Phillips +Bridget Phillipson +Chris Philp +Laura Pidcock +Christopher Pincher +Jo Platt +Luke Pollard +Pow Rebecca +Lucy Powell +Prentis Victoria +Mark Prisk +Mark Pritchard +Pursglove Tom +Quince Will +Qureshi Yasmin +Dominic Raab +Faisal Rashid +Angela Rayner +John Redwood +Reed Steve +Christina Rees +Jacob Mr Rees-Mogg +Ellie Reeves +Rachel Reeves +Emma Reynolds +Jonathan Reynolds +Marie Rimmer +Laurence Mr Robertson +Gavin Robinson +Geoffrey Robinson +Mary Robinson +Matt Rodda +Andrew Rosindell +Douglas Ross +Danielle Rowley +Lee Rowley +Chris Ruane +Amber Rudd +Lloyd Russell-Moyle +David Rutley +Joan Ryan +Antoinette Sandbach +Liz Roberts Saville +Paul Scully +Bob Seely +Andrew Selous +Naz Shah +Jim Shannon +Grant Shapps +Alok Sharma +Mr Sharma Virendra +Barry Mr Sheerman +Alec Shelbrooke +Sheppard Tommy +Paula Sherriff +Gavin Shuker +Siddiq Tulip +David Simpson +Keith Simpson +Chris Skidmore +Dennis Skinner +Andy Slaughter +Ruth Smeeth +Angela Smith +Cat Smith +Chloe Smith +Eleanor Smith +Henry Smith +Jeff Smith +Julian Smith +Laura Smith +Nick Smith +Owen Smith +Royston Smith +Karin Smyth +Gareth Snell +Nicholas Soames +Alex Sobel +Anna Soubry +John Spellar +Caroline Spelman +Mark Spencer +Keir Starmer +Chris Stephens +Andrew Stephenson +Jo Stevens +John Stevenson +Iain Stewart +Rory Stewart +Jamie Stone +Gary Sir Streeter +Streeting Wes +Mel Stride +Graham Stuart +Desmond Sir Swayne +Paul Sweeney +Jo Swinson +Hugo Swire +Robert Sir Syms +Mark Tami +Alison Thewliss +Derek Thomas +Gareth Thomas +Nick Thomas-Symonds +Ross Thomson +Emily Thornberry +Stephen Timms +Kelly Tolhurst +Justin Tomlinson +Michael Tomlinson +Craig Tracey +Anne-Marie Trevelyan +Jon Trickett +Elizabeth Truss +Tom Tugendhat +Anna Turley +Karl Turner +Derek Twigg +Stephen Twigg +Liz Twist +Chuka Umunna +Edward Vaizey +Mr Shailesh Vara +Keith Vaz +Valerie Vaz +Martin Vickers +Mr Robin Walker +Thelma Walker +Ben Mr Wallace +David Warburton +Matt Warman +Giles Watling +Tom Watson +Catherine West +Matt Western +Helen Whately +Heather Mrs Wheeler +Alan Dr Whitehead +Martin Whitfield +Dr Philippa Whitford +Craig Whittaker +John Mr Whittingdale +Bill Wiggin +Hywel Williams +Paul Williams +Chris Williamson +Gavin Williamson +Phil Wilson +Sammy Wilson +Pete Wishart +Sarah Wollaston +Mike Wood +John Woodcock +Mr William Wragg +Jeremy Wright +Mohammad Yasin +Nadhim Zahawi +Daniel Zeichner +Aydın Uslupehli̇Van +Doğan Elif Türkmen +Fatma Güldemet Sari +İBrahim Özdi̇Ş +Erdi̇Nç Mehmet Şükrü +Beştaş Daniş Meral +Karakaya Mevlüt +Muharrem Varli +Necdet Ünüvar +Çeli̇K Ömer +Seyfettin Yilmaz +Küçükcan Talip +İNönü Tümer Zülfikar +Adnan Boynukara +Ahmet Aydin +Behçet Yildirim +Firat Halil İBrahim +Firat Salih +Ali Özkaya +Burcu Köksal +Dudu Hatice Özkal +Mehmet Parsak +Eroğlu Veysel +Berdan Öztürk +Cesim Gökçe +Leyla Zana +Aydoğdu Cengiz +İLknur İNceöz +Mustafa Serdengeçti̇ +Bostanci Mehmet Naci +Mustafa Tuncer +Ahmet Gündoğdu +Ahmet İYi̇Maya +Ahmet Haluk Koç +Ali Hakverdi̇ Haydar +Ali Arslan İHsan +Aylin Nazliaka +Ayşe Bi̇Lgehan Gülsün +Bülent Kuşoğlu +Cemil Çi̇Çek +Emrullah İŞler +Erkan Haberal +Aydin Ertan +Fatih Şahi̇N +Jülide Sarieroğlu +Gök Levent +Lütfiye Selva Çam +Alparslan Murat +Emi̇R Murat +Necati Yilmaz +Ceylan Nevzat +Nihat Yeşi̇L +Süreyya Sırrı Önder +Çeti̇N Şefkat +Bi̇Ngöl Tekin +Bi̇Lgi̇N Vedat +Akdoğan Yalçın +Tuğrul Türkeş Yıldırım +Topcu Zühal +Ahmet Selim Yurdakul +Atay Uslu +Budak Osman Çetin +Devrim Kök +Enç Gökcen Özdoğan +Hüseyin Samani̇ +Aydin İBrahim +Günal Mehmet +Mevlüt Çavuşoğlu +Akaydin Mustafa +Köse Mustafa +Kara Nefi Niyazi +Nur Sena Çeli̇K +Atalay Orhan +Yilmaz Öztürk +Bayraktutan Uğur +Abdurrahman Öz +Bülent Tezcan +Deniz Depboylu +Erdem Mehmet +Baydar Lütfi Metin +Ahmet Akin +Ali Aydinlioğlu +İSmail Ok +Bostan Kasım +Mahmut Poyrazli +Mehmet Tüm +Havutça Namık +Kirci Sema +Tunç Yılmaz +Ataullah Hami̇Di̇ +Acar Ayşe Başaran +Ali Aslan Mehmet +Becerekli̇ Saadet +Ağbal Naci +Kavcioğlu Şahap +Tüzün Yaşar +Cevdet Yilmaz +Hişyar Özsoy +Irgat Mizgin +Demi̇Röz Vedat +Ali Ercoşkun +Fehmi Küpçü +Tanju Özcan +Bayram Özçeli̇K +Göker Mehmet +Petek Reşat +Bennur Karaburun +Ceyhun İRgi̇L +Ala Efkan +Emine Gözgeç Yavuz +Aydin Erkan +Hakan Çavuşoğlu +Aydin İSmail +Büyükataman İSmet +Kadir Koçdemi̇R +Karabiyik Lale +Altaca Kayişoğlu Nurhayat +Orhan Saribal +Bi̇Rkan Zekeriya +Ayhan Gi̇Der +Bülent Öz +Bülent Turan +Erkek Muharrem +Fi̇Li̇Z Hüseyin İMam +Akbaşoğlu Emin Muhammet +Ahmet Ceylan Sami +Salim Uslu +Köse Tufan +Cahit Özkan +Ayhan Emin Haluk +Arslan Kazım +Basmaci Melike +Nihat Zeybekci̇ +Ti̇N Şahin +Altan Tan +Demi̇Rel Çağlar +Bal Ebubekir +Feleknas Uca +İMam Taşçier +Ensari̇Oğlu Galip Mehmet +Sibel Yi̇Ği̇Talp +Pi̇R Ziya +Ayşe Keşi̇R +Faruk Özlü +Bi̇Rcan Erdin +Gaytancioğlu Okan +Açikkapi Ejder +Bulut Metin +Serdar Ömer +Tahir Öztürk +Bayram Serkan +Aydemi̇R İBrahim +Aydin Kamil +Ilicali Mustafa +Deli̇Göz Orhan +Akdağ Recep +Taşkesenli̇Oğlu Zehra +Cemal Okan Yüksel +Emine Günay Nur +Gaye Usluer +Harun Karacan +Utku Çakirözer +Abdulhamit Gül +Abdullah Koçer Nejat +Ahmet Uzer +Akif Eki̇Ci̇ +Canan Candemi̇R Çeli̇K +Mahmut Toğrul +Erdoğan Mehmet +Gökdağ Mehmet +Tayyar Şamil +Özdağ Ümit +Bektaşoğlu Bülent Yener +Cani̇Kli̇ Nurettin +Sabri Öztürk +Cihan Pektaş +Akgül Hacı Osman +Abdullah Zeydan +Akdoğan Nihat +Irmak Selma +Adem Yeşi̇Ldal +Birol Ertem +Fevzi Şanverdi̇ +Bayram Hacı Türkoğlu +Hilmi Yarayici +Mehmet Öntürk +Dudu Mevlüt +Serkan Topal +Adiyaman Emin Mehmet +Aras Nurettin +Bakir İRfan +Nuri Okutan +Sait Yüce +Bi̇Lgi̇Ç Sadi Süreyya +Ahmet Berat Çonkar +Ahmet Hamdi Çamli +Ali Özcan +Ali Şeker +Arzu Erdem +Atila Kaya +Aykut Erdoğdu +Azmi Eki̇Nci̇ +Barış Yarkadaş +Albayrak Berat +Burhan Kuzu +Adan Celal +Celal Doğan +Didem Engi̇N +Ali Durmuş Sarikaya +Dursun Çi̇Çek +Edip Semih Yalçin +Ekmeleddin İHsanoğlu Mehmet +Ekrem Erdem +Altay Engin +Erdoğan Toprak +Erdem Eren +Erkan Kandemi̇R +Erol Kaya +Benli̇ Fatma +Betül Fatma Kaya Sayan +Feyzullah Kiyiklik +Demi̇R Filiz Keresteci̇Oğlu +Akkuş Gamze İLgezdi̇ +Garo Paylan +Gülay Yedekci̇ +Gürsel Teki̇N +Dalkiliç Halis +Harun Karaca +Hasan Sert +Hasan Turan +Hayati Yazici +Ali Haydar Yildiz +Hulusi Şentürk +Hüda Kaya +Bürge Hüseyin +Ci̇Haner İLhan +İLhan Kesi̇Ci̇ +İSmail Kahraman +Aksu Faruk İSmail +İZzet Ulvi Yönter +Mahmut Tanal +Eseyan Markar +Mehmet Meti̇Ner +Mehmet Muş +Akif Hamzaçebi̇ Mehmet +Ali Mehmet Pulcu +Eker Mehdi Mehmet +Külünk Metin +Belma Mihrimah Satir +Mustafa Şentop +Mustafa Yeneroğlu +Mustafa Sezgin Tanrikulu +Nebati̇ Nureddin +Kaan Oğuz Salici +Adigüzel Onursal +Boyraz Osman +Buldan Pervin +Kan Kavakci Ravza +Demi̇Rtaş Selahattin +Doğan Selina +Serap Yaşar +Sibel Özdemi̇R +Ayata Sencer Süleyman +Pavey Şafak +Ünal Şirin +Kaynarca Tülay +Bozkir Volkan +Akkaya Yakup +Seferi̇Noğlu Yıldız +Emre Zeynel +Ahmet Kenan Tanrikulu +Ahmet Tuncay Özkan +Ali Yi̇Ği̇T +Atila Sertel +Aytun Çiray +Binali Yildirim +Ertuğrul Kürkcü +Fatma Hotar Nükhet Seniha +Dağ Hamza +İBrahim Mustafa Turhan +Kamil Okyay Sindir +Kemal Kiliçdaroğlu +Ali Kerem Sürekli̇ +Atilla Kaya Mahmut +Bakan Murat +Musa Çam +Ali Balbay Mustafa +Doğan Müslüm +Kalkan Necip +Oktay Vural +Purçu Özcan +Böke Sayek Selin +Bayir Tacettin +Altiok Zeynep +Celalettin Güvenç +Fahrettin Oğuz Tor +İMran Kiliç +Mahir Ünal +İLker Mehmet Çi̇Ti̇L +Di̇Li̇Pak Mehmet Uğur +Nursel Reyhanlioğlu +Kaynak Veysi +Burhanettin Uysal +Ali Mehmet Şahi̇N +Konuk Recep +Recep Şeker +Ahmet Arslan +Ayhan Bi̇Lgen +Beyri̇Bey Selahattin Yusuf +Demi̇R Murat +Arik Çetin +Hülya Nergi̇S +İSmail Tamer +Emrah İSmail Karayel +Mehmet Özhaseki̇ +Dedeoğlu Sami +Taner Yildiz +Halaçoğlu Yusuf +Abdullah Öztürk +Demi̇R Mehmet +Can Ramazan +Mi̇Nsolmaz Selahattin +Kayan Türabi +Gündoğdu Vecdi +Arslan Mikail +Polat Reşit +Cemil Yaman +Fatma Hürri̇Yet Kaplan +Fikri Işik +Akar Haydar +Akif Mehmet Yilmaz +Katircioğlu Radiye Sezer +Saffet Sancakli +Sami Çakir +Tahsin Tarhan +Aygün Zeki +Ahmet Davutoğlu +Ahmet Sorgun +Ahmet Hacı Özdemi̇R +Etyemez Halil +Erdoğan Hüsnüye +Leyla Usta Şahi̇N +Babaoğlu Mehmet +Baloğlu Mustafa +Bozkurt Hüsnü Mustafa +Altunyaldiz Ziya +Gazel İShak +Mustafa Nazli Şükrü +Kavuncu Vural +Bülent Tüfenkci̇ +Mustafa Şahi̇N +Nurettin Yaşar +Çalik Öznur +Taha Özhan +Ağbaba Veli +Akçay Erkan +Bi̇Len İSmail +Mazlum Nurlu +Baybatur Murat +Özel Özgür +Berber Recai +Selçuk Özdağ +Bi̇Çer Tur Yildiz +Aydemi̇R Uğur +Ali Atalan +Bölünmez Ceyda Çankiri +Dora Erol +Gülser Yildirim +Mithat Sancar +Mi̇Roğlu Orhan +Ali Cumhur Taşkin +Atici Aytuğ +Baki Şi̇Mşek +Dengir Firat Mehmet Mir +Durmuş Fikri Sağlar +Hacı Özkan +Hüseyin Çamak +Elvan Lütfi +Oktay Öztürk +Kuyucuoğlu Serdal +Tezcan Yılmaz +Akın Üstündağ +Nihat Öztürk +Demi̇R Nurettin +Aldan Süha Ömer +Ahmet Yildirim +Burcu Çeli̇K +Emin Mehmet Şi̇Mşek +Ebubekir Gi̇Zli̇Gi̇Der +Göktürk Murat +Açikgöz Mustafa +Erdoğan Özegen +Fethi Gürer Ömer +Ergün Taşci +Gündoğdu Metin +Kurtulmuş Numan +Oktay Çanak +Seyit Torun +Bahçeli̇ Devlet +Durmuşoğlu Mücahit +Ersoy Ruhi +Suat Önal +Hasan Karal +Ayar Hikmet +Aşkın Bak Osman +Ali İHsan Yavuz +Ayhan Sefer Üstün +Engin Özkoç +İSen Mustafa +Recep Uncuoğlu +Di̇Şli̇ Şaban +Açba Zihni +Ahmet Demi̇Rcan +Akif Kiliç Çağatay +Karaaslan Çiğdem +Erhan Usta +Fuat Köktaş +Basri Hasan Kurt +Hayati Teki̇N +Kemal Zeybek +Kircali Orhan +Kadri Yildirim +Aktay Yasin +Barış Karadeni̇Z +Mavi̇Ş Nazım +Akyildiz Ali +Bi̇Lgi̇N Hilmi +İSmet Yilmaz +Habib Mehmet Soluk +Dursun Selim +Ahmet Eşref Fakibaba +Dilek Öcalan +Faruk Çeli̇K +Halil Özcan +Halil İBrahim Yildiz +Kemalettin Yilmazteki̇N +Kaçar Mahmut +Akyürek Mehmet +Ali Cevheri̇ Mehmet +Baydemi̇R Osman +Aycan İRmez +Encu Ferhat +Bi̇Rli̇K Leyla +Ayşe Doğan +Candan Yüceer +Emre Köprülü +Faik Öztrak +Akgün Metin +Mustafa Yel +Celil Göçer +Coşkun Çakir +Durmaz Kadim +Beyazit Yusuf +Aslan Zeyid +Adnan Günnar +Ayşe Köseoğlu Sula +Haluk Pekşen +Balta Muhammet +Cora Salih +Soylu Süleyman +Alican Önlü +Erol Gürsel +Alim Tunç +Altay Mehmet +Yalim Özkan +Adem Geveri̇ +Bedia Ertan Özgökçe +Atalay Beşir +Burhan Kayatürk +Botan Lezgin +Nadir Yildirim +Demi̇Rel Fikri +İNce Muharrem +Bekir Bozdağ +Ertuğrul Soysal +Başer Yusuf +Faruk Çaturoğlu +Hüseyin Özbakir +Ulupinar Özcan +Turpcu Şerafettin +Demi̇Rtaş Ünal +Abdullah Doğru +Ahmet Zenbi̇Lci̇ +Ayhan Barut +Ayşe Ersoy Sibel +Bulut Burhanettin +İSmail Koncuk +Kemal Peköz +Mehmet Metanet Çulhaoğlu +Müzeyyen Şevki̇N +Orhan Sümer +Dağli Tamer +Hatimoğullari Oruç Tulay +Abdurrahman Tutdere +Fatih Muhammed Toprak +Taş Yakup +Gültekin Uysal +İBrahim Yurdunuseven +Mehmet Taytak +Abdullah Koç +Dilan Dirayet Taşdemi̇R +Ekrem Çelebi̇ +Ayhan Erel +Kaşli Ramazan +Hasan Çi̇Lez +Karahocagi̇L Levent Mustafa +Arife Düzgün Polat +Asuman Erdoğan +Altintaş Ayhan +Aydin Barış +Durmuş Yilmaz +Gamze Taşcier +Hacı Turan +Halil İBrahim Oral +Aydin Koray +Desti̇Ci̇ Mustafa +Nevin Taşliçay +Orhan Yegi̇N +Durmaz Sadir +Servet Ünsal +Bal Şenol +Yaşar Yildirim +Kaya Yıldırım +Yildiz Zeynep +Abdurrahman Başkan +Aydın Özer +Ari Cavit +Hasan Subaşi +Bülbül Kemal +Kemal Çeli̇K +Rafet Zeybek +Tuba Vural Çokal +Balta Erkan Ertunç +Adnan Aydın Sezgi̇N +Bekir Eri̇M Kuvvet +Hüseyin Yildiz +Metin Yavuz +Mustafa Savaş +Bülbül Süleyman +Adil Çeli̇K +Belgin Uygur +Ayteki̇N Ensar +Fikret Şahi̇N +Canbey Mustafa +Aydemi̇R Mutlu Pakize +Subaşi Yavuz +Aysu Bankoğlu +İPekyüz Necdet +Ziver Özdemi̇R +Battal Fetani +Selim Yağci +Aydemi̇R Erdal +Berdi̇Bek Feyzi +Cemal Taşar +Celadet Gaydali Mahmut +Ki̇Ler Vahit +Arzu Aydin +Uğur Yasin +Ahmet Kiliç +Ahmet Erozan Kamil +Atilla Ödünç +İSmail Tatlioğlu +Aydin Muhammet Müfit +Esgi̇N Mustafa +Hidayet Mustafa Vahapoğlu +Mesten Osman +Refik Özen +Gürel Vildan Yilmaz +Yüksel Özkan +Işik Zafer +İSkenderoğlu Jülide +Ceylan Özgür +Salim Çi̇Vi̇Tci̇Oğlu +Erol Kavuncu +Kaya Oğuzhan +Ahmet Yildiz +Bi̇Çer Gülizar Karaca +Haşim Sancar Teoman +Nilgün Ök +Yasin Öztürk +Adnan Mizrakli Selçuk +Dağ Dersim +Fari̇Soğullari Musa +Remziye Tosun +Aydeni̇Z Salihe +Güzel Semra +Fahri Çakir +Yilmaz Ümit +Aksal Fatma +Orhan Çakirlar +Balik Sermin +Demi̇Rbağ Zülfü +Ağar Tolga Zülfü +Burhan Çakir +Karaman Süleyman +Ci̇Ni̇Sli̇ Muhammet Naci +Altinok Selami +Arslan Kabukcuoğlu +Jale Nur Süllü +Metin Nurullah Sazak +Avci Nabi +Ali Şahi̇N +Ali Muhittin Taşdoğan +Bayram Yilmazkaya +Bakbak Derya +İRfan Kaplan +Ki̇Razoğlu Mehmet Sait +Müslüm Yüksel +Atay Sermet +Cemal Öztürk +Aydin Kadir +Necati Tiğli +Di̇Nç Husret +Güven Leyla +Dede Sait +Abdulkadir Özel +Atay Barış Mengüllüoğlu +Hüseyin Şanverdi̇ +Hüseyin Yayman +İSmet Tokdemi̇R +Kaşikçi Lütfi +Güzelmansur Mehmet +Sabahat Çeli̇K Özgürsoy +Suzan Şahi̇N +Eksi̇K Habip +Karadağ Yaşar +Aylin Cesur +Gökgöz Mehmet Uğur +Recep Özel +Abdul Ahat Andi̇Can +Abdullah Güler +Ahmet Çeli̇K +Ahmet Şik +Ahmet Arinç Mücahit +Ahmet Çevi̇Köz Ünal +Alev Dedegi̇L +Ali Kenanoğlu +Aziz Babuşcu +Canan Kalsin +Cemal Çeti̇N +Canbaz Dilşat Kaya +Emecan Emine Gülizar +Aydin Emine Sare Yilmaz +Baş Erkan +Erol Katircioğlu +Eyüp Özsoy +Fatih Mehmet Şeker +Deni̇Zolgun Fatih Süleyman +Açikel Fethi +Feti Yildiz +Gökan Zeybek +Hakkı Oluç Saruhan +Arkaz Hayati +Hayrettin Nuhoğlu +İBrahim Kaboğlu Özden +İFfet Polat +İSmet Uçma +Berberoğlu Enis Kadri +Bekaroğlu Mehmet +Doğan Kubat Mehmet +Bülent Karataş Memet +Musa Pi̇Roğlu +Ataş Mustafa +Demi̇R Mustafa +Durgut Müşerref Pervin Tuba +Cihangir İSlam Nazır +Nevzat Şatiroğlu +Ersoy Oya +Karabat Özgür +Kadak Rümeysa +Kadigi̇L Saliha Sera Sütlü +Ayrim Şamil +Aydoğan Turan +Beyaz Ümit +Ağirali̇Oğlu Yavuz +Emre Yunus +Kilinç Mansur Yüksel +Sirakaya Zafer +Zeynel Özen +Gülüm Züleyha +Bedri Serter +Bekle Cemal +Dervi̇Şoğlu Dursun Müsavat +Arslan Ednan +Alpay Fehmi Özalan +Hasan Kalyoncu +Beko Kani +Mahir Polat +Ali Mehmet Çelebi̇ +Murat Çepni̇ +Nasir Necip +Kemalbay Pekgözegü Serpil +Erdan Kiliç Sevda +Osmanağaoğlu Tamer +Kirkpinar Yaşar +Ahmet Özdemi̇R +Ali Öztunç +Habibe Öçal +Cihat Mehmet Sezal +Aycan Sefer +Cumhur Ünal +Atakan İSmail Ünver +Eser Oğuzhan Selman +Kiliç Yunus +Baltaci Hasan +Metin Çeli̇K +Ataş Dursun +İSmail Özdemi̇R +Eli̇Taş Mustafa +Baki Ersoy Mustafa +Halil Öztürk +İLhan Metin +Kendi̇Rli̇ Mustafa +Ahmet Dal Salih +Dülger Hilmi Mustafa +Emine Zeybek +İLyas Şeker +Lütfü Türkkan +Faruk Gergerli̇Oğlu Ömer +Abdulkadir Karaduman +Abdullah Ağrali +Abdüllatif Şener +Esin Kara +Fahrettin Yokuş +Gülay Samanci +Kalayci Mustafa +Erdem Orhan +Selman Özboyaci +Akyürek Tahir +Ahmet Erbaş +Ahmet Tan +Ali Fazıl Kasap +Ceyda Erenler Çeti̇N +Ahmet Çakir +Hakan Kahtali +Celal Fendoğlu Mehmet +Ahmet Bakirlioğlu Vehbi +Başevi̇Rgen Bekir +Ali Mehmet Özkan +Kaplan Kivircik Semra +Cengiz Demi̇Rkaya +Ebrü Günay +Dundar Pero +Di̇Nçel Şeyhmus +Tuma Çeli̇K +Ali Başarir Mahir +Alpay Antmen +Behiç Çeli̇K +Cengiz Gökçel +Fatma Kurtulan +Kilavuz Olcay +Rıdvan Turan +Hakan Sidali Zeki +Gül Yilmaz Zeynep +Burak Erbay +Demi̇R Mehmet Yavuz +Ergun Metin +Alban Mürsel +Suat Özcan +Erol Gökcan Yelda +Gülüstan Kiliç Koçyi̇Ği̇T +Menekşe Yücel +Gülteki̇N Selim +Ergun Yavuz +Cemal Engi̇Nyurt +Adigüzel Mustafa +Yedi̇Yildiz Şenel +Baha Ünlü +İSmail Kaya +Avci Muhammed +Atabek Erdoğan Çiğdem +Kenan Sofuoğlu +Bülbül Levent Muhammed +Di̇Kbayir Ümit +Yilmaz Yusuf Ziya +Osman Ören +Ahmet Özyürek +Eki̇Nci̇ Semiha +Karasu Ulaş +Ahmet Akay +Ayşe Sürücü +Aydinlik Aziz +Halil Özşavli +İBrahim Özyavuz +Gülpinar Kasım Mehmet +Erdoğmuş Nimetullah +Maçi̇N Nusrettin +Açanal Gülender Zemzem +Hüseyin Kaçmaz +İMi̇R Nuran +Bi̇Rli̇K Rizgin +Koncagül Çiğdem +Enez Kaplan +Aygun İLhami Özcan +Arslan Mustafa +Zengi̇N Özlem +Bulut Yücel +Ayvazoğlu Bahar +Hüseyin Örs +Polat Şaroğlu +Güneş İSmail +Abdulahat Arvas +İRfan Kartal +Muazzez Orhan +Murat Sarisaç +Gülaçar Nuri Osman +Sezai Temelli̇ +Tayip Temel +Ahmet Büyükgümüş +Akyol Meliha +Özcan Özel +Ali Keven +Ethem İBrahim Sedef +Ahmet Çolakoğlu +Deniz Yavuzyilmaz +Hamdi Uçar +Polat Türkmen +Gantar Tomaž +Andreja Potočnik +[Ivan] Janez Janša +Andrej Čuš +Jernej Vrtovec +Gorenak Vinko +Alenka Bratušek +Horvat Jožef +Anže Logar +Bojan Krajnc +Branko Zorman +Igor Zorčič +Simon Zajc +Vervega Vesna +Janja Sluga +Vojka Šergan +Branislav Rajić +[Janko] Jani Möderndorfer +Aleksander Kavčič +Grošelj Irena Košnik +Ferluga Marko +Ljubo Žnidar +Jože Tanko +Andrej Šircelj +Marko Pogačnik +Bojan Podkrajšek +Mahnič Žan +Lisec Tomaž +Lep Suzana Šimenko +Danijel Krivec +Eva Irgl +Branko Grims +Godec Jelka +Brinovšek Nada +Breznik Franc +Anja Bah Žibert +Peter Vilfan +Prikl Uroš +Hršak Ivan +Janko Veber +Jan Škoberne +Matjaž Nemec +Tomić Violeta +Matej Tašner Vatovec +Luka Mesec +Ljudmila Novak +Franc Laj +Zvonko Černač +Boris Doblekar +Furman Karmen +Alenka Jeraj +Dejan Kaloh +Marijan Pojbič +Divjak Lidija Mirnik +Heferle Tina +Aljaž Kovačič +Edvard Paulič +Igor Peček +Andreja Zabret +Bojana Muršič +Jani Prednik +Dejan Židan +Gregorčič Monika +Gregor Perič +Boštjan Koražija +Primož Siter +Blaž Pavlin +Aleksander Reberšek +Matej Tonin +Kociper Maša +Jelinčič Plemeniti Zmago +Dušan Šiško +Marjan Šarec +Adam Marttinen +Adnan Dibrani +Agneta Gille +Adan Amir +Anders Åkesson +Anders Schröder +Anders Jonsson W +Andreas Carlson +Anette Åkesson +Anna Batra Kinberg +Anna-Lena Sörenson +Anna Wallén +Anna Wallentheim +Annicka Engblom +Annika Lillemets +Anti Avsan +Coenraads Åsa +Romson Åsa +Betty Malmberg +Björn Söder +Björn Wiechel +Carina Herrstedt +Carina Ohlsson +Bohlin Carl-Oskar +Cecilia Magnusson +Cecilia Widegren +Christer Nylander +Christina Höj Larsen +Daniel Riazat +Daniel Sestrajcic +David Lång +Dennis Dioukarev +Edward Riedl +Elin Lundgren +Emil Källström +Emma Henriksson +Emma Hult +Emma Nohrén +Emma Wallrup +Andersson Erik +Eva Lohman +Eva Sonidsson +Ewa Finné Thalén +Bengtsson Finn +Christensson Fredrik +Fredrik Malm +Fredrik Olovsson +Göran Pettersson +Carlsson Gunilla +Gunilla Nordgren +Gunilla Svantorp +Håkan Svenneling +Hanna Wigh +Hans Rothenberg +Bouveng Helena +Hillevi Larsson +Ingemar Nilsson +From Isak +Amin Jabar +Forssmed Jakob +Ericson Jan +Andersson Jan R +Alm Ericson Janine +Jennie Nilsson +Jenny Petersson +Holm Jens +Jessica Polfjärd +Jessica Rosencrantz +Jessika Roswall +Jimmie Åkesson +Forssell Johan +Hultberg Johan +Johan Nissinen +Haraldsson Johanna +Johnny Skalin +Eriksson Jonas +Gunnarsson Jonas +Jonas Sjöstedt +Andersson Jörgen +Jörgen Warborn +Fransson Josef +Julia Kronlid +Enström Karin +Karin Rågsjö +Karin Smith Svensson +Forslund G Kenneth +Ekeroth Kent +Kerstin Lundgren +Hammarbergh Krister +Lars-Arne Staxäng +Lars-Axel Nordell +Hjälmered Lars +Lars Larsson Mejern +Asplund Lena +Emilsson Lena +Hallengren Lena +Axelsson Lennart +Linda Snecker Westerlund +Bylund Linus +Lise Nordin +Finstorp Lotta +Lotta Olsson +Magnus Persson +Cederfelt Margareta +Abrahamsson Maria +Arnholm Maria +Ferm Maria +Maria Plass +Maria Stockhaus +Maria Strömkvist +Maria Weimer +Granlund Marie +Ernkrans Matilda +Green Mats +Jonsson Mattias +Karlsson Mattias +Mattias Ottosson +Cederbratt Mikael +Mikael Oscarsson +Green Monica +Malmberg Niclas +Karlsson Niklas +Niklas Wykman +Johansson Ola +Felten Olle +Olle Thorell +Lavesson Olof +Patrick Reslow +Björck Patrik +Gamov Pavel +Gunther Penilla +Håkansson Per-Arne +Per Åsling +Klarberg Per +Lodenius Per +Jeppsson Peter +Andersson Phia +Niemi Pyry +Jomshof Richard +Nordin Rickard +Hannah Robert +Haddad Roger +Roland Utbult +Dinamarca Rossana +Karlsson Sara +Arkelsten Sofia +Damm Sofia +Fölster Sofia +Solveig Zander +Bergheden Sten +Bergström Stina +Carvalho Teresa +Finnborg Thomas +Eneroth Tomas +Skånberg Tuve +Kristersson Ulf +Andersson Ulla +Carlsson Ulrika +Karlsson Ulrika +Mutt Valter +Lindholm Veronica +Johansson Wiwi-Anne +Larsson Yasmine +Löfven Stefan +Andersson Johan +Björklund Heléne +Burwick Marlene +Büser Johan +Dahlqvist Mikael +Eriksson Åsa +Aylin Fazelian +Elin Gustafsson +Haider Monica +Hammarberg Thomas +Anna Johansson +Ida Karkiainen +Karlsson Åsa +Kadir Kasirga +Köse Serkan +Dag Larsson +Lindberg Teres +Eva Lindh +Lundqvist Patrik +Anders Lönnberg +Magnus Manhammar +Möller Ola +Laila Naraghi +Nilsson Pia +Ingela Nylund Watz +Leif Nysmed +Helén Pettersson +Lawen Redar +Azadeh Gustafsson Rojhan +Baastad Lena Rådström +Markus Selin +Linus Sköld +Anna-Caren Sätherberg +Mathias Tegnér +Anna Vikström +Westlund Åsa +Anders Ygeman +Carina Ödebrink +Anders Österberg +Alm Ann-Sofie +Alexandra Anstrell +Ask Beatrice +Bali Hanif +Beckman Lars +Bengtzboe Erik +Berglund Jörgen +Billström Tobias +Brännström Katarina +Drougge Ida +Ann-Charlotte Hammar Johnsson +Heindorff Ulrika +Hänel Marie-Louise Sandström +Jonson Pål +David Josefsson +Arin Karapet +Kopparklint Lund Marléne +Malmer Maria Stenergard +Josefin Malmqvist +Manouchi Noria +Louise Meijer +Marta Obminska +Erik Ottoson +Lars Püss +Quicklund Saila +Elisabeth Svantesson +Cecilie Tenfjord Toftby +Tobé Tomas +Camilla Grönvall Waltersson +John Weinerhall +Sofia Westergren +John Widegren +Viktor Wärnick +Ann-Britt Åsebol +Andersson Jonas +Andersson Tobias +Aranda Clara +Angelika Bengtsson +Bieler Paula +Bäckström Johansson Mattias +Eriksson Yasmine +Eskilandersson Mikael +Hedlund Roger +Ebba Hermansson +Kinnunen Martin +Michael Rubbestad +Robert Stenkvist +Sven-Olof Sällström +Markus Wiechel +Arthursson Michael +Akhondi Alireza +Cato Hansson Jonny +Ek Magnus +Erlandsson Eskil +Hedin Johan +Helander Peter +Larsson Mikael +Annie Lööf +Nilsson Sofia +Niels Paarup-Petersen +Helena Vilhelmsson +Kristina Yngwe +Martin Ådahl +Dadgostar Nooshi +Ali Esbati +Gunnarsson Hanna +Haddou Tony +Jallow Malcolm Momodou +Fornarve Johnsson Lotta +Karlsson Maj +Ilona Szatmari Waldau +Jon Thorbjörnson +Ciczie Weidby +Jessica Wetterling +Kullgren Peter +Adaktusson Lars +Brodin Camilla +Busch Ebba Thor +Carlsson Christian +Eklind Hans +Hagman Hampus +Jacobsson Magnus +Kjell-Arne Ottosson +Larry Söder +Acketoft Tina +Avci Gulan +Björklund Jan +Forssell Joar +Maria Nilsson +Lina Nordquist +Johan Pehrson +Mats Persson +Arman Teimouri +Isabella Lövin +Amanda Lind +Ali-Elmi Leila +Berginger Emma +Gardfjell Maria +Annika Falk Hirvonen +Annica Hjerling +Le Moine Rebecka +Lindhagen Åsa +Ling Rasmus +Anna Sibinska +Lorentz Tovatt +Adams Amy +Ardern Jacinda +Bakshi Kanwaljit Singh +Ball Darroch +Barclay Todd +Barry Maggie +Bennett David +Bennett Paula +Bindra Mahesh +Bishop Chris +Bond Ria +Borrows Chester +Bridges Simon +Browning Steffan +Carter David +Clark David +Clendon David +Barry Coates +Coleman Jonathan +Collins Judith +Clare Curran +Davidson Marama +Davis Kelvin +Dean Jacqui +Catherine Delahunty +Dowie Sarah +Dunne Peter +Dyson Ruth +Bill English +Faafoi Kris +Christopher Finlayson +Flavell Te Ururoa +Craig Foss +Foster-Bell Paul +Fox Marama +Anne Genter Julie +Goldsmith Paul +Goodhew Jo +Graham Kennedy +Guy Nathan +Hayes Joanne +Henare Peeni +Chris Hipkins +Brett Hudson +Gareth Hughes +Huo Raymond +Joyce Steven +Kaye Nikki +Annette King +Barbara Kuriger +Lee Melissa +Iain Lees-Galloway +Andrew Little +Jan Logie +Lotu-Iiga Peseta Sam +Macindoe Tim +Mahuta Nanaia +Martin Tracey +Mathers Mojo +Mcclay Todd +Ian Mckelvie +Clayton Mitchell +Mark Mitchell +Moroney Sue +Muller Todd +Nash Stuart +Jono Naylor +Alfred Ngaro +Damien O’Connor +O'Connor Simon +Hekia Parata +David Parker +Parmar Parmjeet +Peters Winston +Prosser Richard +Maureen Pugh +Reti Shane +Grant Robertson +Denise Roche +Jami-Lee Ross +Adrian Rurawhe +Eugenie Sage +Jenny Salesa +Alastair Scott +Carmel Sepuloni +David Seymour +James Shaw +Scott Simpson +Aupito Sio William +Smith Stuart +Barbara Stewart +Fletcher Tabuteau +Rino Tirikatene +Anne Tolley +Phil Twyford +Louise Upston +Nicky Wagner +Meka Whaitiri +Poto Williams +Maurice Williamson +Michael Wood +Michael Woodhouse +Megan Woods +Jonathan Young +King Matt +Mallard Trevor +Allan Kiritapu +Andersen Virginia +Brown Simeon +Coffey Tamati +Eagle Paul +Andrew Falloon +Jones Shane +Denise Lee +Lubeck Marja +Jo Luxton +Jenny Marcroft +Mark Ron +Kieran Mcanulty +Mark Patterson +Prime Willow-Jean +Jamie Strange +Chloe Swarbrick +Jan Tinetti +De Molen Tim Van +Hamish Walker +Duncan Webb +Engen-Helgheim Jon +Leirstein Ulf +Mathilde Tybring-Gjedde +Aasland Terje +Aasrud Rigmor +Agdestein Elin Rodum +Al-Samarai Zaineb +Andersen Dag Terje +Andersen Karin +Arnstad Marit +Asheim Henrik +Astrup Nikolai +Aukrust Åsmund +Barstad Gina +Bekkevold Geir Jørgen +Bjørdal Fredric Holen +Bjørke Nils T. +Bjørnstad Sivert +Bollestad Olaug V. +Borch Sandra +Botten Else-May +Bransdal Torhild +Breivik Terje +Bru Tina +Christensen F. Jette +Christoffersen Lise +Ebbesen Margunn +Barth Eide Espen +Eide Petter +Eidsheim Torill +Elvenes Hårek +Elvestuen Ola +Frølich Peter +Fylkesnes Knag Torgeir +Gharahkhani Masud +Angell Gimse Guro +Gjelsvik Sigbjørn +Arild Grande +Grande Skei Trine +Gudmundsen Kent +Gunnes Jon +Gustavsen Liv +Hagebakken Tore +Hagerup Margret +Halleland Terje +Haltbrekken Lars +Hansen Roald Svein +Arild Hareide Knut +Haukland Marianne +Heggelund Stefan +Heggø Ingrid +Helleland Trond +Henriksen Kari +Henriksen Martin +Anniken Huitfeldt +Kapur Mudassar +Elisabeth Kari Kaski +Ketil Kjenseth +Ingvild Kjerkol +Kari Kjos Kjønaas +Jenny Klinge +Kristensen Turid +Kirsti Leirtrø +Haukeland Hege Liadal +Holm Lønseth Mari +Eidem Kårstein Løvaas +Bente Mathisen Stein +Emilie Enger Mehl +Moflag Tuva +Bjørnar Moxnes +André Myhrvold Ole +Myrli Sverre +Cecilie Myrseth +Inge Mørland Tellef +Nilsen Tom-Christer +André Helge Njåstad +Nordlund Willfred +Arne Nævra +Ivar Odnes +Helge Orten +Pettersen Tage +Geir Pollestad +Abid Q. Raja +Nina Sandberg +Audun Leif Sande +Kristen Nils Sandtrøen +Atle Simonsen +Eirik Sivertsen +André N. Skjelstad +Solberg Torstein Tvedt +Soleim Vetle Wang +Roy Steffensen +Stensland Sveinung +Aleksander Stokkebø +Espen Per Stoknes +Storehaug Tore +Knutsdatter Marit Strand +Bengt Rune Strifeldt +Gahr Jonas Støre +Marianne Synnes +Hadia Tajik +Michael Tetzschner +Kjersti Toppe +Kristian Torve +Ove Trellevik +Anette Trettebergstuen +Tone Trøen Wilhelmsen +Christian Tybring-Gjedde +Lene Vågslid +Lene Westgaard-Halle +Erlend Wiborg +Nicholas Wilkinson +Kristian P. Wilsgård +Morten Wold +Aalst Roy Van +Agema Fleur +Amhaouch Mustafa +Arib Khadija +Arissen Femke Merel +Ark Tamara Van +Asscher Lodewijk +Azarkan Farid +Azmani Malik +Baudet Thierry +Becker Bente +Beckerman Sandra +Beertema Harm +Belhaj Salima +Berg-Jansen Den Joba Van +Bergkamp Vera +Bisschop Roelof +Albert Bosch Den Van +Bosma Martin +André Bosman +Achraf Bouali +Brenk Corrie Van +Broeke Han Ten +Bruins Eppo +Bruins Hanke Slot +Buitenweg Kathalijne +Chris Dam Van +Dekker Sander +Antje Diertens +Dijck Tony Van +Dijk Gijs Van +Dijk Jasper Van +Dijkgraaf Elbert +Dijkhoff Klaas +Dijksma Sharon +Dijkstra Pia +Dijkstra Remco +Dijsselbloem Jeroen +Carla Dik-Faber +Diks Isabelle +Duisenberg Pieter +Eijs Jessica Van +El Yassini Zohair +Corinne Ellemeet +Engelshoven Ingrid Van +Frank Futselaar +Gerbrands Karen +Geurts Jaco +De Graaf Machiel +Grashoff Rik +Dion Graus +De Groot Tjeerd +Groothuizen Maarten +Buma Haersma Sybrand Van +Harbers Mark +Heerma Pieter +Helder Lilian +Helvert Martijn Van +Hennis-Plasschaert Jeanine +Hermans Sophie +Hiddema Theo +Hijink Maarten +Den Hul Kirsten Van +Jetten Rob +De Jong Léon +Karabulut Sadet +Keijzer Mona +Bart Kent Van +Jesse Klaver +Knops Raymond +Daniel Koerhuis +Kooiman Nine +Koolmees Wouter +Koopmans Sven +Alexander Kops +Kröger Suzanne +Henk Krol +Anne Kuik +Attje Kuiken +Kuzu Tunahan +Kwint Peter +Cem Laҫin +Der Lee Tom Van +Leijten Renske +Helma Lodders +Maeijer Vicky +Lilian Marijnissen +Gidi Markuszower +Martels Maurits Von +Meenen Paul Van +Jan Middendorp +Der Harry Molen Van +Anne Mulder +Agnes Mulder +Edgar Mulder +Henk Nijboer +Chantal Haan Nijkerken-De +Michiel Nispen Van +Bram Ojik Van +Omtzigt Pieter +Foort Oosten Van +Esther Ouwehand +Zihni Özdil +Selçuk Öztürk +Nevin Özütok +Jan Paternotte +Alexander Pechtold +Peters René +Gabriëlle Popken +Lammert Raan Van +Raemakers Rens +Emile Roemer +Michel Rog +Erik Ronnes +Martin Rooijen Van +De Raymond Roon +Arno Rutte +Mark Rutte +Léonie Sazias +Carola Schouten +Gert-Jan Segers +Sjoerd Sjoerdsma +Bart Snels +Der Kees Staaij Van +Ockje Tellegen +Marianne Thieme +Liesbeth Tongeren Van +Madeleine Toorenburg Van +Stientje Van Veldhoven +Kees Verhoeven +Barbara Visser +Joël Voordewind +Linda Voortman +Aukje De Vries +Frank Wassenberg +Danai Van Weerdenburg +Lisa Westerveld +Arne Weverling +Steven Van Weyenberg +Dennis Wiersma +Geert Wilders +Martin Wörsdörfer +'T Bas Van Wout +Dilan Yeşilgöz-Zegerius +Erik Ziengs +Halbe Zijlstra +Chris Fearne +Bonnici Owen +Byron Camilleri +Agius David +Aaron Farrugia +Joseph Muscat +Galdes Roderick +Dalli Helena +Gouder Karl +Edward Scicluna +Azzopardi Stefan Zrinzo +Debono Kristy +Schembri Silvio +Busuttil Simon +Azzopardi Jason +Borg Ian +Bonnici Carmelo Mifsud +Farrugia Michael +Debattista Deo +Clyde Puli +Aquilina Karol +Falzon Michael +Azzopardi Frederick +Abela Carmelo +Agius Chris +Agius Anthony Decelis +Bartolo Clayton +Bartolo Evarist +Bedingfield Glenn +Camilleri Clint +Cardona Chris +Caruana Justyne +Cutajar Rosianne +Farrugia Julia Portelli +Clifton Grima +Grixti Silvio +Herrera Jose' +Emanuel Mallia +Joe Mizzi +Konrad Mizzi +Alex Muscat +Parnis Silvio +Anton Refalo +Edward Lewis Zammit +Arrigo Robert +Bartolo Ivan +Buttigieg Claudette +Callus Ryan +Cachia Comodini Therese +Cutajar Robert +De Marco Mario +Deguara Maria +Farrugia Marlene +Marthese Portelli +Chris Said +Hermann Schiavone +David Stellini +Edwin Vassallo +Edvards Smiltēns +Dombrava Jānis +Lolita Čigāne +Aleksejs Loskutovs +Cilinskis Einārs +Aleksandrs Kiršteins +Juris Viļums +Imants Parādnieks +Andrejs Judins +Ilmārs Latkovskis +Naudiņš Romāns +Andris Buiķis +Jānis Upenieks +Dzintars Raivis +Atis Lejiņš +Kalniņš Ojārs Ēriks +Augusts Brigmanis +Andrejs Klementjevs +Krēsliņš Kārlis +Ināra Mūrniece +Ainars Latkovskis +Valainis Viktors +Jānis Urbanovičs +Laimdota Straujuma +Inese Laizāne +Inese Lībiņa-Egnere +Abu Hosams Meri +Boķis Inesis +Jansons Ritvars +Artuss Kaimiņš +Kols Rihards +Andris Morozovs +Potapkins Sergejs +Edgars Putra +Ražuks Romualds +Jūlija Stepaņenko +Inguna Sudraba +Mārtiņš Šics +Edvīns Šnore +Juris Šulcs +Ivars Zariņš +Adamovičs Aldis +Arvils Ašeradens +Augulis Uldis +Bergmanis Raimonds +Aldis Blumbergs +Bondars Mārtiņš +Bordāns Jānis +Budriķis Uldis +Boriss Cilevičs +Anda Čakša +Daudze Gundars +Dombrovskis Vjačeslavs +Eglītis Gatis +Feldmans Krišjānis +Aldis Gobzems +Goldberga Inga +Golubeva Marija +Ilze Indriksone +Jurašs Juris +Armands Krauze +Kučinskis Māris +Linkaits Tālis +Anita Muižniece +Artis Pabriks +Daniels Pavļuts +Artūrs Plešs Toms +Juris Pūce +Dana Reizniece-Ozola +Inguna Rībena +Riekstiņš Sandis +Edgars Rinkēvičs +Dace Rukšāne-Ščipčinska +Andris Skride +Mārtiņš Staķis +Didzis Šmits +Anda Tērauda Vita +Inese Voika +Atis Zakatistovs +Reinis Znotiņš +Normunds Žunna +Cruchten Yves +Laurent Zeimet +Angel Marc +Cécile Hemmen +Adam Claude +Loschetter Viviane +Negri Roger +Serge Wilmes +Marc Spautz +Fayot Franz +Alex Bodry +Laurent Mosar +Halsdorf Jean-Marie +Claude Wiseler +Michel Wolter +Martine Mergen +Baum Gilles +Andrich-Duval Sylvie +Elvinger Joëlle +Engel Georges +Hahn Max +Delles Lex +Arendt Nancy +Claude Lamberty +Adehm Diane +Gilles Roth +Gloden Léon +Lies Marc +Bartolomeo Di Mars +Berger Eugène +André Bauler +Bofferding Taina +Claude Haagen +Anzia Gérard +Hansen Martine +Françoise Hetto-Gaasch +Reding Roy +Beissel Simone +Biancalana Dan +Benoy François +Charles Margue +Sam Tanson +Georges Mischo +Modert Octavie +Reding Viviane +David Wagner +Clement Sven +Goergen Marc +Acquaroli Francesco +Acunzo Nicola +Adelizzi Cosimo +Aiello Davide +Alemanno Maria Soave +Alessandro Amitrano +Andreuzza Giorgia +Angelucci Antonio +Angiola Nunzio +Annibali Lucia +Anzaldi Michele +Aprea Valentina +Aresta Giovanni Luca +Anna Ascani +Ascari Stefania +Azzolina Lucia +Bagnasco Roberto +Baldelli Simone +Baldino Vittoria +Baratto Raffaele +Anna Baroni Lisa +Baroni Enrico Massimo +Bartolozzi Giusi +Battelli Sergio +Alessandro Battilocchio +Alfredo Bazoli +Alex Bazzaro +Bellucci Maria Teresa +Benamati Gianluca +Bendinelli Davide +Benedetti Silvia +Benigni Stefano +Berardini Fabio +Bergamini Deborah +Berlinghieri Marina +Bersani Luigi Pier +Berti Francesco +Bianchi Luigi Matteo +Biancofiore Michaela +Bignami Galeazzo +Billi Simone +Anna Bilotti +Bitonci Massimo +Boccia Francesco +Boldrini Laura +Alfonso Bonafede +Bonomo Francesca +Bordo Michele +Bordonali Simona +Alejandro Borghese Mario +Borghi Claudio +Borghi Enrico +Boschi Elena Maria +Braga Chiara +Brambilla Michela Vittoria +Brescia Giuseppe +Brunetta Renato +Bossio Bruno Vincenza +Buffagni Stefano +Buompane Giuseppe +Businarolo Francesca +Alessio Butti +Cabras Pino +Caiata Salvatore +Annagrazia Calabria +Campana Micaela +Azzurra Cancelleri Maria Pia +Cannizzaro Francesco +Cantini Laura +Cantone Carla +Caon Roberto +Caparvi Virginio +Capitanio Massimiliano +Cappellacci Ugo +Carabetta Luca +Alessandra Carbonaro +Care' Nicola +Carelli Emilio +Carfagna Maria Rosaria +Carinelli Paola +Carnevali Elena +Carrara Maurizio +Casino Michele +Andrea Caso +Cassese Gianpaolo +Castelli Laura +Alessandro Cattaneo +Cavandoli Laura +Ceccanti Stefano +Cecchetti Fabrizio +Andrea Cecconi +Cenni Susanna +Chiazzese Giuseppe +Ciaburro Monica +Cillis Luciano +Ciprini Tiziana +Cirielli Edmondo +Andrea Colletti +Claudio Cominardi +Conte Federico +Corda Emanuela +Corneli Valentina +Costanzo Jessica +Crippa Davide +Cristina Mirella +Crosetto Guido +Curro' Giovanni +Dadone Fabiana +Daga Federica +Camillo D'Alessandro +Dall'Osso Matteo +D'Ambrosio Giuseppe +Celeste D'Arrando +D'Attis Mauro +Carlo De Luca +Carlo De Sabrina +De Filippo Vito +Deiana Paola +Deidda Salvatore +Barba Del Mauro +Daniele Del Grosso +Andrea Delle Delmastro Vedove +Antonio Del Monaco +De Diego Lorenzis +Claudia Del Emanuela Re +Delrio Graziano +Del Margherita Sesto +De Luca Piero +Andrea De Maria +De Guido Martini +De Menech Roger +De Micheli Paola +D'Eramo Luigi +Dieni Federica +Di Giorgi Maria Rosa +Di Luigi Maio +Di Maio Marco +D'Inca' Federico +D'Ippolito Giuseppe +Di Iolanda Stasio +Di Manlio Stefano +Donno Leonardo +Donzelli Giovanni +Claudio Durigon +D'Uva Francesco +Epifani Ettore Guglielmo +Alessandra Ermellino +David Ermini +Fantinati Mattia +Faro Marialuisa +Fassina Stefano +Fassino Piero +Carlo Fatuzzo +Fedriga Massimiliano +Ferraioli Marzia +Ferraresi Vittorio +Cosimo Ferri Maria +Ferro Wanda +Emanuele Fiano +Fico Roberto +Carlo Fidanza +Fioramonti Lorenzo +Benedetta Fiorini +Fitzgerald Fucsia Nissoli +Flati Francesca +Fontana Gregorio +Fontana Ilaria +Fontana Lorenzo +Forciniti Francesco +Federico Fornaro +Foscolo Sara +Foti Tommaso +Fraccaro Riccardo +Fragomeli Gian Mario +Dario Franceschini +Frassinetti Paola +Frassini Rebecca +Flora Frate +Fratoianni Nicola +Fregolent Silvia +Frusone Luca +Fugatti Maurizio +Domenico Furgiuele +Alessandro Fusacchia +Chiara Gadda Maria +Chiara Gagnarli +Davide Galantino +Francesca Galizia +Filippo Gallinella +Gallo Luigi +Garavaglia Massimo +Davide Gariglio +Flavio Gastaldi +Gava Vannia +Gelmini Mariastella +Gemmato Marcello +Gentiloni Paolo Silveri +Andrea Giaccone +Giachetti Roberto +Antonello Giacomelli +Conny Giordano +Giancarlo Giorgetti +Andrea Giorgis +Giuliodori Paolo +Golinelli Guglielmo +Grande Marta +Chiara Gribaudo +Giulia Grillo +Grimaldi Nicola +Grimoldi Paolo +Carmela Grippa +Guerini Lorenzo +Guidesi Guido +Alberto Gusmeroli Luigi +Giancarlo Iezzi Igor +Antonella Incerti +Cristian Invernizzi +Iovino Luigi +Giuseppe L'Abbate +Labriola Vincenza +Lacarra Marco +Francesca La Marca +Lapia Mara +Giorgia Latini +Arianna Lazzarini +Lepri Stefano +Gianfranco Librandi +Caterina Licatini +Liuzzi Mirella +Alessandra Locatelli +Lolini Mario +Fausto Longo +Lorefice Marialucia +Beatrice Lorenzin +Gabriele Lorenzoni +Alberto Losacco +Lotti Luca +Giorgio Lovecchio +Lucaselli Ylenja +Elena Lucchini +Lupi Maurizio +Elena Maccanti +Anna Macina +Anna Madia Maria +Maggioni Marco +Magi Riccardo +Maglione Pasquale +Gavino Manca +Claudio Mancini +Andrea Mandelli +Franco Manzato +Manzo Teresa +Generoso Maraia +Luigi Marattin +Augusto Marchetti Riccardo +Felice Mariani +Marco Marin +Marrocco Patrizia +Martina Maurizio +Antonio Martino +Maria Marzana +Matteo Mauri +Alessandro Melicchio +Giorgia Meloni +Carmelo Miceli +Micillo Salvatore +Gennaro Migliore +Lorena Milanato +Antonino Minardo +Carmelo Massimo Misiti +Molinari Riccardo +Federico Mollicone +Molteni Nicola +Augusta Montaruli +Mattia Mor +Alessia Morani +Morassut Roberto +Moretto Sara +Mario Morgoni +Jacopo Morrone +Mugnai Stefano +Giorgio Mule' +Andrea Mura +Mura Romina +Elena Murelli +Muroni Rossella +Iolanda Nanni +Napoli Osvaldo +Martina Nardi +Navarra Pietro +Dalila Nesci +Nevi Raffaele +Luciano Nobili +Lisa Noja +Novelli Roberto +Giuseppina Occhionero +Occhiuto Roberto +Olgiati Riccardo +Matteo Orfini +Andrea Orlando +Anna Laura Orrico +Andrea Orsini +Marco Osnato +Carlo Padoan Pietro +Alessandro Pagano +Pagano Ubaldo +Paita Raffaella +Erasmo Palazzotto +Maria Pallini +Antonio Palmieri +Palmisano Valentina +Massimiliano Panizzut +Paolo Parentela +Parolo Ugo +Luca Pastorino +Cristina Patelli +Laura Maria Paxia +Claudio Pedrazzini +Pella Roberto +Nicola Pellicani +Antonio Pentangelo +Germano Guido Pettarin +Pezzopane Stefania +Carlo Piastra +Guglielmo Picchi +Flavia Nardelli Piccoli +Giuditta Pini +Pietro Pittalis +Catia Polidori +Polverini Renata +Claudia Porchietto +Prestigiacomo Stefania +Patrizia Prestipino +Emanuele Prisco +Nicola Provenza +Lia Procopio Quartapelle +Fausto Raciti +Raduzzi Raphael +Angela Raffa +Fabio Rampelli +Laura Ravetto +Alberto Ribolla +Riccardo Ricciardi +Elisabetta Ripani +Edoardo Rixi +Rizzetto Walter +Gianluca Rizzo +Marco Rizzone +Luca Nervo Rizzo +Cristian Romaniello +Andrea Romano +Nicolo' Paolo Romano +Ettore Rosato +Gianluca Rospi +Cristina Rossello +Andrea Rossi +Michela Rostan +Gianfranco Rotondi +Alessia Rotta +Daniela Ruffino +Andrea Ruggieri +Anna Francesca Ruggiero +Carla Ruocco +Paolo Russo +Eugenio Saitta +Angela Salafia +Barbara Saltamartini +Jole Santelli +Francesco Sapia +Carlo Sarro +Giulia Sarti +Rossano Sasso +Elvira Savino +Sandra Savino +Emanuele Scagliusi +Ivan Scalfarotto +Lucia Scanu +Angela Schiro' +Francesco Scoma +Enrica Segneri +Debora Serracchiani +Sgarbi Vittorio +Paolo Siani +Carlo Sibilia +Cosimo Sibilia +Giorgio Silli +Francesco Silvestri +Rachele Silvestri +Marco Silvestroni +Matilde Siracusano +Michele Sodano +Alessandro Sorte +Diego Sozzani +Edera Maria Spadoni +Maria Spena +Roberto Speranza +Arianna Spessotto +Luca Squeri +Simona Suriano +Luca Sut +Bruno Tabacci +Annaelsa Tartaglione +Antonio Tasso +Anna Rita Tateo +Guia Termini +Claudia Maria Terzi +Patrizia Terzoni +Paolo Tiramani +Gabriele Toccafondi +Angelo Tofalo +Maura Tomasi +Renzo Tondo +Gianni Tonelli +Paolo Trancassini +Raffaele Trano +Roberto Traversi +Elisa Tripodi +Maria Tripodi +Giorgio Trizzino +Francesca Troiano +Riccardo Tucci +Manuel Tuzi +Massimo Ungaro +Gianluca Vacca +Simone Valente +Andrea Vallascas +Carolina Maria Varchi +Adriano Varrica +Franco Vazio +Verini Walter +Giuseppina Versace +Giovanni Vianello +Stefano Vignaroli +Villani Virginia +Alessio Mattia Villarosa +Gianluca Vinci +Antonio Viscomi +Catello Vitiello +Elio Vito +Gloria Vizzini +Raffaele Volpi +Alessandro Zan +Federica Zanella +Pierantonio Zanettin +Davide Zanichelli +Diego Zardini +Edoardo Ziello +Eugenio Zoffili +Alberto Zolezzi +Björn Gunnarsson Leví +Albertína Elíasdóttir Friðbjörg +Andrés Ingi Jónsson +Arna Sigurbjörnsdóttir Áslaug +Daðason Einar Ásmundur +Bjarkey Gunnarsdóttir Olsen +Benediktsson Bjarni +Guðlaugur Þór Þórðarson +Bragi Gunnar Sveinsson +Halldóra Mogensen +Friðriksson Hanna Katrín +Gunnarsson Helgi Hrafn +Inga Sæland +Gunnarsson Jón +Jón Steindór Valdimarsson +Jón Ólafsson Þór +Jakobsdóttir Katrín +Júlíusson Kristján Þór +Alfreðsdóttir Lilja +Lilja Magnúsdóttir Rafney +Anna Líneik Sævarsdóttir +Magnússon Páll +G. Harðardóttir Oddný +Björn Kárason Óli +Björk Brynjólfsdóttir Rósa +Andersen Sigríður Á. +Davíð Gunnlaugsson Sigmundur +Ingi Jóhannsson Sigurður +Mccarthy Smári +Steinunn Árnadóttir Þóra +Sunna Ævarsdóttir Þórhildur +Svandís Svavarsdóttir +Gunnarsdóttir K. Þorgerður +Vilhjálmur Árnason +Willum Þór Þórsson +Bergþór Ólason +Brynjar Níelsson +Brjánsson Guðjón S. +Gylfadóttir Kolbrún R. Þórdís +Adams Gerry +Aylward Bobby +Bailey Maria +Barrett Sean +Barry Mick +Barrett Boyd Richard +Brady John +Breathnach Declan +Breen Pat +Brophy Colm +Broughan Tommy +Browne James +Bruton Richard +Buckley Pat +Burke Peter +Burton Joan +Byrne Catherine +Byrne Thomas +Cahill Jackie +Calleary Dara +Canney Sean +Cannon Ciaran +Carey Joe +Casey Pat +Cassells Shane +Chambers Lisa +Chambers Jack +Collins Niall +Collins Joan +Catherine Connolly +Coppinger Ruth +Corcoran Kennedy Marcella +Coveney Simon +Barry Cowen +Creed Michael +Crowe Sean +Cullinane David +Curran John +Clare Daly +Daly Jim +D'Arcy Michael W. +Deering Patrick +Doherty Pearse +Doherty Regina +Donnelly Stephen +Donohoe Paschal +Dooley Timmy +Andrew Doyle +Bernard Durkan +Damien English +Alan Farrell +Ferris Martin +Fitzgerald Frances +Fitzmaurice Michael +Fitzpatrick Peter +Charles Flanagan +Fleming Sean +Funchion Kathleen +Cope Gallagher Pat The +Brendan Griffin +Halligan John +Harris Simon +Harty Michael +Haughey Sean +Healy Seamus +Danny Healy Rae +Healy-Rae Michael +Heydon Martin +Brendan Howlin +Heather Humphreys +Kehoe Paul +Billy Kelleher +Alan Kelly +Enda Kenny +Kenny Martin +Gino Kenny +Kyne Seán +John Lahart +James Lawless +Lowry Michael +Macsharry Marc +Josepha Madigan +Catherine Martin +Martin Micheál +Charlie Mcconalogue +Lou Mary Mcdonald +Helen Mcentee +Mcgrath Michael +Mattie Mcgrath +Finian Mcgrath +John Mcguinness +Joe Mchugh +Mcloughlin Tony +Denise Mitchell +Mary Mitchell O'Connor +Boxer Kevin Moran +Aindrias Moynihan +Michael Moynihan +Imelda Munster +Eugene Murphy +Murphy Paul +Eoghan Murphy +Dara Murphy +Catherine Murphy +Margaret Murphy O'Mahony +Denis Naughten +Hildegarde Naughton +Neville Tom +Carol Nolan +Broin Eoin Á +Cuív Éamon Ó +Fearghaál Seán Á +Donnchadh Laoghaire Á +Aengus Snodaigh Á +Darragh O'Brien +Jonathan O'Brien +Jim O'Callaghan +Kate O'Connell +O'Dea Willie +O'Donovan Patrick +Fergus O'Dowd +Kevin O'Keeffe +Fiona O'Loughlin +Louise O'Reilly +Frank O'Rourke +Jan O'Sullivan +Maureen O'Sullivan +Penrose Willie +John Paul Phelan +Pringle Thomas +Maurice Quinlivan +Anne Rabbitte +Michael Ring +Noel Rock +Nathaniel Peter Ross Shane +Eamon Ryan +Brendan Ryan +Eamon Scanlon +Sean Sherlock +Ráisán Shortall +Brendan Smith +Brád Smith +Niamh Smyth +Brian Stanley +David Stanton +Peadar Táibán +Robert Troy +Leo Varadkar +Mick Wallace +Katherine Zappone +Dragasakis Ioannis +Balafas Ioannis +Ioannis Maniatis +Ioannis Vroutsis +Kikilias Vasileios +Tsirkas Vasileios +Theodora Tzakri +Ioannis Tsironis +Efkleidis Tsakalotos +Alexandros Triantafyllidis +Karaoglou Theodoros +Fotiou Theano +Giannakis Stergios +Stavros Theodorakis +Lykoudis Spyridon +Sofia Voultepsi +(Simos) Kedikoglou Symeon +(Sia) Anagnostopoulou Athanasia +Famellos Sokratis +Anastasiadis Savvas +Antonios Samaras +Marios Salmas +Panagiota Vrantza +(Panos) Panagiotis Skourletis +Leventis Vasilis +Konstantineas Petros +Paylos Polakis +Christos Pappas +(Panos) Kammenos Panagiotis +Kefalogianni Olga +Gerovasili Olga +Oikonomou Vasileios +Kerameus Niki +Kaklamanis Nikitas +Nikolaos Xydakis +Kotzias Nikolaos +- Dendias Georgios Nikolaos +Miltiadis Varvitsiotis +Meropi Tzoufi +Georgios Mavrotas +Bolaris Markos +Katsis Marios +Dimitrios Mardas +Georgiadis Marios +(Makis) Mavroudis Voridis +Grigorakos Leonidas +Konstantinos Skandalidis +Dimitrios Kremastinos +- Aikaterini Papakosta Sidiropoulou +Kouroumplis Panagiotis +Konstantinos Koukodimos +Konstantinos Skrekas +Kyriakos Mitsotakis +Bargiotas Konstantinos +Andreas Katsaniotis +Katsafados Konstantinos +Aikaterini Markou +Kalafatis Stavros +Karagkounis Konstantinos +Ioannis Sarakiotis +Ilias Panagiotaros +Ilias Kasidiaris +Achmet Ilchan +Fotilas Iason +Aivatidis Ioannis +Georgios Vagionas +Grigorios Psarianos +Georgios Koumoutsakos +Ioannis Kefalogiannis +Georgios Katrougkalos +Gkioulekas Konstantinos +Gennia Georgia +Gerasimos Giakoumatos +Dimaras Georgios +Akriotis Georgios +Georgios Stathakis +Ioannis Plakiotakis +Foteini Vaki +Fortsakis Theodoros +(Fofi) Foteini Genimata +(Eyi) Eyangelia Karakosta +Evangelos Venizelos +Eleni Zaroulia +Avlonitou Eleni +Elena Kountoura +Eleni Rapti +(Dora) Bakoyannis Theodora +Dimitrios Vettas +Dedes Ioannis +Christos Staikouras +Christos Dimas +Boukoros Christos +Alexios Tsipras +Arvanitidis Georgios +Arampatzi Foteini +Antonios Gregos +Anna Karamanli +Anna-Michelle Asimakopoulou +Andreas Xanthos +Amyras Georgios +- Adonis Georgiadis Spyridon +Andreas Loverdos +Elsa Faucillon +Fabien Roussel +Gabriel Serville +Bello Huguette +Dufrègne Jean-Paul +Jean-Paul Lecoq +Brotherson Moetai +Dharréville Pierre +Jumel Sébastien +Peu Stéphane +Adrien Quatennens +Alexis Corbière +Bastien Lachaud +Bénédicte Taurine +Caroline Fiat +Autain Clémentine +Danièle Obono +Coquerel Éric +François Ruffin +Jean-Hugues Ratenon +Jean-Luc Melenchon +Loïc Prud'Homme +Mathilde Panot +Larive Michel +Muriel Ressiguier +Rubin Sabine +Bernalicis Ugo +Amadou Aude +Aude Bono-Vandorme +Audrey Dufeu Schubert +Aurélien Taché +Aurore Bergé +Ballot Barbara Bessot +Barbara Pompili +Béatrice Piron +Belhaddad Belkhir +Bénédicte Peyrol +Benjamin Dirx +Benoit Potterie +Benoit Simian +Abba Bérangère +Bérangère Couillard +Bertrand Bouyx +Bertrand Sorre +Blandine Brocard +Bourguignon Brigitte +Brigitte Liso +Bonnell Bruno +Bruno Questel +Bruno Studer +Buon Tan +Bureau-Bonnard Carole +Carole Grandjean +Abadie Caroline +Caroline Janvier +Catherine Fabre +Catherine Kamowski +Catherine Osson +Cathy Racon-Bouzon +Cécile Muschotti +Cédric Roussel +Cédric Villani +Célia De Lavergne +Calvez Céline +Charlotte Lecocq +Christelle Dubos +Christine Hennion +Arend Christophe +Blanchet Christophe +Castaner Christophe +Christophe Di Pompeo +Christophe Euzet +Christophe Jerretie +Christophe Lejeune +Claire O'Petit +Claire Pitollat +Coralie Dubost +Corinne Vignon +Adam Damien +Damien Pichereau +Daniel Labaronne +Danièle Hérin +Brulebois Danielle +Bagarry Delphine +Denis Masséglia +Denis Sommer +Baichère Didier +Didier Gac Le +Didier Martin +Dimitri Houbron +Da Dominique Silva +David Dominique +Toutut-Picard Élisabeth +Cariou Émilie +Chalas Émilie +Alauzet Éric +Bothorel Éric +Girardin Éric +Poulliat Éric +Fabien Gouttefarde +Fabien Matras +Colboc Fabienne +Fabrice Le Vigoureux +Fadila Khattabi +Charvier Fannette +Fiona Lazaar +Boudié Florent +Bachelier Florian +André François +De François Rugy +François-Michel Lambert +Dumas Françoise +Barbier Frédéric +Descrozaille Frédéric +Dumas Frédérique +Frédérique Lardet +Frédérique Tuffnell +Attal Gabriel +Bohec Gaël Le +Gendre Gilles Le +Graziella Melchior +Besson-Moreau Grégory +Chiche Guillaume +Gouffier-Cha Guillaume +Guillaume Kasbarian +Guillaume Vuilletet +Gwendal Rouillard +Hélène Zannier +Berville Hervé +Hervé Pellois +Hubert Julien-Laferriere +Hugues Renson +Huguette Tiegna +Isabelle Muller-Quoy +Isabelle Rauch +Dubois Jacqueline +Jacqueline Maquet +Jacques Krabal +Jacques-André Maire +Jacques Marilossian +Jacques Savatier +François Jean Mbaye +Jean Terlier +Djebbari Jean-Baptiste +Jean-Baptiste Moreau +Jean-Bernard Sempastous +Colas-Roy Jean-Charles +Jean-Charles Larsonneur +Jean-Claude Leclabart +Cesarini Jean-François +Eliaou Jean-François +Jean-François Portarrieu +Bridey Jean-Jacques +Jean-Louis Touraine +Fugit Jean-Luc +Jean-Marc Zulesi +Fiévet Jean-Marie +Clément Jean-Michel +Jacques Jean-Michel +Jean-Michel Mis +Cazeneuve Jean-René +Joachim Son-Forget +Giraud Joël +Borowczyk Julien +Avia Laetitia +Laurence Maillart-Méhaignerie +Laurent Pietraszewski +Laurent Saint-Martin +Laurianne Rossi +Adam Lénaïck +Liliana Tanguy +Causse Lionel +Dombreval Loïc +Kervran Loïc +Ludovic Mendes +Manuel Valls +Delatte Marc +Guévenoux Marie +Lebec Marie +Marie Tamarelle-Verhaeghe +Magne Marie-Ange +Marie-Christine Verdier-Jouclas +Marie-Pierre Rixain +Marjolaine Meynier-Millefert +Leguille-Balloy Martine +Martine Wonner +Matthieu Orphelin +Delpon Michel +Lauzzana Michel +Crouzet Michèle +Michèle Peyron +Mickaël Nogal +Clapot Mireille +Mireille Robert +Michel Monica +Iborra Monique +Limon Monique +Mahjoubi Mounir +Laabid Mustapha +Hai Nadia +Moutchou Naïma +Natalia Pouzyreff +Démoulin Nicolas +Dubre-Chirat Nicole +Le Nicole Peih +Nicole Trisse +Givernet Olga +Gregoire Olivia +Damaisin Olivier +Gaillard Olivier +Olivier Serva +Olivier Véran +Pacôme Rupin +Bois Pascal +Boyer Pascale +Fontenel-Personne Pascale +Anato Patrice +Mirallès Patricia +Patrick Vignal +Molac Paul +Forteza Paula +Goulet Perrine +Chalumeau Philippe +Chassaing Philippe +Folliot Philippe +Huppé Philippe +Cabaré Pierre +Henriet Pierre +Person Pierre +Pierre-Alain Raphan +Anglade Pieyre-Alexandre +Ali Ramlati +Gauvain Raphaël +Gérard Raphaël +Rebeyrotte Rémy +Ferrand Richard +Lioger Richard +Kokouendo Rodrigue +Lescure Roland +Grau Romain +Sabine Thillaye +Houlié Sacha +Ahamada Saïd +Cazebonne Samantha +Marsaud Sandra +Josso Sandrine +Feur Le Sandrine +Mörch Sandrine +Cazenove Sébastien +Nadot Sébastien +Mauborgne Sereine +Sira Sylla +Krimi Sonia +Beaudouin-Hubiere Sophie +Errante Sophie +Panonacle Sophie +Guerini Stanislas +Dupont Stella +Buchou Stéphane +Mazars Stéphane +Stéphane Travert +Stéphane Trompille +Do Stéphanie +Kerbarh Stéphanie +Rist Stéphanie +Maillard Sylvain +Charrière Sylvie +Michels Thierry +Gassilloud Thomas +Mesnier Thomas +Rudigoz Thomas +Degois Typhanie +Faure-Muntian Valéria +Gomez-Bassac Valérie +Oppelt Valérie +Petit Valérie +Thomas Valérie +Hammerer Véronique +Riotton Véronique +Thiébaut Vincent +Batut Xavier +Paluszkiewicz Xavier +Roseren Xavier +Braun-Pivet Yaël +Haury Yannick +Kerlogot Yannick +Blein Yves +Daniel Yves +Park Zivka +Béatrice Descamps +Bertrand Pancher +Charles Courson De +Christophe Naegelen +Francis Vercamer +Franck Riester +Jean-Christophe Lagarde +Jean-Luc Warsmann +De La Laure Raudière +Lise Magnier +Maina Sage +Brenier Marine +Leroy Maurice +Habib Meyer +Michel Zumkeller +Nicole Sanquer +Christophe Paul +Gomès Philippe +Philippe Vigier +Morel-À-L'Huissier Pierre +Bournazel Pierre-Yves +Auconie Sophie +Benoit Thierry +Solère Thierry +Ledoux Vincent +Becot Favennec Yannick +Jégo Yves +Alain Ramadier +Annie Genevard +Arnaud Viala +Aurélien Pradié +Bérengère Poletti +Bernard Deflesselles +Bernard Perrut +Bernard Reynès +Brigitte Kuster +Charles De La Verpillière +Claude De Ganay +Claude Goasguen +Constance Grip Le +Abad Damien +Daniel Fasquelle +David Lorion +Didier Quentin +Cinieri Dino +Bonnivard Émilie +Emmanuel Maquet +Anthoine Emmanuelle +Ciotti Éric +Diard Éric +Pauget Éric +Straumann Éric +Woerth Éric +Di Fabien Filippo +Brun Fabrice +Franck Marlin +Cornut-Gentille François +Geneviève Levy +Cherpion Gérard +Carrez Gilles +Gilles Lurton +Guillaume Larrivé +Guillaume Peltier +Guy Teissier +Boucard Ian +Isabelle Valentin +Cattin Jacques +Grelier Jean-Carles +Jean-Charles Taugourdeau +Bouchet Jean-Claude +Ferrara Jean-Jacques +Gaultier Jean-Jacques +Jean-Luc Reitzer +Jean-Marie Sermier +Door Jean-Pierre +Jean-Pierre Vigier +Jérôme Nury +Aubert Julien +Dive Julien +Laurence Trastour-Isnart +Fur Le Marc +Dubois Marianne +Martial Saddier +Maxime Minot +Michel Vialay +Michèle Tabarot +Bassire Nathalie +Forissier Nicolas +Dassault Olivier +Marleix Olivier +Patrice Verchère +Hetzel Patrick +Gosselin Philippe +Cordier Pierre +Pierre Vatin +Dumont Pierre-Henri +Raphaël Schellenberger +Reda Robin +Huyghe Sébastien +Leclerc Sébastien +Stéphane Viry +Bazin Thibault +Bazin-Malgras Valérie +Beauvais Valérie +Boyer Valérie +Lacroute Valérie +Louwagie Véronique +Descoeur Vincent +Rolland Vincent +Duby-Muller Virginie +Breton Xavier +Aude Luquet +Brahim Hammouche +Bruno Duvergé +Bruno Fuchs +Bruno Joncour +Bruno Millienne +Cyrille Isaac-Sibille +Jacquier-Laforge Élodie +Balanant Erwan +Frédéric Petit +Bannier Géraldine +Florennes Isabelle +Bourlanges Jean-Louis +Jean-Luc Lagleize +Barrot Jean-Noël +Jean-Paul Mattei +Cubertafon Jean-Pierre +Jimmy Pahun +Josy Poueyto +Benin Justine +Laurence Vichnievsky +Garcia Laurent +Fesneau Marc +Deprez-Audebert Marguerite +De Marielle Sarnez +Mathiasin Max +Laqhila Mohamed +Essayan Nadia +Elimas Nathalie +Nicolas Turquois +Gallerneau Patricia +Mignola Patrick +Berta Philippe +Bolo Philippe +Latombe Philippe +Michel-Kleisbauer Philippe +Ramos Richard +El Haïry Sarah +Sylvain Waserman +Robert Thierry +Bru Vincent +Bilde Bruno +Azerot Bruno Nestor +Emmanuelle Ménard +Collard Gilbert +Jean Lassalle +Acquaviva Jean-Félix +Aliot Louis +Ludovic Pajot +Le Marine Pen +Castellani Michel +Dupont-Aignan Nicolas +Falorni Olivier +Colombani Paul-André +Chenu Sébastien +Pinel Sylvia +Boris Vallaud +Cécile Untermaier +Christian Hutin +Beaune Christine Pires +Bouillon Christophe +David Habib +Batho Delphine +Dominique Potier +Bareigts Ericka +François Pupponi +George Pau-Langevin +Biémouret Gisèle +Garot Guillaume +Hélène Vainqueur-Christophe +Hervé Saulignac +Bricout Jean-Louis +Joaquim Pueyo +Aviragnet Joël +Dumont Laurence +Carvounas Luc +Karamanli Marietta +Dussopt Olivier +Faure Olivier +Juanico Régis +Letchimy Serge +Foll Le Stéphane +Rabault Valérie +Adrien Taquet +Agnès Bodo Firmin Le +Agnès Thill +Aina Kuric +Alain Bruneel +Alain David +Alain Perea +Alain Tourret +Albane Gaillot +Alexandra Louis +Alexandra Ardisson Valetta +Alexandre Freschi +Alexandre Holroyd +Alice Thourot +Amal-Amélia Lakrafi +Amélie De Montchalin +André Chassaigne +André Villiers +Annaïg Le Meur +Anne Blanc +Anne Brugnera +Anne Genetet +Anne-Christine Lang +Anne-France Brunet +Anne-Laure Cattelot +Anne-Laurence Petel +Annick Girardin +Annie Chapelier +Annie Vidal +Anthony Cellier +Antoine Herth +Benjamin Griveaux +Arto Satonen +Sofia Vikman +Jyrki Kasvi +Kankaanniemi Toimi +Antti Kaikkonen +Heinonen Timo +Lehtomäki Paula +Haavisto Pekka +Annika Lapintie +Mikaela Nylander +Jutta Urpilainen +Arja Juvonen +Jussi Niinistö +Mäkelä Outi +Paatero Sirpa +Paula Risikko +Essayah Sari +Grahn-Laasonen Sanni +Anneli Kiljunen +Modig Silvia +Multala Sari +Blomqvist Thomas +Anne-Mari Virolainen +Anna-Maja Henriksson +Pia Viitanen +Aino-Kaisa Pekonen +Lenita Toivakka +Sinuhe Wallinheimo +Sari Sarkomaa +Filatov Tarja +Antti Lindtman +Eero Heinäluoma +Arhinmäki Paavo +Hassi Satu +Jaana Pelkonen +Niinistö Ville +Biaudet Eva +Huhtasaari Laura +Kiuru Krista +Elovaara Tiina +Feldt-Ranta Maarit +Kristiina Salonen +Kari Mika +Guzenina Maria +Huovinen Susanna +Tuppurainen Tytti +Haatainen Tuula +Orpo Petteri +Myller Riitta +Päivi Räsänen +Harri Jaskari +Alanko-Kahiluoto Outi +Emma Kari +Pekka Puska +Nasima Razmyar +Rydman Wille +Pertti Salolainen +Sampo Terho +Pilvi Torsti +Antero Vartia +Juhana Vartiainen +Ozan Yanar +Adlercreutz Anders +Anne Berner +Elo Simon +Carl Haglund +Harakka Timo +Harkimo Harry +Johanna Karimäki +Antero Laukkanen +Lauslahti Sanna +Elina Lepomäki +Leena Meri +Kai Mykkänen +Mika Niikko +Antti Rinne +Ruoho Veera +Joona Räsänen +Jani Toivola +Kari Uotila +Matti Vanhanen +Eerikki Viljanen +Ala-Nissilä Olavi +Andersson Li +Eeva-Johanna Eloranta +Ilkka Kanerva +Ilkka Kantola +Esko Kiviranta +Annika Saarikko +Saara-Sofia Sirén +Tavio Ville +Stefan Wallin +Ari Jalonen +Jaana Laitinen-Pesola +Jari Myllykoski +Anttila Sirkka-Liisa +Jokinen Kalle +Lehto Rami +Anne Louhelainen +Juha Rehula +Skinnari Ville +Martti Talja +Alatalo Mikko +Hakanen Pertti +Kiuru Pauli +Anna Kontula +Marin Sanna +Ilmari Nurminen +Olli-Poika Parviainen +Arto Pirttilahti +Sami Savio +Sari Tanus +Antti Häkkänen +Heli Järvinen +Jukka Kopra +Hanna Kosonen +Kymäläinen Suna +Jari Leppä +Jari Lindström +Jani Mäkelä +Markku Pakkanen +Satu Taavitsainen +Kimmo Tiilikainen +Ari Torniainen +Kaj Turunen +Hannakaisa Heikkinen +Elsi Katainen +Kari Kulmala +Kääriäinen Seppo +Krista Mikkonen +Merja Mäkisalo-Ropponen +Raassina Sari +Markku Rossi +Anu Vehviläinen +Koski Susanna +Antti Kurvinen +Lintilä Mika +Mats Nylund +Puumala Tuomo +Mikko Savola +Joakim Strand +Maria Tolppanen +Peter Östman +Aalto Touko +Honkonen Petri +Ihalainen Lauri +Anne Kalmari +Aila Paloniemi +Mauri Pekkarinen +Halmeenpää Hanna +Hänninen Katja +Immonen Olli +Jarva Marisanna +Keränen Niilo +Korhonen Timo V. +Mattila Pirkko +Parviainen Ulla +Juha Pylväs +Hanna Sarkkinen +Juha Sipilä +Eero Suutari +Mari-Leena Talvitie +Tapani Tölli +Mirja Vehkaperä +Ville Vähämäki +Katri Kulmuni +Kärnä Mikko +Lohi Markus +Eeva-Maria Maijala +Markus Mustajärvi +Johanna Ojala-Niemelä +Matti Torvinen +Löfström Mats +Niinistö Sauli +Angela Vallina +Adina-Ioana Vălean +Agnieszka Kozlowska-Rajewicz +Alessia Maria Mosca +Alexander Graf Lambsdorff +Alyn Smith +Amjad Bashir +Ana Gomes +Anders Primdahl Vistisen +Anna Bildt Corazza Maria +Annie Schreijer-Pierik +Anthea Mcintyre +Arne Gericke +Arne Lietz +Axel Voss +Basterrechea Beatriz Becerra +Benedek Javor +Biljana Borzan +Birgit Sippel +Andrzej Bogdan Zdrojewski +Brian Hayes +Cecile Kashetu Kyenge +Cecilia Wikstrom +Aguilera Clara Eugenia Garcia +Clare Moody +Claude Moraes +Cristian Dan Preda +Adam Czeslaw Siekierski +Daciana Octavia Sarbu +Glenis Willmott +Caspary Daniel +Danuta Hübner Maria +Bannerman Campbell David +Casa David +Coburn David +David Martin +David Mcallister +Derek Vaughan +Dimitrios Papadimoulis +Eider Gardiazabal Rubial +Elissavet Vozemberg-Vrionidi +Enrico Gasbarra +Calvet Chambon Enrique +Esteban Gonzalez Pons +Estefania Martinez Torres +Eva Maydell +Fabio Masi Valeriano +Castaldo Fabio Massimo +Federley Fredrick +Gabriel Mato +Gabriele Zimmer +Georgios Kyrtsos +Gerben-Jan Gerbrandy +Gesine Meissner +Bettini Goffredo Maria +Hans-Olaf Henkel +Helga Trupel +Herbert Reul +Hudghton Ian +Grassle Ingeborg +Fernandez Inmaculada Rodriguez-Pinero +Garcia Iratxe Perez +Ivan Stefanec +Barandica Bilbao Izaskun +Jerome Lavrilleux +Carver James +James Nicholson +Jaromir Stetina +Couso Javier Permuy +Jean Lambert +Evans Jill +Jill Seymour +Baalen Cornelis Johannes Van +Arnott Jonathan +Blanco Jose Lopez +Fernandes Jose Manuel +Josep-Maria Terricabras +Abaunz Josu Juaristi +Aguilar Fernando Juan López +Julia Reid +Julie Ward +Kaja Kallas +Kay Swinburne +Keith Taylor +Buchner Klaus +Lambert Nistelrooij Van +Christoforou Lefteris +Liadh Ni Riada +De Geringer Joanna Lidia Oedenberg +Linda Mcavan +Caldentey Lola Sanchez +Boylan Lynn +Maite Pagazaurtundua Ruiz +Barbat Gimenez Maria Teresa +Arena Maria +Lidia Maria Rodriguez Senra +Marian-Jean Marinescu +Arnautu Marie-Christine +Marlene Mizzi +Anderson Martina +Carthy Matt +Cramer Michael +Dalli Miriam +Miroslav Poche +Momchil Nekov +Benova Flasikova Monika +Helveg Morten Petersen +Gill Neena +Childers Nessa +Deva Nirj +Bermejo Lopez Paloma +Brannen Paul +Liese Peter +Austrevicius Petras +Ayuso Pilar +Grafin Hohenstein Roza Thun Und Von +Dati Rachida +Atondo Jauregui Ramon +Balcells I Ramon Tremosa +Renate Weber +Ashworth Richard +Metsola Roberta +Romana Tomc +Karim Sajjad +Domenico Pogliese Salvatore +Ayxela Fisas Santiago +Kelly Sean +Dance Seb +Cofferati Gaetano Sergio +Gutiérrez Prieto Sergio +Mureşan Siegfried +Cabezon Ruiz Soledad +Moisa Sorin +Eck Stefan +Steven Woolfe +Kaufmann Sylvia-Yvonne +Deutsch Tamas +Dumitru Stolojan Theodor +Griffin Theresa +Szanyi Tibor +Aker Tim +Piotr Poreba Tomasz +Kuhn Werner +Camp De Van Wim +Benito Xabier Ziluaga +Krasnodebski Zdzislaw +Flanagan Luke Ming +Franck Proust +Gyorgy Schopflin +Maria Spyraki +Matthijs Miltenburg Van +Barbara Kappel +Csaba Sogor +Doru-Claudian Frunzulica +Elzbieta Katarzyna Lukacijewska +Evelyne Gebhardt +Godelieve Quisthoudt-Rowohl +Gyorgy Holvenyi +Iskra Mihaylova +Jana Zitnanska +Ferreira Joao +Kosma Zlotowski +Andrikiene Laima Liucija +Dos Manuel Santos +Bizzotto Mara +Miguel Viegas +Mihai Turcanu +Hookem Mike +Melo Nuno +Ricardo Santos Serrao +Iwaszkiewicz Jaroslaw Robert +Albert Dess +Alex Mayer +Alojz Peterle +Andor Deli +Andrejs Mamikins +Angel Dzhambazki +Angelo Ciocca +Antonio E Marinho Pinto +Antonio López-Istúriz White +Arndt Kohn +Barbara Matera +Beata Gosiewska +Branislav Skripek +Catalin Ivan Sorin +Bonnefoy Christine D'Allonnes Revault +Aguiar Cláudia De Monteiro +Claudia Tapardel +Ciprian Claudiu Tanasescu +Cora Nieuwenhuizen Van +Czeslaw Hoc +Diane Dodds +Charanzová Dita +Dubravka Suica +Eleftherios Synadinos +Eleni Theocharous +Elisabeth Morin-Chartier +Evzen Tosenovsky +Fernando Ruas +Florent Marcellesi +Epitideios Georgios +Giorgos Grammatikakis +Helmut Scholz +Bayet Hugues +Iuliu Winkler +Ivana Maletic +Jakob Von Weizsacker +Collins Jane +Joao Lopes Pimenta +Bergeron Joelle +John Procter +Jordi Sole +Faria Inacio Jose +Halla-Aho Jussi +Graswander-Hainz Karoline +Kazimierz Michal Ujazdowski +Kostadinka Kuneva +Chrysogonos Kostas +Hetman Krzysztof +Fountoulis Lampros +Agea Laura +Laurentiu Rebega +Liliana Rodrigues +Louis Michel +Ludek Niedermayer +Delvaux Mady +Kefalogiannis Manolis +Marek Plura +Margot Parker +Joao Maria Rodrigues +Boutonnet Marie-Christine +Marie-Christine Vergiat +Lauristin Marju +Dlabajová Martina +Massimiliano Salini +Marusik Michal +Michaela Sojdrova +Kyrkos Miltiadis +D'Ornano Mireille +Cato Molly Scott +Lokkegaard Morten +Barekov Nikolay +Marias Notis +Csaky Pal +Arimont Pascal +Kouroumbashev Peter +Castillo Del Pilar Vera +Pirkko Ruohonen-Lerner +Luis Ramon Siso Valcarcel +Manescu Nicole Ramona +D’Amato Rosa +Ribeiro Sofia +Sakorafa Sofia +'T In Sophia Veld +Hristov Malinov Svetoslav +Meszerics Tamas +Mann Thomas +Tiemo Wolken +Mazuronis Valentinas +Bostinaru Victor +Toom Yana +Kósa Ádám +Adam Szejnfeld +Agnes Jongerius +Alain Cadec +Alain Lamassoure +Alberto Cirio +Aldo Patriciello +Alessandra Mussolini +Alfred Sant +Andi Cristea +Andrea Cozzolino +Andreas Schwab +Andrey Kovatchev +Andrey Novakov +Andrzej Grzyb +Angelique Delahaye +Angelika Mlinar +Angelika Niebler +Anja Hazekamp +Anna Hedh +Anne Sander +Anne-Marie Mineur +Anneleen Bossuyt Van +Anneli Jaatteenmaki +Antanas Guoga +Antonio Tajani +Arnaud Danjean +Ashley Fox +Aymeric Chauprade +Barbara Kudrycka +Barbara Lochbihler +Bart Staes +Bas Belder +Bas Eickhout +Beatrix Storch Von +Bendt Bendtsen +Bernard Monot +Bernd Kolmel +Bernd Lange +Bernd Lucke +Bill Etheridge +Bodil Valero +Bogusław Liberadzki +Boris Zala +Benifei Brando +Brice Hortefeux +Bruno Gollnisch +Balz Burkhard +Carlos Coelho +Carlos Iturgaiz +Carlos Zorrinho +Carolina Punset +Caterina Chinnici +Bearder Catherine +Catherine Stihler +Charles Goerens +Charles Tannock +Christel Schaldemose +Christofer Fjellner +Claude Rolin +Claude Turmes +Claudia Schmidt +Constanze Krehl +Cornelia Ernst +Curzio Maltese +Damiano Zoffoli +Buda Daniel +Dalton Daniel +Daniel Hannan +Aiuto Daniela +Daniele Viotti +Danuta Jazlowiecka +Dario Tamburrano +Dariusz Rosati +Borrelli David +Davor Skrlec +Clune Deirdre +Demetris Papadakis +De Dennis Jong +Diane James +Bilde Dominique +Dominique Martin +Dominique Riquet +Edouard Ferrand +Edouard Martin +Eduard Kukan +Elena Gentile +Elena Valenciano +Eleonora Evi +Eleonora Forenza +Elisabeth Kostinger +Elisabetta Gardini +Elly Schlein +Brok Elmar +Emil Radev +Emilian Pavel +Emma Mcclarkin +Emmanuel Maurel +Andrieu Eric +Ernest Urtasun +De Esther Lange +Eugen Freund +Eva Joly +Eva Kaili +Evelyn Regner +Flavio Zanonato +Florian Philippot +Frederique Ries +Francoise Grossetete +Bogovič Franc +Bogovic Franc +Francesc Gambus +Franz Obermayr +Fulvio Martusciello +Deprez Gerard +Georg Mayer +Batten Gerard +Annemans Gerolf +Gianni Pittella +Gilles Lebreton +Gilles Pargneaux +Giovanni La Via +Giulia Moi +Balas Guillaume +Gunnar Hokmark +Guy Verhofstadt +Hannu Takkula +Harald Vilimsky +Hautala Heidi +Helga Stevens +Henna Virkkunen +Dorfmann Herbert +Hilde Vautmans +Corrao Ignazio +Igor Soltes +Ilhan Kyuchyuk +Ayala Ines Sender +Indrek Tarand +Inese Vaidere +Adinolfi Isabella +De Isabella Monte +Isabelle Thomas +Ertug Ismail +Istvan Ujhelyi +Ivan Jakovcic +Belet Ivo +Dohrmann Jorn +Jozsef Nagy +Jacek Saryusz-Wolski +Foster Jacqueline +Jadwiga Wisniewska +Dalunde Jakop +Huitema Jan +Jan Olbrycht +Albrecht Jan Philipp +Jan Zahradil +Atkinson Janice +Janusz Korwin-Mikke +Janusz Lewandowski +Jaromir Kohlicek +Jaroslaw Walesa +Jasenko Selimovic +Javi López +Arthuis Jean +Jalkh Jean-Francois +Cavada Jean-Marie +Jean-Marie Le Pen +Denanot Jean-Paul +Geier Jens +Jens Nilsson +Jens Rohde +Jeppe Kofod +Jeroen Lenaers +Buzek Jerzy +Jiri Pospisil +Jo Leinen +Joelle Melin +Joachim Starbatty +Fernandez Jonas +Bove Jose +Josef Weidenholzer +Jozo Rados +Jude Kirton-Darling +Judith Sargentini +Julia Reda +Girling Julie +Jutta Steinruck +Guteland Jytte +Delli Karima +Kateřina Konečná +Brempt Kathleen Van +Kati Piri +Kerstin Westphal +Fleckenstein Knut +Karins Krisjanis +Comi Lara +Ferrara Laura +Lieve Wierinck +Jaakonsaari Liisa +Engstrom Linnea +Cesa Lorenzo +Anderson Lucy +Luigi Morgano +Mairead Mcguinness +Bjork Malin +Manfred Weber +Joulaud Marc +Marc Tarabella +De Graaff Marcel +Affronte Marco +Marco Valli +Marco Zanni +Marco Zullo +Marcus Pretzell +Jurek Marek +Auken Margrete +Grapini Maria +Heubuch Maria +Harkin Marian +Marietje Schaake +Marijana Petir +Albiol Guzman Marina +Marisa Matias +Marita Ulvskog +Gabriel Mariya +Demesmaeker Mark +Ferber Markus +Markus Pieper +Hausling Martin +Martin Sonneborn +Martina Michels +Martina Werner +Honeyball Mary +Massimo Paolucci +Matteo Salvini +Maurice Ponga +Andersson Max +Bresso Mercedes +Kyllonen Merja +Alliot-Marie Michele +Michele Rivasi +Boni Michal +Michael Theurer +Dantin Michel +Mba Michel Reimon +Giuffrida Michela +Crespo Miguel Urban +Milan Zver +Diaconu Mircea +Mikolasik Miroslav +Macovei Monica +Hohlmeier Monika +Monika Smolkova +Monika Vana +Messerschmidt Morten +Mylene Troszczynski +Morano Nadine +Griesbeck Nathalie +Gill Nathan +Neoklis Sylikiotis +Caputo Nicola +Danti Nicola +Bay Nicolas +Farage Nigel +Androulakis Nikos +Nils Torvalds +Olaf Stuger +Christensen Ole +Olga Sehnalova +Ludvigsson Olle +Karas Othmar +Niedermuller Peter +Paavo Vayrynen +Castro De Paolo +Durand Pascal +Patricija Sulin +Hyaric Le Patrick +O’Flynn Patrick +Patrizia Toia +Nuttall Paul +Paul Tang +Pavel Poc +Pavel Svoboda +Pavel Telicka +Beres Pervenche +Jahr Peter +Peter Simon +Dalen Peter Van +Jezek Petr +Mach Petr +Petri Sarvamaa +Juvin Philippe +Lamberts Philippe +Loiseau Philippe +Antonio Panzeri Pier +Pedicini Piernicola +Picierno Pina +Fitto Raffaele +Harms Rebecca +Butikofer Reinhard +Remo Sernagiotto +Briano Renata +Renato Soru +Muselier Renaud +Corbett Richard +Richard Sulik +Kari Rina Ronja +Gualtieri Roberto +Roberts Zīle +Helmer Roger +Ruza Tomasic +Czarnecki Ryszard +Sabine Verheyen +Cicu Salvatore +Loones Sander +Kalniete Sandra +Sergei Stanishev +Simon Sion +Costa Silvia +Bonafe Simona +Pietikäinen Sirpa +Keller Ska +Montel Sophie +Post Soraya +Polcak Stanislav +Briois Steeve +Maullu Stefano +Kouloglou Stelios +Giegold Sven +Schulze Sven +Kamall Syed +Goddyn Sylvie +Guillaume Sylvie +Hadjigeorgiou Takis +Gonzalez Penas Tania +Fajon Tanja +Tatjana Ždanoka +Reintke Terry +Handel Thomas +Beghin Tiziana +Saifi Tokia +Tom Vandenkendelaere +Tomas Zdechovsky +Picula Tonino +Traian Ungureanu +Bullmann Udo +Udo Voigt +Lunacek Ulrike +Muller Ulrike +Rodust Ulrike +Trebesius Ulrike +Paet Urmas +Negrescu Victor +Peillon Vincent +Roziere Virginie +Langen Werner +Jadot Yannick +Omarjee Younous +Kuźmiuk Zbigniew +Andrés Irene Rivera +Raimundo Viejo Viñas +González María Veracruz +Álvarez Álvarez Ángeles +José Luis Meco Ábalos +Adriana Fernández Lastra +Alberto Espinosa Garzón +Antonio González Terol +Aina Sáez Vidal +Melero Sánchez Tania +Aitor Bravo Esteban +Alberto Rodríguez Rodríguez +Albert Díaz Rivera +Alberto Celia Pérez +Alconchel Gonzaga Miriam +Adán Alfonso Candón +Alicia Pérez Sánchez-Camacho +Alberto Montero Soler +Ana Botella Gómez María +Ana Belén Blanco Vázquez +Ana Díaz Madrazo María +Ana Marcello Santos +Ana María Spadea Surra +Ana Belén Berbel Terrón +Ana Expósito María Zurita +González Luis Muñoz Ángel +Antonio Hurtado Zurera +Antonio Lombán María Ramón Trevín +Antoni Postius Terrado +Calvache Reynés Águeda +Auxiliadora Chulián Honorato María +Avelino Barrionuevo De Gener +Belén Hoyo Juliá +Arriba Bienvenido De Sánchez +Baena Bravo Juan +Capdevila Esteve I Joan +Campuzano Canadés Carles I +Carlos García Rojas +Carmen Pérez Valido +Carmen Cuello Pérez Rocío +Carolina España Reina +Ascensión Carreño Fernández María +Fresquet Marta Sorlí +Armendáriz Carlos Casimiro Salvador +Arce Celso Delgado Luis +César Luena López +Barber Chiquillo José María +Cruz De La Marta María Rivera +José Manuel Pérez Villegas +Carmen Lacoba Navarro +Cristóbal Montoro Ricardo Romero +Carmelo Hernández Romero +Fernando Fernández-Rodríguez Navarro +Cañamero Diego Valle +Clemente Diego Giménez +Diego Lombilla Movellán +Dolors Montserrat Montserrat +David Pariente Serrada +Eduardo Fernández García +Eduardo Javier Maura Zorita +De Elena Encarnación Faba La +Eloy Lamata Suárez +Elvira Ramón Utrabo +Begoña Moreno Tundidor Victoria +Del Emilio Río Sanz +Eduardo Itoiz Santos +Capella Ester Farré I +Camarero Esther Peña +Eva García Sempere +Antonio García Mira Ricardo +Alférez Felipe Jesús Sicilia +Félix Palleiro Álvarez +Alonso Cantorné Félix +Barandiarán Fernando Maura +Arisqueta Francisco Igea +De Díaz Francisco La Torre +Gabriel Romero Rufián +Carlos Girauta Juan Vidal +Elizo Gloria María Serrano +Anaya Guillermo Mariscal +Gonzalo Guarné Palacín +Cámara Gregorio Villar +Antonio Couselo Guillermo Meijón +Bento Carmen Del Hernández María +Alberto Bono Herrero José +Errejón Galván Íñigo +Candela Ignasi Serna +Alli Jesús Martínez Íñigo +García Isabel Rodríguez +Ignacio Sancho Urquizu +Javier Serna Sánchez +Alonso José Zaragoza +Antonio Delgado Juan Ramos +De Eduardo Jaime Olano Vela +Andrés José Mora Torres +Jaume Matas Moya +Antón Cacho Javier +Aranzábal Javier Maroto +Carracedo David José Verde +Díaz Fernández Jesús María +Ayllón José Luis Manso +Arca Joan Mena +Coma I Joan Tardà +Albaladejo Joaquín Martínez +Jordi Mas Roca +Costa I Jordi Xuclà +Díaz Fernández Jorge +Bail Jorge Luis +González José Luis Martínez +Camacho José Miguel Sánchez +García Hernández José Ramón +Juan Pedro Suárez Yllanes +Carbonell I Joan Ruiz +Duch I Jordi Salvador +Jesús Postigo Quintana +Jiménez Juan Tortosa +Gordo Juan Luis Pérez +Del Ibáñez Juan Manuel Olmo +Aras Juan Pérez Vicente +Julián López Milla +Antonio De Garmendia Juan López Uralde +Bosó José Marí Vicente +Iribarren Javier José Lasarte +Buldó Ciuró I Lourdes +Carlos García Luis Sahuquillo +Antonio Gutiérrez Limones +Dolores Marcos María Moyano +Cascales Loreto Martínez +García Luis Miguel Salvador +Luz Martínez María Seijo +Aurora Flórez María Rodríguez +Bustamante Martín Miguel Ángel +Díaz Heredia Miguel Ángel +Balmaseda Cotelo Mar +Balsera Gómez Marcial +Estañol Lamuà Marc +María Tejada Torres +Eugenia María Rodríguez Romero +Camps Marta Sibina +Llaguno Marta Martín +Fernando Martínez-Maíllo Toribio +Mayoral Perales Rafael +Cospedal De Dolores García María +Conillas I María Mercè Perea +Gutiérrez Miguel Vivas Ángel +Garzón Micaela Navarro +Diéguez Miguel Viso Ángel +Garaulet Miguel Rodríguez Ángel +Gómez Miguel Vila +Legarda Mikel Uriarte +Jesús Jiménez María Serrano +Almaraz Jesús María Moro +Expósito Marcelo Prieto +Hernández Melisa Rodríguez +Julià Julià María Sandra +Amor Ignacio José Sánchez +Alba Goveli Miriam Nayua +Galeano Gracia Óscar +Clavell López Óscar +Gamazo Micó Óscar +Iglesias Pablo Turrión +Blanco Casado Pablo +Martínez Rodríguez Ángela +Pascual Peña Sergio +Patricia Reyes Rivera +Amador Bustinduy Pablo +Acedo Pedro Penco +Iturbe Pedro Quevedo +García Pedro Saura +Joan Pere Pons Sampietro +Cancela Pilar Rodríguez +Antonio Pradas Torres +Antonio Fraile Hernando Rafael +Catalá Polo Rafael +López Merino Rafael +Artemi Lombarte Rallo +Alonso Hernández Raquel +Cortés Lastra Ricardo +Blanco Ricardo Tarno +García Gómez Rodrigo +Noguera Pilar Rojo +Del Mar María Rominguera Salazar +Martínez María Rodríguez Rosa +María Romero Rosa Sánchez +Iglesias Ricardo Sixto +García Javier Ruano +Areste Isabel María Salud +Freire Ramírez Saúl +Campo Del Estaún Sergio +García González Segundo +I Miquel Sergi Valentí +Heredia Martín Silvia +Castañón Fernández Sofía +Farré Fidalgo Sònia +Ferrer Sonia Tesoro +Antón De María Santamaría Soraya Sáenz +María Ramos Rodríguez Soraya +Jordán Sumelzo Susana +Ares López Susana +Ochaíta Silvia Valmaña +María Raya Rodríguez Tamara +Martínez Saiz Teófila +I Jordà Roura Teresa +Palmer Teresa Tous +Díaz Fole Javier Tomás +Antonio Cantó Del García Moral +Antonio Monés Roldán +García Guijarro Txema +Gardeñes Josep Vendrell +Noelia Ruíz-Herrera Vera +Oliver Ten Vicente +Domènech Francesc Sampere Xavier +Ciuró Eritja Francesc Xavier +Díaz Pérez Yolanda +Cantera Castro De Zaida +Ignacio Juan Zoido Álvarez +Brey Mariano Rajoy +Egea García Teodoro +Rafael Simancas Simancas +Lars Løkke Rasmussen +Pind Søren +Morten Østergaard +Auken Ida +Pernille Skipper +Jensen Kristian +Anders Samuelsen +Dyhr Olsen Pia +Heunicke Magnus +Lykketoft Mogens +Dan Jørgensen +Ammitzbøll-Bille Emil Simon +Pape Poulsen Søren +Ellen Nørby Trane +Lidegaard Martin +Pernille Rosenkrantz-Theil +Stampe Zenia +Mattias Tesfaye +Løhde Sophie +Brix Stine +Benny Engelbrecht +Astrid Krag +Karsten Lauritzen +Antorini Christine +Lotte Rod +Jensen Mogens +Bødskov Morten +Gjerskov Mette +Jesper Petersen +Brian Mikkelsen +B. Joachim Olsen +Engel-Schmidt Jakob +Bramsen Trine +Dragsted Pelle +Mai Mercado +Nikolaj Villumsen +Espersen Søren +Birk Ole Olesen +Prehn Rasmus +Merete Riisager +Bech Lisbeth Poulsen +Jarlov Rasmus +E. Jan Jørgensen +Horn Langhoff Rasmus +Maja Panduro +Jens Joel +Jelved Marianne +Khader Naser +Peter Skaarup +Bertel Haarder +Akdogan Yildiz +Blixt Liselott +Nordqvist Rasmus +Abildgaard Mette +Andreas Steenberg +Mette Reissmann +Hønge Karsten +Fock Josephine +Gade René +Jacob Jensen +Finn Sørensen +Christian Lars Lilleholt +Christian Poll +Lund Poulsen Troels +Jensen Thomas +Gjerding Maria Reumert +Holger K. Nielsen +Andersen Hans +Carl Holst +Ellemann Karen +Jacob Mark +Kollerup Simon +Eva Hansen Kjer +Laura Lindahl +Nicolai Wammen +Bock Mette +Carolina Magdalene Maier +Heitmann Jane +Dahl Henrik +Kofod Peter Poulsen +Dennis Flydtkjær +Danielsen Thomas +Kristian Lorentzen Pihl +Christian Juhl +Gejl Torsten +Jensen Lahn Leif +Christina Egelund +Marinus Morten +Krarup Marie +Anni Matthiesen +Lea Wermelin +Berth Kenneth Kristensen +Torp Trine +Eva Flyvholm +Hans Kristian Skibby +Julie Skovsby +Dybvad Kaare +Adsbøl Karina +Jakob Sølvhøj +Harpsøe Marlene +Gaardsted Karin +Christian Madsen Rabjerg +Adelsteen Pia +Christensen Villum +Matthisen Roger +Juel-Jensen Peter +Lund Rune +Bager Britt +Annette Lind +Kattrup May-Britt +Bech Lise +Bendixen Pernille +Ravn Troels +Hav Orla +Claus Hansen Kvist +Bonnesen Erling +Dencker Hjermind Mette +Dahl Henrik Jens Thulesen +Aaja Chemnitz Larsen +Eilersen Susanne +Jakobsen Jeppe +Bork Tilde +Brigitte Jerkel Klintskov +Christensen Erik +Aleqa Hammond +Pernille Schnoor +Leif Mikkelsen +Daniel Jakobsen Toft +Egge Rasmussen Søren +Christiansen Kim +Anders Johansson +J. Karen Klint +Jan Johansen +Dencker Mikkel +Dea Larsen Merete +Due Karina +Aslan Lars Rasmussen +Dorthe Ullemose +Sjúrður Skaale +Arge Magni +Bjarne Laustsen +Andersen Kirsten Normann +Bach Carsten +Brosbøl Kirsten +Dahl Kristian Thulesen +Elbæk Uffe +Elholm Louise Schack +Ellemann-Jensen Jakob +Frederiksen Mette +Gade Søren +Ane Halsboe-Jørgensen +Aastrup Jensen Michael +Henrik Larsen Sass +Larsen Malte +Flemming Mortensen Møller +Carsten Nielsen Sofie +Pedersen Schack Torsten +Sandbæk Ulla +Søndergaard Søren +Hummelgaard Peter Thomsen +Orla Østerby +Johannes Kahrs +Dieter Janecek +Bär Dorothee +Kelber Ulrich +Schummer Uwe +Konstantin Notz Von +Sebastian Steineke +Klingbeil Lars +Schipanski Tankred +Lazar Monika +Gabriele Hiller-Ohm +Esken Saskia +Künast Renate +Nouripour Omid +Movassat Niema +Pau Petra +Andreas Nick +Grosse-Brömer Michael +Eva Högl +Kaufmann Stefan +Kiesewetter Roderich +Göring-Eckardt Katrin +Altmaier Peter +Erwin Rüddel +Rößner Tabea +Lemke Steffi +Andrej Hunko +Bülow Marco +Dörner Katja +Rix Sönke +Petra Sitte +Patrick Schnieder +Deligöz Ekin +Beate Walter-Rosenheimer +Marco Wanderwitz +Griese Kerstin +Michael Roth +Hitschler Thomas +Britta Haßelmann +Frank Schwabe +Liebich Stefan +Klein-Schmeink Maria +Christian Hirte +Jarzombek Thomas +Gutting Olav +Beate Müller-Gemmeke +Johannes Steiniger +Heike Hänsel +Leidig Sabine +Ebner Harald +Annen Niels +Kotting-Uhl Sylvia +Kathrin Vogler +Jens Spahn +Martina Renner +Irene Mihalic +Achim Post +Jens Koeppen +Jürgen Trittin +Katja Kipping +Nissen Ulli +Lindner Tobias +Bas Bärbel +Florian Pronold +Christian Lange +Marlene Mortler +Heil Hubertus +Brantner Franziska +Hardt Jürgen +Birkwald Matthias W. +Nadine Schön +Dehm Diether +Buchholz Christine +Kai Wegner +Oppermann Thomas +Kühn Stephan +Gabi Weber +Bilger Steffen +Michael Thews +Hauer Matthias +Gröhe Hermann +Jutta Krellmann +Hartmann Sebastian +Sorge Tino +Carsten Schneider +Andreas Rimkus +Bartol Sören +Ute Vogt +Dennis Rohde +Anja Weisgerber +Cansel Kiziltepe +Kirsten Tackmann +Beermann Maik +Dröge Katharina +Harbarth Stephan +Andreae Kerstin +Kaczmarek Oliver +Gesine Lötzsch +Kruse Rüdiger +Kekeritz Uwe +Daniela Kolbe +Armin Schuster +Schwartze Stefan +Katrin Werner +Heil Mechthild +Frank Steffel +Hauptmann Mark +Hakverdi Metin +Müller Stefan +Martin Rosemann +Christian Kühn +Schulz Swen +Brehmer Heike +Frank Heinrich +Fuchtel Hans-Joachim +Kerstin Tack +Brinkhaus Ralph +Gebhart Thomas +Jan-Marco Luczak +Sahra Wagenknecht +Jan Metzler +Hilde Mattheis +Friedrich Ostendorff +Ingo Wellenreuther +Kurth Markus +Gabriele Katzmarek +Dieter Ernst Rossmann +Oellers Wilfried +Heider Matthias +Corinna Rüffer +Kühne Roy +Bärbel Kofler +Gastel Matthias +Gero Storjohann +Dagmar Schmidt +Andrea Lindholz +Klein Volkmar +Burkert Martin +Arno Klare +Behrens Manfred +Marcus Weinberg +Karsten Möring +Katja Leikert +Jana Schimke +Florian Post +Mahmut Özdemir +Günter Krings +Gabriela Heinrich +Rüthrich Susann +Beyer Peter +Florian Oßner +Pantel Sylvia +Lange Ulrich +Anette Kramme +Durz Hansjörg +Mittag Susanne +Anton Hofreiter +Der Leyen Ursula Von +Bareiß Thomas +Fritz Güntzler +Launert Silke +Andreas Lenz +Magwas Yvonne +Schäuble Wolfgang +Stefinger Wolfgang +Marian Wendt +Kai Whittaker +Annette Widmann-Mauz +Jens Zimmermann +Stefan Zierke +Dagmar Ziegler +Dirk Wiese +Martina Stamm-Fibich +Rita Schwarzelühr-Sutter +Nina Scheer +Johann Saathoff +Christian Petry +Bettina Müller +Detlef Müller +Klaus Mindrup +Josip Juratovic +Gustav Herzog +Barbara Hendricks +Held Marcus +Dirk Heidenblut +Hagl-Kehl Rita +Gerdes Michael +Felgentreu Fritz +Dittmar Sabine +Binding Lothar +Bartke Matthias +Barley Katarina +Hubertus Zdebel +Harald Weinberg +Müller Norbert +Lutze Thomas +Gerhard Schick +Cem Özdemir +Annalena Baerbock +Beck Volker +Halina Wawzyniak +Michael Peter Tauber +Erika Steinbach +Mutlu Özcan +Anna Kordula Schulz-Asche +Strengmann-Kuhn Wolfgang +Sven Volmering +Mechthild Rawert +Dagmar G. Wöhrl +Hartmut Koschyk +Gerold Reichenbach +Feist Thomas +(Lisa) Elisabeth Paus +Meiwald Peter +Boris Gehring Kai +Burkhard Karl Lischka +Krischer Michael Oliver +Fuchs Michael +Bärbel Höhn +Christina Schwarzer +Elke Ferner +Annette Groth +Engelmeier Michaela +Hinz Priska +Charles Huber M. +(Ulle) Schauws Ursula +Alexander Neu S. +Kristina Schröder +Brigitte Zypries +Da?Delen Sevim +Agnieszka Brugger +Diana Golze +Gohlke Nicole Stephanie +Heribert Hirte +Ferdinand Manuel Sarrazin +Brigitte Pothmer +Castellucci Lars +Braun Helge Reinhold +Gabriel Hartmut Sigmar +Gerhard Leutert Michael +Hartmann Michael +Gehrcke Wolfgang +Christina Kampmann +Florian Hahn Peter +Hans-Christian Ströbele +Albsteiger Katrin +Günther Meister Michael +Lemme Steffen-Claudio +Julia Maria Verlinden +Maisch Nicole +Rebmann Stefan +Caren Lay Nicole +Valerie Wilms +Behrens Herbert +Gregor Gysi +Christoph Strässer +Lietz Matthias +Arnold Rainer +Bettina Hornhues +Aken Jan Van +Andreas Franz Scheuer +Michael Ullrich Volker +Nina Warken +Diaby Karamba Nat. Rer. +Hans Nord Thomas +Jung Xaver +Binder Karin +Koenigs Tom +Aydan Özoğuz +Ernst Friedrich Klaus +Matthias Rainer Zimmer +Mißfelder Philipp +Priesmeier Wilhelm +Ernst Patrick Sensburg +Waltraud Wolff +Johannes Singhammer +Hermann Martin Rabanus +Beck Marieluise +Tobias Zech +Axel Fischer +Edgar Franke Konrad +David Johann Wadephul +Hein Rosemarie +Bernd C. Fabritius H. +Gisela Manderla +Karawanskij Susanna +Helmut Nowak +Annette Sawade +Bernd Siebert +Axel Troost +Jürgen Klimke +Gundelach Herlind +Ernstberger Petra +Franz Josef Jung +Pfeiffer Sibylle +Hiltrud Lotze +Eckhardt Rehberg +Ehrmann Siegmund +Frank Junge Michael +Franz Thönnes +Karl-Georg Wellmann +Norbert Spinrath +Andrea Wicklein +Egon Jüttner +Peter Weiß +Feiler Uwe +Michael Vietz +Fograscher Gabriele +Karl Lamers +Christian Freiherr Stetten Von +Peer Steinbrück +Edathy Sebastian +Agnes Alpers +Markus Tressel +Böhmer Maria +Eberl Iris +Eckenbach Jutta +Hoffmann Thorsten +Bettina Kudla +Lengsfeld Philipp +Ingbert Liebing +Mosblech Volker +Julia Obermeier +Ostermann Tim +Alexander Gamal Radwan +Annette Schavan +Heiko Schmelzle +Alexander Markus Uhl +Carsten Träger +Tiefensee Wolfgang +Elfi Scho-Antwerpes +Matthias Schmidt +Jeannine Pflugradt +Markus Paschke +Birgit Malecha-Nissen +Jost Reinhold +Christina Jantz-Herrmann +Ilgen Matthias +Hampel Ulrich +Groß Michael +Freese Ronald Ulrich +Christian Flisek +Daniela De Pol. Rer. Ridder +Coße Jürgen +Bätzing-Lichtenthäler Sabine +Jörn Wunderlich +Frank Tempel +Harald Petzold +(Ulla) Jelpke Ursula +Bartsch Dietmar Gerhard +Harald Terpe +Elisabeth Scharfenberg +Anja Hajduk Margarete +Henrichmann Marc +Pilsinger Stephan +Josephine Loulou Ortleb +Cotar Eleonora Joana +Ehrhorn Thomas +Felser Peter +Anton Friesen +Gottberg Von Wilhelm +Hartmann Verena +Hemmelgarn Theodor Udo +Herdt Waldemar +Höchst Nicole +Bruno Hollnagel +Huber Johannes +Fabian Jacobi +Jens Kestner +Jörn König +Kotré Steffen +Hans-Rüdiger Lucassen +Jens Maier +Münz Volker +Jan Nolte Ralf +Oehme Ulrich +Matthias Peterka Tobias +Paul Podolay Viktor +Johannes Reusch Roman +Seitz Thomas +Heiko Wildberg +Christian Friedrich Wirth +Ebbing Hartmut +Bernd Reuther +Bettina Stark-Watzinger +Brandt Michel +Birke Bull-Bischoff +Evrim Sommer +Markus Stefan Tressel +Ingrid Nestle +Bahr Ulrike +Carina Konrad +Andreas Steier +Kuffer Michael +Achim Kessler +Filiz Polat +Brunner Heinz Karl +Rouenhoff Stefan +Hellmich Wolfgang +Christoph Matschie +Angela Dorothea Merkel +C. Georg H. Hans Michelbach +Kamann Uwe +Frohnmaier Markus +Bernstiel Christoph +Linda Teuteberg +Ingmar Jung Ludwig +Bernd Riexinger +Cornelia Möhring +Sandra Weeser +Helge Lindh +Andreas Bleck +Gremmels Timon +Lothar Maier +Erwin Martin Renner +Daniela Wagner +Brandenburg Mario +Barrientos Krauss Simone +Alice Weidel +Andrew Ullmann +Christian Lindner +Albert Schinnenburg Wieland +Brandenburg Jens +Frank Sitta +Michael Schrodi +Holm Leif-Erik +Andreas Schwarz +Heiko Maas +Anke Domscheit-Berg +Florian Toncar +Kemmerich L. Thomas +Frank Pasemann +Marie-Agnes Strack-Zimmermann +Dietlind Tiemann +Curio Gottfried +Harald Weyel +Aumer Peter +Bayaz Danyal +Bause Margarete +Boehringer Peter +Stadler Svenja +Holtz Ottmar Von +Beer Gertrud Nicola +Gabelmann Sylvia +Hessel Katja +Gelbhaar Stefan +Daniela Kluckert +Luksic Oliver +Schweiger Torsten +Anna Christmann +Kemmer Ronja +Josef Oster +Falko Mohrs +Karl Lauterbach +Gottschalk Kay +Jan Korte +Christian Jung +Corinna Miazga +Ingrid Remmers +Alexander Hess Martin +Christoph Meyer +Axel Gehrke +Nils Schmid +Bystron Petr +Elisabeth Kaiser +Bayram Canan +Frieser Michael +Buschmann Marco +Faber Marcus +Herbst Torsten +Sattelberger Thomas +Elias Konstantin Kuhle +Badum Hildegard Lisa +Angelika Glöckner +Lechte Ulrich +Abercron Michael Von +Martin Reichardt +Nastic Zaklin +Berengar Elsner Gronow Von +Andreas Mrosek +Paul Ziemiak +Uwe Witt +Martin Schulz +Keuter Stefan +Ruppert Stefan +Stephan Thomae +Johannes Schraps +Bernhard Marc +Hermann Otto Solms +Lehmann Sven +Benjamin Strasser +Peter Stein +Dirk Spaniel +Enrico Komning +Katrin Staffler +Anita Schäfer +Elvan Korkmaz +Felix Schreiner +Brandner Stephan +Manfred Todtenhausen +Protschka Stephan +Breymaier Leni +Espendiller Michael +Haug Jochen +Carsten Müller +Alexander Eberhardt Gauland +Jimmy Schulz +Beeck Jens +Hacker Thomas +Hartwig Roland +Meiser Pascal +Helling-Plahr Katrin +Georg Link Michael +Friedrich Hans-Peter +Johannes Vogel +Fricke Otto +Aschenberg-Dugnus Christine +Sonja Steffen +Benning Sybille +Jongen Marc Stephan +Houben Reinhard +Grübel Markus +Anja Karliczek +Axel Knoerig +Daniela Ludwig +Norbert Röttgen +Silberhorn Thomas +Fechner Johannes +Grötsch Uli +Katja Mast +Michelle Müntefering +Schiefner Udo +Katja Keul +Kindler Sven-Christian +Biadacz Marc +Brehm Sebastian +Erndl Thomas +Feiler Uwe Wolfgang +Heilmann Thomas +Kartes Torbjörn +Andreas Gottfried Lämmel +Löbel Nikolas +Müller Sepp +Christoph Johannes Ploß +Alexander Throm +Dilcher Esther +Möller Siemtje +Manja Schüle +Jens Mathias Stein +Markus Töns +Braun Jürgen +Bühl Marcus +Büttner Matthias +Chrupalla Tino +Dietmar Friedhoff +Frömming Götz +Franziska Gminder +Harder-Kühnel Iris Mariana +Herrmann Klaus Lars +Hilse Karsten +Kleinwächter Norbert +Kraft Rainer +Mario Mieruch +Gerhard Hansjörg Müller +Münzenmaier Sebastian +Christoph Neumann +Jürgen Pohl +Schielke-Ziesing Ulrike +Robby Schlund +Jörg Schneider +Schulz Uwe +Johannes Martin Sichert +René Springer +Wiehle Wolfgang +Aggelidis Grigorios +Alt Renata +Beek In Olaf +Busen Karlheinz +Britta Dassler Katharina +Bijan Djir-Sarai +Christian Dürr +Daniel Föst +Herbrand Markus +Clemens Gero Hocker +Höferlin Manuel +Ihnen Ulla +Klinge Marcel +Köhler Lukas +Alexander Müller +Müller-Böhm Roman +Frank Müller-Rosentritt +Martin Neumann +Hagen Reinhold +Christian Sauter +Frank Schäffler +Matthias Seestern-Pauly +Judith Skudelny +Katja Rita Suding +Gerald Ullrich +Nicole Westig +Achelwilm Doris Maria +Akbulut Gökay +Beutin Gösta Lorenz +Cezanne Jörg +Brigitte Freihold +Höhn Matthias +Ali Amira Mohamed +Pellmann Sören +Angelo Perli Victor +Pflüger Tobias +Elisabeth Eva-Maria Schreiber +Friedrich Straetmanns +Jessica Tatti +Andreas Wagner +Erhard Grundl +Bettina Hoffmann +Kappert-Gonther Kirsten +Claudia Müller +Manuela Rottmann +Schmidt Stefan +Margit Stumpp +Johann N. Schneider-Ammann +Ada Marra +Adèle Goumaz Thorens +Adrian Amstutz +Andrea Gmür-Schönenberger +Alain Berset +Alice Glauser-Zufferey +Amaudruz Céline +Angelo Barrile +Andrea Caroni +Barbara Steinemann +Barbara Gysi +Barazzone Guillaume +Bastien Girod +Bea Heim +Beat Vonlanthen +Beat Flach +Benoît Genecand +Berberat Didier +Bernhard Guhl +Balthasar Glättli +Brand Heinz +Bühler Manfred +Carlo Sommaruga +Cédric Wermuth +Amarelle Cesla +Christian Lohr +Chantal Galladé +Christine Häsler +Christa Markwalder +Christian Imark +Christian Levrat +Béglé Claude +Claudia Friedl +Christian Lüscher +Christian Wasserfallen +Damian Müller +Daniel Jositsch +Buman De Dominique +Doris Fiala +Erich Ettlin +Elisabeth Schneider-Schneiter +Engler Stefan +Eric Nussbaumer +Erich Hess +Allemann Evi +Derder Fathi +Franz Grüter +Borloz Frédéric +Fabio Regazzi +Fricker Jonas +Gerhard Pfister +Géraldine Marchand-Balet +Graber Konrad +Hansjörg Knecht +Hans-Ueli Vogt +Hiltpold Hugues +Hans-Peter Portmann +Bigler Hans-Ulrich +Chevalley Isabelle +Glanzmann-Hunkeler Ida +Cassis Ignazio +Isabelle Moret +Jauslin Matthias Samuel +Badran Jacqueline +Christophe Jean Schwaab +Jean-François Rime +Grossen Jürg +Bertschy Kathrin +Kathy Riklin +Landolt Martin +Laurent Wehrli +Filippo Lombardi +Hess Lorenz +Lorenzo Quadri +Lukas Reimann +Luzi Stamm +Aebischer Matthias +Ingold Maja +Manuel Tornare +Dobler Marcel +Chiesa Marco +Marco Romano +Kiener Margret Nellen +Marianne Streiff-Feller +Bäumle Martin +Candinas Martin +Martina Munz +Mathias Reynard +Maximilian Reimann +Mattea Meyer +Buffat Michaël +Li Marti Min +Müller-Altermatt Stefan +Nantermod Philippe +Natalie Rickli +Masshardt Nadine +Nordmann Roger +Graf Maya +Thurnherr Walter +Français Olivier +Paul Rechsteiner +Gössi Petra +Hadorn Philipp +Bischof Pirmin +Quadranti Rosmarie +Comte Raphaël +Ana Rebecca Ruiz +Regula Rytz +Beat Rieder +Cramer Robert +Roberto Schmidt +Pantani Roberta +Köppel Roger +Noser Ruedi +Humbel Ruth +Sandra Sollberger +Schenker Silvia +Barbara Schmid-Federer +Daniela Schneeberger +Graf Priska Seiler +Arslan Sibel +Leutenegger Oberholzer Susanne +Brunner Toni +Ammann Thomas +Hardegger Thomas +Burkart Thierry +Aeschi Thomas +Burgherr Thomas +Angelina Moser Tiana +Guldimann Tim +Addor Jean-Luc +Giezendanner Ulrich +Carrard Piller Valérie +Herzog Verena +Amherd Viola +Liliane Maury Pasquier +Hösli Werner +Salzmann Werner +Buttet Yannick +Feri Yvonne +Nidegger Yves +Estermann Yvette +Claudio Zanetti +Roberto Zanetti +Adam Vaughan +(Hon.) Ahmed Hussen +Alain Rayes +Alaina Lockhart +Alexander Nuttall +Alexandra Mendès +Alexandre Boulerice +Ali Ehsassi +(Hon.) Alice Wong +Alistair Macgregor +Alupa Clarke +Amarjeet(Hon.) Sohi +(Hon.) Andrew Leslie +Andrew(Hon.) Scheer +Andy Fillmore +Angelo Iacono +Anita Vandenbeld +Anju Dhillon +Anne Minh-Thu Quach +Anthony Housefather +Anthony Rota +Arif Virani +Arnold Viersen +Ben Lobb +Bernadette Jordan +Bernard Généreux +Bev Shipley +Bill Blair +Bill Casey +(Hon.) Bill Morneau +Blaine Calkins +Blake Richards +Benzen Bob +Bob Bratina +Bob Saroya +Bob Zimmer +Borys Wrzesnewskyj +Brad Trost +Brenda Shanahan +Brian Masse +Brigitte Sansoucy +Bruce Stanton +Bryan May +Bergen Candice(Hon.) +Carla(Hon.) Qualtrough +Carol Hughes +Bennett Carolyn(Hon.) +Cathay Wagantall +Catherine(Hon.) Mckenna +Cathy Mcleod +Caesar-Chavannes Celina +Arya Chandra +Angus Charlie +Cheryl Gallant +Cheryl Hardcastle +Bittle Chris +Chris Warkentin +Christine Moore +Chrystia(Hon.) Freeland +Colin Fraser +Albas Dan +Kim Rudd +Dan Ruimy +Dan Vandal +Dane Lloyd +Blaikie Daniel +Darrell Samson +Darren Fisher +Darshan Kang Singh +Dave Mackenzie +Dave Kesteren Van +Christopherson David +Burgh David De Graham +David Lametti +David Mcguinty +David Sweet +David Tilson +David Yurdiga +Deborah Schulte +(Hon.) Denis Paradis +Diane(Hon.) Lebouthillier +Dominic(Hon.) Leblanc +Davies Don +Don Rusnak +Carrie Colin +Doug Eyolfson +Emmanuella Lambropoulos +Dreeshen Earl +(Hon.) Ed Fast +Dubourg Emmanuel +(Hon.) Erin O'Toole +Erin Weir +Eva Nassif +El-Khoury Fayçal +Filomena Tassi +Donnelly Fin +Francesco Sorbara +Drouin Francis +Francis Scarpaleggia +Choquette François +(Hon.) Champagne François-Philippe +Baylis Frank +Gabriel Ste-Marie +Gagan Sikand +Garnett Genuis +Anandasangaree Gary +Geng Tan +(Hon.) Geoff Regan +Georgina Jolibois +Deltell Gérard +Glen Motz +Brown Gordon +Gord Johns +Fergus Greg +Gudie Hutchings +Caron Guy +Guy Lauzon +Harjit S.(Hon.) Sajjan +Albrecht Harold +Hélène Laverdière +(Hon.) Deepak Obhrai +Maryann(Hon.) Mihychuk +(Hon.) Bardish Chagger +(Hon.) Fry Hedy +(Hon.) Duncan Kirsty +Bains Navdeep(Hon.) +(Hon.) Kent Peter +(Hon.) Hunter Tootoo +Iqra Khalid +Irene Mathyssen +James Maloney +Jamie Schmale +(Hon.) Jane Philpott +Jati Sidhu +Jean Rioux +Jean-Claude Poissant +(Hon.) Duclos Jean-Yves +Jennifer O'Connell +Jenny Kwan +(Hon.) Carr Jim +Eglinski Jim +(Hon.) Jody Wilson-Raybould +Joe Peschisolido +Godin Joël +Joël Lightbound +Aldag John +Brassard John +(Hon.) John Mckay +John Nater +John Oliver +Barlow John +Jonathan Wilkinson +Joyce Murray +(Hon.) A. Judy Sgro +Dabrusin Julie +Dzerowicz Julie +(Right Hon.) Justin Trudeau +Kamal Khera +Karen Ludwig +Karen Mccrimmon +Karen Vecchio +Gould Karina(Hon.) +Karine Trudel +Kate Young +(Hon.) K. Kellie Leitch +Kelly Mccauley +Hardie Ken +Ken Mcdonald +Bezan James +Kennedy Stewart +(Hon.) Hehr Kent +Diotte Kerry +Kevin Lamoureux +Kevin(Hon.) Sorenson +Kevin Waugh +Kyle Peterson +(Hon.) Bagnell Larry +Larry Maguire +Larry Miller +Lawrence(Hon.) Macaulay +Len Webber +Alleslev Leona +Duncan Linda +Lapointe Linda +(Hon.) Lisa Raitt +Lloyd Longfield +Berthold Luc +Luc Thériault +Jowhari Majid +Garneau Marc(Hon.) +Marc Miller +Marc Serré +Marco Mendicino +Bibeau Marie-Claude(Hon.) +Gill Marilène +Gladu Marilyn +Beaulieu Mario +Boutin-Sweet Marjolaine +(Hon.) Eyking Mark +Gerretsen Mark +Holland Mark +Mark Strahl +Mark Warawa +Martin Shields +Marwan Tabbara +Mary Ng +Maryam(Hon.) Monsef +Decourcey Matt +Jeneroux Matt +Dubé Matthew +Bernier Maxime(Hon.) +Arnold Mel +Joly Mélanie(Hon.) +(Hon.) Chong Michael +Cooper Michael +Levitt Michael +Mcleod Michael +Boudrias Michel +Michel Picard +Michelle(Hon.) Rempel +Bossio Mike +(Hon.) Lake Mike +Ginette(Hon.) Petitpas Taylor +Fortier Mona +Monique Pauzé +Finnigan Pat +Murray Rankin +Erskine-Smith Nathaniel +Cullen Nathan +Ellis Neil +Nick Whalen +Di Iorio Nicola +Ashton Niki +Alghabra Omar +Pablo(Hon.) Rodriguez +Damoff Pam +Goldsmith-Jones Pam +Kelly Pat +Hajdu Patty(Hon.) +Lefebvre Paul +Fonseca Peter +Fragiskatos Peter +Julian Peter +Peter Schiefke +(Hon.) Loan Peter Van +Mccoleman Phil +Breton Pierre +Nantel Pierre +Paul-Hus Pierre +(Hon.) Pierre Poilievre +Dusseault Pierre-Luc +Harder Rachael +Blaney Rachel +Grewal Raj +Raj Saini +Goodale Ralph(Hon.) +Ramesh Sangha +Ayoub Ramez +Garrison Randall +Randeep Sarai +Boissonnault Randy +Hoback Randy +Massé Rémi +Fortin Rhéal +Cannings Richard +Hébert Richard +(Hon.) Nicholson Rob +Oliphant Robert +Aubin Robert +Morrissey Robert +Robert Sopuck +Ouellette Robert-Falcon +Cuzner Rodger +Romeo Saganash +Liepert Ron +Mckinnon Ron +Ruby Sahota +Brosseau Ellen Ruth +Salma Zahid +(Hon.) Brison Scott +Duvall Scott +Reid Scott +Scott Simms +O'Regan Seamus(Hon.) +Casey Sean +Fraser Sean +Cormier Serge +Shannon Stubbs +Chen Shaun +Malcolmson Sheila +Benson Sheri +Romanado Sherry +Marcil Simon +Sidhu Sonia +Lauzon Stéphane +Kusie Stephanie +Fuhr Stephen +Blaney Steven(Hon.) +Mackinnon Steven +Dhaliwal Sukh +Spengemann Sven +Boucher Sylvie +Falk Ted +Beech Terry +Duguid Terry +Sheehan Terry +(Hon.) Nault Robert +Harvey T.J. +Doherty Todd +Kmiec Tom +Mulcair Thomas(Hon.) +(Hon.) Clement Tony +Ramsey Tracey +Badawey Vance +(Hon.) Easter Wayne +Long Wayne +Stetski Wayne +Amos William +Barsalou-Duval Xavier +Ratansi Yasmin +Robillard Yves +Jones Yvonne +Aboultaif Ziad +Allison Dean +Anderson David +Block Kelly +Elizabeth May +Quickenborne Van Vincent +Servais Verherstraeten +Chastel Olivier +Dallemagne Georges +Muylle Nathalie +Raf Terwingen +Stefaan Vercamer +Hees Marco Van +Dewinter Filip +Tim Vandenput +Carina Cauter Van +Bracke Siegfried +De Vriendt Wouter +Özen Özlem +Bogaert Hendrik +Annemie Turtelboom +Benoit Hellings +Daphné Dumery +Griet Smaers +Karin Temmerman +Daniel Senesael +Calvo Kristof +Ceysens Patricia +Lijnen Nele +Veli Yüksel +Françoise Schepmans +Deseyn Roel +Dewael Patrick +Lanjri Nahima +Bert Wollants +Kristien Vaerenbergh Van +Dierick Leen +Bergh Den Jef Van +Becq Sonja +De Lamotte Michel +An Capoen +Karine Lalieux +Biesen Luk Van +Daerden Frédéric +Hecke Stefaan Van +Almaci Meyrem +Coninck De Monica +Egbert Lachaert +Veerle Wouters +Beke Wouter +Hufkens Renate +Alain Top +Clarinval David +Peel Valerie Van +Koen Metsu +Annick Lambrecht +De Sophie Wit +Burre Gilles Vanden +Denis Ducarme +Barbara Pas +Ben Hamou Nawal +Blanchart Philippe +Calomne Gautier +Caprasse Véronique +Caroline Cassart-Mailleux +Crusnière Stéphane +Coninck De Inez +Anne Dedry +Delizée Jean-Marc +Demon Franky +De Peter Roover +Bart De Wever +Di Elio Rupo +Fernandez Fernandez Julie +Flahaux Jean-Jacques +Catherine Fonck +Foret Gilles +Benoît Friart +Gabriëls Katja +Gantois Rita +Georges Gilkinet +Grovonius Gwenaëlle +Hedebouw Raoul +Heeren Veerle +Jadin Kattrin +Jiroflée Karin +Emir Kir +Kitir Meryame +Johan Klaps +Ahmed Laaouej +Lahaye-Battheu Sabien +Benoît Lutgen +Luykx Peter +Maingain Olivier +Eric Massin +Miller Richard +Laurette Onkelinx +Fatma Pehlivan +Jan Penris +Benoît Piedboeuf +Raskin Wouter +Scourneau Vincent +Sarah Smeyers +Jan Spooren +Eric Thiébaut +Damien Thiery +Ann Vanheste +Els Hoof Van +Jan Vercammen +Hendrik Vuye +Fabienne Winckel +Buysrogge Peter +Grosemans Karolien +Peteghem Van Vincent +Jean-Marc Nollet +Demeyer Willy +Der Dirk Maelen Van +Peter Vanvelthoven +Goedele Uyttersprot +Janssen Werner +Brecht Vermeulen +Burton Emmanuel +Ine Somers +Degroote Koenraad +Bellens Rita +Evita Willaert +Dirk Mechelen Van +David Geerts +De Robert Van Velde +Dedecker Peter +Camp Van Yoleen +Der Donckt Van Wim +Aldo Carcaci +Delannois Paul-Olivier +Matz Vanessa +Hon Senator Seselja The Zed +Birmingham Hon Senator Simon The +Hon Ryan Scott Senator The +Hon Penny Senator The Wong +Fifield Hon Mitch Senator The +Cash Hon Michaelia Senator The +Canavan Hon Matthew Senator The +Cormann Hon Mathias Senator The +Hon Marise Payne Senator The +Hon Lisa Senator Singh The +Carr Hon Kim Senator The +Hon James Mcgrath Senator The +Abetz Eric Hon Senator The +Concetta Fierravanti-Wells Hon Senator The +Ao Arthur Hon Senator Sinodinos The +Anne Hon Ruston Senator The +Lines Senator Sue +Griff Senator Stirling +Hanson-Young Sarah Senator +Di Natale Richard Senator +Patrick Rex Senator +Rachel Senator Siewert +Peter Senator Whish-Wilson +Georgiou Peter Senator +Hanson Pauline Senator +Dodson Patrick Senator +Mckim Nick Senator +Murray Senator Watt +Malarndirri Mccarthy Senator +Gichuhi Lucy Senator +Louise Pratt Senator +Csc Linda Reynolds Senator +Lee Rhiannon Senator +Kimberley Kitching Senator +Gallagher Katy Senator +Jordon Senator Steele-John +John Senator Williams +Jenny Mcallister Senator +Janet Rice Senator +Hume Jane Senator +James Paterson Senator +Helen Polley Senator +Glenn Senator Sterle +Anning Fraser Senator +Derryn Hinch Senator +Deborah O'Neill Senator +Dean Senator Smith +David Leyonhjelm Senator +Bushby David Senator +Bernardi Cory Senator +Claire Moore Senator +Chris Ketter Senator +Bilyk Catryna Senator +Brown Carol Senator +Bridget Mckenzie Senator +Brian Burston Senator +Anthony Chisholm Senator +Anne Senator Urquhart +Andrew Bartlett Senator +Alex Gallacher Senator +Adam Bandt Mp Mr +Alan Hon Mp Tudge +Albanese Anthony Hon Mp +Andrew Dr Hon Leigh Mp +Alex Hawke Hon Mp +Amanda Hon Mp Rishworth +Andrew Gee Mp Mr +Andrew Giles Mp Mr +Andrew Laming Mp Mr +Andrew Mp Mr Wallace +Angus Hon Mp Taylor +Ann Mp Mrs Sudmalis +Anne Mp Ms Stanley +Anthony Byrne Hon Mp +Barnaby Hon Joyce Mp +Bert Manen Mp Mr Van +Bill Hon Mp Shorten +Brendan Hon Mp O'Connor +Bowen Chris Hon Mp +Brian Mitchell Mp Mr +Andrew Broad Mp Mr +Broadbent Mp Mr Russell +Cathy Mp Ms O'Toole +Catherine Hon King Mp +Chris Crewther Mp Mr +Clare Mp Ms O'Neil +Christian Hon Mp Porter +Christopher Hon Mp Pyne +Craig Kelly Mp Mr +David Littleproud Mp Mr +Damian Drum Hon Mp +Dan Hon Mp Tehan +Chester Darren Hon Mp +David Dr Gillespie Hon Mp +Coleman David Mp Mr +Emma Mcbride Mp Ms +Emma Husar Mp Ms +Fitzgibbon Hon Joel Mp +Brodtmann Gai Mp Ms +Christensen George Mp Mr +Graham Mp Mr Perrett +Greg Hon Hunt Mp +Goodenough Ian Mp Mr +Ao Cathy Mcgowan Mp Ms +Hon Jane Mp Prentice +Clare Hon Jason Mp +Falinski Jason Mp Mr +Jason Mp Mr Wood +Chalmers Dr Jim Mp +Elliot Hon Justine Mp +Joanne Mp Ms Ryan +Dr John Mcveigh Mp +Frydenberg Hon Josh Mp +Josh Mp Mr Wilson +Banks Julia Mp Ms +Hill Julian Mp Mr +Julian Leeser Mp Mr +Bishop Hon Julie Mp +Collins Hon Julie Mp +Julie Mp Ms Owens +Justine Keay Mp Ms +Andrews Hon Karen Mp +Ellis Hon Kate Mp +Hon Keith Mp Pitt +Hon Kelly Mp O'Dwyer +Ken Mp Mr O'Dowd +Am Hon Ken Mp Wyatt +Andrews Hon Kevin Mp +Hogan Kevin Mp Mr +Craig Hon Laundy Mp +Burney Hon Linda Mp +Llew Mp Mr O'Brien +Chesters Lisa Mp Ms +Lucy Mp Mrs Wicks +Hartsuyker Hon Luke Mp +Howarth Luke Mp Mr +Gosling Luke Mp Mr Oam +Hon Mccormack Michael Mp +King Madeleine Mp Ms +Mp Ms Rebekha Sharkie +Hon Mp Snowdon Warren +Maria Mp Ms Vamvakinou +Butler Hon Mark Mp +Coulton Mark Mp Mr +Dreyfus Hon Mark Mp Qc +Keogh Matt Mp Mr +Melissa Mp Ms Price +Meryl Mp Ms Swanson +Danby Hon Michael Mp +Hon Keenan Michael Mp +Hon Michael Mp Sukkar +Am Dr Hon Kelly Mike Mp +Dick Milton Mp Mr +Landry Michelle Mp Ms +Michelle Mp Ms Rowland +Hon Matt Mp Thistlethwaite +Champion Mp Mr Nick +Flint Mp Ms Nicolle +Marino Mp Mrs Nola +Conroy Mp Mr Pat +Fletcher Hon Mp Paul +Dutton Hon Mp Peter +Khalil Mp Mr Peter +Bob Hon Katter Mp +Hon Marles Mp Richard +Mitchell Mp Mr Rob +Hart Mp Mr Ross +Mp Mr Ramsey Rowan +Buchholz Mp Mr Scott +Hon Morrison Mp Scott +Bird Hon Mp Sharon +Claydon Mp Ms Sharon +Hon Mp Neumann Shayne +Henderson Mp Ms Sarah +Mp Ms Susan Templeman +Jones Mp Mr Stephen +Georganas Mp Mr Steve +Irons Mp Mr Steve +Ciobo Hon Mp Steven +Hon Mp Robert Stuart +Lamb Mp Ms Susan +Hon Ley Mp Sussan +Hon Mp Swan Wayne +Hon Mp Plibersek Tanya +Mp Mr O'Brien Ted +Butler Mp Ms Terri +Hammond Mp Mr Tim +Mp Mr Tim Watts +Mp Mr Tim Wilson +Burke Hon Mp Tony +Abbott Hon Mp Tony +Mp Mr Pasin Tony +Hon Malcolm Mp Turnbull +Andrew Mp Mr Wilkie +Gerstl Mag. Wolfgang +Dr. Mag. Wolfgang Zinggl +Mölzer Wendelin +Andreas Mag. Schieder +Bruno Mag. Rossmann +Dr. Lopatka Reinhold +Mag. Philipp Schrangl +Kucher Philip +Dr. Peter Pilz +Bernhard Michael +Ing. Lugar Robert +Jan Kai Krainer +Dr. Jessi Lintl +Ba Daniela Holzinger-Vogtenhuber +Christian Höbart Ing. +Christian Hafenecker Ma +Gerald Loacker Mag. +Deimek Dipl.-Ing. Gerhard +Gabriel Obernosterer +Friedrich Mag. Ofenauer +Nurten Yılmaz +Erwin Preiner +Dipl.-Ing. Doppelbauer Karin +Cornelia Ecker +Carmen Schimanek +Belakowitsch Dagmar Dr. +Bayr Ma Mls Petra +Angelika Dr. Winzig +Andreas Hanger Mag. +Brückl Hermann +Androsch Ing. Maurice +(Fh) Bißmann Dipl.-Ing. Martha +Dönmez Efgani Pmm +Drozda Mag. Thomas +Einwallner Ing. Reinhold +Engelberg Mag. Martin +(Wu) Claudia Gamon Msc +Dr. Griss Irmgard +Gruber Renate +Gudenus Johann M.A.I.S. Mag. +Hochstetter-Lackner Irene +Bsc Eva Holzleitner Maria +Franz Hörl +Ba Carmen Jeitler-Cincelli Mag. +Hans-Jörg Jenewein Ma +Ba Kaufmann Martina Mmsc +Andreas Kollross +Christian Kovacevic +Dr. Krisper Stephanie +Dr. Gudrun Kugler +Jörg Leichtfried Mag. +Lindner Mario +Marchetti Nico +Beate Mag. Meinl-Reisinger Mes +Karl Msc Nehammer +Mag. Nussbaum Verena +Ing. Mag. Reifenberger Volker +Sabine Schatz +Dr. Ma Nikolaus Scherak +Christoph Stark +Sandra Wassermann +Mag. Peter Weidinger +Alma Dr. Ll.M. Zadić +Christoph Zarits +Kropiwnicki Robert +Dworczyk Michał +Agnieszka Pomaska +Dobrzyński Leszek +Siemoniak Tomasz +Cezary Tomczyk +Błaszczak Mariusz +Michał Szczerba +Augustynowska Joanna +Joanna Lichocka +Nitras Sławomir +Elżbieta Rafalska +Gosiewska Małgorzata +Brejza Krzysztof +Lisiecki Paweł +Pięta Stanisław +Gowin Jarosław +Artur Gierada +Jacek Kosecki Roman +Piotr Zgorzelski +Czernow Zofia +Arent Iwona +Adam Andruszkiewicz +Kamiński Michał +Andrzej Halicki +Czarnecki Przemysław +Cymański Tadeusz +Abramowicz Adam +Joanna Mucha +Anita Czerwińska +Ewa Kopacz +Adamczyk Andrzej +Ajchler Zbigniew +Andzel Waldemar +Apel Piotr +Arłukowicz Bartosz +Arndt Paweł +Ast Marek +Augustyn Urszula +Aziewicz Tadeusz +Babiarz Piotr Łukasz +Babinetz Piotr +Bakun Wojciech +Bańkowski Paweł +Bartosik Ryszard +Baszko Kazimierz Mieczysław +Bejda Paweł +Bernacki Włodzimierz +Anna Białkowska +Biernat Zbigniew +Błeńska Magdalena +Borowczak Jerzy +Borowiak Joanna +Agata Borowiec +Brynkus Józef +Barbara Bubula +Buczak Wojciech +Buda Waldemar +Borys Budka +Bożenna Bukiewicz +Chmiel Małgorzata +Barbara Chrobak +Chruszcz Sylwester +Alicja Chybicka Chybickaalicja +Cichoń Janusz +Cieślak Michał +Cieśliński Piotr +Cimoszewicz Tomasz +Adam Cyrański +Czabański Krzysztof +Andrzej Czerwiński +Długi Grzegorz +Duda Elżbieta +Artur Dunin +Duszek Marcin +Dzikowski Waldy +Dziuba Tadeusz +Barbara Dziuk +Fabisiak Joanna +Ewa Filipiak +Frydrych Joanna +Furgo Grzegorz +Gadowski Krzysztof +Gajewska-Płochocka Kinga +Galla Ryszard +Elżbieta Gapińska +Gasiuk-Pihowicz Kamila +Gawlik Zdzisław +Gawłowski Stanisław +Andrzej Gawron +Gądek Lidia +Elżbieta Gelert +Giżyński Szymon +Gliński Piotr +Golbik Marta +Golińska Małgorzata +Gonciarz Jarosław +Cezary Grabarczyk +Grabiec Jan +Grabowski Paweł +Gryglas Zbigniew +Gwiazdowski Kazimierz +Bożena Henczyca +Hennig-Kloska Paulina +Hok Marek +Horała Marcin +Huskowski Stanisław +Jach Michał +Jachnik Jerzy +Jaki Patryk +Jakubiak Marek +Janczyk Wiesław +Grzegorz Janik +Janowska Małgorzata +Janyska Maria Małgorzata +Jaros Michał +Jarubas Krystian +Jaskóła Tomasz +Jędrysek Mariusz Orion +Bartosz Józwiak +Kaczmarczyk Norbert +Alicja Kaczorowska +Jarosław Kaczyński +Bożena Kamińska +Kamiński Mariusz +Karpiński Włodzimierz +Kasprzak Mieczysław +Beata Kempa +Kidawa-Błońska Małgorzata +Kierwiński Marcin +Jan Kilian +Izabela-Helena Kloc +Joanna Kluzik-Rostkowska +Eugeniusz Kłopotek +Kobyliński Paweł +Kochan Magdalena +Agnieszka Kołacz-Leszczyńska +Ewa Kołodziej +Konwiński Zbigniew +Joanna Kopcińska +Adam Korol +Kosiniak-Kamysz Władysław +Kostuś Tomasz +Andrzej Kosztowniak +Kazimierz Kotowski +Bartosz Kownacki +Jerzy Kozłowski +Jarosław Krajewski +Krajewski Wiesław +Krasulski Leonard +Król Piotr +Król Wojciech +Anna Krupka +Andrzej Kryj +Bernadeta Krynicka +Krząkała Marek +Dariusz Kubiak +Kuchciński Marek +Kukiz Paweł +Jakub Kulesza +Jacek Kurzępa +Anna Kwiecień +Lamczyk Stanisław +Józef Lassota +Latos Tomasz +Gabriela Lenartowicz +Lenz Tomasz +Izabela Leszczyna +Józef Leśniak +Ewa Lieder +Krzysztof Lipiec +Liroy-Marzec Piotr +Lubczyk Radosław +Katarzyna Lubnauer +Jan Łopata +Machałek Marzena +Andrzej Maciejewski +Antoni Macierewicz +Maliszewski Mirosław +Jerzy Małecki +Maciej Małecki +Arkadiusz Marchewka +Maciej Masłowski +Jerzy Materna +Beata Mateusiak-Pielucha +Grzegorz Matusiak +Beata Mazurek +Andrzej Melak +Jerzy Meysztowicz +Iwona Michałek +Krzysztof Michałkiewicz +Krzysztof Mieszkowski +Anna Milczanowska +Daniel Milewski +Misiło Piotr +Aldona Młyńczak +Kornel Morawiecki +Jan Mosiński +Arkadiusz Mularczyk +Killion Munyama +Murdzek Wojciech +Arkadiusz Myrcha +Neumann Sławomir +Dorota Niedziela +Małgorzata Niemczyk +Niesiołowski Stefan +Mirosława Nykiel +Norbert Obrycki +Marzena Okła-Drewnowicz +Olejniczak Waldemar +Olszewski Paweł +Marek Opioła +Katarzyna Osos +Krzysztof Ostrowski +Mirosław Pampuch +Papke Paweł +Błażej Parda +Pasławska Urszula +Krzysztof Paszyk +Jerzy Paul +Krystyna Pawłowicz +Petru Ryszard +Małgorzata Pępek +Jan Piechota Sławomir +Grzegorz Piechowiak +Danuta Pietraszewska +Dariusz Piontkowski +Kazimierz Plocke +Jerzy Polaczek +Piotr Polak +Jarosław Porwich +Jacek Protas +Jacek Protasiewicz +Grzegorz Puda +Paweł Pudłowski +Piotr Pyzik +Elżbieta Radziszewska +Grzegorz Raniewicz +Ireneusz Raś +Monika Rosa +Rusecka Urszula +Leszek Ruszczyk +Dorota Rutkowska +Marek Rząsa +Rzepecki Łukasz +Bogdan Rzońca +Rzymkowski Tomasz +Janusz Sanocki +Jacek Sasin +Marek Sawicki +Grzegorz Schetyna +Joanna Scheuring-Wielgus +Joanna Schmidt +Schreiber Łukasz +Anna Maria Siarkowska +Krystyna Sibińska +Krzysztof Sitarski +Skurkiewicz Wojciech +Paweł Skutecki +Andrzej Smirnow +Kazimierz Smoliński +Anna Elżbieta Sobecka +Artur Soboń +Bogusław Sonik +Marek Sowa +Lech Sprawka +Mirosława Stachowiak-Różecka +Dariusz Starzycki +Michał Stasiński +Jarosław Stawiarski +Elżbieta Stępień +Mirosław Suchoń +Marek Suski +Paweł Suski +Artur Szałabawka +Jolanta Szczypińska +Paweł Szefernaker +Jarosław Szlachetka +Adam Szłapka +Paweł Szramka +Krystyna Szumilas +Stanisław Szwed +Halina Szydełko +Beata Szydło +Bożena Szydłowska +Szymański Tomasz +Szymon Szynkowski Sęk Vel +Agnieszka Ścigaj +Iwona Śledzińska-Katarasińska +Janusz Śniadek +Jacek Świat +Marcin Święcicki +Dominik Tarczyński +Robert Telus +Ryszard Terlecki +Jacek Tomczak +Krzysztof Truskolaski +Rafał Trzaskowski +Sylwester Tułajew +Stanisław Tyszka +Robert Tyszkiewicz +Jarosław Urbaniak +Piotr Uściński +Teresa Wargocka +Małgorzata Wassermann +Maciej Wąsik +Rafał Weber +Monika Wielichowska +Jacek Wilk +Jerzy Wilk +Wilk Wojciech +Robert Winnicki +Mariusz Witczak +Elżbieta Witek +Tadeusz Woźniak +Marek Wójcik +Michał Wójcik +Kornelia Wróblewska +Krystyna Wróblewska +Bartłomiej Wróblewski +Małgorzata Wypych +Marek Zagórski +Anna Zalewska +Artur Zasada +Witold Zembaczyński +Elżbieta Zielińska +Jarosław Zieliński +Zbigniew Ziobro +Szymon Ziółkowski +Wojciech Zubowski +Małgorzata Zwiercan +Ireneusz Zyska +Jacek Żalek +Stanisław Żmijan +Marco Meloni +Andrea Rigoni +Civati Giuseppe +Rampi Roberto +Guglielmo Vaccaro +Bonaccorsi Lorenza +Raffaello Vignali +Bernini Paolo +Longo Piero +Amedeo Laboccetta +Carbone Ernesto +Nuti Riccardo +Davide Faraone +Cova Paolo +Bianchi Stella +Albanella Luisella +Di Fabrizio Stefano +Gianfranco Sammarco +Lombardi Roberta +Borghesi Stefano +Donati Marco +Crimi Rocco +Fabio Porta +Bindi Rosy +Gozi Sandro +Federico Gelli +Gandolfi Paolo +Alfano Gioacchino +Domenico Rossi +Bray Massimo +Basso Lorenzo +Michele Pelillo +Pino Pisicchio +Ludovico Vico +Bossi Umberto +Bini Caterina +Battaglia Demetrio +Dario Ginefra +Francesco Sanna +Capezzone Daniele +Alfano Angelino +Baruffi Davide +Francesco Romano Saverio +Caso Vincenzo +De Felice Massimo Rosa +Enzo Lattuca +Fioroni Giuseppe +Galati Giuseppe +Becattini Lorenzo +Francesco Laforgia +Filiberto Zaratti +Paolo Petrini +Alberti Ferdinando +Marzano Michela +Garavini Laura +Bechis Eleonora +De Girolamo Nunzia +Adriano Zaccagnini +Antonio Misiani +Bolognesi Paolo +D'Alia Gianpiero +Gaetana Greco Maria +Garofalo Vincenzo +Alessandro Bratti +Di Giulia Vita +Marietta Tidei +Andrea Martella +Antonio Merlo Ricardo +Filippo Fossati +Mario Tullo +Cimbro Eleonora +Aris Prodani +Fedi Marco +Matteo Richetti +Amendola Vincenzo +Tentori Veronica +Ermete Realacci +Gianluca Pini +Giancarlo Giordano +Pizzolante Sergio +Caparini Davide +Alfredo D'Attorre +Baretta Paolo Pier +Carra Marco +Mino Taricco +Caterina Pes +Bonifazi Francesco +Edoardo Fanucci +Famiglietti Luigi +Enrico Letta +Bossa Luisa +Nicola Stumpo +Claudia Mannino +Corsaro Enrico Massimo +Agostinelli Donatella +Ignazio La Russa +Daniele Montroni +Flavia Malpezzi Simona +Baldassarre Marco +Leonori Marta +Cesare Damiano +Marina Sereni +Marco Miccoli +Argentin Ileana +Folino Vincenzo +Costa Enrico +Antonino Bosco +Giuseppe Guerini +Piso Vincenzo +Giuseppe Guido Peluffo Vinicio +Carrozza Chiara Maria +Mariani Raffaella +Bianconi Maurizio +Buttiglione Rocco +Bobba Luigi +Carmelo Lo Monte +Eugenia Roccella +Cominelli Miriam +Bargero Cristina +Castiglione Giuseppe +Andrea Gibelli +Aiello Ferdinando +Gero Grassi +Alessio Tacconi +Artini Massimo +Chaouki Khalid +Dario Parrini +Colomba Mongiello +Gnecchi Marialuisa +Bragantini Paola +Cardinale Daniela +Carella Renzo +Marroni Umberto +Rubinato Simonetta +Silvia Velo +Davide Zoggia +Daniela Sbrollini +Mantero Matteo +Ghizzoni Manuela +Berretta Giuseppe +Impegno Leonardo +Sandra Zampa +Alessandro Battista Di +Busto Mirko +Piccione Teresa +Luca Sani +Francesco Ribaudo +Emanuele Lodolini +Giulia Narduolo +Donata Lenzi +Culotta Magda +Maestri Patrizia +Elisa Simoni +Giampiero Giulietti +Crivellari Diego +Ciccio Detto Ferrara Francesco +Daniela Gasparini Maria Matilde +Grazia Maria Rocchi +Fabbri Marilena +Davide Mattiello +Arlotti Tiziano +Dallai Luigi +Beni Paolo +Bianchi Dorina +Fabrizia Giuliani +Giovanna Martelli +Capone Salvatore +Ernesto Magorno +Galli Giampaolo +Giuseppe Lauricella +Covello Stefania +Assunta Tartaglione +Donatella Ferranti +Carlo Galli +Danilo Leva +Alessandro Mazzoli +Burtone Giovanni Mario Salvino +Iori Vanna +Ernesto Preziosi +Edoardo Patriarca +Bernini Massimiliano +Anna Giacobbe +Casati Ezio Primo +Liliana Ventricelli +Valente Valeria +Biondelli Franca +Cuperlo Giovanni +Abrignani Ignazio +Adornato Ferdinando +Airaudo Giorgio +Albini Tea +Alfreider Daniel +Allasia Stefano +Alli Paolo +Amoddio Sofia +Auci Ernesto +Barbanti Sebastiano +Basilio Tatiana +Bellanova Teresa +Bergonzi Marco +Bernardo Maurizio +Bianchi Nicola +Biasotti Sandro +Binetti Paola +Blazina Tamara +Boccadutri Sergio +Boldrini Paola +Bordo Franco +Beatrice Brignone +Brugnerotto Marco +Bueno Renata +Busin Filippo +Camani Vanessa +Cani Emanuele +Capelli Roberto +Capozzolo Sabrina +Capua Ilaria +Cariello Francesco +Anna Carloni Maria +Carocci Mara +Caruso Mario +Casellato Floriana +Antonio Castricone +Catalano Ivan +Catania Mario +Andrea Causin +Bruno Censore +Centemero Elena +Angelo Cera +Antimo Cesaro +Chimienti Silvia +Cicchitto Fabrizio +Cimmino Luciano +Ciraci' Nicola +Coccia Laura +Colonnese Vega +Coppola Paolo +Cozzolino Emanuele +Crimi' Filippo +Curro' Tommaso +Angelo Antonio D'Agostino +D'Alessandro Luca +Dambruoso Stefano +D'Arienzo Vincenzo +Dellai Lorenzo +Carlo Dell'Aringa +Della Ivan Valle +Dell'Orco Michele +Benedetto Chiara Di +Di Gioia Lello +Di Lello Marco +Di Salvo Titti +Antonio Distaso +Di Marco Stefano +D'Ottavio Umberto +Faenzi Monica +Falcone Giovanni +Fauttilli Federico +Claudio Fava +Alan Ferrari +Fontanelli Paolo +Fusilli Gianluca +Adriana Galgano +Gallo Riccardo +Gabriella Giammanco +Gian Gigli Luigi +Ginoble Tommaso +Giordano Silvia +Gitti Gregorio +Gregori Monica +Guerra Mauro +Gutgeld Itzhak Yoram +Cristian Iannuzzi +Lacquaniti Luigi +Cosimo Latronico +Fabio Lavagno +Elda Locatelli Pia +Loredana Lupo +Andrea Maestri +Maietta Pasquale +Andrea Manciulli +Manfredi Massimiliano +Irene Manzi +Daniele Marantelli +Marazziti Mario +Giulio Marcon +Elisa Mariano +Marco Martinelli +Marti Roberto +Matarrelli Toni +Matarrese Salvatore +Andrea Celso Di Mazziotti +Gianni Melilla +Domenico Menorello +Meta Michele Pompeo +Emiliano Minnucci +Anna Margherita Miotto +Dore Misuraca +Bruno Molea +Giovanni Monchiero +Antonino Moscatt +Mara Mucci +Bruno Murgia +Marisa Nicchi +Michele Nicoletti +Oliaro Roberta +Mauro Ottobre +Giovanni Paglia +Palese Rocco +Giovanni Palladino +Elio Massimo Palmizio +Annalisa Pannarale +Massimo Parisi +Paris Valentina +Oreste Pastorelli +Pellegrino Serena +Daniele Pesco +Cosimo Petraroli +Filippo Piccone +Gaetano Piepoli +Mauro Pili +Nazzareno Pilozzi +Michele Piras +Girolamo Pisano +Francesco Prina +Quaranta Stefano +Giuseppe Quintarelli Stefano +Mariano Rabino +Lara Ricciatti +Giuseppe Romanini +Anna Rossomando +Angelo Rughetti +Giovanni Sanga +Giovanna Sanna +Milena Santerini +Gian Piero Scanu +Gea Schiro' +Rosanna Scopelliti +Arturo Scotto +Chiara Scuvera +Samuele Segoni +Angelo Senaldi +Camilla Sgambato +Francesco Paolo Sisto +Cesare Giulio Sottanelli +Alessandra Terrosi +Irene Tinagli +Danilo Toninelli +Achille Totaro +Tancredi Turco +Simone Valiante +Pierpaolo Vargiu +Paolo Vella +Laura Venittelli +Maria Valentina Vezzali +Enrico Zanetti +Giorgio Zanin +Allred Colin +Armstrong Kelly +Axne Cynthia +Baird James +Balderson Troy +Anthony Brindisi +Burchett Tim +Case Ed +Casten Sean +Cisneros Gilbert Jr. Ray +Ben Cline +Cloud Michael +Cox Tj +Angie Craig +Crenshaw Dan +Crow Jason +Cunningham Joe +Curtis John R. +Davids Sharice +Dean Madeleine +Antonio Delgado +Escobar Veronica +Abby Finkenauer +Fletcher Lizzie +Fulcher Russ +"""Chuy"" G. Garcia Jesús" +Garcia Sylvia +Gianforte Greg +Golden Jared +Gomez Jimmy +Anthony Gonzalez +Gooden Lance +Green Mark +Guest Michael +Debra Haaland +Hagedorn Jim +Harder Josh +Hayes Jahana +Hern Kevin +Hill Katie +Horn Kendra +Horsford Steven +Chrissy Houlahan +Hoyer Steny +Dusty Johnson +"""Hank"" C. Henry Johnson Jr." +John Joyce +Andy Kim +Ann Kirkpatrick +Conor Lamb +Lee Susie +Debbie Lesko +Andy Levin +Levin Mike +Elaine Luria +Malinowski Tom +Ben Mcadams +Lucy Mcbath +Daniel Meuser +Carol Miller +Joseph Morelle +Debbie Mucarsel-Powell +Joe Neguse +Norman Ralph +Alexandria Ocasio-Cortez +Ilhan Omar +Chris Pappas +Greg Pence +Dean Phillips +Katie Porter +Ayanna Pressley +Guy Reschenthaler +Denver Riggleman +John Rose W. +Max Rose +Harley Rouda +Chip Roy +Gay Mary Scanlon +Bradley Schneider +Kim Schrier +Donna E. Shalala +Mikie Sherrill +Elissa Slotkin +Abigail Spanberger +Ross Spano +Greg Stanton +Pete Stauber +Bryan Steil +Gregory Steube W. +Haley Stevens +Taylor Van +Glenn Thompson +Timmons William +Rashida Tlaib +Small Torres Xochitl +Lori Trahan +David Trone +Lauren Underwood +Drew Jefferson Van +Michael Waltz +Steven Watkins +Jennifer Wexton +Susan Wild +Braun Mike +Hawley Josh +Cindy Hyde-Smith +Doug Jones +Mitt Romney +Rick Scott +Smith Tina +Aittakumpu Pekka +Al-Taee Hussein +Antikainen Sanna +Asell Marko +Autto Heikki +Bergqvist Sandra +Elo Tiina +Elomaa Ritva +Bella Forsgrén +Atte Harjanne +Heikkinen Janne +Eveliina Heinäluoma +Hanna Holopainen +Holopainen Mari +Honkasalo Veronika +Hopsu Inka +Hanna Huttunen +Hyrkkö Saara +Anna-Kaisa Ikonen +Junnila Vilhelm +Juuso Kaisa +Eeva Kalli +Kauma Pia +Kaunisto Ville +Juho Kautto +Hilkka Kemppi +Keto-Huovinen Pihla +Kiljunen Kimmo +Kilpi Marko +Kinnunen Mikko +Kivelä Mai +Kivisaari Pasi +Koponen Noora +Johannes Koskinen +Koulumies Terhi +Johan Kvarnström +Joonas Könttä +Kristian Laakso Sheikki +Laiho Mia +Aki Lindén +Lohikoski Pia +Malm Niina +Marttinen Matias +Hanna-Leena Mattila +Juha Mäenpää +Mäkinen Riitta +Jukka Mäkynen +Niemi Veijo +Anders Norrback +Maria Ohisalo +Mikko Ollikainen +Jouni Ovaska +Packalén Tom +Mauri Peltokangas +Piirainen Raimo +Jenni Pitko +Puisto Sakari +Purra Riikka +Lulu Ranne +Mari Rantanen +Piritta Rantanen +Rehn-Kivi Veronica +Minna Reijonen +Janne Sankelo +Jussi Saramo +Jenna Simula +Ruut Sjöblom +Riikka Slunga-Poutsalo +Mirka Soinikoski +Iiris Suomela +Erkki Tuomioja +Ano Turtiainen +Sebastian Tynkkynen +Vallin Veikko +Paula Werning +Jussi Wihonen +Heidi Viljanen +Sofia Virta +Tuula Väätäinen +Alex Vanopslagh +Anders Kronborg +Anne Paulin +Anne Callesen Sophie +Anne Berthelsen Valentina +Astrid Carøe +Bergman Birgitte +Birgitte Vind +Bjørn Brandenborg +Camilla Fabricius +Carl Valentin +Carsten Kissmeyer +Aagaard Christoffer Melson +Fatma Øktem +Halime Oguz +Christian Hans Schmidt +Bank Heidi +Henrik Møller +Bruus Jeppe +Joy Mogensen +Dehnhardt Karina Lorentzen +Kasper Kjær Sand +Ammitzbøll Katarina +Katrine Robsøe +Kim Valentin +Frandsen Klaus +Hegaard Kristian +Boje Lars Mathiesen +Fuglede Mads +Mai Villadsen +Bjerre Marie +Geertsen Martin +Mette Thiesen +Juul Mona +Dahlin Morten +Flemming Hansen Niels +Hvelplund Peder +Pernille Vermund +Christensen Peter Seier +Kjærsgaard Pia +Helveg Petersen Rasmus +Rasmus Stoklund +Lund Rosa +Nawa Samira +Munk Signe +Siddique Sikandar +Knuth Stén +Lindgreen Stinus +Susanne Zimmer +Ahlers Tommy +Tørnæs Ulla +Velasquez Victoria +Amanda Stoker +Barry O'Sullivan +Brian Burston +Cameron Doug +Duncan Spender +Ian Macdonald +James Mcgrath +Ao Dsc Jim Molan +Duniam Jonathon +Keneally Kristina +Larissa Waters +Faruqi Mehreen +Ciccone Raff +Colbeck Richard +Storer Tim +Abir Al-Sahlani +Adam Bielan +Adam Jarubas +Adriana López Maldonado +Agnès Evren +Aileen Mcleod +Alessandra Basso +Alessandra Moretti +Alessandro Panza +Agius Alex Saliba +Alexandr Vondra +Alexandra Geese +Alexandra Lesley Phillips +Alexandra Louise Phillips Rosenfield +Alexis Georgoulis +Alicia Ginel Homs +André Rougé +Andrea Bocskor +Andrea Caroppo +Andreas Glück +Andrew England Kerr +Ameriks Andris +Andrius Kubilius +Andrus Ansip +Anna Cavazzini +Anna Deparnay-Grunenberg +Anna Fotyga +Anna Donáth Júlia +Annalisa Tardino +Anne-Sophie Pelletier +Annunziata Mary Rees-Mogg +Antonio Maria Rinaldi +Antony Hook +Arba Kokalari +Asger Christensen +Ademov Asim +Assita Kanko +Ara-Kovács Attila +Aurelia Beigneux +Aurore Lalucq +Aušra Maldeikienė +Ann Barbara Gibson +Barbara Thaler +Baroness Mobarik Nosheena +Belinda De Lucy +Ben Habib +Benoît Biteau +Bernard Guetta +Bert-Jan Ruissen +Bettina Vollath +Bill Dunn Newton +Brian Monteith +Bronis Ropė +Calenda Carlo +Avram Carmen +Caroline Nagtegaal +Caroline Roose +Caroline Voaden +Catherine Chabaud +Catherine Griset +Catherine Rowett +Charlie Weimers +Chiara Gemma +Chris Davies +Allard Christian +Christian Doleschal +Christina Jordan Sheila +Christine Schneider +Christophe Grudler +Christophe Hansen +Chrysoula Zacharopoulou +Ciarán Cuffe +Cindy Franssen +Claire Fox +Armand Clotilde +Corina Crețu +Costas Mavrides +Cristian Ghinea +Almagro Cristina De Maestre Martín +Cioloș Dacian +Boeselager Damian +Carême Damien +Dan-Ştefan Motreanu +Daniel Freund +Daniela Rondinelli +Bull David +Cormand David +David Lega +Burkhardt Delara +Dennis Radtke +Derk Eppink Jan +Diana Giner I Riba +Dhamija Dinesh +Dino Giarrusso +Devesa Domènec Ruiz +Dragoş Pîslaru +Dragoş Tudorache +Edina Tóth +Elena Lizzi +Elisabetta Gualmini +Chowns Ellie +Engin Eroglu +Bergkvist Erik +Erik Marquardt +Dura Estrella Ferrandis +Eugen Jurzyca +Eugen Tomac +Eugenia Palop Rodríguez +Evin Incir +Fabienne Keller +France Jamet +Donato Francesca +Francisco Guerreiro +Franco Roberti +Alfonsi François +Bellamy François-Xavier +Bourgeois Geert +Geoffrey Orden Van +Didier Geoffroy +Da Gianantonio Re +Gancia Gianna +Boyer Gilles +Dowding Gina +Giuliano Pisapia +Ferrandino Giuseppe +Grace O'Sullivan +Grzegorz Tobiszowski +Guido Reil +Delbos-Corfield Gwendoline +Hannah Neumann +Hannes Heide +Hélène Laporte +Henrik Nielsen Overgaard +Hahn Henrike +Hermann Tertsch +Herve Juvin +Bentele Hildegard +Blanco Del Garcia Ibán +Idoia Ruiz Villanueva +Irena Joveva +Irène Tolleret +Irina Von Wiese +Benjumea Benjumea Isabel +Isabel Santos +Isabel Wiseler-Lima +Isabella Tovaglieri +Ivars Ījabs +Hristov Ivo +Jaak Madison +Jackie Jones +Jake Pugh +James Wells +Jan-Christoph Oetjen +Brophy Jane +Janina Ochojska +Duda Jarosław +Javier Zarzalejos +Garraud Jean-Paul +Decerle Jérémy +Jérôme Rivière +Jessica Stegrud +Joachim Kuhs +Joachim Schuster +Brudziński Joachim Stanisław +Danielsson Johan +Johan Overtveldt Van +David Edward John Tennant +Howarth John +John Longworth +Bullock Jonathan +Bardella Jordan +Cañas Jordi +Jörg Meuthen +Buxadé Jorge Villalba +Gusmão José +García-Margallo José Manuel Marfil Y +Bauzá Díaz José Ramón +Cutajar Josianne +Bunting Judith +Julie Lechanteux +Alison June Mummery +Juozas Olekas +Jutta Paulus +Karen Melchior +Karin Karlsbro +Karlo Ressler +Karol Karski +Edtstadler Karoline +Cseh Katalin +Katrin Langensiepen +Kim Sparrentak Van +Kira Marie Peter-Hansen +Grošelj Klemen +Arvanitis Konstantinos +Kris Peeters +Jurgiel Krzysztof +Forman Lance +Lara Wolters +Berg Lars Patrick +László Trócsányi +Farreng Laurence +Chaibi Leila +Gil Leopoldo López +Leszek Miller +Lídia Pereira +Liesje Schreinemacher +Galvez Lina Muñoz +Járóka Lívia +Loránt Vincze +Fourlas Loucas +Louis Stedman-Bryce +Lucia Nicholsonová Ďuriš +Lucia Vuolo +Elizabeth Harris Lucy +Lucy Nethsingha +Garicano Luis +Luisa Porritt +Luisa Regimenti +Lukas Mandl +Kohut Łukasz +Adamowicz Magdalena +Magid Magid +Aubry Manon +Manu Pineda +Bompard Manuel +Manuel Pizarro +Botenga Marc +Kolaja Marcel +Campomenosi Marco +Dreosto Marco +Belka Marek +Balt Marek Paweł +Margarida Marques +Carvalho Da Graça Maria +Leitão Manuel Maria Marques +Maria Noichl +Maria Walsh +Marianne Vind +Marie Toussaint +Marie-Pierre Vedrenne +Kaljurand Marina +Furore Mario +Marion Walsmann +Gregorová Markéta +Buchheit Markus +Buschmann Martin +Daubney Edward Martin +Hojsík Martin +Horwood Martin +Martin Schirdewan +Gyöngyösi Márton +Massimiliano Smeriglio +Adinolfi Matteo +Matthew Patten +Krah Maximilian +Kumpula-Natri Miapetra +Bloss Michael +Heaver Michael +Mihai Tudose +Mikuláš Peksa +Brglez Milan +Hava Mircea-Gheorghe +Chahim Mohammed +Monica Semedo +González Mónica Silvana +Beňová Monika +Körner Moritz +Mounir Satouri +Long Naomi +Colin-Oesterlé Nathalie +Loiseau Nathalie +Nico Semsrott +Nicolae Ştefănuță +Casares Gonzalez Nicolás +Nicolas Schmit +Fest Nicolaus +Fuglsang Niels +Nienass Niklas +Nils Ušakovs +Kizilyürek Niyazi +Lancini Oscar +Demirel Özlem +Borchia Paolo +Holmgren Pär +Canfin Pascal +Breyer Patrick +Paulo Rangel +Marques Pedro +Arza Barrena Pernando +Pernille Weiss +Peter Pollák +De Petra Sutter +Kokkalis Vasileios +Bennion Phil +Majorino Pierfrancesco +Karleskind Pierre +Larrouturou Pierre +Bartolo Pietro +Fiocchi Pietro +Fred Matić Predrag +Professor Trillet-Lenoir Véronique +Kanev Radan +Radosław Sikorski +Raffaele Stancanelli +Ramona Strugariu +Glucksmann Raphaël +Juknevičienė Rasa +Andresen Rasmus +Richard Tice +Rob Rooken +Biedroń Robert +Hajšel Robert +Robert Roos +Robert Rowland +Franz Romeo +Palmer Rory +Estaràs Ferragut Rosa +Plumb Rovana +Lowe Rupert +Pignedoli Sabrina +Salima Yenbou +Rafaela Samira +Rónai Sándor +Cerdas Sara +Sara Skyttedal +Bricmont Saskia +Ainslie Scott +Lagodinsky Sergey +Mohammed Shaffaq +Ritchie Sheila +Sardone Silvia +Berlusconi Silvio +Baldassarre Simona +Rego Sira +Berger Stefan +Stefania Zambelli +Kympouropoulos Stelios +Bijoux Stéphane +Stéphane Séjourné +Stéphanie Yon-Courtin +Pérez Solís Susana +Ceccardi Susanna +Mikser Sven +Simon Sven +Hahn Svenja +Brunet Sylvie +Spurek Sylwia +Mariani Thierry +Metz Tilly +Strik Tineke +Berendsen Tom +Tom Vandendriessche +Frankowski Tomasz +Sokol Tomislav +Grant Valentino +Hayer Valerie +Flego Valter +Meimarakis Vangelis +Tax Vera +Veronika Vrecionová +Cramon-Taubadel Viola Von +Joron Virginie +Bilčík Vladimír +Jan Waszczykowski Witold +Zovko Željana +Achtsioglou Eftychia +- Aikaterini Alexopoulou Anastasia +Alexopoulou Christina +Amanatidis Georgios +- Arsenis Ilias Kriton +- Asimakopoulou Chaido Sofia +(Nasos) Athanasios Athanasiou +Athanasiou Charalampos +(Dora) Avgeri Theodora +- Avgerinopoulou Dionysia Theodora +- Alexandros Avlonitis Christos +Bakadima Foteini +(Fontas) Baraliakos Xenofon +Barkas Konstantinos +Biagkis Dimitrios +(Stella) Biziou Stergiani +Bougas Ioannis +Athanasios Bouras +Bournous Ioannis +- Boutsikakis Christoforos Emmanouil +Charakopoulos Maximos +(Alexis) Alexandros Charitsis +(Kostis) Chatzidakis Konstantinos +(Tasos) Anastasios Chatzivasileiou +(Themis) Cheimaras Themistoklis +Chionidis Savvas +Christidou Rallia +(Miltos) Chrysomallis Miltiadis +Athanasios Davakis +(Tasos) Anastasios Dimoschakis +(Noni) Dounia Panagiota +Dritsas Theodoros +Anna Efthymiou +Filis Nikolaos +Filippos Fortomas +Georgantas Georgios +(Nantia) Giannakopoulou Konstantina +(Marietta) - Giannakou Koutsikou Mariori +Christos Giannoulis +Giogiakas Vasileios +(Natasa) Anastasia Gkara +Gkiokas Ioannis +(Mika) Iatridi Tsampika +Igoumenidis Nikolaos +Dimitrios Kairidis +Georgios Kaminis +Kappatos Panagis +Karamanlis Konstantinos +(Froso) Eyfrosyni Karasarlidou +(Nina) Eirini Kasimati +Katrinis Michail +(Chara) Charoula Kefalidou +Keletsis Stavros +Christos Kellas +Emmanouil Konsolas +Konstantinopoulos Odysseas +Dimitrios Konstantopoulos +Andreas Koutsoumpas +Dimitrios Kouvelas +Konstantinos Kyranakis +Lazaridis Makarios +Leontaridis Theofilos +(Spilios) Livanos Spyridonas-Panagiotis +(Giannis) - Ioannis Loverdos Michail +(Zetta) Makri Zoi +(Charis) Charalampos Mamoulakis +Mantas Periklis +Georgia Martinou +Alexandros Meikopoulos +Andreas Michailidis +(Notis) Mitarachi Panagiotis +(Thanos) Athanasios Moraitis +Ioannis Mouzalas +Antonios Mylonakis +Andreas Nikolakopoulos +(Katerina) Aikaterini Notopoulou +Ioannis Oikonomou +Nikolaos Panagiotopoulos +Apostolos Panas +(Bampis) Charalampos Papadimitriou +(Sakis) Athanasios Papadopoulos +(Katerina) - Aikaterini Palioura Papakosta +Georgios Papandreou +Ioannis Pappas +Nikolaos Pappas +Andreas Patsis +(Peti) Perka Theopisti +Foteini Pipili +Athanasios Plevris +Andreas Poulas +Georgios Psychogios +Rapti Zoi +Maximos Senetakis +(Stratos) Efstratios Simopoulos +Asimina Skondra +(Mpetty) Elissavet Skoufa +(Panos) Panagiotis Skouroliakos +(Marilena) - Eleni Maria Soukouli Viliali +- Petros Spanakis Vasileios +Christos Spirtzis +Evripidis Stylianidis +Georgios Stylios +(Angelos) Evangelos Syrigos +Nikolaos Syrmalenios +Olympia Teligioridou +(Charis) Theocharis Theocharis +(Takis) Panagiotis Theodorikakos +Lazaros Tsavdaridis +Konstantinos Tsiaras +Angelos Tsigkris +(Spyros) Spyridon Tsilingiris +Dimitrios Tzanakopoulos +Konstantinos Tzavaras +Anna Vagena +Georgios Varoufakis Yanis +(Lakis) Vasileiadis Vasileios +Kyriakos Velopoulos +Christoforos Vernardakis +Konstantinos Vlasis +- Konstantinos Manousos Voloudakis +(Mariliza) - Eliza Maria Xenogiannakopoulou +Konstantinos Zachariadis +Chousein Zeimpek +Adrian Wüthrich +Alfred Heer +Aline Trede +Alois Gmür +Beat Jans +Benjamin Roduit +Brigitte Häberli-Koller +Bulliard-Marbach Christine +Daniel Frei +Diana Gutjahr +Campell Duri +Edith Graf-Litscher +Flavia Wasserfallen +Guy Parmelin +Brunner Hansjörg +Heinz Siegenthaler +Irène Kälin +Fluri Kurt +Fehlmann Laurence Rielle +Carobbio Guscetti Marina +Haab Martin +Mauro Tuena +Michael Töngi +Fernandez Nicolas Rochat +Nicolo Paganini +Gugger Niklaus-Samuel +Bruderer Pascale Wyss +Hegglin Peter +Kutter Philipp +Bregy Matthias Philipp +Regine Sauter +Cattaneo Rocco +Marti Samira +Bendahan Samuel +Simonetta Sommaruga +Schläpfer Therese +Courten De Thomas +Egger Thomas +Schneider Schüttel Ursula +Luginbühl Werner +Adam Koeverden Van +Alain Therrien +Alex Ruff +Alexis Brunelle-Duceppe +Anand Anita +Annie Koutrakis +Bardish Chagger +Brad Redekopp +Brad Vis +Chris D'Entremont +Chris Lewis +Christine Normandin +Churence Rogers +Claude Debellefeuille +Corey Tochor +Damien Kurek +Dan Mazier +Dave Epp +Denis Trudel +Derek Sloan +Doug Shipley +Duncan Eric +Eric Melillo +Gary Vidal +Ginette Petitpas Taylor +Greg Mclean +Dong Han +Heather Mcpherson +Helena Jaczek +Irek Kusmierczyk +Harris Jack +Jagmeet Singh +Battiste Jaime +Cumming James +Hallan Jasraj Singh +Jean Yip +Atwin Jenica +John Williamson +Julie Vignola +Chiu Kenny +Findlay Kerry-Lynne +Kristina Michaud +Collins Laurel +Gazan Leah +Lenore Zann +Lianne Rood +Lindsay Mathyssen +Chabot Louise +Desilets Luc +Maninder Sidhu +Dalton Marc +Lalonde Marie-France +Gaudreau Marie-Hélène +Mario Simard +Champoux Martin +Marty Morantz +Green Matthew +Blanchette-Joncas Maxime +Barrett Michael +Kram Michael +Kelloway Mike +Mumilaaq Qaqqaq +Lattanzio Patricia +Patrick Weiler +Manly Paul +Bendayan Rachel +Dancho Raquel +Bragdon Richard +Martel Richard +Moore Rob +Morrison Rob +Falk Rosemarie +Ryan Turnbull +Sameer Zuberi +Davidson Scot +Aitchison Scott +Lemire Sébastien +Savard-Tremblay Simon-Pierre +Ferrada Martinez Soraya +Bergeron Stéphane +Guilbeault Steven +Bérubé Sylvie +Jansen Tamara +Bachrach Taylor +Dowdall Terry +Louis Tim +Tim Uppal +Lukiwski Tom +Bynen Tony Van +Gray Tracy +Steinley Warren +Baker Yvan +Perron Yves +Blanchet Yves-François +Steggall Zali +Evans Trevor +Smith Tony +Jones Stephen +Phillip Thompson +Murphy Peta +Gorman Patrick +Conaghan Pat +Coker Libby +Allen Katie +Kate Thwaites +Burns Josh +Alexander John +James Stevens +Haines Helen +Gladys Liu +Ged Kearney +Fiona Phillips +Fiona Martin +Emma Mcbride +David Smith +Dave Sharma +Daniel Mulino +Anne Webster +Anika Wells +Alicia Payne +Tadeusz Zwiefka +Anna Maria Żukowska +Tomasz Zimoch +Benedykt Piotr Zientarski +Tomasz Zieliński +Urszula Zielińska +Bożena Żelazowska +Marcelina Zawisza +Sławomir Zawiślak +Adrian Zandberg +Paweł Zalewski +Michał Wypij +Adam Grzegorz Woźniak +Michał Woś +Agata Katarzyna Wojtyszek +Grzegorz Wojciechowski +Ryszard Wilczyński +Dariusz Wieczorek +Marta Wcisło +Piotr Wawrzyk +Jan Warzecha +Marcin Warchoł +Michał Urbaniak +Katarzyna Ueberhan +Krzysztof Tuduj +Mariusz Trepka +Tomasz Trela +Małgorzata Tracz +Krzysztof Tchórzewski +Szumowski Łukasz +Krzysztof Szulowski +Jan Szopiński +Andrzej Szewiński +Andrzej Szejna +Józefa Szczurek-Żelazko +Aleksandra Szczudło +Szczepański Wiesław +Franciszek Sterczewski +Magdalena Sroka +Anita Sowińska +Dobromir Sośnierz +Katarzyna Sójka +Agnieszka Soin +Krzysztof Sobolewski +Krzysztof Śmiszek +Sługocki Waldemar +Krystyna Skowrońska +Sipiera Zdzisław +Bartłomiej Sienkiewicz +Joanna Senyszyn +Saługa Wojciech +Jarosław Sachajko +Jarosław Rzepa +Paweł Rychlik +Marek Rutka +Grzegorz Rusiecki +Andrzej Rozenek +Rau Zbigniew +Małgorzata Prokop-Paczkowska +Porowska Violetta +Paweł Poncyljusz +Kacper Płażyński +Katarzyna Maria Piekarska +Monika Pawłowska +Karolina Pawliczak +Anna Paluch +Jacek Ozdoba +Dariusz Olszewski +Marcin Ociepa +Obaz Robert +Nowicka Wanda +Danuta Nowicka +Nowak Piotr Tomasz +Barbara Nowacka +Grzegorz Napieralski +Müller Piotr +Izabela Katarzyna Mrzygłocka +Czesław Mroczek +Mateusz Morawiecki +Aleksander Miszalski +Matysiak Paulina +Kazimierz Matuszny +Gabriela Masłowska +Jagna Marczułajtis-Walczak +Magdalena Maląg Marlena +Beata Maciejewska +Magdalena Łośko +Tomasz Ławniczak +Lasek Maciej +Kwitek Marek +Kwiatkowski Robert +Kulasek Marcin +Anita Kucharska-Dziedzic +Krzysztof Kubów +Kubiak Marta +Krutul Paweł +Katarzyna Kretkowska +Krawczyk Michał +Krajewski Stefan +Iwona Kozłowska Maria +Ewa Kozanecka +Janusz Kowalski +Kowal Paweł +Katarzyna Kotula +Kossakowski Wojciech +Kopiec Maciej +Konieczny Maciej +Dariusz Klimczak +Jan Kanthak +Kamiński Krystian +Kałużny Mariusz +Kaleta Sebastian +Kaleta Piotr +Filip Kaczyński +Dariusz Joński +Jaśkowiak Joanna +Jachira Klaudia +Arkadiusz Iwaniak +Hreniak Paweł +Grzegorz Hoffmann Zbigniew +Hardie-Douglas Jerzy +Gwóźdź Marcin +Andrzej Gut-Mostowy +Gróbarczyk Marek +Gramatyka Michał +Daria Gosek-Popiołek +Agnieszka Górska +Gontarz Robert +Głogowski Tomasz +Girzyński Zbigniew +Gill-Piątek Hanna +Anna Gembicka +Gdula Maciej +Gawkowski Krzysztof +Adam Gawęda +Galemba Leszek +Aleksandra Gajewska +Frysztak Konrad +Fogiel Radosław +Filiks Magdalena +Falej Monika +Emilewicz Jadwiga +Agnieszka Dziemianowicz-Bąk +Artur Dziambor +Drabek Przemysław +Dajczak Władysław +Czarzasty Włodzimierz +Arkadiusz Czartoryski +Czarnek Przemysław +Czarnecki Witold +Chorosińska Dominika +Buż Wiesław +Burzyńska Lidia +Bukowiec Stanisław +Braun Grzegorz +Bosak Krzysztof +Borys-Szopa Bożena +Borys Piotr +Bortniczuk Kamil +Bochenek Rafał +Bochenek Mateusz +Bielecki Jerzy +Berkowicz Konrad +Bartoszewski Teofil Władysław +Babalski Zbigniew +Ardanowski Jan Krzysztof +Aniśko Tomasz +Arens Josy +Bacquelaine Daniel +Bertels Jan +Briers Jan +Buyst Kim +Cogolati Samuel +Colebunders Gaby +Crombez John +Block De Maggie +Caluwé De Robby +Alexander Croo De +De Maegd Michel +De François Smet +De Pieter Spiegeleer +Dedecker Jean-Marie +Demir Zuhal +Depoorter Kathleen +Depoortere Ortwin +Depraetere Melissa +Caroline Désir +Dewulf Nathalie +Farih Nawal +André Flahaut +Francken Theo +Freilich Michael +Geens Koen +Frieda Gijbels +Erik Gilissen +Goblet Marc +Ingels Yngvild +Jambon Jan +Khattabi Zakia +Kherbache Yasmine +Christophe Lacroix +Christian Leysen +Goedele Liekens +Marghem Marie-Christine +Merckx Sofie +Mertens Peter +Charles Michel +Moutquin Simon +Annick Ponthier +Maxime Prévot +Patrick Prévot +Florence Reuter +Didier Reynders +Roggeman Tomas +Rohonyi Sophie +Darya Safai +Ellen Samyn +Sarah Schlitz +Jessika Soors +Caroline Taquin +Eliane Tillieux +Frank Troosters +Grieken Tom Van +Dries Langenhove Van +Lommel Reccino Van +Joris Vandenbroucke +Anja Vanrobaeys +Kris Verduyckt +Marianne Verhaert +Kathleen Verhelst +Vermeersch Wouter +Hans Verreyt +Albert Vicaire +Thierry Warmoes +Sophie Wilmès +Conde Santiago Abascal +Bassa Coll Montserrat +Ochoa Tirado Vicente +Bal Edmundo Francés +Choclán Macarena Olona +Echániz Ignacio José Salgado +Francisco Javier Ortega Smith-Molina +Cerdán León Santos +Chirosa Francisco Hervías Javier +López Patxi Álvarez +Joan Josep Nuet Pujals +De Marcos Quinto Romero +Borràs Castanyer Laura +Asens Jaume Llodrà +Antonio José Rodríguez Salas +Izquierdo Javier José Roncero +Carolina I Lozano Telechea +Cano Ignacio López +Alfonso Celis De Gómez Rodríguez +Ana Beltrán María Villalba +José Marín Simón +Alberto Casero Ávila +Alejandro Mur Soler +Echenique Pablo Robba +Patricia Perelló Rueda +Berja Laura Vega +Ignacio José Prendes Prendes +Ceballos Guijarro María +Ana Belén Casero Fernández +De Fernando Gómez Páramo +Figaredo José María Álvarez-Sala +César Pérez Sánchez +Elorza González Odón +Concicao De Garriga Ignacio Vaz +Cayetana De Peralta-Ramos Toledo Álvarez +Gerardo Pisarello Prados +Balbín Carla De Toscano +Ana Julián María Pastor +María Peinado Rosado Ángeles +María Muñoz Vidal +Ferrando Joan Mesquida +Aguayo Montesinos Pablo +Aguilar María Rosell Victoria +Crespín Rafaela Rubio +González Marta Vázquez +Belarra Ione Urteaga +García Gómez Valentín +Antonio José Martos Montilla +Antonio Gómez-Reino Varela +Martínez Ros Susana +Gil Irene María Montero +Funes Marrodán María +Baldoví Joan Roda +Costa Hernanz Sofía +Alcaraz Blanquer Patricia +Conesa Espejo-Saavedra José María +Andre Dioh Diouf Luc +Campo Carlos Juan Moreno +Ana González-Moro María Oramas +Giménez Giménez Sara +De De Espinosa Iván Los Monteros Simón +Del Manuel Real Sánchez Víctor +Arrimadas García Inés +Aizpurua Arzallus Mertxe +Fernández Isaura Leal +Gómez Hernández Héctor +Jódar Marisol Sánchez +Batet Lamaña Meritxell +Arangüena Fernández Pablo +Borrego Cortés Isabel María +Garcés Mario Sanagustín +Concepción Gamarra Ruiz-Clavijo +Francisco José Rodríguez Salazar +García Montse Mínguez +Díaz Guillermo Gómez +Franco José Manuel Pardo +Begoña Nasarre Oliva +Ferro Martínez María Valentina +Sultana Zarah +Chamberlain Wendy +Crosbie Virginia +Randall Tom +Hunt Tom +Clarke Theo +Owatemi Taiwo +Ali Tahir +Suzanne Webb +Anderson Stuart +Bonnar Steven +Flynn Stephen +Farry Stephen +Gale Roger Sir +Duncan Iain Sir Smith +Brady Graham Sir +Charles Sir Walker +Baillie Siobhan +Jupp Simon +Fell Simon +Baynes Simon +Bailey Shaun +Saxby Selaine +Benton Scott +Owen Sarah +Olney Sarah +Atherton Sarah +Britcliffe Sara +Bhatti Saqib +Sam Tarry +Hart Sally-Ann +Jones Ruth +Edwards Ruth +Millar Robin +Largan Robert +Moore Robbie +Rob Roberts +Butler Rob +Rishi Sunak +Richard Thomson +Hopkins Rachel +Barker Paula +Howell Paul +Holmes Paul +Bristow Paul +Owen Thompson +Blake Olivia +Dowden Oliver +Nicola Richards +Aiken Nickie +Fletcher Nick +Hanvey Neale +Mishra Navendu +Nadia Whittome +Munira Wilson +Marie Ms Rimmer +Elphicke Mrs Natalie +Drummond Flick Mrs +Morgan Mr Stephen +Holden Mr Richard +Jayawardena Mr Ranil +Bacon Gareth Mr +Dines Miss Sarah +Mick Whitley +Foy Kelly Mary +Jenkinson Mark +Eastwood Mark +Ferrier Margaret +Longhi Marco +Maggie Throup +Lia Nici +Anderson Lee +Farris Laura +Kirsten Oswald +Johnson Kim +Kenny Macaskill +Fletcher Katherine +Kate Osborne +Karl Mccartney +Julie Marson +Julian Sturdy +Joy Morrissey +Gullis Jonathan +John Nicolson +Finucane John +Gideon Jo +Jerome Mayhew +Jason Mccartney +Jane Stevenson +Hunt Jane +James Wild +James Sunderland +James Murray +Daly James +Jacob Young +Ahmad Imran Khan +Ian Paisley +Byrne Ian +Greg Smith +Gary Sambrook +Davies Gareth +Gagan Mohindra +Eshalomi Florence +Anderson Fleur +Clark Feryal +Buchan Felicity +Fay Jones +Colburn Elliot +Edward Timpson +Baker Duncan +Dr Hudson Neil +Dr Evans Luke +Dr Kieran Mullan +Dr Jamie Wallis +Davies Dr James +Dan Dr Poulter +Caroline Dr Johnson +Ben Dr Spencer +Davison Dehenna +Dean Russell +David Simmonds +David Johnston +Dave Doogan +Darren Henry +Danny Kruger +Damien Moore +Cooper Daisy +Craig Williams +Colum Eastwood +Claudia Webbe +Claire Hanna +Claire Coutinho +Christian Wakeford +Chris Loder +Chris Clarkson +Cherilyn Mackrory +Charlotte Nichols +Ansell Caroline +Carla Lockhart +Brendan Clarke-Smith +Beth Winter +Ben Everitt +Ben Bradley +Bell Ribeiro-Addy +Apsana Begum +Antony Higginbotham +Anthony Mangnall +Anthony Browne +Anne Mclaughlin +Angela Richardson +Andy Carter +Andrew Griffith +Amy Callaghan +Amanda Solloway +Allan Dorans +Alicia Kearns +Alexander Stafford +Alex Davies-Jones +Abena Oppong-Asare +Aaron Bell +Blimlinger Eva Mag. +Brandstätter Dr. Helmut +Brandstötter Henrike +Bürstmayr Georg Mag. +Disoski Mag. Meri +El-Nagashi Faika Mag. +Dr. Ernst-Dziedzic Ewa +Eypeltauer Felix Mag. +Fischer Mag. Ulrike +Ernst Gödl Mag. +Dr. Elisabeth Götze +Hamann Mag. Sibylle +Hammer Lukas +Elisabeth Herr Julia +Hofer Ing. Norbert +Douglas Hoyos-Trauttmansdorff +Jachs Johanna Mag. +Gerhard Kaniak Mag. +Herbert Kickl +Kirchbaumer Rebecca +Klaus Köchl +Köllner Ma Maximilian +Koza Mag. Markus +Katharina Kucharowits +Künsberg Mag. Martina Sarre +Laimer Robert +Lercher Maximilian +Ing. Litschauer Martin +Dr. Johannes Margreiter +Christoph Dr. Matznetter +Ba Maurer Sigrid +Josef Muchitsch +Barbara Neßler +Agnes Mag. Prammer Sirkka +Christian Mag. Ragger +Dr. Msc Pamela Rendi-Wagner +Gertraud Mmmag. Salzmann +Ralph Schallmeiner +Josef Schellhorn +Joachim Schnabel +Michael Schnedlitz +Ba Dr. Jakob Mag. Schwarz +Shetty Yannick +Rudolf Silvan +David Stögmüller +Mag. Nina Tomaselli +Dipl.-Ing. Olga Voglauer +Mag. Selma Yildirim +Süleyman Zorba +Aceves Galindo José Luis +Agirretxea Andoni Joseba Urresti +Aizcorbe José Juan Torra +Alcaraz Francisco José Martos +Alfonso Cendón Javier +Agustín Almodóbar Barceló +Alonso José Pérez Ángel +Alonso-Cuevillas I Jaume Sayrol +Beatriz Fanjul Álvarez +Andrés Añón Carmen +Anguita Omar Pérez +Aranda Francisco Vargas +Arribas Manuel Maroto +Baños Carmen Ruiz +Barandiaran Benito Íñigo +Bas Corugeira Javier +Accensi Bel Ferran +Betoret Coll Vicente +Boadella Esteve Genís +Borrás Mireia Pabón +Albert Botran Pahissa +Barco Bravo Eva +Bueno Campanario Eva Patricia +Caballero Gutiérrez Helena +Cabezón Casas Tomás +Antonio Callejas Cano Juan +Calvo Juan Liste Pablo +Calvo Carmen Poyato +Cambronero Pablo Piqueras +Cañadell Concep Salvia +Canales De Duque Gracia Mariana +Cañizares Inés María Pacheco +Carazo Eduardo Hermoso +Carcedo Luisa María Roces +Beatriz Carrillo De Los Micaela Reyes +Carvalho Dantas María +Casares Hontañón Pedro +Castellón Miguel Rubio Ángel +Cerqueiro González Javier +Chamorro Delmo Ricardo +Contreras Francisco José Peláez +Cortés Gómez Ismael +Cruz-Guzmán García María Soledad +Asua Cuatrecasas Juan +De Fernández Heras Las Patricia +De Llanos Luna Tobarra +De Meer Méndez Rocío +De Del Iscar Julio Valle +Del Emilio Jesús Rodríguez Valle +Carlos Durán José Peralta +Alicia Calonje Cristina Esteban +Antidio Campo Fagúndez +Andrea Benéitez Fernández +Fernández Hernández Pedro +Fernández Ríos Tomás +Fernández-Lomana Gutiérrez Rafael +Carlos Fernández-Roca Hugo Suárez +Carmona Franco Isabel +Bernardo Curbelo Fuentes Juan +Bugarín Diego Gago +Chavarría García María Montserrat +Díez García Joaquín María +García López Maribel +García Morís Roberto +Del García Mar María Puig +Alicia García Rodríguez +García Isabel Tejerina +Garrido Gutiérrez Pilar +Collado Gázquez Paloma +De Gestoso Luis Miguel +Caballero González Miguel Ángel +Coello De González Portugal Víctor +Carmen Del González Guinda María +Ariagona González Pérez +Cunillera Granollers Inés +Esteruelas Guaita Sandra +Guerra López Sonia +Guinart Lídia Moreno +Adolfo De Díaz Fernando Gutiérrez Otazu +Gutiérrez Indalecio Salinas +De Hispán Iglesias Pablo Ussel +Antonio Honrubia Hurtado Pedro +Dausà Illamola Mariona +García Iñarritu Jon +Jerez Juan Miguel Ángel +Jiménez Revuelta Rodrigo +Barrio Jiménez-Becerril María Teresa +José Rafael Vélez +Antonia Díaz Jover +Jesús Ledesma Martín Sebastián +Cid Fuensanta Lima +López María Teresa Álvarez +Domínguez Laura López +López Maraver Ángel +Gema López Somoza +Cristina López Zamora +Andrés Lorite Lorite +Fernández José Losada +Maestro Moliner Roser +Manso Olivar Rubén Silvano +Domínguez Marcos Pilar +Joan Margall Sastre +Klose Marí Pau +Manuel Mariscal Zabala +Guerrero María Márquez +Domínguez Marra María Ángeles +Carmen Granados Martínez María +Isidro Manuel Martínez Oblanca +De García Jalón Matute Oskar +José María Mazón Ramos +María Medel Pérez Rosa +Lourdes Monasterio Méndez +Javier Martínez Merino +Barea Manuel Mestre +Cuadrado Jesús María Montero +De Macarena Miguel Montesinos +Gómez María Moraleja Tristana +Dalda Lucía Muñoz +Bandera Dolores María Narváez +Gómez Julio Navalpotro +López Navarro Pedro +Campo Del Magdalena María Nevado +Camero I Míriam Nogueras +Inmaculada López María Oria +Galván José Ortiz +Esther Padilla Ruiz +Miguel Núñez Paniagua Ángel +Pedraja Raquel Sáinz +Juan Luis Molina Pedreño +Abellás Adolfo Pérez +Auxiliadora Díaz María Pérez +Maya Píriz Valentín Víctor +Carmen Cárdenes Del María Pita +Ana Nieto Prieto +Margarita Prohens Rigo +Farré I Norma Pujol +María Pilar Ramallo Vázquez +Arnau Carner Ramírez +Del José Ramírez Río +César Esteban Joaquín Ramos +José Luis Ramos Rodríguez +Calvillo De La María O Redondo +Candamil Néstor Rego +Germán Martínez Renau +Jesús Novoa Pedro Requejo +Carmen Regadera Riolobos +Joaquín López Robles +Alberto Almeida Andrés Rodríguez +Elvira Herrer María Rodríguez +De Los María Reyes Romero Vilches +Agustín Castro De Fernández Rosety +I Marta Rosique Saltor +De Iñaki Pinedo Ruiz Undiano +Cabeza De La María Ruiz Solás +Marisa Muñoz Saavedra +Inés Nadal Sabanés +Alonso-Muñumer Pablo Sáez +Idoia Sagastizabal Unzetabarrenetxea +Pedro Pérez-Castejón Sánchez +Herminio Rufino Sancho Íñiguez +Luis Ruiz Santamaría +Enrique Fernando Romero Santiago +Manuel Morell Sarrià Vicent +López Sayas Sergio +Daniel Oraá Senderos +Francisco Juan Martínez Serrano +Ruiz Seva Yolanda +Burillo Juan Luis Soto +Juan Luis Olmedillas Steegmann +Georgina Gil Trías +Bengoechea Edurne Uriarte +Roberto Torrealday Uriarte +Cordero Magdalena Valerio +Balañà Pilar Vallugera +Cantenys Mireia Vehí +Gómez Martina Velarde +Daniel Vicente Viondi +Luisa María Ruiz Vilches +Noemí Quero Villagrasa +Carlos García-Raez José Zambrano +Violet-Anne Wynne +Murphy Verona +Gould Thomas +Matthews Steven +Clarke Sorca +Fearghaíl Seán Ó +Murchú Ruairí Ó +Conway-Walsh Rose +O'Gorman Roderic +O'Donoghue Richard +Cronin Réada +Mcauliffe Paul +Donnelly Paul +Costello Patrick +O'Sullivan Pádraig +Lochlainn Mac Pádraig +Ossian Smyth +Hourigan Neasa +Neale Richmond +Mcnamara Michael +Collins Michael +Matt Shanahan +Butler Mary +Browne Martin +Mark Ward +Cathasaigh Marc Ó +Malcolm Noonan +Farrell Mairéad +Kieran O'Donnell +Johnny Mythen +Guirke Johnny +Joe O'Brien +Flaherty Joe +Jennifer Whitmore +Jennifer Murnane O'Connor +Carroll Jennifer Macneill +James O'Connor +Cairns Holly +Ged Nash +Gannon Gary +Feighan Frankie +Duffy Francis Noel +Emer Higgins +Duncan Smith +Darren O'Rourke +Cormac Devlin +Burke Colm +Claire Kerrane +Cian O'Callaghan +Christopher O'Sullivan +Andrews Chris +Cathal Crowe +Berry Cathal +Bríd Smith +Brian Leddin +Aodhán Ríordáin Ó +Alan Dillon +Andrew Bayly +Belich Camilla +Bennett Glen +Boyack Rachel +Brooking Rachel +Brownlee Gerry +Chen Naisi +Court Simon +Craig Liz +Barbara Edmonds +Ghahraman Golriz +Halbert Shanan +Jackson Willie +Anahila Kanongata'A-Suisuiki +Elizabeth Kerekere +Ingrid Leary +Lewis Steph +Anna Lorck +Chris Luxon +James Mcdowall +Mclellan Tracey +March Menéndez Ricardo +Debbie Ngarewa-Packer +Ngobi Terisa +Greg O’Connor +Ibrahim Omer +Pallett Sarah +Chris Penk +Priyanca Radhakrishnan +Angela Roberts +Deborah Russell +Gaurav Sharma +Erica Stanford +Teanau Tuiono +Tangi Utikere +Brooke Van Velden +Ayesha Verrall +Rawiri Waititi +Vanushi Walters +Angie Clark Warren +Simon Watts +Helen White +Arena Williams +Nicola Willis +Auchincloss Jake +Bentz Cliff +Bice I. Stephanie +Bishop Dan +Boebert Lauren +Bourdeaux Carolyn +Bowman Jamaal +Bush Cori +Cammack Kat +Carl Jerry L. +Cawthorn Madison +Andrew Clyde S. +Byron Donalds +Fallon Pat +Feenstra Randy +Fischbach Michelle +Fitzgerald Scott +C. Franklin Scott +Andrew Garbarino R. +Garcia Mike +A. Carlos Gimenez +Gonzales Tony +González-Colón Jenniffer +Bob Good +Greene Marjorie Taylor +Diana Harshbarger +Herrell Yvette +Ashley Hinson +Jackson Ronny +Chris Jacobs +Jacobs Sara +Jones Mondaire +Kahele KaialiʻI +Fred Keller +Kim Young +Jake Laturner +Fernandez Leger Teresa +Mace Nancy +Malliotakis Nicole +Mann Tracey +E. Kathy Manning +C. Lisa Mcclain +Meijer Peter +Kweisi Mfume +E. Mary Miller +Mariannette Miller-Meeks +Barry Moore +Blake D. Moore +Frank J. Mrvan +E. Nehls Troy +Marie Newman +Jay Obernolte +Burgess Owens +August Pfluger +M. Matthew Rosendale +Deborah K. Ross +Elvira Maria Salazar +F. Michael Nicolas Q. San +Jan Schakowsky +Spartz Victoria +Michelle Steel +Marilyn Strickland +P. Thomas Tiffany +Ritchie Torres +Beth Duyne Van +Nikema Williams +Ron- Vacancy Wright \ No newline at end of file diff --git a/backend/people.csv b/backend/people.csv new file mode 100644 index 000000000..0500ca2af --- /dev/null +++ b/backend/people.csv @@ -0,0 +1,9274 @@ +name,member_id,party_id,pol_group_id,party_pol_group_id,chamber,uid,party,name_link,function,region,constituency,scraper_url,date_of_inactivity,country,country_id,legislative_period_id,mp_party_id +Luther Strange,0,0,,0,Senate,"['829794295355940864']",Republican,https://www.strange.senate.gov/,"['Class II']",AL,,https://www.senate.gov/senators/contact/,2021-01-03,United States,25,2,61620 +John Kennedy,"11429, 1",0,,0,Senate,"['816683274076614528', '816683274076614656']",Republican,https://www.kennedy.senate.gov/,"['Class III']",LA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"41, 2",61620 +Catherine Cortez Masto,"11401, 2",1,,0,Senate,"['811313565760163840', '811313565760163844']",Democrat,https://www.cortezmasto.senate.gov/,"['Class III']",NV,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"41, 2",61320 +Thom Tillis,"11470, 3",0,,0,Senate,"['2964174789']",Republican,https://www.tillis.senate.gov/,"['Class II']",NC,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Mike Rounds,"4, 11454",0,,0,Senate,"['2955485182']",Republican,https://www.rounds.senate.gov/,"['Class II']",SD,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Dan Sullivan,"11467, 5",0,,0,Senate,"['2891210047']",Republican,https://www.sullivan.senate.gov/,"['Class II']",AK,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +David Perdue,"11446, 6",0,,0,Senate,"['1397501864', '2863210809']",Republican,https://www.perdue.senate.gov/,"['Class II']",GA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"41, 2",61620 +Ernst Joni,"7, 11410",0,,0,Senate,"['2856787757']",Republican,https://www.ernst.senate.gov/,"['Class II']",IA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Ben Sasse,"8, 11457",0,,0,Senate,"['1480852568']",Republican,https://www.sasse.senate.gov/,"['Class II']",NE,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Brian Schatz,"11458, 9",1,,0,Senate,"['1262099252', '47747074']",Democrat,https://www.schatz.senate.gov/,"['Class III']",HI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"41, 2",61320 +Mcconnell Mitch,"11437, 10",0,,0,Senate,"['1249982359']",Republican,https://www.mcconnell.senate.gov/,"['Class II']",KY,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +E. James Risch,"11450, 11",0,,0,Senate,"['1096059529']",Republican,https://www.risch.senate.gov/,"['Class II']",ID,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Heinrich Martin,"12, 11420",1,,0,Senate,"['1099199839']",Democrat,https://www.heinrich.senate.gov/,"['Class I']",NM,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Baldwin Tammy,"13, 11381",1,,0,Senate,"['1074518754']",Democrat,https://www.baldwin.senate.gov/,"['Class I']",WI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Cruz Ted,"11405, 14",0,,0,Senate,"['1074480192']",Republican,https://www.cruz.senate.gov/,"['Class I']",TX,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61620 +Deb Fischer,"15, 11412",0,,0,Senate,"['1071402577']",Republican,https://www.fischer.senate.gov/,"['Class I']",NE,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61620 +Angus Jr. King S.,"16, 11430",2,,0,Senate,"['1068481578']",Independent,https://www.king.senate.gov/,"['Class I']",ME,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41", +Heidi Heitkamp,17,1,,0,Senate,"['1061029050']",Democrat,https://www.heitkamp.senate.gov/,"['Class I']",ND,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61320 +Duckworth Tammy,"11407, 18",1,,0,Senate,"['1058520120']",Democrat,https://www.duckworth.senate.gov/,"['Class III']",IL,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Elizabeth Warren,"11475, 19",1,,0,Senate,"['970207298']",Democrat,https://www.warren.senate.gov/,"['Class I']",MA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Cotton Tom,"20, 11402",0,,0,Senate,"['968650362']",Republican,https://www.cotton.senate.gov/,"['Class II']",AR,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Hassan Margaret Wood,"21, 11418",1,,0,Senate,"['946549322']",Democrat,https://www.hassan.senate.gov/,"['Class III']",NH,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Crapo Mike,"11404, 22",0,,0,Senate,"['600463589']",Republican,https://www.crapo.senate.gov/,"['Class III']",ID,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Cochran Thad,23,0,,0,Senate,"['555474658']",Republican,https://www.cochran.senate.gov/,"['Class II']",MS,,https://www.senate.gov/senators/contact/,2021-01-03,United States,25,2,61620 +Jon Tester,"24, 11468",1,,0,Senate,"['515822213']",Democrat,https://www.tester.senate.gov/,"['Class I']",MT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Jack Reed,"11449, 25",1,,0,Senate,"['486694111']",Democrat,https://www.reed.senate.gov/,"['Class II']",RI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Dianne Feinstein,"26, 11411",1,,0,Senate,"['476256944']",Democrat,https://www.feinstein.senate.gov/,"['Class I']",CA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Graham Lindsey,"11415, 27",0,,0,Senate,"['432895323']",Republican,https://www.lgraham.senate.gov/,"['Class II']",SC,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Hoeven John,"28, 11422",0,,0,Senate,"['382791093']",Republican,https://www.hoeven.senate.gov/,"['Class III']",ND,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +John Thune,"29, 11469",0,,0,Senate,"['296361085']",Republican,https://www.thune.senate.gov/,"['Class III']",SD,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Murray Patty,"30, 11444",1,,0,Senate,"['293131808']",Democrat,https://www.murray.senate.gov/,"['Class III']",WA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +B. Enzi Michael,"11409, 31",0,,0,Senate,"['291756142']",Republican,https://www.enzi.senate.gov/,"['Class II']",WY,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Blumenthal Richard,"11385, 32",1,,0,Senate,"['278124059']",Democrat,https://www.blumenthal.senate.gov/,"['Class III']",CT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Dean Heller,33,0,,0,Senate,"['266133081']",Republican,https://www.heller.senate.gov/,"['Class I']",NV,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61620 +F. Roger Wicker,"11477, 34",0,,0,Senate,"['264219447']",Republican,https://www.wicker.senate.gov/,"['Class I']",MS,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61620 +G. Hatch Orrin,35,0,,0,Senate,"['262756641']",Republican,https://www.hatch.senate.gov/,"['Class I']",UT,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61620 +Ron Wyden,"11478, 36",1,,0,Senate,"['250188760']",Democrat,https://www.wyden.senate.gov/,"['Class III']",OR,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Carper R. Thomas,"11395, 37",1,,0,Senate,"['249787913']",Democrat,https://www.carper.senate.gov/,"['Class I']",DE,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Durbin J. Richard,"11408, 38",1,,0,Senate,"['247334603']",Democrat,https://www.durbin.senate.gov/,"['Class II']",IL,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +J. Leahy Patrick,"39, 11433",1,,0,Senate,"['242836537']",Democrat,https://www.leahy.senate.gov/,"['Class III']",VT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Sheldon Whitehouse,"40, 11476",1,,0,Senate,"['242555999']",Democrat,https://www.whitehouse.senate.gov/,"['Class I']",RI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +C. Gary Peters,"41, 11447",1,,0,Senate,"['236511574']",Democrat,https://www.peters.senate.gov/,"['Class II']",MI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Cory Gardner,"42, 11413",0,,0,Senate,"['235217558']",Republican,https://www.gardner.senate.gov/,"['Class II']",CO,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Todd Young,"11479, 43",0,,0,Senate,"['234128524']",Republican,https://www.young.senate.gov/,"['Class III']",IN,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Iii Joe Manchin,"11435, 44",1,,0,Senate,"['234374703']",Democrat,https://www.manchin.senate.gov/,"['Class I']",WV,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Johnson Ron,"45, 11426",0,,0,Senate,"['233737858']",Republican,https://www.ronjohnson.senate.gov/,"['Class III']",WI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +James Lankford,"11432, 46",0,,0,Senate,"['225921757']",Republican,https://www.lankford.senate.gov/,"['Class III']",OK,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Bennet F. Michael,"11383, 47",1,,0,Senate,"['224285242']",Democrat,https://www.bennet.senate.gov/,"['Class III']",CO,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +J. Patrick Toomey,"11471, 48",0,,0,Senate,"['26062385', '221162525']",Republican,https://www.toomey.senate.gov/,"['Class III']",PA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"41, 2",61620 +Scott Tim,"11461, 49",0,,0,Senate,"['217543151']",Republican,https://www.scott.senate.gov/,"['Class III']",SC,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Paul Rand,"11445, 50",0,,0,Senate,"['216881337']",Republican,https://www.paul.senate.gov/,"['Class III']",KY,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Donnelly Joe,51,1,,0,Senate,"['216503958']",Democrat,https://www.donnelly.senate.gov/,"['Class I']",IN,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61320 +Barrasso John,"52, 11382",0,,0,Senate,"['202206694']",Republican,https://www.barrasso.senate.gov/,"['Class I']",WY,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61620 +Capito Moore Shelley,"11393, 53",0,,0,Senate,"['193794406']",Republican,https://www.capito.senate.gov/,"['Class II']",WV,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Kaine Tim,"11428, 54",1,,0,Senate,"['172858784']",Democrat,https://www.kaine.senate.gov/,"['Class I']",VA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Casey Jr. P. Robert,"11396, 55",1,,0,Senate,"['171598736']",Democrat,https://www.casey.senate.gov/,"['Class I']",PA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Christopher Murphy,"11443, 56",1,,0,Senate,"['150078976']",Democrat,https://www.murphy.senate.gov/,"['Class I']",CT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Cantwell Maria,"11392, 57",1,,0,Senate,"['117501995']",Democrat,https://www.cantwell.senate.gov/,"['Class I']",WA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Jeanne Shaheen,"58, 11462",1,,0,Senate,"['109287731']",Democrat,https://www.shaheen.senate.gov/,"['Class II']",NH,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Benjamin Cardin L.,"59, 11394",1,,0,Senate,"['109071031']",Democrat,https://www.cardin.senate.gov/,"['Class I']",MD,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Hirono K. Mazie,"60, 11421",1,,0,Senate,"['92186819']",Democrat,https://www.hirono.senate.gov/,"['Class I']",HI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Lee Mike,"61, 11434",0,,0,Senate,"['88784440']",Republican,https://www.lee.senate.gov/,"['Class III']",UT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Isakson Johnny,"62, 11425",0,,0,Senate,"['78403308']",Republican,https://www.isakson.senate.gov/,"['Class III']",GA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Alexander Lamar,"63, 11380",0,,0,Senate,"['76649729']",Republican,https://www.alexander.senate.gov/,"['Class II']",TN,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Debbie Stabenow,"64, 11466",1,,0,Senate,"['76456274']",Democrat,https://www.stabenow.senate.gov/,"['Class I']",MI,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Pat Roberts,"11451, 65",0,,0,Senate,"['75364211']",Republican,https://www.roberts.senate.gov/,"['Class II']",KS,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Bob Corker,66,0,,0,Senate,"['73303753']",Republican,https://www.corker.senate.gov/,"['Class I']",TN,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61620 +E. Gillibrand Kirsten,"11414, 67",1,,0,Senate,"['72198806']",Democrat,https://www.gillibrand.senate.gov/,"['Class I']",NY,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Tom Udall,"11472, 68",1,,0,Senate,"['60828944']",Democrat,https://www.tomudall.senate.gov/,"['Class II']",NM,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Bill Cassidy,"69, 11397",0,,0,Senate,"['55677432']",Republican,https://www.cassidy.senate.gov/,"['Class II']",LA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Brown Sherrod,"11390, 70",1,,0,Senate,"['43910797']",Democrat,https://www.brown.senate.gov/,"['Class I']",OH,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Amy Klobuchar,"71, 11431",1,,0,Senate,"['33537967']",Democrat,https://www.klobuchar.senate.gov/,"['Class I']",MN,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +D. Harris Kamala,"11417, 72",1,,0,Senate,"['30354991']",Democrat,https://www.harris.senate.gov/,"['Class III']",CA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Bernard Sanders,"73, 11456",2,,0,Senate,"['29442313']",Independent,https://www.sanders.senate.gov/,"['Class I']",VT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41", +Jeff Merkley,"74, 11440",1,,0,Senate,"['29201047']",Democrat,https://www.merkley.senate.gov/,"['Class II']",OR,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Edward J. Markey,"11436, 75",1,,0,Senate,"['21406834']",Democrat,https://www.markey.senate.gov/,"['Class II']",MA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Blunt Roy,"11386, 76",0,,0,Senate,"['21269970']",Republican,https://www.blunt.senate.gov/,"['Class III']",MO,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Burr Richard,"11391, 77",0,,0,Senate,"['21157904']",Republican,https://www.burr.senate.gov/,"['Class III']",NC,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +C. Richard Shelby,"11463, 78",0,,0,Senate,"['21111098']",Republican,https://www.shelby.senate.gov/,"['Class III']",AL,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Bill Nelson,79,1,,0,Senate,"['20597460']",Democrat,https://www.billnelson.senate.gov/,"['Class I']",FL,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61320 +Inhofe James M.,"80, 11424",0,,0,Senate,"['7270292', '20546536']",Republican,https://www.inhofe.senate.gov/,"['Class II']",OK,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"41, 2",61620 +Collins M. Susan,"81, 11398",0,,0,Senate,"['19726613']",Republican,https://www.collins.senate.gov/,"['Class II']",ME,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +John Mccain,82,0,,0,Senate,"['19394188']",Republican,https://www.mccain.senate.gov/,"['Class III']",AZ,,https://www.senate.gov/senators/contact/,2023-01-03,United States,25,2,61620 +Portman Rob,"83, 11448",0,,0,Senate,"['18915145']",Republican,https://www.portman.senate.gov/,"['Class III']",OH,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Menendez Robert,"84, 11439",1,,0,Senate,"['18695134']",Democrat,https://www.menendez.senate.gov/,"['Class I']",NJ,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2019-01-03,United States,25,"2, 41",61320 +Jerry Moran,"85, 11441",0,,0,Senate,"['18632666']",Republican,https://www.moran.senate.gov/,"['Class III']",KS,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Chris Hollen Van,"11473, 86",1,,0,Senate,"['18137749']",Democrat,https://www.vanhollen.senate.gov/,"['Class III']",MD,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Lisa Murkowski,"87, 11442",0,,0,Senate,"['18061669']",Republican,https://www.murkowski.senate.gov/,"['Class III']",AK,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Charles E. Schumer,"11459, 88",1,,0,Senate,"['17494010']",Democrat,https://www.schumer.senate.gov/,"['Class III']",NY,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61320 +Claire Mccaskill,89,1,,0,Senate,"['16160352']",Democrat,https://www.mccaskill.senate.gov/,"['Class I']",MO,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61320 +Flake Jeff,90,0,,0,Senate,"['16056306']",Republican,https://www.flake.senate.gov/,"['Class I']",AZ,,https://www.senate.gov/senators/contact/,2019-01-03,United States,25,2,61620 +A. Booker Cory,"11387, 91",1,,0,Senate,"['15808765']",Democrat,https://www.booker.senate.gov/,"['Class II']",NJ,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Marco Rubio,"11455, 92",0,,0,Senate,"['15745368']",Republican,https://www.rubio.senate.gov/,"['Class III']",FL,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +A. Christopher Coons,"11399, 93",1,,0,Senate,"['15324851']",Democrat,https://www.coons.senate.gov/,"['Class II']",DE,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Cornyn John,"11400, 94",0,,0,Senate,"['13218102']",Republican,https://www.cornyn.senate.gov/,"['Class II']",TX,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Daines Steve,"95, 11406",0,,0,Senate,"['11651202']",Republican,https://www.daines.senate.gov/,"['Class II']",MT,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61620 +Chuck Grassley,"11416, 96",0,,0,Senate,"['10615232']",Republican,https://www.grassley.senate.gov/,"['Class III']",IA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Mark R. Warner,"97, 11474",1,,0,Senate,"['7429102']",Democrat,https://www.warner.senate.gov/,"['Class II']",VA,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2021-01-03,United States,25,"2, 41",61320 +Al Franken,98,1,,0,Senate,"['7334402']",Democrat,https://www.franken.senate.gov/,"['Class II']",MN,,https://www.senate.gov/senators/contact/,2021-01-03,United States,25,2,61320 +Boozman John,"99, 11388",0,,0,Senate,"['5558312']",Republican,https://www.boozman.senate.gov/,"['Class III']",AR,,"https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC, https://www.senate.gov/senators/contact/",2023-01-03,United States,25,"2, 41",61620 +Aguilar Pete,"10943, 16687, 100",1,,0,Parliament,"['41533245', '3018670151']",Democrat,https://pbs.twimg.com/profile_images/1338506082352848897/7RXoCUkU_normal.jpg,"['Appropriations', 'House Administration']", ['Appropriations']","California, California",California 31st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Austin Scott,"17046, 101, 11296",0,,0,Parliament,"['234797704']",Republican,https://pbs.twimg.com/profile_images/1081244884747587584/-1aghkni_normal.jpg,"['Armed Services', 'Agriculture']","Georgia, Georgia",Georgia 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Bennie G. Thompson,"11330, 17080, 102",1,,0,Parliament,"['82453460']",Democrat,https://pbs.twimg.com/profile_images/1297628292602896385/dWYSnYfu_normal.jpg,"['Homeland Security']","Mississippi, Mississippi",Mississippi 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Asunción Concha De García-Mauriño Jacoba La María Pía,"6235, 6879, 4110, 13022, 5282, 8505, 10914, 13577, 8457, 3173, 16653, 3897, 11286, 3998, 5251, 9744, 4521, 14875, 8499, 10261, 3973, 14447, 16392, 12681, 7785, 13110, 10769, 13754, 2743, 3878, 7359, 7341, 14075, 7642, 3729, 605, 3863, 2366, 4007, 3505, 4343, 16002, 8734, 9978, 6892, 15907, 2728, 5205, 13824, 7840, 4582, 2890, 6859, 7358, 13440, 10291, 16380, 2818, 12937, 15960, 12726, 2896, 9956, 4657, 9691, 15079, 1336, 4194, 4287, 10596, 7312, 6015, 7705, 13928, 5467, 6841, 3485, 4593, 5258, 6247, 13717, 8801, 12960, 6639, 6868, 7753, 8535, 7344, 5972, 7732, 12947, 2446, 14809, 14864, 5132, 5389, 8768, 5516, 8728, 5122, 8465, 13782, 13799, 2546, 4510, 7980, 3235, 14940, 1324, 10038, 2757, 2830, 13416, 5230, 3045, 9750, 9705, 9778, 16641, 3890, 5284, 2819, 5644, 8680, 3484, 2620, 9429, 10082, 13854, 7768, 15291, 1485, 6267, 15608, 2419, 2811, 7770, 6342, 7802, 10737, 13102, 2461, 3533, 8809, 5159, 6829, 2984, 1392, 2480, 13322, 8556, 13513, 2908, 8743, 2452, 6822, 6903, 9727, 8422, 12556, 1119, 3975, 15922, 14892, 9840, 7645, 13255, 7746, 5197, 14721, 15542, 15297, 4823, 2414, 5198, 6365, 8602, 2498, 8190, 13766, 3908, 9520, 9712, 2541, 4319, 10798, 2638, 5924, 13588, 5200, 15235, 4831, 5201, 2891, 16922, 9834, 14252, 7891, 5207, 10248, 1318, 1425, 10188, 9797, 5496, 7929, 3049, 3087, 6828, 5225, 5152, 10792, 7310, 13561, 15219, 16048, 7790, 2705, 5688, 2875, 636, 15988, 10201, 8440, 9733, 9835, 4308, 16027, 3879, 6237, 3426, 7848, 14528, 8549, 5650, 8542, 12692, 15917, 10770, 2518, 4340, 7289, 10716, 13788, 7737, 10893, 8803, 9766, 3497, 15838, 9426, 5164, 7907, 2828, 13751, 9760, 12891, 6309, 9939, 8561, 14424, 3791, 5532, 13634, 5264, 8739, 1312, 5156, 11489, 4426, 8520, 6873, 14862, 6293, 13449, 8775, 5281, 2809, 5767, 13902, 15216, 13565, 4084, 13607, 3529, 5137, 10119, 13213, 14309, 15762, 5109, 2451, 16014, 8579, 7321, 9740, 5118, 10187, 6844, 3899, 4547, 8458, 6846, 4021, 7844, 14733, 2988, 8330, 3544, 1156, 2686, 9436, 4443, 6840, 6238, 9694, 3406, 7934, 10007, 6886, 12636, 5138, 2690, 6827, 2591, 2783, 9749, 2496, 2858, 5095, 14959, 3992, 9908, 4808, 8414, 7965, 7793, 9846, 13860, 5412, 8551, 5171, 9887, 6861, 13459, 10205, 7297, 13966, 5253, 13533, 14770, 16045, 9465, 13527, 3494, 13970, 7955, 2529, 2874, 6837, 284, 2733, 5673, 6823, 13175, 16047, 14616, 4759, 4303, 8740, 10747, 15987, 15924, 9770, 15927, 7727, 2463, 2957, 15220, 7882, 15805, 14176, 8469, 5475, 8483, 2371, 6285, 8486, 14578, 7862, 6905, 15481, 9721, 15974, 7927, 12944, 10080, 10804, 13573, 3061, 8771, 7352, 10852, 7896, 2330, 3903, 12999, 7922, 16034, 6924, 2714, 7993, 3068, 7949, 14895, 16046, 7857, 2373, 7819, 13559, 14634, 13687, 10748, 14445, 15992, 9808, 5283, 13874, 9407, 7797, 7916, 16053, 2888, 5202, 4615, 2835, 7707, 4257, 16042, 7263, 6327, 13905, 3936, 5239, 8733, 15943, 11494, 4244, 5257, 13648, 9514, 9898, 2482, 9699, 6874, 103, 2222, 10607, 4249, 7970, 5199, 11503, 10756, 7307, 9517, 8525, 10247, 9919, 10727, 12784, 3912, 9921, 4490, 3859, 13465, 13968, 10171, 5217, 10750, 12563, 15995, 5748, 7683, 4070, 598, 5193, 14503, 15050, 7248, 2808, 8714, 13586, 10899, 13742, 5099, 8510, 5825, 5408, 8594, 9783, 2631, 14832, 5396, 4544, 8591, 2878, 10020, 13390, 2887, 4598, 6297, 6842, 10608, 5356, 4002, 3542, 8446, 15286, 1564, 7971, 2475, 5768, 13294, 8765, 5765, 7765, 15977, 4715, 13659, 13794, 4256, 7901, 5181, 13186, 7801, 5179, 12428, 8447, 7713, 3518, 8449, 7757, 5233, 6298, 14880, 9718, 7351, 15912, 7871, 9839, 9934, 7858, 1120, 2360, 14894, 7883, 8756, 15211, 3178, 6826, 8738, 4024, 10093, 6897, 8491, 6129, 3199, 8708, 8730, 9940, 3134, 2637, 4072, 6902, 7731, 2114, 4685, 1406, 1323, 5792, 8503, 9710, 5240, 7808, 10838, 15466, 1366, 5795, 14887, 5210, 2889, 4233, 7942, 4080, 4670, 3894, 15296, 4699, 8485, 8454, 15634, 8528, 7762, 5208, 5220, 12539, 14653, 4223, 7722, 2372, 2495, 14855, 8470, 13791, 5286, 13618, 4851, 13767, 12980, 13683, 16158, 5106, 2612, 14219, 2585, 7706, 13537, 7810, 1272, 5254, 5627, 10721, 12867, 7800, 14818, 1327, 13541, 8443, 11650, 14696, 3088, 8442, 5294, 14715, 12444, 2634, 15460, 15561, 8676, 8527, 2549, 7717, 4022, 6279, 15872, 13706, 4878, 16041, 7943, 13792, 7864, 4144, 13761, 6248, 13251, 2771, 10113, 12685, 13545, 3926, 4611, 4092, 9754, 14891, 7778, 2798, 2354, 2350, 3877, 6431, 8641, 15511, 13341, 5952, 6852, 7675, 5576, 12544, 4565, 9438, 4691, 4120, 11677, 16362, 2954, 7894, 10086, 8588, 4654, 8562, 8781, 10909, 5115, 13849, 7745, 5275, 8744, 4427, 9819, 726, 7323, 9696, 3902, 15240, 2738, 14565, 7763, 14660, 4602, 7347, 2352, 8516, 9572, 2632, 4077, 4114, 3888, 13715, 3430, 10810, 1027, 6328, 7353, 3580, 8475, 1545, 8613, 15000, 4382, 9735, 3282, 3074, 3662, 13740, 8802, 10016, 9755, 13859, 4074, 2349, 7325, 3900, 4259, 5149, 9656, 7911, 6551, 7982, 8808, 7761, 10063, 10249, 14629, 4290, 8704, 10631, 4827, 13704, 2656, 9818, 14158, 7716, 7744, 2701, 4811, 8755, 13486, 2645, 14068, 14430, 2749, 10024, 3826, 10045, 2761, 3996, 15983, 8595, 4472, 6847, 7868, 10891, 5791, 3153, 12842, 6881, 13024, 2936, 3994, 9738, 6318, 16009, 3977, 12524, 13498, 14971, 5191, 8729, 10151, 14487, 8433, 7741, 9805, 14326, 3337, 8601, 8710, 3186, 13949, 7795, 10109, 6867, 7718, 2552, 8713, 8807, 15496, 9788, 10882, 3916, 7979, 13916, 14624, 14515, 6282, 3526, 9746, 1297, 643, 4752, 3881, 15049, 4199, 1358, 8432, 4334, 13019, 5781, 4115, 7671, 7931, 15930, 3928, 9739, 16258, 5234, 7863, 7845, 10786, 5128, 7686, 10753, 7892, 3474, 3570, 15438, 10262, 10796, 7940, 2608, 9701, 10883, 12482, 2778, 6289, 14032, 13591, 2903, 2575, 2703, 10111, 2868, 5922, 10637, 6034, 8455, 8467, 13675, 2653, 14355, 4087, 4228, 13729, 12755, 2699, 2848, 9969, 15663, 3594, 9933, 4175, 5237, 3987, 16330, 8434, 9711, 12631, 4887, 7754, 7936, 9796, 4107, 14336, 4082, 6857, 12979, 4768, 5117, 14871, 4723, 13328, 14256, 4686, 14921, 7704, 9941, 12897, 4425, 1588, 8617, 2660, 9437, 13927, 8732, 2938, 3450, 7818, 5990, 2683, 8798, 2671, 8656, 13461, 4577, 16581, 13631, 7803, 7912, 1302, 6213, 13822, 6869, 13584, 13359, 9973, 2796, 5290, 4360, 5909, 2763, 2829, 15893, 4136, 6619, 1546, 13884, 12573, 14780, 4671, 2766, 14469, 17058, 8726, 4201, 11523, 9751, 10097, 13723, 3727, 8659, 4216, 2677, 8633, 10938, 16246, 5965, 8107, 14912, 13969, 5177, 7866, 2797, 8783, 975, 12712, 13250, 14957, 2801, 2586, 9811, 7835, 14877, 7995, 4729, 6013, 12749, 4830, 9463, 2261, 5262, 12443, 8459, 6324, 8484, 13552, 14353, 8494, 10220, 10884, 5247, 6190, 10729, 9828, 16021, 10168, 10118, 568, 3548, 13214, 14683, 6317, 6872, 3091, 15908, 10164, 2942, 15045, 7334, 3564, 8750, 14407, 7869, 6870, 9870, 7920, 16597, 4812, 8654, 7755, 5696, 7663, 9968, 8572, 5111, 2628, 7814, 9763, 10697, 12762, 16532, 15057, 13192, 2709, 10107, 1513, 2348, 3896, 10110, 2456, 7974, 8577, 4202, 10793, 16174, 2611, 2532, 6020, 12454, 8711, 7751, 2804, 2578, 7791, 3507, 6877, 3933, 2554, 7336, 10704, 14111, 7959, 4809, 10135, 7852, 3828, 3603, 2404, 8529, 2918, 12930, 3046, 4363, 8575, 9622, 10125, 7853, 13925, 10228, 8574, 5101, 6856, 8720, 13848, 5212, 16633, 3610, 16008, 622, 5183, 14946, 8788, 11563, 13593, 6832, 13922, 4819, 2571, 8745, 9506, 13200, 5196, 5255, 6286, 836, 14999, 5613, 8471, 8721, 13753, 3937, 8725, 3042, 3226, 4506, 14656, 15210, 4164, 6834, 15939, 4415, 7349, 9912, 7728, 8507, 3978, 1725, 8495, 6288, 8523, 10264, 3600, 2363, 2648, 7956, 7877, 1117, 5112, 2861, 554, 8514, 13725, 15514, 13438, 3905, 2413, 14523, 3495, 16079, 10692, 3452, 8779, 10913, 4027, 2489, 12731, 13787, 6283, 15695, 3551, 10815, 5188, 5279, 4863, 13578, 13517, 9803, 7820, 9742, 10765, 4230, 12987, 13104, 2652, 577, 7335, 7854, 14479, 3537, 4404, 13773, 5218, 4296, 10771, 11557, 7712, 9283, 5882, 16037, 2509, 6866, 5948, 14604, 14734, 2708, 7333, 16081, 7578, 2508, 13059, 5623, 7305, 1469, 4375, 7874, 7772, 3981, 574, 4090, 5651, 8276, 9516, 7973, 3084, 4825, 7735, 7730, 4460, 16273, 16377, 7978, 8780, 15873, 10935, 7361, 2772, 5096, 9737, 4718, 9720, 8559, 15440, 2609, 4428, 3440, 13439, 13021, 8620, 13785, 14914, 4429, 12884, 2847, 4267, 3459, 3044, 7292, 9728, 8737, 15997, 7989, 4574, 2993, 15521, 14651, 5186, 5280, 5476, 787, 4424, 8526, 2641, 8774, 3448, 4650, 7850, 6914, 8597, 4698, 5235, 5187, 4020, 5148, 13499, 15982, 15670, 15025, 4435, 591, 2926, 10624, 14542, 12715, 2464, 4270, 9424, 7838, 16184, 13582, 15640, 6900, 5265, 4648, 8176, 3870, 8474, 14610, 2572, 7861, 12769, 3073, 5107, 10195, 9817, 6818, 9776, 10686, 3469, 14805, 4275, 7743, 8786, 14954, 4069, 9868, 2527, 13085, 9658, 6265, 3299, 14718, 4041, 2115, 4470, 14823, 10794, 9519, 14094, 2346, 4511, 5223, 8543, 8777, 8754, 5672, 8509, 13931, 14872, 1528, 13635, 7908, 12480, 8098, 11582, 10867, 8423, 11568, 4260, 4575, 10603, 7867, 6178, 4276, 9707, 7327, 9779, 6307, 5155, 5960, 7357, 10036, 5110, 5127, 7759, 13569, 15566, 4590, 13830, 4898, 8567, 5123, 7899, 4250, 13411, 14584, 2521, 6353, 4820, 1592, 2256, 573, 14708, 5151, 8751, 4619, 2935, 8772, 3793, 1408, 16310, 7815, 3169, 9702, 8320, 13696, 623, 7799, 8576, 12702, 7952, 3147, 2753, 1571, 4073, 3795, 7983, 9798, 12917, 13009, 13571, 13869, 7715, 2356, 13479, 5119, 15914, 4604, 15662, 10175, 10669, 16649, 9925, 8547, 6895, 3082, 6919, 14661, 1227, 8427, 5162, 7650, 12839, 7986, 4533, 1035, 4419, 3581, 8797, 16401, 3123, 5724, 7689, 2784, 11493, 6911, 4367, 7736, 7966, 14572, 3076, 6849, 8690, 12972, 5189, 7856, 13259, 13771, 9821, 8452, 7917, 8722, 3369, 8531, 6882, 2410, 14974, 2659, 1250, 2974, 1812, 14459, 10776, 8727, 3528, 13530, 13090, 4451, 5174, 16607, 5170, 3174, 7733, 15510, 8548, 4177, 7760, 7960, 8717, 13525, 16007, 8451, 13812, 7950, 3458, 8593, 8554, 4011, 4509, 3446, 13913, 4639, 5190, 6240, 5267, 4197, 6261, 7951, 13769, 14338, 13734, 13307, 2843, 3589, 13444, 5706, 3866, 13647, 13832, 5209, 3547, 1378, 7714, 5260, 9743, 2807, 2359, 817, 14240, 3576, 8759, 2340, 2392, 8466, 12469, 6831, 2454, 6326, 5997, 9457, 3940, 7360, 12610, 13592, 14156, 7976, 2746, 4608, 13604, 3918, 7988, 2515, 5231, 8138, 15890, 8314, 8724, 9950, 4537, 14644, 1028, 7897, 16600, 10869, 1353, 3132, 2403, 13596, 15973, 1460, 7816, 8712, 1467, 15748, 9767, 2682, 6373, 7710, 4761, 4828, 2725, 4312, 10907, 2967, 10078, 15304, 4279, 10234, 8792, 3876, 2934, 9871, 7898, 3703, 14184, 7766, 10131, 1277, 2803, 2996, 1578, 2573, 6251, 565, 10864, 6300, 4806, 259, 2839, 3550, 3121, 5129, 1629, 15958, 2506, 2465, 6913, 14955, 16383, 3931, 8782, 8546, 5131, 13609, 2435, 4821, 3882, 7719, 2369, 5851, 7807, 2727, 8464, 10623, 15967, 9427, 15903, 6304, 13476, 14814, 2915, 5153, 14573, 4305, 7827, 9825, 6277, 2409, 4696, 13289, 4589, 12497, 8431, 8481, 12535, 3907, 8767, 15868, 10289, 8718, 4503, 3330, 4029, 5414, 4025, 5229, 2837, 10025, 10728, 3922, 7921, 4689, 12509, 2558, 9726, 15956, 6923, 8517, 6908, 6916, 5134, 10268, 13678, 7872, 2616, 2223, 7958, 10658, 5930, 8490, 9736, 2135, 16029, 8522, 767, 9497, 2417, 16672, 9855, 6320, 12817, 5116, 5227, 6833, 13956, 2762, 6582, 743, 3421, 4355, 12627, 12923, 15933, 9443, 8424, 2873, 7368, 2192, 13419, 1007, 14520, 5226, 6266, 3187, 9723, 7846, 13407, 8524, 6246, 7784, 14378, 16201, 7828, 13815, 10903, 2731, 5219, 13978, 5182, 8482, 2635, 3929, 5238, 1361, 6302, 15446, 3913, 2415, 9832, 5985, 8766, 15607, 2522, 3968, 8569, 15990, 2814, 13171, 3070, 7301, 14327, 4005, 12934, 13856, 15459, 7355, 5147, 8149, 8790, 7900, 8571, 1832, 4083, 5242, 9518, 14761, 2745, 6329, 14514, 8463, 9708, 2556, 6306, 2670, 14774, 3453, 2281, 7875, 12475, 14601, 5169, 8036, 12666, 8741, 8736, 2539, 4552, 8448, 4017, 3104, 5954, 5172, 10681, 11613, 6821, 4288, 16124, 2523, 10144, 4607, 8479, 1586, 8749, 4387, 13406, 2450, 13539, 6271, 8610, 3925, 16030, 3185, 7915, 6345, 835, 10928, 5144, 12952, 15979, 3129, 2781, 13941, 14170, 16626, 11628, 2859, 8735, 11375, 4733, 772, 2750, 7748, 4822, 8493, 8519, 2842, 5702, 14222, 10682, 806, 7315, 7777, 15352, 8764, 11498, 8706, 15369, 10657, 3871, 3189, 16461, 4165, 10924, 9698, 6789, 8787, 15998, 6763, 8441, 2357, 8570, 4003, 8789, 9833, 14943, 9731, 5603, 7311, 5228, 13306, 7619, 7787, 15647, 6689, 9409, 7313, 13460, 14641, 2503, 5206, 2533, 8769, 15876, 5703, 6305, 3037, 3248, 4317, 2722, 9431, 14598, 1259, 2507, 8757, 6638, 8752, 5173, 7804, 5104, 8584, 6278, 16065, 7669, 6925, 3160, 2721, 13972, 15949, 5224, 3128, 8804, 6883, 12477, 1847, 13587, 13606, 8060, 6258, 6314, 12847, 7981, 13233, 3869, 7826, 15682, 4272, 15252, 2639, 7720, 6252, 6274, 9985, 5288, 5709, 3964, 4951, 5469, 7769, 9936, 3901, 14918, 3172, 16449, 4517, 1440, 4351, 4127, 13652, 15065, 8762, 13472, 6885, 6917, 13732, 6281, 3423, 5241, 8607, 838, 14666, 9288, 3858, 14296, 12506, 11560, 2122, 2476, 5139, 13711, 9872, 9769, 15036, 9713, 8521, 6441, 10130, 7968, 16293, 6052, 6239, 4515, 10297, 5102, 10832, 3067, 4362, 5136, 5140, 6910, 7902, 2583, 7340, 10223, 2894, 4580, 1640, 6887, 9822, 6915, 2594, 9719, 14519, 9938, 4174, 6922, 8761, 14172, 16346, 5175, 7571, 8194, 8657, 3885, 5125, 2595, 3462, 6133, 6899, 4354, 13853, 7851, 777, 7831, 15913, 15212, 13967, 5213, 2559, 9285, 3425, 10595, 9729, 3098, 477, 7600, 8709, 9981, 9771, 13201, 9732, 4088, 6275, 2517, 5285, 10288, 8649, 13389, 13602, 8566, 2462, 10052, 16018, 1280, 4763, 7694, 4754, 14932, 8553, 13643, 11621, 2599, 15906, 16208, 16356, 13640, 6319, 7941, 10204, 10801, 8585, 9745, 10861, 13187, 5097, 10219, 13344, 2501, 7354, 3287, 9420, 6156, 7788, 8537, 962, 6270, 9827, 15288, 10260, 4059, 14965, 7975, 2799, 3934, 5145, 9829, 10711, 8626, 13576, 8159, 4495, 8540, 2950, 9511, 5266, 7805, 13965, 10244, 6843, 13867, 7825, 13909, 6871, 6280, 13942, 7749, 7957, 7806, 8472, 6259, 5150, 2882, 7847, 1590, 9725, 14934, 2607, 10886, 8389, 9748, 10098, 5361, 8536, 12680, 13757, 16259, 3200, 15963, 6912, 4254, 2555, 2542, 16450, 7295, 8511, 8758, 5278, 6921, 14262, 1424, 4277, 4666, 4764, 7752, 8800, 13470, 8426, 2531, 3886, 7346, 3508, 7692, 7895, 2730, 10822, 14787, 15084, 13452, 16972, 3999, 8583, 3556, 14808, 7750, 9860, 15501, 15929, 7565, 3113, 2817, 6330, 9515, 13436, 9700, 6598, 5277, 7326, 8179, 7738, 2901, 6236, 16442, 15921, 6584, 488, 11507, 14950, 2361, 9483, 3915, 7739, 16013, 5121, 3298, 1180, 6234, 7775, 13800, 6918, 2565, 3984, 4420, 4476, 5113, 15067, 7910, 7343, 10136, 4807, 5130, 15985, 3855, 2606, 13673, 14933, 7935, 6166, 2997, 10277, 2251, 12623, 4081, 5633, 15885, 10155, 6025, 3021, 4004, 4154, 2377, 8658, 12466, 2434, 2793, 13951, 7829, 784, 10112, 14443, 4071, 13616, 2704, 4193, 5204, 8374, 8504, 14757, 8707, 9774, 13655, 6245, 786, 5474, 4280, 7314, 1416, 2564, 7926, 9905, 5712, 7992, 8456, 6836, 7889, 7583, 2619, 13272, 14570, 13496, 13275, 16039, 2283, 2770, 2399, 6323, 13999, 10767, 13608, 2644, 6198, 7337, 7725, 10050, 9422, 13302, 10799, 4744, 14839, 15975, 6889, 16022, 4637, 10843, 1477, 8497, 9862, 2566, 5341, 8492, 5143, 9435, 13208, 10827, 3106, 2504, 4841, 2405, 13405, 3143, 5263, 8502, 13828, 5158, 3582, 5120, 3840, 4703, 9454, 4735, 16447, 8396, 16020, 1221, 13705, 6860, 4408, 16357, 3819, 2820, 7837, 10736, 3063, 10720, 7830, 5276, 556, 2477, 8425, 10630, 4813, 1155, 4182, 10915, 7308, 7595, 2629, 11667, 6901, 3506, 9456, 14329, 5246, 7612, 4313, 13492, 9428, 7821, 6884, 10092, 10613, 1014, 9814, 3953, 3078, 8778, 4675, 3326, 5105, 5135, 2900, 5178, 5261, 8746, 9035, 13681, 3056, 13451, 740, 3872, 6858, 13283, 6848, 8563, 5243, 13484, 9801, 6825, 6428, 7691, 7822, 13733, 4323, 7709, 3585, 5163, 2516, 8615, 4587, 5185, 13506, 9772, 6311, 2597, 14674, 5895, 7906, 16435, 5114, 3806, 3110, 5176, 7849, 3144, 9734, 3961, 4829, 12997, 7624, 15213, 5245, 1017, 6838, 7865, 3273, 3030, 10191, 6243, 16070, 16076, 8581, 16388, 5625, 6926, 9693, 3071, 6850, 5232, 10662, 2956, 834, 3895, 10170, 15941, 7771, 9741, 3867, 14704, 8796, 9752, 3950, 8785, 7903, 2394, 3534, 7860, 8748, 13381, 13890, 16051, 847, 4076, 8429, 13650, 8461, 14958, 15932, 8651, 2910, 5289, 6862, 3873, 16222, 2748, 7740, 7953, 8705, 12988, 13594, 7884, 13027, 6904, 4471, 2669, 3914, 7294, 4719, 7345, 9800, 7876, 13885, 16026, 15448, 13625, 7767, 7990, 8500, 13529, 13857, 8512, 15888, 16524, 1565, 3875, 3980, 6909, 9704, 13915, 13632, 1344, 1429, 6898, 7962, 16326, 8791, 7708, 5991, 2792, 6292, 4222, 16038, 7946, 2580, 8703, 3089, 9717, 16035, 8638, 13549, 4371, 13437, 6920, 1350, 10626, 13550, 8359, 16590, 4121, 6187, 11676, 4094, 7318, 5157, 9793, 5192, 2952, 13450, 13855, 9970, 2610, 2355, 13877, 12703, 10745, 4031, 15622, 5222, 1481, 2813, 3069, 7779, 3906, 2544, 14728, 14260, 5268, 9432, 5698, 1690, 13427, 3283, 5248, 4089, 7881, 3962, 8430, 10276, 13212, 4333, 3898, 6732, 6321, 4241, 7919, 8428, 16028, 5168, 10856, 15015, 3889, 10030, 15916, 5167, 5691, 16353, 2547, 5098, 9730, 4668, 1110, 9716, 3066, 9513, 10634, 14732, 10632, 16568, 822, 9988, 9747, 8731, 13979, 10663, 9722, 4294, 3993, 6011, 13682, 7841, 4061, 2933, 1553, 9695, 4159, 10602, 2863, 8799, 6260, 8565, 5272, 3887, 7640, 2416, 14590, 10152, 12840, 5126, 8716, 16016, 3000, 1300, 7824, 4281, 14343, 9709, 2486, 10732, 2300, 4145, 4833, 7961, 13420, 14110, 15884, 2398, 16130, 707, 5165, 6865, 7839, 13750, 7306, 7726, 9787, 10158, 15676, 6907, 5973, 13558, 14550, 3079, 3954, 7764, 9400, 12580, 2836, 13254, 16074, 2838, 1388, 9715, 2713, 15915, 14636, 3083, 4601, 2395, 15215, 15980, 10895, 13424, 10653, 7930, 5273, 7774, 15881, 15442, 3893, 6143, 3917, 10091, 13603, 13726, 2218, 5100, 2917, 8496, 5215, 4769, 3454, 11654, 5154, 10670, 2502, 15470, 1813, 6244, 15480, 4091, 4133, 8074, 13938, 16579, 7914, 2845, 7963, 8747, 9692, 12894, 13716, 12458, 3991, 10059, 8753, 8776, 8760, 10829, 9784, 11640, 7794, 14867, 6037, 6851, 13236, 6864, 13279, 5249, 2513, 10831, 2907, 3892, 3986, 13891, 5298, 5819, 4297, 14330, 5269, 10746, 720, 16621, 8723, 2623, 2393, 6255, 7773, 10819, 4737, 8573, 10605, 10870, 10825, 3456, 3496, 13831, 3034, 5195, 1202, 5466, 9452, 12738, 15217, 12819, 4014, 8515, 8742, 2534, 4466, 7918, 13741, 3154, 15002, 13612, 8805, 6759, 14870, 8793, 14600, 3575, 10294, 6375, 673, 5108, 6894, 7836, 9267, 5478, 9453, 2362, 16656, 6273, 8438, 2551, 2912, 4641, 3930, 5133, 5214, 13829, 4673, 16032, 11492, 6322, 14742, 3451, 14467, 3060, 13846, 732, 6787, 7786, 606, 3788, 7782, 3517, 5463, 8478, 16033, 4100, 3549, 10074, 7969, 14935, 2664, 5934, 7348, 4266, 15709, 10257, 10696, 9982, 10275, 9430, 7758, 13674, 2445, 12483, 9877, 13197, 9703, 6853, 10921, 5256, 3530, 6313, 3141, 2422, 8806, 3201, 5194, 3093, 2777, 1289, 4817, 15986, 16093, 2794, 7811, 2932, 7843, 3085, 9491, 1684, 5270, 698, 10070, 9838, 2789, 3150, 7893, 16024, 5252, 9757, 3242, 10855, 9512, 2844, 13924, 6308, 7356, 2412, 5244, 2673, 7947, 5094, 6855, 5160, 17096, 6835, 3052, 6325, 10211, 5141, 13811, 15471, 7937, 13194, 7855, 4337, 14462, 14986, 3558, 6863, 8435, 2747, 14685, 8587, 9813, 13624, 4462, 9546, 15353, 13448, 2370, 6778, 5981, 1139, 2460, 7721, 8794, 8487, 6888, 14876, 9086, 4282, 8437, 7342, 14502, 6631, 7873, 7909, 6242, 13538, 6896, 2823, 6878, 15214, 5124, 6824, 6875, 5221, 7796, 15874, 10775, 9966, 7885, 5822, 725, 4452, 5184, 10180, 13083, 1244, 2758, 13509, 8558, 10003, 8580, 4113, 7870, 13718, 2961, 2831, 13637, 7798, 1230, 15781, 10677, 5211, 5271, 1472, 9433, 4710, 6315, 7747, 8534, 4491, 12656, 7890, 6262, 5380, 12763, 8653, 15878, 13366, 10053, 13519, 9943, 4214, 12434, 1216, 4132, 5216, 8770, 908, 6845, 5103, 8436, 2702, 6893, 12951, 2822, 2574, 5180, 6854, 4447, 13700, 12462, 10836, 14453, 4818, 7742, 15925, 13819, 2712, 8477, 13333, 7362, 5142, 5203, 9690, 10876, 2642, 2562, 5274, 8719, 13475, 4816, 4347, 6890, 9425, 15905, 3941, 14371, 12843, 8473, 13688, 10641, 13488, 13708, 1133, 8468, 2833, 14645, 6880, 3208, 14543, 2458, 7631, 9697, 5968, 6099, 16044, 10853, 6358, 5364, 10214, 15901, 10237, 14807, 3120, 3065, 6257, 6268, 15896, 6839, 6301, 10744, 2735, 8489, 2584, 16023, 16190, 3051, 8488, 2600, 4826, 9812, 10646, 8784, 7780, 8582, 6299, 6891, 8590, 13703, 9790, 9809, 14886, 10190, 5161, 7350, 10865, 13795, 15999, 10757, 6250, 7339, 13628, 14548, 15475, 15218, 14723, 9406, 4169, 15886, 14124, 2553, 7933, 9816, 3832, 6811, 12489, 3927, 13749, 6830, 3324, 2224, 2567, 2582, 13600, 12710, 4433, 6906, 5259, 8773, 14773, 3040, 4949, 7842, 10225, 16395, 9831, 5287, 7332, 2694, 13579, 13921, 7734, 16072, 7944, 10656, 8702, 8513, 5146, 2654, 3170, 6316, 9724, 2530, 7729, 4350, 8538, 5236, 7171, 8445, 8621, 3531, 6876, 7338, 13714, 12832, 8715, 7817, 4591, 9820, 13825, 9904, 8596, 15926, 748, 7832, 8795, 7776, 9706, 9932, 590, 7878, 13774, 14404, 2596, 7783, 1911, 5343, 2679, 3532, 4238, 10032, 3062, 5676, 16006, 2697, 16271, 4291, 14827, 12737, 4524, 9764, 2364, 2396, 4344, 8763, 3319, 7886, 5250, 2782, 2479, 8444, 9900, 12429, 15221, 16198, 570, 4638, 10814, 2646, 4824, 9826, 8462, 15457, 14426, 5299, 6023, 8589, 12962, 809, 2497, 5166, 9286, 4513, 8263, 4134, 3880, 9714, 3217, 14689, 8530, 2560, 2759","388, 394, 97, 512, 96, 204, 452, 555, 524, 86, 429, 82, 438, 84, 81, 146, 399, 95, 104, 145, 425, 31, 30, 47, 407, 408, 427, 139, 493, 437, 460, 402, 479, 10, 266, 62, 249, 94, 135, 270, 56, 310, 420, 41, 107, 302, 234, 532, 126, 58, 252, 253, 272, 412, 267, 258, 433, 42, 166, 201, 337, 409, 509, 154, 396, 23, 288, 76, 169, 344, 162, 397, 271, 569, 575, 496, 389, 278, 17, 421, 210, 497, 142, 568, 457, 391, 432, 122, 393, 290, 87, 411, 320, 459, 376, 88, 209, 113, 158, 35, 348, 28, 179, 478, 90, 413, 235, 138, 484, 196, 174, 492, 308, 105, 149, 480, 387, 430, 319, 255, 79, 38, 510, 494, 39, 92, 404, 184, 281, 508, 175, 117, 198, 251, 221, 124, 78, 453, 558, 171, 428, 27, 436, 101, 403, 435, 155, 476, 506, 465, 54, 34, 164, 243, 3, 280, 467, 483, 545, 264, 93, 15, 542, 481, 367, 574, 445, 163, 48, 275, 477, 589, 261, 356, 505, 576, 597, 289, 395, 2, 118, 401, 454, 110, 24, 37, 75, 434, 398, 141, 200, 260, 8, 223, 527, 46, 585, 14, 129, 45, 186, 167, 57, 25, 64, 499, 111, 151, 317, 52, 392, 482, 7, 361, 423, 578, 414, 53, 219, 69, 29, 440, 194, 390, 108, 439, 43, 49, 521, 114, 488, 265, 573, 185, 40, 491, 269, 26, 422, 263, 489, 168, 451, 380, 120, 143, 99, 511, 160, 366, 334, 410, 346, 285, 579, 600, 106, 250, 426, 137, 1, 91, 4, 203, 152, 115, 304, 33, 170, 419, 180, 244, 136, 123, 498, 119, 59, 144, 236, 541, 195, 44, 245, 485, 446, 464, 100, 127, 140, 466, 212, 16, 588, 449, 228, 238, 157, 125, 495, 55, 12, 192, 0, 216, 256, 400, 246, 77, 570, 19, 431, 102, 262, 458, 98, 516","22, 59, 40, 34, 54, 46, 12, 44, 5, 29, 3, 14, 18, 42, 20, 31, 45, 30, 56, 36, 61, 0, 2, 41, 47, 13, 6, 51, 1, 57, 25, 4, 50, 43, 49, 58, 21, 16, 32, 15, 24, 37, 63, 52, 17, 23, 38, 33, 60, 7, 10, 39, 62, 35, 28, 55, 53, 8","455, 162, 164, 456, 176, 3, 467, 217, 483, 80, 422, 263, 489, 178, 188, 84, 81, 146, 502, 399, 99, 163, 421, 210, 225, 378, 457, 261, 207, 425, 61, 106, 312, 137, 189, 470, 211, 91, 191, 118, 214, 283, 75, 156, 343, 304, 170, 274, 88, 180, 332, 479, 209, 266, 297, 398, 442, 179, 182, 200, 195, 14, 45, 235, 293, 420, 464, 74, 127, 466, 173, 430, 252, 151, 52, 253, 232, 352, 514, 520, 199, 175, 294, 282, 462, 192, 193, 36, 194, 0, 201, 216, 256, 78, 354, 469, 77, 284, 428, 468, 23, 458, 239, 435, 465, 463, 292, 83","Parliament, Executive council, Special, Senate",[],"Conservative Party, Mixto, Civic Coalition, Lietuvos lenkų rinkimų akcija – Krikščioniškų šeimų sąjunga, Parti Socialiste, Kongres Nowej Prawicy, Unaffiliated deputy, Freiheitliche Partei Österreichs, Parti bourgeois-démocratique suisse, ¡Teruel Existe!, Democratic Unionist Party, SYRIZA (Coalition of the Radical Left), Swedish People's Party, Sojusz Lewicy Demokratycznej - Unia Pracy, The Socialist People's Party, NZ First Party, Parti Progressiste Martiniquais, Calédonie Ensemble, EH Bildu, The Greek Solution, Ciudadanos – Partido de la Ciudadanía, EAJ-PNV, MISTO, CIVICA POPOLARE-AP-PSI-AREA CIVICA, Slovenian National Party Deputy Group, EH Bildu, Ecolo-Groen, Christian Social People's Party, HDP, Tjóðveldi, Green Party, The Left Deputy Group, PARTITO DEMOCRATICO, MISTO, non iscritto ad alcuna componente politica, LIBERI E UGUALI, Prawo i Sprawiedliwość, Parti libéral démocrate, Elliniki Lusi-Greek Solution, Perussuomalaiset, Party for Freedom, Independence Party, Kukiz15, Slovenian Democratic Party Deputy Group, Party of Alenka Bratušek Deputy Group, Platforma Obywatelska, Freedom Party, Siumut, SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE, UP, PLR.Les Libéraux-Radicaux, The Peter Pilz List, Fidesz-Magyar Polgári Szövetség-Keresztény Demokrata Néppárt, The New Conservative Party, ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD, Niezależny, Rassemblement bleu Marine, Fianna Fáil, FORO, MISTO, NOI CON LITALIA, Partidul Social Democrat, The Nationals, Swedish People's Party in Finland, Labour Party, SweDem, Grn, Concord, Fremskrittspartiet, Rassemblement national, UPM, DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left), Democratic, Partido Popular, Modern, Republican, Suomen Sosialidemokraattinen Puolue/Finlands Socialdemokratiska Parti, N.D. (New Democracy), C-P-EUPV, Christlich-Soziale Union in Bayern e.V., Mouvement Réformateur, Österreichische Volkspartei, Parti vert'libéral, Zaļo un Zemnieku savienība, OK, Fianna Fáil Party, Alternative für Deutschland, Nationalist, VMRO, Partido Comunista Português, MHP, Union of Greens and Farmers, UNION OF CENTRISTS, Political Party “KPV LV”, Social Democratic Party “Concord”, National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK"", Polish People's Party, Speaker, Non déclaré(s), Parti Suisse du travail, Social Democratic Party of Finland, Uniunea Salvați România, Mouvement Démocrate, ERC-CATSÍ, Sambandsflokkurin, Christen-Democratisch en Vlaams, UPN, Parti Radical de Gauche, United Kingdom Independence Party, Union Démocratique du Centre, The Finnish Social Democratic Party, The Finns Party, Venstre, Liberal, Hrvatska demokratska zajednica, Centre démocrate humaniste, Parti écologiste suisse, Marjan Šarec Deputy Group, Die Grünen - Die Grüne Alternative, Liberal Party of Australia, Progressive Party of Working People - Left - New Forces, Vlaams Belang, Miljöpartiet de gröna, For Latvia from the Heart, Parti Socialiste, Fine Gael, AK Parti, VOX, EM-P-A-EU, Komunistická strana Čech a Moravy, CDC, Bulgarian Socialist Party, Tėvynės sąjunga-Lietuvos krikščionys demokratai, AfD, United Left, Partija Tvarka ir teisingumas, Social Democrats Deputy Group, Senterpartiet, Social Democratic Party, Movement For Change, Mouvement Citoyens Genevois, Forza Italia, PP, PSOE, Alliance 90/The Greens, Deputy Group of Unaffiliated Deputies, Familien-Partei Deutschlands, SPD, The Left Party, MeRa25, Left-Green Movement, FRATELLI DITALIA, MOVIMENTO 5 STELLE, ECP, Finns Party, PSdG-PSOE, Nacionālā apvienība ""Visu Latvijai!""-""Tēvzemei un Brīvībai/LNNK"", Open Vlaamse Liberalen en Democraten, Polskie Stronnictwo Ludowe, 50 PLUS, Open Vlaamse liberalen en democraten, Sosialistisk Venstreparti, Lietuvos socialdemokratų partija, Centre Party, Democrat, Citizens for European Development of Bulgaria, Česká strana sociálně demokratická, Parti démocrate-chrétien suisse, Vox, CDU, PVDA-PTB, ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA, Sverigedemokraterna, Luxembourg Socialist Workers' Party, Popular Unity, The Brexit Party, The Social Democratic Party, PSC-PSOE, ANO 2011, Svoboda a přímá demokracie, Sojusz Lewicy Demokratycznej, Kotleba – Ľudová strana Naše Slovensko, Sozialdemokratische Partei Österreichs, Party of Modern Centre Deputy Group, New Flemish Alliance, PsdeG-PSOE, New Slovenia – Christian Democrats Deputy Group, -, Mod, Sinn Féin, The Left, Kristelig Folkeparti, Ecologistes Confédérés pour l'organisation de luttes originales Groen, Italian and Hungarian National Communities Deputy Group, The Left Alliance, Liberal Alliance, Country Liberal Party, SMER-Sociálna demokracia, Mouvement Indépendantiste Martiniquais, İYİ Parti, DeSUS - Demokratična Stranka Upokojencev Slovenije, Erakond Isamaa ja Res Publica Liit, Darbo partija, Liberal National Party of Queensland, MISTO, MINORANZE LINGUISTICHE, Socialistische Partij Anders, The New Austria and Liberal Forum, Demokratikus Koalíció, Parti suisse du Travail, The Social Liberal Party, sans parti, Partidul Mișcarea Populară, The Green Party, Australian Labor Party, Parti chrétien social luxembourgeois, ACT Party, The Liberal Party, Bündnis 90/Die Grünen, Unia Pracy, Christlich-soziale Partei Obwalden, SocDem, National Party, Democratic Party, Austrian People's Party, The Greens, LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn), Union of Greens and Farmers, Blue Reform, CHP, Parti socialiste, MISTO, En marche !, CDU/CSU, Lft, ANEXARTITOI ELLINES (Independent Hellenes) National Patriotic Democratic Alliance, Union des Démocrates Radicaux et Liberaux, Cs, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE, DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO, Parti socialiste suisse, Partido Socialista Obrero Español, Unity, CCa-PNC, The Danish People's Party, Lib, Labour, Lega, National Coalition Party, FRATELLI DITALIA-ALLEANZA NAZIONALE, Centre Party of Finland, Union of Democratic Forces, Popular Association – Golden Dawn, Law and Justice, Christlich Demokratische Union Deutschlands, Progresívne Slovensko, Fratelli d'Italia, PSE-EE-PSOE, People's Party, Progressive Party, Independent, Arbetarepartiet- Socialdemokraterna, Kresťanskodemokratické hnutie, Nieuw-Vlaamse Alliantie, PP-PAR, FDP, Jobbik Magyarországért Mozgalom, EAJ-PNV, Lega Nord, En Marche, LEGA - SALVINI PREMIER, Left Alliance, The Red-Green Alliance, Parti Communiste Français, Sozialdemokratische Partei Deutschlands, INDEPENDENT, Bloc Québécois, CSU, Civic Platform, K.K.E. (Communist Party of Greece), Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt, Les Républicains, Živi Zid, Nea Demokratia, Harmony, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI, The Conservative People's Party, Latvian Regional Alliance, Arbeiderpartiet, Partido Social Democrata, SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE, FORZA ITALIA - BERLUSCONI PRESIDENTE, Reform, Partido Socialista, Green League, The New UNITY, DIE LINKE., Democratic Party of Pensioners of Slovenia Deputy Group, Høyre, Polish People's Party-Kukiz15, Partij voor de Vrijheid, Cen, Communist Party of Greece, For Development/For!, Alternative Democratic Reform Party, The Social Democratic Alliance, Movement for Rights and Freedoms, Conservative, TO POTAMI (The River), Partidul Naţional Liberal, ChrDem, Socialist Party","https://www.europarl.europa.eu/meps/en/97022/ROBERT_ROCHEFORT_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=20c011bf-7d7b-4f79-a130-77944e6076ef, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=376&type=A, https://www.riksdagen.se/en/members-and-parties/member/ida-drougge_e8a2c04d-a186-421b-b1fd-a401f0917673, https://www.riksdagen.se/en/members-and-parties/member/agneta-borjesson_87a876e4-3f08-4872-837d-602e56d109a1, https://www.riksdagen.se/en/members-and-parties/member/yasmine-posio-nilsson_3b9b4858-4b06-4e43-b452-a0dc9d730e9a, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307714&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jamal-el-haj_6a1b02dd-bdc4-4019-ab3e-dfeb133018ed, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA610654, https://www.oireachtas.ie/en/members/member/Michael-Lowry.D.1987-03-10/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=033&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2265e9ea-73bd-44e4-a542-134d3505bdfb, https://www.parlament.gv.at/WWER/PAD_87002/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=342&idLegislatura=12, https://www.parliament.uk/biographies/commons/sir-christopher-chope/242, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=359&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=2&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lotta-finstorp_61e74c12-dab8-4117-8b4e-ffd41c21dbda, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=373&type=A, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721872, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307354&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/tisch-lindsay/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=179&type=A, https://www.parliament.uk/biographies/commons/margaret-beckett/328, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/brownlee-gerry/, https://www.parlament.gv.at/WWER/PAD_05644/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/nina-lundstrom_241a3fd7-124c-4e9e-ac01-9083f36b3295, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1809, https://www.parlament.gv.at/WWER/PAD_02013/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7796acca-2542-47c6-8b99-4a705d7dc17e, https://www.riksdagen.se/en/members-and-parties/member/saila-quicklund_243f0434-ae15-41b4-92b6-146a0fb0700a, https://www.riksdagen.se/en/members-and-parties/member/berit-hogman_78938305-abfd-42bd-81d9-53c2ff11546d, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P353, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721702, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/matheus-enholm_8c4af927-7bb6-4012-9b46-12adb641f556, https://www.parlament.gv.at/WWER/PAD_02822/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=77CCBB7FC1A41483C22583320029E4EE&url=./0/77CCBB7FC1A41483C22583320029E4EE?OpenDocument&lang=EN, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307126&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=96a24613-fb1d-4e23-8a85-666288512171, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P355, https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ploumen-emj-pvda, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=209&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=88537272-1951-4a8f-82ed-b2bcf2b57cdc, https://www.parlament.gv.at/WWER/PAD_30653/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ulrika-jorgensen_fa0256bd-46ac-4027-be42-ffebef7b0dcf, https://www.parlament.gv.at/WWER/PAD_05684/index.shtml, https://www.parlament.gv.at/WWER/PAD_83137/index.shtml, https://www.parliament.uk/biographies/commons/mr-clive-betts/394, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307470&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=469&type=A, https://www.europarl.europa.eu/meps/en/124887/KAROL_KARSKI_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307181&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.eduskunta.fi/EN/kansanedustajat/Pages/767.aspx, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1148.aspx, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722300, https://www.parlament.gv.at/WWER/PAD_83107/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=259&type=A, https://www.riksdagen.se/en/members-and-parties/member/daniel-backstrom_d9b65520-dba2-4ec1-a124-d89d667ebf37, https://www.riksdagen.se/en/members-and-parties/member/eva-lindh_ee86b181-9f3b-4e03-8ef4-b96b1e79cd25, https://www.oireachtas.ie/en/members/member/Patricia-Ryan.D.2020-02-08/, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307527&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=978c9e46-72d0-406e-bde7-a43400ed663b, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=279&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=edc03f84-49e2-4f96-91d7-a43400d41d78, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=21&idLegislatura=12, https://www.eduskunta.fi/EN/kansanedustajat/Pages/805.aspx, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=133&idLegislatura=14, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06929&lactivity=54, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=31&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=90&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=062&type=A, https://www.europarl.europa.eu/meps/en/124898/JULIA_PITERA_home.html, https://www.parlament.gv.at/WWER/PAD_05647/index.shtml, https://www.europarl.europa.eu/meps/en/96897/JOHN+STUART_AGNEW_home.html, https://www.parlament.gv.at/WWER/PAD_51553/index.shtml, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P343, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=235&type=A, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=295&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e79c889c-7bfa-49db-94ce-60f41d79844b, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=177&idLegislatura=12, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bayly-andrew/, https://www.europarl.europa.eu/meps/en/96903/PAULO_RANGEL_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=bab2c4d1-02b8-4e08-96cd-9d2a3847712b, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P350, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=256&type=A, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA689, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=24&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/rikard-larsson_d3a9b52a-0d94-4610-b20e-d0ed8375c9d1, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=10&idLegislatura=14, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/patrik-engstrom_22fbd180-3870-4f26-a5ee-eeab42b00de8, https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/raak-aagm-van-sp, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kjell-jansson_3ce8f147-129f-412c-b6ad-db566d53b1db, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307545&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.uk/biographies/commons/mr-robert-goodwill/1562, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=204&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=718dfd31-95c1-451d-9d79-a52500d459d9, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=cb78242e-648c-49b5-9087-ccf732ec32c5, https://www.parlament.gv.at/WWER/PAD_06505/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/martin-kinnunen_57cbe134-829b-4fb8-9cc1-ce2f1cd02f3b, https://www.riksdagen.se/en/members-and-parties/member/mathias-sundin_63b23510-15af-4cc9-b54a-3d8b01c212d0, https://www.riksdagen.se/en/members-and-parties/member/helen-pettersson_13c0a836-8abf-453d-92d0-44d009c27f85, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/fredrik-lindahl_08bb4baa-24ca-4395-baf7-c907a4d5b776, https://www.europarl.europa.eu/meps/en/124810/BARBARA_SPINELLI_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jasenko-omanovic_294cd1d7-df0b-4794-b433-b3892d3ad29d, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=103&type=A, https://www.riksdagen.se/en/members-and-parties/member/bjorn-rubenson_1b63cd86-7a44-4990-a17a-c8e47f44907b, https://www.riksdagen.se/en/members-and-parties/member/christina-ostberg_aa5e595b-e755-4a4e-a457-ea289ad1add3, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=489eabb1-5d8c-4d61-abc5-2382b6d28bff, https://www.parlament.gv.at/WWER/PAD_02295/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307248&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/barbro-westerholm_e7e41401-b4df-11d5-8079-0040ca16072a, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=340&type=A, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/9AE384DC3DF26240C22583320029E557?OpenDocument&lang=EN, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=374&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/anna-hagwall_9ba9d931-c9c0-4052-8c1b-9765f09cad69, https://www.parliament.uk/biographies/commons/mr-charles-walker/1493, https://www.europarl.europa.eu/meps/en/4513/GEOFFREY_VAN+ORDEN_home.html, https://www.riksdagen.se/en/members-and-parties/member/fredrik-lundh-sammeli_19d6281a-a1fc-4399-9631-89acf6420f42, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307137&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307578&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=286&type=A, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=49A0CE0E2C6CF037C22583320029E614&url=./0/49A0CE0E2C6CF037C22583320029E614?OpenDocument&lang=EN, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=157&type=A, https://www.parlament.gv.at/WWER/PAD_61659/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d6c3c1c8-b5d1-4b56-a256-427566e7a278, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/gustav-fridolin_21b3f0eb-2451-4776-aae6-3b8422473f37, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/denis-begic_47705a06-b78d-469f-9ebe-8f7407607be6, https://www.riksdagen.se/en/members-and-parties/member/lars-tysklind_1ba45ff4-cb60-4ac9-b790-04bdb58a4944, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307342&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/thomas-morell_ee4900a4-1434-4ae5-8ddf-4f18755e02cc, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c64b166e-aad9-4ff1-a98e-a52500b0f825, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=332&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=217&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/hans-hoff_d7c323f9-83e4-11d4-ae60-0050040c9b55, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=321&type=A, https://www.parliament.uk/biographies/commons/john-grogan/382, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=273&idLegislatura=12, https://www.europarl.europa.eu/meps/en/124888/GABRIELE_PREUS_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-thomsson_e40dbf5a-203b-4744-84b0-a40ac2a763cb, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=180&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=296&idLegislatura=12, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/18FFD7EC6B29B919C22583320029E519?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/oscar-sjostedt_78e41c66-0d03-4914-9369-f03b795217e5, https://www.riksdagen.se/en/members-and-parties/member/krister-ornfjader_d7c31f13-83e4-11d4-ae60-0050040c9b55, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=32c16bf0-3283-4ada-bc19-a43400e5a058, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P018, https://www.europarl.europa.eu/meps/en/96958/WILLIAM_%28THE+EARL+OF%29+DARTMOUTH_home.html, https://www.europarl.europa.eu/meps/en/124822/DIETMAR_KOSTER_home.html, https://www.europarl.europa.eu/meps/en/28379/ADAM_GIEREK_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mats-nordberg_3c0112b7-fdd4-4f06-833b-a27c93d6efdf, https://www.parlament.gv.at/WWER/PAD_02834/index.shtml, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265979, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7cdf684b-5af0-412b-9a6b-195a21dde8a7, https://www.parliament.uk/biographies/commons/mr-ronnie-campbell/514, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720764, https://www.parlament.gv.at/WWER/PAD_86603/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sultan-kayhan_50277320-fb16-40ba-82aa-8093fbb3126e, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=146&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=26e42b8e-121a-499c-9bfa-a4d700a09117, https://www.riksdagen.se/en/members-and-parties/member/fredrik-schulte_b22cb715-79b0-4610-988f-e344f13a8cd4, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=52ae19a3-769e-4e62-86f6-ffe922fc4d7a, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=14&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/isabella-hokmark_e39bf505-d822-4e64-b900-acf8e486a5dc, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=09292115-c3ed-4668-b3a8-4cf66ec0fa34, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719756, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=22&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/annika-hirvonen-falk_a9346ffe-2c1f-4e2b-b686-d8248a3d0db2, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=78&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/cassandra-sundin_e59e1306-99aa-4644-8fda-d54ff040ce98, https://www.europarl.europa.eu/meps/en/96784/JANUSZ_ZEMKE_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305580&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/barbro-westerholm_e7e41401-b4df-11d5-8079-0040ca16072a, https://www.parlament.gv.at/WWER/PAD_05138/index.shtml, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2417&ConstID=45, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P290, https://www.europarl.europa.eu/meps/en/28226/CHRISTIAN_EHLER_home.html, https://www.riksdagen.se/en/members-and-parties/member/aron-modig_7bc6a4e3-a2cd-47b3-bdb4-1e4fb5829a60, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2302&ConstID=86, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307272&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/severin-toni/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=462&type=A, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1091.aspx, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=44&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307408&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/per-arne-hakansson_0ba9f702-555f-419f-89fb-7e1234ae1171, https://www.parlament.gv.at/WWER/PAD_05680/index.shtml, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P326, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1374.aspx, https://www.parlament.gv.at/WWER/PAD_83115/index.shtml, https://www.parliament.uk/biographies/commons/dr-dan-poulter/3932, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=260805, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/helena-lindahl_6cca7c48-b127-4d65-8052-ac3588a50dbd, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307262&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/jonas-millard_9f5ae9ae-d5de-4253-8e8b-bb455a9f792e, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=150&idLegislatura=12, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P330, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/wall-louisa/, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1cdb4846-5d69-4932-914c-a52500fdf9ee, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c5923139-4306-416f-b57c-a52500f279ae, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01094&lactivity=54, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=214&idLegislatura=12, https://www.parliament.uk/biographies/commons/sir-mike-penning/1528, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307575&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/28424/TUNNE_KELAM_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3c5b5218-47ac-4024-93a9-0e85b3ad8a52, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720664, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=113&idLegislatura=14, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267450, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=578fed1f-829a-46b1-849f-a52500dfe021, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=380f8c7b-1a01-4de9-b482-a52500dd773b, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mooney-joseph/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=271&idLegislatura=14, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9484959f-a185-4c1b-844b-a43401409da8, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/magnus-oscarsson_0d218eb6-6294-4587-8abf-be0a351d7213, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307365&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307213&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/125005/JAVIER_NART_home.html, https://www.europarl.europa.eu/meps/en/124807/JENS_GIESEKE_home.html, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=00E836A691F4A32AC22583320029E552&url=./0/00E836A691F4A32AC22583320029E552?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=78db387f-2e80-49e3-9379-a52500efbddf, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=227&type=A, https://www.riksdagen.se/en/members-and-parties/member/raimo-parssinen_d7c31ef9-83e4-11d4-ae60-0050040c9b55, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=329&idLegislatura=14, https://www.europarl.europa.eu/meps/en/102887/BELA_KOVACS_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=223&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307119&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.uk/biographies/commons/andrew-griffiths/3936, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=EEE9AB905648F5A7C22583320029E3D5&url=./0/EEE9AB905648F5A7C22583320029E3D5?OpenDocument&lang=EN, https://www.parlament.gv.at/WWER/PAD_91034/index.shtml, https://www.europarl.europa.eu/meps/en/26851/NIKOLAOS_CHOUNTIS_home.html, https://www.europarl.europa.eu/meps/en/4282/RENATE_SOMMER_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/marianne-pettersson_d9f971a1-12ab-4a01-8cb6-2d2d6a9e0791, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01123&lactivity=54, https://www.parlament.gv.at/WWER/PAD_05633/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=F483A271BEEB13BFC22583320029E456&url=./0/F483A271BEEB13BFC22583320029E456?OpenDocument&lang=EN, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=277&idLegislatura=12, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719194, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=310&type=A, https://www.parlament.gv.at/WWER/PAD_51565/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307682&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/tina-ghasemi_958d8c78-0de8-48f9-9476-a6fcd32eec8b, https://www.parlament.gv.at/WWER/PAD_02326/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307455&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/28400/FRANCISCO+JOSE_MILLAN+MON_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=66&idLegislatura=14, https://www.europarl.europa.eu/meps/en/107041/HEINZ+K._BECKER_home.html, https://www.riksdagen.se/en/members-and-parties/member/mathias-tegner_2091e357-e195-430b-8dab-7e13732ffa41, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=287&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c8252156-d057-4e50-9e9a-3cfc521ebb39, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307582&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=371&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d6099115-bcbb-45c4-9000-612d5df5b0b0, https://www.riksdagen.se/en/members-and-parties/member/marco-venegas_532df419-dd96-4ae1-b50d-627569366b40, https://www.parlament.gv.at/WWER/PAD_01942/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/kerstin-nilsson_56904e29-dc44-483d-a4d8-4c39626e27b8, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/caroline-nordengrip_54ecece4-3002-4cff-a4f2-f463efb2affb, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=346&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=371&idLegislatura=14, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/paraone-pita/, https://www.parlament.gv.at/WWER/PAD_14769/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5880009e-fd9a-4ca7-9bdc-34d5b4156f3e, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302995&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/4AE72FE4EFB93EB6C22583320029E597?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/boriana-aberg_d3628aa4-ea6a-4466-8e2c-f3d0cb2d9cad, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=432&type=A, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P122, https://www.riksdagen.se/en/members-and-parties/member/mattias-backstrom-johansson_cb0336b4-54a8-4384-abe3-8d6cbebc63fa, https://www.riksdagen.se/en/members-and-parties/member/kristina-yngwe_2cfb5b7e-ac47-45e5-84f4-6c53c047cdca, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307414&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=F765C39D54CF8FAAC22583320029E45F&url=./0/F765C39D54CF8FAAC22583320029E45F?OpenDocument&lang=EN, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306230&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/beatrice-ask_d7c31ae1-83e4-11d4-ae60-0050040c9b55, https://www.europarl.europa.eu/meps/en/96661/KRISZTINA_MORVAI_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=070&type=A, https://www.oireachtas.ie/en/members/member/Pauline-Tully.D.2020-02-08/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=32&idLegislatura=14, https://www.europarl.europa.eu/meps/en/96680/ZIGMANTAS_BALCYTIS_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307587&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06907&lactivity=54, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/erik-ezelius_45bd9e8b-22f0-4cb7-9cfe-b40847e9715f, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=bdaf0aa1-3482-4d2c-a30a-a434013feb49, https://www.europarl.europa.eu/meps/en/21817/MARIO_BORGHEZIO_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307603&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/E85287524F84DE45C22583320029E417?OpenDocument&lang=EN, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307639&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721636, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720538, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d8c8202e-40f3-4daa-bf64-a52500ee129f, https://www.riksdagen.se/en/members-and-parties/member/borje-vestlund_0c48bec2-1d23-460b-bd12-76df1ac80fa6, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=302&idLegislatura=12, https://www.europarl.europa.eu/meps/en/2278/PAUL_RUBIG_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301541&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/2323/RAINER_WIELAND_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=360&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=144&type=A, https://www.parlament.gv.at/WWER/PAD_02189/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=77037b16-52dc-4add-9c19-a434013c501a, https://www.parliament.uk/biographies/commons/mr-mark-francois/1444, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P311, https://www.parlament.gv.at/WWER/PAD_08177/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=324&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a5d1b800-63ed-4256-a916-02220e8415df, https://www.riksdagen.se/en/members-and-parties/member/helena-lindahl_6cca7c48-b127-4d65-8052-ac3588a50dbd, https://www.europarl.europa.eu/meps/en/124747/PEDRO_SILVA+PEREIRA_home.html, https://www.parliament.uk/biographies/commons/jeremy-quin/4507, https://www.riksdagen.se/en/members-and-parties/member/michael-svensson_8f7983ab-6cb3-4f85-ac09-2a262e741b0c, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=339699f5-933b-4b2b-adaa-a434013ea9a4, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01134&lactivity=54, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=259&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=260&type=A, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/orourke-denis/, https://www.parlament.gv.at/WWER/PAD_72999/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=333&type=A, https://www.parliament.uk/biographies/commons/andrew-percy/3939, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/B48D838E757C9447C22583320029E5E4?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/roza-guclu-hedin_e53ce4a4-b399-4ed6-9815-cb96818871b3, https://www.riksdagen.se/en/members-and-parties/member/paula-bieler_4bf6dd84-3a63-4cb0-a8c0-08ca3d5e00c3, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/grigg-nicola/, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/annelie-karlsson_cbadd933-3375-4216-92fd-3d64a56b5a13, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4dcab991-e7cc-4ac2-bb80-a43400d453b6, https://www.parlament.gv.at/WWER/PAD_88823/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=195&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307492&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3f99b52e-814c-44f4-8bd2-a43400e0708d, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307372&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/runar-filper_49cb272f-9347-407a-bac0-06403fbec5b5, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=B95E73AE3D8BBE20C22583320029E3D4&url=./0/B95E73AE3D8BBE20C22583320029E3D4?OpenDocument&lang=EN, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307640&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_83116/index.shtml, https://www.parlament.gv.at/WWER/PAD_02242/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=745f24f9-b8fb-4b23-938a-a43400fc37d8, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721924, https://www.europarl.europa.eu/meps/en/28353/ANNA+ELZBIETA_FOTYGA_home.html, https://www.parlament.gv.at/WWER/PAD_01980/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fdd3a78c-84e0-4f1e-b079-a43400e4ab30, https://www.europarl.europa.eu/meps/en/103246/AUKE_ZIJLSTRA_home.html, https://www.europarl.europa.eu/meps/en/125090/SOTIRIOS_ZARIANOPOULOS_home.html, https://www.riksdagen.se/en/members-and-parties/member/yilmaz-kerimo_d7c3296a-83e4-11d4-ae60-0050040c9b55, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=55a8e882-c6d1-47ff-b23f-a52500f73af4, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=37&idLegislatura=12, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/smith-nick/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=165&idLegislatura=12, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=CE9D2E3A1EDC54F5C22583320029E460&url=./0/CE9D2E3A1EDC54F5C22583320029E460?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mats-wiking_d235dd08-8b15-4e31-aec7-b380a1c1ac0b, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307141&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_83153/index.shtml, https://www.parliament.uk/biographies/commons/rishi-sunak/4483, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=402&type=A, https://www.parlament.gv.at/WWER/PAD_05634/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=246&type=A, https://www.europarl.europa.eu/meps/en/95281/VIORICA_DANCILA_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=aa577f44-f252-4bf0-8c79-a52500f34530, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=038&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307240&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jimmy-loord_df3faccf-0ebc-4cae-b824-d18e1d3d0d92, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=7&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=227&idLegislatura=14, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305578&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/23821/JOZSEF_SZAJER_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=109&idLegislatura=12, https://www.parliament.uk/biographies/commons/sir-geoffrey-clifton-brown/249, https://www.europarl.europa.eu/meps/en/125093/KONSTANTINOS_PAPADAKIS_home.html, https://www.parliament.uk/biographies/commons/mr-john-hayes/350, https://www.riksdagen.se/en/members-and-parties/member/johan-hedin_6014c0f6-d3b6-4ed4-ae63-ace3af71dc86, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300506&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307287&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=91219, https://www.parlament.gv.at/WWER/PAD_00145/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307533&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1095.aspx, https://www.parlament.gv.at/WWER/PAD_01979/index.shtml, https://www.parliament.uk/biographies/commons/colleen-fletcher/4378, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307716&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=cdb03ed2-9d74-4fc8-af55-a52500ae181b, https://www.parlament.gv.at/WWER/PAD_03896/index.shtml, https://www.parlament.gv.at/WWER/PAD_14795/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=328&idLegislatura=14, https://www.parlament.gv.at/WWER/PAD_52687/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/vasiliki-tsouplaki_9d24d55a-be20-4caa-ac48-4da11b50969c, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307427&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307595&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.uk/biographies/commons/paul-farrelly/1436, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=040&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4174987a-010d-407c-92c3-a525010946fe, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1093.aspx, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=116&type=A, https://www.parlament.gv.at/WWER/PAD_83146/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hans-hoff_d7c323f9-83e4-11d4-ae60-0050040c9b55, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=43&idLegislatura=12, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=2BD9A2B7E700ABFBC22583320029E452&url=./0/2BD9A2B7E700ABFBC22583320029E452?OpenDocument&lang=EN, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720854, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3e15e440-711e-4f24-8b42-a43401562856, https://www.parlament.gv.at/WWER/PAD_01977/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=102&type=A, https://www.europarl.europa.eu/meps/en/124755/JEAN-LUC_SCHAFFHAUSER_home.html, https://www.europarl.europa.eu/meps/en/96796/RYSZARD+ANTONI_LEGUTKO_home.html, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P325, https://www.parlament.gv.at/WWER/PAD_01985/index.shtml, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=13050, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=197&type=A, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720996, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=19&idLegislatura=14, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6471fe31-e2b1-40c3-83a7-a434013db1b0, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2a5d2304-ebeb-4eb3-8211-a52500dc7741, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=88faea94-ed6d-4d37-82ad-a555012d2e29, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5388653d-1e83-4b81-9dc4-a43400fc6f6b, https://www.riksdagen.se/en/members-and-parties/member/crister-spets_6a1f3e8e-20bd-4a25-8995-07a427a625a2, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301559&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/sotiris-delis_05016cf9-06c4-4c0c-8932-562d67619ab1, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/allan-widman_b58dac92-0bb0-4fe3-a052-9049b9a99959, https://www.eduskunta.fi/EN/kansanedustajat/Pages/609.aspx, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305866&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c12d5e8f-61cb-46f7-9ade-a43400e68ea4, https://www.europarl.europa.eu/meps/en/96697/VALDEMAR_TOMASEVSKI_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=451&type=A, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/3B9C992573617919C22583320029E622?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lorena-delgado-varas_d3874590-31fb-4743-8d55-2565df5ed8af, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=300&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_14840/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=074&type=A, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=341&type=A, https://www.europarl.europa.eu/meps/en/34249/FILIZ_HYUSMENOVA_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=387&type=A, https://www.riksdagen.se/en/members-and-parties/member/carl-schlyter_46eb7b79-60e3-4bcc-9077-dbd9091aa54d, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1096.aspx, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=314&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mikael-strandman_eda7cbeb-16f4-4a35-b0cd-ca4158e60906, https://www.parlament.gv.at/WWER/PAD_05645/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307513&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=008W7, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4c36bcee-8fe9-4325-ba86-39f428a8bbd9, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=107&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302759&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_02336/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/eva-lena-jansson_dd4afc3e-7460-4e22-8eba-9ad0fc2915ac, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=PG6, https://www.parliament.uk/biographies/commons/mr-john-baron/1390, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=129&idLegislatura=14, https://www.parliament.uk/biographies/commons/chris-davies/4376, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307531&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/pia-steensland_0255b271-a7f0-43bc-9f5b-9fa694990dab, https://www.parliament.uk/biographies/commons/dame-rosie-winterton/390, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=124&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=920f8430-3a2e-4404-8ad2-a52500ded7bf, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307691&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/henderson-emily/, https://www.parlament.gv.at/WWER/PAD_61639/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=54ED10B72BF59C6FC22583320029E43E&url=./0/54ED10B72BF59C6FC22583320029E43E?OpenDocument&lang=EN, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=322&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/johan-buser_90110ece-022e-4e0f-bb4e-f5102900fa9a, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307694&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_51549/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=162&type=A, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1801&ConstID=108, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a582909e-ff2e-45f7-a9b6-aefe651e435f, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=96cbf7b8-b665-4027-a2bb-bd8f7ba7ba3a, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/3A075EB59C4F4C20C22583320029E3B7?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6a54b198-aaf2-4f20-8d72-f0cb1364263a, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7c12ee15-1772-4d3d-8cc7-298a603c2b19, https://www.europarl.europa.eu/meps/en/124722/CSABA_MOLNAR_home.html, https://www.riksdagen.se/en/members-and-parties/member/robert-halef_4eda0e46-58a1-446f-b12b-1de6132f4f35, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/eric-palmqvist_fc3b3864-8e29-4fd4-ae65-fe387f3f6f4b, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307135&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_83112/index.shtml, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1094.aspx, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=306&idLegislatura=14, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=258&type=A, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O2516&lactivity=54, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=118&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/stefan-jakobsson_ac2b2350-3565-4fef-8890-08126a24a77f, https://www.parliament.uk/biographies/commons/theresa-villiers/1500, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA223837, https://www.europarl.europa.eu/meps/en/124836/MARIA_NOICHL_home.html, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/chhour-karen/, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d225cded-799d-47dc-9369-a43400eded6d, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301573&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307579&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_08178/index.shtml, https://www.eduskunta.fi/EN/kansanedustajat/Pages/214.aspx, https://www.parlament.gv.at/WWER/PAD_01974/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/9C515B7BFED10292C22583320029E5E9?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-andersson_46472134-8e4e-4c65-856e-d401cad915dd, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307202&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/erik-bengtzboe_cc608c25-fcc1-4bdb-9354-4cd44532ff25, https://www.parliament.uk/biographies/commons/jack-brereton/4643, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/5564F42403774A70C22583320029E670?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/emilia-toyra_8e282183-f357-460d-80e3-094d61d40889, https://www.parlament.gv.at/WWER/PAD_52688/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=264&idLegislatura=12, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719850, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307471&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719118, https://www.riksdagen.se/en/members-and-parties/member/andreas-norlen_46bb7675-2a79-4efa-8a0d-c513ad32a47d, https://www.parliament.uk/biographies/commons/sir-paul-beresford/103, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307128&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_05623/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/joakim-sandell_4a486ea1-d97c-4393-9ada-2639140cfd46, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=352&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/eric-westroth_a7390cef-27c2-4068-800d-ee21b1a94c69, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307722&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_01987/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=175&type=A, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/888F12D8992DFFA3C22583320029E56B?OpenDocument&lang=EN, https://www.riksdagen.se/en/members-and-parties/member/marta-obminska_c994a157-6301-46d2-a111-abe58ec220f4, https://www.parlament.gv.at/WWER/PAD_47187/index.shtml, https://www.europarl.europa.eu/meps/en/28397/AGUSTIN_DIAZ+DE+MERA+GARCIA+CONSUEGRA_home.html, https://www.parliament.uk/biographies/commons/mr-dominic-grieve/16, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4b28a478-8768-453f-b820-a52500f1a43a, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307115&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=32910&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/clasgoran-carlsson_34f7ceb6-9f7c-4b37-a15e-1c61ffa639e5, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=58&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_02997/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=112&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_51556/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5a4f24c1-5d24-45c4-bdfb-a52500fda6c0, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jorgen-hellman_26eb9dcc-8638-445e-8356-ba8fdeb6d742, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e69fa4cd-9328-4749-ab72-6f6f9078062f, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=443&type=A, https://www.eduskunta.fi/EN/kansanedustajat/Pages/797.aspx, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=242&type=A, https://www.riksdagen.se/en/members-and-parties/member/said-abdu_3ee8e114-2b2a-439b-9d60-b17225c992e8, https://www.parliament.uk/biographies/commons/mike-freer/4004, https://www.riksdagen.se/en/members-and-parties/member/caroline-szyber_93eabd2a-0b42-4662-bba4-29dd79119e29, https://www.europarl.europa.eu/meps/en/124691/COSTAS_MAVRIDES_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307644&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307416&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=123&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/mattias-vepsa_b20fb0ab-e161-4d7a-acc9-57c3923d5456, https://www.parliament.uk/biographies/commons/kelvin-hopkins/2, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=104&idLegislatura=12, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267901, https://www.riksdagen.se/en/members-and-parties/member/hanif-bali_b86c28d2-48d1-41a6-bea3-b3317cdfeec8, https://www.riksdagen.se/en/members-and-parties/member/per-ingvar-johnsson_fdd8ceb7-6018-42f7-b70a-fecdba14e5fc, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307706&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307659&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P307, https://www.riksdagen.se/en/members-and-parties/member/eskil-erlandsson_d7c32246-83e4-11d4-ae60-0050040c9b55, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307278&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=323&type=A, https://www.europarl.europa.eu/meps/en/96876/FRANK_ENGEL_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/elisabeth-bjornsdotter-rahm_96765f90-7072-436d-8143-264d7cbd7fa9, https://www.riksdagen.se/en/members-and-parties/member/boriana-aberg_d3628aa4-ea6a-4466-8e2c-f3d0cb2d9cad, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06618&lactivity=54, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=270&idLegislatura=12, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA331481, https://www.europarl.europa.eu/meps/en/96768/ENRIQUE_GUERRERO+SALOM_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=364&idLegislatura=14, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307585&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_05629/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=431&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=373&idLegislatura=14, https://www.parliament.uk/biographies/commons/david-tredinnick/335, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/oconnor-simon/, https://www.riksdagen.se/en/members-and-parties/member/emanuel-oz_d810030c-db47-4c9d-a45b-2a2ab3691541, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1817&ConstID=176, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d22cdd6e-2672-4657-8130-a43401527e18, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4b33a312-52f2-427c-bd3c-a52500e007ba, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anne-oskarsson_314fe869-7e6c-441f-8d1f-5ab2c6052f1d, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1276, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722062, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307618&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=089&type=A, https://www.parlament.gv.at/WWER/PAD_02889/index.shtml, https://www.europarl.europa.eu/meps/en/22418/ESTHER_HERRANZ+GARCIA_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=17&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/petra-ekerum_4e6e190d-6f11-496a-a26c-5f4a8a662a77, https://www.riksdagen.se/en/members-and-parties/member/ellen-juntti_efb2daaa-8053-411f-9fc7-dfcca1395bb0, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302782&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P318, https://www.parliament.uk/biographies/commons/mr-george-howarth/481, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307555&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/katja-nyberg_243a8476-df07-435b-b2e8-50d03926ae51, https://www.riksdagen.se/en/members-and-parties/member/lars-eriksson_b67316c8-173c-46aa-b561-fbe617fa4310, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P316, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/malin-larsson_39523176-322e-469e-a754-3c46db2b0756, https://www.parlament.gv.at/WWER/PAD_83409/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3e6b58ec-74ad-4670-85f8-a43400e218a0, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=34180&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=3&idLegislatura=12, https://www.europarl.europa.eu/meps/en/96825/NORICA_NICOLAI_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=42&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301477&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2658fbed-4973-4ad0-a922-a4340152854c, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=358&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anders-hansson_fa84d5df-e8ef-43be-beff-a71453d18ebc, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307580&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=372e4173-a84e-43c4-bbd9-a829d6ccb276, https://www.eduskunta.fi/EN/kansanedustajat/Pages/952.aspx, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=302&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=273&idLegislatura=14, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA346218, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=263418, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302764&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/erik-ottoson_0f90ef03-a652-45a1-b697-39a33b32e512, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d37fe3be-89a9-4c28-8cd6-a43401563779, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307473&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301533&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06383&lactivity=54, https://www.parliament.uk/biographies/commons/adam-holloway/1522, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d7710efb-48c7-4599-9364-a52500fe708a, https://www.riksdagen.se/en/members-and-parties/member/emma-carlsson-lofdahl_8340e89d-250a-4300-bab5-6937399ee277, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P354, https://www.europarl.europa.eu/meps/en/124883/KRYSTYNA_LYBACKA_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3e964920-cf9a-47cd-9827-a43400fbb732, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=206&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/kristina-nilsson_a761212d-42d3-4b7d-a535-58fb33d2098d, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jennie-afeldt_f17df284-828f-481d-9f83-8c6d2b6d2576, https://www.riksdagen.se/en/members-and-parties/member/sven-olof-sallstrom_06776272-4f62-44c7-9011-f66349279c88, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=217&type=A, https://www.europarl.europa.eu/meps/en/102886/ILDIKO_GALL-PELCZ_home.html, https://www.parlament.gv.at/WWER/PAD_08209/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/mikael-jansson_b2238892-963d-490d-a228-6a561e8007ed, https://www.riksdagen.se/en/members-and-parties/member/caroline-helmersson-olsson_ae67201e-c2ea-4c8d-8a62-54f12be55778, https://www.riksdagen.se/en/members-and-parties/member/erik-ezelius_45bd9e8b-22f0-4cb7-9cfe-b40847e9715f, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/1E1E80F42AB587C4C22583320029E4A4?OpenDocument&lang=EN, https://www.riksdagen.se/en/members-and-parties/member/azadeh-rojhan-gustafsson_c325b529-3455-44a2-acd2-597698b321a6, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1cbffa4e-9f13-412f-9260-a434013ca542, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/turei-metiria/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=10&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307234&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=147&type=A, https://www.parlament.gv.at/WWER/PAD_14843/index.shtml, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=203092, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267766, https://www.parlament.gv.at/WWER/PAD_02338/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/amineh-kakabaveh_8399ff3f-1fbe-4984-b59c-4ada1ec670ec, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302909&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/124735/MIAPETRA_KUMPULA-NATRI_home.html, https://www.parlament.gv.at/WWER/PAD_01937/index.shtml, https://www.parliament.uk/biographies/commons/gordon-henderson/4050, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=430&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305725&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_04477/index.shtml, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720414, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720900, https://www.riksdagen.se/en/members-and-parties/member/johanna-jonsson_a3bcba0f-0032-4aba-a889-f3fc19d82549, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=162&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/anna-caren-satherberg_c2917e84-a1f8-4de8-9c71-a492eee1f43f, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719202, https://www.parlament.gv.at/WWER/PAD_05439/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=44198c32-4ec3-4644-8903-391c65512702, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=312&idLegislatura=12, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P312, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721234, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/cosgrove-clayton/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=821&ConstID=129, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3daba59a-3bed-4fe7-b80e-a52500f2c9f8, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P348, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=167&type=A, https://www.riksdagen.se/en/members-and-parties/member/lawen-redar_285a3d5f-cb32-4958-9b7c-1545b2faff18, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=ECV, https://www.parlament.gv.at/WWER/PAD_05673/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=72&idLegislatura=14, https://www.europarl.europa.eu/meps/en/124695/JAN_KELLER_home.html, https://www.parliament.uk/biographies/commons/mr-philip-hollobone/1537, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/elin-segerlind_c5632090-a0aa-461e-9ab2-e9aaa45d0983, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265931, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=104&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/alexander-christiansson_300c041c-1f7e-4daa-97e0-4d2ec8e6f4f5, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWB, https://www.parlament.gv.at/WWER/PAD_84056/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=50337775-8f00-44cb-be57-a43400d4d365, https://www.parlament.gv.at/WWER/PAD_03133/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/bjorn-von-sydow_d7c32305-83e4-11d4-ae60-0050040c9b55, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA693008, https://www.europarl.europa.eu/meps/en/28334/URSZULA_KRUPA_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=356&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=128&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=434805ad-6fe0-45d3-8c0a-80ab74f09f3b, https://www.parlament.gv.at/WWER/PAD_83130/index.shtml, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=61378, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ef815329-f549-4468-a40f-573c800551b3, https://www.europarl.europa.eu/meps/en/96811/ROSA_ESTARAS+FERRAGUT_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307195&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/125214/BRONIS_ROPE_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ee02c296-4420-47d8-b292-a52500eeb5c3, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307715&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/gustaf-lantz_82c56b96-b106-4b16-958c-98b153d02639, https://www.europarl.europa.eu/meps/en/96837/PETRA_KAMMEREVERT_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307283&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/bjorn-wiechel_7ef75999-90a2-41af-a083-6dfd70e8e3e8, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P346, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=343&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=344&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b7d2456b-5896-44d5-84ee-a43400dccdaf, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d56da4ca-9897-4904-a8df-6e2451e21410, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=295&idLegislatura=14, https://www.europarl.europa.eu/meps/en/124995/KRISTINA_WINBERG_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/staffan-eklof_5c165eb8-a2d3-4991-8732-430ea585d763, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/rikard-larsson_d3a9b52a-0d94-4610-b20e-d0ed8375c9d1, https://www.riksdagen.se/en/members-and-parties/member/peter-persson_33e3e429-81c8-4c1e-b3d6-d516c48be95c, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=8ad2a301-aea1-46fd-81df-adebdd17c833, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b33ab980-c68e-47b2-8756-1ec49b2858c1, https://www.eduskunta.fi/EN/kansanedustajat/Pages/936.aspx, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/per-ramhorn_e9375099-ca5f-4aac-a0ab-de8e3ed1ee99, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3bba5105-8864-41b1-b016-a52500ed8b1a, https://www.riksdagen.se/en/members-and-parties/member/roger-hedlund_dd0d47ea-5e71-4ec9-b987-3261320ac857, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=54c82c2e-7712-4c8c-9739-a52500eec1a1, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4b7816c1-bfe1-4065-b6d1-a525010b1938, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=329&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=30dc1620-a0ab-449e-837d-730946d5712f, https://www.riksdagen.se/en/members-and-parties/member/marie-olsson_f1f00905-525e-43fb-bbd2-e15aa3ff1be1, https://www.riksdagen.se/en/members-and-parties/member/maria-malmer-stenergard_4f48a9f3-c14a-4436-8ad3-a1d4166bdf30, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kristina-axen-olin_8cafb7dc-dbdd-4ac4-bd56-1e4e75daa4a6, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721792, https://www.parlament.gv.at/WWER/PAD_14896/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307418&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720806, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=198084, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307412&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/joakim-jarrebring_a6a8678d-8fe2-414c-9dc4-da76ad161d23, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=133&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=306&type=A, https://www.parliament.uk/biographies/commons/sir-michael-fallon/88, https://www.riksdagen.se/en/members-and-parties/member/staffan-danielsson_75c22618-4eb3-4e87-8eb5-3b25efb30abb, https://www.riksdagen.se/en/members-and-parties/member/roger-richtoff_b4329cc3-9256-470c-a712-5e2501c6fde7, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9d8333bb-92bd-4cce-8d31-a43400dadf89, https://www.europarl.europa.eu/meps/en/124712/ANDREA_BOCSKOR_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307210&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/lisbeth-sunden-andersson_aa3965b9-7a33-4cb0-bee2-998e2b6a30bb, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=282&type=A, https://www.riksdagen.se/en/members-and-parties/member/desiree-pethrus_f03ff45a-c476-11d4-ae40-006008578ce8, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=110&idLegislatura=12, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA342415, https://www.europarl.europa.eu/meps/en/124941/RAYMOND_FINCH_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=287&type=A, https://www.parliament.uk/biographies/commons/mark-menzies/3998, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/paula-holmqvist_ee75e6d6-b026-4d65-a54e-f02861c80721, https://www.riksdagen.se/en/members-and-parties/member/birger-lahti_a2c4e9f3-6d4a-4994-9351-66ce4c752905, https://www.europarl.europa.eu/meps/en/124786/DAMIAN_DRAGHICI_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=32311263-8667-4e66-b46e-a52500eb9842, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/yasmine-posio_3b9b4858-4b06-4e43-b452-a0dc9d730e9a, https://www.riksdagen.se/en/members-and-parties/member/magnus-manhammar_639da251-c800-4b3d-a8c5-6626094c9035, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9bcbe435-d78e-4b8a-a741-6d7c065df7b7, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=355&type=A, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00APG, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=412&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ann-christine-from-utterstedt_3298ed49-917f-4230-8cf5-e10a70a93727, https://www.riksdagen.se/en/members-and-parties/member/annelie-karlsson_cbadd933-3375-4216-92fd-3d64a56b5a13, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=397&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=232&idLegislatura=14, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/28CF4EB6F4A8607BC22583320029E4A9?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6b673fe2-a793-4b90-9a63-a43400eca309, https://www.riksdagen.se/en/members-and-parties/member/anders-lonnberg_9fdf72d9-6d47-4cd8-b6f7-3e81d6767e92, https://www.europarl.europa.eu/meps/en/124745/IVETA_GRIGULE_home.html, https://www.riksdagen.se/en/members-and-parties/member/nooshi-dadgostar_78d79a96-956f-4ac3-bbf7-2b15b3d86ce7, https://www.parlament.gv.at/WWER/PAD_05626/index.shtml, https://www.parlament.gv.at/WWER/PAD_88631/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307687&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307573&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/fredrik-eriksson_8bd94dfc-abec-476d-9f48-090a2f8c0a86, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/simmonds-penny/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=51&idLegislatura=12, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01067&lactivity=54, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kalle-olsson_f8d1d1b6-f008-446e-a7f8-dd324fbb71d4, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=265&idLegislatura=12, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1315.aspx, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=024&type=A, https://www.europarl.europa.eu/meps/en/38420/CRISTIAN-SILVIU_BUSOI_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ann-christin-ahlberg_8583281e-3621-49fd-a131-661a0f432452, https://www.riksdagen.se/en/members-and-parties/member/susanne-eberstein_d7c3212e-83e4-11d4-ae60-0050040c9b55, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=82&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=166&type=A, https://www.riksdagen.se/en/members-and-parties/member/per-ramhorn_e9375099-ca5f-4aac-a0ab-de8e3ed1ee99, https://www.europarl.europa.eu/meps/en/124897/STANISLAW_OZOG_home.html, https://www.parlament.gv.at/WWER/PAD_22449/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307286&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4ba66eec-f99d-4626-a663-fce6a597871c, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=299&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=94&idLegislatura=12, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=7K6, https://www.parliament.uk/biographies/commons/maggie-throup/4447, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=507D89B1862A303BC22583320029E365&url=./0/507D89B1862A303BC22583320029E365?OpenDocument&lang=EN, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=022&type=A, https://www.riksdagen.se/en/members-and-parties/member/maj-karlsson_9d6489d6-6fa5-4420-9224-8968abaa569c, https://www.riksdagen.se/en/members-and-parties/member/sara-lena-bjalko_8380b7c7-5994-4ea9-be2d-f404736dc0b8, https://www.parlament.gv.at/WWER/PAD_35522/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307712&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P347, https://www.parlament.gv.at/WWER/PAD_14836/index.shtml, https://www.parlament.gv.at/WWER/PAD_12741/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=124&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f7a45370-3dee-40a9-a154-a43400edaeeb, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA266774, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/robert-halef_4eda0e46-58a1-446f-b12b-1de6132f4f35, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307120&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7829b1d9-1ce5-4dfe-a06a-a52500ffa8a3, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/petter-loberg_7826c819-d0da-4e4a-a16b-ffa3d8e9b155, https://www.europarl.europa.eu/meps/en/96771/JAROSLAW_KALINOWSKI_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1febcc6d-55ac-4b10-9bb1-04e066f8557d, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302886&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a059a55d-97e8-4c4f-9fc7-a5250100721d, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=303&type=A, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00623&lactivity=54, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=078&type=A, https://www.europarl.europa.eu/meps/en/124903/BOGDAN+BRUNON_WENTA_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307293&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2449, https://www.riksdagen.se/en/members-and-parties/member/catharina-brakenhielm_a3e5e77a-0d71-497f-84e4-1ac8b5ad8987, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=198&type=A, https://www.riksdagen.se/en/members-and-parties/member/cassandra-sundin_e59e1306-99aa-4644-8fda-d54ff040ce98, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=139&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_01944/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=423&type=A, https://www.parliament.uk/biographies/commons/edward-argar/4362, https://www.riksdagen.se/en/members-and-parties/member/margareta-larsson_1f0d91c1-605d-4b20-9825-fb8ee5373dcb, https://www.europarl.europa.eu/meps/en/28192/VLADIMIR_MANKA_home.html, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00889&lactivity=54, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/96FF6B2CA1C6A183C22583320029E434?OpenDocument&lang=EN, https://www.riksdagen.se/en/members-and-parties/member/ingela-nylund-watz_9cd4ce1a-c1f5-4743-aed6-8e60569e9947, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/reti-shane/, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307225&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.eduskunta.fi/EN/kansanedustajat/Pages/935.aspx, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=216e269c-8589-491a-87db-a52500ad84a1, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307683&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2445&ConstID=176, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=367&idLegislatura=12, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06325&lactivity=54, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/gustaf-lantz_82c56b96-b106-4b16-958c-98b153d02639, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/elisabeth-falkhaven_cb53466b-8349-484e-9a7b-084561cdf8b4, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mallard-trevor/, https://www.europarl.europa.eu/meps/en/97137/SYLVIE_GOULARD_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=239&idLegislatura=12, https://www.europarl.europa.eu/meps/en/97014/KARIN_KADENBACH_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307231&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=461&type=A, https://www.parliament.uk/biographies/commons/bill-grant/4605, https://www.parliament.uk/biographies/commons/mr-ian-liddell-grainger/1396, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720988, https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/madlener-b-pvv, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=da28629f-8ff3-4d16-9b94-91d0675b3cc4, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=281&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6bf4792c-93d9-4f57-97f0-a52500f8dec9, https://www.parlament.gv.at/WWER/PAD_05627/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=7BCC4D87791624FEC22583320029E3C7&url=./0/7BCC4D87791624FEC22583320029E3C7?OpenDocument&lang=EN, https://www.parlament.gv.at/WWER/PAD_01970/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/annika-qarlsson_238444e1-ea5f-4acc-b9d1-b7789658b931, https://www.europarl.europa.eu/meps/en/125067/THEODOROS_ZAGORAKIS_home.html, https://www.riksdagen.se/en/members-and-parties/member/peter-johnsson_78ea8e04-009c-44df-8fa1-0fa783fd3783, https://www.riksdagen.se/en/members-and-parties/member/larry-soder_e238e06a-acac-4fae-829c-1773ee851878, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=dabb8e91-af53-44d4-9f8e-7a449f5aac54, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=8e7b794f-8c2d-4e30-940a-d25a6ac5ec3e, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=312&idLegislatura=14, https://www.europarl.europa.eu/meps/en/124711/NORBERT_ERDOS_home.html, https://www.riksdagen.se/en/members-and-parties/member/patrik-engstrom_22fbd180-3870-4f26-a5ee-eeab42b00de8, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P243, https://www.oireachtas.ie/en/members/member/Danny-Healy-Rae.D.2016-10-03/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AOM, https://www.riksdagen.se/en/members-and-parties/member/elisabet-knutsson_53c95b05-6cf5-4eae-aee4-e40c5aba8cd1, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=349&type=A, https://www.parlament.gv.at/WWER/PAD_01969/index.shtml, https://www.parlament.gv.at/WWER/PAD_51569/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=94365bd1-8420-4c08-ac89-1e4cba1725e0, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1118.aspx, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P351, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=225099, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=837&ConstID=25, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mia-sydow-molleby_0c2f572c-a7ce-4f39-8ea9-9a758a01680c, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=58036096-73d1-4cb3-9463-a434014d9e28, https://www.parlament.gv.at/WWER/PAD_83114/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/jonas-akerlund_3139e412-6409-4376-9e02-674a4e4a2de9, https://www.europarl.europa.eu/meps/en/124855/GEORGI_PIRINSKI_home.html, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P329, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=0f0791cd-d368-40d6-8dd1-a52500fe0a7e, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=416&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=704a604f-ab0e-4654-bc9d-0b1c9f3e75fc, https://www.parlament.gv.at/WWER/PAD_35515/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=134&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=306&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c8eb984e-e3b5-4315-b80c-a434013cf31f, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=79&idLegislatura=14, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=268&type=A, https://www.europarl.europa.eu/meps/en/96765/VERONICA_LOPE+FONTAGNE_home.html, https://www.parlament.gv.at/WWER/PAD_02333/index.shtml, https://www.europarl.europa.eu/meps/en/2341/MICHAEL_GAHLER_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/peter-persson_33e3e429-81c8-4c1e-b3d6-d516c48be95c, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=90cf0673-98d9-4a00-9827-fa11abf8ae94, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jimmy-stahl_c63331e9-02ca-4f71-a7de-9a17e2ec4ac4, https://www.europarl.europa.eu/meps/en/124964/LOUISE_BOURS_home.html, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mark-ron/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=29&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/pal-jonson_057d1c7b-e668-4acc-8167-5d8dc68db0af, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=12cb1cad-9861-4de1-aab1-516cc9c5da22, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=67666e3e-f577-496e-bac9-a52501045504, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=39dfc79a-27e0-4ffd-a205-a43400e28cfb, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=121&type=A, https://www.parliament.uk/biographies/commons/trudy-harrison/4593, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=69&idLegislatura=12, https://www.europarl.europa.eu/meps/en/185340/IVICA_TOLIC_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=65bed644-865d-4d4a-8dd8-01fa33e24f0e, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/dean-jacqui/, https://www.parlament.gv.at/WWER/PAD_02006/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/736F9A5C98593FEAC22583320029E44D?OpenDocument&lang=EN, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P352, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=200049&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307276&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/asa-lindestam_25617b2f-2cc7-477a-a872-d1c14e9ef187, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719272, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307651&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johanna-jonsson_a3bcba0f-0032-4aba-a889-f3fc19d82549, https://www.europarl.europa.eu/meps/en/38601/VLADIMIR_URUTCHEV_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=181&idLegislatura=14, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0N, https://www.riksdagen.se/en/members-and-parties/member/asa-lindestam_25617b2f-2cc7-477a-a872-d1c14e9ef187, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/stanford-erica/, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/birger-lahti_a2c4e9f3-6d4a-4994-9351-66ce4c752905, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA266793, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/smith-damien/, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307275&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/maria-andersson-willner_c6748573-5031-4aee-a5a3-dab1a23b9caa, https://www.parlament.gv.at/WWER/PAD_16218/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307525&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/ali-esbati_979e9852-69ed-4077-8140-52ab99414a6c, https://www.parlament.gv.at/WWER/PAD_60446/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=028&type=A, https://www.parlament.gv.at/WWER/PAD_01972/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=378&type=A, https://www.riksdagen.se/en/members-and-parties/member/camilla-waltersson-gronvall_e581b273-02ee-4cb3-9390-35ea0061eca1, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307572&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/stig-henriksson_d5cf884c-3df7-441e-94b1-a97051b519be, https://www.parliament.uk/biographies/commons/victoria-atkins/4399, https://www.riksdagen.se/en/members-and-parties/member/jesper-skalberg-karlsson_2f1a9d57-c488-4c8f-89cb-c1fb7e735170, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608292, https://www.oireachtas.ie/en/members/member/Norma-Foley.D.2020-02-08/, https://www.riksdagen.se/en/members-and-parties/member/dag-klackenberg_3e2020e4-e222-4752-ad53-0eea2061e233, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307463&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/laila-naraghi_f65cb6f1-7001-4e8e-8d32-89d534577ab0, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sanne-lennstrom_1d28738c-16d7-48f3-bb2a-e8cdcf348ca1, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=016&type=A, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=063&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a7626614-7006-44c5-8d3f-a52500d941bb, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=bdf57a8b-67f6-4a7d-b617-a52500f5dd45, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=390&type=A, https://www.riksdagen.se/en/members-and-parties/member/mia-sydow-molleby_0c2f572c-a7ce-4f39-8ea9-9a758a01680c, https://www.parliament.uk/biographies/commons/lady-hermon/1437, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b194f70d-669d-49cd-b5cd-1d0e76173b97, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=549f2923-2f62-482e-ab0d-b2fe189c454a, https://www.eduskunta.fi/EN/kansanedustajat/Pages/402.aspx, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/linda-lindberg_669411b1-9abf-48dd-86c3-628cc7c5d137, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719640, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307702&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/christina-ornebjar_165a1fcd-57f6-4f98-8f0d-9f45313dedf9, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=071&type=A, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=D7E5484DCB3482A3C22583320029E3D3&url=./0/D7E5484DCB3482A3C22583320029E3D3?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ce543b2f-6dc5-4ab7-afa6-5bdebfae4619, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300146&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/124837/JOACHIM_SCHUSTER_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=343&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_06503/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=55&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300497&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=86&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307688&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721450, https://www.europarl.europa.eu/meps/en/1037/REIMER_BOGE_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307125&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=195&idLegislatura=12, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=36FF36351430EC82C22583320029E647&url=./0/36FF36351430EC82C22583320029E647?OpenDocument&lang=EN, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307506&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/hans-ekstrom_b6fe54d6-ffc7-4435-9326-5baf132b3338, https://www.parliament.uk/biographies/commons/graham-stringer/449, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P340, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=147&idLegislatura=14, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9398b9fb-a772-4230-ac8f-a4340141cfb4, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307270&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/28301/TADEUSZ_ZWIEFKA_home.html, https://www.parlament.gv.at/WWER/PAD_08235/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307498&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3412a7fa-5e0a-4404-9f47-a23707ac8d09, https://www.eduskunta.fi/EN/kansanedustajat/Pages/301.aspx, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mattias-ottosson_df8c5ae3-43e8-4d8a-bf64-67b9a78fef66, https://www.parlament.gv.at/WWER/PAD_83298/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307690&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=53891a25-e8f2-454b-ab9e-6acf4c64fdbc, https://www.parlament.gv.at/WWER/PAD_01567/index.shtml, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/leavasa-neru/, https://www.riksdagen.se/en/members-and-parties/member/jamal-el-haj_6a1b02dd-bdc4-4019-ab3e-dfeb133018ed, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=cdd3dfcc-cc96-4b22-93e8-5bdfe5b5dfd7, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307571&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=305&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=73b5a80f-18ab-4aff-927b-41a4f4366575, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307111&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_02001/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/allan-widman_b58dac92-0bb0-4fe3-a052-9049b9a99959, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307388&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307112&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/bo-broman_24c753af-11ea-4c6f-90f9-f4142fc71e19, https://www.parlament.gv.at/WWER/PAD_01978/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/christian-holm-barenfeld_92407f13-f6be-4686-bd08-f111daaec0f9, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=344&type=A, https://www.parlament.gv.at/WWER/PAD_02339/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f2627c9e-4fa4-4bfa-b7d1-a4340156a57e, https://www.parlament.gv.at/WWER/PAD_02998/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3e8ead5d-3eb6-4832-8be7-a5250108e421, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=654c6a7a-4778-4f4b-b75f-a52500ef64ce, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c7ca28be-d85d-4280-8f53-a52500f3b898, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P356, https://www.riksdagen.se/en/members-and-parties/member/johan-andersson_fff74c6c-fae3-4977-a472-cfe2b6ae257a, https://www.parlament.gv.at/WWER/PAD_02340/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/camilla-martensen_327ef4fd-e9a9-46d3-8e10-3267001f3be6, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=317&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=337&idLegislatura=14, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=846198AFA25CA915C22583320029E455&url=./0/846198AFA25CA915C22583320029E455?OpenDocument&lang=EN, https://www.europarl.europa.eu/meps/en/132925/EDWARD_CZESAK_home.html, https://www.parliament.uk/biographies/commons/mr-iain-duncan-smith/152, https://www.riksdagen.se/en/members-and-parties/member/markus-wiechel_8a9f3c8c-8ce8-4a17-9e57-0109af47efcc, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/baillie-chris/, https://www.europarl.europa.eu/meps/en/2109/BRIAN_CROWLEY_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=446&type=A, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P262, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=40fc23d9-472b-47cc-b0b1-53076cba2f7a, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/patrik-jonsson_0007cc9d-247c-4136-80d1-0bae44bd20ba, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=240&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/juno-blom_3eae18dc-594f-44eb-95a8-0e5b2b71d645, https://www.parlament.gv.at/WWER/PAD_01971/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/amanda-palmstierna_d12313ba-680b-4784-b858-5c9e6db692e7, https://www.riksdagen.se/en/members-and-parties/member/pernilla-stalhammar_02562f8f-735e-4da4-9a8c-e0c9d2a021fd, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7a289638-ac7c-430c-b3df-c0394f7b2cd0, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722022, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=C7A852119E61AFD9C22583320029E45C&url=./0/C7A852119E61AFD9C22583320029E45C?OpenDocument&lang=EN, https://www.europarl.europa.eu/meps/en/96877/ZOLTAN_BALCZO_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307190&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1107.aspx, https://www.europarl.europa.eu/meps/en/96762/JOACHIM_ZELLER_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305586&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=65&idLegislatura=14, https://www.europarl.europa.eu/meps/en/28393/LUIS_DE+GRANDES+PASCUAL_home.html, https://www.riksdagen.se/en/members-and-parties/member/annika-qarlsson_238444e1-ea5f-4acc-b9d1-b7789658b931, https://www.riksdagen.se/en/members-and-parties/member/mikael-eskilandersson_cf98df89-2103-40cc-8524-b2df33125a3f, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=059adf29-aa1e-4f4b-a8bd-12f2ac591e25, https://www.parlament.gv.at/WWER/PAD_03132/index.shtml, https://www.europarl.europa.eu/meps/en/124960/IAN_DUNCAN_home.html, https://www.parlament.gv.at/WWER/PAD_02335/index.shtml, https://www.eduskunta.fi/EN/kansanedustajat/Pages/592.aspx, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307689&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/aron-emilsson_fc43f0dc-4fc1-4e6e-ba11-5b74b20a12b2, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722110, https://www.riksdagen.se/en/members-and-parties/member/magnus-oscarsson_0d218eb6-6294-4587-8abf-be0a351d7213, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=358&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6beb3ce9-5edf-4e83-8708-aec27a5f3a5f, https://www.parlament.gv.at/WWER/PAD_83127/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=159&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307514&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307157&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/esabelle-dingizian_1e2ffe2c-59c6-4f5d-9c4d-e509f20324ce, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fa3ee189-343c-4446-9e12-a43400dd178a, https://www.parlament.gv.at/WWER/PAD_52727/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b461e06d-3c5a-40b3-b77c-99e5ab05770b, https://www.europarl.europa.eu/meps/en/23704/JIRI_MASTALKA_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302744&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/33984/IOAN+MIRCEA_PASCU_home.html, https://www.parliament.uk/biographies/commons/john-bercow/17, https://www.europarl.europa.eu/meps/en/28341/MIROSLAW_PIOTROWSKI_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=29edcb7e-62bb-444f-8fb5-a434013f3bdc, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=247871, https://www.parlament.gv.at/WWER/PAD_05638/index.shtml, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1041.aspx, https://www.parlament.gv.at/WWER/PAD_06504/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307614&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=324&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307127&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_55227/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307277&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P334, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=AD90D8A3E779103AC22583320029E3A4&url=./0/AD90D8A3E779103AC22583320029E3A4?OpenDocument&lang=EN, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=30484, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307192&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/christina-ostberg_aa5e595b-e755-4a4e-a457-ea289ad1add3, https://www.parlament.gv.at/WWER/PAD_14755/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/jamal-mouneimne_12fec0e0-b73e-43c0-8007-9a84cc5bd824, https://www.europarl.europa.eu/meps/en/112788/BIRGIT_COLLIN-LANGEN_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jonas-millard_9f5ae9ae-d5de-4253-8e8b-bb455a9f792e, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P169, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=43e7fd54-6ad4-4997-92b9-16f6a6bc25e6, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=36&idLegislatura=12, https://www.parliament.uk/biographies/commons/mr-gregory-campbell/1409, https://www.parlament.gv.at/WWER/PAD_83299/index.shtml, https://www.europarl.europa.eu/meps/en/124841/IRIS_HOFFMANN_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=0d03df48-ab0e-471d-837f-a52501054e6d, https://www.parlament.gv.at/WWER/PAD_02329/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=181&type=A, https://www.parlament.gv.at/WWER/PAD_51879/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/suzanne-svensson_11cd95fa-2fae-45e4-a920-f7d5cf13e0d3, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=454&type=A, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=445&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/caroline-helmersson-olsson_ae67201e-c2ea-4c8d-8a62-54f12be55778, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=0A7B729762AD91CDC22583320029E422&url=./0/0A7B729762AD91CDC22583320029E422?OpenDocument&lang=EN, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=083&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307666&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=182&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=544c0d0b-e2e8-472e-adb5-ffee5488f6eb, https://www.parlament.gv.at/WWER/PAD_02819/index.shtml, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720138, https://www.riksdagen.se/en/members-and-parties/member/jan-bjorklund_fb860100-9be3-4365-b84c-24fe53434882, https://www.riksdagen.se/en/members-and-parties/member/peter-helander_3234a755-70b3-40db-b414-d5afb960ed4e, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=0292a5f7-ba6d-4c67-a161-6569341c4a21, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=50462&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/lars-beckman_db90fc94-9496-4748-9b84-bcfadc24af74, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/13AE9BD5C9F87294C22583320029E3D6?OpenDocument&lang=EN, https://www.riksdagen.se/en/members-and-parties/member/jimmy-stahl_c63331e9-02ca-4f71-a7de-9a17e2ec4ac4, https://www.parlament.gv.at/WWER/PAD_05632/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307668&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=dad5e41c-be01-49fa-b905-7d89c525bfa6, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307566&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=326&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307698&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/emilia-toyra_8e282183-f357-460d-80e3-094d61d40889, https://www.europarl.europa.eu/meps/en/96854/SABINE_LOSING_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307266&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/124874/BOLESLAW+G._PIECHA_home.html, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2155, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307461&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/leif-pettersson_b8689412-61af-4894-9c74-e6a39dfa173c, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E0D, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/gunnar-strommer_f164e0fc-522e-4c3e-a21f-8263b55a649a, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721094, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=70&idLegislatura=12, https://www.europarl.europa.eu/meps/en/96844/NORBERT_NEUSER_home.html, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=YW4, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/bengt-eliasson_18cd4aa9-d266-4c2b-bcaa-6118032ece49, https://www.oireachtas.ie/en/members/member/Dessie-Ellis.D.2011-03-09/, https://www.europarl.europa.eu/meps/en/96696/ALGIRDAS_SAUDARGAS_home.html, https://www.riksdagen.se/en/members-and-parties/member/bengt-eliasson_18cd4aa9-d266-4c2b-bcaa-6118032ece49, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=325&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/rickard-persson_98fe4c72-5136-42d3-addd-a9c5d7be8a75, https://www.parlament.gv.at/WWER/PAD_51570/index.shtml, https://www.parlament.gv.at/WWER/PAD_06498/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/faradj-koliev_997ffdd9-964a-48e4-8dd3-202b36a5cd86, https://www.riksdagen.se/en/members-and-parties/member/thomas-strand_248a04eb-d619-11d6-ae71-0004755038ce, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/3B129165BC5C8268C22583320029E3F5?OpenDocument&lang=EN, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=120&type=A, https://www.parliament.uk/biographies/commons/damien-moore/4669, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/bjorn-soder_06d7c195-c170-4103-bcc6-1d9c0d43b169, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719100, https://www.europarl.europa.eu/meps/en/135541/SLAWOMIR_KLOSOWSKI_home.html, https://www.riksdagen.se/en/members-and-parties/member/kent-harstedt_d7c32650-83e4-11d4-ae60-0050040c9b55, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307110&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=41bcd457-067d-42cd-bf41-a3b95913c3fe, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=320&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/ann-charlotte-hammar-johnsson_5ac51ad6-c8ea-4ce6-bcd5-b8609d6c058a, https://www.riksdagen.se/en/members-and-parties/member/sultan-kayhan_50277320-fb16-40ba-82aa-8093fbb3126e, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307432&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=84728b52-254d-4bbc-a4dd-112f4eea53a9, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f93525ad-fdc4-444c-a286-79b8c6724558, https://www.parlament.gv.at/WWER/PAD_80479/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=207&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307519&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mattias-ingeson_feca1b4c-7f8b-41e6-9f10-3001fdd550f7, https://www.riksdagen.se/en/members-and-parties/member/ida-karkiainen_7891a68a-bcbd-43a3-bd8b-90bdbb040f45, https://www.parlament.gv.at/WWER/PAD_83059/index.shtml, https://www.europarl.europa.eu/meps/en/124784/DAN_NICA_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307620&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307440&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/michael-anefur_0e4e69c7-d657-47e6-be67-e8a3003084fd, https://www.riksdagen.se/en/members-and-parties/member/birgitta-ohlsson_49cbfff2-68fa-4c19-8fa3-631093384cd2, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=241&type=A, https://www.parliament.uk/biographies/commons/ben-bradley/4663, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=35f9a570-b19c-4700-a889-a43400d71e0d, https://www.riksdagen.se/en/members-and-parties/member/stefan-nilsson_613bc752-3d5d-4ed2-857d-436d8bf6f527, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9dd0e4e6-97f1-412e-bc0a-a43400ea9e67, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=93dd4441-907d-4c2f-ab48-a52500f793a3, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307607&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2618cd04-5ba9-4473-9276-981e82acbe96, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306139&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/jan-lindholm_04ede91e-1686-429d-8847-fadb72508460, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-lofstrand_eaf0fa85-8858-4e0e-97d8-daee0a771d1f, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=262&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=111&idLegislatura=12, https://www.parliament.uk/biographies/commons/chris-grayling/1413, https://www.europarl.europa.eu/meps/en/28150/KINGA_GAL_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307543&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/rasmus-ling_8af2f4df-6c44-4844-89af-c0fd142e4eed, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/45EB831B2AB18C55C22583320029E3F4?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/aron-etzler_6721cc0e-b772-4ca9-902b-f26b41ec8bf0, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=252&type=A, https://www.parlament.gv.at/WWER/PAD_84060/index.shtml, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=AI6, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=465&type=A, https://www.europarl.europa.eu/meps/en/96694/ROLANDAS_PAKSAS_home.html, https://www.riksdagen.se/en/members-and-parties/member/katarina-brannstrom_97a9cfb7-de78-4995-8e29-40891595e8d2, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722390, https://www.parlament.gv.at/WWER/PAD_51560/index.shtml, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721352, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=38c8ea12-e1d0-4a0e-940b-cc54157ce17f, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=221&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/hakan-bergman_62f6b391-e0a5-40f5-84c6-dd6fded96ac9, https://www.eduskunta.fi/EN/kansanedustajat/Pages/157.aspx, https://www.parlament.gv.at/WWER/PAD_02330/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/henrik-vinge_1d7d8c9a-7879-4be3-8554-745991b615d2, https://www.riksdagen.se/en/members-and-parties/member/patrik-lundqvist_41f3a07f-57ba-4d0c-b737-e05aa04ec023, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307643&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307288&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/craig-liz/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=71&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307129&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c3144cac-a91c-41c7-8f0e-63a4f78a4466, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P319, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/emma-carlsson-lofdahl_8340e89d-250a-4300-bab5-6937399ee277, https://www.riksdagen.se/en/members-and-parties/member/cecilie-tenfjord-toftby_4c83b0e0-8dda-47a4-9464-81c56db30430, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=047&type=A, https://www.eduskunta.fi/EN/kansanedustajat/Pages/116.aspx, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fcbdd84c-999f-4b99-b472-a4340144b8b6, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=29514a2b-4306-4629-a36a-d88ab7d66ff2, https://www.parliament.uk/biographies/commons/fiona-bruce/3958, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=351&idLegislatura=12, https://www.europarl.europa.eu/meps/en/28307/FRANCISCO_ASSIS_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302881&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/hanna-westeren_ed3399e1-7bce-4ea4-baf6-587f722710f5, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ida-gabrielsson_964e3aff-b4df-4f49-acc1-3bba2afc2f80, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307159&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307632&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307672&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300328&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=117&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hans-ekstrom_b6fe54d6-ffc7-4435-9326-5baf132b3338, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307634&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307605&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=008&type=A, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AOP, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307710&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=99b8ceab-d51c-4b4a-9121-138c3527a160, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=472&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tomas-kronstahl_173d7387-fa63-4689-ac8c-e12f278487bd, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=eb41b0cf-3eb8-42de-84ce-e2af5f33202b, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3a5decd8-6f24-4002-aefa-519451abe124, https://www.parlament.gv.at/WWER/PAD_02996/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=205&type=A, https://www.parliament.uk/biographies/commons/mr-nicholas-brown/523, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=122&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=269&type=A, https://www.riksdagen.se/en/members-and-parties/member/helene-petersson_a45ca940-844f-4e27-9098-50b758a1b3aa, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307282&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.oireachtas.ie/en/members/member/Pa-Daly.D.2020-02-08/, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ac864fc9-5eba-4698-b1a2-a52500df4925, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA266776, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/yang-jian/, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kristina-nilsson_a761212d-42d3-4b7d-a535-58fb33d2098d, https://www.parlament.gv.at/WWER/PAD_35487/index.shtml, https://www.parliament.uk/biographies/commons/mr-alister-jack/4619, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/4480DE193DF835A3C22583320029E3AF?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/per-asling_74c39a37-e184-44f6-9a7e-36cdb06c9dcc, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=40ad041d-a595-40d8-812d-a434014eddcb, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c273bc69-6661-415f-8c70-63b01a08e9c1, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307264&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hanna-westeren_ed3399e1-7bce-4ea4-baf6-587f722710f5, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=529d0d24-6dcb-46ce-9b03-06788e99c7f6, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1275.aspx, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=53e19969-ce12-4b35-952a-a525010daf38, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=229&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=84&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=328&type=A, https://www.parliament.uk/biographies/commons/oliver-dowden/4441, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307258&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307624&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=400&type=A, https://www.parlament.gv.at/WWER/PAD_35514/index.shtml, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/doocey-matt/, https://www.parlament.gv.at/WWER/PAD_44127/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=500cb925-e63e-411b-ae19-a52500f0c62a, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267241, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302832&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1630, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=01152b74-ff45-428a-84a5-a43400e7e440, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=217&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/helena-gellerman_5e7c5792-d4ff-4d8e-999f-92e1a7af86f3, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ea9f7a14-9d90-4c05-9792-f1dd752b6088, https://www.parlament.gv.at/WWER/PAD_51571/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307502&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ludvig-aspling_5b6bef5c-75ce-4f53-894d-e89afd3b6799, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=049&type=A, https://www.riksdagen.se/en/members-and-parties/member/hans-wallmark_ef84acf4-4f56-45d9-9951-1c8ba4098302, https://www.europarl.europa.eu/meps/en/1038/KARL-HEINZ_FLORENZ_home.html, https://www.riksdagen.se/en/members-and-parties/member/linus-skold_d17ef55a-9e3b-4a4d-894e-d57c7fb4973f, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00837&lactivity=54, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=419&type=A, https://www.europarl.europa.eu/meps/en/96681/VILIJA_BLINKEVICIUTE_home.html, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721070, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=227&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307142&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sara-seppala_235255cd-cf3b-4b45-906d-5ffe21195683, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=121&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=91367bf6-fb31-4da6-bc29-a43400ebf2ab, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307189&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=275&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/carina-stahl-herrstedt_96fd915b-03e4-436a-9fbd-879f0737d828, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721126, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1308.aspx, https://www.parlament.gv.at/WWER/PAD_51577/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/alexandra-volker_f96150c2-6e1c-4e3f-bc7f-2503f3cc9ede, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P006, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d03ee571-015d-4ecd-9117-de54c6f9509f, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/korako-tutehounuku-nuk/, https://www.riksdagen.se/en/members-and-parties/member/nina-kain_82c688bb-8481-497e-b135-b7a7f0fb22c3, https://www.riksdagen.se/en/members-and-parties/member/tina-acketoft_45445eb9-01dc-4786-990e-c1864d4f7c50, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e9f1e617-a115-4598-a002-a43400e5e070, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/amineh-kakabaveh_8399ff3f-1fbe-4984-b59c-4ada1ec670ec, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307653&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_83108/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=db357c57-5baa-42e5-bbc4-a52500f50b2f, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f7eae329-45c1-4a12-a682-a43400ead9b0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=GB6, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307109&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_02941/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/kalle-olsson_f8d1d1b6-f008-446e-a7f8-dd324fbb71d4, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307370&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ulrika-heie_8c343e73-ddab-428a-87aa-0ab8e2879ce4, https://www.europarl.europa.eu/meps/en/124808/NORBERT_LINS_home.html, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06286&lactivity=54, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f02eb88a-a45f-425b-acf9-a434013e4f21, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=007&type=A, https://www.parlament.gv.at/WWER/PAD_03129/index.shtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=6E80576A8814C7E0C22583320029E55A&url=./0/6E80576A8814C7E0C22583320029E55A?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e933be1f-a0e5-4b17-8215-a52500f7f95f, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307602&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/97019/IVO_VAJGL_home.html, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06435&lactivity=54, https://www.riksdagen.se/en/members-and-parties/member/paula-holmqvist_ee75e6d6-b026-4d65-a54e-f02861c80721, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=072&type=A, https://www.parlament.gv.at/WWER/PAD_88386/index.shtml, https://www.parlament.gv.at/WWER/PAD_03614/index.shtml, https://www.parlament.gv.at/WWER/PAD_05438/index.shtml, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=245&type=A, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P345, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2a9c3f22-6787-4a43-be7b-0c31177def11, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/EFD494718E8E5586C22583320029E58B?OpenDocument&lang=EN, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/fredrik-lundh-sammeli_19d6281a-a1fc-4399-9631-89acf6420f42, https://www.parlament.gv.at/WWER/PAD_05625/index.shtml, https://www.europarl.europa.eu/meps/en/124838/SUSANNE_MELIOR_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2e998473-7e45-470d-bc16-a434014d896d, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f734a420-5262-4bb3-b993-a52500f04611, https://www.riksdagen.se/en/members-and-parties/member/mikael-dahlqvist_4db15792-072c-456e-a46c-6d0cee07889e, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=069&type=A, https://www.parlament.gv.at/WWER/PAD_06506/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/heidi-karlsson_04e2e197-8bd6-4b98-826d-6bf761e85119, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=110&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=740668ed-799a-453e-8403-a4340150bb11, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=58bd7966-6190-43be-ad7b-5982f2f926ab, https://www.riksdagen.se/en/members-and-parties/member/asa-westlund_73281fee-b276-4150-8cf0-fd3368b3c5c6, https://www.parliament.uk/biographies/commons/julian-sturdy/4079, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=48&idLegislatura=14, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01051&lactivity=54, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=261&type=A, https://www.europarl.europa.eu/meps/en/124725/LOUIS-JOSEPH_MANSCOUR_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=45d663cf-c62b-411b-b8f1-a52501024aaf, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=220d1308-7dd9-426c-9496-ce7d06353e16, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642935, https://www.riksdagen.se/en/members-and-parties/member/teres-lindberg_2d7334ea-9a6f-4381-b6ec-3c46d744cb9a, https://www.oireachtas.ie/en/members/member/Noel-Grealish.D.2002-06-06/, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mckee-nicole/, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307396&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=262&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302949&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/annie-loof_e234524d-e04b-448a-b609-05926a0a8b36, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P335, https://www.riksdagen.se/en/members-and-parties/member/elisabeth-svantesson_b7538868-d298-4c5f-9098-e42ea9fb13da, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307121&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307179&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=381&type=A, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2438&ConstID=237, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=401&type=A, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307589&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a16cfe90-e547-49b9-bc8f-a43400e164a1, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=cf4f4315-7bfe-4064-9403-b07369f0b1cb, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1119.aspx, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7e61dcc1-8f87-44b3-b0b5-a16d5512660b, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/linda-ylivainio_63ea9085-f68c-4782-ae6e-12d84809d352, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307458&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.uk/biographies/commons/sir-roger-gale/87, https://www.parliament.uk/biographies/commons/ian-paisley/4129, https://www.parliament.uk/biographies/commons/stephen-pound/161, https://www.parlament.gv.at/WWER/PAD_14767/index.shtml, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P321, https://www.parlament.gv.at/WWER/PAD_05486/index.shtml, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718728, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307477&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307116&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mccully-murray/, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1695, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307153&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/7C23BE457765F0E9C22583320029E51E?OpenDocument&lang=EN, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=417&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4a87f876-92ab-47c7-8386-a52500ae79b1, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6e00123a-d9b7-4565-bda7-a43400e717d4, https://www.riksdagen.se/en/members-and-parties/member/aron-emilsson_fc43f0dc-4fc1-4e6e-ba11-5b74b20a12b2, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307185&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c27d951d-0f59-4e24-a251-a434014e182b, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P229, https://www.riksdagen.se/en/members-and-parties/member/marianne-pettersson_d9f971a1-12ab-4a01-8cb6-2d2d6a9e0791, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/bjorn-petersson_d2d94e0b-a745-4457-8c2f-9557caf78cdf, https://www.riksdagen.se/en/members-and-parties/member/shadiye-heydari_23e00d08-3578-4414-9dd3-f773f4831ca5, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=92&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=364&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307398&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=29ef51c5-2701-4b9c-a2ce-a52500a926d3, https://www.riksdagen.se/en/members-and-parties/member/lotta-johnsson-fornarve_4468626c-27a1-46c7-b530-f346b70b753b, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307553&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.parlament.gv.at/WWER/PAD_83151/index.shtml, https://www.parlament.gv.at/WWER/PAD_35497/index.shtml, https://www.parlament.gv.at/WWER/PAD_01794/index.shtml, https://www.europarl.europa.eu/meps/en/124996/PETER_LUNDGREN_home.html, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=96&idLegislatura=14, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1caff756-0452-47cf-b181-a43400d95a52, https://www.parlament.gv.at/WWER/PAD_83150/index.shtml, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ingemar-kihlstrom_06f647f7-2937-4767-af38-04636afc040d, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307191&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=448&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jorgen-grubb_086bff3d-8adb-47c2-b5dc-86d4a9f1b191, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=57e39806-451f-4585-be3a-a52500ac4c68, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=127&idLegislatura=14, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/cameron-mark/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=281&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/monica-haider_6f818cd1-9a97-412f-bc59-1d1e8a2ceb19, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1fd44fec-af2b-4b22-93ab-a434013ef33e, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P344, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O2466&lactivity=54, https://www.europarl.europa.eu/meps/en/34250/NEDZHMI_ALI_home.html, https://www.parlament.gv.at/WWER/PAD_83129/index.shtml, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307576&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DYU, https://www.riksdagen.se/en/members-and-parties/member/robert-stenkvist_0cb27c59-4f9e-4d84-a8e2-f45325b5a93c, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=151&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=190&type=A, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=63&idLegislatura=12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ellen-juntti_efb2daaa-8053-411f-9fc7-dfcca1395bb0, https://www.riksdagen.se/en/members-and-parties/member/jorgen-hellman_26eb9dcc-8638-445e-8356-ba8fdeb6d742, https://www.parlament.gv.at/WWER/PAD_05674/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/ann-christin-ahlberg_8583281e-3621-49fd-a131-661a0f432452, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ba229380-36fc-4dbb-a0f0-a434014e1952, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=701c78da-6212-47e5-9195-d7f4511a739f, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/01FAA34AD99A6953C22583320029E5D6?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=aa57c539-7f9a-4ea4-bd6c-4899ca8e2793, https://www.riksdagen.se/en/members-and-parties/member/anders-osterberg_df3988c4-9541-465c-b02e-1410c3d31155, https://www.europarl.europa.eu/meps/en/124876/RIKKE_KARLSSON_home.html, https://www.riksdagen.se/en/members-and-parties/member/pia-nilsson_d6a34e6b-6f87-455c-ab36-fd75292f0ed0, https://www.parliament.uk/biographies/commons/karen-bradley/4110, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=36337abb-0900-4c6f-ac8f-a52500f133cc, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fe130b12-f712-4675-8f2a-c2249ee9756f, https://www.europarl.europa.eu/meps/en/23894/ANNA_ZABORSKA_home.html, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00946&lactivity=54, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307429&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/runar-filper_49cb272f-9347-407a-bac0-06403fbec5b5, https://www.eduskunta.fi/EN/kansanedustajat/Pages/1138.aspx, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=295&idLegislatura=12, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P317, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=316&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=192&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/tony-wiklander_5dc0c65f-2fe2-434b-8b85-92b39d03e034, https://www.riksdagen.se/en/members-and-parties/member/petter-loberg_7826c819-d0da-4e4a-a16b-ffa3d8e9b155, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jessica-thunander_9a93ac06-5af1-475e-8b9f-858c6b003ef0, https://www.parlament.gv.at/WWER/PAD_02343/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=253&idLegislatura=14, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ec5c77b5-2c39-4e58-8d53-a43401585c39, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=201&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307363&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P308, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/daniel-backstrom_d9b65520-dba2-4ec1-a124-d89d667ebf37, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307193&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=155&idLegislatura=12, https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/fritsma-sr-pvv, https://www.eduskunta.fi/EN/kansanedustajat/Pages/357.aspx, https://www.parlament.gv.at/WWER/PAD_03716/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=65&idLegislatura=12, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307366&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=154&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_01984/index.shtml, https://www.europarl.europa.eu/meps/en/124902/STANISLAW_ZOLTEK_home.html, https://www.europarl.europa.eu/meps/en/39726/LASZLO_TOKES_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/martina-johansson_5f965f4e-69e5-489d-99bf-a8908fc3e34a, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA332523, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=df00d15a-3e8d-4809-8418-a43400d6cd3b, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=425fb256-b46f-4e2a-ba59-a52500efafcc, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=029&type=A, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06824&lactivity=54, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307569&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d603c885-3277-41f5-9cb8-a43400d5ed4c, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307600&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719972, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ce241aeb-fb65-4437-89cf-a43400da4e3c, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=48&idLegislatura=12, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=231&type=A, https://www.parlament.gv.at/WWER/PAD_72959/index.shtml, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719778, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0O, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a60a34da-13a8-415a-a450-356cd903811a, https://www.riksdagen.se/en/members-and-parties/member/oscar-sjostedt_78e41c66-0d03-4914-9369-f03b795217e5, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5833f694-9941-4496-9789-40ee4e019dcf, https://www.parlament.gv.at/WWER/PAD_05643/index.shtml, https://www.parlament.gv.at/WWER/PAD_83135/index.shtml, https://www.riksdagen.se/en/members-and-parties/member/tomas-tobe_e6943f96-a4d8-45f3-81f2-8ecea4f25e6b, https://www.parlament.gv.at/WWER/PAD_51568/index.shtml, https://www.europarl.europa.eu/meps/en/96698/VIKTOR_USPASKICH_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307390&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/96806/TERESA_JIMENEZ-BECERRIL+BARRIO_home.html, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2fdd4a5b-43c9-4f20-8bf3-bd5be02dca28, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=362&idLegislatura=12, https://www.riksdagen.se/en/members-and-parties/member/angelika-bengtsson_9d68c0c3-2102-402d-998f-dc56a410d19d, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/charlotte-quensel_a4dcaec3-1333-46f3-a7df-632d40399505, https://www.parlament.gv.at/WWER/PAD_02297/index.shtml, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=178&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=282&idLegislatura=12, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b7be9dd1-d9e7-4a86-a1c2-651068c6f3f8, https://www.parliament.uk/biographies/commons/george-eustice/3934, https://www.parlament.gv.at/WWER/PAD_03155/index.shtml, https://www.parlament.gv.at/WWER/PAD_16234/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=99345939-fe19-4580-8222-37521df70c19, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/B4B0F7ADBB8043BCC22583320029E3CD?OpenDocument&lang=EN, https://www.parlament.gv.at/WWER/PAD_02867/index.shtml, https://www.europarl.europa.eu/meps/en/97293/GEORGES_BACH_home.html, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/87DF0FBB4E220BAAC22583320029E666?OpenDocument&lang=EN, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=77&idLegislatura=14, https://www.riksdagen.se/en/members-and-parties/member/jasenko-omanovic_294cd1d7-df0b-4794-b433-b3892d3ad29d, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/angelica-lundberg_a7ca5ca6-2e77-4360-8369-0671993019c4, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=061&type=A, https://www.parlament.gv.at/WWER/PAD_88857/index.shtml, https://www.europarl.europa.eu/meps/en/2002/JOSE+IGNACIO_SALAFRANCA+SANCHEZ-NEYRA_home.html, https://www.riksdagen.se/en/members-and-parties/member/tobias-billstrom_0918737e-5224-47aa-a86b-d64f6d820618, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=233&idLegislatura=12, https://www.parliament.uk/biographies/commons/bob-stewart/3919, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/roger-richtoff_b4329cc3-9256-470c-a712-5e2501c6fde7, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hans-wallmark_ef84acf4-4f56-45d9-9951-1c8ba4098302, https://www.parliament.uk/biographies/commons/sir-henry-bellingham/1441, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=415&type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=0c022753-eddb-4a08-998e-a52500fdb6d2, https://www.riksdagen.se/en/members-and-parties/member/roza-guclu-hedin_e53ce4a4-b399-4ed6-9815-cb96818871b3, https://www.riksdagen.se/en/members-and-parties/member/ann-britt-asebol_71b2ece2-dcf7-4e51-aa4c-042cca81cf1e, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/david-lang_1b1880b5-b042-47b6-8669-8a51e1908365, https://www.europarl.europa.eu/meps/en/96764/HERMANN_WINKLER_home.html, https://www.europarl.europa.eu/meps/en/23816/ANDRAS_GYURK_home.html, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=467&type=A, https://www.europarl.europa.eu/meps/en/1852/DIETER-LEBRECHT_KOCH_home.html, https://www.riksdagen.se/en/members-and-parties/member/anders-hansson_fa84d5df-e8ef-43be-beff-a71453d18ebc, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=172&type=A, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/A4475BEC6D8A6B68C22583320029E66C?OpenDocument&lang=EN, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=05b6ae95-27f4-4403-a73c-a52500f5a919, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=368&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=156&idLegislatura=12, https://www.parlament.gv.at/WWER/PAD_05624/index.shtml, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a6cd8c2a-f9eb-4ce8-9c3b-a43400e1b9e9, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/alexandra-volker_f96150c2-6e1c-4e3f-bc7f-2503f3cc9ede, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=399ca9e7-9c03-477e-9708-b0342e699cd4, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307114&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.riksdagen.se/en/members-and-parties/member/jonas-jacobsson-gjortler_74604a20-1187-4142-bd2f-62cd7b8aa2e3, https://www.riksdagen.se/en/members-and-parties/member/jennie-afeldt_f17df284-828f-481d-9f83-8c6d2b6d2576, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ae323a7d-281b-4b8b-9aaa-a434013bea2f, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=277&type=A, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ulf-kristersson_e7e4132a-b4df-11d5-8079-0040ca16072a, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00090&lactivity=54, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=100&type=A","['Natural Resources', 'Conseil National', 'Member of Parliament', 'Chair of Joint Standing Committee on Northern Australia', 'Chair of Legal and Constitutional Affairs Legislation Committee', 'Leader', 'Minister for Indigenous Affairs', 'Attorney-General', 'Speaker', 'Education and Labor', 'Partisekreterare', 'Chief Opposition Whip', 'Språkrör', 'Deputy Chair of Parliamentary Standing Committee on Public Works', 'wiceprzewodniczący, rzecznik dyscypliny i etyki klubu', 'Chair of Environment and Communications Legislation Committee', 'the Judiciary', 'Australian Labor Party', 'Chair of Standing Committee on Agriculture and Water Resources', 'wiceprzewodniczący, skarbnik klubu', 'Conseil des Etats', 'Homeland Security', 'Chair of Rural and Regional Affairs and Transport Legislation Committee', 'wiceprzewodnicząca klubu', 'Chair of Standing Committee on Health, Aged Care and Sport', 'wiceprzewodniczący klubu', 'Deputy Leader of the Opposition in the Senate', 'Armed Services', 'wiceprzewodniczący, sekretarz klubu', 'Gruppledare', 'Chair of Parliamentary Joint Committee on Intelligence and Security', 'Foreign Affairs', 'skarbnik klubu', 'Transportation and Infrastructure', 'Partiledare', 'Agriculture', 'Energy and Commerce', 'Education and the Workforce', 'Deputy Leader', 'Member', 'członek prezydium klubu', 'Vice gruppledare', 'Conseil Fédéral', 'zastępca sekretarza klubu', 'Substitute Member of the Danish Parliament', 'Chair of Education and Employment References Committee', 'Liberal Party of Australia', 'Deputy Government Whip in the Senate', ""Veterans' Affairs"", 'President', 'Chair of Community Affairs Legislation Committee', ""Chair of Standing Committee of Privileges and Members' Interests"", 'Acting Manager of Opposition Business in the Senate', 'Chair of Joint Standing Committee on the National Capital and External Territories', 'Transportation']","Neuchâtel, Lakonia, Réunion, Haut-Rhin, Hungary, Kozani, Rodopi, Karditsa, Selwyn, Castilla - La Mancha, KOCAELİ, Hemel Hempstead, Chios, KARABÜK, Evrytania, Imathia, Tangney, Western Australia, Sevenoaks, United Kingdom, Bâle-Ville, MUĞLA, Haute-Savoie, Appenzell Rh.-Int., Greece, Georgia, Ileia, Camborne and Redruth, Nova Scotia, Pas-de-Calais, Cher, Tessin, Puy-de-Dôme, Lefkada, Staffordshire Moorlands, Beckenham, DENİZLİ, Pieria, Horsham, ESKİŞEHİR, Vlaams-Brabant, Somme, North Sydney, New South Wales, Val-de-Marne, Illes Balears, Dartford, Denmark, ANKARA, Brigg and Goole, Zoug, Valais, Spain, DÜZCE, Principado de Asturias, West-Vlaanderen, Bolsover, Penistone and Stocksbridge, Christchurch, Corfu, Tāmaki, Zakynthos, Canning, Western Australia, Poland, Vaucluse, Argolida, HATAY, Brisbane, Queensland, Antwerpen, Kenilworth and Southam, DİYARBAKIR, Saône-et-Loire, Chipping Barnet, Burton, Quebec, Lithuania, Hunua, Uri, Fremantle, Western Australia, Weaver Vale, Coventry North East, Saskatchewan, Slovakia, BİNGÖL, Derby South, Ryan, Queensland, Sittingbourne and Sheppey, Dublin North-West, Manurewa, Glaris, Madrid, Grisons, MANİSA, Electoral district of Helsinki, Bridgwater and West Somerset, Batman, Victoria, Halkidiki, North Carolina, Jura, Seine-Maritime, Alpes-Maritimes, Genève, Electoral district of Uusimaa, Iraklio, ADANA, SİİRT, Southeast Finland, Bonner, Queensland, ŞIRNAK, Mayotte, Bulgaria, Latvia, Longman, Queensland, AĞRI, Pennsylvania, BATMAN, Fribourg, MUŞ, Comunitat Valenciana, Belgium, North Tyneside, Congleton, Hautes-Pyrénées, KASTAMONU, Electoral district of Vaasa, YOZGAT, Louth and Horncastle, Bruxelles-Capitale, East Coast Bays, Nièvre, Hutt South, Thessaloniki, ERZİNCAN, Grevena, St-Gall, Knowsley, Achaia, BURSA, Alberta, Kastoria, Argovie, Seine-et-Marne, Netherlands, ANTALYA, Blackley and Broughton, Piraeus, Cavan-Monaghan, Southland, Leichhardt, Queensland, País Vasco, Castilla y León, Arta, Evia, Wallis-et-Futuna, Invercargill, BİTLİS, Electoral district of Oulu, Xanthi, Guam Delegate, Kettering, Lasithi, Braddon, Tasmania, Rayleigh and Wickford, Saint-Barthélemy et Saint-Martin, Chifley, New South Wales, SAMSUN, Messinia, Finchley and Golders Green, Dumfries and Galloway, Fowler, New South Wales, Français établis hors de France, Lesvos, Northern Territory, Liège, Macarthur, New South Wales, Fthiotida, Charente-Maritime, New Brunswick, Louisiana, TRABZON, Croatia, Makin, South Australia, ŞANLIURFA, Maine-et-Loire, Fokida, Germany, List, Electoral district of Pirkanmaa, Swan, Western Australia, Gironde, Electoral district of Varsinais-Suomi, KÜTAHYA, Stoke-on-Trent South, Athens, Martinique, Waitaki, Luxembourg, Blyth Valley, Newcastle upon Tyne East, KIRIKKALE, Kefallonia, BARTIN, Kilkis, Berne, Samos, Cyprus, GİRESUN, Serres, Canarias, North East Bedfordshire, Indre, East Londonderry, Preveza, Trikala, Dawson, Queensland, Val-d'Oise, Stockton South, Basildon and Billericay, Schwyz, Evros, Florina, Curtin, Western Australia, Austria, abil, BİLECİK, KIRŞEHİR, Soleure, Vaud, İZMİR, Attica, Isère, Slovenia, Leigh, Electoral district of Savo-Karelia, Oost-Vlaanderen, Ireland, Romania, Portugal, Côte-d'Or, Czechia, Andalucía, Waikato, Darlington, Zurich, Obwald, Electoral district of Satakunta, Aube, NEVŞEHİR, Cantal, Pella, Viotia, İSTANBUL, Casey, Victoria, Magnesia, Chania, Stirling, Western Australia, Galicia, Cataluña, Eure, La Rioja, Scarborough and Whitby, Brussel-Hoofdstad, ARTVİN, Mole Valley, Corrèze, KİLİS, Korinthia, O'Connor, Western Australia, Fylde, Hainaut, Yvelines, Aragón, Dodecanese Islands, Lindsay, New South Wales, Kerry, Sutton Coldfield, Cowan, Western Australia, Arizona, South Norfolk, Ilam, Appenzell Rh.-Ext., Limburg, Rhône, Cyclades, AMASYA, State, Epsom and Ewell, Scunthorpe, Larissa, Lucerne, Oulo, GAZİANTEP, New Forest East, Electoral district of Central Finland, Cantabria, Bass, Tasmania, Doncaster Central, EDİRNE, The Cotswolds, Bâle-Campagne, NİĞDE, Ioannina, Czech Republic, Whangārei, KAYSERİ, Calare, New South Wales, Galway West, Texas, Nouvelle-Calédonie, Nord, BWV, Ontario, Kildare South, Charnwood, Jagajaga, Victoria, Schaffhouse, Tipperary, Arcadia, South Dorset, Sweden, Electoral district of South-East Finland, Italy, Electoral District of Häme, Estonia, Bas-Rhin, ÇORUM, Drama, Kavala, Pyrénées-Atlantiques, Nelson, Gravesham, Seine-Saint-Denis, Thesprotia, Melilla (Ciudad Autónoma de), Sheffield South East, Fairfax, Queensland, Takanini, Waimakariri, South Holland and The Deepings, AYDIN, Copeland, Allier, Aitolo-Akarnania, Nidwald, British Columbia, Essonne, Extremadura, Thurgovie, Pyrénées-Orientales, New Jersey, Moncrieff, Queensland, Bolton North East, KONYA, Ille-et-Vilaine","Derby South, 9F Wien Nord-West, Dodecanese Islands, Lakonia, Sittingbourne and Sheppey, Dublin North-West, Palmas (Las), Hertsmere, 3B Waldviertel, Kerry, Kozani, Badajoz, Stoke-on-Trent South, Palencia, Rodopi, Karditsa, 8 Vorarlberg, Barcelona, 13, Granada, Guadalajara, Bridgwater and West Somerset, Ávila, Richmond (Yorks), Halkidiki, LLeida, Blyth Valley, Newcastle upon Tyne East, Thessaloniki B, Hemel Hempstead, 9E Wien Süd-West, 4E Mühlviertel, Chios, Kefallonia, York Outer, Cyclades, Evrytania, Kilkis, Samos, 15, 9C Wien Innen-Ost, State, Sevilla, Epsom and Ewell, 9D Wien Süd, Keighley, Iraklio, East Londonderry, Imathia, Sevenoaks, Serres, Madawaska-Restigouche, Valladolid, Larissa, 3E Niederösterreich Süd, 6 Steiermark, North Down, A΄ANATOLIKIS ATTIKIS, 2D Kärnten Ost, V3΄NOTIOU TOMEA ATHINON, Coruña (A), Albacete, Soria, North Thanet, 2 Kärnten, Beaconsfield, 6D Obersteiermark, North West Norfolk, Preveza, Trikala, Alicante/Alacant, Cantabria, 6B Oststeiermark, 8B Vorarlberg Süd, Doncaster Central, 3F Thermenregion, Chicoutimi-Le Fjord, Basildon and Billericay, 3D Niederösterreich Mitte, Pennsylvania 18th, 3A Weinviertel, 4D Traunviertel, Thessaloniki A, The Cotswolds, Asturias, Congleton, Ioannina, Gipuzkoa, Athens B, Rioja (La), Evros, Florina, 8A Vorarlberg Nord, Piraeus B, Cork South-West, Melilla, Madrid, Bizkaia, Louth and Horncastle, Central Suffolk and North Ipswich, Galway West, Ileia, Camborne and Redruth, Georgia 4th, Broxbourne, Pontevedra, Huelva, Lévis-Lotbinière, V2' DYTIKOU TOMEA ATHINON, Piraeus A, Zaragoza, 7C Unterland, Huesca, Newcastle-under-Lyme, 5 Salzburg, Mansfield, Grevena, Buckingham, Staffordshire Moorlands, Lefkada, Attica, Almería, 3G Niederösterreich Süd-Ost, Knowsley, Beckenham, Achaia, Pieria, Cádiz, Jaén, Horsham, 4B Innviertel, V΄DYTIKIS ATTIKIS, V1΄ VOREIOU TOMEA ATHINON, North Antrim, Kastoria, 2A Klagenfurt, Charnwood, 6C Weststeiermark, Arcadia, Blackley and Broughton, 6A Graz und Umgebung, Cavan-Monaghan, Ourense, Cáceres, B Bundeswahlvorschlag, 5C Lungau/Pinzgau/Pongau, Brigg and Goole, 3C Mostviertel, 1B Burgenland Süd, León, Arta, Drama, Kavala, Bécancour-Nicolet-Saurel, Toledo, Moose Jaw-Lake Centre-Lanigan, Gravesham, Ayr, Carrick and Cumnock, Bosworth, Thesprotia, Evia, Pella, Waterford, Burgos, Balears (Illes), Sheffield South East, Viotia, Xanthi, Kettering, 9G Wien Nord, Limerick City, Magnesia, Lasithi, Málaga, Athens A΄, Christchurch, 7 Tirol, Chania, Pennsylvania 5th, Corfu, Haldimand-Norfolk, 4A Linz und Umgebung, Rayleigh and Wickford, South Holland and The Deepings, Zakynthos, Lugo, Messinia, Finchley and Golders Green, 12, 5B Flachgau/Tennengau, 4C Hausruckviertel, 1 Burgenland, Girona, Dumfries and Galloway, Argolida, Lesvos, 2nd, 2C Kärnten West, Arizona 8th, Souris-Moose Mountain, Copeland, Valencia/València, Aitoloαkarnania, Georgia 6th, Luton North, Chipping Barnet, Fthiotida, S/C Tenerife, 3G Niederösterreich Ost, Burton, Scarborough and Whitby, Ciudad Real, Aitolo-Akarnania, Segovia, 7B Innsbruck-Land, Chingford and Woodford Green, Mole Valley, Erewash, Brecon and Radnorshire, Córdoba, Coventry North East, 9 Wien, 4 Oberösterreich, Ealing North, Korinthia, Fylde, Southport, 3 Niederösterreich, 3rd, 7D Oberland, Fokida","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1046, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1076, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=14fc8236-a545-4631-bebd-a435012f6f28, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1068, https://www.camera.it/leg17/28?lettera=O, https://www.camera.it/leg18/28?lettera=A, https://www.camera.it/leg18/28?lettera=I, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1061, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml, https://www.camera.it/leg17/28?lettera=V, https://www.bundestag.de/en/members, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/, https://www.camera.it/leg18/28?lettera=P, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=15, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1052, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo, https://www.camera.it/leg17/28?lettera=I, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=12, https://members.parliament.uk/members/Commons, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1038, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS032, https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste, https://www.camera.it/leg18/28?lettera=V, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml, https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=10, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1056, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=cdH&legis=54&nohtml, https://www.camera.it/leg17/28?lettera=D, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1001, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1063, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1085, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=4, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1057, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7, https://www.parliament.uk/mps-lords-and-offices/mps/, https://www.camera.it/leg17/28?lettera=G, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS026, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=5, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1092, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1005, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=4, https://www.house.gov/representatives/#byName, https://www.camera.it/leg18/28?lettera=C, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=8, https://www.house.gov/representatives#by-name, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1040, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=14, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8&pageNo=2, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1079, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS013, https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1067, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS005, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=8, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1043, https://www.camera.it/leg17/28?lettera=C, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1090, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=13, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=071de048-5737-4bd7-8143-a52500a89ce9, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1087, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www2.assemblee-nationale.fr/deputes/liste/tableau, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1096, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1042, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=3, https://www.ourcommons.ca/Parliamentarians/en/members, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1029, https://www.aph.gov.au/Senators_and_Members/Members, https://www.camera.it/leg18/28?lettera=D, https://www.althingi.is/altext/cv/en/, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1072, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1002, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1069, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=da658473-5dd8-4eb5-a533-a434009ba461, https://www.camera.it/leg18/28?lettera=T, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.camera.it/leg17/28?lettera=K, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.camera.it/leg17/28?lettera=Z, https://www.parlament.mt/membersofparliament-13thlegmain, https://www.camera.it/leg18/28?lettera=L, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=9, https://www.ourcommons.ca/members/en/search, https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/, https://www.camera.it/leg18/28?lettera=R, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/, https://www.camera.it/leg17/28?lettera=T, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1089, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1082, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=5, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1033, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1058, https://www.camera.it/leg17/28?lettera=A, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1027, https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=2, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1064, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1018, https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=6c1c6b64-edd8-4c50-850d-3dc993e05b43&pageNo=2, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=11, https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament, https://www.camera.it/leg17/28?lettera=B, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1086, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=-, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1006, https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm, https://www.camera.it/leg17/28?lettera=N, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo, https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.camera.it/leg18/28?lettera=E, https://www.camera.it/leg17/28?lettera=L, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1051, https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1019, https://www.camera.it/leg18/28?lettera=S, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1026, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS018, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=6, https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2, https://www.camera.it/leg18/28?lettera=N, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8, https://www.camera.it/leg17/28?lettera=R, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo, https://www.camera.it/leg18/28?lettera=M, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1015, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1070, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=7, https://www.camera.it/leg17/28?lettera=F, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=d14ba599-f806-478c-92c3-8b89cf467ba2, https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction, https://www.camera.it/leg17/28?lettera=P, https://www.camera.it/leg17/28?lettera=M, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS015, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=3, https://www.camera.it/leg18/28?lettera=B, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=6, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1049, https://www.camera.it/leg17/28?lettera=S, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1045, https://www.camera.it/leg18/28?lettera=F, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo, https://www.camera.it/leg18/28?lettera=Z, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1059, https://www.camera.it/leg18/28?lettera=G, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1094, https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/, https://www.sejm.gov.pl/english/poslowie/posel.html","2018-01-25, 2017-07-21, 2020-02-01, 2018-02-07, 2018-02-01","Ireland, Germany, Netherlands, Poland, Belgium, Iceland, Sweden, Malta, Denmark, Australia, Italy, Norway, Greece, France, Luxembourg, Austria, Spain, Switzerland, United States, Turkey, United Kingdom, Finland, Canada, Slovenia, European Parliament, New Zealand, Latvia","22, 12, 5, 3, 18, 14, 20, 9, 2, 26, 13, 6, 1, 25, 4, 21, 16, 19, 15, 24, 17, 27, 23, 11, 7, 10, 8","22, 40, 34, 54, 46, 12, 44, 5, 29, 3, 14, 18, 42, 20, 31, 45, 30, 56, 9, 47, 26, 13, 6, 51, 1, 57, 25, 4, 50, 43, 49, 58, 21, 16, 19, 32, 15, 24, 37, 52, 17, 27, 23, 38, 33, 11, 10, 48, 35, 28, 55, 53, 8","23520, 23951, 61320, 35220, 12620, 80951, 14110, 13420, 63320, 64621, 51320, 74628, 42430, 33902, 63622, 86710, 31626, 43420, 11620, 80510, 88440, 86421, 14320, 33098, 74321, 92322, 42110, 74712, 64320, 15620, 97330, 31220, 21321, 43810, 43520, 86429, 93430, 21521, 12320, 41521, 87071, 83611, 15111, 97522, 22220, 11220, 88320, 54620, 63620, 97710, 64620, 87021, 34340, 14620, 21426, 21917, 32440, 34213, 31430, 92436, 43540, 42420, 23230, 82220, 23420, 11420, 62623, 32450, 13320, 62901, 12221, 62420, 33095, 87901, 34730, 43320, 87110, 86221, 92212, 51951, 21111, 33610, 32710, 31624, 88460, 53714, 54320, 11710, 51903, 32630, 13230, 41223, 33420, 11520, 201709, 21322, 33911, 97951, 64110, 33320, 13720, 31320, 22953, 96521, 80410, 15810, 82430, 97322, 89710, 13620, 34210, 13001, 43220, 14223, 41320, 88621, 31720, 64420, 15328, 63810, 14820, 41953, 23113, 12520, 43110, 92210, 43902, 22320, 93320, 33905, 80220, 34511, 23320, 13410, 87630, 33612, 32230, 11320, 82320, 12810, 22722, 14901, 21421, 11810, 87062, 32956, 53951, 0, 12951, 61620, 14810, 55321, 92435, 43811, 81711, 35313, 51620, 33020, 81960, 31230, 35311, 12420, 41113, 74210, 11110, 32610, 43120, 92811, 32720, 42520, 13229, 34410, 41420, 34020, 15220, 87340, 96423, 34720, 42320, 21916" +Betty Mccollum,"104, 11203, 16949",1,,0,Parliament,"['516880804']",Democrat,https://pbs.twimg.com/profile_images/978076022158577664/ZBcXXRo__normal.jpg,"['Natural Resources', 'Appropriations']","Minnesota, Minnesota",Minnesota 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bill Jr. Pascrell,"105, 11242, 16995",1,,0,Parliament,"['74508260']",Democrat,https://pbs.twimg.com/profile_images/1272191593278251009/MKbjjKDQ_normal.jpg,"['Ways and Means']","New Jersey, New Jersey",New Jersey 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +C. Robert Scott,"17048, 11298, 106",1,,0,Parliament,"['161791703']",Democrat,https://pbs.twimg.com/profile_images/741365169926905856/NjQFTLYl_normal.jpg,"['Budget', 'Education and Labor', 'Education and the Workforce']","Virginia, Virginia",Virginia 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +E. Latta Robert,"11167, 16914, 107",0,,0,Parliament,"['15394954']",Republican,https://pbs.twimg.com/profile_images/621369511636135937/Zk5PgsWw_normal.jpg,"['Energy and Commerce']","Ohio, Ohio",Ohio 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brad Sherman,"108, 11303, 17051",1,,0,Parliament,"['30216513']",Democrat,https://pbs.twimg.com/profile_images/938782994591916032/BQlooFe5_normal.jpg,"['Foreign Affairs', 'Science, Space, and Technology', 'Financial Services']","California, California",California 30th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +A. C. Dutch Ruppersberger,"11280, 109, 17029",1,,0,Parliament,"['305620929']",Democrat,https://pbs.twimg.com/profile_images/1268189200786042882/-VpU5TNd_normal.jpg,"['Appropriations']","Maryland, Maryland",Maryland 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Cathy Mcmorris Rodgers,"11208, 110, 17019",0,,0,Parliament,"['17976923']",Republican,https://pbs.twimg.com/profile_images/1334239440638763017/kLJOd2Gi_normal.jpg,"['Energy and Commerce']","Washington, Washington",Washington 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Chellie Pingree,"111, 17004, 11251",1,,0,Parliament,"['14984637']",Democrat,https://pbs.twimg.com/profile_images/1261353519610826753/rSjp76wh_normal.jpg,"['Appropriations', 'Agriculture']","Maine, Maine",Maine 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Clyburn E. James,"16757, 112, 11009",1,,0,Parliament,"['188019606']",Democrat,https://pbs.twimg.com/profile_images/1267838155870425096/625WvoOD_normal.jpg,,"South Carolina, South Carolina",South Carolina 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +C. Collin Peterson,"113, 11249",1,,0,Parliament,"['115676070']",Democrat,,"['Agriculture']","Minnesota, Minnesota",Minnesota 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Conaway K. Michael,"11015, 114",0,,0,Parliament,"['295685416']",Republican,,"['Intelligence (Permanent)', 'Armed Services', 'Agriculture']","Texas, Texas",Texas 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Bill Posey,"11255, 17008, 115",0,,0,Parliament,"['25086658']",Republican,https://pbs.twimg.com/profile_images/817498897299939329/Pm6RrRqb_normal.jpg,"['Science, Space, and Technology', 'Financial Services']","Florida, Florida",Florida 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Boyle Brendan,"116, 16720, 10971",1,,0,Parliament,"['231108733', '4304448314']",Democrat,https://pbs.twimg.com/profile_images/1317939308037312512/aVQPQ6ti_normal.jpg,"['the Budget', 'Foreign Affairs']", ['Ways and Means', 'Budget']","Pennsylvania, Pennsylvania","Pennsylvania 13th, 2nd","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Culberson John,117,0,,0,Parliament,"['24183358']",Republican,,"['Appropriations']",Texas,Texas 7th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Michael Simpson,"17053, 118, 11306",0,,0,Parliament,"['76132891']",Republican,https://pbs.twimg.com/profile_images/1622590441/Official_Photo_normal.jpg,"['Appropriations']","Idaho, Idaho",Idaho 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Palazzo Steven,"119, 11237, 16990",0,,0,Parliament,"['299883942']",Republican,https://pbs.twimg.com/profile_images/1317178980072554497/WL87CAqz_normal.jpg,"['Appropriations']","Mississippi, Mississippi",Mississippi 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Hice Jody,"11112, 120, 16859",0,,0,Parliament,"['2975091705']",Republican,https://pbs.twimg.com/profile_images/1205229250384674816/zmecnjEP_normal.jpg,"['Natural Resources', 'Oversight and Government', 'Oversight and Reform']","Georgia, Georgia",Georgia 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Krishnamoorthi Raja,"11157, 16904, 121",1,,0,Parliament,"['814179031956488192']",Democrat,https://pbs.twimg.com/profile_images/817454739910750209/-LvcQa9a_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Education and the Workforce']","Illinois, Illinois",Illinois 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Raul Ruiz,"17028, 122, 11279",1,,0,Parliament,"['1089859058']",Democrat,https://pbs.twimg.com/profile_images/1276632555903692801/c9zUXgqj_normal.jpg,"['Energy and Commerce']","California, California",California 36th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Daniel Donovan,123,0,,0,Parliament,"['3041543943']",Republican,,"['Homeland Security', 'Foreign Affairs']",New York,New York 11th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Darrell Issa,"124, 16872",0,,0,Parliament,"['63650107', '22509548']",Republican,https://pbs.twimg.com/profile_images/1349024790439481349/1e0OHwmp_normal.jpg,"['Judiciary', 'Foreign Affairs']", ['Oversight and Government', 'the Judiciary', 'Foreign Affairs']","California, California","50th, California 49th",https://www.house.gov/representatives/#byName,,United States,25,"1, 58",61620 +David Loebsack,"125, 11178",1,,0,Parliament,"['510516465']",Democrat,,"['Energy and Commerce']","Iowa, Iowa",Iowa 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +David G. Reichert,126,0,,0,Parliament,"['16102244']",Republican,,"['Ways and Means']",Washington,Washington 8th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Desjarlais Scott,"127, 11045, 16786",0,,0,Parliament,"['235312723']",Republican,https://pbs.twimg.com/profile_images/1264997339/DesJarlais.OfficialPhoto_normal.jpg,"['Armed Services', 'Oversight and Government', 'Agriculture']","Tennessee, Tennessee",Tennessee 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Donald Norcross,"128, 11229, 16981",1,,0,Parliament,"['3122099613']",Democrat,https://pbs.twimg.com/profile_images/1050098504515899392/h6RzXCGt_normal.jpg,"['Education and Labor', 'Armed Services', 'Science, Space, and Technology', 'Education and the Workforce']","New Jersey, New Jersey",New Jersey 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Doris Matsui O.,"16943, 11197, 129",1,,0,Parliament,"['38254095']",Democrat,https://pbs.twimg.com/profile_images/644563582294757376/UJMwQIXY_normal.jpg,"['Energy and Commerce']","California, California",California 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Dunn Neal,"130, 16794, 11053",0,,0,Parliament,"['815952318487298048']",Republican,https://pbs.twimg.com/profile_images/817396749270732800/5rj6yCMh_normal.jpg,"['Science, Space, and Technology', 'Agriculture', 'Energy and Commerce', ""Veterans' Affairs""]","Florida, Florida",Florida 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +David Roe,"11269, 131",0,,0,Parliament,"['52503751']",Republican,,"[""Veterans' Affairs"", 'Education and the Workforce']","Tennessee, Tennessee",Tennessee 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Eleanor Holmes Norton,"16983, 132, 11231",1,,0,Parliament,"['23600262']",Democrat,https://pbs.twimg.com/profile_images/1304083080144191489/yn66YiTr_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Transportation', 'Transportation and Infrastructure']","District of Columbia At-Large, District of Columbia Delegate",District of Columbia At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Blake Farenthold,133,0,,0,Parliament,"['17896154']",Republican,,"['Oversight and Government', 'Transportation', 'the Judiciary']",Texas,Texas 27th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Frank Jr. Pallone,"134, 11238, 16991",1,,0,Parliament,"['31801993']",Democrat,https://pbs.twimg.com/profile_images/1096470387041419264/0vCNMXci_normal.png,"['Energy and Commerce']","New Jersey, New Jersey",New Jersey 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Garret Graves,"135, 11092, 16838",0,,0,Parliament,"['2951574214', '587100576']",Republican,https://pbs.twimg.com/profile_images/553292029963145216/lzwyCMoA_normal.png,"['Natural Resources', 'Transportation and Infrastructure']", ['Natural Resources', 'Transportation']","Louisiana, Louisiana",Louisiana 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +"""Gerry"" Connolly E. Gerald","11016, 136, 16762",1,,0,Parliament,"['78445977']",Democrat,https://pbs.twimg.com/profile_images/1277702577069740034/bm5EzNM6_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Foreign Affairs']","Virginia, Virginia",Virginia 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Butterfield G.K.,"10985, 16733, 137",1,,0,Parliament,"['432676344']",Democrat,https://pbs.twimg.com/profile_images/1108574414382264323/HQrhf_eC_normal.jpg,"['House Administration', 'Energy and Commerce']","North Carolina, North Carolina",North Carolina 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Kevin Mccarthy,"16945, 11200, 138",0,,0,Parliament,"['19739126']",Republican,https://pbs.twimg.com/profile_images/1144683452064833536/fZbuxrtg_normal.png,,"California, California",California 23rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Grace Napolitano,"16975, 139, 11225",1,,0,Parliament,"['161411080']",Democrat,https://pbs.twimg.com/profile_images/978299365545652231/kTKikH7M_normal.jpg,"['Natural Resources', 'Transportation', 'Transportation and Infrastructure']","California, California",California 32nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Gregg Harper,140,0,,0,Parliament,"['23712174']",Republican,,"['House Administration', 'Energy and Commerce', 'Joint Library']",Mississippi,Mississippi 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Gregory Meeks W.,"16955, 11211, 141",1,,0,Parliament,"['926329950579200000', '22812754']",Democrat,https://pbs.twimg.com/profile_images/978323500174802956/XhTHL8TC_normal.jpg,"['Foreign Affairs', 'Financial Services']","New York, New York",New York 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Beutler Herrera Jaime,"16858, 11111, 142",0,,0,Parliament,"['242926427']",Republican,https://pbs.twimg.com/profile_images/510487926900150272/UksS2ekj_normal.jpeg,"['Appropriations']","Washington, Washington",Washington 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Hurd Will,"11128, 143",0,,0,Parliament,"['2963445730']",Republican,,"['Intelligence (Permanent)', 'Homeland Security', 'Oversight and Government']","Texas, Texas",Texas 23rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Jackson Lee Sheila,"11129, 16874, 144",1,,0,Parliament,"['80612021']",Democrat,https://pbs.twimg.com/profile_images/1271561387324702721/lkRCnwCy_normal.jpg,"['Judiciary', 'the Judiciary', 'Homeland Security', 'the Budget', 'Budget']","Texas, Texas",Texas 18th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Himes James,"145, 11117, 16863",1,,0,Parliament,"['31611298']",Democrat,https://pbs.twimg.com/profile_images/1355241640626167814/_XXjAP6w_normal.jpg,"['Intelligence (Permanent)', 'Financial Services']","Connecticut, Connecticut",Connecticut 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Janice Schakowsky,"146, 11290",1,,0,Parliament,"['24195214']",Democrat,,"['the Budget', 'Energy and Commerce']","Illinois, Illinois",Illinois 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Jared Polis,147,1,,0,Parliament,"['15361570']",Democrat,,"['Ethics', 'Rules', 'Education and the Workforce']",Colorado,Colorado 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Chaffetz Jason,148,0,,0,Parliament,"['17800215']",Republican,,"['Oversight and Government', 'the Judiciary']",Utah,Utah 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Fortenberry Jeff,"16809, 11067, 149",0,,0,Parliament,"['18805303']",Republican,https://pbs.twimg.com/profile_images/1019591102054191104/HS0A8RZR_normal.jpg,"['Appropriations']","Nebraska, Nebraska",Nebraska 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Jim Jordan,"11138, 150, 16885",0,,0,Parliament,"['18166778']",Republican,https://pbs.twimg.com/profile_images/596012379231617025/TtrAXbnA_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Judiciary', 'the Judiciary']","Ohio, Ohio",Ohio 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +James Langevin,"16911, 11164, 151",1,,0,Parliament,"['18909919']",Democrat,https://pbs.twimg.com/profile_images/1182731438426394626/j40QWnU9_normal.jpg,"['Armed Services', 'Homeland Security']","Rhode Island, Rhode Island",Rhode Island 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +F. James Sensenbrenner,"152, 11299",0,,0,Parliament,"['851621377']",Republican,,"['the Judiciary', 'Foreign Affairs']","Wisconsin, Wisconsin",Wisconsin 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Castro Joaquin,"153, 16746, 10997",1,,0,Parliament,"['231510077']",Democrat,https://pbs.twimg.com/profile_images/1268126174/Joaquin_Castro_in_2008_normal.jpg,"['Intelligence (Permanent)', 'Foreign Affairs', 'Education and Labor']","Texas, Texas",Texas 20th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Carter John,"154, 10992, 16741",0,,0,Parliament,"['18030431']",Republican,https://pbs.twimg.com/profile_images/378800000021210674/a74f4eaa78e4aa40395b1e2c0088a711_normal.jpeg,"['Appropriations']","Texas, Texas",Texas 31st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Poe Ted,155,0,,0,Parliament,"['74198348']",Republican,,"['the Judiciary', 'Foreign Affairs']",Texas,Texas 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Brownley Julia,"156, 10977, 16724",1,,0,Parliament,"['1243902714']",Democrat,https://pbs.twimg.com/profile_images/1096422273437831168/b9lioe1R_normal.png,"['Natural Resources', 'Transportation', 'Transportation and Infrastructure', ""Veterans' Affairs""]","California, California",California 26th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Amash Justin,"157, 10946",0,,0,Parliament,"['233842454', '774742130329812992']",Republican,,"['Oversight and Government']","Michigan, Michigan",Michigan 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"40, 1",61620 +Ellison Keith,158,1,,0,Parliament,"['14135426']",Democrat,,"['Financial Services']",Minnesota,Minnesota 5th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Keith Rothfus,159,0,,0,Parliament,"['1155212191']",Republican,,"['Financial Services']",Pennsylvania,Pennsylvania 12th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Calvert Ken,"16734, 160, 10987",0,,0,Parliament,"['22545491']",Republican,https://pbs.twimg.com/profile_images/786694649301700609/TfucmvHE_normal.jpg,"['Appropriations']","California, California",California 42nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Comer James,"16761, 11014, 161",0,,0,Parliament,"['1274852794206388225', '838462994']",Republican,https://pbs.twimg.com/profile_images/1287042081505124353/ZwSN2nvP_normal.jpg,"['Oversight and Government', 'Small Business', 'Agriculture']", ['Oversight and Reform', 'Education and Labor']","Kentucky, Kentucky, Kentucky",Kentucky 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +"""Lacy"" Clay Jr. William","11005, 162",1,,0,Parliament,"['584912320']",Democrat,,"['Natural Resources', 'Oversight and Government', 'Financial Services']","Missouri, Missouri",Missouri 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Lamar Smith,163,0,,0,Parliament,"['15856366']",Republican,,"['Homeland Security', 'Science, Space, and Technology', 'the Judiciary']",Texas,Texas 21st,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Lee Zeldin,"164, 11379, 17125",0,,0,Parliament,"['2750127259', '15874918']",Republican,https://pbs.twimg.com/profile_images/866759502867161088/ZGcdQunZ_normal.jpg,"['Foreign Affairs', 'Financial Services']","New York, New York, New York",New York 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Louise Slaughter,165,1,,0,Parliament,"['63169388']",Democrat,,"['Rules']",New York,New York 25th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Mac Thornberry,"11333, 166",0,,0,Parliament,"['377534571']",Republican,,"['Armed Services']","Texas, Texas",Texas 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Diaz-Balart Mario,"16788, 167, 11047",0,,0,Parliament,"['37094727']",Republican,https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg,"['Appropriations', 'the Budget']","Florida, Florida",Florida 25th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Amodei Mark,"10947, 168, 16690",0,,0,Parliament,"['402719755']",Republican,https://pbs.twimg.com/profile_images/1013981186157416454/EX31lgii_normal.jpg,"['Appropriations']","Nevada, Nevada",Nevada 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Blackburn Marsha,"11384, 169",0,,0,"Parliament, Senate","['278145569']",Republican,https://www.blackburn.senate.gov/,"['Class I', 'Energy and Commerce']","TN, Tennessee",Tennessee 7th,"https://www.house.gov/representatives/#byName, https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC",,United States,25,"1, 41",61620 +Maxine Waters,"170, 17107, 11359",1,,0,Parliament,"['36686040', '3166120541']",Democrat,https://pbs.twimg.com/profile_images/851658655036583937/Jy4zSIar_normal.jpg,"['Financial Services']","California, California",California 43rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Burgess Michael,"171, 16730, 10983",0,,0,Parliament,"['15751083']",Republican,https://pbs.twimg.com/profile_images/1364682510811230214/R1i4YVfn_normal.jpg,"['Rules', 'Energy and Commerce', 'Budget']","Texas, Texas",Texas 26th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Capuano E. Michael,172,1,,0,Parliament,"['75785294']",Democrat,,"['Transportation', 'Financial Services']",Massachusetts,Massachusetts 7th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Kelly Mike,"16893, 11144, 173",0,,0,Parliament,"['935368364']",Republican,https://pbs.twimg.com/profile_images/2824224425/e2df92c97dc465f3c97327fc1342c38e_normal.jpeg,"['Ways and Means']","Pennsylvania, Pennsylvania","16th, Pennsylvania 3rd","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Nancy Pelosi,"11244, 16997, 174",1,,0,Parliament,"['15764644']",Democrat,https://pbs.twimg.com/profile_images/1114294290375688193/P9mcJNGb_normal.png,,"California, California",California 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Niki Tsongas,175,1,,0,Parliament,"['242892689']",Democrat,,"['Natural Resources', 'Armed Services']",Massachusetts,Massachusetts 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Lowey Nita,"176, 11183",1,,0,Parliament,"['221792092']",Democrat,,"['Appropriations']","New York, New York",New York 17th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Norma Torres,"177, 11339, 17088",1,,0,Parliament,"['236279233']",Democrat,https://pbs.twimg.com/profile_images/1281408567107555329/qFj8UdKN_normal.jpg,"['Natural Resources', 'Appropriations', 'Rules', 'Foreign Affairs']","California, California",California 35th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +M. Nydia Velã¡Zquez,"17101, 11350, 178",1,,0,Parliament,"['164369297']",Democrat,https://pbs.twimg.com/profile_images/1304071523670675457/GzYfUXAa_normal.jpg,"['Natural Resources', 'Small Business', 'Financial Services']","New York, New York",New York 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Mchenry Patrick T.,"11206, 179, 16952",0,,0,Parliament,"['27676828']",Republican,https://pbs.twimg.com/profile_images/1105170838284914688/jMjKfSoz_normal.png,"['Financial Services']","North Carolina, North Carolina",North Carolina 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Pat Tiberi,180,0,,0,Parliament,"['912608010']",Republican,,"['Ways and Means']",Ohio,Ohio 12th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Olson Pete,"11235, 181",0,,0,Parliament,"['12726012', '20053279']",Republican,,"['Energy and Commerce']","Texas, Texas",Texas 22nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"40, 1",61620 +J. Peter Roskam,182,0,,0,Parliament,"['20015903']",Republican,,"['Ways and Means']",Illinois,Illinois 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Peter Welch,"183, 17111, 11364",1,,0,Parliament,"['1410590874']",Democrat,https://pbs.twimg.com/profile_images/593413173455257600/o0GKZGhi_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Energy and Commerce']","Vermont At Large, Vermont At-Large",Vermont At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Pete Sessions,"17049, 184",0,,0,Parliament,"['24735461']",Republican,https://pbs.twimg.com/profile_images/1479315255/48918-012-005f_normal.jpg,"['Oversight and Reform', 'Science, Space, and Technology', 'Rules']","Texas, Texas","Texas 32nd, 17th",https://www.house.gov/representatives/#byName,,United States,25,"1, 58",61620 +Labrador R. Raul,185,0,,0,Parliament,"['246341769']",Republican,,"['Natural Resources', 'the Judiciary']",Idaho,Idaho 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Devin Nunes,"186, 16984, 11232",0,,0,Parliament,"['344972339', '54412900']",Republican,https://pbs.twimg.com/profile_images/2870867832/a4da73613b727575cb724e57500bee06_normal.jpeg,"['Ways and Means', 'Intelligence']", ['Intelligence (Permanent)', 'Ways and Means', 'Joint Taxation']","California, California",California 22nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +D. Duncan Hunter,"11127, 187",0,,0,Parliament,"['1305596696']",Republican,,"['Armed Services', 'Transportation', 'Education and the Workforce']","California, California",California 50th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Steve Womack,"17121, 188, 11373",0,,0,Parliament,"['234469322']",Republican,https://pbs.twimg.com/profile_images/2043213363/Official_Pic_4_normal.jpg,"['Appropriations', 'the Budget']","Arkansas, Arkansas",Arkansas 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Garrett Thomas,189,0,,0,Parliament,"['818460870573441028']",Republican,,"['Homeland Security', 'Foreign Affairs', 'Education and the Workforce']",Virginia,Virginia 5th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Abraham Ralph,"190, 10940",0,,0,Parliament,"['2962891515']",Republican,,"['Armed Services', 'Science, Space, and Technology', 'Agriculture']","Louisiana, Louisiana",Louisiana 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Adams Alma,"10941, 16685, 191",1,,0,Parliament,"['2916086925']",Democrat,https://pbs.twimg.com/profile_images/1369071183409340418/oiCOry_K_normal.jpg,"['Small Business', 'Education and Labor', 'Financial Services', 'Agriculture', 'Education and the Workforce']","North Carolina, North Carolina",North Carolina 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Adam Schiff,"11291, 17041, 192",1,,0,Parliament,"['29501253']",Democrat,https://pbs.twimg.com/profile_images/1268175179626303497/-DNpPNUm_normal.jpg,"['Intelligence (Permanent)', 'Intelligence']","California, California",California 28th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Adam Smith,"11309, 193, 17056",1,,0,Parliament,"['58928690']",Democrat,https://pbs.twimg.com/profile_images/1046859374055047169/OrFwOGl6_normal.jpg,"['Armed Services']","Washington, Washington",Washington 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Adrian Smith,"17057, 11310, 194",0,,0,Parliament,"['296245061']",Republican,https://pbs.twimg.com/profile_images/832318343872921605/fJFr9CvP_normal.jpg,"['Ways and Means', 'House Administration']","Nebraska, Nebraska",Nebraska 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Alexander Mooney,"11217, 195, 16964",0,,0,Parliament,"['2964526557']",Republican,https://pbs.twimg.com/profile_images/1347594832940855296/XXMDj6Mf_normal.jpg,"['Financial Services']","West Virginia, West Virginia",West Virginia 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Al Green,"16840, 196, 11095",1,,0,Parliament,"['156333623']",Democrat,https://pbs.twimg.com/profile_images/3316330449/984c689254421a8e1dbb6cc32391053f_normal.jpeg,"['Homeland Security', 'Financial Services']","Texas, Texas",Texas 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Al Lawson,"16917, 197, 11169",1,,0,Parliament,"['818472418620608512']",Democrat,https://pbs.twimg.com/profile_images/1268268342562955266/G7vycb0E_normal.jpg,"['Small Business', 'Agriculture', 'Financial Services']","Florida, Florida",Florida 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Amata Aumua Radewagen,"17012, 11259, 198",0,,0,Parliament,"['3026622545']",Republican,https://pbs.twimg.com/profile_images/564816554185859073/f1VAN3h3_normal.jpeg,"['Natural Resources', 'Small Business', ""Veterans' Affairs""]","American Samoa At-Large, American Samoa Delegate",American Samoa At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Andrã© Carson,"10990, 16739, 199",1,,0,Parliament,"['199325935']",Democrat,https://pbs.twimg.com/profile_images/461880758613704705/l_k2diGx_normal.jpeg,"['Intelligence (Permanent)', 'Transportation', 'Transportation and Infrastructure']","Indiana, Indiana",Indiana 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Andy Barr,"200, 16700, 10956",0,,0,Parliament,"['1089334250']",Republican,https://pbs.twimg.com/profile_images/648576649143943169/DGzR6q1Q_normal.jpg,"['Foreign Affairs', 'Financial Services']","Kentucky, Kentucky",Kentucky 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Andy Biggs,"201, 16709, 10963",0,,0,Parliament,"['816652616625168388']",Republican,https://pbs.twimg.com/profile_images/1176647112550993920/rETjTe_z_normal.jpg,"['Oversight and Reform', 'Science, Space, and Technology', 'Judiciary', 'the Judiciary']","Arizona, Arizona",Arizona 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Andy Harris,"202, 11105, 16851",0,,0,Parliament,"['960962340']",Republican,https://pbs.twimg.com/profile_images/1009527206614200321/Q56ZCqTt_normal.jpg,"['Appropriations']","Maryland, Maryland",Maryland 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Anna Eshoo G.,"16797, 203, 11057",1,,0,Parliament,"['249348006']",Democrat,https://pbs.twimg.com/profile_images/1130959654891212800/9IhvEI1X_normal.jpg,"['Energy and Commerce']","California, California",California 18th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ann Kuster,"204, 11158, 16905",1,,0,Parliament,"['1058717720']",Democrat,https://pbs.twimg.com/profile_images/1265776888754114561/5bmY7Xis_normal.jpg,"['Agriculture', 'Energy and Commerce', ""Veterans' Affairs""]","New Hampshire, New Hampshire",New Hampshire 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ann Wagner,"11352, 17102, 205",0,,0,Parliament,"['1051446626']",Republican,https://pbs.twimg.com/profile_images/949026474769645568/gtC8XH4t_normal.jpg,"['Foreign Affairs', 'Financial Services']","Missouri, Missouri",Missouri 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Anthony Brown,"16723, 10976, 206",1,,0,Parliament,"['823552974253342721']",Democrat,https://pbs.twimg.com/profile_images/1116032857653358593/qCJwZpPp_normal.png,"['Natural Resources', ""Veterans' Affairs"", 'Transportation and Infrastructure', 'Ethics', 'Armed Services']","Maryland, Maryland",Maryland 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Arrington Jodey,"207, 16692, 10949",0,,0,Parliament,"['816284664658874368']",Republican,https://pbs.twimg.com/profile_images/1364647702970195977/96vsXXX9_normal.jpg,"['Ways and Means', 'Agriculture', 'the Budget', ""Veterans' Affairs""]","Texas, Texas",Texas 19th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Barbara Lee,"11170, 208, 16918",1,,0,Parliament,"['248735463']",Democrat,https://pbs.twimg.com/profile_images/831276027674558470/o7pTafU9_normal.jpg,"['Appropriations', 'the Budget', 'Budget']","California, California",California 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Barragán Nanette,"16701, 209, 10957",1,,0,Parliament,"['816833925456789505']",Democrat,https://pbs.twimg.com/profile_images/1293976702297812994/-2Ggm8PQ_normal.jpg,"['Natural Resources', 'Homeland Security', 'Energy and Commerce']","California, California",California 44th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Beatty Joyce,"16703, 210, 10959",1,,0,Parliament,"['1531521632']",Democrat,https://pbs.twimg.com/profile_images/978276004467789824/iPZFAoyl_normal.jpg,"['Financial Services']","Ohio, Ohio",Ohio 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ben Lujan R.,"11186, 211",1,,0,Parliament,"['19318314']",Democrat,,"['Energy and Commerce']",New Mexico,New Mexico 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Ami Bera,"212, 10960, 16705",1,,0,Parliament,"['950783972']",Democrat,https://pbs.twimg.com/profile_images/722533785481248769/LJz8Qkxj_normal.jpg,"['Science, Space, and Technology', 'Foreign Affairs']","California, California",California 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Beto O'Rourke,213,1,,0,Parliament,"['1134292500']",Democrat,,"['Armed Services', ""Veterans' Affairs""]",Texas,Texas 16th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Bill Flores,"11066, 214",0,,0,Parliament,"['237312687']",Republican,,"['Energy and Commerce']","Texas, Texas",Texas 17th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Bill Foster,"11068, 16810, 215",1,,0,Parliament,"['1080509366']",Democrat,https://pbs.twimg.com/profile_images/654326440079429632/YqEhH_t7_normal.jpg,"['Science, Space, and Technology', 'Financial Services']","Illinois, Illinois",Illinois 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bill Johnson,"11132, 216, 16879",0,,0,Parliament,"['211530910']",Republican,https://pbs.twimg.com/profile_images/531913598734307328/a-sC-HiK_normal.jpeg,"['the Budget', 'Energy and Commerce']","Ohio, Ohio",Ohio 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Bill Shuster,217,0,,0,Parliament,"['22527499']",Republican,,"['Armed Services', 'Transportation']",Pennsylvania,Pennsylvania 9th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Blaine Luetkemeyer,"11185, 218, 16931",0,,0,Parliament,"['1849261916']",Republican,https://pbs.twimg.com/profile_images/1002634185511788545/rl0XOJyQ_normal.jpg,"['Small Business', 'Financial Services']","Missouri, Missouri",Missouri 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Blumenauer Earl,"16713, 10967, 219",1,,0,Parliament,"['15954997']",Democrat,https://pbs.twimg.com/profile_images/1163549676383035392/21b1zSK8_normal.jpg,"['Ways and Means']","Oregon, Oregon",Oregon 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bobby L. Rush,"220, 11281, 17030",1,,0,Parliament,"['305216911']",Democrat,https://pbs.twimg.com/profile_images/1285602186232303616/2Uoc9E82_normal.jpg,"['Agriculture', 'Energy and Commerce']","Illinois, Illinois",Illinois 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bob Gibbs,"16824, 11081, 221",0,,0,Parliament,"['234822928']",Republican,https://pbs.twimg.com/profile_images/1104057806334976001/vNamx0io_normal.jpg,"['Oversight and Reform', 'Transportation', 'Agriculture', 'Transportation and Infrastructure']","Ohio, Ohio",Ohio 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Bonamici Suzanne,"16716, 10969, 222",1,,0,Parliament,"['558769636']",Democrat,https://pbs.twimg.com/profile_images/1227347272075272193/GH2CwHqF_normal.jpg,"['Education and Labor', 'Science, Space, and Technology', 'Education and the Workforce']","Oregon, Oregon",Oregon 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bonnie Coleman Watson,"17108, 11361, 223",1,,0,Parliament,"['2968451607']",Democrat,https://pbs.twimg.com/profile_images/1224811086039470081/1Eskre6l_normal.jpg,"['Homeland Security', 'Oversight and Government', 'Appropriations']","New Jersey, New Jersey",New Jersey 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bost Mike,"10970, 16717, 224",0,,0,Parliament,"['2964877294']",Republican,https://pbs.twimg.com/profile_images/1354171495061270529/IVMb7p4O_normal.jpg,"['Transportation', 'Agriculture', 'Transportation and Infrastructure', ""Veterans' Affairs""]","Illinois, Illinois",Illinois 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brad Wenstrup,"11365, 17112, 225",0,,0,Parliament,"['518644221']",Republican,https://pbs.twimg.com/profile_images/378800000172004781/b7b9dc516fbf3a3a1f5bbfff3ae9aa51_normal.png,"['Intelligence (Permanent)', 'Armed Services', 'Ways and Means', ""Veterans' Affairs""]","Ohio, Ohio",Ohio 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brady Robert,226,1,,0,Parliament,"['148453195']",Democrat,,"['Armed Services', 'House Administration', 'Joint Library']",Pennsylvania,Pennsylvania 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Babin Brian,"16695, 227, 10951",0,,0,Parliament,"['2929491549']",Republican,https://pbs.twimg.com/profile_images/887307878960431104/X1I2wzXX_normal.jpg,"['Science, Space, and Technology', 'Transportation', 'Transportation and Infrastructure']","Texas, Texas",Texas 36th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brian Fitzpatrick,"16806, 228, 11063",0,,0,Parliament,"['816303263586914304']",Republican,https://pbs.twimg.com/profile_images/987357349156458497/d4VDis2Y_normal.jpg,"['Homeland Security', 'Small Business', 'Transportation and Infrastructure', 'Foreign Affairs']","Pennsylvania, Pennsylvania","1st, Pennsylvania 8th","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brian Higgins,"11113, 229, 16860",1,,0,Parliament,"['33576489']",Democrat,https://pbs.twimg.com/profile_images/655008552243761152/vHUDf1-r_normal.jpg,"['Ways and Means', 'the Budget', 'Budget']","New York, New York",New York 26th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Brian Mast,"230, 16942, 11196",0,,0,Parliament,"['814103950404239360']",Republican,https://pbs.twimg.com/profile_images/1080531843907244032/XLrsVXa5_normal.jpg,"['Transportation and Infrastructure', 'Transportation', 'Foreign Affairs']","Florida, Florida",Florida 18th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Blunt Lisa Rochester,"16714, 10968, 231",1,,0,Parliament,"['817050219007328258']",Democrat,https://pbs.twimg.com/profile_images/1281609040607444997/UibYOfcc_normal.jpg,"['Agriculture', 'Energy and Commerce', 'Education and the Workforce']","Delaware At-Large, Delaware At Large",Delaware At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Buddy Carter,"10991, 232, 16740",0,,0,Parliament,"['2973870195']",Republican,https://pbs.twimg.com/profile_images/554437784912400384/N6PPUUz2_normal.jpeg,"['Energy and Commerce', 'Budget']","Georgia, Georgia",Georgia 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Bradley Byrne,"233, 10986",0,,0,Parliament,"['2253968388']",Republican,,"['Armed Services', 'Rules', 'Education and the Workforce']","Alabama, Alabama",Alabama 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Carbajal Salud,"234, 16736, 10988",1,,0,Parliament,"['816157667882373120']",Democrat,https://pbs.twimg.com/profile_images/1101128802963505152/AfgDKkfc_normal.png,"['Armed Services', 'Transportation and Infrastructure', 'Agriculture', 'the Budget']","California, California",California 24th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Cã¡Rdenas Tony,"16737, 235, 10989",1,,0,Parliament,"['1222257180']",Democrat,https://pbs.twimg.com/profile_images/983729841848668160/iADDNPRh_normal.jpg,"['Energy and Commerce']","California, California",California 29th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Cartwright Matthew,"16742, 10993, 236",1,,0,Parliament,"['776664410']",Democrat,https://pbs.twimg.com/profile_images/1096789776710160384/K6D4J-sa_normal.jpg,"['Appropriations', 'Oversight and Government']","Pennsylvania, Pennsylvania","8th, Pennsylvania 17th","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Charlie Crist,"16770, 11026, 237",1,,0,Parliament,"['816030424778543104']",Democrat,https://pbs.twimg.com/profile_images/821404691007471616/coBO0h0x_normal.jpg,"['Appropriations', 'Science, Space, and Technology', 'Financial Services']","Florida, Florida",Florida 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Charles Dent W.,238,0,,0,Parliament,"['242376736']",Republican,,"['Appropriations']",Pennsylvania,Pennsylvania 15th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Bustos Cheri,"10984, 239, 16732",1,,0,Parliament,"['1092979962']",Democrat,https://pbs.twimg.com/profile_images/877925390517403648/e6agUl46_normal.jpg,"['Appropriations', 'Transportation', 'Agriculture']","Illinois, Illinois",Illinois 17th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Chris Collins,"240, 11012",0,,0,Parliament,"['1058256326']",Republican,,"['Energy and Commerce']","New York, New York",New York 27th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Christopher Smith,"241, 11311",0,,0,Parliament,"['1289319271']",Republican,,"['Foreign Affairs']","New Jersey, New Jersey",New Jersey 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Chris Stewart,"242, 17072, 11324",0,,0,Parliament,"['1072008757']",Republican,https://pbs.twimg.com/profile_images/1181203802491359233/8699jKWK_normal.jpg,"['Intelligence (Permanent)', 'Appropriations']","Utah, Utah",Utah 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Charles Fleischmann,"16807, 11064, 243",0,,0,Parliament,"['235190657']",Republican,https://pbs.twimg.com/profile_images/818947796787142656/mH-TXPye_normal.jpg,"['Appropriations']","Tennessee, Tennessee",Tennessee 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Cicilline David,"16751, 244, 11001",1,,0,Parliament,"['462143773', '23593446']",Democrat,https://pbs.twimg.com/profile_images/1096428723040071680/iS7xXqHl_normal.jpg,"['Judiciary', 'the Judiciary', 'Foreign Affairs']","Rhode Island, Rhode Island, Rhode Island",Rhode Island 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"40, 1, 58",61320 +Clay Higgins,"245, 11114, 16861",0,,0,Parliament,"['843636970538618880']",Republican,https://pbs.twimg.com/profile_images/969055445456506880/ET-DtPeQ_normal.jpg,"['Homeland Security', 'Oversight and Reform', 'Science, Space, and Technology', ""Veterans' Affairs""]","Louisiana, Louisiana",Louisiana 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Cleaver Emanuel,"246, 11006, 16754",1,,0,Parliament,"['163570705']",Democrat,https://pbs.twimg.com/profile_images/1351973559481094148/77_khClK_normal.jpg,"['Homeland Security', 'Financial Services']","Missouri, Missouri",Missouri 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Cohen Steve,"11010, 247, 16759",1,,0,Parliament,"['162069635']",Democrat,https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg,"['Natural Resources', 'Judiciary', 'the Judiciary', 'Transportation and Infrastructure', 'Ethics', 'Transportation']","Tennessee, Tennessee",Tennessee 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Barbara Comstock,248,0,,0,Parliament,"['2933760046']",Republican,,"['Science, Space, and Technology', 'Transportation', 'House Administration']",Virginia,Virginia 10th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Cuellar Henry,"249, 11028, 16772",1,,0,Parliament,"['210926192']",Democrat,https://pbs.twimg.com/profile_images/1143897153334648832/_8Cp7Ssc_normal.jpg,"['Appropriations']","Texas, Texas",Texas 28th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Cummings Elijah,"11029, 250",1,,0,Parliament,"['787373558']",Democrat,,"['Oversight and Government', 'Transportation']","Maryland, Maryland",Maryland 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Carlos Curbelo,251,0,,0,Parliament,"['2853309155']",Republican,,"['Ways and Means']",Florida,Florida 26th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Daniel Kildee,"16897, 252, 11149",1,,0,Parliament,"['1045110018']",Democrat,https://pbs.twimg.com/profile_images/649229542951772160/myVmWhru_normal.jpg,"['Ways and Means', 'Financial Services', 'Budget']","Michigan, Michigan",Michigan 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Danny Davis K.,"16776, 253, 11034",1,,0,Parliament,"['789244177']",Democrat,https://pbs.twimg.com/profile_images/3401719858/fcb6d46529b4a43ccc07c296062ddb19_normal.jpeg,"['Ways and Means', 'Oversight and Reform']","Illinois, Illinois",Illinois 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Darren Soto,"254, 17061, 11314",1,,0,Parliament,"['818713465653051392']",Democrat,https://pbs.twimg.com/profile_images/1268566855909851136/pMeXN2R2_normal.jpg,"['Natural Resources', 'Agriculture', 'Energy and Commerce']","Florida, Florida",Florida 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Brat Dave,255,0,,0,Parliament,"['2560169238']",Republican,,"['Small Business', 'the Budget', 'Education and the Workforce']",Virginia,Virginia 7th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +David Joyce,"256, 11139, 16886",0,,0,Parliament,"['976969338']",Republican,https://pbs.twimg.com/profile_images/471370204589469696/jzOCXHSW_normal.jpeg,"['Ethics', 'Appropriations']","Ohio, Ohio",Ohio 14th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Dave Trott,257,0,,0,Parliament,"['2869746172']",Republican,,"['Financial Services']",Michigan,Michigan 11th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +David Schweikert,"11295, 17045, 258",0,,0,Parliament,"['229197216']",Republican,https://pbs.twimg.com/profile_images/1120412904304599041/dVK5QlEQ_normal.jpg,"['Ways and Means']","Arizona, Arizona",Arizona 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +David Kustoff,"260, 16906, 11159",0,,0,Parliament,"['816012124505931780']",Republican,https://pbs.twimg.com/profile_images/837085695479070721/yqIFqepO_normal.jpg,"['Financial Services']","Tennessee, Tennessee",Tennessee 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +David Rouzer,"17025, 11276, 261",0,,0,Parliament,"['834069080']",Republican,https://pbs.twimg.com/profile_images/656534508582256640/03U-6nNz_normal.jpg,"['Natural Resources', 'Transportation', 'Agriculture', 'Transportation and Infrastructure']","North Carolina, North Carolina",North Carolina 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +David Scott,"11297, 262, 17047",1,,0,Parliament,"['168673083']",Democrat,https://pbs.twimg.com/profile_images/1367196560971472914/IAAnOpX3_normal.jpg,"['Agriculture', 'Financial Services']","Georgia, Georgia",Georgia 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +David G. Valadao,"263, 17095",0,,0,Parliament,"['1128514404']",Republican,https://pbs.twimg.com/profile_images/1346859792107757569/qQmpUvUZ_normal.jpg,"['Appropriations']","California, California",California 21st,https://www.house.gov/representatives/#byName,,United States,25,"1, 58",61620 +David Young,264,0,,0,Parliament,"['314205957']",Republican,,"['Appropriations']",Iowa,Iowa 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Debbie Dingell,"265, 11048, 16789",1,,0,Parliament,"['2970279814']",Democrat,https://pbs.twimg.com/profile_images/1260352561674149890/Ciac76LX_normal.jpg,"['Natural Resources', 'Energy and Commerce']","Michigan, Michigan",Michigan 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Delbene Suzan,"11041, 16782, 266",1,,0,Parliament,"['995193054']",Democrat,https://pbs.twimg.com/profile_images/1278345256510029826/BxoWWWen_normal.jpg,"['Ways and Means', 'the Budget']","Washington, Washington",Washington 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Dennis Ross,267,0,,0,Parliament,"['33655490']",Republican,,"['Oversight and Government', 'Financial Services']",Florida,Florida 15th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Denny Heck,"268, 11109",1,,0,Parliament,"['1068499286']",Democrat,,"['Intelligence (Permanent)', 'Financial Services']","Washington, Washington",Washington 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Derek Kilmer,"11150, 269, 16898",1,,0,Parliament,"['1058917562']",Democrat,https://pbs.twimg.com/profile_images/1184144961215840256/4YG5c1Yf_normal.jpg,"['Appropriations']","Washington, Washington",Washington 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Desantis Ron,270,0,,0,Parliament,"['1058807868']",Republican,,"['Oversight and Government', 'the Judiciary', 'Foreign Affairs']",Florida,Florida 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Desaulnier Mark,"271, 16785, 11044",1,,0,Parliament,"['2968007206']",Democrat,https://pbs.twimg.com/profile_images/979126569070485505/TChO0ixS_normal.jpg,"['Education and Labor', 'Oversight and Government', 'Transportation and Infrastructure', 'Oversight and Reform', 'Transportation', 'Rules', 'Education and the Workforce']","California, California",California 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Degette Diana,"11039, 16780, 272",1,,0,Parliament,"['28599820']",Democrat,https://pbs.twimg.com/profile_images/1156236948983427072/AFGdaJyC_normal.jpg,"['Natural Resources', 'Energy and Commerce']","Colorado, Colorado",Colorado 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Black Diane,273,0,,0,Parliament,"['110545675']",Republican,,"['Ways and Means', 'the Budget']",Tennessee,Tennessee 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Dina Titus,"274, 11336, 17085",1,,0,Parliament,"['122174004']",Democrat,https://pbs.twimg.com/profile_images/669584452322877442/z7pOtlJI_normal.jpg,"['Homeland Security', 'Transportation', 'Transportation and Infrastructure', 'Foreign Affairs']","Nevada, Nevada",Nevada 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Doug Lamborn,"11163, 275, 16910",0,,0,Parliament,"['584012853']",Republican,https://pbs.twimg.com/profile_images/1171889369831096328/UpeDFi5k_normal.jpg,"['Natural Resources', 'Armed Services']","Colorado, Colorado",Colorado 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Donald Jr. Payne,"16996, 276, 11243",1,,0,Parliament,"['1155335864']",Democrat,https://pbs.twimg.com/profile_images/1126471193777909760/2T4eJWg9_normal.jpg,"['Homeland Security', 'Transportation', 'Transportation and Infrastructure']","New Jersey, New Jersey",New Jersey 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bacon Don,"277, 10952, 16696",0,,0,Parliament,"['818975124460335106']",Republican,https://pbs.twimg.com/profile_images/1223963541167837186/KXYmFUf5_normal.jpg,"['Armed Services', 'Small Business', 'Agriculture']","Nebraska, Nebraska",Nebraska 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Beyer Donald,"16707, 278, 10962",1,,0,Parliament,"['2962868158']",Democrat,https://pbs.twimg.com/profile_images/1338997811241750532/5g1O_CB3_normal.jpg,"['Natural Resources', 'Ways and Means', 'Science, Space, and Technology']","Virginia, Virginia",Virginia 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Don Young,"17124, 279, 11378",0,,0,Parliament,"['37007274']",Republican,https://pbs.twimg.com/profile_images/1358083967950483457/Ctaui1RO_normal.jpg,"['Natural Resources', 'Transportation', 'Transportation and Infrastructure']","Alaska At Large, Alaska At-Large",Alaska At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Collins Doug,"280, 11013",0,,0,Parliament,"['1060487274']",Republican,,"['the Judiciary', 'Rules']","Georgia, Georgia",Georgia 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +A. Drew Ferguson,"281, 16803, 11061",0,,0,Parliament,"['806583915012046854']",Republican,https://pbs.twimg.com/profile_images/1361849404538445826/rlcHIy17_normal.jpg,"['Ways and Means', 'Transportation', 'the Budget', 'Education and the Workforce']","Georgia, Georgia",Georgia 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Dwight Evans,"16800, 11060, 282",1,,0,Parliament,"['90639372']",Democrat,https://pbs.twimg.com/profile_images/879350983175925764/xUkaKXoa_normal.jpg,"['Ways and Means', 'Small Business', 'Agriculture']","Pennsylvania, Pennsylvania","Pennsylvania 2nd, 3rd","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Debbie Schultz Wasserman,"283, 11358, 17106",1,,0,Parliament,"['1140648348']",Democrat,https://pbs.twimg.com/profile_images/1217104542837460992/1CZNbVP9_normal.png,"['Appropriations', 'Oversight and Reform', 'the Budget']","Florida, Florida",Florida 23rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ed Royce,285,0,,0,Parliament,"['246769138']",Republican,,"['Foreign Affairs', 'Financial Services']",California,California 39th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Eliot Engel,"11055, 286",1,,0,Parliament,"['164007407']",Democrat,,"['Foreign Affairs', 'Energy and Commerce']","New York, New York",New York 16th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Erik Paulsen,287,0,,0,Parliament,"['17513304']",Republican,,"['Ways and Means']",Minnesota,Minnesota 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Adriano Espaillat,"288, 16798, 11058",1,,0,Parliament,"['817076257770835968']",Democrat,https://pbs.twimg.com/profile_images/1345899527434285056/qVLG6yF3_normal.jpg,"['Small Business', 'Education and Labor', 'Appropriations', 'Foreign Affairs', 'Education and the Workforce']","New York, New York",New York 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Elizabeth Esty,289,1,,0,Parliament,"['1060984272']",Democrat,,"['Science, Space, and Technology', 'Transportation', ""Veterans' Affairs""]",Connecticut,Connecticut 5th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Evan Jenkins,290,0,,0,Parliament,"['1635375612']",Republican,,"['Appropriations']",West Virginia,West Virginia 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Filemon Vela,"17100, 11349, 291",1,,0,Parliament,"['1083448909']",Democrat,https://pbs.twimg.com/profile_images/463712019523194880/pM1rWMry_normal.jpeg,"['Homeland Security', 'Agriculture', 'Armed Services']","Texas, Texas",Texas 34th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Frank Lucas,"11184, 292, 16930",0,,0,Parliament,"['242772524']",Republican,https://pbs.twimg.com/profile_images/628275690253774848/4zKOn1iP_normal.png,"['Science, Space, and Technology', 'Agriculture', 'Financial Services']","Oklahoma, Oklahoma",Oklahoma 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Fred Upton,"11345, 17094, 293",0,,0,Parliament,"['124224165']",Republican,https://pbs.twimg.com/profile_images/1133025054676201472/ZeYuIcgN_normal.png,"['Energy and Commerce']","Michigan, Michigan",Michigan 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +French Hill J.,"294, 16862, 11115",0,,0,Parliament,"['2953974395']",Republican,https://pbs.twimg.com/profile_images/996470402795950081/uXyDkCZ7_normal.jpg,"['Financial Services']","Arkansas, Arkansas",Arkansas 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Gallagher Mike,"11075, 295, 16817",0,,0,Parliament,"['815966620300480514']",Republican,https://pbs.twimg.com/profile_images/819978410038624266/0Df5fXvA_normal.jpg,"['Armed Services', 'Transportation and Infrastructure', 'Homeland Security']","Wisconsin, Wisconsin",Wisconsin 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Garamendi John,"11077, 296, 16819",1,,0,Parliament,"['88806753']",Democrat,https://pbs.twimg.com/profile_images/867754658919579648/_yzg8aMR_normal.jpg,"['Armed Services', 'Transportation', 'Transportation and Infrastructure']","California, California",California 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Gene Green,297,1,,0,Parliament,"['111635527']",Democrat,,"['Energy and Commerce']",Texas,Texas 29th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Gonzalez Vicente,"298, 16831, 11086",1,,0,Parliament,"['818536152588238849']",Democrat,https://pbs.twimg.com/profile_images/818878449091805184/-usbsU-q_normal.jpg,"['Foreign Affairs', 'Financial Services']","Texas, Texas",Texas 15th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bob Goodlatte,299,0,,0,Parliament,"['37920978']",Republican,,"['the Judiciary', 'Agriculture']",Virginia,Virginia 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +A. Gosar Paul,"300, 16835, 11089",0,,0,Parliament,"['240760644']",Republican,https://pbs.twimg.com/profile_images/1214210951794159617/et4Wlcq9_normal.jpg,"['Natural Resources', 'Oversight and Government', 'Oversight and Reform']","Arizona, Arizona",Arizona 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Grace Meng,"16957, 11212, 301",1,,0,Parliament,"['1051127714']",Democrat,https://pbs.twimg.com/profile_images/3257470174/64291ff1f090e3193c2764925000a1fa_normal.jpeg,"['Appropriations']","New York, New York",New York 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Greg Walden,"11354, 302",0,,0,Parliament,"['32010840']",Republican,,"['Energy and Commerce']","Oregon, Oregon",Oregon 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Glenn Grothman,"11099, 303, 16845",0,,0,Parliament,"['2976606250']",Republican,https://pbs.twimg.com/profile_images/1348727275844460544/-BnST_ZA_normal.jpg,"['Education and Labor', 'the Budget', 'Oversight and Government', 'Budget', 'Oversight and Reform', 'Education and the Workforce']","Wisconsin, Wisconsin",Wisconsin 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Bilirakis Gus M.,"304, 16710, 10964",0,,0,Parliament,"['26051676']",Republican,https://pbs.twimg.com/profile_images/694914426131111936/hTyLQllD_normal.png,"['Energy and Commerce', ""Veterans' Affairs""]","Florida, Florida",Florida 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brett Guthrie S.,"11101, 16847, 305",0,,0,Parliament,"['1908143071']",Republican,https://pbs.twimg.com/profile_images/689479180568829952/sNv4Qrl3_normal.jpg,"['Energy and Commerce', 'Education and the Workforce']","Kentucky, Kentucky",Kentucky 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Gutierrez Luis,306,1,,0,Parliament,"['36948268']",Democrat,,"['the Judiciary']",Illinois,Illinois 4th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Gwen Moore,"16967, 307, 11218",1,,0,Parliament,"['22669526']",Democrat,https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg,"['Ways and Means', 'Financial Services']","Wisconsin, Wisconsin",Wisconsin 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Harold Rogers,"11270, 308, 17020",0,,0,Parliament,"['550401754']",Republican,https://pbs.twimg.com/profile_images/2087954082/Hal_twitter_pic_normal.jpg,"['Appropriations']","Kentucky, Kentucky",Kentucky 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Colleen Hanabusa,309,1,,0,Parliament,"['235373000']",Democrat,,"['Natural Resources', 'Armed Services', 'Science, Space, and Technology']",Hawaii,Hawaii 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Hartzler Vicky,"11106, 16853, 310",0,,0,Parliament,"['237763317']",Republican,https://pbs.twimg.com/profile_images/1237415248174424064/2KAvh93I_normal.jpg,"['Armed Services', 'Agriculture']","Missouri, Missouri",Missouri 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Alcee Hastings L.,"11107, 16854, 311",1,,0,Parliament,"['2433737761']",Democrat,https://pbs.twimg.com/profile_images/1267847430869057538/kdGWTLyB_normal.jpg,"['Rules']","Florida, Florida",Florida 20th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Hensarling Jeb,312,0,,0,Parliament,"['18566912']",Republican,,"['Financial Services']",Texas,Texas 5th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +George Holding,"313, 11118",0,,0,Parliament,"['1058460818']",Republican,,"['Ways and Means']","North Carolina, North Carolina",North Carolina 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Huffman Jared,"11125, 16870, 314",1,,0,Parliament,"['1071102246']",Democrat,https://pbs.twimg.com/profile_images/651435990100279296/5lQBk2Ut_normal.png,"['Natural Resources', 'Transportation', 'Transportation and Infrastructure']","California, California",California 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bill Huizenga,"16871, 315, 11126",0,,0,Parliament,"['233949261']",Republican,https://pbs.twimg.com/profile_images/443039780276682753/UYej9mz0_normal.jpeg,"['Financial Services']","Michigan, Michigan",Michigan 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Hultgren Randy,316,0,,0,Parliament,"['237814920']",Republican,,"['Science, Space, and Technology', 'Financial Services']",Illinois,Illinois 14th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Bergman Jack,"16706, 10961, 317",0,,0,Parliament,"['815241612154417152']",Republican,https://pbs.twimg.com/profile_images/1326579690375704584/H1mWNJJF_normal.jpg,"['Natural Resources', 'Armed Services', 'the Budget', ""Veterans' Affairs""]","Michigan, Michigan",Michigan 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Jacky Rosen,"318, 11453",1,,0,"Parliament, Senate","['818554054309715969']",Democrat,https://www.rosen.senate.gov/,"['Class I', 'Armed Services', 'Science, Space, and Technology']","NV, Nevada",Nevada 3rd,"https://www.house.gov/representatives/#byName, https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC",,United States,25,"1, 41",61320 +Jason Lewis,319,0,,0,Parliament,"['157011694']",Republican,,"['Transportation', 'the Budget', 'Education and the Workforce']",Minnesota,Minnesota 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Jason Smith,"17059, 320, 11312",0,,0,Parliament,"['1623308912']",Republican,https://pbs.twimg.com/profile_images/661622139779461120/sdj6vlvm_normal.jpg,"['Ways and Means', 'the Budget', 'Budget']","Missouri, Missouri",Missouri 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Jayapal Pramila,"11130, 321, 16877",1,,0,Parliament,"['815733290955112448']",Democrat,https://pbs.twimg.com/profile_images/978268908057751552/LdIDc0tc_normal.jpg,"['Judiciary', 'the Judiciary', 'Education and Labor', 'the Budget', 'Budget']","Washington, Washington",Washington 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bridenstine Jim,322,0,,0,Parliament,"['1092757885']",Republican,,"['Armed Services', 'Science, Space, and Technology']",Oklahoma,Oklahoma 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Denham Jeff,323,0,,0,Parliament,"['248699486']",Republican,,"['Natural Resources', 'Transportation', 'Agriculture']",California,California 10th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Duncan Jeff,"16793, 324, 11052",0,,0,Parliament,"['240393970']",Republican,https://pbs.twimg.com/profile_images/848513070867591168/6X517ab3_normal.jpg,"['Homeland Security', 'Energy and Commerce', 'Foreign Affairs']","South Carolina, South Carolina",South Carolina 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Hakeem Jeffries,"11131, 325, 16878",1,,0,Parliament,"['467823431']",Democrat,https://pbs.twimg.com/profile_images/843897836383158274/hmHktXQP_normal.jpg,"['Judiciary', 'the Judiciary', 'the Budget', 'Budget']","New York, New York",New York 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Gonzã¡Lez-Colã³N Jenniffer,"11087, 326",0,,0,Parliament,"['819744763020775425']",Republican,,"['Natural Resources', 'Small Business', ""Veterans' Affairs""]","Puerto Rico At-Large, Puerto Rico Resident Commissioner",Puerto Rico At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Jerrold Nadler,"327, 11224, 16974",1,,0,Parliament,"['40302336']",Democrat,https://pbs.twimg.com/profile_images/1269965882924679170/9qhyRU7F_normal.jpg,"['Judiciary', 'Transportation', 'the Judiciary']","New York, New York",New York 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Banks Jim,"10955, 16699, 328",0,,0,Parliament,"['816131319033950208', '14836282']",Republican,https://pbs.twimg.com/profile_images/1303433728878874627/LiaGm29-_normal.jpg,"['Armed Services', ""Veterans' Affairs"", 'Education and Labor']", ['Armed Services', 'Science, Space, and Technology', ""Veterans' Affairs""]","Indiana, Indiana",Indiana 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Cooper Jim,"11018, 16763, 329",1,,0,Parliament,"['22523087']",Democrat,https://pbs.twimg.com/profile_images/1328723085516738566/QNvjaw-U_normal.jpg,"['Armed Services', 'Oversight and Government', 'Oversight and Reform', 'Budget']","Tennessee, Tennessee",Tennessee 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Costa Jim,"11020, 16765, 330",1,,0,Parliament,"['245451804']",Democrat,https://pbs.twimg.com/profile_images/1293987451095015425/U0yvwOIA_normal.jpg,"['Natural Resources', 'Agriculture', 'Foreign Affairs']","California, California",California 16th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Jimmy Panetta,"16993, 11240, 331",1,,0,Parliament,"['796736612554117120']",Democrat,https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg,"['Natural Resources', 'Armed Services', 'Agriculture', 'Ways and Means']","California, California",California 20th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Jim Renacci,332,0,,0,Parliament,"['236916916']",Republican,,"['Ways and Means', 'the Budget']",Ohio,Ohio 16th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Barton Joe,333,0,,0,Parliament,"['19929362']",Republican,,"['Energy and Commerce']",Texas,Texas 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Courtney Joe,"16766, 11021, 334",1,,0,Parliament,"['85396297']",Democrat,https://pbs.twimg.com/profile_images/1417794144/New_Boston_Beef--North_Groves___35__normal.jpg,"['Education and Labor', 'Armed Services', 'Education and the Workforce']","Connecticut, Connecticut",Connecticut 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Crowley Joseph,335,1,,0,Parliament,"['111635980']",Democrat,,"['Ways and Means']",New York,New York 14th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Iii Joseph Kennedy P.,"336, 11147",1,,0,Parliament,"['1055907624']",Democrat,,"['Energy and Commerce']","Massachusetts, Massachusetts",Massachusetts 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Joe Wilson,"337, 11371, 17119",0,,0,Parliament,"['254082173']",Republican,https://pbs.twimg.com/profile_images/661622212294778880/ScIsfHAl_normal.jpg,"['Education and Labor', 'Armed Services', 'Foreign Affairs', 'Education and the Workforce']","South Carolina, South Carolina",South Carolina 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Conyers John Jr.,338,1,,0,Parliament,"['138770045']",Democrat,,"['the Judiciary']",Michigan,Michigan 13th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Delaney John,339,1,,0,Parliament,"['937723303']",Democrat,,"['Financial Services']",Maryland,Maryland 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Duncan J. John Jr.,340,0,,0,Parliament,"['1883356866']",Republican,,"['Oversight and Government', 'Transportation']",Tennessee,Tennessee 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Faso John,341,0,,0,Parliament,"['815931811348017152']",Republican,,"['Transportation', 'Agriculture', 'the Budget']",New York,New York 19th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +John Katko,"342, 11142, 16890",0,,0,Parliament,"['2966765501']",Republican,https://pbs.twimg.com/profile_images/1179780616897925121/5vVQLypr_normal.jpg,"['Homeland Security', 'Transportation', 'Transportation and Infrastructure']","New York, New York",New York 24th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +B. John Larson,"16913, 343, 11166",1,,0,Parliament,"['50452197']",Democrat,https://pbs.twimg.com/profile_images/979449416129097728/q0pTyqB9_normal.jpg,"['Ways and Means']","Connecticut, Connecticut",Connecticut 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +John Lewis,"11175, 344",1,,0,Parliament,"['29450962']",Democrat,,"['Ways and Means', 'Joint Taxation']","Georgia, Georgia",Georgia 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +A. John Yarmuth,"17123, 345, 11376",1,,0,Parliament,"['384913290']",Democrat,https://pbs.twimg.com/profile_images/978673581990260736/qEAFTWha_normal.jpg,"['Education and Labor', 'the Budget', 'Budget']","Kentucky, Kentucky",Kentucky 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +E. Josã© Serrano,"346, 11300",1,,0,Parliament,"['33563161']",Democrat,,"['Appropriations']","New York, New York",New York 15th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Gottheimer Josh,"16836, 347, 11090",1,,0,Parliament,"['815310506596691968']",Democrat,https://pbs.twimg.com/profile_images/824380405482668042/TGcE_Hz0_normal.jpg,"['Homeland Security', 'Financial Services']","New Jersey, New Jersey",New Jersey 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Juan Vargas,"11347, 348, 17098",1,,0,Parliament,"['1260172386']",Democrat,https://pbs.twimg.com/profile_images/978328637874343936/q54hVwQ8_normal.jpg,"['Foreign Affairs', 'Financial Services']","California, California",California 51st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Chu Judy,"16750, 349, 11000",1,,0,Parliament,"['193732179']",Democrat,https://pbs.twimg.com/profile_images/378800000660180425/626ed3754e3c64e47ce8a9d1cdf66ef7_normal.jpeg,"['Ways and Means', 'Small Business', 'Budget']","California, California",California 27th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bass Karen,"10958, 350, 16702",1,,0,Parliament,"['239949176']",Democrat,https://pbs.twimg.com/profile_images/605458297475317761/P1AjUUex_normal.jpg,"['Judiciary', 'the Judiciary', 'Foreign Affairs']","California, California",California 37th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Kathleen Rice,"11264, 17016, 351",1,,0,Parliament,"['2970462034']",Democrat,https://pbs.twimg.com/profile_images/1275172865294336001/O4oafOg3_normal.jpg,"['Homeland Security', 'Energy and Commerce', ""Veterans' Affairs""]","New York, New York",New York 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Granger Kay,"11091, 352, 16837",0,,0,Parliament,"['161743731']",Republican,https://pbs.twimg.com/profile_images/3640863486/2b8a9b3a4c70a9e4012fde172bc2ee42_normal.jpeg,"['Appropriations']","Texas, Texas",Texas 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Clark Katherine,"16752, 11003, 353",1,,0,Parliament,"['2293131060']",Democrat,https://pbs.twimg.com/profile_images/1081192713003839488/kKs1xi9b_normal.jpg,"['Appropriations']","Massachusetts, Massachusetts",Massachusetts 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Buck Ken,"354, 16726, 10979",0,,0,Parliament,"['2862577383']",Republican,https://pbs.twimg.com/profile_images/1343220884337807361/Q2BwktZM_normal.jpg,"['the Judiciary', 'Judiciary', 'Rules', 'Foreign Affairs']","Colorado, Colorado",Colorado 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Kenny Marchant,"11192, 355",0,,0,Parliament,"['23976316']",Republican,,"['Ethics', 'Ways and Means']","Texas, Texas",Texas 24th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Brady Kevin,"16721, 10972, 356",0,,0,Parliament,"['19926675']",Republican,https://pbs.twimg.com/profile_images/1083758515972435970/DGqetgRL_normal.jpg,"['Ways and Means', 'Joint Taxation']","Texas, Texas",Texas 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Cramer Kevin,"357, 11403",0,,0,"Parliament, Senate","['1048784496']",Republican,https://www.cramer.senate.gov/,"['Class I', 'Energy and Commerce']","ND, North Dakota At-Large",North Dakota At-Large,"https://www.house.gov/representatives/#byName, https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC",,United States,25,"1, 41",61620 +Kevin Yoder,358,0,,0,Parliament,"['252819642']",Republican,,"['Appropriations', 'Joint Library']",Kansas,Kansas 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +J. Kihuen Ruben,359,1,,0,Parliament,"['816282029276938240']",Democrat,,"['Financial Services']",Nevada,Nevada 4th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Adam Kinzinger,"11155, 360, 16902",0,,0,Parliament,"['219429281']",Republican,https://pbs.twimg.com/profile_images/694232632503201794/JoCP5r3E_normal.png,"['Foreign Affairs', 'Energy and Commerce']","Illinois, Illinois",Illinois 16th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Kristi Noem,361,0,,0,Parliament,"['235251868']",Republican,,"['Ways and Means']",South Dakota At-Large,South Dakota At-Large,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Darin Lahood,"362, 16907, 11160",0,,0,Parliament,"['3686482216']",Republican,https://pbs.twimg.com/profile_images/884784404098428929/vAzowMaE_normal.jpg,"['Natural Resources', 'Ways and Means', 'Science, Space, and Technology']","Illinois, Illinois",Illinois 18th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Doug Lamalfa,"16908, 363, 11161",0,,0,Parliament,"['1069124515']",Republican,https://pbs.twimg.com/profile_images/532998035416969216/vtCyv9Ze_normal.jpeg,"['Natural Resources', 'Transportation', 'Agriculture', 'Transportation and Infrastructure']","California, California",California 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Lance Leonard,364,0,,0,Parliament,"['613725908']",Republican,,"['Ethics', 'Energy and Commerce']",New Jersey,New Jersey 7th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Bucshon Larry,"365, 16727, 10980",0,,0,Parliament,"['234812598']",Republican,https://pbs.twimg.com/profile_images/3781635770/569620c6e7f294f1f1fed50b41b3ab77_normal.jpeg,"['Energy and Commerce']","Indiana, Indiana",Indiana 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brenda Lawrence,"11168, 366, 16916",1,,0,Parliament,"['2863006655']",Democrat,https://pbs.twimg.com/profile_images/979045446420172800/GQ59mg30_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Appropriations', 'Transportation']","Michigan, Michigan",Michigan 14th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Linda Sã¡Nchez,"367, 11285, 17035",1,,0,Parliament,"['312134473']",Democrat,https://pbs.twimg.com/profile_images/1268186992082325505/d4Gm8J5z_normal.jpg,"['Ways and Means']","California, California",California 38th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Daniel Lipinski,"11177, 368",1,,0,Parliament,"['1009269193']",Democrat,,"['Science, Space, and Technology', 'Transportation']","Illinois, Illinois",Illinois 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Cheney Liz,"16749, 10999, 369",0,,0,Parliament,"['816719802328715264']",Republican,https://pbs.twimg.com/profile_images/1133351651991941120/3CiGwymh_normal.jpg,"['Natural Resources', 'Armed Services', 'Rules']","Wyoming At-Large, Wyoming At Large",Wyoming At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Doggett Lloyd,"11049, 370, 16790",1,,0,Parliament,"['153944899']",Democrat,https://pbs.twimg.com/profile_images/1186375175283134464/BGeIqfDH_normal.jpg,"['Ways and Means', 'Budget']","Texas, Texas",Texas 35th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Frank Lobiondo,371,0,,0,Parliament,"['241207373']",Republican,,"['Intelligence (Permanent)', 'Armed Services', 'Transportation']",New Jersey,New Jersey 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Frankel Lois,"11070, 16812, 372",1,,0,Parliament,"['1077121945']",Democrat,https://pbs.twimg.com/profile_images/1096443852985122817/N-xXEwbj_normal.png,"['Appropriations', 'Transportation', 'Foreign Affairs', ""Veterans' Affairs""]","Florida, Florida",Florida 21st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Barletta Lou,373,0,,0,Parliament,"['239871673']",Republican,,"['Homeland Security', 'Transportation', 'Education and the Workforce']",Pennsylvania,Pennsylvania 11th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Correa J. Luis,"374, 16764, 11019",1,,0,Parliament,"['815985039485837312']",Democrat,https://pbs.twimg.com/profile_images/958720189897625601/c-SpjpEc_normal.jpg,"['Homeland Security', 'Judiciary', 'Agriculture', ""Veterans' Affairs""]","California, California",California 46th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Barry Loudermilk,"16928, 375, 11181",0,,0,Parliament,"['2914163523']",Republican,https://pbs.twimg.com/profile_images/1001100740792811520/yaLsE8rC_normal.jpg,"['Science, Space, and Technology', 'House Administration', 'Financial Services', 'Joint Library']","Georgia, Georgia",Georgia 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Gohmert Louie,"376, 16826, 11082",0,,0,Parliament,"['22055226']",Republican,https://pbs.twimg.com/profile_images/378800000474059588/ae423b08bb7a6e382fbd54184d3257a9_normal.jpeg,"['Natural Resources', 'Judiciary', 'the Judiciary']","Texas, Texas",Texas 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Alan Lowenthal,"377, 11182, 16929",1,,0,Parliament,"['1055730738']",Democrat,https://pbs.twimg.com/profile_images/523118825928015873/_KcBsyJZ_normal.jpeg,"['Natural Resources', 'Transportation', 'Transportation and Infrastructure']","California, California",California 47th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Grisham Lujan Michelle,378,1,,0,Parliament,"['1061385474']",Democrat,,"['Agriculture', 'the Budget']",New Mexico,New Mexico 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Luke Messer,379,0,,0,Parliament,"['1045853744']",Republican,,"['Financial Services', 'Education and the Workforce']",Indiana,Indiana 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Jenkins Lynn,380,0,,0,Parliament,"['19658173']",Republican,,"['Ways and Means']",Kansas,Kansas 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Carolyn Maloney,"381, 16937, 11190",1,,0,Parliament,"['258900199']",Democrat,https://pbs.twimg.com/profile_images/1217901162168496132/NQ57H44w_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Financial Services']","New York, New York",New York 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Fudge L. Marcia,"11071, 16814, 382",1,,0,Parliament,"['153486399']",Democrat,https://pbs.twimg.com/profile_images/1091421085025869825/vIjuOGIQ_normal.jpg,"['Agriculture', 'Education and the Workforce']","Ohio, Ohio",Ohio 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Kaptur Marcy,"11141, 383, 16889",1,,0,Parliament,"['581141508']",Democrat,https://pbs.twimg.com/profile_images/1108475167297232902/vggXpEsS_normal.jpg,"['Appropriations']","Ohio, Ohio",Ohio 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Mark Meadows,"384, 11210",0,,0,Parliament,"['963480595']",Republican,,"['Oversight and Government', 'Transportation', 'Foreign Affairs']","North Carolina, North Carolina",North Carolina 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Mark Pocan,"11253, 17006, 385",1,,0,Parliament,"['1206227149']",Democrat,https://pbs.twimg.com/profile_images/1039192566044999682/TNyedeNK_normal.jpg,"['Appropriations', 'Education and Labor']","Wisconsin, Wisconsin",Wisconsin 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Mark Takano,"11328, 386, 17077",1,,0,Parliament,"['1037321378']",Democrat,https://pbs.twimg.com/profile_images/978257751825682432/xuo-Enea_normal.jpg,"['Education and Labor', ""Veterans' Affairs"", 'Science, Space, and Technology', 'Education and the Workforce']","California, California",California 41st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Mark Walker,"387, 11355",0,,0,Parliament,"['2966205003']",Republican,,"['Oversight and Government', 'House Administration']","North Carolina, North Carolina",North Carolina 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Marshall Roger,"11194, 388",0,,0,Parliament,"['1240107944']",Republican,,"['Small Business', 'Science, Space, and Technology', 'Agriculture']","Kansas, Kansas",Kansas 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Martha Roby,"11268, 389",0,,0,Parliament,"['224294785']",Republican,,"['Appropriations', 'the Judiciary']","Alabama, Alabama",Alabama 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Gaetz Matt,"11074, 390, 16816",0,,0,Parliament,"['818948638890217473']",Republican,https://pbs.twimg.com/profile_images/1080559825946374144/n1tU4WLx_normal.jpg,"['Armed Services', 'Judiciary', 'the Judiciary', 'the Budget']","Florida, Florida",Florida 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Mccaul Michael T.,"11201, 16946, 391",0,,0,Parliament,"['26424123']",Republican,https://pbs.twimg.com/profile_images/1144247573324140544/J1Mw75FZ_normal.png,"['Homeland Security', 'Foreign Affairs']","Texas, Texas",Texas 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Mcclintock Tom,"392, 11202, 16948",0,,0,Parliament,"['50152441']",Republican,https://pbs.twimg.com/profile_images/1245801024561893376/FyZs3MjW_normal.jpg,"['Natural Resources', 'Judiciary', 'the Budget', 'Budget']","California, California",California 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +A. Donald Mceachin,"11204, 393, 16950",1,,0,Parliament,"['816181091673448448']",Democrat,https://pbs.twimg.com/profile_images/1267817330177830912/rzhAyaeC_normal.jpg,"['Natural Resources', 'Armed Services', 'Energy and Commerce']","Virginia, Virginia",Virginia 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +James Mcgovern,"11205, 394, 16951",1,,0,Parliament,"['242426145']",Democrat,https://pbs.twimg.com/profile_images/1268059258802901002/0WamNMY3_normal.jpg,"['Rules', 'Agriculture']","Massachusetts, Massachusetts",Massachusetts 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +David Mckinley,"395, 11207, 16953",0,,0,Parliament,"['240427862']",Republican,https://pbs.twimg.com/profile_images/1128746342518525952/DyT_BdAm_normal.png,"['Energy and Commerce']","West Virginia, West Virginia",West Virginia 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Jerry Mcnerney,"16954, 11209, 396",1,,0,Parliament,"['385429543']",Democrat,https://pbs.twimg.com/profile_images/453602967006896128/sMQhAO6K_normal.jpeg,"['Science, Space, and Technology', 'Energy and Commerce']","California, California",California 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Martha Mcsally,"11438, 397",0,,0,"Parliament, Senate","['482450423', '2964949642']",Republican,https://www.mcsally.senate.gov/,"['Armed Services', 'Homeland Security']", ['Class III']","AZ, Arizona",Arizona 2nd,"https://www.house.gov/representatives/#byName, https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC",,United States,25,"1, 41",61620 +Meehan Pat,398,0,,0,Parliament,"['103868633']",Republican,,"['Ethics', 'Ways and Means']",Pennsylvania,Pennsylvania 7th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Griffith H. Morgan,"16843, 11097, 399",0,,0,Parliament,"['234057152']",Republican,https://pbs.twimg.com/profile_images/1244240509/HMG2_normal.jpg,"['Energy and Commerce']","Virginia, Virginia",Virginia 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Love Mia,400,0,,0,Parliament,"['2976598347']",Republican,,"['Financial Services']",Utah,Utah 4th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Bishop Mike,401,0,,0,Parliament,"['2914571740']",Republican,,"['Ways and Means']",Michigan,Michigan 8th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Coffman Mike,402,0,,0,Parliament,"['19407835']",Republican,,"['Armed Services', ""Veterans' Affairs""]",Colorado,Colorado 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Johnson Mike,"403, 11136, 16883",0,,0,Parliament,"['827279765287559171', '827279765287559040']",Republican,https://pbs.twimg.com/profile_images/1307500766236676096/G-zmcEqK_normal.jpg,"['Natural Resources', 'the Judiciary']", ['Armed Services', 'Judiciary']","Louisiana, Louisiana",Louisiana 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Mike Quigley,"17011, 404, 11258",1,,0,Parliament,"['56864092']",Democrat,https://pbs.twimg.com/profile_images/1329479461197271040/z_YFxDZe_normal.jpg,"['Intelligence (Permanent)', 'Appropriations']","Illinois, Illinois",Illinois 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Mike Rogers,"405, 17021, 11271",0,,0,Parliament,"['156703580', '33977070']",Republican,https://pbs.twimg.com/profile_images/807319848506261504/VIggyuuB_normal.jpg,"['Armed Services', 'Agriculture', 'Homeland Security']","Alabama, Alabama, Alabama",Alabama 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"40, 1, 58",61620 +Michael Turner,"17092, 11343, 406",0,,0,Parliament,"['51228911']",Republican,https://pbs.twimg.com/profile_images/1224894173121327104/Dt0pPNAv_normal.jpg,"['Intelligence (Permanent)', 'Armed Services']","Ohio, Ohio",Ohio 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Mimi Walters,407,0,,0,Parliament,"['47798449']",Republican,,"['Energy and Commerce']",California,California 45th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Brooks Mo,"10974, 16722, 408",0,,0,Parliament,"['237299871']",Republican,https://pbs.twimg.com/profile_images/3253062018/1745ec9085ff4db219c69bd7ffb2e7fc_normal.jpeg,"['Armed Services', 'Science, Space, and Technology', 'Foreign Affairs']","Alabama, Alabama",Alabama 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +John Moolenaar,"11216, 16963, 409",0,,0,Parliament,"['2696643955']",Republican,https://pbs.twimg.com/profile_images/997236401849622528/EYBv4I7c_normal.jpg,"['Appropriations']","Michigan, Michigan",Michigan 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Markwayne Mullin,"410, 11222, 16971",0,,0,Parliament,"['1060370282']",Republican,https://pbs.twimg.com/profile_images/936684558841532416/NA_AK7gd_normal.jpg,"['Energy and Commerce']","Oklahoma, Oklahoma",Oklahoma 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Dan Newhouse,"11228, 411, 16979",0,,0,Parliament,"['2930635215']",Republican,https://pbs.twimg.com/profile_images/553653397505576960/4z-oC8rN_normal.jpeg,"['Appropriations', 'Rules']","Washington, Washington",Washington 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +O'Halleran Tom,"11234, 16987, 412",1,,0,Parliament,"['808416682972770304']",Democrat,https://pbs.twimg.com/profile_images/1083045869312720897/CHw6zuQJ_normal.jpg,"['Armed Services', 'Agriculture', 'Energy and Commerce']","Arizona, Arizona",Arizona 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Cook Paul,"413, 11017",0,,0,Parliament,"['1074412920']",Republican,,"['Natural Resources', 'Armed Services', 'Foreign Affairs']","California, California",California 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Mitchell Paul,"11215, 414",0,,0,Parliament,"['811632636598910976']",Republican,,"['Oversight and Government', 'Transportation', 'Education and the Workforce']","Michigan, Michigan",Michigan 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +D. Paul Tonko,"17087, 11338, 415",1,,0,Parliament,"['84119348']",Democrat,https://pbs.twimg.com/profile_images/1268153403286396928/_CF_K6iG_normal.jpg,"['Natural Resources', 'Science, Space, and Technology', 'Energy and Commerce']","New York, New York",New York 20th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ed Perlmutter,"16999, 11246, 416",1,,0,Parliament,"['20552026']",Democrat,https://pbs.twimg.com/profile_images/1364329993602490369/u9fPZhJg_normal.jpg,"['Science, Space, and Technology', 'Rules', 'Financial Services']","Colorado, Colorado",Colorado 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +King Peter,"417, 11153",0,,0,Parliament,"['18277655']",Republican,,"['Intelligence (Permanent)', 'Homeland Security', 'Financial Services']","New York, New York",New York 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Defazio Peter,"11038, 16779, 418",1,,0,Parliament,"['252249233']",Democrat,https://pbs.twimg.com/profile_images/433317647241859072/r361UudO_normal.jpeg,"['Transportation', 'Transportation and Infrastructure']","Oregon, Oregon",Oregon 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Pittenger Robert,419,0,,0,Parliament,"['950328072']",Republican,,"['Financial Services']",North Carolina,North Carolina 9th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Bruce Poliquin,420,0,,0,Parliament,"['2932617195']",Republican,,"['Financial Services', ""Veterans' Affairs""]",Maine,Maine 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Jamie Raskin,"421, 17013, 11260",1,,0,Parliament,"['806906355214852096']",Democrat,https://pbs.twimg.com/profile_images/1192819134935027714/o0cJeFDI_normal.jpg,"['Judiciary', 'the Judiciary', 'House Administration', 'Oversight and Government', 'Oversight and Reform', 'Rules']","Maryland, Maryland",Maryland 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +John Ratcliffe,"422, 11261",0,,0,Parliament,"['2847221717']",Republican,,"['Homeland Security', 'the Judiciary']","Texas, Texas",Texas 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Grijalva Raúl,"11098, 16844, 423",1,,0,Parliament,"['28602948']",Democrat,https://pbs.twimg.com/profile_images/566304491918462976/muz5J8tZ_normal.jpeg,"['Natural Resources', 'Education and Labor', 'Education and the Workforce']","Arizona, Arizona",Arizona 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +E. Neal Richard,"16976, 424, 11226",1,,0,Parliament,"['442824717']",Democrat,https://pbs.twimg.com/profile_images/2245213250/TP_normal.jpg,"['Ways and Means', 'Joint Taxation']","Massachusetts, Massachusetts",Massachusetts 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Hudson Richard,"16869, 425, 11124",0,,0,Parliament,"['935033864']",Republican,https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg,"['Energy and Commerce']","North Carolina, North Carolina",North Carolina 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Cedric L.- Richmond Vacancy,"17018, 11266, 426",1,,0,Parliament,"['267854863']",Democrat,https://pbs.twimg.com/profile_images/839888450597834752/5-yqcIpy_normal.jpg,"['Homeland Security', 'the Judiciary']","Louisiana, Louisiana",Louisiana 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Allen Rick,"427, 10944, 16688",0,,0,Parliament,"['2964287128']",Republican,https://pbs.twimg.com/profile_images/552476601510682624/vklJRMrV_normal.jpeg,"['Education and Labor', 'Agriculture', 'Education and the Workforce']","Georgia, Georgia",Georgia 12th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Crawford Eric “Rick”,"11024, 428, 16768",0,,0,Parliament,"['233693291']",Republican,https://pbs.twimg.com/profile_images/993922640040603649/VsFpRzt0_normal.jpg,"['Intelligence (Permanent)', 'Transportation', 'Agriculture', 'Transportation and Infrastructure']","Arkansas, Arkansas",Arkansas 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Larsen Rick,"16912, 11165, 429",1,,0,Parliament,"['404132211']",Democrat,https://pbs.twimg.com/profile_images/804085552064720896/HGM6mA6m_normal.jpg,"['Armed Services', 'Transportation', 'Transportation and Infrastructure']","Washington, Washington",Washington 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bishop Rob,"430, 10965",0,,0,Parliament,"['148006729']",Republican,,"['Natural Resources', 'Armed Services']","Utah, Utah",Utah 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Kelly Robin,"431, 16894, 11145",1,,0,Parliament,"['1339931490']",Democrat,https://pbs.twimg.com/profile_images/1268229553266348033/ur_t5SP6_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Energy and Commerce', 'Foreign Affairs']","Illinois, Illinois",Illinois 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Robert Woodall,"11374, 432",0,,0,Parliament,"['2382685057']",Republican,,"['Transportation', 'Rules', 'the Budget']","Georgia, Georgia",Georgia 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Blum Rod,433,0,,0,Parliament,"['2965083477']",Republican,,"['Oversight and Government', 'Small Business']",Iowa,Iowa 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Dana Rohrabacher,434,0,,0,Parliament,"['831483464']",Republican,,"['Science, Space, and Technology', 'Foreign Affairs']",California,California 48th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Khanna Ro,"11148, 16896, 435",1,,0,Parliament,"['816298918468259841']",Democrat,https://pbs.twimg.com/profile_images/1236008748130406400/6RLY4LrX_normal.jpg,"['Armed Services', 'Oversight and Reform', 'Agriculture', 'the Budget']","California, California",California 17th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Estes Ron,"11059, 436, 16799",0,,0,Parliament,"['854715071116849157']",Republican,https://pbs.twimg.com/profile_images/859497281317482498/9I2gHXlr_normal.jpg,"['Ways and Means']","Kansas, Kansas",Kansas 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Kind Ron,"11152, 437, 16901",1,,0,Parliament,"['112740986']",Democrat,https://pbs.twimg.com/profile_images/1100524258059522049/Fdmj0qny_normal.png,"['Ways and Means']","Wisconsin, Wisconsin",Wisconsin 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Francis Rooney,"11272, 438",0,,0,Parliament,"['816111677917851649']",Republican,,"['Foreign Affairs', 'Education and the Workforce']","Florida, Florida",Florida 19th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Lucille Roybal-Allard,"439, 17027, 11278",1,,0,Parliament,"['479872233']",Democrat,https://pbs.twimg.com/profile_images/646679472578498561/DqbuKI-9_normal.png,"['Appropriations']","California, California",California 40th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Gallego Ruben,"16818, 11076, 440",1,,0,Parliament,"['2966570782']",Democrat,https://pbs.twimg.com/profile_images/1268183675906199552/d2RX9FhG_normal.jpg,"['Natural Resources', 'Armed Services']","Arizona, Arizona",Arizona 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Russell Steve,441,0,,0,Parliament,"['2966758114']",Republican,,"['Armed Services', 'Oversight and Government', 'Education and the Workforce']",Oklahoma,Oklahoma 5th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +John Rutherford,"11282, 442, 17031",0,,0,Parliament,"['828977216595849216']",Republican,https://pbs.twimg.com/profile_images/999013227936628736/kPDy7RMJ_normal.jpg,"['Ethics', 'Homeland Security', 'Appropriations', ""Veterans' Affairs""]","Florida, Florida",Florida 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Roger Williams,"443, 11369, 17117",0,,0,Parliament,"['1077446982']",Republican,https://pbs.twimg.com/profile_images/436164065665093632/aealPAUa_normal.jpeg,"['Small Business', 'Financial Services']","Texas, Texas",Texas 25th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Costello Ryan,444,0,,0,Parliament,"['2953922782']",Republican,,"['Energy and Commerce']",Pennsylvania,Pennsylvania 6th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Graves Sam,"16839, 11093, 445",0,,0,Parliament,"['29766367']",Republican,https://pbs.twimg.com/profile_images/791029158780497920/a3YPubNC_normal.jpg,"['Armed Services', 'Transportation', 'Transportation and Infrastructure']","Missouri, Missouri",Missouri 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Levin Sander,446,1,,0,Parliament,"['25781141']",Democrat,,"['Ways and Means']",Michigan,Michigan 9th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Mark Sanford,447,0,,0,Parliament,"['1499993378']",Republican,,"['Oversight and Government', 'Transportation', 'the Budget']",South Carolina,South Carolina 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +John P. Sarbanes,"11287, 448, 17037",1,,0,Parliament,"['364415553']",Democrat,https://pbs.twimg.com/profile_images/1350248671217115136/H2P158BP_normal.jpg,"['Oversight and Government', 'Oversight and Reform', 'Energy and Commerce']","Maryland, Maryland",Maryland 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Kurt Schrader,"11293, 17043, 449",1,,0,Parliament,"['20545793']",Democrat,https://pbs.twimg.com/profile_images/378800000699231986/e1da7064726a13bfda529d18efc048a8_normal.jpeg,"['Energy and Commerce']","Oregon, Oregon",Oregon 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Perry Scott,"17000, 450, 11247",0,,0,Parliament,"['18773159']",Republican,https://pbs.twimg.com/profile_images/1113825215178473472/ulkiqqVW_normal.png,"['Homeland Security', 'Transportation', 'Transportation and Infrastructure', 'Foreign Affairs']","Pennsylvania, Pennsylvania","10th, Pennsylvania 4th","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Peters Scott,"17001, 11248, 451",1,,0,Parliament,"['1135486501']",Democrat,https://pbs.twimg.com/profile_images/1150789408318091265/SurWDpFr_normal.png,"['Budget', 'Small Business', 'Energy and Commerce', ""Veterans' Affairs""]","California, California",California 52nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Scott Taylor,452,0,,0,Parliament,"['42337890']",Republican,,"['Appropriations']",Virginia,Virginia 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Duffy P. Sean,"11051, 453",0,,0,Parliament,"['234022257']",Republican,,"['Financial Services']","Wisconsin, Wisconsin",Wisconsin 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Maloney Patrick Sean,"11191, 454, 16938",1,,0,Parliament,"['1072467470']",Democrat,https://pbs.twimg.com/profile_images/954056209216176128/0--KKfKn_normal.jpg,"['Transportation', 'Agriculture', 'Transportation and Infrastructure']","New York, New York",New York 18th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Carol Shea-Porter,455,1,,0,Parliament,"['126171100']",Democrat,,"['Armed Services', 'Education and the Workforce']",New Hampshire,New Hampshire 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +John Shimkus,"456, 11305",0,,0,Parliament,"['15600527']",Republican,,"['Energy and Commerce']","Illinois, Illinois",Illinois 15th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Kyrsten Sinema,"11464, 457",1,,0,"Parliament, Senate","['1080844782', '20747881']",Democrat,https://www.sinema.senate.gov/,"['Class I']", ['Financial Services']","AZ, Arizona",Arizona 9th,"https://www.house.gov/representatives/#byName, https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC",,United States,25,"1, 41",61320 +Albio Sires,"458, 17054, 11307",1,,0,Parliament,"['18696134']",Democrat,https://pbs.twimg.com/profile_images/981257423179669522/tEc6emNQ_normal.jpg,"['Transportation and Infrastructure', 'Transportation', 'Foreign Affairs', 'Budget']","New Jersey, New Jersey",New Jersey 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Lloyd Smucker,"17060, 11313, 459",0,,0,Parliament,"['41417564']",Republican,https://pbs.twimg.com/profile_images/1173066425939955714/ZE3rxVzt_normal.jpg,"['Ways and Means', 'the Budget', 'Budget', 'Transportation', 'Education and the Workforce']","Pennsylvania, Pennsylvania","11th, Pennsylvania 16th","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Jackie Speier,"11317, 460, 17064",1,,0,Parliament,"['24913074']",Democrat,https://pbs.twimg.com/profile_images/1216755169163202560/7Y1JaC3s_normal.jpg,"['Intelligence (Permanent)', 'Armed Services', 'Oversight and Reform']","California, California",California 14th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Elise Stefanik,"11320, 17068, 461",0,,0,Parliament,"['2962813893']",Republican,https://pbs.twimg.com/profile_images/1105573314423128064/3FMAJviW_normal.jpg,"['Intelligence (Permanent)', 'Armed Services', 'Education and Labor', 'Education and the Workforce']","New York, New York",New York 21st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +F. Lynch Stephen,"16933, 11188, 462",1,,0,Parliament,"['310310133']",Democrat,https://pbs.twimg.com/profile_images/523121530155175937/H7aakruP_normal.jpeg,"['Oversight and Government', 'Oversight and Reform', 'Transportation and Infrastructure', 'Financial Services']","Massachusetts, Massachusetts",Massachusetts 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Murphy Stephanie,"463, 16973, 11223",1,,0,Parliament,"['796183515998068736']",Democrat,https://pbs.twimg.com/profile_images/1317765713172549634/vaNnDx5a_normal.jpg,"['Armed Services', 'Small Business', 'Ways and Means']","Florida, Florida",Florida 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Chabot Steve,"16748, 10998, 464",0,,0,Parliament,"['237750442']",Republican,https://pbs.twimg.com/profile_images/907699267170656256/PlbYkRah_normal.jpg,"['Small Business', 'Judiciary', 'the Judiciary', 'Foreign Affairs']","Ohio, Ohio",Ohio 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Pearce Steve,465,0,,0,Parliament,"['235271965']",Republican,,"['Natural Resources', 'Financial Services']",New Mexico,New Mexico 2nd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Steve Stivers,"466, 17073, 11325",0,,0,Parliament,"['211420609']",Republican,https://pbs.twimg.com/profile_images/552881728226750464/ELtq08Dw_normal.jpeg,"['Financial Services']","Ohio, Ohio",Ohio 15th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Davis Susan,"11036, 467",1,,0,Parliament,"['432771620']",Democrat,,"['Armed Services', 'Education and the Workforce']","California, California",California 53rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Eric Swalwell,"17076, 468, 11327",1,,0,Parliament,"['942156122']",Democrat,https://pbs.twimg.com/profile_images/1304268135193890817/WzsyG1cV_normal.jpg,"['Intelligence (Permanent)', 'Homeland Security', 'Judiciary', 'the Judiciary']","California, California",California 15th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Budd Ted,"10981, 16728, 469",0,,0,Parliament,"['817138492614524928']",Republican,https://pbs.twimg.com/profile_images/987039452483739648/Hs7YypAA_normal.jpg,"['Financial Services']","North Carolina, North Carolina",North Carolina 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Deutch Theodore,"11046, 470, 16787",1,,0,Parliament,"['137794015']",Democrat,https://pbs.twimg.com/profile_images/1361812894388793348/_hszFxu4_normal.jpg,"['Ethics', 'Judiciary', 'the Judiciary', 'Foreign Affairs']","Florida, Florida",Florida 22nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Lieu Ted,"16925, 11176, 471",1,,0,Parliament,"['3044993235']",Democrat,https://pbs.twimg.com/profile_images/978664130457423880/3R-vL8Xp_normal.jpg,"['Judiciary', 'the Judiciary', 'Foreign Affairs']","California, California",California 33rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ted Yoho,"11377, 472",0,,0,Parliament,"['1071900114']",Republican,,"['Agriculture', 'Foreign Affairs']","Florida, Florida",Florida 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Claudia Tenney,"17079, 473",0,,0,Parliament,"['797201048490430465']",Republican,https://pbs.twimg.com/profile_images/1363523771664056320/iS6CAuzR_normal.jpg,"['Financial Services']","New York, New York",New York 22nd,https://www.house.gov/representatives/#byName,,United States,25,"1, 58",61620 +A. Sewell Terri,"474, 17050, 11301",1,,0,Parliament,"['381152398']",Democrat,https://pbs.twimg.com/profile_images/1365353497533775876/xnkOsYz7_normal.jpg,"['Intelligence (Permanent)', 'Ways and Means']","Alabama, Alabama",Alabama 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Massie Thomas,"475, 16941, 11195",0,,0,Parliament,"['975200486']",Republican,https://pbs.twimg.com/profile_images/1339685912872177664/EKpZGLli_normal.jpg,"['Judiciary', 'Science, Space, and Technology', 'Oversight and Government', 'Transportation and Infrastructure', 'Transportation']","Kentucky, Kentucky",Kentucky 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Mike Thompson,"476, 11332, 17082",1,,0,Parliament,"['303861808']",Democrat,https://pbs.twimg.com/profile_images/1338930755767037958/RU8uyevz_normal.jpg,"['Ways and Means']","California, California",California 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ryan Tim,"478, 17032, 11283",1,,0,Parliament,"['13491312']",Democrat,https://pbs.twimg.com/profile_images/1228072363100643328/4JIT_oYl_normal.jpg,"['Appropriations']","Ohio, Ohio",Ohio 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +J. Timothy Walz,479,1,,0,Parliament,"['1262814457']",Democrat,,"['Agriculture', ""Veterans' Affairs""]",Minnesota,Minnesota 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Scott Tipton,"11335, 480",0,,0,Parliament,"['242873057']",Republican,,"['Natural Resources', 'Financial Services']","Colorado, Colorado",Colorado 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Emmer Tom,"11054, 16795, 481",0,,0,Parliament,"['2914515430']",Republican,https://pbs.twimg.com/profile_images/1334632307618144256/xXMyFn6A_normal.jpg,"['Financial Services']","Minnesota, Minnesota",Minnesota 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Graves Tom,"482, 11094",0,,0,Parliament,"['190328374']",Republican,,"['Appropriations']","Georgia, Georgia",Georgia 14th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Macarthur Tom,483,0,,0,Parliament,"['2962994194']",Republican,,"['Financial Services']",New Jersey,New Jersey 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Marino Tom,"11193, 484",0,,0,Parliament,"['240363117']",Republican,,"['Homeland Security', 'the Judiciary', 'Foreign Affairs']","Pennsylvania, Pennsylvania","Pennsylvania 10th, 12th","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Reed Tom,"485, 17014, 11262",0,,0,Parliament,"['252819323']",Republican,https://pbs.twimg.com/profile_images/971153729394233344/8-zUt7Os_normal.jpg,"['Ways and Means']","New York, New York",New York 23rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Rice Tom,"17017, 486, 11265",0,,0,Parliament,"['1058345042']",Republican,https://pbs.twimg.com/profile_images/3087214605/bd94115eb4cbc13f474eea2d678e6372_normal.jpeg,"['Ways and Means']","South Carolina, South Carolina",South Carolina 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Suozzi Thomas,"487, 11326, 17075",1,,0,Parliament,"['816705409486618624']",Democrat,https://pbs.twimg.com/profile_images/1267574095006371840/_NCLNgs4_normal.jpg,"['Armed Services', 'Ways and Means', 'Foreign Affairs']","New York, New York",New York 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Kelly Trent,"489, 16895, 11146",0,,0,Parliament,"['3317799825']",Republican,https://pbs.twimg.com/profile_images/1215315784903352320/GgqL5x8j_normal.jpg,"['Armed Services', 'Small Business', 'Agriculture']","Mississippi, Mississippi",Mississippi 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Hollingsworth Trey,"11119, 490, 16865",0,,0,Parliament,"['811986281177772032']",Republican,https://pbs.twimg.com/profile_images/1088501775336902657/4O_H6qOp_normal.jpg,"['Financial Services']","Indiana, Indiana",Indiana 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Demings Val,"11043, 491, 16784",1,,0,Parliament,"['798973032362606600']",Democrat,https://pbs.twimg.com/profile_images/1013838545113485312/hWQSDnZp_normal.jpg,"['Homeland Security', 'Oversight and Government', 'Judiciary']","Florida, Florida",Florida 10th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Marc Veasey,"11348, 17099, 492",1,,0,Parliament,"['1074129612']",Democrat,https://pbs.twimg.com/profile_images/1298674593037799425/XP6TFaNF_normal.jpg,"['Armed Services', 'Science, Space, and Technology', 'Energy and Commerce']","Texas, Texas",Texas 33rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Peter Visclosky,"493, 11351",1,,0,Parliament,"['193872188']",Democrat,,"['Appropriations']","Indiana, Indiana",Indiana 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61320 +Tim Walberg,"494, 17103, 11353",0,,0,Parliament,"['237862972']",Republican,https://pbs.twimg.com/profile_images/1142586051023769601/BfxzKA76_normal.jpg,"['Education and Labor', 'Energy and Commerce', 'Education and the Workforce']","Michigan, Michigan",Michigan 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Jackie Walorski,"17104, 495, 11356",0,,0,Parliament,"['1065995022']",Republican,https://pbs.twimg.com/profile_images/1352299062301782017/F-23vywF_normal.jpg,"['Ethics', 'Ways and Means']","Indiana, Indiana",Indiana 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +B. Jones Walter,"496, 11137",0,,0,Parliament,"['26778110']",Republican,,"['Armed Services']","North Carolina, North Carolina",North Carolina 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Daniel Webster,"11363, 497, 17110",0,,0,Parliament,"['281540744']",Republican,https://pbs.twimg.com/profile_images/1362512985/Twitter_Pic_2_normal.png,"['Natural Resources', 'Science, Space, and Technology', 'Transportation', 'Transportation and Infrastructure']","Florida, Florida",Florida 11th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Bruce Westerman,"17113, 498, 11366",0,,0,Parliament,"['2852998461']",Republican,https://pbs.twimg.com/profile_images/875381309744533505/sT1DIGng_normal.jpg,"['Natural Resources', 'Transportation and Infrastructure', 'Transportation', 'the Budget']","Arkansas, Arkansas",Arkansas 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Frederica Wilson,"499, 11370, 17118",1,,0,Parliament,"['234014087']",Democrat,https://pbs.twimg.com/profile_images/961401810291511298/T-7xWfeR_normal.jpg,"['Education and Labor', 'Transportation', 'Transportation and Infrastructure', 'Education and the Workforce']","Florida, Florida",Florida 24th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Clarke D. Yvette,"500, 11004, 16753",1,,0,Parliament,"['240812994']",Democrat,https://pbs.twimg.com/profile_images/1355515332501368835/uSaClWqI_normal.jpg,"['Ethics', 'Homeland Security', 'Small Business', 'Energy and Commerce']","New York, New York",New York 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Lofgren Zoe,"11179, 16926, 501",1,,0,Parliament,"['267938462']",Democrat,https://pbs.twimg.com/profile_images/1195356596098027520/AcFu1fbJ_normal.jpg,"['Judiciary', 'the Judiciary', 'House Administration', 'Science, Space, and Technology', 'Joint Library']","California, California",California 19th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Aderholt Robert,"10942, 16686, 502",0,,0,Parliament,"['76452765']",Republican,https://pbs.twimg.com/profile_images/1245695014694420480/gUQhq7Zl_normal.jpg,"['Appropriations']","Alabama, Alabama",Alabama 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +J. Robert Wittman,"503, 17120, 11372",0,,0,Parliament,"['15356407']",Republican,https://pbs.twimg.com/profile_images/1161659600812290048/GMCiGMFf_normal.jpg,"['Natural Resources', 'Armed Services']","Virginia, Virginia",Virginia 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Davis Rodney,"504, 16777, 11035",0,,0,Parliament,"['993153006']",Republican,https://pbs.twimg.com/profile_images/861602080712216576/Qa1f4EOG_normal.jpg,"['House Administration', 'Transportation', 'Agriculture', 'Transportation and Infrastructure']","Illinois, Illinois",Illinois 13th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Delauro L. Rosa,"16781, 11040, 505",1,,0,Parliament,"['140519774']",Democrat,https://pbs.twimg.com/profile_images/677211963865358338/ZbwzWm8I_normal.jpg,"['Appropriations']","Connecticut, Connecticut",Connecticut 3rd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ileana Ros-Lehtinen,506,0,,0,Parliament,"['14275291']",Republican,,"['Intelligence (Permanent)', 'Foreign Affairs']",Florida,Florida 27th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Johnson Sam,507,0,,0,Parliament,"['249288197']",Republican,,"['Ways and Means', 'Joint Taxation']",Texas,Texas 3rd,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Bishop D. Jr. Sanford,"16712, 508, 10966",1,,0,Parliament,"['249410485']",Democrat,https://pbs.twimg.com/profile_images/2429733840/rjl32rw6zxkszb84av5z_normal.jpeg,"['Appropriations']","Georgia, Georgia",Georgia 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Ryan Zinke,509,0,,0,Parliament,"['827258161841135623']",Republican,,,Montana At-Large,Montana At-Large,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Moulton Seth,"16969, 510, 11220",1,,0,Parliament,"['248495200']",Democrat,https://pbs.twimg.com/profile_images/1286763812440412160/UoAHlxR7_normal.jpg,"['Armed Services', 'Transportation and Infrastructure', 'the Budget', 'Budget']","Massachusetts, Massachusetts",Massachusetts 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +D. Paul Ryan,511,0,,0,Parliament,"['18916432']",Republican,,,Wisconsin,Wisconsin 1st,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Plaskett Stacey,"512, 11252, 17005",1,,0,Parliament,"['2724095695']",Democrat,https://pbs.twimg.com/profile_images/1359245793308336145/P0dAO1yJ_normal.jpg,"['Oversight and Government', 'Agriculture', 'Ways and Means', 'Budget']","Virgin Islands At-Large, Virgin Islands Delegate",Virgin Islands At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +King Steve,"11154, 513",0,,0,Parliament,"['48117116']",Republican,,"['the Judiciary', 'Small Business', 'Agriculture']","Iowa, Iowa",Iowa 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Knight Steve,514,0,,0,Parliament,"['2974648323']",Republican,,"['Small Business', 'Armed Services', 'Science, Space, and Technology']",California,California 25th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Scalise Steve,"17038, 11288, 515",0,,0,Parliament,"['1209417007']",Republican,https://pbs.twimg.com/profile_images/744267613841260544/GdM7XCZM_normal.jpg,"['Energy and Commerce']","Louisiana, Louisiana",Louisiana 1st,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Brooks Susan W.,"516, 10975",0,,0,Parliament,"['1074101017']",Republican,,"['Ethics', 'Energy and Commerce']","Indiana, Indiana",Indiana 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40",61620 +Gowdy Trey,517,0,,0,Parliament,"['237348797']",Republican,,"['Ethics', 'Intelligence (Permanent)', 'Oversight and Government', 'the Judiciary']",South Carolina,South Carolina 4th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Rokita Todd,518,0,,0,Parliament,"['17544524']",Republican,,"['Transportation', 'the Budget', 'Education and the Workforce']",Indiana,Indiana 4th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Cole Tom,"11011, 16760, 519",0,,0,Parliament,"['23124635']",Republican,https://pbs.twimg.com/profile_images/720636712645455872/Ho1HVPi7_normal.jpg,"['Appropriations', 'Rules', 'the Budget']","Oklahoma, Oklahoma",Oklahoma 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Rooney Tom,520,0,,0,Parliament,"['23970171']",Republican,,"['Intelligence (Permanent)', 'Appropriations']",Florida,Florida 17th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Gabbard Tulsi,"11073, 521",1,,0,Parliament,"['26637348', '1064206014']",Democrat,,"['Armed Services', 'Foreign Affairs']","Hawaii, Hawaii",Hawaii 2nd,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"40, 1",61320 +Randy Weber,"17109, 522, 11362",0,,0,Parliament,"['1058051748']",Republican,https://pbs.twimg.com/profile_images/616654502184263680/na4q3hZH_normal.jpg,"['Science, Space, and Technology', 'Transportation', 'Transportation and Infrastructure']","Texas, Texas",Texas 14th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Gary Palmer,"523, 16992, 11239",0,,0,Parliament,"['2861616083']",Republican,https://pbs.twimg.com/profile_images/963834426131087362/G281BjJD_normal.jpg,"['Oversight and Government', 'Science, Space, and Technology', 'Energy and Commerce', 'the Budget']","Alabama, Alabama",Alabama 6th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Castor Kathy,"16745, 10996, 524",1,,0,Parliament,"['1880674038']",Democrat,https://pbs.twimg.com/profile_images/1362101511996788739/03U3_9SG_normal.jpg,"['Energy and Commerce']","Florida, Florida",Florida 14th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Keating William,"11143, 525, 16891",1,,0,Parliament,"['232992031']",Democrat,https://pbs.twimg.com/profile_images/677589152456544256/AJ5i2xqW_normal.jpg,"['Homeland Security', 'Foreign Affairs', 'Armed Services']","Massachusetts, Massachusetts",Massachusetts 9th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Billy Long,"11180, 16927, 526",0,,0,Parliament,"['1444015610']",Republican,https://pbs.twimg.com/profile_images/931238240396423168/Zew9SE9S_normal.jpg,"['Energy and Commerce']","Missouri, Missouri",Missouri 7th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Doyle Michael,"11050, 527, 16792",1,,0,Parliament,"['39249305']",Democrat,https://pbs.twimg.com/profile_images/1196432862268055552/5vFh80m4_normal.jpg,"['Energy and Commerce']","Pennsylvania, Pennsylvania","18th, Pennsylvania 14th","https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Nolan Rick,528,1,,0,Parliament,"['1055685948']",Democrat,,"['Transportation', 'Agriculture']",Minnesota,Minnesota 8th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Frelinghuysen Rodney,529,0,,0,Parliament,"['1382011333']",Republican,,"['Appropriations']",New Jersey,New Jersey 11th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Buchanan Vern,"10978, 16725, 530",0,,0,Parliament,"['20467163']",Republican,https://pbs.twimg.com/profile_images/1734256376/headshot_normal.jpg,"['Ways and Means']","Florida, Florida",Florida 16th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Foxx Virginia,"16811, 11069, 531",0,,0,Parliament,"['16256269']",Republican,https://pbs.twimg.com/profile_images/826530077798187010/ol7ZEx04_normal.jpg,"['Education and Labor', 'Oversight and Government', 'Oversight and Reform', 'Education and the Workforce']","North Carolina, North Carolina",North Carolina 5th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +Davidson Warren,"532, 16775, 11033",0,,0,Parliament,"['742735530287304704']",Republican,https://pbs.twimg.com/profile_images/1363221997128478725/EisoykyO_normal.jpg,"['Financial Services']","Ohio, Ohio",Ohio 8th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61620 +H. Hoyer Steny,"533, 16868",1,,0,Parliament,"['22012091']",Democrat,https://pbs.twimg.com/profile_images/1096390444685185025/TpO5twdF_normal.png,,"Maryland, Maryland",Maryland 5th,https://www.house.gov/representatives/#byName,,United States,25,"1, 58",61320 +Becerra Xavier,534,1,,0,Parliament,"['565469671']",Democrat,,,California,California 34th,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +David Price,"17010, 535, 11257",1,,0,Parliament,"['155669457']",Democrat,https://pbs.twimg.com/profile_images/978257235192287232/XUsOnM3Z_normal.jpg,"['Appropriations', 'Budget']","North Carolina, North Carolina",North Carolina 4th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bernice Eddie Johnson,"16881, 11134, 536",1,,0,Parliament,"['168502762']",Democrat,https://pbs.twimg.com/profile_images/979378100223008769/QxBd91xS_normal.jpg,"['Science, Space, and Technology', 'Transportation', 'Transportation and Infrastructure']","Texas, Texas",Texas 30th,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Gregorio Kilili Sablan,"17033, 11284, 537",1,,0,Parliament,"['926446070812602371']",Democrat,https://pbs.twimg.com/profile_images/926447365107666946/QPZ1Pd7E_normal.jpg,"['Natural Resources', 'Education and Labor', ""Veterans' Affairs"", 'Agriculture', 'Education and the Workforce']","Northern Mariana Islands At-Large, Northern Mariana Islands Delegate",Northern Mariana Islands At-Large,"https://www.house.gov/representatives/#byName, https://www.house.gov/representatives#by-name",,United States,25,"1, 40, 58",61320 +Bordallo Madeleine,538,1,,0,Parliament,"['714913042685931520']",Democrat,,"['Natural Resources', 'Armed Services']",Guam At-Large,Guam At-Large,https://www.house.gov/representatives/#byName,,United States,25,1,61320 +Mick Mulvaney,539,0,,0,Parliament,"['888031054141022209']",Republican,,,South Carolina,South Carolina 5th,https://www.house.gov/representatives/#byName,,United States,25,1,61620 +Abbott Diane Ms,"540, 15222",3,,3,Parliament,"['153810216']",Labour,"https://www.parliament.uk/biographies/commons/ms-diane-abbott/172, https://www.dianeabbott.org.uk",,Hackney North and Stoke Newington,Hackney North and Stoke Newington,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Abrahams Debbie,"541, 15724",3,,3,Parliament,"['225857392']",Labour,"https://www.parliament.uk/biographies/commons/debbie-abrahams/4212, https://www.debbieabrahams.org.uk",,Oldham East and Saddleworth,Oldham East and Saddleworth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Adams Nigel,"15392, 542",4,,3,Parliament,"['3369594003']",Conservative,"https://www.selbyandainsty.com, https://www.parliament.uk/biographies/commons/nigel-adams/4057",,Selby and Ainsty,Selby and Ainsty,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Afolami Bim,"543, 15808",4,,3,Parliament,"['311956971']",Conservative,"https://www.parliament.uk/biographies/commons/bim-afolami/4639, https://www.bimafolami.co.uk",,Hitchin and Harpenden,Hitchin and Harpenden,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Adam Afriyie,"15869, 544",4,,3,Parliament,"['22031058']",Conservative,"https://www.parliament.uk/biographies/commons/adam-afriyie/1586, https://www.adamafriyie.org",,Windsor,Windsor,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Aldous Peter,"545, 15371",4,,3,Parliament,"['255998767']",Conservative,"https://www.parliament.uk/biographies/commons/peter-aldous/4069, none",,Waveney,Waveney,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ali Rushanara,"15335, 546",3,,3,Parliament,"['245849058']",Labour,"https://www.parliament.uk/biographies/commons/rushanara-ali/4138, https://www.rushanaraali.org",,Bethnal Green and Bow,Bethnal Green and Bow,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Allan Lucy,"547, 15528",4,,3,Parliament,"['16134235']",Conservative,"https://www.parliament.uk/biographies/commons/lucy-allan/4411, https://www.lucyallan.com",,Telford,Telford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Allen Heidi,548,4,,3,Parliament,"['426116125']",Conservative,https://www.parliament.uk/biographies/commons/heidi-allen/4516,,,South Cambridgeshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Allin-Khan Dr Rosena,"549, 15701",3,,3,Parliament,"['2382227424']",Labour,"https://www.drrosena.co.uk, https://www.parliament.uk/biographies/commons/dr-rosena-allin-khan/4573",,Tooting,Tooting,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Amesbury Mike,550,3,,3,Parliament,"['20325923']",Labour,https://www.parliament.uk/biographies/commons/mike-amesbury/4667,,,Weaver Vale,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Amess David Sir,"551, 15303",4,,3,Parliament,"['951838283780194304']",Conservative,"https://www.parliament.uk/biographies/commons/sir-david-amess/44, https://www.davidamess.co.uk/",,Southend West,Southend West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Andrew Stuart,"15260, 552",4,,3,Parliament,"['20424362']",Conservative,https://www.parliament.uk/biographies/commons/stuart-andrew/4032,,Pudsey,Pudsey,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Antoniazzi Tonia,"553, 15244",3,,3,Parliament,"['2855602085']",Labour,"https://www.parliament.uk/biographies/commons/tonia-antoniazzi/4623, https://www.toniaantoniazzi.co.uk",,Gower,Gower,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Ashworth Jonathan,"15580, 555",5,,3,Parliament,"['143212610']",Labour Co-op,"https://www.parliament.uk/biographies/commons/jonathan-ashworth/4244, https://facebook.com/JonAshworth",,Leicester South,Leicester South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Austin Ian,557,3,,3,Parliament,"['261782937']",Labour,https://www.parliament.uk/biographies/commons/ian-austin/1511,,,Dudley North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Bacon Richard,558,4,,3,Parliament,"['570197439']",Conservative,https://www.parliament.uk/biographies/commons/mr-richard-bacon/1451,,,South Norfolk,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Badenoch Kemi,"559, 15554",4,,3,Parliament,"['4010545737']",Conservative,"https://facebook.com/kemibadenoch, https://www.parliament.uk/biographies/commons/mrs-kemi-badenoch/4597",,Saffron Walden,Saffron Walden,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Adrian Bailey,560,5,,3,Parliament,"['2885503101']",Labour Co-op,https://www.parliament.uk/biographies/commons/mr-adrian-bailey/320,,,West Bromwich West,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Baker Mr Steve,"561, 15433",4,,3,Parliament,"['15157283']",Conservative,https://www.parliament.uk/biographies/commons/mr-steve-baker/4064,,Wycombe,Wycombe,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Baldwin Harriett,"15653, 562",4,,3,Parliament,"['19177609']",Conservative,"https://www.harriettbaldwin.com, https://www.parliament.uk/biographies/commons/harriett-baldwin/4107",,West Worcestershire,West Worcestershire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Barclay Stephen,"15269, 563",4,,3,Parliament,"['269788397']",Conservative,"https://instagram.com/stevebarclayofficial, https://www.parliament.uk/biographies/commons/stephen-barclay/4095",,North East Cambridgeshire,North East Cambridgeshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Bardell Hannah,"564, 15654",6,,3,Parliament,"['2981900049']",Scottish National Party,https://www.parliament.uk/biographies/commons/hannah-bardell/4486,,Livingston,Livingston,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Barron Kevin,566,3,,3,Parliament,"['2757416225']",Labour,https://www.parliament.uk/biographies/commons/sir-kevin-barron/392,,,Rother Valley,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Bebb Guto,567,4,,3,Parliament,"['752820350371717120']",Conservative,https://www.parliament.uk/biographies/commons/guto-bebb/3910,,,Aberconwy,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Begley Órfhlaith,"569, 15387",7,,3,Parliament,"['406646373']",Sinn Féin,"https://www.parliament.uk/biographies/commons/%c3%b3rfhlaith-begley/4697, none",,West Tyrone,West Tyrone,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",53951 +Benn Hilary,"571, 15649",3,,3,Parliament,"['408454349']",Labour,"https://www.hilarybenn.org, https://www.parliament.uk/biographies/commons/hilary-benn/413",,Leeds Central,Leeds Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Benyon Richard,572,4,,3,Parliament,"['119074643']",Conservative,https://www.parliament.uk/biographies/commons/richard-benyon/1547,,,Newbury,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Berger Luciana,575,5,,3,Parliament,"['20992801']",Labour Co-op,https://www.parliament.uk/biographies/commons/luciana-berger/4036,,,"Liverpool, Wavertree",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Berry Jake,"15629, 576",4,,3,Parliament,"['217148014']",Conservative,https://www.parliament.uk/biographies/commons/jake-berry/4060,,Rossendale and Darwen,Rossendale and Darwen,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Black Mhairi,"578, 15490",6,,3,Parliament,"['120236641']",Scottish National Party,"https://www.parliament.uk/biographies/commons/mhairi-black/4421, https://www.mhairiblack.scot",,Paisley and Renfrewshire South,Paisley and Renfrewshire South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Blackford Ian,"579, 15643",6,,3,Parliament,"['1325563478']",Scottish National Party,"https://www.parliament.uk/biographies/commons/ian-blackford/4390, https://ianblackford.scot",,"Ross, Skye and Lochaber","Ross, Skye and Lochaber","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Blackman Bob,"580, 15807",4,,3,Parliament,"['805185025']",Conservative,"https://www.parliament.uk/biographies/commons/bob-blackman/4005, https://bobblackman.org.uk",,Harrow East,Harrow East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Blackman Kirsty,"581, 15546",6,,3,Parliament,"['2616215901']",Scottish National Party,"https://www.parliament.uk/biographies/commons/kirsty-blackman/4357, https://www.facebook.com/aberdeennorth",,Aberdeen North,Aberdeen North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Blackman-Woods Roberta,582,3,,3,Parliament,"['173089105']",Labour,https://www.parliament.uk/biographies/commons/dr-roberta-blackman-woods/1501,,,City of Durham,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Blomfield Paul,"15382, 583",3,,3,Parliament,"['377319290']",Labour,"https://www.parliament.uk/biographies/commons/paul-blomfield/4058, https://www.paulblomfield.co.uk",,Sheffield Central,Sheffield Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Blunt Crispin,"584, 15754",4,,3,Parliament,"['76579281']",Conservative,"https://www.parliament.uk/biographies/commons/crispin-blunt/104, https://blunt4reigate.com",,Reigate,Reigate,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Boles Nick,585,4,,3,Parliament,"['1548391070']",Conservative,https://www.parliament.uk/biographies/commons/nick-boles/3995,,,Grantham and Stamford,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Bone Mr Peter,"15443, 586",4,,3,Parliament,"['871469846']",Conservative,"none, https://www.parliament.uk/biographies/commons/mr-peter-bone/1581",,Wellingborough,Wellingborough,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Bottomley Peter Sir,"15285, 587",4,,3,Parliament,"['110405901']",Conservative,"https://www.parliament.uk/biographies/commons/sir-peter-bottomley/117, https://www.sirpeterbottomley.com",,Worthing West,Worthing West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Andrew Bowie,"15844, 588",4,,3,Parliament,"['893178169380962304']",Conservative,"https://www.andrewbowie.org.uk, https://www.parliament.uk/biographies/commons/andrew-bowie/4601",,West Aberdeenshire and Kincardine,West Aberdeenshire and Kincardine,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Brabin Tracy,"15241, 589",5,,3,Parliament,"['48280657']",Labour Co-op,https://www.parliament.uk/biographies/commons/tracy-brabin/4588,,Batley and Spen,Batley and Spen,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Ben Bradshaw Mr,"592, 15468",3,,3,Parliament,"['24211594']",Labour,"https://www.benbradshaw.co.uk, https://www.parliament.uk/biographies/commons/mr-ben-bradshaw/230",,Exeter,Exeter,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Brady Graham,593,4,,3,Parliament,"['1134752502']",Conservative,https://www.parliament.uk/biographies/commons/sir-graham-brady/435,,,Altrincham and Sale West,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Brady Mickey,"15482, 594",7,,3,Parliament,"['2982986710']",Sinn Féin,"https://www.parliament.uk/biographies/commons/mickey-brady/4373, https://sinnfeinnewryarmagh.home.blog/",,Newry and Armagh,Newry and Armagh,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",53951 +Brake Tom,595,9,,3,Parliament,"['21666641']",Liberal Democrat,https://www.parliament.uk/biographies/commons/tom-brake/151,,,Carshalton and Wallington,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51421 +Braverman Suella,"15258, 596",4,,3,Parliament,"['1722829178']",Conservative,https://www.parliament.uk/biographies/commons/suella-braverman/4475,,Fareham,Fareham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Brennan Kevin,"597, 15551",3,,3,Parliament,"['21746513']",Labour,"https://www.parliament.uk/biographies/commons/kevin-brennan/1400, https://www.facebook.com/kevinbrennanmp",,Cardiff West,Cardiff West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Andrew Bridgen,"599, 15843",4,,3,Parliament,"['309587728']",Conservative,"https://www.andrewbridgen.com, https://www.parliament.uk/biographies/commons/andrew-bridgen/4133",,North West Leicestershire,North West Leicestershire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Brine Steve,"15268, 600",4,,3,Parliament,"['881460664270761984', '11564602']",Conservative,"https://www.stevebrine.com, https://www.parliament.uk/biographies/commons/steve-brine/4067",,Winchester,Winchester,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Brock Deidre,"15722, 601",6,,3,Parliament,"['425774290']",Scottish National Party,https://www.parliament.uk/biographies/commons/deidre-brock/4417,,Edinburgh North and Leith,Edinburgh North and Leith,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Brokenshire James,"15628, 602",4,,3,Parliament,"['92498317']",Conservative,"https://www.parliament.uk/biographies/commons/james-brokenshire/1530, https://www.jamesbrokenshire.com",,Old Bexley and Sidcup,Old Bexley and Sidcup,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alan Brown,"603, 15866",6,,3,Parliament,"['3011043981']",Scottish National Party,https://www.parliament.uk/biographies/commons/alan-brown/4470,,Kilmarnock and Loudoun,Kilmarnock and Loudoun,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Brown Lyn Ms,"604, 15413",3,,3,Parliament,"['1478483473']",Labour,"https://www.parliament.uk/biographies/commons/lyn-brown/1583, https://lynbrown.org.uk",,West Ham,West Ham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Bryant Chris,"607, 15785",3,,3,Parliament,"['20995648']",Labour,"https://www.parliament.uk/biographies/commons/chris-bryant/1446, https://www.chrisbryantmp.org.uk",,Rhondda,Rhondda,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Buck Karen Ms,"15414, 608",3,,3,Parliament,"['259215762']",Labour,"https://www.parliament.uk/biographies/commons/ms-karen-buck/199, nan",,Westminster North,Westminster North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Buckland Robert,"15345, 609",4,,3,Parliament,"['14284260']",Conservative,"https://www.parliament.uk/biographies/commons/robert-buckland/4106, https://www.robertbuckland.co.uk",,South Swindon,South Swindon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Burden Richard,610,3,,3,Parliament,"['253490735']",Labour,https://www.parliament.uk/biographies/commons/richard-burden/301,,,"Birmingham, Northfield",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Alex Burghart,"611, 15862",4,,3,Parliament,"['22474050']",Conservative,"https://www.alexburghart.org.uk, https://www.parliament.uk/biographies/commons/alex-burghart/4613",,Brentwood and Ongar,Brentwood and Ongar,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Burgon Richard,"612, 15354",3,,3,Parliament,"['545081356']",Labour,https://www.parliament.uk/biographies/commons/richard-burgon/4493,,Leeds East,Leeds East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Burns Conor,"613, 15760",4,,3,Parliament,"['388250401']",Conservative,"https://www.parliament.uk/biographies/commons/conor-burns/3922, https://www.conorburns.com",,Bournemouth West,Bournemouth West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alistair Burt,614,4,,3,Parliament,"['986390774']",Conservative,https://www.parliament.uk/biographies/commons/alistair-burt/1201,,,North East Bedfordshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Butler Dawn,"15726, 615",3,,3,Parliament,"['114505454']",Labour,https://www.parliament.uk/biographies/commons/dawn-butler/1489,,Brent Central,Brent Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Byrne Liam,"15536, 616",3,,3,Parliament,"['27212119']",Labour,https://www.parliament.uk/biographies/commons/liam-byrne/1171,,"Birmingham, Hodge Hill","Birmingham, Hodge Hill","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cable Vince,617,9,,3,Parliament,"['56999787']",Liberal Democrat,https://www.parliament.uk/biographies/commons/sir-vince-cable/207,,,Twickenham,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51421 +Cadbury Ruth,"15334, 618",3,,3,Parliament,"['108654496']",Labour,https://www.parliament.uk/biographies/commons/ruth-cadbury/4389,,Brentford and Isleworth,Brentford and Isleworth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Alun Cairns,"619, 15850",4,,3,Parliament,"['76650839']",Conservative,"https://www.parliament.uk/biographies/commons/alun-cairns/4086, https://www.aluncairns.com",,Vale of Glamorgan,Vale of Glamorgan,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Cameron Dr Lisa,"620, 15706",6,,3,Parliament,"['2801867041']",Scottish National Party,https://www.parliament.uk/biographies/commons/dr-lisa-cameron/4412,,"East Kilbride, Strathaven and Lesmahagow","East Kilbride, Strathaven and Lesmahagow","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Alan Campbell Sir,"15307, 621",3,,3,Parliament,"['2601366250']",Labour,"https://www.parliament.uk/biographies/commons/mr-alan-campbell/529, https://www.alancampbellmp.co.uk",,Tynemouth,Tynemouth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Carden Dan,"15743, 624",3,,3,Parliament,"['860188105982320640', '860188105982320644']",Labour,"https://www.parliament.uk/biographies/commons/dan-carden/4651, https://www.facebook.com/DanCardenMP",,"Liverpool, Walton","Liverpool, Walton","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51320 +Alistair Carmichael Mr,"15472, 625",9,,3,Parliament,"['91786287']",Liberal Democrat,"https://www.alistaircarmichael.co.uk, https://www.parliament.uk/biographies/commons/mr-alistair-carmichael/1442",,Orkney and Shetland,Orkney and Shetland,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51421 +Cartlidge James,"15627, 626",4,,3,Parliament,"['2776689260']",Conservative,"https://jamescartlidge.com, https://www.parliament.uk/biographies/commons/james-cartlidge/4519",,South Suffolk,South Suffolk,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Cash Sir William,"15281, 627",4,,3,Parliament,"['100520303']",Conservative,"https://www.parliament.uk/biographies/commons/sir-william-cash/288, none",,Stone,Stone,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Caulfield Maria,"15518, 628",4,,3,Parliament,"['207697553']",Conservative,"https://www.mariacaulfield.co.uk, https://www.parliament.uk/biographies/commons/maria-caulfield/4492",,Lewes,Lewes,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alex Chalk,"629, 15861",4,,3,Parliament,"['1407768792']",Conservative,https://www.parliament.uk/biographies/commons/alex-chalk/4481,,Cheltenham,Cheltenham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Champion Sarah,"15324, 630",3,,3,Parliament,"['948015937']",Labour,"https://www.parliament.uk/biographies/commons/sarah-champion/4267, https://www.sarahchampionmp.com",,Rotherham,Rotherham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chapman Douglas,"631, 15718",6,,3,Parliament,"['251783210']",Scottish National Party,https://www.parliament.uk/biographies/commons/douglas-chapman/4402,,Dunfermline and West Fife,Dunfermline and West Fife,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Chapman Jenny,632,3,,3,Parliament,"['20856796']",Labour,https://www.parliament.uk/biographies/commons/jenny-chapman/3972,,,Darlington,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Bambos Charalambous,"633, 15818",3,,3,Parliament,"['102023574']",Labour,"https://www.bambos.org.uk, https://www.parliament.uk/biographies/commons/bambos-charalambous/4610",,"Enfield, Southgate","Enfield, Southgate","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cherry Joanna,"634, 15597",6,,3,Parliament,"['2583270112']",Scottish National Party,"none, https://www.parliament.uk/biographies/commons/joanna-cherry/4419",,Edinburgh South West,Edinburgh South West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Chishti Rehman,"635, 15355",4,,3,Parliament,"['2863865170']",Conservative,"https://www.parliament.uk/biographies/commons/rehman-chishti/3987, https://www.rehmanchishti.com/",,Gillingham and Rainham,Gillingham and Rainham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Churchill Jo,"15600, 637",4,,3,Parliament,"['2855674449']",Conservative,https://www.parliament.uk/biographies/commons/jo-churchill/4380,,Bury St Edmunds,Bury St Edmunds,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Clark Colin,638,4,,3,Parliament,"['3129059302']",Conservative,https://www.parliament.uk/biographies/commons/colin-clark/4650,,,Gordon,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Clark Greg,"15658, 639",4,,3,Parliament,"['224655400']",Conservative,https://www.parliament.uk/biographies/commons/greg-clark/1578,,Tunbridge Wells,Tunbridge Wells,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Clarke Kenneth,640,4,,3,Parliament,"['801961117']",Conservative,https://www.parliament.uk/biographies/commons/mr-kenneth-clarke/366,,,Rushcliffe,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Clarke Mr Simon,"641, 15435",4,,3,Parliament,"['1715832776']",Conservative,"https://www.simon-clarke.org.uk, https://www.parliament.uk/biographies/commons/mr-simon-clarke/4655",,Middlesbrough South and East Cleveland,Middlesbrough South and East Cleveland,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Cleverly James,"15626, 642",4,,3,Parliament,"['14077382']",Conservative,https://www.parliament.uk/biographies/commons/james-cleverly/4366,,Braintree,Braintree,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ann Clwyd,644,3,,3,Parliament,"['460338359']",Labour,https://www.parliament.uk/biographies/commons/ann-clwyd/553,,,Cynon Valley,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Coaker Vernon,645,3,,3,Parliament,"['90432690']",Labour,https://www.parliament.uk/biographies/commons/vernon-coaker/360,,,Gedling,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Ann Coffey,646,3,,3,Parliament,"['558445037']",Labour,https://www.parliament.uk/biographies/commons/ann-coffey/458,,,Stockport,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Coffey Dr Thérèse,"647, 15699",4,,3,Parliament,"['50714939']",Conservative,"https://www.theresecoffey.co.uk, https://www.parliament.uk/biographies/commons/dr-th%c3%a9r%c3%a8se-coffey/4098",,Suffolk Coastal,Suffolk Coastal,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Collins Damian,"648, 15747",4,,3,Parliament,"['14758838']",Conservative,"https://www.damiancollins.com, https://www.parliament.uk/biographies/commons/damian-collins/3986",,Folkestone and Hythe,Folkestone and Hythe,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Cooper Julie,649,3,,3,Parliament,"['97648525']",Labour,https://www.parliament.uk/biographies/commons/julie-cooper/4405,,,Burnley,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Cooper Rosie,"15338, 650",3,,3,Parliament,"['110767433']",Labour,"https://www.parliament.uk/biographies/commons/rosie-cooper/1538, https://www.rosiecooper.net",,West Lancashire,West Lancashire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cooper Yvette,"15225, 651",3,,3,Parliament,"['328634628']",Labour,"https://www.parliament.uk/biographies/commons/yvette-cooper/420, https://www.yvettecooper.com",,"Normanton, Pontefract and Castleford","Normanton, Pontefract and Castleford","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Corbyn Jeremy,"15610, 652",3,,3,Parliament,"['117777690']",Labour,"https://join.labour.org.uk/, https://www.parliament.uk/biographies/commons/jeremy-corbyn/185",,Islington North,Islington North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Alberto Costa,"653, 15864",4,,3,Parliament,"['3005893073']",Conservative,https://www.parliament.uk/biographies/commons/alberto-costa/4439,,South Leicestershire,South Leicestershire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Courts Robert,"15344, 654",4,,3,Parliament,"['20238327']",Conservative,"https://www.parliament.uk/biographies/commons/robert-courts/4589, https://www.robertcourts.co.uk",,Witney,Witney,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Cowan Ronnie,"15339, 655",6,,3,Parliament,"['132490359']",Scottish National Party,"https://www.ronniecowan.com, https://www.parliament.uk/biographies/commons/ronnie-cowan/4465",,Inverclyde,Inverclyde,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Cox Geoffrey Mr,"656, 15461",4,,3,Parliament,"['103879974']",Conservative,"https://www.parliament.uk/biographies/commons/mr-geoffrey-cox/1508, https://facebook.com/GeoffreyCox4TWD",,Torridge and West Devon,Torridge and West Devon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Coyle Neil,"657, 15403",3,,3,Parliament,"['248186795']",Labour,"https://neilcoyle.laboursites.org/, https://www.parliament.uk/biographies/commons/neil-coyle/4368",,Bermondsey and Old Southwark,Bermondsey and Old Southwark,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Crabb Stephen,"15278, 658",4,,3,Parliament,"['810372954']",Conservative,"https://www.parliament.uk/biographies/commons/stephen-crabb/1554, none",,Preseli Pembrokeshire,Preseli Pembrokeshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Crausby David,659,3,,3,Parliament,"['1417840321']",Labour,https://www.parliament.uk/biographies/commons/sir-david-crausby/437,,,Bolton North East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Angela Crawley,"15831, 660",6,,3,Parliament,"['389421264']",Scottish National Party,"none, https://www.parliament.uk/biographies/commons/angela-crawley/4469",,Lanark and Hamilton East,Lanark and Hamilton East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Creagh Mary,661,3,,3,Parliament,"['169864622']",Labour,https://www.parliament.uk/biographies/commons/mary-creagh/1579,,,Wakefield,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Creasy Stella,"15280, 662",5,,3,Parliament,"['15580900']",Labour Co-op,"https://www.gofundme.com/f/stella-creasy, https://www.parliament.uk/biographies/commons/stella-creasy/4088",,Walthamstow,Walthamstow,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Crouch Tracey,"15242, 663",4,,3,Parliament,"['62613162']",Conservative,"https://www.parliament.uk/biographies/commons/tracey-crouch/3950, none",,Chatham and Aylesford,Chatham and Aylesford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Cruddas Jon,"15582, 664",3,,3,Parliament,"['499781930']",Labour,"https://www.parliament.uk/biographies/commons/jon-cruddas/1406, https://www.joncruddas.org.uk/",,Dagenham and Rainham,Dagenham and Rainham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cryer John,"665, 15596",3,,3,Parliament,"['2979904613']",Labour,"https://www.johncryermp.co.uk, https://www.parliament.uk/biographies/commons/john-cryer/181",,Leyton and Wanstead,Leyton and Wanstead,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cummins Judith,"15575, 666",3,,3,Parliament,"['401568431']",Labour,https://www.parliament.uk/biographies/commons/judith-cummins/4391,,Bradford South,Bradford South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Alex Cunningham,"15860, 667",3,,3,Parliament,"['143739561']",Labour,"https://www.parliament.uk/biographies/commons/alex-cunningham/4122, https://alexcunninghammp.com",,Stockton North,Stockton North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cunningham Jim,668,3,,3,Parliament,"['842014278739734528']",Labour,https://www.parliament.uk/biographies/commons/mr-jim-cunningham/308,,,Coventry South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Daby Janet,"15613, 669",3,,3,Parliament,"['1114681081']",Labour,"https://www.parliament.uk/biographies/commons/janet-daby/4698, https://www.janetdaby.org",,Lewisham East,Lewisham East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Dakin Nic,670,3,,3,Parliament,"['93860818']",Labour,https://www.parliament.uk/biographies/commons/nic-dakin/4056,,,Scunthorpe,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Davey Edward Sir,"671, 15300",9,,3,Parliament,"['1179455215']",Liberal Democrat,"https://www.parliament.uk/biographies/commons/sir-edward-davey/188, https://www.eddavey.org/",,Kingston and Surbiton,Kingston and Surbiton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51421 +David Wayne,"672, 15232",3,,3,Parliament,"['415449314']",Labour,"https://www.waynedavid.co.uk/, https://www.parliament.uk/biographies/commons/wayne-david/1398",,Caerphilly,Caerphilly,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +C. David Davies T.,"674, 15728",4,,3,Parliament,"['550076077']",Conservative,https://www.parliament.uk/biographies/commons/david-t.-c.-davies/1545,,Monmouth,Monmouth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Davies Geraint,"675, 15668",5,,3,Parliament,"['144791011']",Labour Co-op,"https://facebook.com/GeraintDaviesMP, https://www.parliament.uk/biographies/commons/geraint-davies/155",,Swansea West,Swansea West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Davies Glyn,676,4,,3,Parliament,"['373442908']",Conservative,https://www.parliament.uk/biographies/commons/glyn-davies/4041,,,Montgomeryshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Davies Mims,"677, 15476",4,,3,Parliament,"['236588290']",Conservative,"https://www.parliament.uk/biographies/commons/mims-davies/4513, https://www.MimsDavies.org.uk",,Mid Sussex,Eastleigh,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Davies Philip,"678, 15366",4,,3,Parliament,"['125312818']",Conservative,"https://www.parliament.uk/biographies/commons/philip-davies/1565, https://www.philip-davies.org.uk/",,Shipley,Shipley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Davis Mr,"679, 15465",4,,3,Parliament,"['2797521996']",Conservative,"https://www.daviddavis.uk, https://www.parliament.uk/biographies/commons/mr-david-davis/373",,Haltemprice and Howden,Haltemprice and Howden,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Day Martyn,"680, 15502",6,,3,Parliament,"['92091625']",Scottish National Party,"https://www.parliament.uk/biographies/commons/martyn-day/4488, https://www.facebook.com/MartynDaySNP",,Linlithgow and East Falkirk,Linlithgow and East Falkirk,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Cordova De Marsha,"15505, 681",3,,3,Parliament,"['189280488']",Labour,https://www.parliament.uk/biographies/commons/marsha-de-cordova/4676,,Battersea,Battersea,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +De Gloria Piero,682,3,,3,Parliament,"['162472533']",Labour,https://www.parliament.uk/biographies/commons/gloria-de-piero/3915,,,Ashfield,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Debbonaire Thangam,"15254, 683",3,,3,Parliament,"['262163061']",Labour,https://www.parliament.uk/biographies/commons/thangam-debbonaire/4433,,Bristol West,Bristol West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Coad Dent Emma,684,3,,3,Parliament,"['244489735']",Labour,https://www.parliament.uk/biographies/commons/emma-dent-coad/4683,,,Kensington,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Dhesi Mr Singh Tanmanjeet,"15432, 685",3,,3,Parliament,"['1865540413']",Labour,"https://www.tsdhesi.com, https://www.parliament.uk/biographies/commons/mr-tanmanjeet-singh-dhesi/4638",,Slough,Slough,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Caroline Dinenage,"15796, 686",4,,3,Parliament,"['383238347']",Conservative,"https://www.caroline4gosport.co.uk, https://www.parliament.uk/biographies/commons/caroline-dinenage/4008",,Gosport,Gosport,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Djanogly Jonathan Mr,"687, 15455",4,,3,Parliament,"['131120978']",Conservative,"https://www.parliament.uk/biographies/commons/mr-jonathan-djanogly/1425, https://www.jonathandjanogly.com",,Huntingdon,Huntingdon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Docherty Leo,"15538, 688",4,,3,Parliament,"['562385310']",Conservative,"https://www.parliament.uk/biographies/commons/leo-docherty/4600, https://www.leodocherty.org.uk",,Aldershot,Aldershot,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Docherty-Hughes Martin,"689, 15504",6,,3,Parliament,"['24909650']",Scottish National Party,https://www.parliament.uk/biographies/commons/martin-docherty-hughes/4374,,West Dunbartonshire,West Dunbartonshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Anneliese Dodds,"6458, 15823, 690","193, 5",30,"191, 3",Parliament,"['518660800']","Labour Party, Labour Co-op","https://www.parliament.uk/biographies/commons/anneliese-dodds/4657, https://www.anneliesedodds.org.uk/, https://www.europarl.europa.eu/meps/en/124969/ANNELIESE_DODDS_home.html",,"United Kingdom, Oxford East",Oxford East,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,"United Kingdom, European Parliament","27, 24","52, 3, 32",51320 +Dodds Nigel,691,10,,3,Parliament,"['104845115']",Democratic Unionist Party,https://www.parliament.uk/biographies/commons/nigel-dodds/1388,,,Belfast North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51903 +Donaldson Jeffrey M Sir,"15292, 692",10,,3,Parliament,"['277499481']",Democratic Unionist Party,"https://www.parliament.uk/biographies/commons/sir-jeffrey-m.-donaldson/650, https://www.jeffreydonaldson.org",,Lagan Valley,Lagan Valley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51903 +Donelan Michelle,"15485, 693",4,,3,Parliament,"['116864791']",Conservative,"https://www.parliament.uk/biographies/commons/michelle-donelan/4530, https://www.michelledonelan.co.uk",,Chippenham,Chippenham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Dorries Ms Nadine,"15411, 694",4,,3,Parliament,"['457060718']",Conservative,"https://facebook.com/nadinedorries, https://www.parliament.uk/biographies/commons/ms-nadine-dorries/1481",,Mid Bedfordshire,Mid Bedfordshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Double Steve,"695, 15267",4,,3,Parliament,"['21174263']",Conservative,"https://www.stevedouble.org.uk, https://www.parliament.uk/biographies/commons/steve-double/4452",,St Austell and Newquay,St Austell and Newquay,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Doughty Stephen,"696, 15277",5,,3,Parliament,"['622426905']",Labour Co-op,"https://www.parliament.uk/biographies/commons/stephen-doughty/4264, https://stephendoughty.wales",,Cardiff South and Penarth,Cardiff South and Penarth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Dowd Peter,"15370, 697",3,,3,Parliament,"['883173469']",Labour,https://www.parliament.uk/biographies/commons/peter-dowd/4397,,Bootle,Bootle,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Doyle-Price Jackie,"15631, 699",4,,3,Parliament,"['38671387']",Conservative,https://www.parliament.uk/biographies/commons/jackie-doyle-price/4065,,Thurrock,Thurrock,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Drax Richard,700,4,,3,Parliament,"['873250926605328384']",Conservative,https://www.parliament.uk/biographies/commons/richard-drax/4132,,,South Dorset,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +David Drew,701,5,,3,Parliament,"['47345180']",Labour Co-op,https://www.parliament.uk/biographies/commons/dr-david-drew/252,,,Stroud,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Dromey Jack,"702, 15633",3,,3,Parliament,"['387054267']",Labour,"https://www.jackdromey.org, https://www.parliament.uk/biographies/commons/jack-dromey/3913",,"Birmingham, Erdington","Birmingham, Erdington","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Duddridge James,"15624, 703",4,,3,Parliament,"['124170781']",Conservative,"https://www.jamesduddridge.com, https://www.parliament.uk/biographies/commons/james-duddridge/1559",,Rochford and Southend East,Rochford and Southend East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Duffield Rosie,"704, 15337",3,,3,Parliament,"['2528020694']",Labour,"https://www.canterburylabour.org.uk, https://www.parliament.uk/biographies/commons/rosie-duffield/4616",,Canterbury,Canterbury,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +David Duguid,"705, 15735",4,,3,Parliament,"['854280215601840128']",Conservative,"https://www.davidduguid.com, https://www.parliament.uk/biographies/commons/david-duguid/4606",,Banff and Buchan,Banff and Buchan,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alan Duncan,706,4,,3,Parliament,"['114704539']",Conservative,https://www.parliament.uk/biographies/commons/sir-alan-duncan/343,,,Rutland and Melton,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Dunne Philip,"708, 15365",4,,3,Parliament,"['1650144662']",Conservative,https://www.parliament.uk/biographies/commons/mr-philip-dunne/1542,,Ludlow,Ludlow,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Angela Eagle Ms,"709, 15416",3,,3,Parliament,"['124270074']",Labour,"https://www.bitebackpublishing.com/books/the-new-serfdom#buy-this-book, https://www.parliament.uk/biographies/commons/ms-angela-eagle/491",,Wallasey,Wallasey,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Eagle Maria,"15517, 710",3,,3,Parliament,"['192935794']",Labour,"https://www.parliament.uk/biographies/commons/maria-eagle/483, https://www.mariaeagle.org.uk",,Garston and Halewood,Garston and Halewood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Edwards Jonathan,"15579, 711",11,,3,Parliament,"['77240489']",Plaid Cymru,"https://www.parliament.uk/biographies/commons/jonathan-edwards/3943, https://www.carmarthenshiresvoice.org.uk",,Carmarthen East and Dinefwr,Carmarthen East and Dinefwr,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51901 +Clive Efford,"712, 15764",3,,3,Parliament,"['393436815']",Labour,"https://www.parliament.uk/biographies/commons/clive-efford/165, https://www.cliveefford.org.uk",,Eltham,Eltham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Elliott Julie,"713, 15570",3,,3,Parliament,"['776022362']",Labour,"https://www.parliament.uk/biographies/commons/julie-elliott/4127, https://www.julie4sunderland.co.uk",,Sunderland Central,Sunderland Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Ellis Michael,"15489, 714",4,,3,Parliament,"['19858924']",Conservative,"https://www.parliament.uk/biographies/commons/michael-ellis/4116, https://www.michaelellis.co.uk",,Northampton North,Northampton North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ellman Louise,715,5,,3,Parliament,"['77224096']",Labour Co-op,https://www.parliament.uk/biographies/commons/dame-louise-ellman/484,,,"Liverpool, Riverside",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Ellwood Mr Tobias,"716, 15431",4,,3,Parliament,"['482866177']",Conservative,"https://www.parliament.uk/biographies/commons/mr-tobias-ellwood/1487, https://www.tobiasellwood.com",,Bournemouth East,Bournemouth East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Chris Elmore,"15783, 717",3,,3,Parliament,"['169898513']",Labour,https://www.parliament.uk/biographies/commons/chris-elmore/4572,,Ogmore,Ogmore,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Charlie Elphicke,718,12,,3,Parliament,"['54515428']",Independent,https://www.parliament.uk/biographies/commons/charlie-elphicke/3971,,,Dover,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3, +Bill Esterson,"719, 15810",3,,3,Parliament,"['120720108']",Labour,"https://www.billesterson.org.uk/, https://www.parliament.uk/biographies/commons/bill-esterson/4061",,Sefton Central,Sefton Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chris Evans,"721, 15782",5,,3,Parliament,"['3128468829']",Labour Co-op,"https://www.parliament.uk/biographies/commons/chris-evans/4040, none",,Islwyn,Islwyn,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Evans Mr Nigel,"15445, 722",4,,3,Parliament,"['9260332']",Conservative,"https://nigel-evans.org.uk, https://www.parliament.uk/biographies/commons/mr-nigel-evans/474",,Ribble Valley,Ribble Valley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Evennett Sir,"15302, 723",4,,3,Parliament,"['17298241']",Conservative,"https://davidevennett.wordpress.com/contact/, https://www.parliament.uk/biographies/commons/sir-david-evennett/1198",,Bexleyheath and Crayford,Bexleyheath and Crayford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Fabricant Michael,"15488, 724",4,,3,Parliament,"['19058678']",Conservative,"https://www.parliament.uk/biographies/commons/michael-fabricant/280, https://www.michael.fabricant.mp.co.uk/contact/",,Lichfield,Lichfield,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Farron Tim,"15251, 727",9,,3,Parliament,"['80021045']",Liberal Democrat,"https://www.libdems.org.uk, https://www.parliament.uk/biographies/commons/tim-farron/1591",,Westmorland and Lonsdale,Westmorland and Lonsdale,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51421 +Fellows Marion,"15516, 728",6,,3,Parliament,"['79550633']",Scottish National Party,"https://www.parliament.uk/biographies/commons/marion-fellows/4440, https://www.marionfellows.scot",,Motherwell and Wishaw,Motherwell and Wishaw,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Field Frank,729,12,,3,Parliament,"['20688804']",Independent,https://www.parliament.uk/biographies/commons/frank-field/478,,,Birkenhead,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3, +Field Mark,730,4,,3,Parliament,"['81857654']",Conservative,https://www.parliament.uk/biographies/commons/mark-field/1405,,,Cities of London and Westminster,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Fitzpatrick Jim,731,3,,3,Parliament,"['858023803']",Labour,https://www.parliament.uk/biographies/commons/jim-fitzpatrick/197,,,Poplar and Limehouse,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Caroline Flint,733,3,,3,Parliament,"['227023883']",Labour,https://www.parliament.uk/biographies/commons/caroline-flint/389,,,Don Valley,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Flynn Paul,734,3,,3,Parliament,"['84563846']",Labour,https://www.parliament.uk/biographies/commons/paul-flynn/545,,,Newport West,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Ford Vicky,"6224, 15237, 735","179, 4",33,"3, 194",Parliament,"['14691032']","Conservative Party, Conservative","https://www.europarl.europa.eu/meps/en/96949/VICKY_FORD_home.html, https://www.parliament.uk/biographies/commons/vicky-ford/4674, https://www.vickyford.uk",,"United Kingdom, Chelmsford",Chelmsford,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,"United Kingdom, European Parliament","27, 24","52, 3, 32",51620 +Foster Kevin,"736, 15550",4,,3,Parliament,"['43865757']",Conservative,"https://www.parliament.uk/biographies/commons/kevin-foster/4451, https://www.kevinjfoster.com",,Torbay,Torbay,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Fovargue Yvonne,"15224, 737",3,,3,Parliament,"['568174146']",Labour,"https://www.Facebook.com/YvonneFovargue4Makerfield, https://www.parliament.uk/biographies/commons/yvonne-fovargue/4034",,Makerfield,Makerfield,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Dr Fox Liam,"738, 15707",4,,3,Parliament,"['532241033']",Conservative,"https://www.liamfox.co.uk/, https://www.parliament.uk/biographies/commons/dr-liam-fox/223",,North Somerset,North Somerset,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Foxcroft Vicky,"739, 15236",3,,3,Parliament,"['174396155']",Labour,"https://www.vickyfoxcroft.org.uk, https://www.parliament.uk/biographies/commons/vicky-foxcroft/4491",,"Lewisham, Deptford","Lewisham, Deptford","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Frazer Lucy,"741, 15527",4,,3,Parliament,"['3823970661']",Conservative,"https://www.parliament.uk/biographies/commons/lucy-frazer/4517, https://lucyfrazer.org.uk",,South East Cambridgeshire,South East Cambridgeshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Freeman George,"15669, 742",4,,3,Parliament,"['101712079']",Conservative,"https://www.parliament.uk/biographies/commons/george-freeman/4020, https://www.georgefreeman.co.uk",,Mid Norfolk,Mid Norfolk,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Frith James,744,3,,3,Parliament,"['19859690']",Labour,https://www.parliament.uk/biographies/commons/james-frith/4637,,,Bury North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Furniss Gill,"745, 15665",3,,3,Parliament,"['700732124299714560', '700732124299714561']",Labour,"https://www.parliament.uk/biographies/commons/gill-furniss/4571, https://www.gillfurniss.com",,"Sheffield, Brightside and Hillsborough","Sheffield, Brightside and Hillsborough","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51320 +Fysh Marcus Mr,"15450, 746",4,,3,Parliament,"['1655569938']",Conservative,https://www.parliament.uk/biographies/commons/mr-marcus-fysh/4446,,Yeovil,Yeovil,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gaffney Hugh,747,3,,3,Parliament,"['859003019719049216']",Labour,https://www.parliament.uk/biographies/commons/hugh-gaffney/4614,,,"Coatbridge, Chryston and Bellshill",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Gapes Mike,749,5,,3,Parliament,"['15672615']",Labour Co-op,https://www.parliament.uk/biographies/commons/mike-gapes/184,,,Ilford South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Barry Gardiner,"750, 15816",3,,3,Parliament,"['107722321']",Labour,"https://www.barrygardiner.com, https://www.parliament.uk/biographies/commons/barry-gardiner/146",,Brent North,Brent North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Garnier Mark,"751, 15513",4,,3,Parliament,"['20226550']",Conservative,"https://www.parliament.uk/biographies/commons/mark-garnier/4074, https://www.markgarnier.co.uk",,Wyre Forest,Wyre Forest,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Gauke,752,4,,3,Parliament,"['2230539338']",Conservative,https://www.parliament.uk/biographies/commons/mr-david-gauke/1529,,,South West Hertfordshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +George Ruth,753,3,,3,Parliament,"['528919691']",Labour,https://www.parliament.uk/biographies/commons/ruth-george/4662,,,High Peak,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Gethins Stephen,754,6,,3,Parliament,"['997293914']",Scottish National Party,https://www.parliament.uk/biographies/commons/stephen-gethins/4434,,,North East Fife,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51902 +Ghani Ms Nusrat,"755, 15410",4,,3,Parliament,"['1513382018']",Conservative,https://www.parliament.uk/biographies/commons/ms-nusrat-ghani/4460,,Wealden,Wealden,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gibb Nick,"756, 15397",4,,3,Parliament,"['3036280263']",Conservative,https://www.parliament.uk/biographies/commons/nick-gibb/111,,Bognor Regis and Littlehampton,Bognor Regis and Littlehampton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gibson Patricia,"757, 15384",6,,3,Parliament,"['3030111953']",Scottish National Party,"none, https://www.parliament.uk/biographies/commons/patricia-gibson/4435",,North Ayrshire and Arran,North Ayrshire and Arran,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Gildernew Michelle,"15484, 758",7,,3,Parliament,"['127619354']",Sinn Féin,"none, https://www.parliament.uk/biographies/commons/michelle-gildernew/1416",,Fermanagh and South Tyrone,Fermanagh and South Tyrone,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",53951 +Gill Kaur Preet,"759, 15364",5,,3,Parliament,"['620007630']",Labour Co-op,"https://preetkaurgill.com, https://www.parliament.uk/biographies/commons/preet-kaur-gill/4603",,"Birmingham, Edgbaston","Birmingham, Edgbaston","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Cheryl Dame Gillan,"760, 15752",4,,3,Parliament,"['295807687']",Conservative,"https://www.parliament.uk/biographies/commons/dame-cheryl-gillan/18, https://www.cherylgillan.co.uk",,Chesham and Amersham,Chesham and Amersham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Girvan Paul,"15380, 761",10,,3,Parliament,"['1374937922']",Democratic Unionist Party,"https://www.parliament.uk/biographies/commons/paul-girvan/4633, https://www.mydup.com",,South Antrim,South Antrim,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51903 +Glen John,"762, 15594",4,,3,Parliament,"['36664451']",Conservative,"https://www.parliament.uk/biographies/commons/john-glen/4051, https://www.johnglen.org.uk",,Salisbury,Salisbury,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Glindon Mary,763,3,,3,Parliament,"['855421480481456128']",Labour,https://www.parliament.uk/biographies/commons/mary-glindon/4126,,,North Tyneside,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Godsiff Roger,764,3,,3,Parliament,"['236953412']",Labour,https://www.parliament.uk/biographies/commons/mr-roger-godsiff/304,,,"Birmingham, Hall Green",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Goldsmith Zac,765,4,,3,Parliament,"['22159580']",Conservative,https://www.parliament.uk/biographies/commons/zac-goldsmith/4062,,,Richmond Park,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Goodman Helen,766,3,,3,Parliament,"['277496722']",Labour,https://www.parliament.uk/biographies/commons/helen-goodman/1484,,,Bishop Auckland,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Gove Michael,"768, 15487",4,,3,Parliament,"['748453510048518144', '748453510048518145']",Conservative,"https://www.parliament.uk/biographies/commons/michael-gove/1571, https://www.michaelgove.com",,Surrey Heath,Surrey Heath,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Grady Patrick,"15383, 769",6,,3,Parliament,"['3000261466']",Scottish National Party,https://www.parliament.uk/biographies/commons/patrick-grady/4432,,Glasgow North,Glasgow North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Graham Luke,770,4,,3,Parliament,"['3072168695']",Conservative,https://www.parliament.uk/biographies/commons/luke-graham/4622,,,Ochil and South Perthshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Graham Richard,"15351, 771",4,,3,Parliament,"['1530621674']",Conservative,"https://richardgraham.org, https://www.parliament.uk/biographies/commons/richard-graham/3990",,Gloucester,Gloucester,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Grant Helen Mrs,"15423, 773",4,,3,Parliament,"['24727170']",Conservative,"https://www.helengrant.org, https://www.parliament.uk/biographies/commons/mrs-helen-grant/4018",,Maidstone and The Weald,Maidstone and The Weald,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Grant Peter,"15368, 774",6,,3,Parliament,"['3028314515']",Scottish National Party,https://www.parliament.uk/biographies/commons/peter-grant/4466,,Glenrothes,Glenrothes,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Gray James,"15623, 775",4,,3,Parliament,"['86192099']",Conservative,"https://www.jamesgray.org, https://www.parliament.uk/biographies/commons/james-gray/261",,North Wiltshire,North Wiltshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gray Neil,"15402, 776",6,,3,Parliament,"['287212988']",Scottish National Party,"https://www.parliament.uk/biographies/commons/neil-gray/4365, none",,Airdrie and Shotts,Airdrie and Shotts,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Chris Green,"778, 15780",4,,3,Parliament,"['1305528373']",Conservative,"https://www.chris-green.org.uk/, https://www.parliament.uk/biographies/commons/chris-green/4398",,Bolton West,Bolton West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Damian Green,"15746, 779",4,,3,Parliament,"['422184091']",Conservative,"https://www.parliament.uk/biographies/commons/damian-green/76, none",,Ashford,Ashford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Green Kate,"15562, 780",3,,3,Parliament,"['105838665']",Labour,"https://www.parliament.uk/biographies/commons/kate-green/4120, https://www.kategreen.org",,Stretford and Urmston,Stretford and Urmston,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Greening Justine,781,4,,3,Parliament,"['932446861']",Conservative,https://www.parliament.uk/biographies/commons/justine-greening/1555,,,Putney,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Greenwood Lilian,"15535, 782",3,,3,Parliament,"['20148039']",Labour,"https://www.liliangreenwood.co.uk, https://www.parliament.uk/biographies/commons/lilian-greenwood/4029",,Nottingham South,Nottingham South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Greenwood Margaret,"15519, 783",3,,3,Parliament,"['1464467370']",Labour,https://www.parliament.uk/biographies/commons/margaret-greenwood/4400,,Wirral West,Wirral West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Griffith Nia,"785, 15399",3,,3,Parliament,"['481120639']",Labour,"https://www.niagriffith.org.uk/, https://www.parliament.uk/biographies/commons/nia-griffith/1541",,Llanelli,Llanelli,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Andrew Gwynne,"788, 15841",3,,3,Parliament,"['54351001']",Labour,"https://www.parliament.uk/biographies/commons/andrew-gwynne/1506, https://www.andrewgwynne.co.uk",,Denton and Reddish,Denton and Reddish,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Gyimah Sam,789,4,,3,Parliament,"['55253731']",Conservative,https://www.parliament.uk/biographies/commons/mr-sam-gyimah/3980,,,East Surrey,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Haigh Louise,"790, 15529",3,,3,Parliament,"['143508762']",Labour,https://www.parliament.uk/biographies/commons/louise-haigh/4473,,"Sheffield, Heeley","Sheffield, Heeley","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hair Kirstene,791,4,,3,Parliament,"['701064119370326016']",Conservative,https://www.parliament.uk/biographies/commons/kirstene-hair/4675,,,Angus,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Halfon Robert,"792, 15343",4,,3,Parliament,"['19758148']",Conservative,"https://www.facebook.com/RobertHalfon, https://www.parliament.uk/biographies/commons/robert-halfon/3985",,Harlow,Harlow,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hall Luke,"793, 15525",4,,3,Parliament,"['4490851456', '865246951763136516']",Conservative,"https://www.parliament.uk/biographies/commons/luke-hall/4450, none",,Thornbury and Yate,Thornbury and Yate,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Fabian Hamilton,"794, 15686",3,,3,Parliament,"['859433240452583424']",Labour,"https://www.parliament.uk/biographies/commons/fabian-hamilton/415, https://www.leedsne.co.uk",,Leeds North East,Leeds North East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hammond Philip,795,4,,3,Parliament,"['2653613168']",Conservative,https://www.parliament.uk/biographies/commons/mr-philip-hammond/105,,,Runnymede and Weybridge,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Hammond Stephen,"796, 15274",4,,3,Parliament,"['47916280']",Conservative,https://www.parliament.uk/biographies/commons/stephen-hammond/1585,,Wimbledon,Wimbledon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hancock Matt,"15498, 797",4,,3,Parliament,"['19825835']",Conservative,https://www.parliament.uk/biographies/commons/matt-hancock/4070,,West Suffolk,West Suffolk,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Greg Hands,"798, 15657",4,,3,Parliament,"['125270251']",Conservative,"https://www.parliament.uk/biographies/commons/greg-hands/1526, https://www.greghands.com",,Chelsea and Fulham,Chelsea and Fulham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Hanson,799,3,,3,Parliament,"['130154450']",Labour,https://www.parliament.uk/biographies/commons/david-hanson/533,,,Delyn,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Emma Hardy,"800, 15688",3,,3,Parliament,"['499590887']",Labour,"https://www.emmahardy.org.uk, https://www.parliament.uk/biographies/commons/emma-hardy/4645",,Kingston upon Hull West and Hessle,Kingston upon Hull West and Hessle,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Harman Harriet Ms,"801, 15415",3,,3,Parliament,"['19977759']",Labour,"https://www.parliament.uk/biographies/commons/ms-harriet-harman/150, https://www.harrietharman.org/",,Camberwell and Peckham,Camberwell and Peckham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Harper Mark Mr,"15447, 802",4,,3,Parliament,"['429751008']",Conservative,"https://www.markharper.org, https://www.parliament.uk/biographies/commons/mr-mark-harper/1520",,Forest of Dean,Forest of Dean,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Harrington Richard,803,4,,3,Parliament,"['60738400']",Conservative,https://www.parliament.uk/biographies/commons/richard-harrington/4068,,,Watford,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Carolyn Harris,"15793, 804",3,,3,Parliament,"['2406093795']",Labour,"https://www.parliament.uk/biographies/commons/carolyn-harris/4480, none",,Swansea East,Swansea East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Harris Rebecca,"805, 15358",4,,3,Parliament,"['515520108']",Conservative,"https://www.parliament.uk/biographies/commons/rebecca-harris/3948, https://www.rebeccaharris.org",,Castle Point,Castle Point,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hart Simon,"15312, 807",4,,3,Parliament,"['1442028488']",Conservative,"https://simon-hart.com, https://www.parliament.uk/biographies/commons/simon-hart/3944",,Carmarthen West and South Pembrokeshire,Carmarthen West and South Pembrokeshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hayes Helen,"808, 15652",3,,3,Parliament,"['261886643']",Labour,"https://www.parliament.uk/biographies/commons/helen-hayes/4510, https://www.helenhayes.org.uk",,Dulwich and West Norwood,Dulwich and West Norwood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hayman Sue,810,3,,3,Parliament,"['580947925']",Labour,https://www.parliament.uk/biographies/commons/sue-hayman/4395,,,Workington,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Chris Hazzard,"15779, 811",7,,3,Parliament,"['349075382']",Sinn Féin,"https://www.sinnfein.ie, https://www.parliament.uk/biographies/commons/chris-hazzard/4636",,South Down,South Down,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",53951 +Heald Oliver Sir,"15287, 812",4,,3,Parliament,"['206263631']",Conservative,"https://www.oliverheald.com/, https://www.parliament.uk/biographies/commons/sir-oliver-heald/69",,North East Hertfordshire,North East Hertfordshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Healey John,"15593, 813",3,,3,Parliament,"['376161322']",Labour,"https://www.parliament.uk/biographies/commons/john-healey/400, https://www.johnhealeymp.co.uk/",,Wentworth and Dearne,Wentworth and Dearne,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Heappey James,"814, 15621",4,,3,Parliament,"['446633079']",Conservative,https://www.parliament.uk/biographies/commons/james-heappey/4528,,Wells,Wells,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Chris Heaton-Harris,"815, 15778",4,,3,Parliament,"['80943076']",Conservative,"https://www.heatonharris.com/, https://www.parliament.uk/biographies/commons/chris-heaton-harris/3977",,Daventry,Daventry,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Heaton-Jones Peter,816,4,,3,Parliament,"['1227716558']",Conservative,https://www.parliament.uk/biographies/commons/peter-heaton-jones/4524,,,North Devon,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Hendrick Mark Sir,"818, 15289",5,,3,Parliament,"['1302003805']",Labour Co-op,"https://www.prestonmp.co.uk, https://www.parliament.uk/biographies/commons/sir-mark-hendrick/473",,Preston,Preston,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Drew Hendry,"15698, 819",6,,3,Parliament,"['252077991']",Scottish National Party,https://www.parliament.uk/biographies/commons/drew-hendry/4467,,"Inverness, Nairn, Badenoch and Strathspey","Inverness, Nairn, Badenoch and Strathspey","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Hepburn Stephen,820,3,,3,Parliament,"['2808847414']",Labour,https://www.parliament.uk/biographies/commons/mr-stephen-hepburn/520,,,Jarrow,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Herbert Nick,821,4,,3,Parliament,"['111013369']",Conservative,https://www.parliament.uk/biographies/commons/nick-herbert/1479,,,Arundel and South Downs,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Hill Mike,"823, 15479",3,,3,Parliament,"['495068194']",Labour,"https://www.parliament.uk/biographies/commons/mike-hill/4644, none",,Hartlepool,Hartlepool,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hillier Meg,"15492, 824",5,,3,Parliament,"['297967419']",Labour Co-op,"https://www.parliament.uk/biographies/commons/meg-hillier/1524, https://www.meghillier.com",,Hackney South and Shoreditch,Hackney South and Shoreditch,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Damian Hinds,"15745, 825",4,,3,Parliament,"['14561015']",Conservative,"https://www.damianhinds.com, https://www.parliament.uk/biographies/commons/mr-damian-hinds/3969",,East Hampshire,East Hampshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hoare Simon,"826, 15311",4,,3,Parliament,"['3012159189']",Conservative,https://www.parliament.uk/biographies/commons/simon-hoare/4494,,North Dorset,North Dorset,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hobhouse Wera,"827, 15229",9,,3,Parliament,"['19915728']",Liberal Democrat,"https://www.werahobhouse.co.uk/, https://www.parliament.uk/biographies/commons/wera-hobhouse/4602",,Bath,Bath,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51421 +Dame Hodge Margaret,"15749, 828",3,,3,Parliament,"['111411358']",Labour,"https://www.margarethodgemp.com, https://www.parliament.uk/biographies/commons/dame-margaret-hodge/140",,Barking,Barking,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hodgson Mrs Sharon,"15419, 829",3,,3,Parliament,"['200700960']",Labour,"https://www.parliament.uk/biographies/commons/mrs-sharon-hodgson/1521, https://www.sharonhodgson.org",,Washington and Sunderland West,Washington and Sunderland West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hoey Kate,830,3,,3,Parliament,"['1284146730']",Labour,https://www.parliament.uk/biographies/commons/kate-hoey/210,,,Vauxhall,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Hollern Kate,"15560, 831",3,,3,Parliament,"['191074455']",Labour,https://www.parliament.uk/biographies/commons/kate-hollern/4363,,Blackburn,Blackburn,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +George Hollingbery,832,4,,3,Parliament,"['1012086664095764480']",Conservative,https://www.parliament.uk/biographies/commons/george-hollingbery/4016,,,Meon Valley,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Hollinrake Kevin,"15549, 833",4,,3,Parliament,"['49619469']",Conservative,"https://www.kevinhollinrake.org.uk, https://www.parliament.uk/biographies/commons/kevin-hollinrake/4474",,Thirsk and Malton,Thirsk and Malton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hosie Stewart,"15263, 837",6,,3,Parliament,"['219298196', '3130764755']",Scottish National Party,"https://www.parliament.uk/biographies/commons/stewart-hosie/1514, none",,Dundee East,Dundee East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51902 +Howell John,"839, 15592",4,,3,Parliament,"['993161678']",Conservative,"https://www.parliament.uk/biographies/commons/john-howell/1606, https://www.johnhowell.org.uk",,Henley,Henley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hoyle Lindsay Sir,"840, 15290","8, 3",,3,Parliament,"['609096352']","Speaker, Labour","https://www.parliament.uk/biographies/commons/sir-lindsay-hoyle/467, none",,Chorley,Chorley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3","51320, 0" +Huddleston Nigel,"841, 15391",4,,3,Parliament,"['568249574']",Conservative,https://www.parliament.uk/biographies/commons/nigel-huddleston/4407,,Mid Worcestershire,Mid Worcestershire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Eddie Hughes,"842, 15696",4,,3,Parliament,"['857669618772713473', '857669618772713472']",Conservative,"https://www.parliament.uk/biographies/commons/eddie-hughes/4635, https://www.eddiehughes.co.uk",,Walsall North,Walsall North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Hunt Jeremy,"843, 15609",4,,3,Parliament,"['112398730']",Conservative,"https://www.jeremyhunt.org, https://www.parliament.uk/biographies/commons/mr-jeremy-hunt/1572",,South West Surrey,South West Surrey,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Dr Huq Rupa,"844, 15700",3,,3,Parliament,"['706747004']",Labour,https://www.parliament.uk/biographies/commons/dr-rupa-huq/4511,,Ealing Central and Acton,Ealing Central and Acton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Hurd Nick,845,4,,3,Parliament,"['144929619']",Conservative,https://www.parliament.uk/biographies/commons/mr-nick-hurd/1561,,,"Ruislip, Northwood and Pinner",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Hussain Imran,"846, 15635",3,,3,Parliament,"['2979642791']",Labour,"https://imranhussain.laboursites.org, https://www.parliament.uk/biographies/commons/imran-hussain/4394",,Bradford East,Bradford East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +James Margot,848,4,,3,Parliament,"['70796349']",Conservative,https://www.parliament.uk/biographies/commons/margot-james/4115,,,Stourbridge,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Christine Jardine,"849, 15769",9,,3,Parliament,"['87647640']",Liberal Democrat,https://www.parliament.uk/biographies/commons/christine-jardine/4634,,Edinburgh West,Edinburgh West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51421 +Dan Jarvis,"15742, 850",3,,3,Parliament,"['240202308']",Labour,"https://www.parliament.uk/biographies/commons/dan-jarvis/4243, https://www.danjarvis.org",,Barnsley Central,Barnsley Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Javid Sajid,"15331, 851",4,,3,Parliament,"['20052899']",Conservative,"https://www.sajidjavid.com/, https://www.parliament.uk/biographies/commons/sajid-javid/3945",,Bromsgrove,Bromsgrove,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jayawardena Ranil,852,4,,3,Parliament,"['899969417718661120']",Conservative,https://www.parliament.uk/biographies/commons/mr-ranil-jayawardena/4498,,,North East Hampshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Bernard Jenkin Sir,"853, 15306",4,,3,Parliament,"['222762589']",Conservative,"https://www.bernardjenkin.com, https://www.parliament.uk/biographies/commons/sir-bernard-jenkin/40",,Harwich and North Essex,Harwich and North Essex,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Andrea Jenkyns Mrs,"854, 15427",4,,3,Parliament,"['1350441445']",Conservative,"https://www.parliament.uk/biographies/commons/andrea-jenkyns/4490, https://www.andreajenkyns.co.uk",,Morley and Outwood,Morley and Outwood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jenrick Robert,"855, 15342",4,,3,Parliament,"['2323710210']",Conservative,"https://www.parliament.uk/biographies/commons/robert-jenrick/4320, https://www.robertjenrick.com/",,Newark,Newark,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Boris Johnson,"15804, 856",4,,3,Parliament,"['3131144855']",Conservative,https://www.parliament.uk/biographies/commons/boris-johnson/1423,,Uxbridge and South Ruislip,Uxbridge and South Ruislip,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Caroline Johnson,857,4,,3,Parliament,"['797021745563766784']",Conservative,https://www.parliament.uk/biographies/commons/dr-caroline-johnson/4592,,,Sleaford and North Hykeham,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Dame Diana Johnson,"15751, 858",3,,3,Parliament,"['68659708']",Labour,"https://www.parliament.uk/biographies/commons/diana-johnson/1533, https://www.dianajohnson.co.uk",,Kingston upon Hull North,Kingston upon Hull North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Gareth Johnson,859,4,,3,Parliament,"['3202369007']",Conservative,https://www.parliament.uk/biographies/commons/gareth-johnson/3970,,,Dartford,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Johnson Joseph,860,4,,3,Parliament,"['237700394']",Conservative,https://www.parliament.uk/biographies/commons/joseph-johnson/4039,,,Orpington,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Andrew Jones,"861, 15840",4,,3,Parliament,"['806388620']",Conservative,"https://www.parliament.uk/biographies/commons/andrew-jones/3996, https://www.andrewjonesmp.co.uk",,Harrogate and Knaresborough,Harrogate and Knaresborough,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Darren Jones,"15737, 862",3,,3,Parliament,"['20392734']",Labour,"https://www.parliament.uk/biographies/commons/darren-jones/4621, https://facebook.com/darrenjonesmp",,Bristol North West,Bristol North West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +David Jones Mr,"863, 15464",4,,3,Parliament,"['16970757']",Conservative,"https://www.davidjonesmp.com, https://www.parliament.uk/biographies/commons/mr-david-jones/1502",,Clwyd West,Clwyd West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gerald Jones,"864, 15667",3,,3,Parliament,"['496060628']",Labour,https://www.parliament.uk/biographies/commons/gerald-jones/4501,,Merthyr Tydfil and Rhymney,Merthyr Tydfil and Rhymney,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Graham Jones P,865,3,,3,Parliament,"['260824465']",Labour,https://www.parliament.uk/biographies/commons/graham-p-jones/3999,,,Hyndburn,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Helen Jones,866,3,,3,Parliament,"['989710268']",Labour,https://www.parliament.uk/biographies/commons/helen-jones/432,,,Warrington North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Jones Kevan Mr,"867, 15453",3,,3,Parliament,"['815306454']",Labour,"https://www.parliament.uk/biographies/commons/mr-kevan-jones/1438, https://www.kevanjonesmp.org.uk",,North Durham,North Durham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Jones Marcus Mr,"15449, 868",4,,3,Parliament,"['1469686752']",Conservative,"https://www.marcusjones.org.uk, https://www.parliament.uk/biographies/commons/mr-marcus-jones/4024",,Nuneaton,Nuneaton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jones Sarah,"869, 15323",3,,3,Parliament,"['1337725045']",Labour,"https://www.facebook.com/croydonsarah/, https://www.parliament.uk/biographies/commons/sarah-jones/4631",,Croydon Central,Croydon Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Elan Jones Susan,870,3,,3,Parliament,"['3318714389']",Labour,https://www.parliament.uk/biographies/commons/susan-elan-jones/3956,,,Clwyd South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Kane Mike,"871, 15478",3,,3,Parliament,"['71777646']",Labour,"https://www.mikekane.org, https://www.parliament.uk/biographies/commons/mike-kane/4316",,Wythenshawe and Sale East,Wythenshawe and Sale East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Daniel Kawczynski,"872, 15741",4,,3,Parliament,"['2286550590']",Conservative,"https://www.parliament.uk/biographies/commons/daniel-kawczynski/1566, none",,Shrewsbury and Atcham,Shrewsbury and Atcham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gillian Keegan,"15664, 873",4,,3,Parliament,"['2986235404']",Conservative,"https://www.parliament.uk/biographies/commons/gillian-keegan/4680, https://www.gilliankeegan.com",,Chichester,Chichester,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Barbara Keeley,"874, 15817",3,,3,Parliament,"['331178901']",Labour,"https://www.parliament.uk/biographies/commons/barbara-keeley/1588, https://barbarakeeley.co.uk",,Worsley and Eccles South,Worsley and Eccles South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Kendall Liz,"15533, 875",3,,3,Parliament,"['105800463']",Labour,"https://www.parliament.uk/biographies/commons/liz-kendall/4026, https://www.lizkendall.org",,Leicester West,Leicester West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Kennedy Seema,876,4,,3,Parliament,"['89698876']",Conservative,https://www.parliament.uk/biographies/commons/seema-kennedy/4455,,,South Ribble,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Kerr Stephen,877,4,,3,Parliament,"['49236342']",Conservative,https://www.parliament.uk/biographies/commons/stephen-kerr/4604,,,Stirling,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Afzal Khan,"15867, 878, 6433","3, 193",30,"191, 3",Parliament,"['202610289']","Labour Party, Labour","https://www.europarl.europa.eu/meps/en/124962/AFZAL_KHAN_home.html, https://www.parliament.uk/biographies/commons/afzal-khan/4671, https://www.afzalkhan.org.uk",,"Manchester, Gorton, United Kingdom","Manchester, Gorton","https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,"United Kingdom, European Parliament","27, 24","52, 3, 32",51320 +Ged Killen,879,5,,3,Parliament,"['20441118']",Labour Co-op,https://www.parliament.uk/biographies/commons/ged-killen/4672,,,Rutherglen and Hamilton West,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Kinnock Stephen,"15273, 880",3,,3,Parliament,"['722347303']",Labour,https://www.parliament.uk/biographies/commons/stephen-kinnock/4359,,Aberavon,Aberavon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Greg Knight Sir,"881, 15294",4,,3,Parliament,"['15453062']",Conservative,"https://www.gregknight.com, https://www.parliament.uk/biographies/commons/sir-greg-knight/1200",,East Yorkshire,East Yorkshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Julian Knight,"15573, 882",4,,3,Parliament,"['1271714653']",Conservative,"https://www.parliament.uk/biographies/commons/julian-knight/4410, https://www.julianknight.org.uk",,Solihull,Solihull,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Kwarteng Kwasi,"883, 15544",4,,3,Parliament,"['707967655031005184', '707967655031005186']",Conservative,"https://www.parliament.uk/biographies/commons/kwasi-kwarteng/4134, none",,Spelthorne,Spelthorne,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Kyle Peter,"15367, 884",3,,3,Parliament,"['21769986']",Labour,"https://www.facebook.com/hoveandportslade, https://www.parliament.uk/biographies/commons/peter-kyle/4505",,Hove,Hove,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Dame Eleanor Laing,"15750, 885",4,,3,Parliament,"['3031080322']",Conservative,"https://www.eleanorlaing.com, https://www.parliament.uk/biographies/commons/dame-eleanor-laing/36",,Epping Forest,Epping Forest,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Laird Lesley,886,3,,3,Parliament,"['1949509532']",Labour,https://www.parliament.uk/biographies/commons/lesley-laird/4660,,,Kirkcaldy and Cowdenbeath,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Ben Lake,"887, 15812",11,,3,Parliament,"['456537189']",Plaid Cymru,"https://www.plaidceredigion.cymru, https://www.parliament.uk/biographies/commons/ben-lake/4630",,Ceredigion,Ceredigion,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51901 +Lamb Norman,888,9,,3,Parliament,"['19973305']",Liberal Democrat,https://www.parliament.uk/biographies/commons/norman-lamb/1439,,,North Norfolk,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51421 +David Lammy Mr,"15463, 889",3,,3,Parliament,"['18020612']",Labour,"https://tidd.ly/315f030e, https://www.parliament.uk/biographies/commons/mr-david-lammy/206",,Tottenham,Tottenham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +John Lamont,"15591, 890",4,,3,Parliament,"['130133607']",Conservative,"https://www.johnlamont.org, https://www.parliament.uk/biographies/commons/john-lamont/4608",,"Berwickshire, Roxburgh and Selkirk","Berwickshire, Roxburgh and Selkirk","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Lancaster Mark,891,4,,3,Parliament,"['175005016']",Conservative,https://www.parliament.uk/biographies/commons/mark-lancaster/1544,,,Milton Keynes North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Latham Mrs Pauline,"892, 15420",4,,3,Parliament,"['19087569']",Conservative,"https://www.parliament.uk/biographies/commons/mrs-pauline-latham/4025, https://www.paulinelatham.co.uk/",,Mid Derbyshire,Mid Derbyshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ian Lavery,"893, 15641",3,,3,Parliament,"['300872531']",Labour,"https://www.ianlavery.co.uk, https://www.parliament.uk/biographies/commons/ian-lavery/4139",,Wansbeck,Wansbeck,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chris Law,"15777, 894",6,,3,Parliament,"['2205165174']",Scottish National Party,https://www.parliament.uk/biographies/commons/chris-law/4403,,Dundee West,Dundee West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Andrea Leadsom,"15845, 895",4,,3,Parliament,"['38281180']",Conservative,"https://www.parliament.uk/biographies/commons/andrea-leadsom/4117, https://www.andrealeadsom.com",,South Northamptonshire,South Northamptonshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Karen Lee,896,3,,3,Parliament,"['873940895271452672']",Labour,https://www.parliament.uk/biographies/commons/karen-lee/4664,,,Lincoln,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Lee Phillip,897,4,,3,Parliament,"['328576792']",Conservative,https://www.parliament.uk/biographies/commons/dr-phillip-lee/3921,,,Bracknell,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Jeremy Lefroy,898,4,,3,Parliament,"['417975170']",Conservative,https://www.parliament.uk/biographies/commons/jeremy-lefroy/4109,,,Stafford,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Edward Leigh Sir,"899, 15299",4,,3,Parliament,"['474180693']",Conservative,"https://www.parliament.uk/biographies/commons/sir-edward-leigh/345, https://www.edwardleigh.org.uk",,Gainsborough,Gainsborough,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Chris Leslie,900,5,,3,Parliament,"['354911386']",Labour Co-op,https://www.parliament.uk/biographies/commons/mr-chris-leslie/422,,,Nottingham East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Letwin Oliver,901,4,,3,Parliament,"['173421592']",Conservative,https://www.parliament.uk/biographies/commons/sir-oliver-letwin/247,,,West Dorset,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Emma Lewell-Buck Mrs,"15426, 902",3,,3,Parliament,"['737066858']",Labour,"https://www.parliament.uk/biographies/commons/mrs-emma-lewell-buck/4277, https://www.emma-lewell-buck.net/",,South Shields,South Shields,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Andrew Lewer,"903, 6445, 15839","179, 4",33,"3, 194",Parliament,"['3320682953']","Conservative Party, Conservative","https://www.europarl.europa.eu/meps/en/124943/ANDREW_LEWER_home.html, https://www.parliament.uk/biographies/commons/andrew-lewer/4659, https://www.andrewlewer.com",,"United Kingdom, Northampton South",Northampton South,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,"United Kingdom, European Parliament","27, 24","52, 3, 32",51620 +Brandon Lewis,"904, 15803",4,,3,Parliament,"['16884084']",Conservative,"https://www.parliament.uk/biographies/commons/brandon-lewis/4009, https://facebook.com/BrandonKennethLewis/",,Great Yarmouth,Great Yarmouth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Clive Lewis,"905, 15763",3,,3,Parliament,"['36924726']",Labour,"https://www.clivelewis.org, https://www.parliament.uk/biographies/commons/clive-lewis/4500",,Norwich South,Norwich South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Ivan Lewis,906,12,,3,Parliament,"['249709671']",Independent,https://www.parliament.uk/biographies/commons/mr-ivan-lewis/441,,,Bury South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3, +Julian Lewis,907,4,,3,Parliament,"['19349134']",Conservative,https://www.parliament.uk/biographies/commons/dr-julian-lewis/54,,,New Forest East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +David Lidington,909,4,,3,Parliament,"['496278040']",Conservative,https://www.parliament.uk/biographies/commons/mr-david-lidington/15,,,Aylesbury,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +David Linden,"910, 15733",6,,3,Parliament,"['22505462']",Scottish National Party,"https://www.parliament.uk/biographies/commons/david-linden/4640, https://davidlinden.scot",,Glasgow East,Glasgow East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Emma Little Pengelly,911,10,,3,Parliament,"['3711094521']",Democratic Unionist Party,https://www.parliament.uk/biographies/commons/emma-little-pengelly/4611,,,Belfast South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51903 +Lloyd Stephen,912,9,,3,Parliament,"['2799590457']",Liberal Democrat,https://www.parliament.uk/biographies/commons/stephen-lloyd/3968,,,Eastbourne,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51421 +Lloyd Tony,"15243, 913",3,,3,Parliament,"['23452834']",Labour,"https://tonylloyd.org.uk/, https://www.parliament.uk/biographies/commons/tony-lloyd/450",,Rochdale,Rochdale,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Bailey Long Rebecca,"914, 15357",3,,3,Parliament,"['385306338']",Labour,https://www.parliament.uk/biographies/commons/rebecca-long-bailey/4396,,Salford and Eccles,Salford and Eccles,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Julia Lopez,"915, 15574",4,,3,Parliament,"['859339993810161664']",Conservative,"https://www.parliament.uk/biographies/commons/julia-lopez/4647, https://www.julialopez.co.uk",,Hornchurch and Upminster,Hornchurch and Upminster,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jack Lopresti,"15632, 916",4,,3,Parliament,"['1067829343']",Conservative,"https://www.jacklopresti.com/contact, https://www.parliament.uk/biographies/commons/jack-lopresti/3989",,Filton and Bradley Stoke,Filton and Bradley Stoke,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jonathan Lord Mr,"15454, 917",4,,3,Parliament,"['2787943494']",Conservative,"https://www.parliament.uk/biographies/commons/mr-jonathan-lord/4090, none",,Woking,Woking,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Loughton Tim,"918, 15250",4,,3,Parliament,"['108587399']",Conservative,"https://www.parliament.uk/biographies/commons/tim-loughton/114, https://www.timloughton.com/",,East Worthing and Shoreham,East Worthing and Shoreham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Caroline Lucas,"919, 15795",13,,3,Parliament,"['80802900']",Green Party,"https://www.parliament.uk/biographies/commons/caroline-lucas/3930, https://www.carolinelucas.com",,"Brighton, Pavilion","Brighton, Pavilion","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51110 +C. Ian Lucas,920,3,,3,Parliament,"['121762421']",Labour,https://www.parliament.uk/biographies/commons/ian-c.-lucas/1470,,,Wrexham,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Holly Lynch,"921, 15648",3,,3,Parliament,"['382181117']",Labour,https://www.parliament.uk/biographies/commons/holly-lynch/4472,,Halifax,Halifax,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Mccabe Steve,"15266, 922",3,,3,Parliament,"['21408041']",Labour,"https://www.stevemccabe.org, https://www.parliament.uk/biographies/commons/steve-mccabe/298",,"Birmingham, Selly Oak","Birmingham, Selly Oak","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Elisha Mccallion,923,7,,3,Parliament,"['124154899']",Sinn Féin,https://www.parliament.uk/biographies/commons/elisha-mccallion/4624,,,Foyle,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,53951 +Kerry Mccarthy,"924, 15552",3,,3,Parliament,"['18099795']",Labour,"https://www.facebook.com/Kerry4MP, https://www.parliament.uk/biographies/commons/kerry-mccarthy/1491",,Bristol East,Bristol East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Mcdonagh Siobhain,"15309, 925",3,,3,Parliament,"['1191818765962555392', '580749365']",Labour,https://www.parliament.uk/biographies/commons/siobhain-mcdonagh/193,,Mitcham and Morden,Mitcham and Morden,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51320 +Andy Mcdonald,"926, 15833",3,,3,Parliament,"['927480949']",Labour,"https://www.andymcdonaldmp.org, https://www.parliament.uk/biographies/commons/andy-mcdonald/4269",,Middlesbrough,Middlesbrough,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Malcolm Mcdonald Stewart,"15262, 927",6,,3,Parliament,"['19608199']",Scottish National Party,https://www.parliament.uk/biographies/commons/stewart-malcolm-mcdonald/4461,,Glasgow South,Glasgow South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +C. Mcdonald Stuart,"928, 15259",6,,3,Parliament,"['211883434']",Scottish National Party,https://www.parliament.uk/biographies/commons/stuart-c.-mcdonald/4393,,"Cumbernauld, Kilsyth and Kirkintilloch East","Cumbernauld, Kilsyth and Kirkintilloch East","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +John Mcdonnell,"15590, 929",3,,3,Parliament,"['77234984']",Labour,"https://www.john-mcdonnell.net/, https://www.parliament.uk/biographies/commons/john-mcdonnell/178",,Hayes and Harlington,Hayes and Harlington,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Mcfadden Pat,"15385, 930",3,,3,Parliament,"['25091518']",Labour,"https://www.parliament.uk/biographies/commons/mr-pat-mcfadden/1587, https://www.patmcfadden.com",,Wolverhampton South East,Wolverhampton South East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Conor Mcginn,"931, 15759",3,,3,Parliament,"['36158689']",Labour,https://www.parliament.uk/biographies/commons/conor-mcginn/4458,,St Helens North,St Helens North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Alison Mcgovern,"15854, 932",3,,3,Parliament,"['21713090']",Labour,"https://www.parliament.uk/biographies/commons/alison-mcgovern/4083, https://www.alisonmcgovern.org.uk",,Wirral South,Wirral South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Liz Mcinnes,933,3,,3,Parliament,"['2813746248']",Labour,https://www.parliament.uk/biographies/commons/liz-mcinnes/4342,,,Heywood and Middleton,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Craig Mackinlay,"15758, 934",4,,3,Parliament,"['185790986']",Conservative,"https://www.parliament.uk/biographies/commons/craig-mackinlay/4529, https://www.craigmackinlay.com",,South Thanet,South Thanet,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Catherine Mckinnell,"935, 15791",3,,3,Parliament,"['77808680']",Labour,https://www.parliament.uk/biographies/commons/catherine-mckinnell/4125,,Newcastle upon Tyne North,Newcastle upon Tyne North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Maclean Rachel,"936, 15360",4,,3,Parliament,"['860896517737119744', '860896517737119747']",Conservative,"https://www.rachelmaclean.uk/, https://www.parliament.uk/biographies/commons/rachel-maclean/4668",,Redditch,Redditch,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Mcloughlin Patrick,937,4,,3,Parliament,"['3144626321']",Conservative,https://www.parliament.uk/biographies/commons/sir-patrick-mcloughlin/333,,,Derbyshire Dales,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Jim Mcmahon,"15602, 938",5,,3,Parliament,"['154661114']",Labour Co-op,"https://jimmcmahon.co.uk, https://www.parliament.uk/biographies/commons/jim-mcmahon/4569",,Oldham West and Royton,Oldham West and Royton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Anna Mcmorrin,"939, 15827",3,,3,Parliament,"['14590758']",Labour,https://www.parliament.uk/biographies/commons/anna-mcmorrin/4632,,Cardiff North,Cardiff North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +John Mcnally,"15589, 940",6,,3,Parliament,"['3037079585']",Scottish National Party,"https://www.parliament.uk/biographies/commons/john-mcnally/4424, https://members.parliament.uk/member/4424/contact",,Falkirk,Falkirk,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Angus Brendan Macneil,"941, 15828",6,,3,Parliament,"['46609085']",Scottish National Party,https://www.parliament.uk/biographies/commons/angus-brendan-macneil/1546,,Na h-Eileanan an Iar,Na h-Eileanan an Iar,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Mcpartland Stephen,"942, 15272",4,,3,Parliament,"['397160160']",Conservative,"https://www.parliament.uk/biographies/commons/stephen-mcpartland/4093, https://www.stephenmcpartland.co.uk",,Stevenage,Stevenage,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Esther Mcvey,"15687, 943",4,,3,Parliament,"['761499948890329088']",Conservative,"https://www.EstherMcVey.com, https://www.parliament.uk/biographies/commons/esther-mcvey/4084",,Tatton,Tatton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Justin Madders,"944, 15568",3,,3,Parliament,"['2999868527']",Labour,"https://www.parliament.uk/biographies/commons/justin-madders/4418, https://www.justinmadders.com",,Ellesmere Port and Neston,Ellesmere Port and Neston,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Khalid Mahmood Mr,"15452, 945",3,,3,Parliament,"['3030160806']",Labour,"https://www.parliament.uk/biographies/commons/mr-khalid-mahmood/1392, none",,"Birmingham, Perry Barr","Birmingham, Perry Barr","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Mahmood Shabana,"946, 15316",3,,3,Parliament,"['407741330']",Labour,"https://www.shabanamahmood.org, https://www.parliament.uk/biographies/commons/shabana-mahmood/3914",,"Birmingham, Ladywood","Birmingham, Ladywood","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Anne Main,947,4,,3,Parliament,"['3241815922']",Conservative,https://www.parliament.uk/biographies/commons/mrs-anne-main/1568,,,St Albans,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Alan Mak,"15865, 948",4,,3,Parliament,"['2157036506']",Conservative,"https://www.parliament.uk/biographies/commons/alan-mak/4484, https://www.facebook.com/AlanMakHavant",,Havant,Havant,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Malhotra Seema,"949, 15318",5,,3,Parliament,"['32369044']",Labour Co-op,"https://www.seemamalhotra.com, https://www.parliament.uk/biographies/commons/seema-malhotra/4253",,Feltham and Heston,Feltham and Heston,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Kit Malthouse,"950, 15545",4,,3,Parliament,"['19407599']",Conservative,"https://www.kitmalthouse.com, https://www.parliament.uk/biographies/commons/kit-malthouse/4495",,North West Hampshire,North West Hampshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +John Mann,951,3,,3,Parliament,"['357805905']",Labour,https://www.parliament.uk/biographies/commons/john-mann/1387,,,Bassetlaw,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Mann Scott,"15319, 952",4,,3,Parliament,"['112761860']",Conservative,https://www.parliament.uk/biographies/commons/scott-mann/4496,,North Cornwall,North Cornwall,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gordon Marsden,953,3,,3,Parliament,"['1114522266']",Labour,https://www.parliament.uk/biographies/commons/gordon-marsden/465,,,Blackpool South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Martin Sandy,954,3,,3,Parliament,"['833460300']",Labour,https://www.parliament.uk/biographies/commons/sandy-martin/4678,,,Ipswich,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Maskell Rachael,"955, 15362",5,,3,Parliament,"['80151292']",Labour Co-op,https://www.parliament.uk/biographies/commons/rachael-maskell/4471,,York Central,York Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Maskey Paul,"15377, 956",7,,3,Parliament,"['80812413']",Sinn Féin,"https://www.parliament.uk/biographies/commons/paul-maskey/4245, none",,Belfast West,Belfast West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",53951 +Masterton Paul,957,4,,3,Parliament,"['20087980']",Conservative,https://www.parliament.uk/biographies/commons/paul-masterton/4625,,,East Renfrewshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Christian Matheson,"958, 15772",3,,3,Parliament,"['2472200292']",Labour,https://www.parliament.uk/biographies/commons/christian-matheson/4408,,City of Chester,City of Chester,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +May Mrs Theresa,"959, 15417",4,,3,Parliament,"['747807250819981312']",Conservative,"https://www.parliament.uk/biographies/commons/mrs-theresa-may/8, none",,Maidenhead,Maidenhead,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Maynard Paul,"960, 15376",4,,3,Parliament,"['15133808']",Conservative,"https://fb.com/PaulMaynardBNC, https://www.parliament.uk/biographies/commons/paul-maynard/3926",,Blackpool North and Cleveleys,Blackpool North and Cleveleys,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ian Mearns,"961, 15639",3,,3,Parliament,"['624746312']",Labour,"https://www.ianmearns.org.uk, https://www.parliament.uk/biographies/commons/ian-mearns/4000",,Gateshead,Gateshead,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Johnny Mercer,"15583, 963",4,,3,Parliament,"['97402576']",Conservative,"https://www.johnnyforplymouth.co.uk, https://www.parliament.uk/biographies/commons/johnny-mercer/4485",,"Plymouth, Moor View","Plymouth, Moor View","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Huw Merriman,"15646, 964",4,,3,Parliament,"['2902930059']",Conservative,https://www.parliament.uk/biographies/commons/huw-merriman/4442,,Bexhill and Battle,Bexhill and Battle,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Metcalfe Stephen,"965, 15271",4,,3,Parliament,"['435980092']",Conservative,"https://www.stephenmetcalfe.org.uk/, https://www.parliament.uk/biographies/commons/stephen-metcalfe/4092",,South Basildon and East Thurrock,South Basildon and East Thurrock,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Edward Miliband,"15694, 966",3,,3,Parliament,"['61781260']",Labour,"https://www.parliament.uk/biographies/commons/edward-miliband/1510, none",,Doncaster North,Doncaster North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Maria Miller Mrs,"15422, 967",4,,3,Parliament,"['830775721']",Conservative,"https://www.parliament.uk/biographies/commons/mrs-maria-miller/1480, none",,Basingstoke,Basingstoke,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Amanda Milling,"15848, 968",4,,3,Parliament,"['381433782']",Conservative,"https://amandamilling.com, https://www.parliament.uk/biographies/commons/amanda-milling/4454",,Cannock Chase,Cannock Chase,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mills Nigel,"15390, 969",4,,3,Parliament,"['995322806']",Conservative,"https://www.parliament.uk/biographies/commons/nigel-mills/4136, none",,Amber Valley,Amber Valley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Anne Milton,970,4,,3,Parliament,"['312758175']",Conservative,https://www.parliament.uk/biographies/commons/anne-milton/1523,,,Guildford,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Andrew Mitchell,971,4,,3,Parliament,"['717343539']",Conservative,https://www.parliament.uk/biographies/commons/mr-andrew-mitchell/1211,,,Sutton Coldfield,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Francie Molloy,"972, 15679",7,,3,Parliament,"['1006402848']",Sinn Féin,"https://www.sinnfein.ie/francie-molloy, https://www.parliament.uk/biographies/commons/francie-molloy/4274",,Mid Ulster,Mid Ulster,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",53951 +Carol Monaghan,"973, 15798",6,,3,Parliament,"['2916227068']",Scottish National Party,https://www.parliament.uk/biographies/commons/carol-monaghan/4443,,Glasgow North West,Glasgow North West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Madeleine Moon,974,3,,3,Parliament,"['131862459']",Labour,https://www.parliament.uk/biographies/commons/mrs-madeleine-moon/1490,,,Bridgend,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Layla Moran,"976, 15541",9,,3,Parliament,"['23424533']",Liberal Democrat,https://www.parliament.uk/biographies/commons/layla-moran/4656,,Oxford West and Abingdon,Oxford West and Abingdon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51421 +Mordaunt Penny,"15373, 977",4,,3,Parliament,"['462856853']",Conservative,"https://www.parliament.uk/biographies/commons/penny-mordaunt/4017, https://www.pennymordaunt.com",,Portsmouth North,Portsmouth North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jessica Morden,"978, 15603",3,,3,Parliament,"['43312141']",Labour,"https://www.jessicamorden.com, https://www.parliament.uk/biographies/commons/jessica-morden/1548",,Newport East,Newport East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Morgan Nicky,979,4,,3,Parliament,"['34940114']",Conservative,https://www.parliament.uk/biographies/commons/nicky-morgan/4027,,,Loughborough,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Morgan Stephen,980,3,,3,Parliament,"['916060640355241984']",Labour,https://www.parliament.uk/biographies/commons/stephen-morgan/4653,,,Portsmouth South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Anne Marie Morris,"15826, 981",4,,3,Parliament,"['80968760']",Conservative,"https://www.annemariemorris.co.uk, https://www.parliament.uk/biographies/commons/anne-marie-morris/4249",,Newton Abbot,Newton Abbot,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Morris,"15732, 982",4,,3,Parliament,"['187632184']",Conservative,"https://www.parliament.uk/biographies/commons/david-morris/4135, https://www.davidmorris.org.uk",,Morecambe and Lunesdale,Morecambe and Lunesdale,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Grahame Morris,"15660, 983",3,,3,Parliament,"['58821256']",Labour,"https://www.grahamemorrismp.co.uk, https://www.parliament.uk/biographies/commons/grahame-morris/3973",,Easington,Easington,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +James Morris,"15620, 984",4,,3,Parliament,"['155892458']",Conservative,"https://www.jamesmorris.co.uk, https://www.parliament.uk/biographies/commons/james-morris/3992",,Halesowen and Rowley Regis,Halesowen and Rowley Regis,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Morton Wendy,"985, 15230",4,,3,Parliament,"['813678139']",Conservative,"https://www.parliament.uk/biographies/commons/wendy-morton/4358, none",,Aldridge-Brownhills,Aldridge-Brownhills,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Mundell,"15731, 986",4,,3,Parliament,"['19589280']",Conservative,https://www.parliament.uk/biographies/commons/david-mundell/1512,,"Dumfriesshire, Clydesdale and Tweeddale","Dumfriesshire, Clydesdale and Tweeddale","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ian Murray,"15638, 987",3,,3,Parliament,"['77981490']",Labour,"https://www.parliament.uk/biographies/commons/ian-murray/3966, https://www.murray4south.co.uk",,Edinburgh South,Edinburgh South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Mrs Murray Sheryll,"15418, 988",4,,3,Parliament,"['18627119']",Conservative,"https://www.sheryllmurray.com, https://www.parliament.uk/biographies/commons/mrs-sheryll-murray/4100",,South East Cornwall,South East Cornwall,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Andrew Dr Murrison,"989, 15715",4,,3,Parliament,"['759067032']",Conservative,"https://www.parliament.uk/biographies/commons/dr-andrew-murrison/1466, none",,South West Wiltshire,South West Wiltshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Lisa Nandy,"990, 15534",3,,3,Parliament,"['94701778']",Labour,"https://www.parliament.uk/biographies/commons/lisa-nandy/4082, https://www.lisanandy.org",,Wigan,Wigan,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Neill Robert Sir,"15284, 991",4,,3,Parliament,"['2271025438']",Conservative,"https://www.parliament.uk/biographies/commons/robert-neill/1601, https://www.bobneill.org.uk",,Bromley and Chislehurst,Bromley and Chislehurst,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gavin Newlands,"15673, 992",6,,3,Parliament,"['140604687']",Scottish National Party,"https://www.gavinnewlands.scot, https://www.parliament.uk/biographies/commons/gavin-newlands/4420",,Paisley and Renfrewshire North,Paisley and Renfrewshire North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Newton Sarah,993,4,,3,Parliament,"['863136661']",Conservative,https://www.parliament.uk/biographies/commons/sarah-newton/4071,,,Truro and Falmouth,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Caroline Nokes,"15794, 994",4,,3,Parliament,"['209029473']",Conservative,"https://www.parliament.uk/biographies/commons/caroline-nokes/4048, https://carolinenokes.com",,Romsey and Southampton North,Romsey and Southampton North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jesse Norman,"995, 15604",4,,3,Parliament,"['78702900']",Conservative,"https://www.parliament.uk/biographies/commons/jesse-norman/3991, https://www.jessenorman.com",,Hereford and South Herefordshire,Hereford and South Herefordshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alex Norris,"15858, 996",5,,3,Parliament,"['20142835']",Labour Co-op,"https://alexnorrismp.co.uk, https://www.parliament.uk/biographies/commons/alex-norris/4641",,Nottingham North,Nottingham North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Neil O'Brien,"997, 15401",4,,3,Parliament,"['64679759']",Conservative,"https://www.neilobrien.org.uk, https://www.parliament.uk/biographies/commons/neil-o'brien/4679",,Harborough,Harborough,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Dr Matthew Offord,"998, 15704",4,,3,Parliament,"['236395049']",Conservative,"https://www.matthewofford.co.uk, https://www.parliament.uk/biographies/commons/dr-matthew-offord/4006",,Hendon,Hendon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Brendan O'Hara,"15801, 999",6,,3,Parliament,"['2942626846']",Scottish National Party,"https://www.facebook.com/BrendanOHaraSNP, https://www.parliament.uk/biographies/commons/brendan-o'hara/4371",,Argyll and Bute,Argyll and Bute,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Jared O'Mara,1000,12,,3,Parliament,"['1006869912487432192']",Independent,https://www.parliament.uk/biographies/commons/jared-o'mara/4661,,,"Sheffield, Hallam",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3, +Fiona Onasanya,1001,3,,3,Parliament,"['42977873']",Labour,https://www.parliament.uk/biographies/commons/fiona-onasanya/4629,,,Peterborough,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Melanie Onn,1002,3,,3,Parliament,"['254193620']",Labour,https://www.parliament.uk/biographies/commons/melanie-onn/4464,,,Great Grimsby,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Chi Onwurah,"1003, 15787",3,,3,Parliament,"['82093305']",Labour,"https://www.chionwurahmp.com, https://www.parliament.uk/biographies/commons/chi-onwurah/4124",,Newcastle upon Tyne Central,Newcastle upon Tyne Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Guy Opperman,"1004, 15655",4,,3,Parliament,"['143386976']",Conservative,"https://guyopperman.co.uk, https://www.parliament.uk/biographies/commons/guy-opperman/4142",,Hexham,Hexham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Kate Osamor,"1005, 15559",5,,3,Parliament,"['415910519']",Labour Co-op,https://www.parliament.uk/biographies/commons/kate-osamor/4515,,Edmonton,Edmonton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Albert Owen,1006,3,,3,Parliament,"['1354610803']",Labour,https://www.parliament.uk/biographies/commons/albert-owen/1474,,,Ynys Môn,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Neil Parish,"1008, 15400",4,,3,Parliament,"['3164087579']",Conservative,"https://www.neilparish.co.uk, https://www.parliament.uk/biographies/commons/neil-parish/4072",,Tiverton and Honiton,Tiverton and Honiton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Patel Priti,"1009, 15363",4,,3,Parliament,"['61660254']",Conservative,"https://www.parliament.uk/biographies/commons/priti-patel/4066, none",,Witham,Witham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mr Owen Paterson,"1010, 15444",4,,3,Parliament,"['2660755152']",Conservative,"https://www.owenpaterson.org, https://www.parliament.uk/biographies/commons/mr-owen-paterson/274",,North Shropshire,North Shropshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mark Pawsey,"15509, 1011",4,,3,Parliament,"['52412027']",Conservative,"https://www.parliament.uk/biographies/commons/mark-pawsey/4052, https://www.markpawsey.org.uk",,Rugby,Rugby,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Peacock Stephanie,"1012, 15279",3,,3,Parliament,"['51062977']",Labour,"https://www.parliament.uk/biographies/commons/stephanie-peacock/4607, https://www.stephaniepeacock.org.uk",,Barnsley East,Barnsley East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Pearce Teresa,1013,3,,3,Parliament,"['14146330']",Labour,https://www.parliament.uk/biographies/commons/teresa-pearce/4003,,,Erith and Thamesmead,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Matthew Pennycook,"15493, 1015",3,,3,Parliament,"['21084719']",Labour,"https://www.parliament.uk/biographies/commons/matthew-pennycook/4520, https://www.matthewpennycook.com",,Greenwich and Woolwich,Greenwich and Woolwich,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +John Penrose,"1016, 15587",4,,3,Parliament,"['158315486']",Conservative,"https://www.johnpenrose.org, https://www.parliament.uk/biographies/commons/john-penrose/1584",,Weston-super-Mare,Weston-super-Mare,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mr Perkins Toby,"15430, 1018",3,,3,Parliament,"['61733092']",Labour,"https://www.tobyperkins.org.uk, https://www.parliament.uk/biographies/commons/toby-perkins/3952",,Chesterfield,Chesterfield,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Claire Perry,1019,4,,3,Parliament,"['939151060391940096']",Conservative,https://www.parliament.uk/biographies/commons/claire-perry/3974,,,Devizes,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Jess Phillips,"15605, 1020",3,,3,Parliament,"['20000725']",Labour,"https://www.parliament.uk/biographies/commons/jess-phillips/4370, none",,"Birmingham, Yardley","Birmingham, Yardley","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Bridget Phillipson,"1021, 15800",3,,3,Parliament,"['19295262']",Labour,"https://www.parliament.uk/biographies/commons/bridget-phillipson/4046, https://www.bridgetphillipson.com/contact/",,Houghton and Sunderland South,Houghton and Sunderland South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chris Philp,"15775, 1022",4,,3,Parliament,"['89307992']",Conservative,"https://www.chrisphilp.com, https://www.parliament.uk/biographies/commons/chris-philp/4503",,Croydon South,Croydon South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Laura Pidcock,1023,3,,3,Parliament,"['251821643']",Labour,https://www.parliament.uk/biographies/commons/laura-pidcock/4665,,,North West Durham,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Christopher Pincher,"1024, 15768",4,,3,Parliament,"['166598394']",Conservative,"https://www.parliament.uk/biographies/commons/christopher-pincher/4075, none",,Tamworth,Tamworth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jo Platt,1025,5,,3,Parliament,"['56657187']",Labour Co-op,https://www.parliament.uk/biographies/commons/jo-platt/4673,,,Leigh,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Luke Pollard,"1026, 15524",5,,3,Parliament,"['10955042']",Labour Co-op,"https://www.lukepollard.org, https://www.parliament.uk/biographies/commons/luke-pollard/4682",,"Plymouth, Sutton and Devonport","Plymouth, Sutton and Devonport","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Pow Rebecca,"1029, 15356",4,,3,Parliament,"['371201577']",Conservative,"https://www.parliament.uk/biographies/commons/rebecca-pow/4522, https://www.rebeccapow.org.uk",,Taunton Deane,Taunton Deane,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Lucy Powell,"1030, 15526",5,,3,Parliament,"['32439211']",Labour Co-op,"https://www.parliament.uk/biographies/commons/lucy-powell/4263, https://www.lucypowell.org.uk",,Manchester Central,Manchester Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Prentis Victoria,"15234, 1031",4,,3,Parliament,"['2862527512']",Conservative,https://www.parliament.uk/biographies/commons/victoria-prentis/4401,,Banbury,Banbury,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mark Prisk,1032,4,,3,Parliament,"['463888230']",Conservative,https://www.parliament.uk/biographies/commons/mr-mark-prisk/1424,,,Hertford and Stortford,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Mark Pritchard,"15508, 1033",4,,3,Parliament,"['804596460']",Conservative,"https://www.markpritchard.com, https://www.parliament.uk/biographies/commons/mark-pritchard/1576",,The Wrekin,The Wrekin,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Pursglove Tom,"15248, 1034",4,,3,Parliament,"['1418358025']",Conservative,https://www.parliament.uk/biographies/commons/tom-pursglove/4369,,Corby,Corby,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Quince Will,"15227, 1036",4,,3,Parliament,"['20473134']",Conservative,"https://www.parliament.uk/biographies/commons/will-quince/4423, https://www.willquince.com",,Colchester,Colchester,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Qureshi Yasmin,"1037, 15226",3,,3,Parliament,"['72341341']",Labour,"https://www.parliament.uk/biographies/commons/yasmin-qureshi/3924, https://yasminqureshi.org.uk",,Bolton South East,Bolton South East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Dominic Raab,"15719, 1038",4,,3,Parliament,"['4764882552']",Conservative,"https://www.dominicraab.com, https://www.parliament.uk/biographies/commons/dominic-raab/4007",,Esher and Walton,Esher and Walton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Faisal Rashid,1039,3,,3,Parliament,"['398240997']",Labour,https://www.parliament.uk/biographies/commons/faisal-rashid/4670,,,Warrington South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Angela Rayner,"1040, 15830",3,,3,Parliament,"['222748037']",Labour,https://www.parliament.uk/biographies/commons/angela-rayner/4356,,Ashton-under-Lyne,Ashton-under-Lyne,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +John Redwood,"15586, 1041",4,,3,Parliament,"['93880122']",Conservative,"https://www.johnredwoodsdiary.com, https://www.parliament.uk/biographies/commons/john-redwood/14",,Wokingham,Wokingham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Reed Steve,"15265, 1042",5,,3,Parliament,"['23749162']",Labour Co-op,"https://stevereedmp.co.uk, https://www.parliament.uk/biographies/commons/mr-steve-reed/4268",,Croydon North,Croydon North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Christina Rees,"1043, 15770",5,,3,Parliament,"['1351389578']",Labour Co-op,https://www.parliament.uk/biographies/commons/christina-rees/4525,,Neath,Neath,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Jacob Mr Rees-Mogg,"15458, 1044",4,,3,Parliament,"['885838630928994304']",Conservative,"https://www.parliament.uk/biographies/commons/mr-jacob-rees-mogg/4099, https://www.facebook.com/JacobReesMogg/",,North East Somerset,North East Somerset,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Ellie Reeves,"15691, 1045",3,,3,Parliament,"['52124856']",Labour,"https://www.parliament.uk/biographies/commons/ellie-reeves/4620, https://www.elliereeves.com/",,Lewisham West and Penge,Lewisham West and Penge,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Rachel Reeves,"15359, 1046",3,,3,Parliament,"['34374472']",Labour,"https://www.rachelreeves.net, https://www.parliament.uk/biographies/commons/rachel-reeves/4031",,Leeds West,Leeds West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Emma Reynolds,1047,3,,3,Parliament,"['32965648']",Labour,https://www.parliament.uk/biographies/commons/emma-reynolds/4077,,,Wolverhampton North East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Jonathan Reynolds,"1048, 15577",5,,3,Parliament,"['18632946']",Labour Co-op,"https://www.parliament.uk/biographies/commons/jonathan-reynolds/4119, https://www.jonathanreynolds.org.uk",,Stalybridge and Hyde,Stalybridge and Hyde,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Marie Rimmer,1049,3,,3,Parliament,"['2350948635']",Labour,https://www.parliament.uk/biographies/commons/ms-marie-rimmer/4457,,,St Helens South and Whiston,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Laurence Mr Robertson,"1050, 15451",4,,3,Parliament,"['2795272097']",Conservative,"https://www.parliament.uk/biographies/commons/mr-laurence-robertson/253, https://www.laurencerobertson.org.uk",,Tewkesbury,Tewkesbury,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gavin Robinson,"15672, 1051",10,,3,Parliament,"['249845912']",Democratic Unionist Party,https://www.parliament.uk/biographies/commons/gavin-robinson/4360,,Belfast East,Belfast East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51903 +Geoffrey Robinson,1052,3,,3,Parliament,"['856796146790006784']",Labour,https://www.parliament.uk/biographies/commons/mr-geoffrey-robinson/307,,,Coventry North West,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Mary Robinson,"15499, 1053",4,,3,Parliament,"['1048278487']",Conservative,https://www.parliament.uk/biographies/commons/mary-robinson/4406,,Cheadle,Cheadle,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Matt Rodda,"15497, 1054",3,,3,Parliament,"['216516145']",Labour,"https://www.mattrodda.net, https://www.parliament.uk/biographies/commons/matt-rodda/4654",,Reading East,Reading East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Andrew Rosindell,"1055, 15837",4,,3,Parliament,"['20132840']",Conservative,"https://www.andrew-rosindell.com, https://www.parliament.uk/biographies/commons/andrew-rosindell/1447",,Romford,Romford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Douglas Ross,"15717, 1056",4,,3,Parliament,"['2890801661']",Conservative,"https://www.parliament.uk/biographies/commons/douglas-ross/4627, https://www.douglasross.org.uk",,Moray,Moray,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Danielle Rowley,1057,3,,3,Parliament,"['35791604']",Labour,https://www.parliament.uk/biographies/commons/danielle-rowley/4628,,,Midlothian,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Lee Rowley,"1058, 15539",4,,3,Parliament,"['1216506050']",Conservative,"https://www.parliament.uk/biographies/commons/lee-rowley/4652, https://www.leerowley.co.uk",,North East Derbyshire,North East Derbyshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Chris Ruane,1059,3,,3,Parliament,"['608932775']",Labour,https://www.parliament.uk/biographies/commons/chris-ruane/534,,,Vale of Clwyd,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Amber Rudd,1060,4,,3,Parliament,"['475884318']",Conservative,https://www.parliament.uk/biographies/commons/amber-rudd/3983,,,Hastings and Rye,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Lloyd Russell-Moyle,"15530, 1061",5,,3,Parliament,"['38880112']",Labour Co-op,"https://www.russell-moyle.co.uk, https://www.parliament.uk/biographies/commons/lloyd-russell-moyle/4615",,"Brighton, Kemptown","Brighton, Kemptown","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +David Rutley,"15730, 1062",4,,3,Parliament,"['606306570']",Conservative,"https://www.parliament.uk/biographies/commons/david-rutley/4033, https://www.davidrutley.org.uk/",,Macclesfield,Macclesfield,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Joan Ryan,1063,3,,3,Parliament,"['167867714']",Labour,https://www.parliament.uk/biographies/commons/joan-ryan/166,,,Enfield North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Antoinette Sandbach,1064,4,,3,Parliament,"['92759618']",Conservative,https://www.parliament.uk/biographies/commons/antoinette-sandbach/4506,,,Eddisbury,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Liz Roberts Saville,"1065, 15532",11,,3,Parliament,"['2350624098']",Plaid Cymru,https://www.parliament.uk/biographies/commons/liz-saville-roberts/4521,,Dwyfor Meirionnydd,Dwyfor Meirionnydd,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51901 +Paul Scully,"15375, 1066",4,,3,Parliament,"['17484283']",Conservative,"https://www.scully.org.uk, https://www.parliament.uk/biographies/commons/paul-scully/4414",,Sutton and Cheam,Sutton and Cheam,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Bob Seely,"15806, 1067",4,,3,Parliament,"['713022379065221121', '713022379065221120']",Conservative,"https://www.bobseely.org.uk, https://www.parliament.uk/biographies/commons/mr-bob-seely/4681",,Isle of Wight,Isle of Wight,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +Andrew Selous,"15836, 1068",4,,3,Parliament,"['90646214']",Conservative,"https://www.parliament.uk/biographies/commons/andrew-selous/1453, https://Www.andrewselous.uk",,South West Bedfordshire,South West Bedfordshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Naz Shah,"1069, 15405",3,,3,Parliament,"['355623405']",Labour,https://www.parliament.uk/biographies/commons/naz-shah/4409,,Bradford West,Bradford West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Jim Shannon,"1070, 15601",10,,3,Parliament,"['4104745522']",Democratic Unionist Party,https://www.parliament.uk/biographies/commons/jim-shannon/4131,,Strangford,Strangford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51903 +Grant Shapps,"1071, 15659",4,,3,Parliament,"['14104027']",Conservative,"https://www.parliament.uk/biographies/commons/grant-shapps/1582, https://www.shapps.com",,Welwyn Hatfield,Welwyn Hatfield,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alok Sharma,"1072, 15851",4,,3,Parliament,"['1731554581']",Conservative,"https://www.parliament.uk/biographies/commons/alok-sharma/4014, https://www.aloksharma.co.uk",,Reading West,Reading West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mr Sharma Virendra,"15429, 1073",3,,3,Parliament,"['23452598']",Labour,"https://www.parliament.uk/biographies/commons/mr-virendra-sharma/1604, https://www.virendrasharma.com/",,"Ealing, Southall","Ealing, Southall","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Barry Mr Sheerman,"1074, 15469",5,,3,Parliament,"['250091875']",Labour Co-op,"https://www.parliament.uk/biographies/commons/mr-barry-sheerman/411, https://www.barrysheerman.co.uk",,Huddersfield,Huddersfield,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Alec Shelbrooke,"15863, 1075",4,,3,Parliament,"['130092487']",Conservative,"https://www.alecshelbrooke.co.uk, https://www.parliament.uk/biographies/commons/alec-shelbrooke/3997",,Elmet and Rothwell,Elmet and Rothwell,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Sheppard Tommy,"15245, 1076",6,,3,Parliament,"['280574046']",Scottish National Party,https://www.parliament.uk/biographies/commons/tommy-sheppard/4453,,Edinburgh East,Edinburgh East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Paula Sherriff,1077,3,,3,Parliament,"['29169821']",Labour,https://www.parliament.uk/biographies/commons/paula-sherriff/4426,,,Dewsbury,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Gavin Shuker,1078,5,,3,Parliament,"['14567982']",Labour Co-op,https://www.parliament.uk/biographies/commons/mr-gavin-shuker/4013,,,Luton South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Siddiq Tulip,"1079, 15239",3,,3,Parliament,"['113491007']",Labour,https://www.parliament.uk/biographies/commons/tulip-siddiq/4518,,Hampstead and Kilburn,Hampstead and Kilburn,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +David Simpson,1080,10,,3,Parliament,"['2709108427']",Democratic Unionist Party,https://www.parliament.uk/biographies/commons/david-simpson/1597,,,Upper Bann,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51903 +Keith Simpson,1081,4,,3,Parliament,"['740355601']",Conservative,https://www.parliament.uk/biographies/commons/mr-keith-simpson/126,,,Broadland,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Chris Skidmore,"1082, 15774",4,,3,Parliament,"['436576452']",Conservative,"https://www.parliament.uk/biographies/commons/chris-skidmore/4021, none",,Kingswood,Kingswood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Dennis Skinner,1083,3,,3,Parliament,"['856694912']",Labour,https://www.parliament.uk/biographies/commons/mr-dennis-skinner/325,,,Bolsover,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Andy Slaughter,"15832, 1084",3,,3,Parliament,"['66078636']",Labour,"https://andyslaughter.co.uk, https://www.parliament.uk/biographies/commons/andy-slaughter/1516",,Hammersmith,Hammersmith,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Ruth Smeeth,1085,3,,3,Parliament,"['20428671']",Labour,https://www.parliament.uk/biographies/commons/ruth-smeeth/4508,,,Stoke-on-Trent North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Angela Smith,1086,3,,3,Parliament,"['245745762']",Labour,https://www.parliament.uk/biographies/commons/angela-smith/1564,,,Penistone and Stocksbridge,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Cat Smith,"1087, 15792",3,,3,Parliament,"['31756041']",Labour,"https://www.parliament.uk/biographies/commons/cat-smith/4436, none",,Lancaster and Fleetwood,Lancaster and Fleetwood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chloe Smith,"1088, 15786",4,,3,Parliament,"['386776248']",Conservative,"https://www.parliament.uk/biographies/commons/chloe-smith/1609, https://www.chloesmith.org.uk/myplan/",,Norwich North,Norwich North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Eleanor Smith,1089,3,,3,Parliament,"['2364208508']",Labour,https://www.parliament.uk/biographies/commons/eleanor-smith/4609,,,Wolverhampton South West,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Henry Smith,"15650, 1090",4,,3,Parliament,"['873819098']",Conservative,"https://www.henrysmith.info, https://www.parliament.uk/biographies/commons/henry-smith/3960",,Crawley,Crawley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jeff Smith,"1091, 15611",3,,3,Parliament,"['18951643']",Labour,https://www.parliament.uk/biographies/commons/jeff-smith/4456,,"Manchester, Withington","Manchester, Withington","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Julian Smith,"1092, 15572",4,,3,Parliament,"['728039018']",Conservative,https://www.parliament.uk/biographies/commons/julian-smith/4118,,Skipton and Ripon,Skipton and Ripon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Laura Smith,1093,3,,3,Parliament,"['873169381299191808']",Labour,https://www.parliament.uk/biographies/commons/laura-smith/4648,,,Crewe and Nantwich,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Nick Smith,"16657, 3439, 1094, 15396","46, 3, 46",,"45, 3",Parliament,"['1202026310723223552', '532351874']","National Party, Labour, National Party","https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/smith-nick/, https://www.parliament.uk/biographies/commons/nick-smith/3928, https://business.facebook.com/NickSmithforBlaenauGwent/","['National Party MP for Nelson. Authorised by Nick Smith MP, 544 Waimea Road, Nelson.']","List, Blaenau Gwent, Nelson",Blaenau Gwent,"https://www.parliament.uk/mps-lords-and-offices/mps/, https://members.parliament.uk/members/Commons, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/",,"United Kingdom, New Zealand, New Zealand","17, 24, 17","57, 52, 16, 3","51320, 64620, 64620" +Owen Smith,1095,3,,3,Parliament,"['388299335']",Labour,https://www.parliament.uk/biographies/commons/owen-smith/4042,,,Pontypridd,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Royston Smith,"15336, 1096",4,,3,Parliament,"['75562171']",Conservative,https://www.parliament.uk/biographies/commons/royston-smith/4478,,"Southampton, Itchen","Southampton, Itchen","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Karin Smyth,"1097, 15565",3,,3,Parliament,"['485146783']",Labour,"https://karinsmyth.com, https://www.parliament.uk/biographies/commons/karin-smyth/4444",,Bristol South,Bristol South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Gareth Snell,1098,5,,3,Parliament,"['63111042']",Labour Co-op,https://www.parliament.uk/biographies/commons/gareth-snell/4595,,,Stoke-on-Trent Central,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Nicholas Soames,1099,4,,3,Parliament,"['2363670413']",Conservative,https://www.parliament.uk/biographies/commons/sir-nicholas-soames/116,,,Mid Sussex,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Alex Sobel,"15857, 1100",5,,3,Parliament,"['15726425']",Labour Co-op,"https://www.parliament.uk/biographies/commons/alex-sobel/4658, https://alexsobel.co.uk",,Leeds North West,Leeds North West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Anna Soubry,1101,4,,3,Parliament,"['326184301']",Conservative,https://www.parliament.uk/biographies/commons/anna-soubry/3938,,,Broxtowe,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +John Spellar,"1102, 15585",3,,3,Parliament,"['21736214']",Labour,"https://www.parliament.uk/biographies/commons/john-spellar/318, none",,Warley,Warley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Caroline Spelman,1103,4,,3,Parliament,"['453133872']",Conservative,https://www.parliament.uk/biographies/commons/dame-caroline-spelman/312,,,Meriden,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Mark Spencer,"15507, 1104",4,,3,Parliament,"['154943205']",Conservative,"https://www.parliament.uk/biographies/commons/mark-spencer/4055, https://facebook.com/markspencersherwood",,Sherwood,Sherwood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Keir Starmer,"15556, 1105",3,,3,Parliament,"['2425571623']",Labour,https://www.parliament.uk/biographies/commons/keir-starmer/4514,,Holborn and St Pancras,Holborn and St Pancras,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chris Stephens,"1106, 15773",6,,3,Parliament,"['244540519']",Scottish National Party,"https://chrisstephens.scot, https://www.parliament.uk/biographies/commons/chris-stephens/4463",,Glasgow South West,Glasgow South West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Andrew Stephenson,"15835, 1107",4,,3,Parliament,"['131517399']",Conservative,"none, https://www.parliament.uk/biographies/commons/andrew-stephenson/4044",,Pendle,Pendle,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jo Stevens,"1108, 15598",3,,3,Parliament,"['1328897358']",Labour,https://www.parliament.uk/biographies/commons/jo-stevens/4425,,Cardiff Central,Cardiff Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +John Stevenson,"15584, 1109",4,,3,Parliament,"['222419520']",Conservative,"https://www.parliament.uk/biographies/commons/john-stevenson/3942, https://www.johnstevensonmp.co.uk",,Carlisle,Carlisle,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Iain Stewart,"1111, 15644",4,,3,Parliament,"['100260784']",Conservative,"https://www.iainstewart.org.uk, https://www.parliament.uk/biographies/commons/iain-stewart/4015",,Milton Keynes South,Milton Keynes South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Rory Stewart,1112,4,,3,Parliament,"['131926473']",Conservative,https://www.parliament.uk/biographies/commons/rory-stewart/4137,,,Penrith and The Border,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Jamie Stone,"1113, 15616",9,,3,Parliament,"['4210164801', '868787843510013953']",Liberal Democrat,"https://www.jamiestone.org.uk, https://www.parliament.uk/biographies/commons/jamie-stone/4612",,"Caithness, Sutherland and Easter Ross","Caithness, Sutherland and Easter Ross","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51421 +Gary Sir Streeter,"15298, 1114",4,,3,Parliament,"['4785228995']",Conservative,"https://www.parliament.uk/biographies/commons/mr-gary-streeter/234, https://www.garystreeter.uk",,South West Devon,South West Devon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Streeting Wes,"15228, 1115",3,,3,Parliament,"['20362684']",Labour,"https://www.wesstreeting.org, https://www.parliament.uk/biographies/commons/wes-streeting/4504",,Ilford North,Ilford North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Mel Stride,"1116, 15491",4,,3,Parliament,"['3183943337']",Conservative,https://www.parliament.uk/biographies/commons/mel-stride/3935,,Central Devon,Central Devon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Graham Stuart,"15661, 1118",4,,3,Parliament,"['14395178']",Conservative,"https://www.parliament.uk/biographies/commons/graham-stuart/1482, https://www.grahamstuart.com",,Beverley and Holderness,Beverley and Holderness,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Desmond Sir Swayne,"1121, 15301",4,,3,Parliament,"['1633543440']",Conservative,"https://www.desmondswaynemp.com, https://www.parliament.uk/biographies/commons/sir-desmond-swayne/55",,New Forest West,New Forest West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Paul Sweeney,1122,5,,3,Parliament,"['83483361']",Labour Co-op,https://www.parliament.uk/biographies/commons/mr-paul-sweeney/4642,,,Glasgow North East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Jo Swinson,1123,9,,3,Parliament,"['14933304']",Liberal Democrat,https://www.parliament.uk/biographies/commons/jo-swinson/1513,,,East Dunbartonshire,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51421 +Hugo Swire,1124,4,,3,Parliament,"['903985238']",Conservative,https://www.parliament.uk/biographies/commons/sir-hugo-swire/1408,,,East Devon,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Robert Sir Syms,"1125, 15283",4,,3,Parliament,"['2202981242']",Conservative,"https://pooleconservatives.org, https://www.parliament.uk/biographies/commons/sir-robert-syms/245",,Poole,Poole,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mark Tami,"1126, 15506",3,,3,Parliament,"['2278921206']",Labour,"https://www.parliament.uk/biographies/commons/mark-tami/1383, https://www.marktami.co.uk",,Alyn and Deeside,Alyn and Deeside,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Alison Thewliss,"1127, 15853",6,,3,Parliament,"['116459535']",Scottish National Party,"https://www.parliament.uk/biographies/commons/alison-thewliss/4430, https://www.facebook.com/alisonthewlisssnp",,Glasgow Central,Glasgow Central,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Derek Thomas,"15721, 1128",4,,3,Parliament,"['3252801106']",Conservative,"https://derekthomas.org, https://www.parliament.uk/biographies/commons/derek-thomas/4532",,St Ives,St Ives,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Gareth Thomas,"15675, 1129",5,,3,Parliament,"['219976700']",Labour Co-op,"https://www.gareththomas.org.uk, https://www.parliament.uk/biographies/commons/gareth-thomas/177",,Harrow West,Harrow West,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Nick Thomas-Symonds,"15395, 1130",3,,3,Parliament,"['3092429597']",Labour,"https://www.facebook.com/nickthomassymonds/, https://www.parliament.uk/biographies/commons/nick-thomas-symonds/4479",,Torfaen,Torfaen,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Ross Thomson,1131,4,,3,Parliament,"['539849453']",Conservative,https://www.parliament.uk/biographies/commons/ross-thomson/4599,,,Aberdeen South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Emily Thornberry,"1132, 15689",3,,3,Parliament,"['164226176']",Labour,"https://emilyforlabour.com/, https://www.parliament.uk/biographies/commons/emily-thornberry/1536",,Islington South and Finsbury,Islington South and Finsbury,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Stephen Timms,"1134, 15270",3,,3,Parliament,"['102107018']",Labour,"https://www.stephentimms.org.uk, https://www.parliament.uk/biographies/commons/stephen-timms/163",,East Ham,East Ham,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Kelly Tolhurst,"1135, 15555",4,,3,Parliament,"['218789670']",Conservative,https://www.parliament.uk/biographies/commons/kelly-tolhurst/4487,,Rochester and Strood,Rochester and Strood,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Justin Tomlinson,"15567, 1136",4,,3,Parliament,"['250311545']",Conservative,"https://www.justintomlinson.com, https://www.parliament.uk/biographies/commons/justin-tomlinson/4105",,North Swindon,North Swindon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Michael Tomlinson,"1137, 15486",4,,3,Parliament,"['200519122']",Conservative,https://www.parliament.uk/biographies/commons/michael-tomlinson/4497,,Mid Dorset and North Poole,Mid Dorset and North Poole,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Craig Tracey,"1138, 15757",4,,3,Parliament,"['140020746']",Conservative,"https://Www.craigtracey.co.uk, https://www.parliament.uk/biographies/commons/craig-tracey/4509",,North Warwickshire,North Warwickshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Anne-Marie Trevelyan,"1140, 15824",4,,3,Parliament,"['20229729']",Conservative,"https://www.teamtrevelyan.co.uk, https://www.parliament.uk/biographies/commons/anne-marie-trevelyan/4531",,Berwick-upon-Tweed,Berwick-upon-Tweed,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jon Trickett,"1141, 15581",3,,3,Parliament,"['191807697']",Labour,"https://www.parliament.uk/biographies/commons/jon-trickett/410, none",,Hemsworth,Hemsworth,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Elizabeth Truss,"1142, 15692",4,,3,Parliament,"['65357102']",Conservative,"https://www.parliament.uk/biographies/commons/elizabeth-truss/4097, https://www.elizabethtruss.com",,South West Norfolk,South West Norfolk,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Tom Tugendhat,"15246, 1143",4,,3,Parliament,"['2173779986']",Conservative,https://www.parliament.uk/biographies/commons/tom-tugendhat/4462,,Tonbridge and Malling,Tonbridge and Malling,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Anna Turley,1144,5,,3,Parliament,"['22398060']",Labour Co-op,https://www.parliament.uk/biographies/commons/anna-turley/4449,,,Redcar,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Karl Turner,"15563, 1145",3,,3,Parliament,"['432396682']",Labour,"https://www.parliament.uk/biographies/commons/karl-turner/4030, https://karlturnermp.org.uk",,Kingston upon Hull East,Kingston upon Hull East,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Derek Twigg,"15720, 1146",3,,3,Parliament,"['2245759171']",Labour,"https://www.parliament.uk/biographies/commons/derek-twigg/429, https://www.facebook.com/DerekTwiggMP/",,Halton,Halton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Stephen Twigg,1147,5,,3,Parliament,"['35781487']",Labour Co-op,https://www.parliament.uk/biographies/commons/stephen-twigg/167,,,"Liverpool, West Derby",https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Liz Twist,"15531, 1148",3,,3,Parliament,"['857641376628043778']",Labour,"https://www.parliament.uk/biographies/commons/liz-twist/4618, https://liztwist.co.uk",,Blaydon,Blaydon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Chuka Umunna,1149,3,,3,Parliament,"['33300246']",Labour,https://www.parliament.uk/biographies/commons/chuka-umunna/4128,,,Streatham,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Edward Vaizey,1150,4,,3,Parliament,"['18096679']",Conservative,https://www.parliament.uk/biographies/commons/mr-edward-vaizey/1580,,,Wantage,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Mr Shailesh Vara,"15436, 1151",4,,3,Parliament,"['1014072131666276354']",Conservative,"https://www.shaileshvara.com, https://www.parliament.uk/biographies/commons/mr-shailesh-vara/1496",,North West Cambridgeshire,North West Cambridgeshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Keith Vaz,1152,3,,3,Parliament,"['772723184311336960']",Labour,https://www.parliament.uk/biographies/commons/keith-vaz/338,,,Leicester East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Valerie Vaz,"1153, 15238",3,,3,Parliament,"['315283542']",Labour,"https://www.parliament.uk/biographies/commons/valerie-vaz/4076, https://www.valerievaz.com",,Walsall South,Walsall South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Martin Vickers,"1154, 15503",4,,3,Parliament,"['831250927']",Conservative,https://www.parliament.uk/biographies/commons/martin-vickers/3957,,Cleethorpes,Cleethorpes,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Mr Robin Walker,"15437, 1157",4,,3,Parliament,"['1978270322']",Conservative,https://www.parliament.uk/biographies/commons/mr-robin-walker/4091,,Worcester,Worcester,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Thelma Walker,1158,3,,3,Parliament,"['2575651762']",Labour,https://www.parliament.uk/biographies/commons/thelma-walker/4649,,,Colne Valley,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Ben Mr Wallace,"1159, 15467",4,,3,Parliament,"['143405324']",Conservative,"none, https://www.parliament.uk/biographies/commons/mr-ben-wallace/1539",,Wyre and Preston North,Wyre and Preston North,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +David Warburton,"1160, 15727",4,,3,Parliament,"['164208335']",Conservative,https://www.parliament.uk/biographies/commons/david-warburton/4526,,Somerton and Frome,Somerton and Frome,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Matt Warman,"15495, 1161",4,,3,Parliament,"['17685009']",Conservative,"https://www.mattwarman.net, https://www.parliament.uk/biographies/commons/matt-warman/4361",,Boston and Skegness,Boston and Skegness,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Giles Watling,"1162, 15666",4,,3,Parliament,"['37891233']",Conservative,"https://www.gileswatling.co.uk, https://www.parliament.uk/biographies/commons/giles-watling/4677",,Clacton,Clacton,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Tom Watson,1163,3,,3,Parliament,"['14190551']",Labour,https://www.parliament.uk/biographies/commons/tom-watson/1463,,,West Bromwich East,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Catherine West,"1164, 15790",3,,3,Parliament,"['351812038']",Labour,https://www.parliament.uk/biographies/commons/catherine-west/4523,,Hornsey and Wood Green,Hornsey and Wood Green,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Matt Western,"15494, 1165",3,,3,Parliament,"['243306810']",Labour,https://www.parliament.uk/biographies/commons/matt-western/4617,,Warwick and Leamington,Warwick and Leamington,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Helen Whately,"15651, 1166",4,,3,Parliament,"['130280613']",Conservative,https://www.parliament.uk/biographies/commons/helen-whately/4527,,Faversham and Mid Kent,Faversham and Mid Kent,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Heather Mrs Wheeler,"15424, 1167",4,,3,Parliament,"['21744895']",Conservative,"https://www.parliament.uk/biographies/commons/mrs-heather-wheeler/4053, https://www.heatherwheeler.org.uk",,South Derbyshire,South Derbyshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Alan Dr Whitehead,"15716, 1168",3,,3,Parliament,"['389443487']",Labour,"https://www.parliament.uk/biographies/commons/dr-alan-whitehead/62, https://alan-whitehead.org.uk/dissolution-of-parliament/",,"Southampton, Test","Southampton, Test","https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Martin Whitfield,1169,3,,3,Parliament,"['813691526']",Labour,https://www.parliament.uk/biographies/commons/martin-whitfield/4626,,,East Lothian,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Dr Philippa Whitford,"15702, 1170",6,,3,Parliament,"['2932558313']",Scottish National Party,"https://www.parliament.uk/biographies/commons/dr-philippa-whitford/4385, none",,Central Ayrshire,Central Ayrshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Craig Whittaker,"15756, 1171",4,,3,Parliament,"['134738764', '593650130']",Conservative,"https://www.craigwhittaker.org.uk, https://www.parliament.uk/biographies/commons/craig-whittaker/3940",,Calder Valley,Calder Valley,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"3, 52",51620 +John Mr Whittingdale,"1172, 15456",4,,3,Parliament,"['129569947']",Conservative,https://www.parliament.uk/biographies/commons/mr-john-whittingdale/39,,Maldon,Maldon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Bill Wiggin,"1173, 15809",4,,3,Parliament,"['496906695']",Conservative,"https://www.parliament.uk/biographies/commons/bill-wiggin/1428, none",,North Herefordshire,North Herefordshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Hywel Williams,"15645, 1174",11,,3,Parliament,"['21188077']",Plaid Cymru,https://www.parliament.uk/biographies/commons/hywel-williams/1397,,Arfon,Arfon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51901 +Paul Williams,1175,3,,3,Parliament,"['72531619']",Labour,https://www.parliament.uk/biographies/commons/dr-paul-williams/4666,,,Stockton South,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Chris Williamson,1176,3,,3,Parliament,"['49682880']",Labour,https://www.parliament.uk/biographies/commons/chris-williamson/3976,,,Derby North,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Gavin Williamson,"15671, 1177",4,,3,Parliament,"['368314502']",Conservative,"https://www.parliament.uk/biographies/commons/gavin-williamson/4108, none",,South Staffordshire,South Staffordshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Phil Wilson,1178,3,,3,Parliament,"['270926830']",Labour,https://www.parliament.uk/biographies/commons/phil-wilson/1603,,,Sedgefield,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51320 +Sammy Wilson,"1179, 15328",10,,3,Parliament,"['2979630241']",Democratic Unionist Party,"https://sammywilson.org, https://www.parliament.uk/biographies/commons/sammy-wilson/1593",,East Antrim,East Antrim,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51903 +Pete Wishart,"1181, 15372",6,,3,Parliament,"['276868661']",Scottish National Party,"https://petewishartmp.com, https://www.parliament.uk/biographies/commons/pete-wishart/1440",,Perth and North Perthshire,Perth and North Perthshire,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51902 +Sarah Wollaston,1182,4,,3,Parliament,"['460401829']",Conservative,https://www.parliament.uk/biographies/commons/dr-sarah-wollaston/4073,,,Totnes,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Mike Wood,"15477, 1183",4,,3,Parliament,"['14728535']",Conservative,"https://mikewood.mp, https://www.parliament.uk/biographies/commons/mike-wood/4384",,Dudley South,Dudley South,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +John Woodcock,1184,12,,3,Parliament,"['35305401']",Independent,https://www.parliament.uk/biographies/commons/john-woodcock/3917,,,Barrow and Furness,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3, +Mr William Wragg,"1185, 15428",4,,3,Parliament,"['1606157958']",Conservative,https://www.parliament.uk/biographies/commons/mr-william-wragg/4429,,Hazel Grove,Hazel Grove,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Jeremy Wright,1186,4,,3,Parliament,"['3226280032']",Conservative,https://www.parliament.uk/biographies/commons/jeremy-wright/1560,,,Kenilworth and Southam,https://www.parliament.uk/mps-lords-and-offices/mps/,,United Kingdom,24,3,51620 +Mohammad Yasin,"15473, 1187",3,,3,Parliament,"['887252498054033408']",Labour,"https://www.parliament.uk/biographies/commons/mohammad-yasin/4598, https://mohammadyasin.org/",,Bedford,Bedford,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Nadhim Zahawi,"15408, 1188",4,,3,Parliament,"['121127090']",Conservative,"https://www.parliament.uk/biographies/commons/nadhim-zahawi/4113, https://www.zahawi.com",,Stratford-on-Avon,Stratford-on-Avon,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51620 +Daniel Zeichner,"15740, 1189",3,,3,Parliament,"['454933267']",Labour,https://www.parliament.uk/biographies/commons/daniel-zeichner/4382,,Cambridge,Cambridge,"https://members.parliament.uk/members/Commons, https://www.parliament.uk/mps-lords-and-offices/mps/",,United Kingdom,24,"52, 3",51320 +Aydın Uslupehli̇Van,1190,14,,14,Parliament,"['2943589805']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Doğan Elif Türkmen,1191,14,,14,Parliament,"['813718705']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Fatma Güldemet Sari,1192,15,,14,Parliament,"['4264527185']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +İBrahim Özdi̇Ş,1193,14,,14,Parliament,"['2198148154']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Erdi̇Nç Mehmet Şükrü,"1194, 1743",15,,14,Parliament,"['183979676']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Beştaş Daniş Meral,"2259, 1195",16,,14,Parliament,"['1292533710']",HDP,,,"SİİRT, ADANA",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Karakaya Mevlüt,"1791, 1196",17,,14,Parliament,"['351811652']",MHP,,,"ADANA, ANKARA",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Muharrem Varli,"1197, 1744",17,,14,Parliament,"['2977996697']",MHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Necdet Ünüvar,1198,15,,14,Parliament,"['154993645']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Çeli̇K Ömer,1199,15,,14,Parliament,"['369515882']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Seyfettin Yilmaz,1200,17,,14,Parliament,"['264708131']",MHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Küçükcan Talip,1201,15,,14,Parliament,"['527926613']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +İNönü Tümer Zülfikar,1203,14,,14,Parliament,"['3155769377']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Adnan Boynukara,1204,15,,14,Parliament,"['716119470']",AK Parti,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ahmet Aydin,"1750, 1205",15,,14,Parliament,"['497735542']",AK Parti,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Behçet Yildirim,1206,16,,14,Parliament,"['3313111007']",HDP,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Firat Halil İBrahim,"1207, 1751",15,,14,Parliament,"['1035568326']",AK Parti,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Firat Salih,1208,15,,14,Parliament,"['1207985736']",AK Parti,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ali Özkaya,"1754, 1209",15,,14,Parliament,"['2309002266']",AK Parti,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Burcu Köksal,"1210, 1755",14,,14,Parliament,"['166091210']",CHP,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Dudu Hatice Özkal,1211,15,,14,Parliament,"['3070334086']",AK Parti,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Mehmet Parsak,1212,17,,14,Parliament,"['214606524']",MHP,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Eroğlu Veysel,"1759, 1213",15,,14,Parliament,"['149044403']",AK Parti,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Berdan Öztürk,"1214, 1761",16,,14,Parliament,"['3740495895']",HDP,,,AĞRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Cesim Gökçe,1215,15,,14,Parliament,"['1215150620']",AK Parti,,,AĞRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Leyla Zana,1217,16,,14,Parliament,"['2307397555']",HDP,,,AĞRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Aydoğdu Cengiz,"1218, 1765",15,,14,Parliament,"['705374632451383296']",AK Parti,,,AKSARAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +İLknur İNceöz,"1766, 1219",15,,14,Parliament,"['405900155']",AK Parti,,,AKSARAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Serdengeçti̇,1220,15,,14,Parliament,"['247855480']",AK Parti,,,AKSARAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bostanci Mehmet Naci,"1790, 1222",15,,14,Parliament,"['90854551']",AK Parti,,,"AMASYA, ANKARA",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Tuncer,"1223, 1769",14,,14,Parliament,"['3296334795']",CHP,,,AMASYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ahmet Gündoğdu,1224,15,,14,Parliament,"['839511554']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ahmet İYi̇Maya,1225,15,,14,Parliament,"['3228821009']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ahmet Haluk Koç,"1226, 1771",14,,14,Parliament,"['472330599']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ali Hakverdi̇ Haydar,"1228, 1772",14,,14,Parliament,"['2588180340']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ali Arslan İHsan,"1773, 1229",15,,14,Parliament,"['3233256544']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Aylin Nazliaka,1231,18,,14,Parliament,"['226219898']",BAĞIMSIZ,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4, +Ayşe Bi̇Lgehan Gülsün,1232,14,,14,Parliament,"['340235114']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Bülent Kuşoğlu,"1778, 1233",14,,14,Parliament,"['222959975']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Cemil Çi̇Çek,1234,15,,14,Parliament,"['1481861226']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Emrullah İŞler,"1780, 1235",15,,14,Parliament,"['251971322']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Erkan Haberal,"1236, 1781",17,,14,Parliament,"['3156851966']",MHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Aydin Ertan,1237,15,,14,Parliament,"['82574059']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Fatih Şahi̇N,"1238, 1782",15,,14,Parliament,"['145948187']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Jülide Sarieroğlu,"1740, 1239",15,,14,Parliament,"['887742723444420608']",AK Parti,,,"ADANA, ANKARA",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Gök Levent,"1240, 1788",14,,14,Parliament,"['492115635']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Lütfiye Selva Çam,"1241, 1789",15,,14,Parliament,"['311115546']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Alparslan Murat,1242,15,,14,Parliament,"['124147545']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Emi̇R Murat,"1243, 1792",14,,14,Parliament,"['3173512948']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Necati Yilmaz,1245,14,,14,Parliament,"['1482247398']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ceylan Nevzat,"1246, 1795",15,,14,Parliament,"['3162762015']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Nihat Yeşi̇L,"1796, 1247",14,,14,Parliament,"['90360058']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Süreyya Sırrı Önder,1248,16,,14,Parliament,"['930191294558810112']",HDP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Çeti̇N Şefkat,1249,17,,14,Parliament,"['1017387878']",MHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Bi̇Ngöl Tekin,"1801, 1251",14,,14,Parliament,"['804108324']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Bi̇Lgi̇N Vedat,1252,15,,14,Parliament,"['425441195']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Akdoğan Yalçın,"1802, 1253",15,,14,Parliament,"['602595758']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Tuğrul Türkeş Yıldırım,"1805, 1254",15,,14,Parliament,"['1487168742']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Topcu Zühal,1255,17,,14,Parliament,"['285229125']",MHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Ahmet Selim Yurdakul,1256,17,,14,Parliament,"['339775215']",MHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Atay Uslu,"1808, 1257",15,,14,Parliament,"['156280587']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Budak Osman Çetin,"1811, 1258",14,,14,Parliament,"['381500709']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Devrim Kök,1260,14,,14,Parliament,"['600837425']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Enç Gökcen Özdoğan,1261,15,,14,Parliament,"['270801269']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hüseyin Samani̇,1262,15,,14,Parliament,"['356710772']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Aydin İBrahim,"1815, 1263",15,,14,Parliament,"['3032470786']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Günal Mehmet,1264,17,,14,Parliament,"['225504722']",MHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Mevlüt Çavuşoğlu,1265,15,,14,Parliament,"['109226167']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Akaydin Mustafa,1266,14,,14,Parliament,"['96996787']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Köse Mustafa,"1818, 1267",15,,14,Parliament,"['479635805']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Kara Nefi Niyazi,1268,14,,14,Parliament,"['300475562']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Nur Sena Çeli̇K,"1820, 1269",15,,14,Parliament,"['3021253366']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Atalay Orhan,"1270, 1822",15,,14,Parliament,"['1292740759']",AK Parti,,,ARDAHAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Yilmaz Öztürk,"1823, 1271",14,,14,Parliament,"['742991966913331200']",CHP,,,ARDAHAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Bayraktutan Uğur,"1825, 1273",14,,14,Parliament,"['443677181']",CHP,,,ARTVİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Abdurrahman Öz,1274,15,,14,Parliament,"['600901070']",AK Parti,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bülent Tezcan,"1828, 1275",14,,14,Parliament,"['386241447']",CHP,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Deniz Depboylu,1276,17,,14,Parliament,"['1479049381']",MHP,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Erdem Mehmet,1278,15,,14,Parliament,"['251667841']",AK Parti,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Baydar Lütfi Metin,1279,14,,14,Parliament,"['264376078']",CHP,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ahmet Akin,"1281, 1835",14,,14,Parliament,"['18185406']",CHP,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ali Aydinlioğlu,1282,15,,14,Parliament,"['295314897']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +İSmail Ok,"1839, 1283","19, 18",,14,Parliament,"['1672651009']","BAĞIMSIZ, İYİ Parti",,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5", +Bostan Kasım,1284,15,,14,Parliament,"['3026601911']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Mahmut Poyrazli,1285,15,,14,Parliament,"['2261658546']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Mehmet Tüm,1286,14,,14,Parliament,"['3325122207']",CHP,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Havutça Namık,1287,14,,14,Parliament,"['281718160']",CHP,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Kirci Sema,1288,15,,14,Parliament,"['1517352517']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Tunç Yılmaz,"1844, 1290",15,,14,Parliament,"['115216315']",AK Parti,,,BARTIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ataullah Hami̇Di̇,1291,15,,14,Parliament,"['2247069719']",AK Parti,,,BATMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Acar Ayşe Başaran,"1845, 1292",16,,14,Parliament,"['802856384']",HDP,,,BATMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Ali Aslan Mehmet,1293,16,,14,Parliament,"['559103715']",HDP,,,BATMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Becerekli̇ Saadet,1294,16,,14,Parliament,"['584710677']",HDP,,,BATMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Ağbal Naci,1295,15,,14,Parliament,"['810886674']",AK Parti,,,BAYBURT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Kavcioğlu Şahap,1296,15,,14,Parliament,"['3087563195']",AK Parti,,,BAYBURT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Tüzün Yaşar,"1298, 1852",14,,14,Parliament,"['2233223984']",CHP,,,BİLECİK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Cevdet Yilmaz,"1299, 1853",15,,14,Parliament,"['986911464']",AK Parti,,,BİNGÖL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Hişyar Özsoy,"1907, 1301",16,,14,Parliament,"['3153334811']",HDP,,,"BİNGÖL, DİYARBAKIR",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Irgat Mizgin,1303,16,,14,Parliament,"['790987330035281920']",HDP,,,BİTLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Demi̇Röz Vedat,"2068, 1304",15,,14,Parliament,"['283709733']",AK Parti,,,"BİTLİS, İSTANBUL",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ali Ercoşkun,1305,15,,14,Parliament,"['268968562']",AK Parti,,,BOLU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Fehmi Küpçü,"1306, 1860",15,,14,Parliament,"['477693990']",AK Parti,,,BOLU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Tanju Özcan,"1861, 1307",14,,14,Parliament,"['441836613']",CHP,,,BOLU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Bayram Özçeli̇K,"1308, 1862",15,,14,Parliament,"['445531331']",AK Parti,,,BURDUR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Göker Mehmet,"1309, 1863",14,,14,Parliament,"['3370821759']",CHP,,,BURDUR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Petek Reşat,1310,15,,14,Parliament,"['176112830']",AK Parti,,,BURDUR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bennur Karaburun,1311,15,,14,Parliament,"['335840936']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ceyhun İRgi̇L,1313,14,,14,Parliament,"['322637532']",CHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ala Efkan,"1314, 1868",15,,14,Parliament,"['1318916166']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Emine Gözgeç Yavuz,"1869, 1315",15,,14,Parliament,"['1662998840']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Aydin Erkan,"1316, 1870",14,,14,Parliament,"['492173294']",CHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Hakan Çavuşoğlu,"1871, 1317",15,,14,Parliament,"['340276050']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Aydin İSmail,1319,15,,14,Parliament,"['1557729254']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Büyükataman İSmet,"1873, 1320",17,,14,Parliament,"['539006164']",MHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Kadir Koçdemi̇R,1321,17,,14,Parliament,"['465035674']",MHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Karabiyik Lale,"1874, 1322",14,,14,Parliament,"['293604809']",CHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Altaca Kayişoğlu Nurhayat,"1325, 1878",14,,14,Parliament,"['101692365']",CHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Orhan Saribal,"1326, 1879",14,,14,Parliament,"['2979105539']",CHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Bi̇Rkan Zekeriya,1328,15,,14,Parliament,"['3044835988']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ayhan Gi̇Der,1329,15,,14,Parliament,"['472465258']",AK Parti,,,ÇANAKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bülent Öz,1330,14,,14,Parliament,"['220359152']",CHP,,,ÇANAKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Bülent Turan,"1885, 1331",15,,14,Parliament,"['201339405']",AK Parti,,,ÇANAKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Erkek Muharrem,"1332, 1887",14,,14,Parliament,"['492162539']",CHP,,,ÇANAKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Fi̇Li̇Z Hüseyin İMam,"1948, 1333","15, 19",,14,Parliament,"['1116377042']","AK Parti, İYİ Parti",,,"GAZİANTEP, ÇANKIRI",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akbaşoğlu Emin Muhammet,"1334, 1889",15,,14,Parliament,"['3044714638']",AK Parti,,,ÇANKIRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ahmet Ceylan Sami,"1335, 1891",15,,14,Parliament,"['2234842806']",AK Parti,,,ÇORUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Salim Uslu,1337,15,,14,Parliament,"['2776168815']",AK Parti,,,ÇORUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Köse Tufan,"1338, 1894",14,,14,Parliament,"['272578129']",CHP,,,ÇORUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Cahit Özkan,"1896, 1339",15,,14,Parliament,"['278472416']",AK Parti,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ayhan Emin Haluk,1340,17,,14,Parliament,"['325416444']",MHP,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Arslan Kazım,"1341, 1899",14,,14,Parliament,"['3078236158']",CHP,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Basmaci Melike,1342,14,,14,Parliament,"['1555601071']",CHP,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Nihat Zeybekci̇,1343,15,,14,Parliament,"['283080153']",AK Parti,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ti̇N Şahin,"1345, 1901",15,,14,Parliament,"['3028923358']",AK Parti,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Altan Tan,1346,16,,14,Parliament,"['3052591295']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Demi̇Rel Çağlar,1347,16,,14,Parliament,"['2706921675']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Bal Ebubekir,"1348, 1905",15,,14,Parliament,"['736242416198508544']",AK Parti,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Feleknas Uca,"1846, 1349",16,,14,Parliament,"['257406853']",HDP,,,"DİYARBAKIR, BATMAN",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +İMam Taşçier,"1908, 1351",16,,14,Parliament,"['773811853']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Ensari̇Oğlu Galip Mehmet,1352,15,,14,Parliament,"['596446392']",AK Parti,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Sibel Yi̇Ği̇Talp,1354,16,,14,Parliament,"['228163594']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Pi̇R Ziya,1355,16,,14,Parliament,"['104661012']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Ayşe Keşi̇R,"1356, 1915",15,,14,Parliament,"['228446708']",AK Parti,,,DÜZCE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Faruk Özlü,1357,15,,14,Parliament,"['3439001950']",AK Parti,,,DÜZCE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bi̇Rcan Erdin,"1918, 1359",14,,14,Parliament,"['245511816']",CHP,,,EDİRNE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Gaytancioğlu Okan,"1360, 1920",14,,14,Parliament,"['219982547']",CHP,,,EDİRNE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Açikkapi Ejder,1362,15,,14,Parliament,"['1178639449']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bulut Metin,"1363, 1923",15,,14,Parliament,"['397378836']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Serdar Ömer,1364,15,,14,Parliament,"['276996759']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Tahir Öztürk,1365,15,,14,Parliament,"['260465398']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bayram Serkan,"1367, 2060",15,,14,Parliament,"['295081302']",AK Parti,,,"ERZİNCAN, İSTANBUL",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Aydemi̇R İBrahim,"1368, 1929",15,,14,Parliament,"['167469408']",AK Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Aydin Kamil,"1930, 1369",17,,14,Parliament,"['2232989053']",MHP,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Ilicali Mustafa,1370,15,,14,Parliament,"['540837233']",AK Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Deli̇Göz Orhan,1371,15,,14,Parliament,"['3699843442']",AK Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Akdağ Recep,"1372, 1932",15,,14,Parliament,"['717692461']",AK Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Taşkesenli̇Oğlu Zehra,"1373, 1934",15,,14,Parliament,"['548556347']",AK Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Cemal Okan Yüksel,1374,14,,14,Parliament,"['150368622']",CHP,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Emine Günay Nur,"1936, 1375",15,,14,Parliament,"['3135299947']",AK Parti,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Gaye Usluer,1376,14,,14,Parliament,"['216471007']",CHP,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Harun Karacan,"1937, 1377",15,,14,Parliament,"['98396809']",AK Parti,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Utku Çakirözer,"1379, 1941",14,,14,Parliament,"['17137978']",CHP,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Abdulhamit Gül,1380,15,,14,Parliament,"['155534196']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Abdullah Koçer Nejat,"1942, 1381",15,,14,Parliament,"['216106605']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ahmet Uzer,"1943, 1382",15,,14,Parliament,"['1528442533']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akif Eki̇Ci̇,1383,14,,14,Parliament,"['2272718228']",CHP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Canan Candemi̇R Çeli̇K,1384,15,,14,Parliament,"['1487756959']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Mahmut Toğrul,"1950, 1385",16,,14,Parliament,"['398065977']",HDP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Erdoğan Mehmet,"1386, 1951, 1630","15, 17",,14,Parliament,"['431641369', '380373022']","MHP, AK Parti",,,"GAZİANTEP, MUĞLA",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 4, 5","74712, 74628" +Gökdağ Mehmet,1387,14,,14,Parliament,"['215809146']",CHP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Tayyar Şamil,1389,15,,14,Parliament,"['462921513']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Özdağ Ümit,"2067, 1390","19, 18",,14,Parliament,"['214930248']","BAĞIMSIZ, İYİ Parti",,,"İSTANBUL, GAZİANTEP",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5", +Bektaşoğlu Bülent Yener,1391,14,,14,Parliament,"['3179845288']",CHP,,,GİRESUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Cani̇Kli̇ Nurettin,"2049, 1393",15,,14,Parliament,"['3677470275']",AK Parti,,,"İSTANBUL, GİRESUN",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Sabri Öztürk,"1394, 1958",15,,14,Parliament,"['1631568816']",AK Parti,,,GİRESUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Cihan Pektaş,"1395, 1959",15,,14,Parliament,"['1593377418']",AK Parti,,,GÜMÜŞHANE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akgül Hacı Osman,"1960, 1396",15,,14,Parliament,"['2961879346']",AK Parti,,,GÜMÜŞHANE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Abdullah Zeydan,1397,16,,14,Parliament,"['3362389017']",HDP,,,HAKKARİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Akdoğan Nihat,1398,16,,14,Parliament,"['3149229957']",HDP,,,HAKKARİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Irmak Selma,1399,16,,14,Parliament,"['3297817811']",HDP,,,HAKKARİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Adem Yeşi̇Ldal,1400,15,,14,Parliament,"['1568992358']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Birol Ertem,1401,14,,14,Parliament,"['2967487395']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Fevzi Şanverdi̇,1402,15,,14,Parliament,"['3795620007']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bayram Hacı Türkoğlu,"1966, 1403",15,,14,Parliament,"['281020745']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Hilmi Yarayici,1404,14,,14,Parliament,"['249119981']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Mehmet Öntürk,1405,15,,14,Parliament,"['440813977']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Dudu Mevlüt,1407,14,,14,Parliament,"['30873151']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Serkan Topal,"1409, 1973",14,,14,Parliament,"['3331837174']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Adiyaman Emin Mehmet,1410,16,,14,Parliament,"['3385797299']",HDP,,,IĞDIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Aras Nurettin,1411,15,,14,Parliament,"['2475594248']",AK Parti,,,IĞDIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bakir İRfan,1412,14,,14,Parliament,"['337927957']",CHP,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Nuri Okutan,1413,18,,14,Parliament,"['3034777359']",BAĞIMSIZ,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4, +Sait Yüce,1414,15,,14,Parliament,"['1168645010']",AK Parti,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bi̇Lgi̇Ç Sadi Süreyya,"1980, 1415",15,,14,Parliament,"['3170535531']",AK Parti,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ahmet Berat Çonkar,"1985, 1417",15,,14,Parliament,"['269839336']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ahmet Hamdi Çamli,"1418, 1986",15,,14,Parliament,"['198816523']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ali Özcan,1419,14,,14,Parliament,"['2845493183']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ali Şeker,"1420, 1992",14,,14,Parliament,"['214856284']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Arzu Erdem,"1421, 1993",17,,14,Parliament,"['3071570176']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Atila Kaya,1422,17,,14,Parliament,"['1920500839']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Aykut Erdoğdu,"1423, 1994",14,,14,Parliament,"['262063267']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Azmi Eki̇Nci̇,1426,15,,14,Parliament,"['295650640']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Barış Yarkadaş,1427,14,,14,Parliament,"['76691248']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Albayrak Berat,1428,15,,14,Parliament,"['3160777371']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Burhan Kuzu,1430,15,,14,Parliament,"['138892081']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Adan Celal,"1997, 1431",17,,14,Parliament,"['1560099350']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Celal Doğan,1432,16,,14,Parliament,"['3190589409']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Didem Engi̇N,1433,14,,14,Parliament,"['264789274']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ali Durmuş Sarikaya,1434,15,,14,Parliament,"['172048868']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Dursun Çi̇Çek,1435,14,,14,Parliament,"['2828377500']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Edip Semih Yalçin,"1436, 2000",17,,14,Parliament,"['405513581']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Ekmeleddin İHsanoğlu Mehmet,1437,17,,14,Parliament,"['2719424493']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Ekrem Erdem,1438,15,,14,Parliament,"['283070704']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Altay Engin,"2003, 1439",14,,14,Parliament,"['545965017']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Erdoğan Toprak,"2004, 1441",14,,14,Parliament,"['304942388']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Erdem Eren,1442,14,,14,Parliament,"['240601558']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Erkan Kandemi̇R,"2006, 1443",15,,14,Parliament,"['86621872']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Erol Kaya,"1444, 2008",15,,14,Parliament,"['280660563']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Benli̇ Fatma,1445,15,,14,Parliament,"['2202336802']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Betül Fatma Kaya Sayan,"1446, 2012",15,,14,Parliament,"['145941531']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Feyzullah Kiyiklik,1447,15,,14,Parliament,"['260706834']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Demi̇R Filiz Keresteci̇Oğlu,"1783, 1448",16,,14,Parliament,"['1468227864']",HDP,,,"İSTANBUL, ANKARA",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Akkuş Gamze İLgezdi̇,"1449, 2015",14,,14,Parliament,"['4134508697']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Garo Paylan,"1450, 1906",16,,14,Parliament,"['81161411']",HDP,,,"İSTANBUL, DİYARBAKIR",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Gülay Yedekci̇,1451,14,,14,Parliament,"['411395099']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Gürsel Teki̇N,"2017, 1452",14,,14,Parliament,"['163020501']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Dalkiliç Halis,"2019, 1453",15,,14,Parliament,"['232134649']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Harun Karaca,1454,15,,14,Parliament,"['2503871082']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hasan Sert,1455,15,,14,Parliament,"['264907328']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hasan Turan,"2020, 1456",15,,14,Parliament,"['306705942']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Hayati Yazici,"1457, 2240",15,,14,Parliament,"['1600967762']",AK Parti,,,"İSTANBUL, RİZE",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ali Haydar Yildiz,1458,15,,14,Parliament,"['1458157519']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hulusi Şentürk,"2023, 1459",15,,14,Parliament,"['1729924778']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Hüda Kaya,"1461, 2024",16,,14,Parliament,"['2803027408']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Bürge Hüseyin,1462,15,,14,Parliament,"['73785262']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ci̇Haner İLhan,1463,14,,14,Parliament,"['187641987']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +İLhan Kesi̇Ci̇,"2027, 1464",14,,14,Parliament,"['121052401']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +İSmail Kahraman,1465,15,,14,Parliament,"['541024754']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Aksu Faruk İSmail,"1466, 2028",17,,14,Parliament,"['3111180809']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +İZzet Ulvi Yönter,"2030, 1468",17,,14,Parliament,"['4472008409']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Mahmut Tanal,"1470, 2032",14,,14,Parliament,"['381416280']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Eseyan Markar,"1471, 2033",15,,14,Parliament,"['40523038']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mehmet Meti̇Ner,1473,15,,14,Parliament,"['2924871509']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Mehmet Muş,"1474, 2035",15,,14,Parliament,"['207085169']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akif Hamzaçebi̇ Mehmet,"2036, 1475",14,,14,Parliament,"['707159762']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ali Mehmet Pulcu,1476,15,,14,Parliament,"['1544049488']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Eker Mehdi Mehmet,"1478, 1909",15,,14,Parliament,"['3832541236']",AK Parti,,,"İSTANBUL, DİYARBAKIR",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Külünk Metin,1479,15,,14,Parliament,"['1321952677']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Belma Mihrimah Satir,"1480, 2039",15,,14,Parliament,"['281656898']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Şentop,"2292, 1482",15,,14,Parliament,"['226219067']",AK Parti,,,"İSTANBUL, TEKİRDAĞ",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Yeneroğlu,"1483, 2043",15,,14,Parliament,"['291368363']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Sezgin Tanrikulu,"1484, 2044",14,,14,Parliament,"['311941597']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Nebati̇ Nureddin,1486,15,,14,Parliament,"['3065996027']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Kaan Oğuz Salici,"1487, 2050",14,,14,Parliament,"['282066211']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Adigüzel Onursal,"1488, 2051",14,,14,Parliament,"['213574443']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Boyraz Osman,"1489, 2052",15,,14,Parliament,"['291960146']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Buldan Pervin,"1490, 2055",16,,14,Parliament,"['385576286']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Kan Kavakci Ravza,"1491, 2056",15,,14,Parliament,"['2164881932']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Demi̇Rtaş Selahattin,1492,16,,14,Parliament,"['224609329']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Doğan Selina,1493,14,,14,Parliament,"['4350629955']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Serap Yaşar,"2059, 1494",15,,14,Parliament,"['285700060']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Sibel Özdemi̇R,"2061, 1495",14,,14,Parliament,"['3784066456']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ayata Sencer Süleyman,1496,14,,14,Parliament,"['154157629']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Pavey Şafak,1497,14,,14,Parliament,"['286712900']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ünal Şirin,"1498, 2063",15,,14,Parliament,"['555956295']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Kaynarca Tülay,"2065, 1499",15,,14,Parliament,"['296398329']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Bozkir Volkan,"1500, 2069",15,,14,Parliament,"['237765532']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akkaya Yakup,1501,14,,14,Parliament,"['2812824918']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Seferi̇Noğlu Yıldız,1502,15,,14,Parliament,"['2964058096']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Emre Zeynel,"2074, 1503",14,,14,Parliament,"['1314173346']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ahmet Kenan Tanrikulu,1504,17,,14,Parliament,"['1400093408']",MHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Ahmet Tuncay Özkan,"1505, 2077",14,,14,Parliament,"['268950955']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ali Yi̇Ği̇T,1506,14,,14,Parliament,"['1430749140']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Atila Sertel,"2078, 1507",14,,14,Parliament,"['547552759']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Aytun Çiray,"2079, 1508","19, 14",,14,Parliament,"['2816737247']","İYİ Parti, CHP",,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Binali Yildirim,"1509, 2081",15,,14,Parliament,"['885222182']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ertuğrul Kürkcü,1510,16,,14,Parliament,"['280946235']",HDP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Fatma Hotar Nükhet Seniha,1511,15,,14,Parliament,"['3193995052']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Dağ Hamza,"1512, 2087",15,,14,Parliament,"['245921099']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +İBrahim Mustafa Turhan,1514,15,,14,Parliament,"['3067516330']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Kamil Okyay Sindir,"2089, 1515",14,,14,Parliament,"['97679847']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Kemal Kiliçdaroğlu,"1516, 2091",14,,14,Parliament,"['154140901']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ali Kerem Sürekli̇,1517,15,,14,Parliament,"['516904258']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Atilla Kaya Mahmut,"1518, 2093",15,,14,Parliament,"['465900536']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Bakan Murat,"2095, 1519",14,,14,Parliament,"['3043691250']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Musa Çam,1520,14,,14,Parliament,"['338969642']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ali Balbay Mustafa,1521,14,,14,Parliament,"['367967682']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Doğan Müslüm,1522,16,,14,Parliament,"['2382170311']",HDP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Kalkan Necip,1523,15,,14,Parliament,"['2305536805']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Oktay Vural,1524,17,,14,Parliament,"['157927226']",MHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Purçu Özcan,"2098, 1525",14,,14,Parliament,"['3021299620']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Böke Sayek Selin,"2099, 1526",14,,14,Parliament,"['80531038']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Bayir Tacettin,"2102, 1527",14,,14,Parliament,"['213298580']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Altiok Zeynep,1529,14,,14,Parliament,"['106720937']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Celalettin Güvenç,"2107, 1530",15,,14,Parliament,"['824749884']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Fahrettin Oğuz Tor,1531,17,,14,Parliament,"['3156559966']",MHP,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +İMran Kiliç,"2109, 1532",15,,14,Parliament,"['4212358247']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mahir Ünal,"1533, 2110",15,,14,Parliament,"['226685119']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +İLker Mehmet Çi̇Ti̇L,1534,15,,14,Parliament,"['353070098']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Di̇Li̇Pak Mehmet Uğur,1535,15,,14,Parliament,"['506408349']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Nursel Reyhanlioğlu,1536,15,,14,Parliament,"['1651500799']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Kaynak Veysi,1537,15,,14,Parliament,"['230166314']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Burhanettin Uysal,1538,15,,14,Parliament,"['2787740510']",AK Parti,,,KARABÜK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ali Mehmet Şahi̇N,1539,15,,14,Parliament,"['4733763574']",AK Parti,,,KARABÜK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Konuk Recep,1540,15,,14,Parliament,"['248658684']",AK Parti,,,KARAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Recep Şeker,"1541, 2117",15,,14,Parliament,"['856226174']",AK Parti,,,KARAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ahmet Arslan,"1542, 2119",15,,14,Parliament,"['265967403']",AK Parti,,,KARS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ayhan Bi̇Lgen,"2120, 1543",16,,14,Parliament,"['291028871']",HDP,,,KARS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Beyri̇Bey Selahattin Yusuf,1544,15,,14,Parliament,"['2176899007']",AK Parti,,,KARS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Demi̇R Murat,1547,15,,14,Parliament,"['257152957']",AK Parti,,,KASTAMONU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Arik Çetin,"1548, 2125",14,,14,Parliament,"['285163948']",CHP,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Hülya Nergi̇S,"2127, 1549",15,,14,Parliament,"['3730527255']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +İSmail Tamer,"1550, 2129",15,,14,Parliament,"['544376108']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Emrah İSmail Karayel,"2130, 1551",15,,14,Parliament,"['1284238940']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mehmet Özhaseki̇,"2131, 1552",15,,14,Parliament,"['580044071']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Dedeoğlu Sami,1554,15,,14,Parliament,"['3993312911']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Taner Yildiz,"1555, 2134",15,,14,Parliament,"['355865493']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Halaçoğlu Yusuf,1556,18,,14,Parliament,"['234356692']",BAĞIMSIZ,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4, +Abdullah Öztürk,1557,15,,14,Parliament,"['573771511']",AK Parti,,,KIRIKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Demi̇R Mehmet,1558,15,,14,Parliament,"['838360375']",AK Parti,,,KIRIKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Can Ramazan,"1559, 2137",15,,14,Parliament,"['3232864769']",AK Parti,,,KIRIKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mi̇Nsolmaz Selahattin,"1560, 2138",15,,14,Parliament,"['737250368']",AK Parti,,,KIRKLARELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Kayan Türabi,"1561, 2139",14,,14,Parliament,"['1667813030']",CHP,,,KIRKLARELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Gündoğdu Vecdi,"1562, 2140",14,,14,Parliament,"['3367695521']",CHP,,,KIRKLARELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Arslan Mikail,1563,15,,14,Parliament,"['2742816914']",AK Parti,,,KIRŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Polat Reşit,1566,15,,14,Parliament,"['1899433327']",AK Parti,,,KİLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Cemil Yaman,"1567, 2145",15,,14,Parliament,"['256512810']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Fatma Hürri̇Yet Kaplan,"2147, 1568",14,,14,Parliament,"['76725707']",CHP,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Fikri Işik,"1569, 2148",15,,14,Parliament,"['180332824']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akar Haydar,"1570, 2149",14,,14,Parliament,"['287169431']",CHP,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Akif Mehmet Yilmaz,"2152, 1572",15,,14,Parliament,"['3037304259']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Katircioğlu Radiye Sezer,"1573, 2154",15,,14,Parliament,"['3101756981']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Saffet Sancakli,"2155, 1574",17,,14,Parliament,"['230119360']",MHP,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Sami Çakir,"1575, 2156",15,,14,Parliament,"['354980383']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Tahsin Tarhan,"2157, 1576",14,,14,Parliament,"['268192154']",CHP,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Aygün Zeki,1577,15,,14,Parliament,"['259981505']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ahmet Davutoğlu,1579,15,,14,Parliament,"['181567076']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ahmet Sorgun,"2161, 1580",15,,14,Parliament,"['3685093156']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ahmet Hacı Özdemi̇R,"2165, 1581",15,,14,Parliament,"['210901544']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Etyemez Halil,"2166, 1582",15,,14,Parliament,"['263830566']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Erdoğan Hüsnüye,1583,15,,14,Parliament,"['3033346047']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Leyla Usta Şahi̇N,"1584, 2167",15,,14,Parliament,"['3025338878']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Babaoğlu Mehmet,1585,15,,14,Parliament,"['124995603']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Baloğlu Mustafa,1587,15,,14,Parliament,"['279126844']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bozkurt Hüsnü Mustafa,1589,14,,14,Parliament,"['361118018']",CHP,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Altunyaldiz Ziya,"2172, 1591",15,,14,Parliament,"['1445709277']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Gazel İShak,"2177, 1593",15,,14,Parliament,"['179453842']",AK Parti,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Nazli Şükrü,1594,15,,14,Parliament,"['476941366']",AK Parti,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Kavuncu Vural,1595,15,,14,Parliament,"['83762614']",AK Parti,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bülent Tüfenkci̇,"1596, 2179",15,,14,Parliament,"['1091640270']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mustafa Şahi̇N,1597,15,,14,Parliament,"['565626169']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Nurettin Yaşar,1598,15,,14,Parliament,"['3182850214']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Çalik Öznur,"1599, 2182",15,,14,Parliament,"['229637054']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Taha Özhan,1600,15,,14,Parliament,"['153769041']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ağbaba Veli,"1601, 2183",14,,14,Parliament,"['98080974']",CHP,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Akçay Erkan,"1602, 2186",17,,14,Parliament,"['1487245633']",MHP,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Bi̇Len İSmail,"2187, 1603",15,,14,Parliament,"['4259008427']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Mazlum Nurlu,1604,14,,14,Parliament,"['336463020']",CHP,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Baybatur Murat,"2189, 1605",15,,14,Parliament,"['1462396794']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Özel Özgür,"1606, 2190",14,,14,Parliament,"['229515050']",CHP,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Berber Recai,1607,15,,14,Parliament,"['3199201383']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Selçuk Özdağ,1608,15,,14,Parliament,"['276958992']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Bi̇Çer Tur Yildiz,1609,14,,14,Parliament,"['169172894']",CHP,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Aydemi̇R Uğur,"1610, 2193",15,,14,Parliament,"['364339889']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ali Atalan,1611,16,,14,Parliament,"['3110331485']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Bölünmez Ceyda Çankiri,"1612, 2083",15,,14,Parliament,"['4217533865']",AK Parti,,,"MARDİN, İZMİR",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Dora Erol,1613,16,,14,Parliament,"['2178290473']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Gülser Yildirim,1614,16,,14,Parliament,"['768131000']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Mithat Sancar,"2196, 1615",16,,14,Parliament,"['367377070']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Mi̇Roğlu Orhan,1616,15,,14,Parliament,"['908343776107794433']",AK Parti,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ali Cumhur Taşkin,"1617, 2200",15,,14,Parliament,"['446278280']",AK Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Atici Aytuğ,1618,14,,14,Parliament,"['273502085']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Baki Şi̇Mşek,"1619, 2203",17,,14,Parliament,"['3055572752']",MHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Dengir Firat Mehmet Mir,1620,16,,14,Parliament,"['3095453967']",HDP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Durmuş Fikri Sağlar,1621,14,,14,Parliament,"['390342611']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Hacı Özkan,"1622, 2207",15,,14,Parliament,"['4784309718']",AK Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Hüseyin Çamak,1623,14,,14,Parliament,"['1277286792']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Elvan Lütfi,"1624, 2208",15,,14,Parliament,"['2262866341']",AK Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Oktay Öztürk,1625,17,,14,Parliament,"['1484783244']",MHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Kuyucuoğlu Serdal,1626,14,,14,Parliament,"['869325224']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Tezcan Yılmaz,1627,15,,14,Parliament,"['233247340']",AK Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Akın Üstündağ,1628,14,,14,Parliament,"['523589010']",CHP,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Nihat Öztürk,1631,15,,14,Parliament,"['367381861']",AK Parti,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Demi̇R Nurettin,1632,14,,14,Parliament,"['264422961']",CHP,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Aldan Süha Ömer,1633,14,,14,Parliament,"['857751612']",CHP,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Ahmet Yildirim,1634,16,,14,Parliament,"['3071173073']",HDP,,,MUŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Burcu Çeli̇K,1635,16,,14,Parliament,"['177542328']",HDP,,,MUŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Emin Mehmet Şi̇Mşek,"2221, 1636",15,,14,Parliament,"['3144351226']",AK Parti,,,MUŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ebubekir Gi̇Zli̇Gi̇Der,1637,15,,14,Parliament,"['2909071853']",AK Parti,,,NEVŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Göktürk Murat,1638,15,,14,Parliament,"['1491205494']",AK Parti,,,NEVŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Açikgöz Mustafa,"1639, 2225",15,,14,Parliament,"['2787453897']",AK Parti,,,NEVŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Erdoğan Özegen,1641,15,,14,Parliament,"['3064036168']",AK Parti,,,NİĞDE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Fethi Gürer Ömer,"1642, 2227",14,,14,Parliament,"['451343108']",CHP,,,NİĞDE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Ergün Taşci,"2231, 1643",15,,14,Parliament,"['847133977517457408']",AK Parti,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Gündoğdu Metin,"1644, 2232",15,,14,Parliament,"['870374882']",AK Parti,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Kurtulmuş Numan,"1645, 2048",15,,14,Parliament,"['34350322']",AK Parti,,,"İSTANBUL, ORDU",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Oktay Çanak,1646,15,,14,Parliament,"['2885519392']",AK Parti,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Seyit Torun,"2234, 1647",14,,14,Parliament,"['347075208']",CHP,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Bahçeli̇ Devlet,"1648, 2237",17,,14,Parliament,"['214017108']",MHP,,,OSMANİYE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Durmuşoğlu Mücahit,"2239, 1649",15,,14,Parliament,"['145683544']",AK Parti,,,OSMANİYE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ersoy Ruhi,1650,17,,14,Parliament,"['623808235']",MHP,,,OSMANİYE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Suat Önal,1651,15,,14,Parliament,"['417708633']",AK Parti,,,OSMANİYE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hasan Karal,1652,15,,14,Parliament,"['783569531033817088']",AK Parti,,,RİZE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ayar Hikmet,1653,15,,14,Parliament,"['2355368126']",AK Parti,,,RİZE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Aşkın Bak Osman,"1654, 2242",15,,14,Parliament,"['2164886426']",AK Parti,,,RİZE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ali İHsan Yavuz,"2243, 1655",15,,14,Parliament,"['218424102']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ayhan Sefer Üstün,1656,15,,14,Parliament,"['1926447882']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Engin Özkoç,"1657, 2245",14,,14,Parliament,"['221790511']",CHP,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +İSen Mustafa,1658,15,,14,Parliament,"['861427675']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Recep Uncuoğlu,"2248, 1659",15,,14,Parliament,"['449521238']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Di̇Şli̇ Şaban,1660,15,,14,Parliament,"['162102916']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Açba Zihni,1661,17,,14,Parliament,"['398660560']",MHP,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74712 +Ahmet Demi̇Rcan,"2250, 1662",15,,14,Parliament,"['3192564381']",AK Parti,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akif Kiliç Çağatay,"1663, 1989",15,,14,Parliament,"['2216942136']",AK Parti,,,"SAMSUN, İSTANBUL",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Karaaslan Çiğdem,"2252, 1664",15,,14,Parliament,"['244107189']",AK Parti,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Erhan Usta,"2253, 1665",17,,14,Parliament,"['2865550945']",MHP,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74712 +Fuat Köktaş,"1666, 2254",15,,14,Parliament,"['1008852967']",AK Parti,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Basri Hasan Kurt,1667,15,,14,Parliament,"['144798984']",AK Parti,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hayati Teki̇N,1668,14,,14,Parliament,"['3419940737']",CHP,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Kemal Zeybek,"2255, 1669",14,,14,Parliament,"['2241596925']",CHP,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Kircali Orhan,"2257, 1670",15,,14,Parliament,"['3031171907']",AK Parti,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Kadri Yildirim,1671,16,,14,Parliament,"['763640733916160000']",HDP,,,SİİRT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Aktay Yasin,1672,15,,14,Parliament,"['185376138']",AK Parti,,,SİİRT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Barış Karadeni̇Z,"1673, 2262",14,,14,Parliament,"['226587468']",CHP,,,SİNOP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Mavi̇Ş Nazım,"2263, 1674",15,,14,Parliament,"['285599626']",AK Parti,,,SİNOP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Akyildiz Ali,1675,14,,14,Parliament,"['253916849']",CHP,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Bi̇Lgi̇N Hilmi,1676,15,,14,Parliament,"['486852758']",AK Parti,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +İSmet Yilmaz,"2265, 1677",15,,14,Parliament,"['2270165869']",AK Parti,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Habib Mehmet Soluk,"2266, 1678",15,,14,Parliament,"['718750259']",AK Parti,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Dursun Selim,1679,15,,14,Parliament,"['3029890878']",AK Parti,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ahmet Eşref Fakibaba,"1680, 2270",15,,14,Parliament,"['3152745814']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Dilek Öcalan,1681,16,,14,Parliament,"['3197118467']",HDP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Faruk Çeli̇K,1682,15,,14,Parliament,"['492163600']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Halil Özcan,"2273, 1683",15,,14,Parliament,"['1545452335']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Halil İBrahim Yildiz,"1685, 2276",15,,14,Parliament,"['1627828717']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Kemalettin Yilmazteki̇N,1686,15,,14,Parliament,"['855184693']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Kaçar Mahmut,1687,15,,14,Parliament,"['1479452054']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Akyürek Mehmet,1688,15,,14,Parliament,"['1632532027']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ali Cevheri̇ Mehmet,"2277, 1689",15,,14,Parliament,"['3697574715']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Baydemi̇R Osman,1691,16,,14,Parliament,"['173734836']",HDP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Aycan İRmez,1692,16,,14,Parliament,"['1174477046']",HDP,,,ŞIRNAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Encu Ferhat,1693,16,,14,Parliament,"['296142504']",HDP,,,ŞIRNAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Bi̇Rli̇K Leyla,1694,16,,14,Parliament,"['3564805156']",HDP,,,ŞIRNAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Ayşe Doğan,1695,15,,14,Parliament,"['3150823720']",AK Parti,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Candan Yüceer,"2287, 1696",14,,14,Parliament,"['343402258']",CHP,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Emre Köprülü,1697,14,,14,Parliament,"['266465955']",CHP,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Faik Öztrak,"1698, 2290",14,,14,Parliament,"['459124953']",CHP,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Akgün Metin,1699,15,,14,Parliament,"['3061521029']",AK Parti,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Mustafa Yel,"2293, 1700",15,,14,Parliament,"['2161985859']",AK Parti,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Celil Göçer,1701,15,,14,Parliament,"['247206480']",AK Parti,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Coşkun Çakir,1702,15,,14,Parliament,"['3161272803']",AK Parti,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Durmaz Kadim,"2294, 1703",14,,14,Parliament,"['3061617953']",CHP,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Beyazit Yusuf,"2297, 1704",15,,14,Parliament,"['3710390297']",AK Parti,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Aslan Zeyid,1705,15,,14,Parliament,"['3742268177']",AK Parti,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Adnan Günnar,"1706, 2299",15,,14,Parliament,"['96839957']",AK Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ayşe Köseoğlu Sula,1707,15,,14,Parliament,"['100341775']",AK Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Haluk Pekşen,1708,14,,14,Parliament,"['382051426']",CHP,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Balta Muhammet,"2303, 1709",15,,14,Parliament,"['571264584']",AK Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Cora Salih,"2304, 1710",15,,14,Parliament,"['792534068']",AK Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Soylu Süleyman,1711,15,,14,Parliament,"['18971997']",AK Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Alican Önlü,"1712, 2305",16,,14,Parliament,"['3169650988']",HDP,,,TUNCELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Erol Gürsel,"1713, 1922",14,,14,Parliament,"['2958418811']",CHP,,,"TUNCELİ, ELAZIĞ",,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Alim Tunç,1714,15,,14,Parliament,"['255706635']",AK Parti,,,UŞAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Altay Mehmet,"1715, 2308",15,,14,Parliament,"['993421747']",AK Parti,,,UŞAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Yalim Özkan,"2309, 1716",14,,14,Parliament,"['2972639925']",CHP,,,UŞAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Adem Geveri̇,1717,16,,14,Parliament,"['3144694029']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Bedia Ertan Özgökçe,"1718, 2311",16,,14,Parliament,"['1550101844']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74210 +Atalay Beşir,1719,15,,14,Parliament,"['2148959436']",AK Parti,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Burhan Kayatürk,1720,15,,14,Parliament,"['472005562']",AK Parti,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Botan Lezgin,1721,16,,14,Parliament,"['3189777586']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Nadir Yildirim,1722,16,,14,Parliament,"['3863054608']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74210 +Demi̇Rel Fikri,1723,15,,14,Parliament,"['3149419720']",AK Parti,,,YALOVA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +İNce Muharrem,1724,14,,14,Parliament,"['182317200']",CHP,,,YALOVA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Bekir Bozdağ,"1726, 2322",15,,14,Parliament,"['425819395']",AK Parti,,,YOZGAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Ertuğrul Soysal,1727,15,,14,Parliament,"['455176653']",AK Parti,,,YOZGAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Başer Yusuf,"1728, 2324",15,,14,Parliament,"['473896369']",AK Parti,,,YOZGAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74628 +Faruk Çaturoğlu,1729,15,,14,Parliament,"['493809530']",AK Parti,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Hüseyin Özbakir,1730,15,,14,Parliament,"['3067790741']",AK Parti,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Ulupinar Özcan,1731,15,,14,Parliament,"['450826263']",AK Parti,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74628 +Turpcu Şerafettin,1732,14,,14,Parliament,"['815595251389829120']",CHP,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,4,74321 +Demi̇Rtaş Ünal,"1733, 2329",14,,14,Parliament,"['419654154']",CHP,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,"4, 5",74321 +Abdullah Doğru,1734,15,,14,Parliament,"['376706828']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Zenbi̇Lci̇,1735,15,,14,Parliament,"['257069051']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ayhan Barut,1736,14,,14,Parliament,"['524102272']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ayşe Ersoy Sibel,1737,17,,14,Parliament,"['3185991771']",MHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Bulut Burhanettin,1738,14,,14,Parliament,"['87282413']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +İSmail Koncuk,1739,19,,14,Parliament,"['301656662']",İYİ Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Kemal Peköz,1741,16,,14,Parliament,"['969505577092222982']",HDP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Mehmet Metanet Çulhaoğlu,1742,19,,14,Parliament,"['726321252638593024']",İYİ Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Müzeyyen Şevki̇N,1745,14,,14,Parliament,"['463221205']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Orhan Sümer,1746,14,,14,Parliament,"['999127296492662784']",CHP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Dağli Tamer,1747,15,,14,Parliament,"['2807717139']",AK Parti,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hatimoğullari Oruç Tulay,1748,16,,14,Parliament,"['2836035823']",HDP,,,ADANA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Abdurrahman Tutdere,1749,14,,14,Parliament,"['987299131310960640']",CHP,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Fatih Muhammed Toprak,1752,15,,14,Parliament,"['3133713255']",AK Parti,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Taş Yakup,1753,15,,14,Parliament,"['3676885697']",AK Parti,,,ADIYAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Gültekin Uysal,1756,20,,14,Parliament,"['617904122']",DP,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74621 +İBrahim Yurdunuseven,1757,15,,14,Parliament,"['993930766190030850']",AK Parti,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Mehmet Taytak,1758,17,,14,Parliament,"['995983724096446464']",MHP,,,AFYONKARAHİSAR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Abdullah Koç,1760,16,,14,Parliament,"['1002096337289138176']",HDP,,,AĞRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Dilan Dirayet Taşdemi̇R,1762,16,,14,Parliament,"['2739067203']",HDP,,,AĞRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ekrem Çelebi̇,1763,15,,14,Parliament,"['563550101']",AK Parti,,,AĞRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ayhan Erel,1764,19,,14,Parliament,"['243716292']",İYİ Parti,,,AKSARAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Kaşli Ramazan,1767,17,,14,Parliament,"['1052194350216540163']",MHP,,,AKSARAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Hasan Çi̇Lez,1768,15,,14,Parliament,"['1000111005597347840']",AK Parti,,,AMASYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Karahocagi̇L Levent Mustafa,1770,15,,14,Parliament,"['993234026487050240']",AK Parti,,,AMASYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Arife Düzgün Polat,1774,15,,14,Parliament,"['894183421882269696']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Asuman Erdoğan,1775,15,,14,Parliament,"['999025049968537600']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Altintaş Ayhan,1776,19,,14,Parliament,"['993452468624388096']",İYİ Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Aydin Barış,1777,15,,14,Parliament,"['2491561381']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Durmuş Yilmaz,1779,19,,14,Parliament,"['3062441200']",İYİ Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Gamze Taşcier,1784,14,,14,Parliament,"['282930186']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Hacı Turan,1785,15,,14,Parliament,"['3241446723']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Halil İBrahim Oral,1786,19,,14,Parliament,"['523345312']",İYİ Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Aydin Koray,1787,19,,14,Parliament,"['408546169']",İYİ Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Desti̇Ci̇ Mustafa,1793,21,,14,Parliament,"['433271238']",BBP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74626 +Nevin Taşliçay,1794,17,,14,Parliament,"['252639994']",MHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Orhan Yegi̇N,1797,15,,14,Parliament,"['199688609']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Durmaz Sadir,1798,17,,14,Parliament,"['578351935']",MHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Servet Ünsal,1799,14,,14,Parliament,"['225090281']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Bal Şenol,1800,19,,14,Parliament,"['1570136725']",İYİ Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Yaşar Yildirim,1803,17,,14,Parliament,"['3165093951']",MHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Kaya Yıldırım,1804,14,,14,Parliament,"['217219462']",CHP,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Yildiz Zeynep,1806,15,,14,Parliament,"['2906863019']",AK Parti,,,ANKARA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Abdurrahman Başkan,1807,17,,14,Parliament,"['2343697842']",MHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Aydın Özer,1809,14,,14,Parliament,"['608390492']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ari Cavit,1810,14,,14,Parliament,"['743680434']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Hasan Subaşi,1814,19,,14,Parliament,"['240701960']",İYİ Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Bülbül Kemal,1816,16,,14,Parliament,"['2287783352']",HDP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Kemal Çeli̇K,1817,15,,14,Parliament,"['862860560']",AK Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Rafet Zeybek,1819,14,,14,Parliament,"['3041339741']",CHP,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Tuba Vural Çokal,1821,19,,14,Parliament,"['996792267863183362']",İYİ Parti,,,ANTALYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Balta Erkan Ertunç,1824,15,,14,Parliament,"['3034135937']",AK Parti,,,ARTVİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Adnan Aydın Sezgi̇N,1826,19,,14,Parliament,"['989111628082892800']",İYİ Parti,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Bekir Eri̇M Kuvvet,1827,15,,14,Parliament,"['243705279']",AK Parti,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hüseyin Yildiz,1829,14,,14,Parliament,"['540730768']",CHP,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Metin Yavuz,1830,15,,14,Parliament,"['994586058498215936']",AK Parti,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Mustafa Savaş,1831,15,,14,Parliament,"['925368405502328832']",AK Parti,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Bülbül Süleyman,1833,14,,14,Parliament,"['339184936']",CHP,,,AYDIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Adil Çeli̇K,1834,15,,14,Parliament,"['998917586753597440']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Belgin Uygur,1836,15,,14,Parliament,"['913482607484129280']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ayteki̇N Ensar,1837,14,,14,Parliament,"['2180307984']",CHP,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Fikret Şahi̇N,1838,14,,14,Parliament,"['405144728']",CHP,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Canbey Mustafa,1840,15,,14,Parliament,"['79732039']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Aydemi̇R Mutlu Pakize,1841,15,,14,Parliament,"['153387781']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Subaşi Yavuz,1842,15,,14,Parliament,"['170619617']",AK Parti,,,BALIKESİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Aysu Bankoğlu,1843,14,,14,Parliament,"['609908136']",CHP,,,BARTIN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +İPekyüz Necdet,1848,16,,14,Parliament,"['3362789511']",HDP,,,BATMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ziver Özdemi̇R,1849,15,,14,Parliament,"['203578664']",AK Parti,,,BATMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Battal Fetani,1850,15,,14,Parliament,"['998600438462238720']",AK Parti,,,BAYBURT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Selim Yağci,1851,15,,14,Parliament,"['404841398']",AK Parti,,,BİLECİK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Aydemi̇R Erdal,1854,16,,14,Parliament,"['997175578112425984']",HDP,,,BİNGÖL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Berdi̇Bek Feyzi,1855,15,,14,Parliament,"['3171143225']",AK Parti,,,BİNGÖL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Cemal Taşar,1856,15,,14,Parliament,"['1051348381']",AK Parti,,,BİTLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Celadet Gaydali Mahmut,1857,16,,14,Parliament,"['3171307667']",HDP,,,BİTLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ki̇Ler Vahit,1858,15,,14,Parliament,"['441238687']",AK Parti,,,BİTLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Arzu Aydin,1859,15,,14,Parliament,"['594819841']",AK Parti,,,BOLU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Uğur Yasin,1864,15,,14,Parliament,"['701340951034339328']",AK Parti,,,BURDUR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Kiliç,1865,15,,14,Parliament,"['401909638']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Erozan Kamil,1866,19,,14,Parliament,"['1446426672']",İYİ Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Atilla Ödünç,1867,15,,14,Parliament,"['1166780072']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İSmail Tatlioğlu,1872,19,,14,Parliament,"['582992631']",İYİ Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Aydin Muhammet Müfit,1875,15,,14,Parliament,"['380782315']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Esgi̇N Mustafa,1876,15,,14,Parliament,"['1975535660']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hidayet Mustafa Vahapoğlu,1877,17,,14,Parliament,"['2244845957']",MHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Mesten Osman,1880,15,,14,Parliament,"['3053931293']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Refik Özen,1881,15,,14,Parliament,"['818204888']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Gürel Vildan Yilmaz,1882,15,,14,Parliament,"['1001413406686171136']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Yüksel Özkan,1883,14,,14,Parliament,"['994857360840626181']",CHP,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Işik Zafer,1884,15,,14,Parliament,"['207939825']",AK Parti,,,BURSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İSkenderoğlu Jülide,1886,15,,14,Parliament,"['468159663']",AK Parti,,,ÇANAKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ceylan Özgür,1888,14,,14,Parliament,"['935150149894012929']",CHP,,,ÇANAKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Salim Çi̇Vi̇Tci̇Oğlu,1890,15,,14,Parliament,"['760254109']",AK Parti,,,ÇANKIRI,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Erol Kavuncu,1892,15,,14,Parliament,"['1667374212']",AK Parti,,,ÇORUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kaya Oğuzhan,1893,15,,14,Parliament,"['951994206']",AK Parti,,,ÇORUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Yildiz,1895,15,,14,Parliament,"['258716107']",AK Parti,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Bi̇Çer Gülizar Karaca,1897,14,,14,Parliament,"['2726705524']",CHP,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Haşim Sancar Teoman,1898,14,,14,Parliament,"['370646154']",CHP,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Nilgün Ök,1900,15,,14,Parliament,"['2161571388']",AK Parti,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Yasin Öztürk,1902,19,,14,Parliament,"['253914403']",İYİ Parti,,,DENİZLİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Adnan Mizrakli Selçuk,1903,16,,14,Parliament,"['1000838498402873344']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Dağ Dersim,1904,16,,14,Parliament,"['1000320137013153792']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Fari̇Soğullari Musa,1910,16,,14,Parliament,"['998592415148793856']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Remziye Tosun,1912,16,,14,Parliament,"['1000061352726224896']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Aydeni̇Z Salihe,1913,16,,14,Parliament,"['978531492166062080']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Güzel Semra,1914,16,,14,Parliament,"['1000992011451760640']",HDP,,,DİYARBAKIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Fahri Çakir,1916,15,,14,Parliament,"['999936891217698816']",AK Parti,,,DÜZCE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Yilmaz Ümit,1917,17,,14,Parliament,"['299702547']",MHP,,,DÜZCE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Aksal Fatma,1919,15,,14,Parliament,"['239506930']",AK Parti,,,EDİRNE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Orhan Çakirlar,1921,19,,14,Parliament,"['2237636930']",İYİ Parti,,,EDİRNE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Balik Sermin,1924,15,,14,Parliament,"['425724450']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Demi̇Rbağ Zülfü,1925,15,,14,Parliament,"['905397044633849857']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ağar Tolga Zülfü,1926,15,,14,Parliament,"['996311240304680960']",AK Parti,,,ELAZIĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Burhan Çakir,1927,15,,14,Parliament,"['442814225']",AK Parti,,,ERZİNCAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Karaman Süleyman,1928,15,,14,Parliament,"['439274548']",AK Parti,,,ERZİNCAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ci̇Ni̇Sli̇ Muhammet Naci,1931,19,,14,Parliament,"['727509434239467520']",İYİ Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Altinok Selami,1933,15,,14,Parliament,"['989915496232386560']",AK Parti,,,ERZURUM,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Arslan Kabukcuoğlu,1935,19,,14,Parliament,"['929088134507323398']",İYİ Parti,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Jale Nur Süllü,1938,14,,14,Parliament,"['1576035096']",CHP,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Metin Nurullah Sazak,1939,17,,14,Parliament,"['3705308355']",MHP,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Avci Nabi,1940,15,,14,Parliament,"['1000338998961868800']",AK Parti,,,ESKİŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ali Şahi̇N,1944,15,,14,Parliament,"['201274084']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ali Muhittin Taşdoğan,1945,17,,14,Parliament,"['238122440']",MHP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Bayram Yilmazkaya,1946,14,,14,Parliament,"['998509095563988992']",CHP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Bakbak Derya,1947,15,,14,Parliament,"['285647449']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İRfan Kaplan,1949,14,,14,Parliament,"['999582223295795200']",CHP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ki̇Razoğlu Mehmet Sait,1952,15,,14,Parliament,"['989604742719594496']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Müslüm Yüksel,1953,15,,14,Parliament,"['2154481650']",AK Parti,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Atay Sermet,1954,17,,14,Parliament,"['2231539126']",MHP,,,GAZİANTEP,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Cemal Öztürk,1955,15,,14,Parliament,"['625817927']",AK Parti,,,GİRESUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Aydin Kadir,1956,15,,14,Parliament,"['507073674']",AK Parti,,,GİRESUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Necati Tiğli,1957,14,,14,Parliament,"['3121444610']",CHP,,,GİRESUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Di̇Nç Husret,1961,15,,14,Parliament,"['1001807884773154816']",AK Parti,,,HAKKARİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Güven Leyla,1962,16,,14,Parliament,"['3149485661']",HDP,,,HAKKARİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Dede Sait,1963,16,,14,Parliament,"['999430729917493248']",HDP,,,HAKKARİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Abdulkadir Özel,1964,15,,14,Parliament,"['781239651088658432']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Atay Barış Mengüllüoğlu,1965,16,,14,Parliament,"['84729044']",HDP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Hüseyin Şanverdi̇,1967,15,,14,Parliament,"['749824794']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hüseyin Yayman,1968,15,,14,Parliament,"['858032418']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İSmet Tokdemi̇R,1969,14,,14,Parliament,"['1001768106610647040']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Kaşikçi Lütfi,1970,17,,14,Parliament,"['215618996']",MHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Güzelmansur Mehmet,1971,14,,14,Parliament,"['2579031680']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Sabahat Çeli̇K Özgürsoy,1972,15,,14,Parliament,"['1260104658']",AK Parti,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Suzan Şahi̇N,1974,14,,14,Parliament,"['749003223109865472']",CHP,,,HATAY,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Eksi̇K Habip,1975,16,,14,Parliament,"['384903290']",HDP,,,IĞDIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Karadağ Yaşar,1976,17,,14,Parliament,"['1040369717536583680']",MHP,,,IĞDIR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Aylin Cesur,1977,19,,14,Parliament,"['219688422']",İYİ Parti,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Gökgöz Mehmet Uğur,1978,15,,14,Parliament,"['999759826518528000']",AK Parti,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Recep Özel,1979,15,,14,Parliament,"['2168472695']",AK Parti,,,ISPARTA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Abdul Ahat Andi̇Can,1981,19,,14,Parliament,"['3066327118']",İYİ Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Abdullah Güler,1982,15,,14,Parliament,"['564749194']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Çeli̇K,1983,19,,14,Parliament,"['990890072609382400']",İYİ Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Ahmet Şik,1984,16,,14,Parliament,"['96955327']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ahmet Arinç Mücahit,1987,15,,14,Parliament,"['990477613717180416']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Çevi̇Köz Ünal,1988,14,,14,Parliament,"['511055428']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Alev Dedegi̇L,1990,15,,14,Parliament,"['704251163294699520']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ali Kenanoğlu,1991,16,,14,Parliament,"['235707057']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Aziz Babuşcu,1995,15,,14,Parliament,"['145254257']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Canan Kalsin,1996,15,,14,Parliament,"['161208090']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Cemal Çeti̇N,1998,17,,14,Parliament,"['3252737921']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Canbaz Dilşat Kaya,1999,16,,14,Parliament,"['1000711065808920576']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Emecan Emine Gülizar,2001,14,,14,Parliament,"['522064658']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Aydin Emine Sare Yilmaz,2002,15,,14,Parliament,"['290168168']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Baş Erkan,2005,16,,14,Parliament,"['255957302']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Erol Katircioğlu,2007,16,,14,Parliament,"['767308083282513920']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Eyüp Özsoy,2009,15,,14,Parliament,"['239724668']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Fatih Mehmet Şeker,2010,19,,14,Parliament,"['988885915828457472']",İYİ Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Deni̇Zolgun Fatih Süleyman,2011,15,,14,Parliament,"['1000650710009176064']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Açikel Fethi,2013,14,,14,Parliament,"['142406048']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Feti Yildiz,2014,17,,14,Parliament,"['979992619362209792']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Gökan Zeybek,2016,14,,14,Parliament,"['4535949075']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Hakkı Oluç Saruhan,2018,16,,14,Parliament,"['3105614560']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Arkaz Hayati,2021,17,,14,Parliament,"['1031445982574198784']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Hayrettin Nuhoğlu,2022,19,,14,Parliament,"['1584411072']",İYİ Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +İBrahim Kaboğlu Özden,2025,14,,14,Parliament,"['2783856919']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +İFfet Polat,2026,15,,14,Parliament,"['426080301']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İSmet Uçma,2029,15,,14,Parliament,"['3801549916']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Berberoğlu Enis Kadri,2031,14,,14,Parliament,"['2775934013']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Bekaroğlu Mehmet,2034,14,,14,Parliament,"['290180076']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Doğan Kubat Mehmet,2037,15,,14,Parliament,"['816913008']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Bülent Karataş Memet,2038,17,,14,Parliament,"['2277643629']",MHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Musa Pi̇Roğlu,2040,16,,14,Parliament,"['774901149539393536']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ataş Mustafa,2041,15,,14,Parliament,"['194547306']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Demi̇R Mustafa,2042,15,,14,Parliament,"['122684595']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Durgut Müşerref Pervin Tuba,2045,15,,14,Parliament,"['262884282']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Cihangir İSlam Nazır,2046,22,,14,Parliament,"['394869788']",Saadet P,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Nevzat Şatiroğlu,2047,15,,14,Parliament,"['2183851486']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ersoy Oya,2053,16,,14,Parliament,"['757537039']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Karabat Özgür,2054,14,,14,Parliament,"['743755844']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Kadak Rümeysa,2057,15,,14,Parliament,"['2282508158']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kadigi̇L Saliha Sera Sütlü,2058,14,,14,Parliament,"['65907753']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ayrim Şamil,2062,15,,14,Parliament,"['387330241']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Aydoğan Turan,2064,14,,14,Parliament,"['905829925508272128']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Beyaz Ümit,2066,19,,14,Parliament,"['1510793054']",İYİ Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Ağirali̇Oğlu Yavuz,2070,19,,14,Parliament,"['1283532661']",İYİ Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Emre Yunus,2071,14,,14,Parliament,"['11711022']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Kilinç Mansur Yüksel,2072,14,,14,Parliament,"['473908284']",CHP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Sirakaya Zafer,2073,15,,14,Parliament,"['572032571']",AK Parti,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Zeynel Özen,2075,16,,14,Parliament,"['1004082405785907200']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Gülüm Züleyha,2076,16,,14,Parliament,"['995004347133169664']",HDP,,,İSTANBUL,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Bedri Serter,2080,14,,14,Parliament,"['771715790383017984']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Bekle Cemal,2082,15,,14,Parliament,"['999298007668584448']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Dervi̇Şoğlu Dursun Müsavat,2084,19,,14,Parliament,"['975688381974884353']",İYİ Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Arslan Ednan,2085,14,,14,Parliament,"['2913771958']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Alpay Fehmi Özalan,2086,15,,14,Parliament,"['999395228082634752']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hasan Kalyoncu,2088,17,,14,Parliament,"['991972364677255168']",MHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Beko Kani,2090,14,,14,Parliament,"['993175451827953664']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Mahir Polat,2092,14,,14,Parliament,"['72264555']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ali Mehmet Çelebi̇,2094,14,,14,Parliament,"['911096298']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Murat Çepni̇,2096,16,,14,Parliament,"['1491347586']",HDP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Nasir Necip,2097,15,,14,Parliament,"['3147501676']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kemalbay Pekgözegü Serpil,2100,16,,14,Parliament,"['2369037194']",HDP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Erdan Kiliç Sevda,2101,14,,14,Parliament,"['109242733']",CHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Osmanağaoğlu Tamer,2103,17,,14,Parliament,"['2405425089']",MHP,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Kirkpinar Yaşar,2104,15,,14,Parliament,"['971713752']",AK Parti,,,İZMİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Özdemi̇R,2105,15,,14,Parliament,"['1861596000']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ali Öztunç,2106,14,,14,Parliament,"['2227186663']",CHP,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Habibe Öçal,2108,15,,14,Parliament,"['3945449488']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Cihat Mehmet Sezal,2111,15,,14,Parliament,"['1382837623']",AK Parti,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Aycan Sefer,2112,17,,14,Parliament,"['258356021']",MHP,,,KAHRAMANMARAŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Cumhur Ünal,2113,15,,14,Parliament,"['732205097766244352']",AK Parti,,,KARABÜK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Atakan İSmail Ünver,2116,14,,14,Parliament,"['2572997772']",CHP,,,KARAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Eser Oğuzhan Selman,2118,15,,14,Parliament,"['938495560289538050']",AK Parti,,,KARAMAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kiliç Yunus,2121,15,,14,Parliament,"['1533148142']",AK Parti,,,KARS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Baltaci Hasan,2123,14,,14,Parliament,"['1472257298']",CHP,,,KASTAMONU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Metin Çeli̇K,2124,15,,14,Parliament,"['2960246843']",AK Parti,,,KASTAMONU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ataş Dursun,2126,19,,14,Parliament,"['564689563']",İYİ Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +İSmail Özdemi̇R,2128,17,,14,Parliament,"['114784239']",MHP,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Eli̇Taş Mustafa,2132,15,,14,Parliament,"['213775526']",AK Parti,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Baki Ersoy Mustafa,2133,17,,14,Parliament,"['3289077422']",MHP,,,KAYSERİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Halil Öztürk,2136,17,,14,Parliament,"['1595496534']",MHP,,,KIRIKKALE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +İLhan Metin,2141,14,,14,Parliament,"['990309073127137280']",CHP,,,KIRŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Kendi̇Rli̇ Mustafa,2142,15,,14,Parliament,"['2288487466']",AK Parti,,,KIRŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Dal Salih,2143,15,,14,Parliament,"['614120905']",AK Parti,,,KİLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Dülger Hilmi Mustafa,2144,15,,14,Parliament,"['818115612']",AK Parti,,,KİLİS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Emine Zeybek,2146,15,,14,Parliament,"['956566720810012672']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İLyas Şeker,2150,15,,14,Parliament,"['254928303']",AK Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Lütfü Türkkan,2151,19,,14,Parliament,"['176329831']",İYİ Parti,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Faruk Gergerli̇Oğlu Ömer,2153,16,,14,Parliament,"['219459066']",HDP,,,KOCAELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Abdulkadir Karaduman,2158,22,,14,Parliament,"['864998658']",Saadet P,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Abdullah Ağrali,2159,15,,14,Parliament,"['2832582101']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Abdüllatif Şener,2160,14,,14,Parliament,"['217133632']",CHP,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Esin Kara,2162,17,,14,Parliament,"['998958619067670528']",MHP,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Fahrettin Yokuş,2163,19,,14,Parliament,"['2846467731']",İYİ Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Gülay Samanci,2164,15,,14,Parliament,"['4927335112']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kalayci Mustafa,2168,17,,14,Parliament,"['978196984522838016']",MHP,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Erdem Orhan,2169,15,,14,Parliament,"['1594287001']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Selman Özboyaci,2170,15,,14,Parliament,"['182383851']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Akyürek Tahir,2171,15,,14,Parliament,"['236806864']",AK Parti,,,KONYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Erbaş,2173,17,,14,Parliament,"['992461438903078912']",MHP,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Ahmet Tan,2174,15,,14,Parliament,"['2265694872']",AK Parti,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ali Fazıl Kasap,2175,14,,14,Parliament,"['49467211']",CHP,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ceyda Erenler Çeti̇N,2176,15,,14,Parliament,"['2694318701']",AK Parti,,,KÜTAHYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Çakir,2178,15,,14,Parliament,"['379592150']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hakan Kahtali,2180,15,,14,Parliament,"['1543044643']",AK Parti,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Celal Fendoğlu Mehmet,2181,17,,14,Parliament,"['103894198']",MHP,,,MALATYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Ahmet Bakirlioğlu Vehbi,2184,14,,14,Parliament,"['751245967']",CHP,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Başevi̇Rgen Bekir,2185,14,,14,Parliament,"['809170932568850432']",CHP,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ali Mehmet Özkan,2188,15,,14,Parliament,"['184055456']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kaplan Kivircik Semra,2191,15,,14,Parliament,"['4672987632']",AK Parti,,,MANİSA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Cengiz Demi̇Rkaya,2194,15,,14,Parliament,"['1001876598247886848']",AK Parti,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ebrü Günay,2195,16,,14,Parliament,"['2495371144']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Dundar Pero,2197,16,,14,Parliament,"['998655747788591104']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Di̇Nçel Şeyhmus,2198,15,,14,Parliament,"['796115093205487616']",AK Parti,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Tuma Çeli̇K,2199,16,,14,Parliament,"['345428158']",HDP,,,MARDİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ali Başarir Mahir,2201,14,,14,Parliament,"['79574414']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Alpay Antmen,2202,14,,14,Parliament,"['184126072']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Behiç Çeli̇K,2204,19,,14,Parliament,"['342060869']",İYİ Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Cengiz Gökçel,2205,14,,14,Parliament,"['1003701271667335168']",CHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Fatma Kurtulan,2206,16,,14,Parliament,"['2504898187']",HDP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Kilavuz Olcay,2209,17,,14,Parliament,"['452170477']",MHP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Rıdvan Turan,2210,16,,14,Parliament,"['320683311']",HDP,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Hakan Sidali Zeki,2211,19,,14,Parliament,"['88175013']",İYİ Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Gül Yilmaz Zeynep,2212,15,,14,Parliament,"['715680606']",AK Parti,,,MERSİN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Burak Erbay,2213,14,,14,Parliament,"['126443036']",CHP,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Demi̇R Mehmet Yavuz,2214,15,,14,Parliament,"['1001743701150961664']",AK Parti,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ergun Metin,2215,19,,14,Parliament,"['601912159']",İYİ Parti,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Alban Mürsel,2216,14,,14,Parliament,"['723931803522859008']",CHP,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Suat Özcan,2217,14,,14,Parliament,"['1019212280301604864']",CHP,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Erol Gökcan Yelda,2219,15,,14,Parliament,"['632216962']",AK Parti,,,MUĞLA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Gülüstan Kiliç Koçyi̇Ği̇T,2220,16,,14,Parliament,"['4855344499']",HDP,,,MUŞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Menekşe Yücel,2226,15,,14,Parliament,"['998632694614577154']",AK Parti,,,NEVŞEHİR,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Gülteki̇N Selim,2228,15,,14,Parliament,"['283529333']",AK Parti,,,NİĞDE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ergun Yavuz,2229,15,,14,Parliament,"['2251922490']",AK Parti,,,NİĞDE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Cemal Engi̇Nyurt,2230,17,,14,Parliament,"['990621226002518016']",MHP,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Adigüzel Mustafa,2233,14,,14,Parliament,"['730951333008838656']",CHP,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Yedi̇Yildiz Şenel,2235,15,,14,Parliament,"['314465662']",AK Parti,,,ORDU,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Baha Ünlü,2236,14,,14,Parliament,"['1014585757116313600']",CHP,,,OSMANİYE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +İSmail Kaya,2238,15,,14,Parliament,"['562687527']",AK Parti,,,OSMANİYE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Avci Muhammed,2241,15,,14,Parliament,"['334285155']",AK Parti,,,RİZE,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Atabek Erdoğan Çiğdem,2244,15,,14,Parliament,"['201420159']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Kenan Sofuoğlu,2246,15,,14,Parliament,"['201222084']",AK Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Bülbül Levent Muhammed,2247,17,,14,Parliament,"['1556252005']",MHP,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Di̇Kbayir Ümit,2249,19,,14,Parliament,"['2979565173']",İYİ Parti,,,SAKARYA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Yilmaz Yusuf Ziya,2258,15,,14,Parliament,"['967769636']",AK Parti,,,SAMSUN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Osman Ören,2260,15,,14,Parliament,"['602887487']",AK Parti,,,SİİRT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ahmet Özyürek,2264,17,,14,Parliament,"['986500544306073600']",MHP,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Eki̇Nci̇ Semiha,2267,15,,14,Parliament,"['524688228']",AK Parti,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Karasu Ulaş,2268,14,,14,Parliament,"['993148929729540096']",CHP,,,SİVAS,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ahmet Akay,2269,15,,14,Parliament,"['991084702923743232']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Ayşe Sürücü,2271,16,,14,Parliament,"['1000449954635223040']",HDP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Aydinlik Aziz,2272,14,,14,Parliament,"['2814107355']",CHP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Halil Özşavli,2274,15,,14,Parliament,"['1407127544']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İBrahim Özyavuz,2275,17,,14,Parliament,"['4330405288']",MHP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Gülpinar Kasım Mehmet,2278,15,,14,Parliament,"['1005419279381155840']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Erdoğmuş Nimetullah,2279,16,,14,Parliament,"['958089391242727425']",HDP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Maçi̇N Nusrettin,2280,16,,14,Parliament,"['1002483544197824513']",HDP,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Açanal Gülender Zemzem,2282,15,,14,Parliament,"['3548523143']",AK Parti,,,ŞANLIURFA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hüseyin Kaçmaz,2284,16,,14,Parliament,"['1000151192280948736']",HDP,,,ŞIRNAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +İMi̇R Nuran,2285,16,,14,Parliament,"['3398923702']",HDP,,,ŞIRNAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Bi̇Rli̇K Rizgin,2286,15,,14,Parliament,"['998959323664539649']",AK Parti,,,ŞIRNAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Koncagül Çiğdem,2288,15,,14,Parliament,"['2590027648']",AK Parti,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Enez Kaplan,2289,19,,14,Parliament,"['1169512345']",İYİ Parti,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Aygun İLhami Özcan,2291,14,,14,Parliament,"['2920438876']",CHP,,,TEKİRDAĞ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Arslan Mustafa,2295,15,,14,Parliament,"['1972173193']",AK Parti,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Zengi̇N Özlem,2296,15,,14,Parliament,"['744924164']",AK Parti,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Bulut Yücel,2298,17,,14,Parliament,"['3905689939']",MHP,,,TOKAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Ayvazoğlu Bahar,2301,15,,14,Parliament,"['798940351']",AK Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Hüseyin Örs,2302,19,,14,Parliament,"['275272410']",İYİ Parti,,,TRABZON,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5, +Polat Şaroğlu,2306,14,,14,Parliament,"['996843694643974144']",CHP,,,TUNCELİ,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Güneş İSmail,2307,15,,14,Parliament,"['338523404']",AK Parti,,,UŞAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Abdulahat Arvas,2310,15,,14,Parliament,"['2338281961']",AK Parti,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +İRfan Kartal,2312,15,,14,Parliament,"['1000095743103897600']",AK Parti,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Muazzez Orhan,2313,16,,14,Parliament,"['1000651455324475392']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Murat Sarisaç,2314,16,,14,Parliament,"['357049414']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Gülaçar Nuri Osman,2315,15,,14,Parliament,"['709062920253132800']",AK Parti,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Sezai Temelli̇,2316,16,,14,Parliament,"['529661015']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Tayip Temel,2317,16,,14,Parliament,"['844962536273391616']",HDP,,,VAN,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74210 +Ahmet Büyükgümüş,2318,15,,14,Parliament,"['168590973']",AK Parti,,,YALOVA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Akyol Meliha,2319,15,,14,Parliament,"['999444477147312129']",AK Parti,,,YALOVA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Özcan Özel,2320,14,,14,Parliament,"['216128186']",CHP,,,YALOVA,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ali Keven,2321,14,,14,Parliament,"['484741747']",CHP,,,YOZGAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Ethem İBrahim Sedef,2323,17,,14,Parliament,"['316764344']",MHP,,,YOZGAT,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74712 +Ahmet Çolakoğlu,2325,15,,14,Parliament,"['3685224555']",AK Parti,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Deniz Yavuzyilmaz,2326,14,,14,Parliament,"['3586217301']",CHP,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74321 +Hamdi Uçar,2327,15,,14,Parliament,"['998861609652178944']",AK Parti,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Polat Türkmen,2328,15,,14,Parliament,"['3018649792']",AK Parti,,,ZONGULDAK,,https://www.tbmm.gov.tr/develop/owa/milletvekillerimiz_sd.liste,,Turkey,26,5,74628 +Gantar Tomaž,2331,24,,23,Parliament,"['35698283']",Democratic Party of Pensioners of Slovenia Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97951 +Andreja Potočnik,2332,23,,23,Parliament,"['2932400049']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +[Ivan] Janez Janša,"2431, 2333",25,,23,Parliament,"['258856900']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P025,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Andrej Čuš,2334,26,,23,Parliament,"['337785212']",Unaffiliated deputy,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Jernej Vrtovec,"2493, 2335",27,,23,Parliament,"['99532067']",New Slovenia – Christian Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P292,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97522 +Gorenak Vinko,2336,25,,23,Parliament,"['379672433']",Slovenian Democratic Party Deputy Group,,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97330 +Alenka Bratušek,2337,28,,23,Parliament,"['1551471600']",Deputy Group of Unaffiliated Deputies,,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Horvat Jožef,"2487, 2338",27,,23,Parliament,"['15995876']",New Slovenia – Christian Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P020,"['Member', 'Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97522 +Anže Logar,"2339, 2438",25,,23,Parliament,"['395535003']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P238,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Bojan Krajnc,2341,23,,23,Parliament,"['393034868']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Branko Zorman,2342,23,,23,Parliament,"['2886701782']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Igor Zorčič,"2343, 2469",23,,23,Parliament,"['2732257325']",Party of Modern Centre Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P294,"['Member', 'Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12", +Simon Zajc,2344,23,,23,Parliament,"['602223566']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Vervega Vesna,2345,23,,23,Parliament,"['4150391901']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Janja Sluga,"2470, 2347",23,,23,Parliament,"['2591651378']",Party of Modern Centre Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P284,"['Deputy Leader', 'Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12", +Vojka Šergan,2351,23,,23,Parliament,"['3114311878']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Branislav Rajić,"2353, 2474",23,,23,Parliament,"['785563628925808640']",Party of Modern Centre Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P281,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12", +[Janko] Jani Möderndorfer,"2358, 2472",23,,23,Parliament,"['527581293']",Party of Modern Centre Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P191,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12", +Aleksander Kavčič,2365,23,,23,Parliament,"['33844219']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Grošelj Irena Košnik,2367,23,,23,Parliament,"['2587107721']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Ferluga Marko,2368,23,,23,Parliament,"['2592816870']",Party of Modern Centre Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Ljubo Žnidar,2374,25,,23,Parliament,"['1712471419']",Slovenian Democratic Party Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97330 +Jože Tanko,"2375, 2444",25,,23,Parliament,"['1734517825']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P077,"['Member', 'Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Andrej Šircelj,"2376, 2443",25,,23,Parliament,"['373559461']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P201,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Marko Pogačnik,"2441, 2378",25,,23,Parliament,"['404704518']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P196,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Bojan Podkrajšek,"2379, 2440",25,,23,Parliament,"['2599439731']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P277,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Mahnič Žan,"2380, 2439",25,,23,Parliament,"['353942898']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P270,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Lisec Tomaž,"2437, 2381",25,,23,Parliament,"['390727544']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P187,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Lep Suzana Šimenko,"2436, 2382",25,,23,Parliament,"['2507317993']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P268,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Danijel Krivec,"2420, 2383",25,,23,Parliament,"['394674420']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P040,"['Member', 'Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Eva Irgl,"2430, 2384",25,,23,Parliament,"['1714996783']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P023,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Branko Grims,"2429, 2385",25,,23,Parliament,"['394862784']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P016,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Godec Jelka,"2386, 2428",25,,23,Parliament,"['267650499']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P252,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Brinovšek Nada,"2387, 2421",25,,23,Parliament,"['2600388817', '3364182629']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P244,"['Member']", ['Deputy Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Breznik Franc,"2424, 2388",25,,23,Parliament,"['1712334996']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P167,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Anja Bah Žibert,"2389, 2423",25,,23,Parliament,"['388916537']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P239,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97330 +Peter Vilfan,2390,24,,23,Parliament,"['2580728250']",Democratic Party of Pensioners of Slovenia Deputy Group,,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97951 +Prikl Uroš,2391,24,,23,Parliament,"['3332821605']",Democratic Party of Pensioners of Slovenia Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97951 +Hršak Ivan,"2505, 2397",24,,23,Parliament,"['411727093']",Democratic Party of Pensioners of Slovenia Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P176,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS015, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,Slovenia,20,"11, 12",97951 +Janko Veber,2400,29,,23,Parliament,"['1241386903']",Social Democrats Deputy Group,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97322 +Jan Škoberne,2401,29,,23,Parliament,"['75541496']",Social Democrats Deputy Group,,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11,97322 +Matjaž Nemec,"2402, 2466",29,,23,Parliament,"['587377745']",Social Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P276,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS013",,Slovenia,20,"11, 12",97322 +Tomić Violeta,"2406, 2485",30,,23,Parliament,"['3747159556']",The Left Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P289,"['Member']",,,"https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS026",,Slovenia,20,"11, 12", +Matej Tašner Vatovec,"2407, 2478",30,,23,Parliament,"['630189693']",The Left Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P288,"['Deputy Leader', 'Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS026",,Slovenia,20,"11, 12", +Luka Mesec,"2483, 2408",30,,23,Parliament,"['472166543']",The Left Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P273,"['Member', 'Leader']",,,"https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/, https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS026",,Slovenia,20,"11, 12", +Ljudmila Novak,"2490, 2411, 13112","27, 273",29,"295, 23",Parliament,"['514541450']","New Slovenia – Christian Democrats Deputy Group, Nova Slovenija – Krščanski demokrati",https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P193,"['Deputy Leader', 'Member']",Slovenia,,"https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017, https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/",,"Slovenia, European Parliament","20, 27","11, 12, 43",97522 +Franc Laj,2418,28,,23,Parliament,"['3248787515']",Deputy Group of Unaffiliated Deputies,,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivT39gy2dDB0NDCwDXQ08Lf3Dwoyd_A0MnM30w1EV-Fsauhl4hhq7mxj7hhgYGBvqR-GRdjImoN_DiDL9oRTqByqIosj_FNrvBdFvgAM4GqDrx3QgAf0FuaEQ4KioCABiBsAg/dz/d5/L2dBISEvZ0FBIS9nQSEh/,,Slovenia,20,11, +Zvonko Černač,2425,25,,23,Parliament,"['399980780']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P092,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012,,Slovenia,20,12,97330 +Boris Doblekar,2426,25,,23,Parliament,"['156544230']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P306,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012,,Slovenia,20,12,97330 +Furman Karmen,2427,25,,23,Parliament,"['855881530140495872']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P309,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012,,Slovenia,20,12,97330 +Alenka Jeraj,2432,25,,23,Parliament,"['1714901952']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P029,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012,,Slovenia,20,12,97330 +Dejan Kaloh,2433,25,,23,Parliament,"['372887890']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P310,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012,,Slovenia,20,12,97330 +Marijan Pojbič,2442,25,,23,Parliament,"['388767236']",Slovenian Democratic Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P098,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS012,,Slovenia,20,12,97330 +Divjak Lidija Mirnik,2447,33,,23,Parliament,"['1019492541106937857']",Marjan Šarec Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P332,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031,,Slovenia,20,12, +Heferle Tina,2448,33,,23,Parliament,"['1005180185363271680']",Marjan Šarec Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P328,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031,,Slovenia,20,12, +Aljaž Kovačič,2449,33,,23,Parliament,"['3524796802']",Marjan Šarec Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P333,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031,,Slovenia,20,12, +Edvard Paulič,2453,33,,23,Parliament,"['1023838494626668544']",Marjan Šarec Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P323,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031,,Slovenia,20,12, +Igor Peček,2455,33,,23,Parliament,"['1023831590517067777']",Marjan Šarec Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P322,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031,,Slovenia,20,12, +Andreja Zabret,2457,33,,23,Parliament,"['989780608363716608']",Marjan Šarec Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P327,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS031,,Slovenia,20,12, +Bojana Muršič,2459,29,,23,Parliament,"['2684918197']",Social Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P275,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS013,,Slovenia,20,12,97322 +Jani Prednik,2467,29,,23,Parliament,"['94065197']",Social Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P320,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS013,,Slovenia,20,12,97322 +Dejan Židan,2468,29,,23,Parliament,"['820353910917496832']",Social Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P211,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS013,,Slovenia,20,12,97322 +Gregorčič Monika,2471,23,,23,Parliament,"['389016195']",Party of Modern Centre Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P314,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025,,Slovenia,20,12, +Gregor Perič,2473,23,,23,Parliament,"['2240859403']",Party of Modern Centre Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P313,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS025,,Slovenia,20,12, +Boštjan Koražija,2481,30,,23,Parliament,"['984555874722177024']",The Left Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P337,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS026,,Slovenia,20,12, +Primož Siter,2484,30,,23,Parliament,"['393348757']",The Left Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P336,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS026,,Slovenia,20,12, +Blaž Pavlin,2488,27,,23,Parliament,"['400934014']",New Slovenia – Christian Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P339,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017,,Slovenia,20,12,97522 +Aleksander Reberšek,2491,27,,23,Parliament,"['546034185']",New Slovenia – Christian Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P338,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017,,Slovenia,20,12,97522 +Matej Tonin,2492,27,,23,Parliament,"['959105459922919424']",New Slovenia – Christian Democrats Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P204,"['Member']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS017,,Slovenia,20,12,97522 +Kociper Maša,2494,34,,23,Parliament,"['2583656215']",Party of Alenka Bratušek Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P182,"['Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS032,,Slovenia,20,12, +Jelinčič Plemeniti Zmago,2499,35,,23,Parliament,"['812216904333099008']",Slovenian National Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P028,"['Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS005,,Slovenia,20,12,97710 +Dušan Šiško,2500,35,,23,Parliament,"['1070456576']",Slovenian National Party Deputy Group,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslankeInPoslanci/poslanec?idOseba=P349,"['Deputy Leader']",,,https://www.dz-rs.si/wps/portal/en/Home/ODrzavnemZboru/KdoJeKdo/PoslanskaSkupina?idPS=PS005,,Slovenia,20,12,97710 +Marjan Šarec,2510,36,,23,Parliament,"['186013679']",Prime Minister,,"['Prime Minister']",,,,,Slovenia,20,12, +Adam Marttinen,"3064, 2511",37,,36,Parliament,"['334672453']",SweDem,"https://www.riksdagen.se/en/members-and-parties/member/adam-marttinen_db2ca6ff-5620-4ece-8d31-97777f2efb48, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/adam-marttinen_db2ca6ff-5620-4ece-8d31-97777f2efb48",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Adnan Dibrani,"2512, 2872",38,,36,Parliament,"['374186312']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/adnan-dibrani_2eb5b5ce-2e8c-4063-a2c2-d03b50ff4c5d, https://www.riksdagen.se/en/members-and-parties/member/adnan-dibrani_2eb5b5ce-2e8c-4063-a2c2-d03b50ff4c5d",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Agneta Gille,2514,38,,36,Parliament,"['27500871']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/agneta-gille_02f689bb-85ab-442b-befc-059b93e6f941,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Adan Amir,2519,42,,36,Parliament,"['41846907']",Mod,https://www.riksdagen.se/en/members-and-parties/member/amir-adan_d76a2369-0163-406e-8bcb-c777473158d5,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Anders Åkesson,"2520, 3127",43,,36,Parliament,"['718855606']",Cen,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anders-akesson_48144b97-5799-422d-9ede-8b2dd360ca19, https://www.riksdagen.se/en/members-and-parties/member/anders-akesson_48144b97-5799-422d-9ede-8b2dd360ca19",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Anders Schröder,2524,39,,36,Parliament,"['342607637']",Grn,https://www.riksdagen.se/en/members-and-parties/member/anders-schroder_70e99ce1-3c30-4e4d-9c42-f9e73c58e6fb,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Anders Jonsson W,"2525, 3094",43,,36,Parliament,"['161963297']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/anders-w-jonsson_6ad91da1-1287-4e8f-9778-3315390fdfca, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anders-w-jonsson_6ad91da1-1287-4e8f-9778-3315390fdfca","['Gruppledare']",,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Andreas Carlson,"2526, 3163",44,,36,Parliament,"['39958883']",ChrDem,"https://www.riksdagen.se/en/members-and-parties/member/andreas-carlson_7f431f89-8b2f-4499-8997-f55f1b57d8ab, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/andreas-carlson_7f431f89-8b2f-4499-8997-f55f1b57d8ab","['Gruppledare']",,,"https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem",,Sweden,22,"8, 9",11520 +Anette Åkesson,2528,42,,36,Parliament,"['22291443']",Mod,https://www.riksdagen.se/en/members-and-parties/member/anette-akesson_cee29007-d024-4ba9-8d69-bbdc5cec2bc0,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Anna Batra Kinberg,2535,42,,36,Parliament,"['140488453']",Mod,https://www.riksdagen.se/en/members-and-parties/member/anna-kinberg-batra_ae3e9718-b95d-11d5-af14-0050040caabf,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Anna-Lena Sörenson,2536,38,,36,Parliament,"['1724794465']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/anna-lena-sorenson_7a109ba6-d658-43f4-972e-54e4e261c68d,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Anna Wallén,2537,38,,36,Parliament,"['1725739801']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/anna-wallen_40d3f3d2-9d89-4021-af6d-bc873e111df3,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Anna Wallentheim,"2953, 2538",38,,36,Parliament,"['776476836']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/anna-wallentheim_200035cd-228a-4afa-8849-844f2c1e35fb, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anna-wallentheim_200035cd-228a-4afa-8849-844f2c1e35fb",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Annicka Engblom,"2981, 2540",42,,36,Parliament,"['21129331']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/annicka-engblom_23c1d1cc-f2a2-47f1-b144-0d52a464791a, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/annicka-engblom_23c1d1cc-f2a2-47f1-b144-0d52a464791a",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Annika Lillemets,2543,39,,36,Parliament,"['1196582724']",Grn,https://www.riksdagen.se/en/members-and-parties/member/annika-lillemets_10d245ad-d796-4e29-bbcd-f4f8f24d6495,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Anti Avsan,2545,42,,36,Parliament,"['1344261205']",Mod,https://www.riksdagen.se/en/members-and-parties/member/anti-avsan_1e5ed84e-516c-4c95-b70c-b1ebd2007ac6,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Coenraads Åsa,"2548, 2979",42,,36,Parliament,"['197825824']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/asa-coenraads_d07b112d-3095-4283-bf67-806499587845, https://www.riksdagen.se/en/members-and-parties/member/asa-coenraads_d07b112d-3095-4283-bf67-806499587845",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Romson Åsa,2550,39,,36,Parliament,"['98212710']",Grn,https://www.riksdagen.se/en/members-and-parties/member/asa-romson_898afd1c-84a1-46f5-ab95-a84648831d0c,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Betty Malmberg,"2557, 3002",42,,36,Parliament,"['2722177548']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/betty-malmberg_e32075e3-a115-4add-8652-4993f2f8d8ab, https://www.riksdagen.se/en/members-and-parties/member/betty-malmberg_e32075e3-a115-4add-8652-4993f2f8d8ab",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Björn Söder,2561,37,,36,Parliament,"['34743468']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/bjorn-soder_06d7c195-c170-4103-bcc6-1d9c0d43b169,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Björn Wiechel,2563,38,,36,Parliament,"['301688631']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/bjorn-wiechel_7ef75999-90a2-41af-a083-6dfd70e8e3e8,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Carina Herrstedt,2568,37,,36,Parliament,"['155324976']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/carina-herrstedt_96fd915b-03e4-436a-9fbd-879f0737d828,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Carina Ohlsson,"2930, 2569",38,,36,Parliament,"['1469432677']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/carina-ohlsson_d7c3279d-83e4-11d4-ae60-0050040c9b55, https://www.riksdagen.se/en/members-and-parties/member/carina-ohlsson_d7c3279d-83e4-11d4-ae60-0050040c9b55",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Bohlin Carl-Oskar,"2975, 2570",42,,36,Parliament,"['24021197']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/carl-oskar-bohlin_7223f863-4406-4833-8f54-ed21dd2ccbc3, https://www.riksdagen.se/en/members-and-parties/member/carl-oskar-bohlin_7223f863-4406-4833-8f54-ed21dd2ccbc3",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Cecilia Magnusson,2576,42,,36,Parliament,"['476764652']",Mod,https://www.riksdagen.se/en/members-and-parties/member/cecilia-magnusson_d7c32704-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Cecilia Widegren,"2577, 3026",42,,36,Parliament,"['339107634']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/cecilia-widegren_8a611e75-37ca-434d-9767-9fb3b60ea82f, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/cecilia-widegren_8a611e75-37ca-434d-9767-9fb3b60ea82f",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Christer Nylander,"2579, 3195",41,,36,Parliament,"['37419686']",Lib,"https://www.riksdagen.se/en/members-and-parties/member/christer-nylander_f03ff4a2-c476-11d4-ae40-006008578ce8, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/christer-nylander_f03ff4a2-c476-11d4-ae40-006008578ce8","['Gruppledare']",,,"https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib",,Sweden,22,"8, 9",11420 +Christina Höj Larsen,"3138, 2581",40,,36,Parliament,"['142282561']",Lft,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/christina-hoj-larsen_74612723-9c78-4dbd-b635-1309681dea16, https://www.riksdagen.se/en/members-and-parties/member/christina-hoj-larsen_74612723-9c78-4dbd-b635-1309681dea16",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Daniel Riazat,"3145, 2587",40,,36,Parliament,"['297054844']",Lft,"https://www.riksdagen.se/en/members-and-parties/member/daniel-riazat_b00db2a8-378a-440c-982e-af62d234ed95, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/daniel-riazat_b00db2a8-378a-440c-982e-af62d234ed95",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Daniel Sestrajcic,2588,40,,36,Parliament,"['18818550']",Lft,https://www.riksdagen.se/en/members-and-parties/member/daniel-sestrajcic_bc136d6f-158d-45e8-b314-35c35ab92dc9,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft,,Sweden,22,8,11220 +David Lång,2589,37,,36,Parliament,"['157497762']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/david-lang_1b1880b5-b042-47b6-8669-8a51e1908365,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Dennis Dioukarev,"2590, 3043",37,,36,Parliament,"['771153540']",SweDem,"https://www.riksdagen.se/en/members-and-parties/member/dennis-dioukarev_13a59e93-95fe-45fb-b7b5-a76f8181cb4f, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/dennis-dioukarev_13a59e93-95fe-45fb-b7b5-a76f8181cb4f",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Edward Riedl,"2592, 3013",42,,36,Parliament,"['1269314047']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/edward-riedl_eaa4ca85-20f4-4375-8b76-61febbcf37f6, https://www.riksdagen.se/en/members-and-parties/member/edward-riedl_eaa4ca85-20f4-4375-8b76-61febbcf37f6",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Elin Lundgren,"2593, 2914",38,,36,Parliament,"['362339392']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/elin-lundgren_a6beb479-16a2-443e-b0ea-e9c14639064c, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/elin-lundgren_a6beb479-16a2-443e-b0ea-e9c14639064c",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Emil Källström,"2598, 3111",43,,36,Parliament,"['18694252']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/emil-kallstrom_17c541d7-8031-43e6-8a8f-8608b9afeed0, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/emil-kallstrom_17c541d7-8031-43e6-8a8f-8608b9afeed0",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Emma Henriksson,2601,44,,36,Parliament,"['19185125']",ChrDem,https://www.riksdagen.se/en/members-and-parties/member/emma-henriksson_ef24801d-c623-4aed-8db4-6503df4447d5,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem,,Sweden,22,8,11520 +Emma Hult,"2602, 3213",39,,36,Parliament,"['1166961122']",Grn,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/emma-hult_ae37cc33-2580-4221-aa93-4dd4621ecb98, https://www.riksdagen.se/en/members-and-parties/member/emma-hult_ae37cc33-2580-4221-aa93-4dd4621ecb98",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn, https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/",,Sweden,22,"8, 9",11110 +Emma Nohrén,2603,39,,36,Parliament,"['2410963622']",Grn,https://www.riksdagen.se/en/members-and-parties/member/emma-nohren_3dab7025-7152-4c7f-bd60-eb6a1de42c3b,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Emma Wallrup,2604,40,,36,Parliament,"['23512612']",Lft,https://www.riksdagen.se/en/members-and-parties/member/emma-wallrup_ebadd163-606f-49a8-b248-2b8c5f28dd15,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft,,Sweden,22,8,11220 +Andersson Erik,"2963, 2605",42,,36,Parliament,"['2466809932']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/erik-andersson_4ddb02e0-2a49-4cea-8a99-2a1fe307ea49, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/erik-andersson_4ddb02e0-2a49-4cea-8a99-2a1fe307ea49",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Eva Lohman,2613,42,,36,Parliament,"['199373792']",Mod,https://www.riksdagen.se/en/members-and-parties/member/eva-lohman_3cae1590-618a-4e0d-9165-b65e3454e9f2,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Eva Sonidsson,2614,38,,36,Parliament,"['26754159']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/eva-sonidsson_0b65651d-0086-4675-b7ff-b8be08b30188,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Ewa Finné Thalén,2615,42,,36,Parliament,"['108927409']",Mod,https://www.riksdagen.se/en/members-and-parties/member/ewa-thalen-finne_d7c32676-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Bengtsson Finn,2617,42,,36,Parliament,"['1201747669']",Mod,https://www.riksdagen.se/en/members-and-parties/member/finn-bengtsson_e6d97032-2540-47c6-ac8c-da6eb17a4ba0,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Christensson Fredrik,"3100, 2618",43,,36,Parliament,"['434733395']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/fredrik-christensson_08f0d4c3-a02f-4e08-88b2-c03d384f63fc, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/fredrik-christensson_08f0d4c3-a02f-4e08-88b2-c03d384f63fc",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Fredrik Malm,"3192, 2621",41,,36,Parliament,"['20068313']",Lib,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/fredrik-malm_cf017275-5272-4506-a686-4e1d8edc5ab6, https://www.riksdagen.se/en/members-and-parties/member/fredrik-malm_cf017275-5272-4506-a686-4e1d8edc5ab6",,,,"https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib",,Sweden,22,"8, 9",11420 +Fredrik Olovsson,"2622, 2931",38,,36,Parliament,"['19284493']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/fredrik-olovsson_bc5c4354-fca3-4071-8096-acd9b7b1d09a, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/fredrik-olovsson_bc5c4354-fca3-4071-8096-acd9b7b1d09a",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Göran Pettersson,2624,42,,36,Parliament,"['206582058']",Mod,https://www.riksdagen.se/en/members-and-parties/member/goran-pettersson_27404e0f-a79c-4ec8-80ad-f2cb98b60b02,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Carlsson Gunilla,"2625, 2869",38,,36,Parliament,"['628665187']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/gunilla-carlsson_11d950d5-e41f-4e94-af86-ae8a1996d81b, https://www.riksdagen.se/en/members-and-parties/member/gunilla-carlsson_11d950d5-e41f-4e94-af86-ae8a1996d81b",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Gunilla Nordgren,2626,42,,36,Parliament,"['614299477']",Mod,https://www.riksdagen.se/en/members-and-parties/member/gunilla-nordgren_4bc1dde3-08a2-45f0-a83f-c5fab3507d27,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Gunilla Svantorp,"2627, 2946",38,,36,Parliament,"['551838506']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/gunilla-svantorp_434f8fc8-eb9d-4364-99f6-63f1ef873561, https://www.riksdagen.se/en/members-and-parties/member/gunilla-svantorp_434f8fc8-eb9d-4364-99f6-63f1ef873561",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Håkan Svenneling,"3149, 2630",40,,36,Parliament,"['32016073']",Lft,"https://www.riksdagen.se/en/members-and-parties/member/hakan-svenneling_de1f77c9-338c-4547-a223-9898cd8ed084, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hakan-svenneling_de1f77c9-338c-4547-a223-9898cd8ed084",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Hanna Wigh,2633,37,,36,Parliament,"['338026921']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/hanna-wigh_26f00744-ea57-4ebd-bf10-6d12f424ae9f,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Hans Rothenberg,"2636, 3016",42,,36,Parliament,"['139127908']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hans-rothenberg_eec523be-f85c-43d5-83b0-e734e43905d1, https://www.riksdagen.se/en/members-and-parties/member/hans-rothenberg_eec523be-f85c-43d5-83b0-e734e43905d1",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Bouveng Helena,"2976, 2640",42,,36,Parliament,"['278036073']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/helena-bouveng_a65ace9d-bbae-43cd-8a21-119c8b3b0bfb, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/helena-bouveng_a65ace9d-bbae-43cd-8a21-119c8b3b0bfb",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Hillevi Larsson,"2643, 2905",38,,36,Parliament,"['25266533']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hillevi-larsson_d7c329b4-83e4-11d4-ae60-0050040c9b55, https://www.riksdagen.se/en/members-and-parties/member/hillevi-larsson_d7c329b4-83e4-11d4-ae60-0050040c9b55",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Ingemar Nilsson,"2924, 2647",38,,36,Parliament,"['1701494353']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/ingemar-nilsson_4746c2a4-172a-4092-a3d3-08144cd1f0be, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ingemar-nilsson_4746c2a4-172a-4092-a3d3-08144cd1f0be",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +From Isak,"2649, 2881",38,,36,Parliament,"['1564311799']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/isak-from_cebc9890-55f1-41ff-acc7-af2de3e4320e, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/isak-from_cebc9890-55f1-41ff-acc7-af2de3e4320e",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Amin Jabar,2650,39,,36,Parliament,"['321362887']",Grn,https://www.riksdagen.se/en/members-and-parties/member/jabar-amin_fcfcb68c-c0e4-40c0-a7f3-68ec912d1268,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Forssmed Jakob,"3167, 2651",44,,36,Parliament,"['362444109']",ChrDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jakob-forssmed_0ab695ba-6994-11d7-ae76-0004755038ce, https://www.riksdagen.se/en/members-and-parties/member/jakob-forssmed_0ab695ba-6994-11d7-ae76-0004755038ce",,,,"https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem",,Sweden,22,"8, 9",11520 +Ericson Jan,"2655, 2983",42,,36,Parliament,"['393890670']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/jan-ericson_5c11ef9b-d56d-4e85-8cc6-800f0257548a, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jan-ericson_5c11ef9b-d56d-4e85-8cc6-800f0257548a",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Andersson Jan R,"2964, 2657",42,,36,Parliament,"['25803598']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/jan-r-andersson_ecbe80be-fc66-48ce-81fd-14d6fa38aa4c, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jan-r-andersson_ecbe80be-fc66-48ce-81fd-14d6fa38aa4c",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Alm Ericson Janine,"2658, 3205",39,,36,Parliament,"['302612407']",Grn,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/janine-alm-ericson_7e408079-a5cd-432a-a30e-fd61fd15c65a, https://www.riksdagen.se/en/members-and-parties/member/janine-alm-ericson_7e408079-a5cd-432a-a30e-fd61fd15c65a",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn, https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/",,Sweden,22,"8, 9",11110 +Jennie Nilsson,"2661, 2925",38,,36,Parliament,"['19235477']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/jennie-nilsson_4c6f215d-de3a-452d-83b5-f472b8668b7e, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jennie-nilsson_4c6f215d-de3a-452d-83b5-f472b8668b7e",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Jenny Petersson,2662,42,,36,Parliament,"['19448284']",Mod,https://www.riksdagen.se/en/members-and-parties/member/jenny-petersson_6310baff-62a3-4a72-9cda-e76c302c3a88,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Holm Jens,"2663, 3137",40,,36,Parliament,"['31080756']",Lft,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jens-holm_5b7ac02c-0819-426d-bc5d-41b8c21ca4dd, https://www.riksdagen.se/en/members-and-parties/member/jens-holm_5b7ac02c-0819-426d-bc5d-41b8c21ca4dd",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Jessica Polfjärd,"2665, 3010, 13032","182, 42",29,"197, 36",Parliament,"['327359409']","Moderaterna, Mod","https://www.riksdagen.se/en/members-and-parties/member/jessica-polfjard_ba2d53c0-4f47-45f0-a961-ac265c2b8679, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jessica-polfjard_ba2d53c0-4f47-45f0-a961-ac265c2b8679",,Sweden,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,"Sweden, European Parliament","22, 27","8, 43, 9",11620 +Jessica Rosencrantz,"3014, 2666",42,,36,Parliament,"['552630315']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/jessica-rosencrantz_acdaa4aa-20f2-49a0-b929-0862f4bd6826, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jessica-rosencrantz_acdaa4aa-20f2-49a0-b929-0862f4bd6826",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Jessika Roswall,"3015, 2667",42,,36,Parliament,"['237648982']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jessika-roswall_5e09bf12-6f96-4a96-ac0c-27203aef4d2f, https://www.riksdagen.se/en/members-and-parties/member/jessika-roswall_5e09bf12-6f96-4a96-ac0c-27203aef4d2f",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Jimmie Åkesson,"3092, 2668",37,,36,Parliament,"['95972673']",SweDem,"https://www.riksdagen.se/en/members-and-parties/member/jimmie-akesson_5ecb17ba-ebbe-4958-a142-a5134aff9808, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jimmie-akesson_5ecb17ba-ebbe-4958-a142-a5134aff9808","['Partiledare']",,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Forssell Johan,"2672, 2985",42,,36,Parliament,"['154050557']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-forssell_0b564224-f764-4bfc-87f6-80fcaa33fa46, https://www.riksdagen.se/en/members-and-parties/member/johan-forssell_0b564224-f764-4bfc-87f6-80fcaa33fa46",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Hultberg Johan,"2991, 2674",42,,36,Parliament,"['587216713']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/johan-hultberg_31ae8846-ad0b-4ff2-aaf7-72b398d1fb5a, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-hultberg_31ae8846-ad0b-4ff2-aaf7-72b398d1fb5a",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Johan Nissinen,2675,37,,36,Parliament,"['391707601']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/johan-nissinen_04e5d66d-9d71-4358-9dcb-8a2e371397c0,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Haraldsson Johanna,"2886, 2676",38,,36,Parliament,"['526517939']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/johanna-haraldsson_a1d94b24-2d7f-4d84-99fb-ca161ba77f78, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johanna-haraldsson_a1d94b24-2d7f-4d84-99fb-ca161ba77f78",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Johnny Skalin,"2678, 3080",37,,36,Parliament,"['135489572']",SweDem,"https://www.riksdagen.se/en/members-and-parties/member/johnny-skalin_88b7893a-c9f3-4278-a486-353a1d77a96c, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johnny-skalin_88b7893a-c9f3-4278-a486-353a1d77a96c",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Eriksson Jonas,"3207, 2680",39,,36,Parliament,"['34907977']",Grn,"https://www.riksdagen.se/en/members-and-parties/member/jonas-eriksson_a38e0ebf-a2df-4cba-81eb-81d6fcf342cd, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jonas-eriksson_a38e0ebf-a2df-4cba-81eb-81d6fcf342cd","['Gruppledare']",,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn, https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/",,Sweden,22,"8, 9",11110 +Gunnarsson Jonas,2681,38,,36,Parliament,"['565268225']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/jonas-gunnarsson_68236092-a044-46cf-b2b8-55bf505a5dcc,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Jonas Sjöstedt,"2684, 3148",40,,36,Parliament,"['435854067']",Lft,"https://www.riksdagen.se/en/members-and-parties/member/jonas-sjostedt_b4bf17ad-b37d-44ee-bf62-eaf4942a2a43, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jonas-sjostedt_b4bf17ad-b37d-44ee-bf62-eaf4942a2a43","['Partiledare']",,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Andersson Jörgen,2685,42,,36,Parliament,"['613309515']",Mod,https://www.riksdagen.se/en/members-and-parties/member/jorgen-andersson_b8c3d066-2004-4f19-8b33-8089d8bdd45e,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Jörgen Warborn,"2687, 3023, 13053","182, 42",29,"197, 36",Parliament,"['19085332']","Moderaterna, Mod","https://www.riksdagen.se/en/members-and-parties/member/jorgen-warborn_15ab245f-6634-4e11-88eb-3d9533e87d18, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jorgen-warborn_15ab245f-6634-4e11-88eb-3d9533e87d18",,Sweden,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,"Sweden, European Parliament","22, 27","8, 43, 9",11620 +Fransson Josef,"3050, 2688",37,,36,Parliament,"['400001248']",SweDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/josef-fransson_2131f2eb-348c-4b92-8e76-52c134d79919, https://www.riksdagen.se/en/members-and-parties/member/josef-fransson_2131f2eb-348c-4b92-8e76-52c134d79919",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Julia Kronlid,"2689, 3059",37,,36,Parliament,"['2557535953']",SweDem,"https://www.riksdagen.se/en/members-and-parties/member/julia-kronlid_04727b66-64cd-4880-be85-dc8fe873bf8d, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/julia-kronlid_04727b66-64cd-4880-be85-dc8fe873bf8d",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Enström Karin,"2691, 2982",42,,36,Parliament,"['346795026', '704970863100235776']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/karin-enstrom_d7c32504-83e4-11d4-ae60-0050040c9b55, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/karin-enstrom_d7c32504-83e4-11d4-ae60-0050040c9b55",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Karin Rågsjö,"3146, 2692",40,,36,Parliament,"['292331091']",Lft,"https://www.riksdagen.se/en/members-and-parties/member/karin-ragsjo_b250135d-d424-497a-8484-36cb6c0dbf3d, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/karin-ragsjo_b250135d-d424-497a-8484-36cb6c0dbf3d",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Karin Smith Svensson,2693,39,,36,Parliament,"['1876698872']",Grn,https://www.riksdagen.se/en/members-and-parties/member/karin-svensson-smith_d7c326a9-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Forslund G Kenneth,"2880, 2695",38,,36,Parliament,"['20841592']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/kenneth-g-forslund_f1484855-05d7-498f-8872-5a0c33ad535b, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kenneth-g-forslund_f1484855-05d7-498f-8872-5a0c33ad535b",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Ekeroth Kent,2696,37,,36,Parliament,"['19314018']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/kent-ekeroth_0449e7b9-459a-4776-b87c-e19427c799fb,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Kerstin Lundgren,"2698, 3115",43,,36,Parliament,"['24265642']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/kerstin-lundgren_4a514760-f0a7-47a7-8a51-91bd46693df7, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kerstin-lundgren_4a514760-f0a7-47a7-8a51-91bd46693df7",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Hammarbergh Krister,2700,42,,36,Parliament,"['720518367']",Mod,https://www.riksdagen.se/en/members-and-parties/member/krister-hammarbergh_bb3a2767-be36-4d80-b22e-f1861dc45993,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Lars-Arne Staxäng,2706,42,,36,Parliament,"['2404433921']",Mod,https://www.riksdagen.se/en/members-and-parties/member/lars-arne-staxang_d8b31172-7ce6-4737-b55c-24c6c9aec023,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Lars-Axel Nordell,2707,44,,36,Parliament,"['111991054']",ChrDem,https://www.riksdagen.se/en/members-and-parties/member/lars-axel-nordell_98a60091-77be-47ba-b940-1ade954b0f7f,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem,,Sweden,22,8,11520 +Hjälmered Lars,"2990, 2710",42,,36,Parliament,"['426071524']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-hjalmered_4cc89ee3-f5bd-4009-a13f-d86a40caff16, https://www.riksdagen.se/en/members-and-parties/member/lars-hjalmered_4cc89ee3-f5bd-4009-a13f-d86a40caff16",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Lars Larsson Mejern,"2711, 2906",38,,36,Parliament,"['20582098']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/lars-mejern-larsson_3badc18d-3c4a-4068-921a-b5fa8a9652d6, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-mejern-larsson_3badc18d-3c4a-4068-921a-b5fa8a9652d6",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Asplund Lena,2715,42,,36,Parliament,"['141917431']",Mod,https://www.riksdagen.se/en/members-and-parties/member/lena-asplund_6fd2908a-7d39-426c-abd6-43287e3882f9,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Emilsson Lena,2716,38,,36,Parliament,"['2297877809']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/lena-emilsson_8f8cf53f-9bd3-464a-a4bd-0976a1ec2d5a,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Hallengren Lena,2717,38,,36,Parliament,"['122078343']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/lena-hallengren_3c5cc43c-e4cd-11d6-ae81-0004755038ce,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Axelsson Lennart,2718,38,,36,Parliament,"['989684827']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/lennart-axelsson_2b87940b-b3ff-11d5-af0b-0050040caabf,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Linda Snecker Westerlund,"3156, 2719",40,,36,Parliament,"['306370816']",Lft,"https://www.riksdagen.se/en/members-and-parties/member/linda-snecker_1c03e794-a9a3-43d5-810a-7951e4c70901, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/linda-westerlund-snecker_1c03e794-a9a3-43d5-810a-7951e4c70901",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Bylund Linus,2720,37,,36,Parliament,"['146235861']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/linus-bylund_c97b1897-90bf-4e3d-b9bb-97887b022661,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Lise Nordin,2723,39,,36,Parliament,"['392684445']",Grn,https://www.riksdagen.se/en/members-and-parties/member/lise-nordin_bf400346-b49e-4983-a92f-8c573f0e8b24,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Finstorp Lotta,2724,42,,36,Parliament,"['606968732']",Mod,https://www.riksdagen.se/en/members-and-parties/member/lotta-finstorp_61e74c12-dab8-4117-8b4e-ffd41c21dbda,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Lotta Olsson,"3008, 2726",42,,36,Parliament,"['104229816']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lotta-olsson_acbfe365-7ddb-44db-b076-105b2b9b689a, https://www.riksdagen.se/en/members-and-parties/member/lotta-olsson_acbfe365-7ddb-44db-b076-105b2b9b689a",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Magnus Persson,"3072, 2729",37,,36,Parliament,"['706669183']",SweDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/magnus-persson_de52ae16-706b-4138-a194-aec42fd28aab, https://www.riksdagen.se/en/members-and-parties/member/magnus-persson_de52ae16-706b-4138-a194-aec42fd28aab",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Cederfelt Margareta,"2732, 2978",42,,36,Parliament,"['871668595', '19597751']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/margareta-cederfelt_d7c329da-83e4-11d4-ae60-0050040c9b55, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/margareta-cederfelt_d7c329da-83e4-11d4-ae60-0050040c9b55",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Abrahamsson Maria,2734,42,,36,Parliament,"['73100393']",Mod,https://www.riksdagen.se/en/members-and-parties/member/maria-abrahamsson_4d0df538-142d-4552-8a19-3f9a0342bb69,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Arnholm Maria,"3182, 2736",41,,36,Parliament,"['1113942241']",Lib,"https://www.riksdagen.se/en/members-and-parties/member/maria-arnholm_83345459-cc17-4d4a-b2bb-3748a0f3721c, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-arnholm_83345459-cc17-4d4a-b2bb-3748a0f3721c","['Partisekreterare']",,,"https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib",,Sweden,22,"8, 9",11420 +Ferm Maria,"2737, 3209",39,,36,Parliament,"['15402649']",Grn,"https://www.riksdagen.se/en/members-and-parties/member/maria-ferm_f7506cc9-0867-4ec3-a0ba-8a1a127060f8, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-ferm_f7506cc9-0867-4ec3-a0ba-8a1a127060f8","['Vice gruppledare']",,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn, https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/",,Sweden,22,"8, 9",11110 +Maria Plass,2739,42,,36,Parliament,"['1357201854']",Mod,https://www.riksdagen.se/en/members-and-parties/member/maria-plass_23dd8525-5126-46f6-b27e-e28d78b611c7,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Maria Stockhaus,"2740, 3017",42,,36,Parliament,"['47329763']",Mod,"https://www.riksdagen.se/en/members-and-parties/member/maria-stockhaus_ee32e119-fdfe-4e00-b136-b2102d79b2a6, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-stockhaus_ee32e119-fdfe-4e00-b136-b2102d79b2a6",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Maria Strömkvist,"2741, 2945",38,,36,Parliament,"['18900142']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/maria-stromkvist_566a8a1c-0625-4f24-9beb-6b6dec928df7, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-stromkvist_566a8a1c-0625-4f24-9beb-6b6dec928df7",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Maria Weimer,2742,41,,36,Parliament,"['122022318']",Lib,https://www.riksdagen.se/en/members-and-parties/member/maria-weimer_0f41c116-f393-4036-aa1f-1fa0d264ec0a,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib,,Sweden,22,8,11420 +Granlund Marie,2744,38,,36,Parliament,"['23245616']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/marie-granlund_d7c3202c-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Ernkrans Matilda,"2751, 2877",38,,36,Parliament,"['628660217']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/matilda-ernkrans_8166bd73-bf10-4ef8-8e01-1975ca921c12, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/matilda-ernkrans_8166bd73-bf10-4ef8-8e01-1975ca921c12",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Green Mats,"2986, 2752",42,,36,Parliament,"['899371272', '962966174425341952']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mats-green_d5c26045-6fd1-4c05-8f97-7195e1e324ff, https://www.riksdagen.se/en/members-and-parties/member/mats-green_d5c26045-6fd1-4c05-8f97-7195e1e324ff",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Jonsson Mattias,"2893, 2754",38,,36,Parliament,"['321522177']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mattias-jonsson_9ae916dd-799d-4d2b-80c4-f00bc5a7344d, https://www.riksdagen.se/en/members-and-parties/member/mattias-jonsson_9ae916dd-799d-4d2b-80c4-f00bc5a7344d",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Karlsson Mattias,"2999, 3057, 2755","37, 42",,36,Parliament,"['974972387522502656', '154116697']","SweDem, Mod","https://www.riksdagen.se/en/members-and-parties/member/mattias-karlsson_727e2213-ac97-4ceb-bfab-f228debd8074, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mattias-karlsson_727e2213-ac97-4ceb-bfab-f228debd8074, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mattias-karlsson_951f7039-b277-4696-ab49-7f0df0f39d1a","['Gruppledare']",,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"9, 8, 9","11710, 11620" +Mattias Ottosson,2756,38,,36,Parliament,"['1341924050']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/mattias-ottosson_df8c5ae3-43e8-4d8a-bf64-67b9a78fef66,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Cederbratt Mikael,2760,42,,36,Parliament,"['2386885596']",Mod,https://www.riksdagen.se/en/members-and-parties/member/mikael-cederbratt_6b57068c-3968-4dd7-894d-f69b28461d8b,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Mikael Oscarsson,"3175, 2764",44,,36,Parliament,"['104943486']",ChrDem,"https://www.riksdagen.se/en/members-and-parties/member/mikael-oscarsson_d7c3256b-83e4-11d4-ae60-0050040c9b55, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mikael-oscarsson_d7c3256b-83e4-11d4-ae60-0050040c9b55",,,,"https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem",,Sweden,22,"8, 9",11520 +Green Monica,2765,38,,36,Parliament,"['18839942']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/monica-green_d7c320a2-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Malmberg Niclas,2767,39,,36,Parliament,"['143457836']",Grn,https://www.riksdagen.se/en/members-and-parties/member/niclas-malmberg_7365e865-e602-44fb-adf2-e58cf9c0a6f9,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Karlsson Niklas,"2768, 2897",38,,36,Parliament,"['156635362']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/niklas-karlsson_b20fb574-b44c-42af-ae93-064dfabbffaf, https://www.riksdagen.se/en/members-and-parties/member/niklas-karlsson_b20fb574-b44c-42af-ae93-064dfabbffaf",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Niklas Wykman,"3028, 2769",42,,36,Parliament,"['2435618995']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/niklas-wykman_ab589436-528b-42c5-8e0c-28849b0d2294, https://www.riksdagen.se/en/members-and-parties/member/niklas-wykman_ab589436-528b-42c5-8e0c-28849b0d2294",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Johansson Ola,"2773, 3107",43,,36,Parliament,"['46725883']",Cen,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ola-johansson_728bd800-61df-4b9a-86ed-1fe3d8479f14, https://www.riksdagen.se/en/members-and-parties/member/ola-johansson_728bd800-61df-4b9a-86ed-1fe3d8479f14",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Felten Olle,2774,37,,36,Parliament,"['368777408']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/olle-felten_eb4a2005-9ec1-45c0-9f63-3e4ffdc4f04e,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Olle Thorell,"2949, 2775",38,,36,Parliament,"['139397687']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/olle-thorell_6d1640b5-12e6-41a3-82a2-a3e91c172cda, https://www.riksdagen.se/en/members-and-parties/member/olle-thorell_6d1640b5-12e6-41a3-82a2-a3e91c172cda",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Lavesson Olof,2776,42,,36,Parliament,"['89427793']",Mod,https://www.riksdagen.se/en/members-and-parties/member/olof-lavesson_2a48a7e0-90d3-44fc-b4e8-d4f743d1f80e,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Patrick Reslow,"3075, 2779","45, 37",,36,Parliament,"['219266880']","Independent, SweDem","https://www.riksdagen.se/sv/ledamoter-partier/ledamot/patrick-reslow_6aa5f2eb-568a-4853-a925-65fee736b037, https://www.riksdagen.se/en/members-and-parties/member/patrick-reslow_6aa5f2eb-568a-4853-a925-65fee736b037",,,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=-",,Sweden,22,"8, 9",11710 +Björck Patrik,"2780, 2864",38,,36,Parliament,"['2231927771']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/patrik-bjorck_8a5b8260-f6d5-4d17-af0b-a339cd40470e, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/patrik-bjorck_8a5b8260-f6d5-4d17-af0b-a339cd40470e",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Gamov Pavel,2785,37,,36,Parliament,"['102276010']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/pavel-gamov_a8568101-4108-42b7-8dd6-f14665dfa9ac,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Gunther Penilla,2786,44,,36,Parliament,"['31547704']",ChrDem,https://www.riksdagen.se/en/members-and-parties/member/penilla-gunther_2835c86b-c123-4590-af49-10892b48692b,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem,,Sweden,22,8,11520 +Håkansson Per-Arne,2787,38,,36,Parliament,"['2369244312']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/per-arne-hakansson_0ba9f702-555f-419f-89fb-7e1234ae1171,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Per Åsling,2788,43,,36,Parliament,"['68945032']",Cen,https://www.riksdagen.se/en/members-and-parties/member/per-asling_74c39a37-e184-44f6-9a7e-36cdb06c9dcc,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen,,Sweden,22,8,11810 +Klarberg Per,2790,37,,36,Parliament,"['36040217']",SweDem,https://www.riksdagen.se/en/members-and-parties/member/per-klarberg_a514c45f-c68a-423b-b308-6ab298c0a3b6,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem,,Sweden,22,8,11710 +Lodenius Per,"2791, 3114",43,,36,Parliament,"['594930372']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/per-lodenius_66c12cfb-4888-443a-9e31-f64671296908, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/per-lodenius_66c12cfb-4888-443a-9e31-f64671296908",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Jeppsson Peter,2795,38,,36,Parliament,"['952437572']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/peter-jeppsson_a30248dd-ed41-436a-974c-f88f7474b855,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Andersson Phia,2800,38,,36,Parliament,"['2157225635']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/phia-andersson_66c0dc01-c64a-4d95-8d22-41dffc64795c,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Niemi Pyry,"2802, 2923",38,,36,Parliament,"['29401817']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/pyry-niemi_f0303245-c279-46dc-bffb-549d300db73a, https://www.riksdagen.se/en/members-and-parties/member/pyry-niemi_f0303245-c279-46dc-bffb-549d300db73a",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Jomshof Richard,"3055, 2805",37,,36,Parliament,"['186533780']",SweDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/richard-jomshof_ea8bae0d-0db4-4c68-b59f-3ba83d5f445d, https://www.riksdagen.se/en/members-and-parties/member/richard-jomshof_ea8bae0d-0db4-4c68-b59f-3ba83d5f445d","['Partisekreterare']",,,"https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=swedem",,Sweden,22,"8, 9",11710 +Nordin Rickard,"2806, 3118",43,,36,Parliament,"['128176155']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/rickard-nordin_a57d39bb-9f60-4def-ab90-97791ec56447, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/rickard-nordin_a57d39bb-9f60-4def-ab90-97791ec56447",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Hannah Robert,"3191, 2810",41,,36,Parliament,"['496050817']",Lib,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/robert-hannah_99a5ca75-949e-470a-9b44-e2cdbcec920b, https://www.riksdagen.se/en/members-and-parties/member/robert-hannah_99a5ca75-949e-470a-9b44-e2cdbcec920b",,,,"https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib",,Sweden,22,"8, 9",11420 +Haddad Roger,"2812, 3190",41,,36,Parliament,"['878300089']",Lib,"https://www.riksdagen.se/en/members-and-parties/member/roger-haddad_521898f1-51de-46ff-8701-d28b8a0e651d, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/roger-haddad_521898f1-51de-46ff-8701-d28b8a0e651d",,,,"https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lib",,Sweden,22,"8, 9",11420 +Roland Utbult,"2815, 3180",44,,36,Parliament,"['78048238']",ChrDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/roland-utbult_e3b6587d-15fd-4a54-a95b-c1eaa56d2f68, https://www.riksdagen.se/en/members-and-parties/member/roland-utbult_e3b6587d-15fd-4a54-a95b-c1eaa56d2f68",,,,"https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem",,Sweden,22,"8, 9",11520 +Dinamarca Rossana,2816,40,,36,Parliament,"['84310420']",Lft,https://www.riksdagen.se/en/members-and-parties/member/rossana-dinamarca_e0e11e75-5742-491e-b5c5-2f1a9511a1d9,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft,,Sweden,22,8,11220 +Karlsson Sara,2821,38,,36,Parliament,"['118722303']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/sara-karlsson_5992b184-2cab-4c60-b995-987f51b95052,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Arkelsten Sofia,2824,42,,36,Parliament,"['196213234']",Mod,https://www.riksdagen.se/en/members-and-parties/member/sofia-arkelsten_13a899b9-6d08-4245-bc4b-8efc6e2d4419,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Damm Sofia,"2825, 3165",44,,36,Parliament,"['2163521143']",ChrDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sofia-damm_a6a33386-bc67-4702-aa8c-331ffe7e2f9c, https://www.riksdagen.se/en/members-and-parties/member/sofia-damm_a6a33386-bc67-4702-aa8c-331ffe7e2f9c",,,,"https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem",,Sweden,22,"8, 9",11520 +Fölster Sofia,2826,42,,36,Parliament,"['301518835']",Mod,https://www.riksdagen.se/en/members-and-parties/member/sofia-folster_0da60ff2-0199-4192-b0a2-33563891dfed,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Solveig Zander,"2827, 3125",43,,36,Parliament,"['24874309']",Cen,"https://www.riksdagen.se/en/members-and-parties/member/solveig-zander_c59974f3-9489-4b50-8a17-78378bfd7afe, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/solveig-zander_c59974f3-9489-4b50-8a17-78378bfd7afe",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen, https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/",,Sweden,22,"8, 9",11810 +Bergheden Sten,"2971, 2832",42,,36,Parliament,"['2436452542']",Mod,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sten-bergheden_641344b2-dc65-4282-b308-8fca005983a1, https://www.riksdagen.se/en/members-and-parties/member/sten-bergheden_641344b2-dc65-4282-b308-8fca005983a1",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod, https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/",,Sweden,22,"8, 9",11620 +Bergström Stina,2834,39,,36,Parliament,"['2151183954']",Grn,https://www.riksdagen.se/en/members-and-parties/member/stina-bergstrom_3a1527f1-057a-45f2-9331-dee050ddcf55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Carvalho Teresa,"2840, 2870",38,,36,Parliament,"['22159604']",SocDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/teresa-carvalho_3d764cf6-705b-460b-8226-df8f1226b27b, https://www.riksdagen.se/en/members-and-parties/member/teresa-carvalho_3d764cf6-705b-460b-8226-df8f1226b27b",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Finnborg Thomas,2841,42,,36,Parliament,"['613419622']",Mod,https://www.riksdagen.se/en/members-and-parties/member/thomas-finnborg_6f7adcfd-f25d-4114-a0c7-8d61931fd61d,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Eneroth Tomas,2846,38,,36,Parliament,"['27914274']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/tomas-eneroth_d7c31fc6-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Skånberg Tuve,"2849, 3177",44,,36,Parliament,"['37868481']",ChrDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tuve-skanberg_d7c31c8c-83e4-11d4-ae60-0050040c9b55, https://www.riksdagen.se/en/members-and-parties/member/tuve-skanberg_d7c31c8c-83e4-11d4-ae60-0050040c9b55",,,,"https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=chrdem",,Sweden,22,"8, 9",11520 +Kristersson Ulf,2850,42,,36,Parliament,"['402690401']",Mod,https://www.riksdagen.se/en/members-and-parties/member/ulf-kristersson_e7e4132a-b4df-11d5-8079-0040ca16072a,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Andersson Ulla,"2851, 3130",40,,36,Parliament,"['156348820']",Lft,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ulla-andersson_a9eff036-3d8c-487e-9325-e3bece8df1e4, https://www.riksdagen.se/en/members-and-parties/member/ulla-andersson_a9eff036-3d8c-487e-9325-e3bece8df1e4",,,,"https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft, https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/",,Sweden,22,"8, 9",11220 +Carlsson Ulrika,2852,43,,36,Parliament,"['25053123']",Cen,https://www.riksdagen.se/en/members-and-parties/member/ulrika-carlsson_8c343e73-ddab-428a-87aa-0ab8e2879ce4,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=cen,,Sweden,22,8,11810 +Karlsson Ulrika,2853,42,,36,Parliament,"['1261508922']",Mod,https://www.riksdagen.se/en/members-and-parties/member/ulrika-karlsson_ca44a628-ee7f-4760-a56a-6ac195740ba0,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=mod,,Sweden,22,8,11620 +Mutt Valter,2854,39,,36,Parliament,"['2561165431']",Grn,https://www.riksdagen.se/en/members-and-parties/member/valter-mutt_5c0178cc-afad-4db5-870c-60cec1471e31,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=grn,,Sweden,22,8,11110 +Lindholm Veronica,2855,38,,36,Parliament,"['591865811']",SocDem,https://www.riksdagen.se/en/members-and-parties/member/veronica-lindholm_74b02237-8bd3-4200-952b-cbd202eeec8d,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem,,Sweden,22,8,11320 +Johansson Wiwi-Anne,2856,40,,36,Parliament,"['240631769']",Lft,https://www.riksdagen.se/en/members-and-parties/member/wiwi-anne-johansson_9fa04b4d-174b-4c86-82fa-1336c4a6a52d,,,,https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=lft,,Sweden,22,8,11220 +Larsson Yasmine,"2857, 2909",38,,36,Parliament,"['2902295655', '47407209']",SocDem,"https://www.riksdagen.se/en/members-and-parties/member/yasmine-larsson_69da57e0-b072-45d0-944a-aa5d3f9e3070, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/yasmine-larsson_69da57e0-b072-45d0-944a-aa5d3f9e3070",,,,"https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/, https://www.riksdagen.se/en/members-and-parties/?typeoflist=parti&parti=socdem",,Sweden,22,"8, 9",11320 +Löfven Stefan,2860,38,,36,Parliament,"['747426555417198592']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/stefan-lofven_ac737989-5fa0-44bc-ad69-c1a0ddba71bb,"['Partiledare / PM']",,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Andersson Johan,2862,38,,36,Parliament,"['19110356']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-andersson_fff74c6c-fae3-4977-a472-cfe2b6ae257a,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Björklund Heléne,2865,38,,36,Parliament,"['375083796']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/helene-bjorklund_a4581b8d-78fd-41c1-a55d-7fe9ed93c878,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Burwick Marlene,2866,38,,36,Parliament,"['92840693']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/marlene-burwick_cec8b2f1-f56f-4b7e-974f-eefa299c89cb,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Büser Johan,2867,38,,36,Parliament,"['2882613629']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-buser_90110ece-022e-4e0f-bb4e-f5102900fa9a,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Dahlqvist Mikael,2871,38,,36,Parliament,"['825739170920484864']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mikael-dahlqvist_4db15792-072c-456e-a46c-6d0cee07889e,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Eriksson Åsa,2876,38,,36,Parliament,"['2351284124']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/asa-eriksson_473cc883-b475-42fe-8553-4f1a6bd17a54,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Aylin Fazelian,2879,38,,36,Parliament,"['2365359410']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/aylin-fazelian_d6bcb84c-0102-4eca-b564-c21bd7cf1f4e,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Elin Gustafsson,2883,38,,36,Parliament,"['745028648']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/elin-gustafsson_994eee01-a983-4409-9455-cd915c86d94d,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Haider Monica,2884,38,,36,Parliament,"['272022187']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/monica-haider_6f818cd1-9a97-412f-bc59-1d1e8a2ceb19,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Hammarberg Thomas,2885,38,,36,Parliament,"['791612594']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/thomas-hammarberg_0363ee54-6077-4caf-b7d6-09dcb7051213,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Anna Johansson,2892,38,,36,Parliament,"['18838766']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anna-johansson_9fd034bc-17ce-471b-b78c-94e03b34f7a0,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Ida Karkiainen,2895,38,,36,Parliament,"['1175135413']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ida-karkiainen_7891a68a-bcbd-43a3-bd8b-90bdbb040f45,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Karlsson Åsa,2898,38,,36,Parliament,"['2289346170']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/asa-karlsson_317c6cc9-dcd5-4dcc-b275-9e17d973da4c,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Kadir Kasirga,2899,38,,36,Parliament,"['3398059281']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kadir-kasirga_81e7b3dd-c260-45d1-89a7-ddd6cbe6582d,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Köse Serkan,2902,38,,36,Parliament,"['47156292']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/serkan-kose_f2597c6d-8286-457a-9d62-6243f260af40,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Dag Larsson,2904,38,,36,Parliament,"['18837459']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/dag-larsson_56a35546-926b-4ac3-a101-a157de119e00,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Lindberg Teres,2911,38,,36,Parliament,"['27856210']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/teres-lindberg_2d7334ea-9a6f-4381-b6ec-3c46d744cb9a,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Eva Lindh,2913,38,,36,Parliament,"['477946503']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/eva-lindh_ee86b181-9f3b-4e03-8ef4-b96b1e79cd25,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Lundqvist Patrik,2916,38,,36,Parliament,"['412122136']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/patrik-lundqvist_41f3a07f-57ba-4d0c-b737-e05aa04ec023,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Anders Lönnberg,2919,38,,36,Parliament,"['903661302']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anders-lonnberg_9fdf72d9-6d47-4cd8-b6f7-3e81d6767e92,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Magnus Manhammar,2920,38,,36,Parliament,"['20202859']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/magnus-manhammar_639da251-c800-4b3d-a8c5-6626094c9035,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Möller Ola,2921,38,,36,Parliament,"['412945792']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ola-moller_002ed7e8-1202-46df-a87c-8585e5b92012,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Laila Naraghi,2922,38,,36,Parliament,"['282740590']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/laila-naraghi_f65cb6f1-7001-4e8e-8d32-89d534577ab0,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Nilsson Pia,2927,38,,36,Parliament,"['26005916']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/pia-nilsson_d6a34e6b-6f87-455c-ab36-fd75292f0ed0,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Ingela Nylund Watz,2928,38,,36,Parliament,"['799565034347266049']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ingela-nylund-watz_9cd4ce1a-c1f5-4743-aed6-8e60569e9947,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Leif Nysmed,2929,38,,36,Parliament,"['508586205']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/leif-nysmed_bdd26f21-dca7-4e7c-af32-131937aa539b,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Helén Pettersson,2937,38,,36,Parliament,"['19650143']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/helen-pettersson_13c0a836-8abf-453d-92d0-44d009c27f85,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Lawen Redar,2939,38,,36,Parliament,"['921655142']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lawen-redar_285a3d5f-cb32-4958-9b7c-1545b2faff18,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Azadeh Gustafsson Rojhan,2940,38,,36,Parliament,"['3290884595']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/azadeh-rojhan-gustafsson_c325b529-3455-44a2-acd2-597698b321a6,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Baastad Lena Rådström,2941,38,,36,Parliament,"['723049994492731392']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lena-radstrom-baastad_3303f6e9-7957-4a86-9457-090ef22a54ef,"['Partisekreterare']",,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Markus Selin,2943,38,,36,Parliament,"['514272732']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/markus-selin_4da8bb6b-fc06-4f3a-ba25-f70dfe5eb5a7,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Linus Sköld,2944,38,,36,Parliament,"['359251517']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/linus-skold_d17ef55a-9e3b-4a4d-894e-d57c7fb4973f,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Anna-Caren Sätherberg,2947,38,,36,Parliament,"['906096158']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anna-caren-satherberg_c2917e84-a1f8-4de8-9c71-a492eee1f43f,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Mathias Tegnér,2948,38,,36,Parliament,"['512403375']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mathias-tegner_2091e357-e195-430b-8dab-7e13732ffa41,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Anna Vikström,2951,38,,36,Parliament,"['18776278']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anna-vikstrom_fb0337ec-a1b0-440e-b9b4-a48e99fd415c,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Westlund Åsa,2955,38,,36,Parliament,"['19161627']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/asa-westlund_73281fee-b276-4150-8cf0-fd3368b3c5c6,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Anders Ygeman,2958,38,,36,Parliament,"['19496771']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anders-ygeman_d7c3235d-83e4-11d4-ae60-0050040c9b55,"['Gruppledare']",,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Carina Ödebrink,2959,38,,36,Parliament,"['893647507']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/carina-odebrink_10b75fcf-dbac-4fba-9773-7e8889c237b2,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Anders Österberg,2960,38,,36,Parliament,"['2392343062']",SocDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anders-osterberg_df3988c4-9541-465c-b02e-1410c3d31155,,,,https://www.riksdagen.se/sv/ledamoter-partier/socialdemokraterna/,,Sweden,22,9,11320 +Alm Ann-Sofie,2962,42,,36,Parliament,"['805067234']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ann-sofie-alm_f91f6a86-591c-449c-b3dd-1fdaa86338cd,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Alexandra Anstrell,2965,42,,36,Parliament,"['512875987']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/alexandra-anstrell_8310e472-996b-4c8a-bce5-4d09fb20a66a,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Ask Beatrice,2966,42,,36,Parliament,"['4873946986']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/beatrice-ask_d7c31ae1-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Bali Hanif,2968,42,,36,Parliament,"['104778698']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hanif-bali_b86c28d2-48d1-41a6-bea3-b3317cdfeec8,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Beckman Lars,2969,42,,36,Parliament,"['298744792']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-beckman_db90fc94-9496-4748-9b84-bcfadc24af74,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Bengtzboe Erik,2970,42,,36,Parliament,"['19566644']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/erik-bengtzboe_cc608c25-fcc1-4bdb-9354-4cd44532ff25,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Berglund Jörgen,2972,42,,36,Parliament,"['1334878842']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jorgen-berglund_fe6f437b-729a-4943-8e41-f43d39a5605f,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Billström Tobias,2973,42,,36,Parliament,"['20596565']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tobias-billstrom_0918737e-5224-47aa-a86b-d64f6d820618,"['Gruppledare']",,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Brännström Katarina,2977,42,,36,Parliament,"['2903465373']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/katarina-brannstrom_97a9cfb7-de78-4995-8e29-40891595e8d2,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Drougge Ida,2980,42,,36,Parliament,"['119159588']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ida-drougge_e8a2c04d-a186-421b-b1fd-a401f0917673,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Ann-Charlotte Hammar Johnsson,2987,42,,36,Parliament,"['20921291']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ann-charlotte-hammar-johnsson_5ac51ad6-c8ea-4ce6-bcd5-b8609d6c058a,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Heindorff Ulrika,2989,42,,36,Parliament,"['210742543']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ulrika-heindorff_7c4e35b2-f653-4746-bb03-351abbd566eb,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Hänel Marie-Louise Sandström,2992,42,,36,Parliament,"['103696302']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/marie-louise-hanel-sandstrom_ddbc56dc-35aa-4c01-828c-5a117e4f2682,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Jonson Pål,2994,42,,36,Parliament,"['2253169846']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/pal-jonson_057d1c7b-e668-4acc-8167-5d8dc68db0af,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +David Josefsson,2995,42,,36,Parliament,"['300247911']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/david-josefsson_5d9734c8-d757-4862-8f2e-c292824120a7,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Arin Karapet,2998,42,,36,Parliament,"['1441911019']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/arin-karapet_2658d745-0315-41b7-926c-f136a7803b88,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Kopparklint Lund Marléne,3001,42,,36,Parliament,"['178488783']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/marlene-lund-kopparklint_ac019194-2cf6-4ebd-8d29-29e1f3950cdf,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Malmer Maria Stenergard,3003,42,,36,Parliament,"['963945493']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-malmer-stenergard_4f48a9f3-c14a-4436-8ad3-a1d4166bdf30,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Josefin Malmqvist,3004,42,,36,Parliament,"['99694673']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/josefin-malmqvist_698a36fb-19f3-48cf-bfda-20a17195fbd5,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Manouchi Noria,3005,42,,36,Parliament,"['141893641']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/noria-manouchi_2d211f58-34b9-44c9-b2f0-def45ed3e03c,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Louise Meijer,3006,42,,36,Parliament,"['141609591']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/louise-meijer_88e092fa-1769-43c7-bfef-9d260811c982,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Marta Obminska,3007,42,,36,Parliament,"['30199609']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/marta-obminska_c994a157-6301-46d2-a111-abe58ec220f4,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Erik Ottoson,3009,42,,36,Parliament,"['23308888']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/erik-ottoson_0f90ef03-a652-45a1-b697-39a33b32e512,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Lars Püss,3011,42,,36,Parliament,"['113050485']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-puss_9f5c5d35-c450-4068-923a-2d8d077223d5,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Quicklund Saila,3012,42,,36,Parliament,"['778919004']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/saila-quicklund_243f0434-ae15-41b4-92b6-146a0fb0700a,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Elisabeth Svantesson,3018,42,,36,Parliament,"['2829792282']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/elisabeth-svantesson_b7538868-d298-4c5f-9098-e42ea9fb13da,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Cecilie Tenfjord Toftby,3019,42,,36,Parliament,"['108906498']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/cecilie-tenfjord-toftby_4c83b0e0-8dda-47a4-9464-81c56db30430,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Tobé Tomas,"3020, 13399","182, 42",29,"197, 36",Parliament,"['19455187']","Moderaterna, Mod",https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tomas-tobe_e6943f96-a4d8-45f3-81f2-8ecea4f25e6b,,Sweden,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,"Sweden, European Parliament","22, 27","43, 9",11620 +Camilla Grönvall Waltersson,3022,42,,36,Parliament,"['1161300068']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/camilla-waltersson-gronvall_e581b273-02ee-4cb3-9390-35ea0061eca1,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +John Weinerhall,3024,42,,36,Parliament,"['464153343']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/john-weinerhall_5af2318e-82dc-4271-b219-c12b3d74d11a,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Sofia Westergren,3025,42,,36,Parliament,"['2217785466']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sofia-westergren_1ee04f4d-e5a6-4aab-8461-f5baa7d2a2da,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +John Widegren,3027,42,,36,Parliament,"['917115009129435136']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/john-widegren_5d1ac61d-4464-41a4-bae0-42ea3782cba8,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Viktor Wärnick,3029,42,,36,Parliament,"['339898814']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/viktor-warnick_7cdc7712-4bb7-4361-8b72-8f98a111d0c5,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Ann-Britt Åsebol,3031,42,,36,Parliament,"['318993474']",Mod,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ann-britt-asebol_71b2ece2-dcf7-4e51-aa4c-042cca81cf1e,,,,https://www.riksdagen.se/sv/ledamoter-partier/moderaterna/,,Sweden,22,9,11620 +Andersson Jonas,"3033, 3032",37,,36,Parliament,"['2727928425', '497336663']",SweDem,"https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jonas-andersson_9944df03-e946-4046-aeef-c49117503a0c, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jonas-andersson_c5e9daf0-868f-4c8e-9a69-671c7b22855a",,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Andersson Tobias,3035,37,,36,Parliament,"['1573085143']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tobias-andersson_5763c159-5105-47b3-82fb-9cc7dc20dc7d,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Aranda Clara,3036,37,,36,Parliament,"['728769445']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/clara-aranda_6977f22f-363b-40fb-8f8f-8163b4492345,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Angelika Bengtsson,3038,37,,36,Parliament,"['800281172']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/angelika-bengtsson_9d68c0c3-2102-402d-998f-dc56a410d19d,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Bieler Paula,3039,37,,36,Parliament,"['542170497']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/paula-bieler_4bf6dd84-3a63-4cb0-a8c0-08ca3d5e00c3,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Bäckström Johansson Mattias,3041,37,,36,Parliament,"['395542723']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mattias-backstrom-johansson_cb0336b4-54a8-4384-abe3-8d6cbebc63fa,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Eriksson Yasmine,3047,37,,36,Parliament,"['325819753']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/yasmine-eriksson_ae22d593-d382-40dc-918c-df30916b6d9e,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Eskilandersson Mikael,3048,37,,36,Parliament,"['423559923']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mikael-eskilandersson_cf98df89-2103-40cc-8524-b2df33125a3f,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Hedlund Roger,3053,37,,36,Parliament,"['104783793']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/roger-hedlund_dd0d47ea-5e71-4ec9-b987-3261320ac857,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Ebba Hermansson,3054,37,,36,Parliament,"['800401356913668096']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ebba-hermansson_109831a1-4305-4376-a3cf-ecc173855d65,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Kinnunen Martin,3058,37,,36,Parliament,"['725896819']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/martin-kinnunen_57cbe134-829b-4fb8-9cc1-ce2f1cd02f3b,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Michael Rubbestad,3077,37,,36,Parliament,"['291675893']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/michael-rubbestad_6025366f-76b8-4664-a3ef-ea0864fc8365,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Robert Stenkvist,3081,37,,36,Parliament,"['299559374']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/robert-stenkvist_0cb27c59-4f9e-4d84-a8e2-f45325b5a93c,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Sven-Olof Sällström,3086,37,,36,Parliament,"['2481987373']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sven-olof-sallstrom_06776272-4f62-44c7-9011-f66349279c88,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Markus Wiechel,3090,37,,36,Parliament,"['62018785']",SweDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/markus-wiechel_8a9f3c8c-8ce8-4a17-9e57-0109af47efcc,,,,https://www.riksdagen.se/sv/ledamoter-partier/sverigedemokraterna/,,Sweden,22,9,11710 +Arthursson Michael,3096,43,,36,Parliament,"['327361913']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/michael-arthursson_32a23826-6fd4-4a82-bcef-6bc64df3007d,"['Partisekreterare']",,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Akhondi Alireza,3097,43,,36,Parliament,"['254086746']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/alireza-akhondi_4099ff9c-5d27-4605-b018-98fb229d94fa,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Cato Hansson Jonny,3099,43,,36,Parliament,"['139174756']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jonny-cato-hansson_946642dd-825a-47fb-b150-37373b873083,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Ek Magnus,3101,43,,36,Parliament,"['588086188']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/magnus-ek_529ac523-d10b-444b-8441-56a24a66ef5b,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Erlandsson Eskil,3102,43,,36,Parliament,"['3034284701']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/eskil-erlandsson_d7c32246-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Hedin Johan,3103,43,,36,Parliament,"['18720634']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-hedin_6014c0f6-d3b6-4ed4-ae63-ace3af71dc86,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Helander Peter,3105,43,,36,Parliament,"['96089009']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/peter-helander_3234a755-70b3-40db-b414-d5afb960ed4e,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Larsson Mikael,3112,43,,36,Parliament,"['1397924808']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mikael-larsson_39797ca4-c136-41c6-bf6b-feb256dee6b3,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Annie Lööf,3116,43,,36,Parliament,"['18447095']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/annie-loof_e234524d-e04b-448a-b609-05926a0a8b36,"['Partiledare']",,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Nilsson Sofia,3117,43,,36,Parliament,"['38702837']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/sofia-nilsson_560c0817-1b91-478a-b273-87a82888328e,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Niels Paarup-Petersen,3119,43,,36,Parliament,"['23932109']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/niels-paarup-petersen_1512b21b-9312-41bc-80ed-f4f0e58f1de4,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Helena Vilhelmsson,3122,43,,36,Parliament,"['2401494006']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/helena-vilhelmsson_bcf8f6dc-7be4-46d3-bb3e-df793b2c5256,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Kristina Yngwe,3124,43,,36,Parliament,"['328995303']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kristina-yngwe_2cfb5b7e-ac47-45e5-84f4-6c53c047cdca,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Martin Ådahl,3126,43,,36,Parliament,"['1356789895']",Cen,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/martin-adahl_1e70f7df-dd11-410b-941a-bcac14e919a8,,,,https://www.riksdagen.se/sv/ledamoter-partier/centerpartiet/,,Sweden,22,9,11810 +Dadgostar Nooshi,3131,40,,36,Parliament,"['282532238']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/nooshi-dadgostar_78d79a96-956f-4ac3-bbf7-2b15b3d86ce7,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Ali Esbati,3133,40,,36,Parliament,"['61481011']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ali-esbati_979e9852-69ed-4077-8140-52ab99414a6c,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Gunnarsson Hanna,3135,40,,36,Parliament,"['120152296']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hanna-gunnarsson_8880da78-8ec1-41f7-96c7-f007375352ac,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Haddou Tony,3136,40,,36,Parliament,"['2889508517']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tony-haddou_8e21a563-23d4-46cd-a901-acf5839d72d9,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Jallow Malcolm Momodou,3139,40,,36,Parliament,"['456861006']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/momodou-malcolm-jallow_f257311a-2900-4db5-a2e2-df250c764ad6,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Fornarve Johnsson Lotta,3140,40,,36,Parliament,"['4000970775']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lotta-johnsson-fornarve_4468626c-27a1-46c7-b530-f346b70b753b,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Karlsson Maj,3142,40,,36,Parliament,"['2660021067']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maj-karlsson_9d6489d6-6fa5-4420-9224-8968abaa569c,"['Vice gruppledare']",,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Ilona Szatmari Waldau,3151,40,,36,Parliament,"['22465210']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ilona-szatmari-waldau_ffe5107b-dc51-4209-ae87-9eabf8fe014d,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Jon Thorbjörnson,3152,40,,36,Parliament,"['1307607127']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jon-thorbjornson_e66d3e3a-3f97-4942-bc4a-f4aa89ad365a,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Ciczie Weidby,3155,40,,36,Parliament,"['27488286']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ciczie-weidby_b34f05f5-d73a-428c-88a1-4e112c650498,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Jessica Wetterling,3157,40,,36,Parliament,"['2763926992']",Lft,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jessica-wetterling_dc0c1e6e-450b-4763-be41-c3f810d50b72,,,,https://www.riksdagen.se/sv/ledamoter-partier/vansterpartiet/,,Sweden,22,9,11220 +Kullgren Peter,3158,44,,36,Parliament,"['77208479']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/peter-kullgren_68edf87b-745b-4862-bb38-d388733c3c4d,"['Partisekreterare']",,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Adaktusson Lars,"6641, 3159","44, 355",29,"189, 36",Parliament,"['2294733241']","ChrDem, Kristdemokraterna","https://www.europarl.europa.eu/meps/en/124990/LARS_ADAKTUSSON_home.html, https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lars-adaktusson_4a2cb0d8-5569-4f1b-bd0f-62c7e812a2fb",,Sweden,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/",,"Sweden, European Parliament","22, 27","32, 9",11520 +Brodin Camilla,3161,44,,36,Parliament,"['612010812']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/camilla-brodin_86c365a5-452c-4bca-8871-45bf67a44645,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Busch Ebba Thor,3162,44,,36,Parliament,"['1407151866']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/ebba-busch-thor_b0cce726-5e23-4d21-a609-95071f8820f0,"['Partiledare']",,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Carlsson Christian,3164,44,,36,Parliament,"['106044807']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/christian-carlsson_2774ffff-fec1-459c-b172-974af448f147,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Eklind Hans,3166,44,,36,Parliament,"['493903326']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hans-eklind_f270f5c5-c28f-4267-8dff-0bead595f631,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Hagman Hampus,3168,44,,36,Parliament,"['357671244']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/hampus-hagman_88438cea-b340-48cf-8fa8-230f1a8d2ea2,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Jacobsson Magnus,3171,44,,36,Parliament,"['114281672']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/magnus-jacobsson_d7c3282f-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Kjell-Arne Ottosson,3176,44,,36,Parliament,"['473898383']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/kjell-arne-ottosson_708eae46-00f3-433c-ba07-7129def782fb,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Larry Söder,3179,44,,36,Parliament,"['19864223']",ChrDem,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/larry-soder_e238e06a-acac-4fae-829c-1773ee851878,,,,https://www.riksdagen.se/sv/ledamoter-partier/ChrDem/,,Sweden,22,9,11520 +Acketoft Tina,3181,41,,36,Parliament,"['267740219']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/tina-acketoft_45445eb9-01dc-4786-990e-c1864d4f7c50,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Avci Gulan,3183,41,,36,Parliament,"['28527773']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/gulan-avci_9d13985d-9d6c-4cba-8492-1155d94fbe69,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Björklund Jan,3184,41,,36,Parliament,"['2890850363']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/jan-bjorklund_fb860100-9be3-4365-b84c-24fe53434882,"['Partiledare']",,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Forssell Joar,3188,41,,36,Parliament,"['424539277']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/joar-forssell_1c9bf350-8e09-4e61-b337-d03d4656b86a,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Maria Nilsson,3193,41,,36,Parliament,"['283555836']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-nilsson_f950f83d-d19e-4ae8-82c5-8a302c4bd0eb,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Lina Nordquist,3194,41,,36,Parliament,"['83792038']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lina-nordquist_87042942-c4f6-46ff-9eac-fceaf25729d5,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Johan Pehrson,3196,41,,36,Parliament,"['21866399']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/johan-pehrson_d7c327f8-83e4-11d4-ae60-0050040c9b55,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Mats Persson,3197,41,,36,Parliament,"['528848733']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/mats-persson_66fca0ac-0ebb-4bd0-b1e1-f34e223d2f1b,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Arman Teimouri,3198,41,,36,Parliament,"['19041604']",Lib,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/arman-teimouri_92355c36-d95d-42ed-9ad9-463bf9558767,,,,https://www.riksdagen.se/sv/ledamoter-partier/liberalerna/,,Sweden,22,9,11420 +Isabella Lövin,3202,39,,36,Parliament,"['610994783']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/isabella-lovin_1a383cdc-f329-49f1-a2eb-e327ab542e2f,"['Språkrör']",,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Amanda Lind,3203,39,,36,Parliament,"['370900852']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/amanda-lind_80567105-cf2c-48cd-99d2-40f8df897b2f,"['Partisekreterare']",,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Ali-Elmi Leila,3204,39,,36,Parliament,"['950792761086828544']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/leila-ali-elmi_5997ba96-4f01-46f4-8bd8-e1411a9d503b,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Berginger Emma,3206,39,,36,Parliament,"['155671138']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/emma-berginger_280f9475-e1a8-495b-96bf-04b1b0497a00,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Gardfjell Maria,3210,39,,36,Parliament,"['24145538']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/maria-gardfjell_d9a13d2e-85ec-4c59-af10-773ff99b8eb1,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Annika Falk Hirvonen,3211,39,,36,Parliament,"['74749621']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/annika-hirvonen-falk_a9346ffe-2c1f-4e2b-b686-d8248a3d0db2,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Annica Hjerling,3212,39,,36,Parliament,"['17532748']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/annica-hjerling_8d512372-93ca-4514-922a-286760f236f9,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Le Moine Rebecka,3214,39,,36,Parliament,"['2353058792']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/rebecka-le-moine_67e327d0-b2ca-47eb-802a-c140187f0e0c,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Lindhagen Åsa,3215,39,,36,Parliament,"['561553692']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/asa-lindhagen_de8826b0-fcf9-4305-86e3-c2680dfed224,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Ling Rasmus,3216,39,,36,Parliament,"['18781492']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/rasmus-ling_8af2f4df-6c44-4844-89af-c0fd142e4eed,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Anna Sibinska,3218,39,,36,Parliament,"['1571088493']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/anna-sibinska_214d9393-c01e-497c-8580-d033b9f57705,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Lorentz Tovatt,3219,39,,36,Parliament,"['183553683']",Grn,https://www.riksdagen.se/sv/ledamoter-partier/ledamot/lorentz-tovatt_087644a0-838d-4768-9133-62745aeee287,,,,https://www.riksdagen.se/sv/ledamoter-partier/miljopartiet/,,Sweden,22,9,11110 +Adams Amy,"3220, 3341",46,,45,Parliament,"['52356116']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/adams-amy/,,Selwyn,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Ardern Jacinda,"16567, 3221, 3368",47,,45,Parliament,"['22959763']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ardern-jacinda/,"[""Prime Minister of NZ. Leader @nzlabour. Won't tweet what I ate for breakfast-make no promises beyond that. Authorised by Timothy Grigg 160 Willis St, Wellington""]",Mt Albert,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Bakshi Kanwaljit Singh,"3347, 3222",46,,45,Parliament,"['140297916']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bakshi-kanwaljit-singh/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Ball Darroch,"3223, 3356",48,,45,Parliament,"['2585342936']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ball-darroch/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64621 +Barclay Todd,3224,46,,45,Parliament,"['2984570592']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/barclay-todd/,,Clutha-Southland,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Barry Maggie,"3381, 3225",46,,45,Parliament,"['67118071']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/barry-maggie/,,North Shore,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Bennett David,"3357, 16571, 3227",46,,45,Parliament,"['24056982']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bennett-david/,"['Authorised by David Bennett MP, 510 Grey Street, Hamilton East']","List, Hamilton East",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Bennett Paula,"3228, 3395",46,,45,Parliament,"['28409997']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bennett-paula/,,Upper Harbour,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Bindra Mahesh,3229,48,,45,Parliament,"['406860930']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bindra-mahesh/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64621 +Bishop Chris,"16573, 3353, 3230",46,,45,Parliament,"['181012160']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bishop-chris/,"['National MP. Spokesperson for COVID-19. Shadow Leader of the House. Co-captain, NZ Parliamentary Cricket XI. Samoyed owner, coffee addict, brisket lover.']","Hutt South, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Bond Ria,3231,48,,45,Parliament,"['231179492']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bond-ria/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64621 +Borrows Chester,3232,46,,45,Parliament,"['92598386']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/borrows-chester/,,Whanganui,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Bridges Simon,"3405, 16575, 3233",46,,45,Parliament,"['1180370792']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bridges-simon/,"['MP for Tauranga since November 2008. Authorised by Simon Bridges, 35a Third Avenue, Tauranga.']",Tauranga,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Browning Steffan,3234,49,,45,Parliament,"['166824947']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/browning-steffan/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Carter David,"3236, 3358",46,,45,Parliament,"['18750581']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/carter-david/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Clark David,"3237, 3359, 16582",47,,45,Parliament,"['322976025']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/clark-david/,"['MP for Dunedin. I stand for fairness & decent livelihoods for all. Worked farms, factories, & Treasury, Ironman. Auth. by David Clark, 32 Albany Street, Dunedin']",Dunedin North,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Clendon David,3238,49,,45,Parliament,"['29565212']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/clendon-david/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Barry Coates,3239,49,,45,Parliament,"['27797324']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/coates-barry/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Coleman Jonathan,"3373, 3240",46,,45,Parliament,"['70288354']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/coleman-jonathan/,,Northcote,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Collins Judith,"3241, 3377, 16584",46,,45,Parliament,"['756227808']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/collins-judith/,"['Authorised by Hon Judith Collins, MP for Papakura, 98 Great South Rd, Papakura. #Leader of the NZ National Party, Mother, Wife, Lawyer, Author.']",Papakura,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Clare Curran,"3354, 3243",47,,45,Parliament,"['29406343']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/curran-clare/,,Dunedin South,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64320 +Davidson Marama,"16587, 3382, 3244","13, 49",,45,Parliament,"['147406561']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/davidson-marama/,"['@NZGreens Co-leader based in Manurewa. Minister. Indigenous to Aotearoa. Authorised by Gwen Shaw, 17 Garrett Street Wgtn.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57","64110, 51110" +Davis Kelvin,"3390, 16588, 3245",47,,45,Parliament,"['607152697']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/davis-kelvin/,"['Ngāti Manu, Kāretu. Te Tai Tokerau MP. Minister for Children, Māori Crown Relations, Corrections.Authorised by Kelvin Davis MP, Parliament Buildings, Wellington']",Te Tai Tokerau,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Dean Jacqui,"16589, 3246",46,,45,Parliament,"['3190206607', '1186465000472231938']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/dean-jacqui/,"['MP for Waitaki, proud advocate for the Waitaki electorate. Authorised by Jacqui Dean MP, 127 Thames Street, Oamaru.']",Waitaki,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"15, 57",64620 +Catherine Delahunty,3247,49,,45,Parliament,"['26568999']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/delahunty-catherine/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Dowie Sarah,"3249, 3393",46,,45,Parliament,"['1437035906']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/dowie-sarah/,,Invercargill,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Dunne Peter,3250,50,,45,Parliament,"['243916139']",United Future Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/dunne-peter/,,Ōhāriu,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64421 +Dyson Ruth,"3403, 3251",47,,45,Parliament,"['103494259']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/dyson-ruth/,,Port Hills,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64320 +Bill English,"3399, 3252",46,,45,Parliament,"['31634233']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/english-bill/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Faafoi Kris,"3253, 16593, 3379",47,,45,Parliament,"['204154654']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/faafoi-kris/,"['Proud to be the MP for Mana. Authorised by Kris Faafoi, 6 Hartham Place, Porirua.']","Mana, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Christopher Finlayson,"3254, 3351",46,,45,Parliament,"['25792467']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/finlayson-christopher/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Flavell Te Ururoa,3255,51,,45,Parliament,"['262909861']",Māori Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/flavell-te-ururoa/,,Waiariki,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64901 +Craig Foss,3256,46,,45,Parliament,"['34467455']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/foss-craig/,,Tukituki,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Foster-Bell Paul,3257,46,,45,Parliament,"['20909637']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/foster-bell-paul/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Fox Marama,3258,51,,45,Parliament,"['559303030']",Māori Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/fox-marama/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64901 +Anne Genter Julie,"3259, 3378, 16594","13, 49",,45,Parliament,"['129943834']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/genter-julie-anne/,"['MP for the Green Party of Aotearoa NZ. I’m into lively streets, real food, and bicycles. Auth by J Genter, Parlt Buildings, WLG']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57","64110, 51110" +Goldsmith Paul,"16596, 3260, 3396",46,,45,Parliament,"['581645959']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/goldsmith-paul/,"['List MP based in Epsom. NZ National Party Spokesperson for Finance & EQC. Authorised by Paul Goldsmith MP, 107 Great South Road, Auckland.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Goodhew Jo,3261,46,,45,Parliament,"['2175532662']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/goodhew-jo/,,Rangitata,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Graham Kennedy,3262,49,,45,Parliament,"['28010179']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/graham-kennedy/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Guy Nathan,"3389, 3263",46,,45,Parliament,"['1132212984']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/guy-nathan/,,"Ōtaki, Ōtaki",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Hayes Joanne,"3264, 3375",46,,45,Parliament,"['304725986']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/hayes-joanne/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Henare Peeni,"16599, 3265, 3397",47,,45,Parliament,"['2582229654']",Labour Party,"https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/hanare-peeni/, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/henare-peeni/","['Member of Parliament for Tāmaki Makaurau (Authorised by Timothy Grigg, 160 Willis Street, Wellington).']",Tāmaki Makaurau,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Chris Hipkins,"3352, 3266, 16601",47,,45,Parliament,"['25754056']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/hipkins-chris/,"['MP for Remutaka. Leader of the House. Minister of Education. Minister for the Public Service. Authorised by Rob Salmond, 160 Willis Street, Wellington']","Rimutaka, Remutaka",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Brett Hudson,"3267, 3349",46,,45,Parliament,"['1038333752']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/hudson-brett/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Gareth Hughes,"3268, 3364",49,,45,Parliament,"['118829680']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/hughes-gareth/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64110 +Huo Raymond,"3269, 3401",47,,45,Parliament,"['494576320']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/huo-raymond/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64320 +Joyce Steven,"3407, 3270",46,,45,Parliament,"['366935179']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/joyce-steven/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Kaye Nikki,"3271, 3392",46,,45,Parliament,"['60550677']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/kaye-nikki/,,Auckland Central,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Annette King,3272,47,,45,Parliament,"['160474294']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/king-annette/,,Rongotai,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64320 +Barbara Kuriger,"3274, 3348, 16605",46,,45,Parliament,"['371019945']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/kuriger-barbara/,"['MP for Taranaki-King Country. A proud supporter of rural and provincial New Zealand. Authorised by Barbara Kuriger, 80 Rata Street, Inglewood.']",Taranaki-King Country,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Lee Melissa,"3386, 16608, 3275",46,,45,Parliament,"['174199107']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lee-melissa/,"['뉴질랜드 국회의원 멜리사 리. Authorised by Melissa Lee, Parliament Buildings, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Iain Lees-Galloway,"3366, 3276",47,,45,Parliament,"['23724587']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lees-galloway-iain/,,Palmerston North,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64320 +Andrew Little,"16610, 3342, 3277",47,,45,Parliament,"['368842056']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/little-andrew/,"['NZ Minister of Health, Treaty of Waitangi Negotiations, Pike River, NZSIS and GCSB. Labour List MP. Authorised by Andrew Little, Parliament Buildings, WLG.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Jan Logie,"3372, 16611, 3278","13, 49",,45,Parliament,"['121553239']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/logie-jan/,"['Green Party MP, spokesperson for Social Dev, State Services, workplace relations , ACC... & 🌈Authorised by: Gwen Shaw, Level 2, 17 Garrett Street, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57","64110, 51110" +Lotu-Iiga Peseta Sam,3279,46,,45,Parliament,"['83695459']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lotu-iiga-peseta-sam/,,Maungakiekie,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Macindoe Tim,"3280, 3412",46,,45,Parliament,"['109480485']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/macindoe-tim/,,Hamilton West,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Mahuta Nanaia,"16616, 3388, 3281",47,,45,Parliament,"['292220830']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mahuta-nanaia/,"['Minister for Foreign Affairs, Local Government and Associate Māori Development. This site is authorised by Timothy Grigg, 160 Willis Street, Wellington.']",Hauraki-Waikato,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Martin Tracey,"3415, 3284",48,,45,Parliament,"['587284588']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/martin-tracey/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64621 +Mathers Mojo,3285,49,,45,Parliament,"['39141559']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mathers-mojo/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Mcclay Todd,"3413, 3286, 16619",46,,45,Parliament,"['2858594918']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mcclay-todd/,"['MP for Rotorua. National Party Spokesperson for Economic Development and Tourism. Authorised by T.McClay Parliament Buildings, Wellington.']",Rotorua,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Ian Mckelvie,"3288, 3367, 16622",46,,45,Parliament,"['611300773']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mckelvie-ian/,"['Member of Parliament for Rangitikei. Authorised by Ian McKelvie MP, 11 Manchester Square, Feilding 4702']",Rangitīkei,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Clayton Mitchell,"3411, 3289",48,,45,Parliament,"['1597501970']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mitchell-clayton/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64621 +Mark Mitchell,"3383, 16625, 3290",46,,45,Parliament,"['313659726']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mitchell-mark/,"['National MP for Rodney. Authorised by Mark Mitchell, Tamariki House, 7 Tamariki Ave, Orewa']","Whangaparāoa, Rodney",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Moroney Sue,3291,47,,45,Parliament,"['299580303']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/moroney-sue/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64320 +Muller Todd,"3414, 3292, 16627",46,,45,Parliament,"['2543108298']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/muller-todd/,"['MP for Bay of Plenty. Authorised by Todd Muller MP, 3/9 Domain Road, Papamoa']",Bay of Plenty,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Nash Stuart,"16628, 3408, 3293",47,,45,Parliament,"['3036870865']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/nash-stuart/,"['Labour MP for Napier. Minister for Economic and Regional Development, Forestry, Small Business, Tourism. Authorised by Timothy Grigg, 160 Willis St, Wellington']",Napier,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Jono Naylor,3294,46,,45,Parliament,"['539548061']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/naylor-jono/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Alfred Ngaro,"3340, 3295",46,,45,Parliament,"['428605068']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ngaro-alfred/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Damien O’Connor,"16631, 3296, 3355",47,,45,Parliament,"['760842698']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/oconnor-damien/,"['Minister of Agriculture, Biosecurity, Food Safety and Rural Communities. Authorised by Timothy Grigg, 160 Willis St, Wellington']",West Coast-Tasman,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +O'Connor Simon,3297,46,,45,Parliament,"['18277419']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/oconnor-simon/,,Rangitīkei,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Hekia Parata,3300,46,,45,Parliament,"['188228410']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/parata-hekia/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +David Parker,"3301, 3360, 16636",47,,45,Parliament,"['768286632']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/parker-david/,"['NZ Attorney-General, Minister for the Environment, Revenue, Oceans and Fisheries + Associate Finance. Authorised by Timothy Grigg, 160 Willis St, Wgtn.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Parmar Parmjeet,"3302, 3394",46,,45,Parliament,"['779137505979342848', '779137505979342720']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/parmar-parmjeet/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"15, 16",64620 +Peters Winston,"3303, 3417",48,,45,Parliament,"['346944092']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/peters-winston/,,"Northland, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64621 +Prosser Richard,3304,48,,45,Parliament,"['349032104']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/prosser-richard/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64621 +Maureen Pugh,"16639, 3305",46,,45,Parliament,"['2384426755']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/pugh-maureen/,"['National Party List MP based in West Coast - Tasman. Authorised by Maureen Pugh, Parliament Buildings.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"15, 57",64620 +Reti Shane,"3362, 3306",46,,45,Parliament,"['3094694155']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/reti-shane/,,Whangarei,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Grant Robertson,"16643, 3365, 3307",47,,45,Parliament,"['24149001']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/robertson-grant/,"['Labour MP for Wellington Central, Deputy Prime Minister, Minister of Finance, Sport+Recreation+Racing, . Authorised by Timothy Grigg 160 Willis St, Wellington']",Wellington Central,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Denise Roche,3308,49,,45,Parliament,"['356139045']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/roche-denise/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64110 +Jami-Lee Ross,"3371, 3309",46,,45,Parliament,"['245243839']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ross-jami-lee/,,Botany,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Adrian Rurawhe,"16644, 3310, 3339",47,,45,Parliament,"['33189912']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/rurawhe-adrian/,"['Member of Parliament for Te Tai Hauāuru. Nā Timothy Grigg o 160 Willis Street i Poneke, tēnei pae tukutuku i whakarite.']",Te Tai Hauāuru,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Eugenie Sage,"3363, 3311, 16646","13, 49",,45,Parliament,"['429452117']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/sage-eugenie/,"['Green MP based in Otautahi/Christchurch. Likes liveable cities & wild places. Authorised by Eugenie Sage, Parliament Buildings, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57","64110, 51110" +Jenny Salesa,"3374, 3312, 16647",47,,45,Parliament,"['2401210076']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/salesa-jenny/,"['Labour MP for Panmure-Otahuhu. Authorised by Timothy Grigg, 160 Willis Street, Wellington']","Panmure-Ōtāhuhu, Manukau East",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Alastair Scott,"3345, 3313",46,,45,Parliament,"['2509728985']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/scott-alastair/,,Wairarapa,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Carmel Sepuloni,"3314, 16648, 3350",47,,45,Parliament,"['611683035']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/sepuloni-carmel/,"['Authorised by Timothy Grigg, 160 Willis Street, Wellington']",Kelston,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +David Seymour,"16650, 3315, 3361",52,,45,Parliament,"['23352383']",ACT Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/seymour-david/,"['MP for Epsom, Leader, @actparty. Authorised by D Smith, 27 Gillies Avenue, Newmarket, Auckland 1023.']",Epsom,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64420 +James Shaw,"3316, 16652, 3370","13, 49",,45,Parliament,"['31583101']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/shaw-james/,"['Minister of Climate Change, Associate Minister for the Environment (Biodiversity), MP & @NZGreens Co-leader. Authorised by James Shaw, Parliament Buildings, WGN']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57","64110, 51110" +Scott Simpson,"16654, 3404, 3317",46,,45,Parliament,"['34813183']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/simpson-scott/,"['MP for #Coromandel. Environment, Workplace Relations & RMA(Environment) Spokesperson @NZNationalParty (Authorised by Scott Simpson 614 Pollen St, Thames)']",Coromandel,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Aupito Sio William,"3318, 3346, 16655",47,,45,Parliament,"['26209461']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/sio-aupito-william/,"[""O a'u o le matai Samoa, o Aupito Toeolesulusulu Tofae Sua Wlliam Sio, o se faipule o le Palemene a NZ Authorised by Rob Salmond, 160 Willis Street, Wellington""]",Māngere,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Smith Stuart,"3320, 3409, 16658",46,,45,Parliament,"['2842312937']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/smith-stuart/,"['National Party MP for Kaikoura', 'Authorised by Stuart Smith - 22 Scott St, Blenheim']",Kaikōura,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Barbara Stewart,3321,48,,45,Parliament,"['2989079504']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/stewart-barbara/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64621 +Fletcher Tabuteau,"3410, 3322",48,,45,Parliament,"['1969962980']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/tabuteau-fletcher/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64621 +Rino Tirikatene,"3402, 3323, 16663",47,,45,Parliament,"['588733258']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/tirikatene-rino/,"['Parliamentary Under-Secretary Oceans and Fisheries and Trade and Export Growth (Maori) Authorised by Timothy Grigg, 160 Willis St, Wellington']",Te Tai Tonga,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Anne Tolley,"3343, 3325",46,,45,Parliament,"['1281726260']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/tolley-anne/,,East Coast,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Phil Twyford,"3327, 3398, 16665",47,,45,Parliament,"['40409545']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/twyford-phil/,"['Minister in 6th Labour Government. MP for Te Atatu. Authorised by Phil Twyford MP, Parliament Buildings, Wellington']",Te Atatū,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Louise Upston,"3328, 16666, 3380",46,,45,Parliament,"['29387139']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/upston-louise/,"['Authorised by Louise Upston, 67 Paora Hapi St, Taupo', 'National MP for Taupo.']",Taupō,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Nicky Wagner,"3329, 3391",46,,45,Parliament,"['25770641']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/wagner-nicky/,,"List, Christchurch Central",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +Meka Whaitiri,"3385, 3331, 16677",47,,45,Parliament,"['559823431']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/whaitiri-meka/,"['Ngāti Kahungunu, Rongowhakaata. Labour MP for Ikaroa-Rāwhiti. Nā Timothy Grigg i mana,160 Willis Street, Wellington.']",Ikaroa-Rāwhiti,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Poto Williams,"16680, 3400, 3332",47,,45,Parliament,"['1913682588']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/williams-poto/,"['official twitter account of Poto Williams - MP for Christchurch East - authorised by Timothy Grigg, 160 Willis Street, Wellington']",Christchurch East,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Maurice Williamson,3333,46,,45,Parliament,"['162869041']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/williamson-maurice/,,Pakuranga,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,15,64620 +Michael Wood,"3334, 16682, 3387",47,,45,Parliament,"['184374575']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/wood-michael/,"['Labour MP for Mt Roskill. Minister of Transport + Workplace Relations & Safety. Dad, Anglican, cricket guy. Authorised by R.Salmond, 160 Willis St.']",Mt Roskill,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Michael Woodhouse,"3335, 16683, 3418",46,,45,Parliament,"['2296972758']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/woodhouse-michael/,"['National MP, based in Dunedin **Authorised by Michael Woodhouse MP, 333 Princes St, Dunedin **']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64620 +Megan Woods,"3336, 3384, 16684",47,,45,Parliament,"['23852569']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/woods-megan/,"['Minister for Housing, Energy & Resources, Research, Science & Innovation, & Canterbury Regeneration - Authorised by Timothy Grigg, 160 Willis Street, Wellington']",Wigram,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15, 57",64320 +Jonathan Young,"3376, 3338",46,,45,Parliament,"['240517888']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/young-jonathan/,,New Plymouth,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 15",64620 +King Matt,3344,46,,45,Parliament,"['245193812']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/king-matt/,,Northland,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64620 +Mallard Trevor,"16617, 3416",47,,45,Parliament,"['33394729']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mallard-trevor/,"['Authorised by Trevor Mallard, Parliament Buildings, Wellington.', 'Speaker of @NZParliament. Some tweets as Speaker, some just Trevor.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Allan Kiritapu,"3419, 16565",47,,45,Parliament,"['557530121']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/allan-kiritapu/,"['Single malt, rugby, fishing, law, politics. ENTJ. East Coast MP, Labour Party. Authorised by Timothy Grigg, 160 Willis Street, Wellington.']","East Coast, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Andersen Virginia,"3420, 16566",47,,45,Parliament,"['2318562853']",Labour Party,"https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/andersen-virginia/, https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/andersen-ginny/","[""MP for Hutt South. Fighting for our community, delivering progress with @JacindaArdern's Government. Auth by Timothy Grigg, 160 Willis Street, WLG""]","Hutt South, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Brown Simeon,"3422, 16577",46,,45,Parliament,"['847369591483277312', '847369591483277320']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/brown-simeon/,"['National Party MP for Pakuranga, Spokesperson for Police, Corrections, Serious Fraud Office and Youth. Authorised by Simeon Brown, 120 Pakuranga Road, Auckland']",Pakuranga,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64620 +Coffey Tamati,"3424, 16583",47,,45,Parliament,"['38778433']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/coffey-tamati/,"['Labour MP. Small hospitality business owner. Dad to Tūtānekai. Auth by Tim Grigg, 160 Willis St, Wgtn, NZ.']","List, Waiariki",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Eagle Paul,"16591, 3427",47,,45,Parliament,"['150514786']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/eagle-paul/,"['Labour Member of Parliament for Rongotai + Chatham Islands - Wharekauri/Rēkohu. Hurricanes rugby supafan + seafood aficionado! Waikato Te Iwi 💛🖤']",Rongotai,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Andrew Falloon,3428,46,,45,Parliament,"['30193388']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/falloon-andrew/,,Rangitata,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64620 +Jones Shane,3429,48,,45,Parliament,"['925415279047467008']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/jones-shane/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64621 +Denise Lee,3431,46,,45,Parliament,"['1542220560']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lee-denise/,,Maungakiekie,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64620 +Lubeck Marja,"3432, 16613",47,,45,Parliament,"['844462713698963458']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lubeck-marja/,"[""Labour List MP based in Kaipara ki Mahurangi. Class of '17. Mix 🇳🇿🌷🇲🇨 RTs/❤️s not always endorsements. Authorised:Marja Lubeck MP, Parliament Buildings WLG""]",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Jo Luxton,"16615, 3433",47,,45,Parliament,"['2374797956']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/luxton-jo/,"['Business owner. MP for Rangitata. Authorised by Rob Salmond, 160 Willis St,Wellington']","Rangitata, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Jenny Marcroft,3434,48,,45,Parliament,"['2839638932']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/marcroft-jenny/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64621 +Mark Ron,3435,48,,45,Parliament,"['920748947764789248']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mark-ron/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64621 +Kieran Mcanulty,"3436, 16618",47,,45,Parliament,"['801460597']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mcanulty-kieran/,"['Wairarapa-Bush supporter. Golden Shears nut. Labour MP. Authorised by Timothy Grigg, 160 Willis Street, Wellington']","Wairarapa, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Mark Patterson,3437,48,,45,Parliament,"['920808004357799936']",NZ First Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/patterson-mark/,,List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64621 +Prime Willow-Jean,"16638, 3438",47,,45,Parliament,"['3010503685']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/prime-willow-jean/,"['MP for Northland, Labour Party - Authorised by Rob Salmond, 160 Willis Street, Wellington']","Northland, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Jamie Strange,"3441, 16660",47,,45,Parliament,"['714519316759060480']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/strange-jamie/,"['I am the Labour Party MP for Hamilton East. Authorised by Timothy Grigg, 160 Willis Street, Wellington']","Hamilton East, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Chloe Swarbrick,"3442, 16661","13, 49",,45,Parliament,"['229711860']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/swarbrick-chloe/,"['@NZGreens MP for Auckland Central. Another bloody millennial on the social medias. “Hopelessly woke” - Hosking #AuthorisedBy Gwen Shaw, 17 Garrett St, WLG']","Auckland Central, List",,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57","64110, 51110" +Jan Tinetti,"16662, 3443",47,,45,Parliament,"['16674327']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/tinetti-jan/,"['Labour Party list MP, Authorised by Hon. Jan Tinetti, MP, Parliament Buildings, Wellington.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +De Molen Tim Van,"3444, 16668",46,,45,Parliament,"['1330276267']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/van-de-molen-tim/,"['Background in Primary Industries, Small Business, Army', '(Authorised by T. van de Molen, 190 Thames St, Morrinsville)', 'Member of Parliament for Waikato, NZ.']",Waikato,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64620 +Hamish Walker,3445,46,,45,Parliament,"['928376122256977920']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/walker-hamish/,,Clutha-Southland,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,16,64620 +Duncan Webb,"3447, 16676",47,,45,Parliament,"['169451041']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/webb-duncan/,"['Labour Party Member of Parliament for Christchurch Central', 'Authorised by Rob Salmond, 160 Willis Street, Wellington']",Christchurch Central,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,"16, 57",64320 +Engen-Helgheim Jon,3449,53,,52,Parliament,"['502930299']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Leirstein Ulf,3455,53,,52,Parliament,"['977256467970641920']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Mathilde Tybring-Gjedde,3457,54,,52,Parliament,"['30941476']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Aasland Terje,3460,55,,52,Parliament,"['26719515']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Aasrud Rigmor,3461,55,,52,Parliament,"['26588415']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Agdestein Elin Rodum,3463,54,,52,Parliament,"['243206115']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Al-Samarai Zaineb,3464,55,,52,Parliament,"['361434073']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Andersen Dag Terje,3465,55,,52,Parliament,"['45845636']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Andersen Karin,3466,56,,52,Parliament,"['873304134']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Arnstad Marit,3467,57,,52,Parliament,"['28649739']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Asheim Henrik,3468,54,,52,Parliament,"['37665779']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Astrup Nikolai,3470,54,,52,Parliament,"['45565446']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Aukrust Åsmund,3471,55,,52,Parliament,"['21746816']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Barstad Gina,3472,56,,52,Parliament,"['21574473']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Bekkevold Geir Jørgen,3473,58,,52,Parliament,"['62574827']",Kristelig Folkeparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12520 +Bjørdal Fredric Holen,3475,55,,52,Parliament,"['29275275']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Bjørke Nils T.,3476,57,,52,Parliament,"['899800400']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Bjørnstad Sivert,3477,53,,52,Parliament,"['112871323']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Bollestad Olaug V.,3478,58,,52,Parliament,"['2924816561']",Kristelig Folkeparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12520 +Borch Sandra,3479,57,,52,Parliament,"['34703909']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Botten Else-May,3480,55,,52,Parliament,"['23185890']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Bransdal Torhild,3481,58,,52,Parliament,"['1425675084']",Kristelig Folkeparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12520 +Breivik Terje,3482,59,,52,Parliament,"['156944270']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Bru Tina,3483,54,,52,Parliament,"['26214264']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Christensen F. Jette,3486,55,,52,Parliament,"['214049275']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Christoffersen Lise,3487,55,,52,Parliament,"['369395471']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Ebbesen Margunn,3488,54,,52,Parliament,"['2785883318']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Barth Eide Espen,3489,55,,52,Parliament,"['473914976']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Eide Petter,3490,56,,52,Parliament,"['70919209']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Eidsheim Torill,3491,54,,52,Parliament,"['2240680102']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Elvenes Hårek,3492,54,,52,Parliament,"['2645220702']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Elvestuen Ola,3493,59,,52,Parliament,"['20679622']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Frølich Peter,3498,54,,52,Parliament,"['319228928']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Fylkesnes Knag Torgeir,3499,56,,52,Parliament,"['54577364']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Gharahkhani Masud,3500,55,,52,Parliament,"['19119226']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Angell Gimse Guro,3501,54,,52,Parliament,"['127074628']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Gjelsvik Sigbjørn,3502,57,,52,Parliament,"['2537682190']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Arild Grande,3503,55,,52,Parliament,"['81844094']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Grande Skei Trine,3504,59,,52,Parliament,"['21695947']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Gudmundsen Kent,3509,54,,52,Parliament,"['29273536']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Gunnes Jon,3510,59,,52,Parliament,"['208192338']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Gustavsen Liv,3511,53,,52,Parliament,"['381933812']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Hagebakken Tore,3512,55,,52,Parliament,"['455709392']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Hagerup Margret,3513,54,,52,Parliament,"['634110800']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Halleland Terje,3514,53,,52,Parliament,"['262164620']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Haltbrekken Lars,3515,56,,52,Parliament,"['38260259']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Hansen Roald Svein,3516,55,,52,Parliament,"['1204838809']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Arild Hareide Knut,3519,58,,52,Parliament,"['45594856']",Kristelig Folkeparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12520 +Haukland Marianne,3520,54,,52,Parliament,"['384015542']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Heggelund Stefan,3521,54,,52,Parliament,"['44317501']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Heggø Ingrid,3522,55,,52,Parliament,"['21179460']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Helleland Trond,3523,54,,52,Parliament,"['27105229']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Henriksen Kari,3524,55,,52,Parliament,"['26837025']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Henriksen Martin,3525,55,,52,Parliament,"['25144335']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Anniken Huitfeldt,3527,55,,52,Parliament,"['279131939']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Kapur Mudassar,3535,54,,52,Parliament,"['101727020']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Elisabeth Kari Kaski,3536,56,,52,Parliament,"['18387289']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Ketil Kjenseth,3538,59,,52,Parliament,"['63266077']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Ingvild Kjerkol,3539,55,,52,Parliament,"['217217458']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Kari Kjos Kjønaas,3540,53,,52,Parliament,"['61781451']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Jenny Klinge,3541,57,,52,Parliament,"['50260092']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Kristensen Turid,3543,54,,52,Parliament,"['217530764']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Kirsti Leirtrø,3545,55,,52,Parliament,"['149410514']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Haukeland Hege Liadal,3546,55,,52,Parliament,"['199670339']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Holm Lønseth Mari,3552,54,,52,Parliament,"['204525639']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Eidem Kårstein Løvaas,3553,54,,52,Parliament,"['410612472']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Bente Mathisen Stein,3554,54,,52,Parliament,"['2580682589']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Emilie Enger Mehl,3555,57,,52,Parliament,"['218259177']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Moflag Tuva,3557,55,,52,Parliament,"['603775254']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Bjørnar Moxnes,3559,60,,52,Parliament,"['86154361']",Rødt,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14, +André Myhrvold Ole,3560,57,,52,Parliament,"['31343887']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Myrli Sverre,3561,55,,52,Parliament,"['2228363243']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Cecilie Myrseth,3562,55,,52,Parliament,"['26708613']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Inge Mørland Tellef,3563,55,,52,Parliament,"['273638217']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Nilsen Tom-Christer,3565,54,,52,Parliament,"['141521060']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +André Helge Njåstad,3566,53,,52,Parliament,"['42042554']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Nordlund Willfred,3567,57,,52,Parliament,"['440175885']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Arne Nævra,3568,56,,52,Parliament,"['845664673928265728']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Ivar Odnes,3569,57,,52,Parliament,"['453338587']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Helge Orten,3571,54,,52,Parliament,"['819168234']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Pettersen Tage,3572,54,,52,Parliament,"['32535843']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Geir Pollestad,3573,57,,52,Parliament,"['29928571']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Abid Q. Raja,3574,59,,52,Parliament,"['20868447']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Nina Sandberg,3577,55,,52,Parliament,"['72245600']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Audun Leif Sande,3578,55,,52,Parliament,"['3410122983']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Kristen Nils Sandtrøen,3579,55,,52,Parliament,"['471837649']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Atle Simonsen,3583,53,,52,Parliament,"['38822086']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Eirik Sivertsen,3584,55,,52,Parliament,"['19901715']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +André N. Skjelstad,3586,59,,52,Parliament,"['1269692077']",Venstre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12420 +Solberg Torstein Tvedt,3587,55,,52,Parliament,"['34285054']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Soleim Vetle Wang,3588,54,,52,Parliament,"['251811909']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Roy Steffensen,3590,53,,52,Parliament,"['333903537']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Stensland Sveinung,3591,54,,52,Parliament,"['19157451']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Aleksander Stokkebø,3592,54,,52,Parliament,"['419788091']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Espen Per Stoknes,3593,61,,52,Parliament,"['38135837']",Miljøpartiet De Grønne,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14, +Storehaug Tore,3595,58,,52,Parliament,"['385881449']",Kristelig Folkeparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12520 +Knutsdatter Marit Strand,3596,57,,52,Parliament,"['524326247']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Bengt Rune Strifeldt,3597,53,,52,Parliament,"['3235126283']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Gahr Jonas Støre,3598,55,,52,Parliament,"['63129578']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Marianne Synnes,3599,54,,52,Parliament,"['3421915379']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Hadia Tajik,3601,55,,52,Parliament,"['22415635']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Michael Tetzschner,3602,54,,52,Parliament,"['46644261']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Kjersti Toppe,3604,57,,52,Parliament,"['39974570']",Senterpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12810 +Kristian Torve,3605,55,,52,Parliament,"['64714060']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Ove Trellevik,3606,54,,52,Parliament,"['225341716']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Anette Trettebergstuen,3607,55,,52,Parliament,"['20301193']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Tone Trøen Wilhelmsen,3608,54,,52,Parliament,"['1382743280']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Christian Tybring-Gjedde,3609,53,,52,Parliament,"['514596967']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Lene Vågslid,3611,55,,52,Parliament,"['23320712']",Arbeiderpartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12320 +Lene Westgaard-Halle,3612,54,,52,Parliament,"['34656014']",Høyre,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12620 +Erlend Wiborg,3613,53,,52,Parliament,"['30759351']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Nicholas Wilkinson,3614,56,,52,Parliament,"['1432993051']",Sosialistisk Venstreparti,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12221 +Kristian P. Wilsgård,3615,53,,52,Parliament,"['32889985']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Morten Wold,3616,53,,52,Parliament,"['364311414']",Fremskrittspartiet,,,,,https://www.stortinget.no/no/Stottemeny/kontakt/Partier-og-representanter/Representantenes-e-postadresser/,,Norway,18,14,12951 +Aalst Roy Van,3617,62,,61,Parliament,"['118974169']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/aalst-rr-van-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Agema Fleur,3618,62,,61,Parliament,"['105161244']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/agema-m-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Amhaouch Mustafa,3619,63,,61,Parliament,"['623939421']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/amhaouch-m-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Arib Khadija,3620,64,,61,Parliament,"['436740472']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/arib-k-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Arissen Femke Merel,3621,65,,61,Parliament,"['568242923']",Party for the Animals,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/arissen-fm-pvdd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22951 +Ark Tamara Van,3622,66,,61,Parliament,"['20439682']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ark-t-van-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Asscher Lodewijk,3623,64,,61,Parliament,"['49442623']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/asscher-lf-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Azarkan Farid,3624,67,,61,Parliament,"['50241691']",DENK,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/azarkan-f-denk,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22321 +Azmani Malik,"13131, 3625","66, 218",63,61,Parliament,"['389687289']","Volkspartij voor Vrijheid en Democratie, People's Party for Freedom and Democracy",https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/azmani-m-vvd,,Netherlands,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,"European Parliament, Netherlands","16, 27","17, 43",22420 +Baudet Thierry,3626,68,,61,Parliament,"['367703310']",Forum for Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/baudet-thp-fvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22730 +Becker Bente,3627,66,,61,Parliament,"['140792228']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/becker-b-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Beckerman Sandra,3628,69,,61,Parliament,"['2546001121']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/beckerman-sm-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Beertema Harm,3629,62,,61,Parliament,"['144487331']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/beertema-hj-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Belhaj Salima,3630,70,,61,Parliament,"['151852410']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/belhaj-s-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Berg-Jansen Den Joba Van,3631,63,,61,Parliament,"['783376189780062208']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/berg-jansen-jamj-van-den-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Bergkamp Vera,3632,70,,61,Parliament,"['100024085']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bergkamp-va-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Bisschop Roelof,3633,71,,61,Parliament,"['821122464']",Reformed Political Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bisschop-r-sgp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22952 +Albert Bosch Den Van,3634,66,,61,Parliament,"['926143269163151361']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bosch-van-den-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Bosma Martin,3635,62,,61,Parliament,"['2714901547']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bosma-m-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +André Bosman,3636,66,,61,Parliament,"['32350369']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bosman-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Achraf Bouali,3637,70,,61,Parliament,"['2326785750']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bouali-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Brenk Corrie Van,3638,72,,61,Parliament,"['62490348']",50PLUS,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/brenk-cm-van-50plus,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22953 +Broeke Han Ten,3639,66,,61,Parliament,"['116766267']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/broeke-jh-ten-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Bruins Eppo,3640,73,,61,Parliament,"['24859528']",Christian Union,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bruins-eew-cu,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22526 +Bruins Hanke Slot,3641,63,,61,Parliament,"['633764653']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/bruins-slot-hgj-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Buitenweg Kathalijne,3642,74,,61,Parliament,"['19702741']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/buitenweg-km-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Chris Dam Van,3643,63,,61,Parliament,"['794451182236434432']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dam-cjl-van-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Dekker Sander,3644,66,,61,Parliament,"['44710953']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dekker-s-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Antje Diertens,3645,70,,61,Parliament,"['2336424080']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/diertens-ae-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Dijck Tony Van,3646,62,,61,Parliament,"['930785519415578624']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijck-apc-van-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Dijk Gijs Van,3647,64,,61,Parliament,"['277109853']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijk-gj-van-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Dijk Jasper Van,3648,69,,61,Parliament,"['517708604']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijk-jj-van-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Dijkgraaf Elbert,3649,71,,61,Parliament,"['128559307']",Reformed Political Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijkgraaf-e-sgp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22952 +Dijkhoff Klaas,3650,66,,61,Parliament,"['18677075']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijkhoff-khdm-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Dijksma Sharon,3651,64,,61,Parliament,"['27412774']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijksma-sam-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Dijkstra Pia,3652,70,,61,Parliament,"['127480942']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijkstra-pa-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Dijkstra Remco,3653,66,,61,Parliament,"['31366216']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijkstra-rj-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Dijsselbloem Jeroen,3654,64,,61,Parliament,"['29422232']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dijsselbloem-jrva-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Carla Dik-Faber,3655,73,,61,Parliament,"['101709764']",Christian Union,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/dik-faber-rk-cu,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22526 +Diks Isabelle,3656,74,,61,Parliament,"['79807925']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/diks-li-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Duisenberg Pieter,3657,66,,61,Parliament,"['634428343']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/duisenberg-pj-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Eijs Jessica Van,3658,70,,61,Parliament,"['98844836']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/eijs-jm-van-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +El Yassini Zohair,3659,66,,61,Parliament,"['243364369']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/el-yassini-z-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Corinne Ellemeet,3660,74,,61,Parliament,"['1164004764']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ellemeet-ce-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Engelshoven Ingrid Van,3661,70,,61,Parliament,"['38919625']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/engelshoven-ik-van-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Frank Futselaar,3663,69,,61,Parliament,"['134056639']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/futselaar-fw-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Gerbrands Karen,3664,62,,61,Parliament,"['429343056']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/gerbrands-k-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Geurts Jaco,3665,63,,61,Parliament,"['132823885']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/geurts-jl-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +De Graaf Machiel,3666,62,,61,Parliament,"['112273454']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/graaf-m-de-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Grashoff Rik,3667,74,,61,Parliament,"['218445957']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/grashoff-hj-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Dion Graus,3668,62,,61,Parliament,"['3860053414']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/graus-djg-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +De Groot Tjeerd,3669,70,,61,Parliament,"['244232986']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/groot-tc-de-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Groothuizen Maarten,3670,70,,61,Parliament,"['629608636']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/groothuizen-m-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Buma Haersma Sybrand Van,3671,63,,61,Parliament,"['289483711']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/haersma-buma-s-van-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Harbers Mark,3672,66,,61,Parliament,"['115393803']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/harbers-mgj-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Heerma Pieter,3673,63,,61,Parliament,"['611021612']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/heerma-pe-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Helder Lilian,3674,62,,61,Parliament,"['212717686']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/helder-lmjs-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Helvert Martijn Van,3675,63,,61,Parliament,"['96937446']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/helvert-mjf-van-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Hennis-Plasschaert Jeanine,3676,66,,61,Parliament,"['19997104']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/hennis-plasschaert-ja-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Hermans Sophie,3677,66,,61,Parliament,"['295860701']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/hermans-stm-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Hiddema Theo,3678,68,,61,Parliament,"['802975920604807170']",Forum for Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/hiddema-tu-fvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22730 +Hijink Maarten,3679,69,,61,Parliament,"['156230497']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/hijink-hpm-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Den Hul Kirsten Van,3680,64,,61,Parliament,"['44845014']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/hul-kae-van-den-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Jetten Rob,3681,70,,61,Parliament,"['35603755']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/jetten-raa-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +De Jong Léon,3682,62,,61,Parliament,"['97027086']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/jong-lwe-de-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Karabulut Sadet,3683,69,,61,Parliament,"['288726076']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/karabulut-s-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Keijzer Mona,3684,63,,61,Parliament,"['49278232']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/keijzer-mcg-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Bart Kent Van,3685,69,,61,Parliament,"['207028098']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kent-b-van-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Jesse Klaver,3686,74,,61,Parliament,"['17422867']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/klaver-jf-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Knops Raymond,3687,63,,61,Parliament,"['106144762']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/knops-rw-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Daniel Koerhuis,3688,66,,61,Parliament,"['115774132']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/koerhuis-dan-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Kooiman Nine,3689,69,,61,Parliament,"['109550381']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kooiman-cje-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Koolmees Wouter,3690,70,,61,Parliament,"['134549649']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/koolmees-w-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Koopmans Sven,3691,66,,61,Parliament,"['798116307677937664']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/koopmans-smg-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Alexander Kops,3692,62,,61,Parliament,"['2628343487']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kops-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Kröger Suzanne,3693,74,,61,Parliament,"['265380339']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kr%C3%B6ger-sc-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Henk Krol,3694,72,,61,Parliament,"['24391811']",50PLUS,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/krol-hcm-50plus,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22953 +Anne Kuik,3695,63,,61,Parliament,"['249081815']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kuik-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Attje Kuiken,3696,64,,61,Parliament,"['27835859']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kuiken-ah-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Kuzu Tunahan,3697,67,,61,Parliament,"['15448566']",DENK,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kuzu-t-denk,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22321 +Kwint Peter,3698,69,,61,Parliament,"['239853793']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/kwint-jp-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Cem Laҫin,3699,69,,61,Parliament,"['99081764']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/la%D2%ABin-c-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Der Lee Tom Van,3700,74,,61,Parliament,"['51998285']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/lee-tmt-van-der-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Leijten Renske,3701,69,,61,Parliament,"['132560993']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/leijten-rm-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Helma Lodders,3702,66,,61,Parliament,"['66380278']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/lodders-wjh-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Maeijer Vicky,3704,62,,61,Parliament,"['436606956']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/maeijer-v-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Lilian Marijnissen,3705,69,,61,Parliament,"['254234597']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/marijnissen-lmc-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Gidi Markuszower,3706,62,,61,Parliament,"['47593838']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/markuszower-g-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Martels Maurits Von,3707,63,,61,Parliament,"['233521320']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/martels-mrhm-von-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Meenen Paul Van,3708,70,,61,Parliament,"['185986442']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/meenen-ph-van-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Jan Middendorp,3709,66,,61,Parliament,"['136923944']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/middendorp-j-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Der Harry Molen Van,3710,63,,61,Parliament,"['19206999']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/molen-h-van-der-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Anne Mulder,3711,66,,61,Parliament,"['127889820']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/mulder-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Agnes Mulder,3712,63,,61,Parliament,"['552583727']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/mulder-ah-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Edgar Mulder,3713,62,,61,Parliament,"['286297831']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/mulder-e-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Henk Nijboer,3714,64,,61,Parliament,"['138420259']",Labour Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/nijboer-h-pvda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22320 +Chantal Haan Nijkerken-De,3715,66,,61,Parliament,"['150573565']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/nijkerken-de-haan-cna-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Michiel Nispen Van,3716,69,,61,Parliament,"['606263570']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/nispen-m-van-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Bram Ojik Van,3717,74,,61,Parliament,"['720322951']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ojik-van-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Omtzigt Pieter,3718,63,,61,Parliament,"['19223962']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/omtzigt-ph-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Foort Oosten Van,3719,66,,61,Parliament,"['247887593']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/oosten-f-van-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Esther Ouwehand,3720,65,,61,Parliament,"['139400870']",Party for the Animals,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ouwehand-e-pvdd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22951 +Zihni Özdil,3721,74,,61,Parliament,"['401348748']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/%C3%B6zdil-z-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Selçuk Öztürk,3722,67,,61,Parliament,"['239535830']",DENK,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/%C3%B6zt%C3%BCrk-s-denk,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22321 +Nevin Özütok,3723,74,,61,Parliament,"['160957719']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/%C3%B6z%C3%BCtok-n-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Jan Paternotte,3724,70,,61,Parliament,"['25893416']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/paternotte-jm-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Alexander Pechtold,3725,70,,61,Parliament,"['16708690']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/pechtold-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Peters René,3726,63,,61,Parliament,"['129923832']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/peters-wphj-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Gabriëlle Popken,3728,62,,61,Parliament,"['1901687191']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/popken-gjf-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Lammert Raan Van,3730,65,,61,Parliament,"['19860633']",Party for the Animals,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/raan-l-van-pvdd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22951 +Raemakers Rens,3731,70,,61,Parliament,"['190328697']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/raemakers-r-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Emile Roemer,3732,69,,61,Parliament,"['120051559']",Socialist Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/roemer-egm-sp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22220 +Michel Rog,3733,63,,61,Parliament,"['33546120']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/rog-mrj-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Erik Ronnes,3734,63,,61,Parliament,"['30492415']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ronnes-hag-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Martin Rooijen Van,3735,72,,61,Parliament,"['831535236299292672']",50PLUS,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/rooijen-mj-van-50plus,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22953 +De Raymond Roon,3736,62,,61,Parliament,"['4370304676']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/roon-r-de-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Arno Rutte,3737,66,,61,Parliament,"['49746529']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/rutte-acl-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Mark Rutte,"3767, 3738",66,,61,Parliament,"['155507136', '16708728']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/rutte-m-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Léonie Sazias,3739,72,,61,Parliament,"['101761587']",50PLUS,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/sazias-l-50plus,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22953 +Carola Schouten,3740,73,,61,Parliament,"['34575169']",Christian Union,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/schouten-cj-cu,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22526 +Gert-Jan Segers,3741,73,,61,Parliament,"['119136331']",Christian Union,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/segers-gjm-cu,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22526 +Sjoerd Sjoerdsma,3742,70,,61,Parliament,"['26842060']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/sjoerdsma-sw-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Bart Snels,3743,74,,61,Parliament,"['76956578']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/snels-baw-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Der Kees Staaij Van,3744,71,,61,Parliament,"['118666416']",Reformed Political Party,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/staaij-cg-van-der-sgp,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22952 +Ockje Tellegen,3745,66,,61,Parliament,"['381985687']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/tellegen-oc-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Marianne Thieme,3746,65,,61,Parliament,"['15207550']",Party for the Animals,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/thieme-ml-pvdd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22951 +Liesbeth Tongeren Van,3747,74,,61,Parliament,"['36922031']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/tongeren-l-van-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Madeleine Toorenburg Van,3748,63,,61,Parliament,"['119706155']",Christian Democratic Appeal,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/toorenburg-mm-van-cda,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22521 +Stientje Van Veldhoven,3749,70,,61,Parliament,"['25492883']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/veldhoven-s-van-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Kees Verhoeven,3750,70,,61,Parliament,"['68161024']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/verhoeven-k-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Barbara Visser,3751,66,,61,Parliament,"['2563216916']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/visser-b-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Joël Voordewind,3752,73,,61,Parliament,"['70167492']",Christian Union,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/voordewind-js-cu,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22526 +Linda Voortman,3753,74,,61,Parliament,"['22366469']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/voortman-lgj-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Aukje De Vries,3754,66,,61,Parliament,"['18576865']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/vries-de-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Frank Wassenberg,3755,65,,61,Parliament,"['762251077']",Party for the Animals,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/wassenberg-fp-pvdd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22951 +Danai Van Weerdenburg,3756,62,,61,Parliament,"['3188020942']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/weerdenburg-vdd-van-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Lisa Westerveld,3757,74,,61,Parliament,"['127823462']",GreenLeft,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/westerveld-em-gl,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22110 +Arne Weverling,3758,66,,61,Parliament,"['107047161']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/weverling-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Steven Van Weyenberg,3759,70,,61,Parliament,"['126360384']",Democrats 66,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/weyenberg-spra-van-d66,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22330 +Dennis Wiersma,3760,66,,61,Parliament,"['14198971']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/wiersma-ad-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Geert Wilders,3761,62,,61,Parliament,"['41778159']",Party for Freedom,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/wilders-g-pvv,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22722 +Martin Wörsdörfer,3762,66,,61,Parliament,"['88883795']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/w%C3%B6rsd%C3%B6rfer-m-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +'T Bas Van Wout,3763,66,,61,Parliament,"['24904831']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/wout-b-van-t-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Dilan Yeşilgöz-Zegerius,3764,66,,61,Parliament,"['99354836']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ye%C5%9Filg%C3%B6z-zegerius-d-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Erik Ziengs,3765,66,,61,Parliament,"['123542227']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/ziengs-e-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Halbe Zijlstra,3766,66,,61,Parliament,"['121466759']",People's Party for Freedom and Democracy,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament/zijlstra-h-vvd,,,,https://www.houseofrepresentatives.nl/members_of_parliament/members_of_parliament,,Netherlands,16,17,22420 +Chris Fearne,3768,75,0,74,Parliament,"['20862545']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Bonnici Owen,3769,75,0,74,Parliament,"['21029745']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Byron Camilleri,3770,75,0,74,Parliament,"['25965504']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Agius David,3771,76,1,75,Parliament,"['25974964']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Aaron Farrugia,3772,75,0,74,Parliament,"['26238733']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Joseph Muscat,3773,75,0,74,Parliament,"['29466039']",Labour,,"['Prime Minister']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Galdes Roderick,3774,75,0,74,Parliament,"['63219808']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Dalli Helena,3775,75,0,74,Parliament,"['194723980']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Gouder Karl,3776,76,1,75,Parliament,"['236500512']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Edward Scicluna,3777,75,0,74,Parliament,"['238864972']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Azzopardi Stefan Zrinzo,3778,75,0,74,Parliament,"['259627069']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Debono Kristy,3779,76,1,75,Parliament,"['323332078']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Schembri Silvio,3780,75,0,74,Parliament,"['272676693']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Busuttil Simon,3781,76,1,75,Parliament,"['333464599']",Nationalist,,"['Opposition Leader']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Azzopardi Jason,3782,76,1,75,Parliament,"['335189017']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Borg Ian,3783,75,0,74,Parliament,"['383896769']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Bonnici Carmelo Mifsud,3784,76,1,75,Parliament,"['409146088']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Farrugia Michael,3785,75,0,74,Parliament,"['2558484924']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Debattista Deo,3786,75,0,74,Parliament,"['421294799']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Clyde Puli,3787,76,1,75,Parliament,"['439148306']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Aquilina Karol,3789,76,1,75,Parliament,"['479960515']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Falzon Michael,3790,75,0,74,Parliament,"['484058219']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Azzopardi Frederick,3792,76,1,75,Parliament,"['792783719417384960']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Abela Carmelo,3794,75,0,74,Parliament,"['2195343575']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Agius Chris,3796,75,0,74,Parliament,"['133414718']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Agius Anthony Decelis,3797,75,0,74,Parliament,"['252794805']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Bartolo Clayton,3798,75,0,74,Parliament,"['603866684']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Bartolo Evarist,3799,75,0,74,Parliament,"['393312539']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Bedingfield Glenn,3800,75,0,74,Parliament,"['228316803']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Camilleri Clint,3801,75,0,74,Parliament,"['393692389']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Cardona Chris,3802,75,0,74,Parliament,"['390673690']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Caruana Justyne,3803,75,0,74,Parliament,"['2280282480']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Cutajar Rosianne,3804,75,0,74,Parliament,"['245468421']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Farrugia Julia Portelli,3805,75,0,74,Parliament,"['44904548']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Clifton Grima,3807,75,0,74,Parliament,"['833018671991754752']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Grixti Silvio,3808,75,0,74,Parliament,"['901424510']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Herrera Jose',3809,75,0,74,Parliament,"['4909927498']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Emanuel Mallia,3810,75,0,74,Parliament,"['822453064930131974']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Joe Mizzi,3811,75,0,74,Parliament,"['930459343048331264']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Konrad Mizzi,3812,75,0,74,Parliament,"['581199403']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Alex Muscat,3813,75,0,74,Parliament,"['1055758434']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Parnis Silvio,3814,75,0,74,Parliament,"['494879000']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Anton Refalo,3815,75,0,74,Parliament,"['985818984690921472']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Edward Lewis Zammit,3816,75,0,74,Parliament,"['613209364']",Labour,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54320 +Arrigo Robert,3817,76,1,75,Parliament,"['3297637857']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Bartolo Ivan,3818,76,1,75,Parliament,"['782360487757578240']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Buttigieg Claudette,3820,76,1,75,Parliament,"['2413952309']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Callus Ryan,3821,76,1,75,Parliament,"['266204677']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Cachia Comodini Therese,"6220, 3822","197, 76","1, 29","189, 75",Parliament,"['1645156130']","Partit Nazzjonalista, Nationalist",https://www.europarl.europa.eu/meps/en/124968/THERESE_COMODINI+CACHIA_home.html,"['Member']",Malta,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.parlament.mt/membersofparliament-13thlegmain",,"Malta, European Parliament","27, 15","18, 32",54620 +Cutajar Robert,3823,76,1,75,Parliament,"['2316067016']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +De Marco Mario,3824,76,1,75,Parliament,"['508901024']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Deguara Maria,3825,76,1,75,Parliament,"['919951229232480000']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Farrugia Marlene,3827,77,1,75,Parliament,"['860277866']",Democratic,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18, +Marthese Portelli,3829,76,1,75,Parliament,"['835624748']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Chris Said,3830,76,1,75,Parliament,"['759532029927157760']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Hermann Schiavone,3831,76,1,75,Parliament,"['472765802']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +David Stellini,3833,76,1,75,Parliament,"['316313876']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Edwin Vassallo,3834,76,1,75,Parliament,"['826024489544740864']",Nationalist,,"['Member']",,,https://www.parlament.mt/membersofparliament-13thlegmain,,Malta,15,18,54620 +Edvards Smiltēns,3835,78,2,77,Parliament,"['27312255']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Dombrava Jānis,"3836, 3951","79, 96",3,"78, 91",Parliament,"['28656558']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=10820A970C373806C22583320029E5D0&url=./0/10820A970C373806C22583320029E5D0?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1016, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Lolita Čigāne,3837,80,2,77,Parliament,"['29472605']",Movement For!,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21, +Aleksejs Loskutovs,3838,80,2,77,Parliament,"['35681404']",Movement For!,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21, +Cilinskis Einārs,3839,79,3,78,Parliament,"['37909604']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87071 +Aleksandrs Kiršteins,"3971, 3841","79, 96",3,"78, 91",Parliament,"['42878084']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=781C010D8AE2F232C22583320029E4E8&url=./0/781C010D8AE2F232C22583320029E4E8?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1036, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Juris Viļums,3842,82,5,81,Parliament,"['54491576']",Latvian Regional Alliance,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87901 +Imants Parādnieks,3843,79,3,78,Parliament,"['54500929']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87071 +Andrejs Judins,"3844, 3966","90, 80",2,"77, 91",Parliament,"['54872791']","The New UNITY, Movement For!",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=8487FA389DF1B924C22583320029E4B6&url=./0/8487FA389DF1B924C22583320029E4B6?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1031, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87062 +Ilmārs Latkovskis,3845,79,4,80,Parliament,"['59732320']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87071 +Naudiņš Romāns,"3990, 3846","79, 96",3,"78, 91",Parliament,"['87983972']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=566EF11833880FF9C22583320029E5BE&url=./0/566EF11833880FF9C22583320029E5BE?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1055, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Andris Buiķis,3847,79,3,78,Parliament,"['102981064']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87071 +Jānis Upenieks,3848,78,2,77,Parliament,"['125364348']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Dzintars Raivis,"3955, 3849","79, 96",3,"78, 91",Parliament,"['150986158']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=BB26E547129E6E20C22583320029E5D2&url=./0/BB26E547129E6E20C22583320029E5D2?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1020, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Atis Lejiņš,3850,78,2,77,Parliament,"['164744801']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Kalniņš Ojārs Ēriks,"3970, 3851","90, 78",2,"77, 91",Parliament,"['169391718']","The New UNITY, Unity",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=ECBB16485DD655ADC22583320029E4C7&url=./0/ECBB16485DD655ADC22583320029E4C7?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1035, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87062 +Augusts Brigmanis,3852,83,6,83,Parliament,"['206120523']",Latvian Farmers' Union,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87810 +Andrejs Klementjevs,"3853, 3972","81, 91",7,"84, 91",Parliament,"['242645972']","Harmony, Social Democratic Party “Concord”",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=C4BA4374C797ABEAC22583320029E45D&url=./0/C4BA4374C797ABEAC22583320029E45D?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1037, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22","87021, 87340" +Krēsliņš Kārlis,3854,79,3,78,Parliament,"['274359499']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87071 +Ināra Mūrniece,"3989, 3856","79, 96",3,"78, 91",Parliament,"['333279481']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=E4E48A8CD239B960C22583320029E5CD&url=./0/E4E48A8CD239B960C22583320029E5CD?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1054, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Ainars Latkovskis,"3857, 3982","90, 78",2,"77, 91",Parliament,"['385315552']","The New UNITY, Unity",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=A8C08A2980030E40C22583320029E5B5&url=./0/A8C08A2980030E40C22583320029E5B5?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1047, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87062 +Valainis Viktors,"4026, 3860","85, 92",2,"77, 91",Parliament,"['436554366']","Union of Greens and Farmers, Jekabpils",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=37EF19346F1C2181C22583320029E67A&url=./0/37EF19346F1C2181C22583320029E67A?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1091",,Latvia,13,"21, 22","87062, 87110" +Jānis Urbanovičs,3861,81,7,84,Parliament,"['457898574']",Harmony,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87340 +Laimdota Straujuma,3862,78,2,77,Parliament,"['619870515']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Inese Laizāne,3864,79,3,78,Parliament,"['938887567']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87071 +Inese Lībiņa-Egnere,"3865, 3983","90, 78",2,"77, 91",Parliament,"['1041734490']","The New UNITY, Unity",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=094B636CDD3C074EC22583320029E5AD&url=./0/094B636CDD3C074EC22583320029E5AD?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1048, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87062 +Abu Hosams Meri,3868,78,2,77,Parliament,"['168714453']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Boķis Inesis,3874,78,2,77,Parliament,"['398733755']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Jansons Ritvars,"3965, 3883","79, 96",3,"78, 91",Parliament,"['1415731158']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=64B647EDF8A8133DC22583320029E4DD&url=./0/64B647EDF8A8133DC22583320029E4DD?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1030, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Artuss Kaimiņš,"3884, 3969","89, 94",4,"80, 91",Parliament,"['62854989']","Unaffiliated members of parliament, Political Party “KPV LV”",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=6A08FAF1ED0F58A9C22583320029E501&url=./0/6A08FAF1ED0F58A9C22583320029E501?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1034, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22", +Kols Rihards,"3974, 3891","79, 96",3,"78, 91",Parliament,"['2290894242']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=04507B29A37E77E9C22583320029E4D9&url=./0/04507B29A37E77E9C22583320029E4D9?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1039, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Andris Morozovs,3904,86,7,84,Parliament,"['181983857']",Concord,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87021 +Potapkins Sergejs,3909,86,7,84,Parliament,"['158284998']",Concord,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87021 +Edgars Putra,3910,88,6,83,Parliament,"['2273562741']",Union of Greens and Farmers,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87110 +Ražuks Romualds,3911,78,2,77,Parliament,"['366492684']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Jūlija Stepaņenko,"4016, 3919","86, 91","7, 9","84, 80",Parliament,"['3610007613']","Concord, Social Democratic Party “Concord”",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=462575B6023E7DC7C22583320029E447&url=./0/462575B6023E7DC7C22583320029E447?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1081, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87021 +Inguna Sudraba,3920,87,8,88,Parliament,"['2490127644']",For Latvia from the Heart,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87630 +Mārtiņš Šics,3921,82,5,81,Parliament,"['2411147474']",Latvian Regional Alliance,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87901 +Edvīns Šnore,"3923, 4019","79, 96",3,"78, 91",Parliament,"['370632075']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=F501B4C572534D28C22583320029E65D&url=./0/F501B4C572534D28C22583320029E65D?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1084, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87071 +Juris Šulcs,3924,78,2,77,Parliament,"['3290946939']",Unity,,,,,https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,21,87062 +Ivars Zariņš,"4032, 3932","86, 91",7,"84, 91",Parliament,"['826724192640970752']","Concord, Social Democratic Party “Concord”",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=40EED6C265D34A1AC22583320029E613&url=./0/40EED6C265D34A1AC22583320029E613?OpenDocument&lang=EN,,,,"https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1097, https://titania.saeima.lv/personal/deputati/saeima12_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000",,Latvia,13,"21, 22",87021 +Adamovičs Aldis,3935,90,,91,Parliament,"['2447198071']",The New UNITY,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=DE7DDFC52912D419C22583320029E403&url=./0/DE7DDFC52912D419C22583320029E403?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1000,,Latvia,13,22,87062 +Arvils Ašeradens,3938,90,,91,Parliament,"['92359508']",The New UNITY,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=61DA2879573863FCC22583320029E395&url=./0/61DA2879573863FCC22583320029E395?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1003,,Latvia,13,22,87062 +Augulis Uldis,3939,92,,91,Parliament,"['112978586']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=007260F64AC8FD87C22583320029E673&url=./0/007260F64AC8FD87C22583320029E673?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1004,,Latvia,13,22,87110 +Bergmanis Raimonds,3942,92,,91,Parliament,"['3417929044']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=7620E9A5B14FC7C9C22583320029E606&url=./0/7620E9A5B14FC7C9C22583320029E606?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1007,,Latvia,13,22,87110 +Aldis Blumbergs,3943,94,,91,Parliament,"['584750646']",Political Party “KPV LV”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/2DE6973DB7C1EC91C22583320029E5D9?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1008,,Latvia,13,22, +Bondars Mārtiņš,3944,95,,91,Parliament,"['626245282']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=68F0FB45D89C400BC22583320029E3E2&url=./0/68F0FB45D89C400BC22583320029E3E2?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1009,,Latvia,13,22, +Bordāns Jānis,3945,93,,91,Parliament,"['35276254']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/365F6660BAFFCA05C22583320029E598?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1010,,Latvia,13,22, +Budriķis Uldis,3946,93,,91,Parliament,"['462060267']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/F3B9A9B2C3C3406CC22583320029E380?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1011,,Latvia,13,22, +Boriss Cilevičs,3947,91,,91,Parliament,"['2375041482']",Social Democratic Party “Concord”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=4C414288345F4DDDC22583320029E45E&url=./0/4C414288345F4DDDC22583320029E45E?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1012,,Latvia,13,22,87021 +Anda Čakša,3948,92,,91,Parliament,"['65298223']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/1103B707673565DDC22583320029E529?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1013,,Latvia,13,22,87110 +Daudze Gundars,3949,92,,91,Parliament,"['1034088630829105280']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=AF9F7174318A6023C22583320029E3C6&url=./0/AF9F7174318A6023C22583320029E3C6?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1014,,Latvia,13,22,87110 +Dombrovskis Vjačeslavs,3952,91,,91,Parliament,"['598437454']",Social Democratic Party “Concord”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=736E04018447AEA1C22583320029E442&url=./0/736E04018447AEA1C22583320029E442?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1017,,Latvia,13,22,87021 +Eglītis Gatis,3956,93,,91,Parliament,"['768203046']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/AF3AE27555B8DCABC22583320029E48F?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1021,,Latvia,13,22, +Feldmans Krišjānis,3957,93,,91,Parliament,"['274653255']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/D7E480BC46413BA2C22583320029E639?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1022,,Latvia,13,22, +Aldis Gobzems,3958,94,,91,Parliament,"['1269644508']",Political Party “KPV LV”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/AA7771F3E3A7284FC22583320029E51D?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1023,,Latvia,13,22, +Goldberga Inga,3959,91,,91,Parliament,"['1006192374']",Social Democratic Party “Concord”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/45C5A1EB96613431C22583320029E3D0?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1024,,Latvia,13,22,87021 +Golubeva Marija,3960,95,,91,Parliament,"['41560701']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/D02DF40971ABF54EC22583320029E476?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1025,,Latvia,13,22, +Ilze Indriksone,3963,96,,91,Parliament,"['339588600']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/77621DC5904D27DFC22583320029E3A9?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1028,,Latvia,13,22,87071 +Jurašs Juris,3967,93,,91,Parliament,"['2284454290']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/79BEC648723DFA08C22583320029E385?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1032,,Latvia,13,22, +Armands Krauze,3976,92,,91,Parliament,"['442203859']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=1615235FD59207F3C22583320029E5FD&url=./0/1615235FD59207F3C22583320029E5FD?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1041,,Latvia,13,22,87110 +Kučinskis Māris,3979,92,,91,Parliament,"['912753266']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=29FABE476CCC27EEC22583320029E60B&url=./0/29FABE476CCC27EEC22583320029E60B?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1044,,Latvia,13,22,87110 +Linkaits Tālis,3985,93,,91,Parliament,"['96410804']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/021CAEFEAE1C0E7BC22583320029E493?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1050,,Latvia,13,22, +Anita Muižniece,3988,93,,91,Parliament,"['885587533152825344']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/95B57DB3169F51F9C22583320029E58F?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1053,,Latvia,13,22, +Artis Pabriks,"6462, 3995","95, 312",29,"189, 91",Parliament,"['218804015']","Partija ""VIENOTĪBA"", For Development/For!","https://www.europarl.europa.eu/meps/en/124743/ARTIS_PABRIKS_home.html, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=7F1DF8FD8AA7ECC1C22583320029E56A&url=./0/7F1DF8FD8AA7ECC1C22583320029E56A?OpenDocument&lang=EN",,Latvia,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1060",,"European Parliament, Latvia","13, 27","22, 32",87062 +Daniels Pavļuts,3997,95,,91,Parliament,"['97216058']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/67F77502D89967C2C22583320029E480?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1062,,Latvia,13,22, +Artūrs Plešs Toms,4000,95,,91,Parliament,"['60034648']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/CD83729ACD71CBFCC22583320029E61E?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1065,,Latvia,13,22, +Juris Pūce,4001,95,,91,Parliament,"['65025401']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/A403365B1A9F0CCAC22583320029E377?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1066,,Latvia,13,22, +Dana Reizniece-Ozola,4006,92,,91,Parliament,"['359847702']",Union of Greens and Farmers,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=71CB65450FEFB8D8C22583320029E549&url=./0/71CB65450FEFB8D8C22583320029E549?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1071,,Latvia,13,22,87110 +Inguna Rībena,4008,96,,91,Parliament,"['2562983250']","National Alliance ""All For Latvia!"" – ""For Fatherland and Freedom/LNNK""",https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=5FDA3558612D689EC22583320029E65C&url=./0/5FDA3558612D689EC22583320029E65C?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1073,,Latvia,13,22,87071 +Riekstiņš Sandis,4009,93,,91,Parliament,"['831178694626570240']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/238DAFFF1FD5EF77C22583320029E63A?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1074,,Latvia,13,22, +Edgars Rinkēvičs,4010,90,,91,Parliament,"['61454352']",The New UNITY,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/depArchive.html?ReadForm&unid=4813A07FA799C42FC22583320029E4B7&url=./0/4813A07FA799C42FC22583320029E4B7?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1075,,Latvia,13,22,87062 +Dace Rukšāne-Ščipčinska,4012,95,,91,Parliament,"['83447813']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/AA7B91C34C669746C22583320029E571?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1077,,Latvia,13,22, +Andris Skride,4013,95,,91,Parliament,"['303446802']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/53B4E4BA43BC85DDC22583320029E573?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1078,,Latvia,13,22, +Mārtiņš Staķis,4015,95,,91,Parliament,"['75225631']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/3151404CDC7B6F3AC22583320029E475?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1080,,Latvia,13,22, +Didzis Šmits,4018,94,,91,Parliament,"['624632199']",Political Party “KPV LV”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/B1EB56D4E58F2AA6C22583320029E514?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1083,,Latvia,13,22, +Anda Tērauda Vita,4023,95,,91,Parliament,"['20590232']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/F928C23B8A9B4811C22583320029E483?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1088,,Latvia,13,22, +Inese Voika,4028,95,,91,Parliament,"['25254015']",For Development/For!,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/150F9D41CC7E2D61C22583320029E489?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1093,,Latvia,13,22, +Atis Zakatistovs,4030,94,,91,Parliament,"['472210912']",Political Party “KPV LV”,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/8575F5AE8C80DFC5C22583320029E3AE?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1095,,Latvia,13,22, +Reinis Znotiņš,4033,93,,91,Parliament,"['471794623']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/4E9398F052AF5F04C22583320029E4B1?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1098,,Latvia,13,22, +Normunds Žunna,4034,93,,91,Parliament,"['275637684']",The New Conservative Party,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/0/6A8C26108D145E37C22583320029E59A?OpenDocument&lang=EN,,,,https://titania.saeima.lv/personal/deputati/saeima13_depweb_public.nsf/deputies?OpenView&lang=EN&count=1099,,Latvia,13,22, +Cruchten Yves,4035,97,,99,Parliament,"['17511272']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23320 +Laurent Zeimet,4036,98,,99,Parliament,"['39755903']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23520 +Angel Marc,"4101, 4037",97,,99,Parliament,"['51407641']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23320 +Cécile Hemmen,4038,97,,99,Parliament,"['182515733']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23320 +Adam Claude,4039,99,,99,Parliament,"['221672552']",The Green Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23113 +Loschetter Viviane,4040,99,,99,Parliament,"['324300629']",The Green Party,,"['President']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23113 +Negri Roger,4042,97,,99,Parliament,"['544664602']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23320 +Serge Wilmes,"4043, 4129",98,,99,Parliament,"['575525025']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Marc Spautz,"4128, 4044",98,,99,Parliament,"['633688898']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Fayot Franz,4045,97,,99,Parliament,"['960847880']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23320 +Alex Bodry,"4103, 4046",97,,99,Parliament,"['1601316937']",Luxembourg Socialist Workers' Party,,"['President']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23320 +Laurent Mosar,"4047, 4124",98,,99,Parliament,"['2189936066']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Halsdorf Jean-Marie,"4048, 4117",98,,99,Parliament,"['2317231003']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Claude Wiseler,"4049, 4130",98,,99,Parliament,"['2370554281']",Christian Social People's Party,,"['President']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Michel Wolter,"4131, 4050",98,,99,Parliament,"['2425507014']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Martine Mergen,4051,98,,99,Parliament,"['2710854359']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23520 +Baum Gilles,"4052, 4096",101,,99,Parliament,"['2813138426']",Democratic Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23420 +Andrich-Duval Sylvie,4053,98,,99,Parliament,"['2831291927']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23520 +Elvinger Joëlle,4054,101,,99,Parliament,"['2831555530']",Democratic Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23420 +Engel Georges,"4105, 4055",97,,99,Parliament,"['2831561133']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23320 +Hahn Max,"4056, 4099",101,,99,Parliament,"['2839790578']",Democratic Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23420 +Delles Lex,"4098, 4057",101,,99,Parliament,"['2884105503']",Democratic Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23420 +Arendt Nancy,"4112, 4058",98,,99,Parliament,"['818833417756413953', '3190558281']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"19, 20",23520 +Claude Lamberty,4060,101,,99,Parliament,"['4783001542']",Democratic Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23420 +Adehm Diane,"4111, 4062",98,,99,Parliament,"['803982330901762050']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Gilles Roth,"4063, 4126",98,,99,Parliament,"['803982364913336320']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Gloden Léon,"4116, 4064",98,,99,Parliament,"['818836353282703360']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Lies Marc,4065,98,,99,Parliament,"['818837415146225664']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23520 +Bartolomeo Di Mars,"4066, 4104",97,,99,Parliament,"['822006387744145408']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23320 +Berger Eugène,4067,101,,99,Parliament,"['2782279077']",Democratic Party,,"['President']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23420 +André Bauler,"4068, 4095",101,,99,Parliament,"['796651909708992512']",Democratic Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23420 +Bofferding Taina,4075,97,,99,Parliament,"['804427265815650304']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23320 +Claude Haagen,4078,97,,99,Parliament,"['2905678360']",Luxembourg Socialist Workers' Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23320 +Anzia Gérard,4079,99,,99,Parliament,"['4463611341']",The Green Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,19,23113 +Hansen Martine,"4118, 4085",98,,99,Parliament,"['3306481919']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Françoise Hetto-Gaasch,"4119, 4086",98,,99,Parliament,"['2785543723']",Christian Social People's Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23520 +Reding Roy,"4135, 4093",102,,99,Parliament,"['2283898982']",Alternative Democratic Reform Party,,"['Member']",,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,"20, 19",23951 +Beissel Simone,4097,101,,99,Parliament,"['1499498586']",Democratic Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23420 +Biancalana Dan,4102,97,,99,Parliament,"['2603706967']",Luxembourg Socialist Workers' Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23320 +Benoy François,4106,99,,99,Parliament,"['394291433']",The Green Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23113 +Charles Margue,4108,99,,99,Parliament,"['2382346663']",The Green Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23113 +Sam Tanson,4109,99,,99,Parliament,"['392904895']",The Green Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23113 +Georges Mischo,4122,98,,99,Parliament,"['4016555777']",Christian Social People's Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23520 +Modert Octavie,4123,98,,99,Parliament,"['3306565876']",Christian Social People's Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23520 +Reding Viviane,"4125, 6813","98, 256",29,"99, 189",Parliament,"['177179008']","Christian Social People's Party, Parti chrétien social luxembourgeois",https://www.europarl.europa.eu/meps/en/1185/VIVIANE_REDING_home.html,,Luxembourg,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction",,"European Parliament, Luxembourg","27, 14","20, 32",23520 +David Wagner,4137,100,,99,Parliament,"['442322151']",The Left,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20,23230 +Clement Sven,4138,103,,99,Parliament,"['25485013']",The Pirate Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20, +Goergen Marc,4139,103,,99,Parliament,"['908998735']",The Pirate Party,,,,,https://www.chd.lu/wps/portal/public/Accueil/OrganisationEtFonctionnement/Organisation/Deputes/DeputesEnFonction,,Luxembourg,14,20, +Acquaroli Francesco,4140,104,,106,Parliament,"['985254589']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307171&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32630 +Acunzo Nicola,4141,105,,106,Parliament,"['887907369958731776']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307538&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Adelizzi Cosimo,4142,105,,106,Parliament,"['973525898']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307559&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Aiello Davide,4143,105,,106,Parliament,"['729452965086547968']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307394&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Alemanno Maria Soave,4146,105,,106,Parliament,"['992420434120409088']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307364&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Alessandro Amitrano,4147,105,,106,Parliament,"['223249685']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307206&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Andreuzza Giorgia,4148,106,,106,Parliament,"['314471179']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307686&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32720 +Angelucci Antonio,"4149, 10488","491, 107",,106,Parliament,"['502798445', '1086424626']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302942&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=A, https://www.camera.it/leg18/28?lettera=A",,Italy,12,"23, 24",32610 +Angiola Nunzio,4150,105,,106,Parliament,"['991688338485760000']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307294&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Annibali Lucia,4151,108,,106,Parliament,"['787371102']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307597&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32440 +Anzaldi Michele,"10606, 4152",108,,106,Parliament,"['2902178505']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305946&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=A, https://www.camera.it/leg18/28?lettera=A",,Italy,12,"23, 24",32440 +Aprea Valentina,4153,107,,106,Parliament,"['1128637543']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=35050&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32610 +Aresta Giovanni Luca,4155,105,,106,Parliament,"['495045156']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307368&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Anna Ascani,"4156, 10479",108,,106,Parliament,"['492325083']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305704&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=A, https://www.camera.it/leg18/28?lettera=A",,Italy,12,"23, 24",32440 +Ascari Stefania,4157,105,,106,Parliament,"['1037599816220651520']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307302&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Azzolina Lucia,4158,105,,106,Parliament,"['1106533782']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307530&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=A,,Italy,12,24,32956 +Bagnasco Roberto,4160,107,,106,Parliament,"['492237675']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307134&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Baldelli Simone,"10534, 4161","491, 107",,106,Parliament,"['13812612', '972442712']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302089&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32610 +Baldino Vittoria,4162,105,,106,Parliament,"['984849914235637761']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307435&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32956 +Baratto Raffaele,4163,107,,106,Parliament,"['975022718016983040']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307692&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Anna Baroni Lisa,4166,107,,106,Parliament,"['1040471648']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307655&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Baroni Enrico Massimo,"10483, 4167",105,,106,Parliament,"['495277374', '2459996144']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305800&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32956 +Bartolozzi Giusi,4168,107,,106,Parliament,"['959043854547726336']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307404&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Battelli Sergio,"4170, 10406",105,,106,Parliament,"['1254905557', '365485762']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305715&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32956 +Alessandro Battilocchio,4171,107,,106,Parliament,"['41363716']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307456&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Alfredo Bazoli,"10470, 4172",108,,106,Parliament,"['473842449']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305547&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Alex Bazzaro,4173,106,,106,Parliament,"['636328779']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307696&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32720 +Bellucci Maria Teresa,4176,104,,106,Parliament,"['935723004']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307426&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32630 +Benamati Gianluca,"10372, 4178",108,,106,Parliament,"['168586183']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302854&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Bendinelli Davide,4179,107,,106,Parliament,"['425915333']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307583&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Benedetti Silvia,4180,109,,106,Parliament,"['1480106364']","MISTO, MAIE-MOVIMENTO ASSOCIATIVO ITALIANI ALLESTERO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305604&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24, +Benigni Stefano,4181,107,,106,Parliament,"['455613209']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307604&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Berardini Fabio,4183,105,,106,Parliament,"['1078837177']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307238&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32956 +Bergamini Deborah,"4184, 10348","491, 107",,106,Parliament,"['92556620']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302867&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32610 +Berlinghieri Marina,"4185, 10615",108,,106,Parliament,"['964876040']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305555&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Bersani Luigi Pier,"4186, 10329","496, 110",,106,Parliament,"['52352494']","ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300026&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24", +Berti Francesco,4187,105,,106,Parliament,"['333554062']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307256&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32956 +Bianchi Luigi Matteo,4188,106,,106,Parliament,"['397914207']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307599&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32720 +Biancofiore Michaela,"10618, 4189","491, 107",,106,Parliament,"['592160447']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302124&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32610 +Bignami Galeazzo,4190,107,,106,Parliament,"['90337089']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307298&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32610 +Billi Simone,4191,106,,106,Parliament,"['747960894']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307151&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32720 +Anna Bilotti,4192,105,,106,Parliament,"['815655422346534912']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307557&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32956 +Bitonci Massimo,4195,106,,106,Parliament,"['106673706']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302824&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32720 +Boccia Francesco,"4196, 10466",108,,106,Parliament,"['461229005']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302892&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Boldrini Laura,"4198, 10381","493, 110",,106,Parliament,"['221902171']","MISTO, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305757&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24", +Alfonso Bonafede,"4200, 10627",105,,106,Parliament,"['1413168613']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306087&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32956 +Bonomo Francesca,"4203, 10560",108,,106,Parliament,"['1093092662']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305563&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Bordo Michele,"4204, 10338",108,,106,Parliament,"['62038434']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301561&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Bordonali Simona,4205,106,,106,Parliament,"['448364257']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307601&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32720 +Alejandro Borghese Mario,"4206, 10629","499, 109",,106,Parliament,"['1110452533']","MISTO, MAIE-MOVIMENTO ASSOCIATIVO ITALIANI ALLESTERO, SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306249&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24", +Borghi Claudio,4207,106,,106,Parliament,"['337767301']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307254&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32720 +Borghi Enrico,"10471, 4208",108,,106,Parliament,"['474175425']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305999&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Boschi Elena Maria,"10508, 4209",108,,106,Parliament,"['588200416']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306160&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Braga Chiara,"10417, 4210",108,,106,Parliament,"['385923471']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302754&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Brambilla Michela Vittoria,"4211, 10398","491, 107",,106,Parliament,"['210951712', '333400498']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302838&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32610 +Brescia Giuseppe,"10633, 4212",105,,106,Parliament,"['1326743389']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305852&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32956 +Brunetta Renato,"10316, 4213","491, 107",,106,Parliament,"['20430345']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302875&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32610 +Bossio Bruno Vincenza,"10347, 4215",108,,106,Parliament,"['88014506']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306134&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32440 +Buffagni Stefano,4217,105,,106,Parliament,"['408370356']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307661&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32956 +Buompane Giuseppe,4218,105,,106,Parliament,"['988044962406326272']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307523&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32956 +Businarolo Francesca,"10639, 4219",105,,106,Parliament,"['1072331106']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305602&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=B, https://www.camera.it/leg18/28?lettera=B",,Italy,12,"23, 24",32956 +Alessio Butti,4220,104,,106,Parliament,"['216895644']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=32500&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=B,,Italy,12,24,32630 +Cabras Pino,4221,105,,106,Parliament,"['390358939']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307108&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Caiata Salvatore,4224,109,,106,Parliament,"['965928290962890880']","MISTO, MAIE-MOVIMENTO ASSOCIATIVO ITALIANI ALLESTERO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307162&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24, +Annagrazia Calabria,"4225, 10435","491, 107",,106,Parliament,"['412371227']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=303200&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32610 +Campana Micaela,"10541, 4226",108,,106,Parliament,"['1017467430']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305810&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32440 +Azzurra Cancelleri Maria Pia,"10371, 4227",105,,106,Parliament,"['87934587', '167309694']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306050&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Cannizzaro Francesco,4229,107,,106,Parliament,"['1092585104']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307568&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32610 +Cantini Laura,4231,108,,106,Parliament,"['2162857184']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306350&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32440 +Cantone Carla,4232,108,,106,Parliament,"['339682634']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307320&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32440 +Caon Roberto,"10644, 4234","493, 107",,106,Parliament,"['1112798694', '268527386']","MISTO, FORZA ITALIA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305632&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32610 +Caparvi Virginio,4235,106,,106,Parliament,"['958262093198872577']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307420&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32720 +Capitanio Massimiliano,4236,106,,106,Parliament,"['297896440']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307685&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32720 +Cappellacci Ugo,4237,107,,106,Parliament,"['319185099']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307215&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32610 +Carabetta Luca,4239,105,,106,Parliament,"['318927329']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307500&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Alessandra Carbonaro,4240,105,,106,Parliament,"['424473336']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307318&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Care' Nicola,4242,108,,106,Parliament,"['958522192857251840']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307161&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32440 +Carelli Emilio,4243,105,,106,Parliament,"['370037876']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307433&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Carfagna Maria Rosaria,"10352, 4245","491, 107",,106,Parliament,"['104485125']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301531&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32610 +Carinelli Paola,"4246, 10650",105,,106,Parliament,"['93917881']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306222&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Carnevali Elena,"10459, 4247",108,,106,Parliament,"['435740653']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305539&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32440 +Carrara Maurizio,4248,107,,106,Parliament,"['960085261844733952']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307140&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32610 +Casino Michele,4251,107,,106,Parliament,"['961647035027021824']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307169&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32610 +Andrea Caso,4252,105,,106,Parliament,"['2524269243']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307194&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Cassese Gianpaolo,4253,105,,106,Parliament,"['957794557705498624']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307367&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Castelli Laura,"4255, 10514",105,,106,Parliament,"['720379711']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305525&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Alessandro Cattaneo,4258,107,,106,Parliament,"['411432358']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307657&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32610 +Cavandoli Laura,4261,106,,106,Parliament,"['215187433']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307285&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32720 +Ceccanti Stefano,4262,108,,106,Parliament,"['441863803']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=303038&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32440 +Cecchetti Fabrizio,4263,106,,106,Parliament,"['499715019']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307680&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32720 +Andrea Cecconi,"10445, 4264","105, 109",,106,Parliament,"['419918470', '194768449']","MISTO, MAIE-MOVIMENTO ASSOCIATIVO ITALIANI ALLESTERO, MOVIMENTO 5 STELLE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305787&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Cenni Susanna,"10433, 4265",108,,106,Parliament,"['408615010']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302943&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32440 +Chiazzese Giuseppe,4268,105,,106,Parliament,"['196095337']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307117&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Ciaburro Monica,4269,104,,106,Parliament,"['570163803']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307511&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32630 +Cillis Luciano,4271,105,,106,Parliament,"['1016331956727046144']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307165&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Ciprini Tiziana,"4273, 10532",105,,106,Parliament,"['968615264']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305694&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Cirielli Edmondo,"10675, 4274","104, 498",,106,Parliament,"['82145527']","FRATELLI DITALIA-ALLEANZA NAZIONALE, FRATELLI DITALIA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300319&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24","32710, 32630" +Andrea Colletti,"10562, 4278",105,,106,Parliament,"['1407978600']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306060&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Claudio Cominardi,"10679, 4283",105,,106,Parliament,"['203915389']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305520&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Conte Federico,4284,110,,106,Parliament,"['1134568423']",LIBERI E UGUALI,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307541&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24, +Corda Emanuela,"10426, 4285",105,,106,Parliament,"['398603525']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306031&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Corneli Valentina,4286,105,,106,Parliament,"['952954215491604480']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307236&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Costanzo Jessica,4289,105,,106,Parliament,"['1063710080']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307490&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Crippa Davide,"10685, 4292",105,,106,Parliament,"['1283276454']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306022&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=C, https://www.camera.it/leg18/28?lettera=C",,Italy,12,"23, 24",32956 +Cristina Mirella,4293,107,,106,Parliament,"['2369471058']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307460&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32610 +Crosetto Guido,4295,104,,106,Parliament,"['413916151']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300356&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32630 +Curro' Giovanni,4298,105,,106,Parliament,"['2314190958']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307610&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=C,,Italy,12,24,32956 +Dadone Fabiana,"10688, 4299",105,,106,Parliament,"['708276706']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306020&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Daga Federica,"4300, 10689",105,,106,Parliament,"['361373768']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305773&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Camillo D'Alessandro,4301,108,,106,Parliament,"['564443638']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307244&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32440 +Dall'Osso Matteo,"4302, 10308",105,,106,Parliament,"['13065292']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305967&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +D'Ambrosio Giuseppe,"4304, 10693",105,,106,Parliament,"['318437961']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305838&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Celeste D'Arrando,4306,105,,106,Parliament,"['289361766']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307472&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +D'Attis Mauro,4307,107,,106,Parliament,"['479085365']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307312&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32610 +Carlo De Luca,4309,104,,106,Parliament,"['422762115']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307708&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32630 +Carlo De Sabrina,4310,105,,106,Parliament,"['454941977']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307380&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +De Filippo Vito,4311,108,,106,Parliament,"['518743903']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306663&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32440 +Deiana Paola,4314,105,,106,Parliament,"['1651042590']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307227&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +Deidda Salvatore,4315,104,,106,Parliament,"['74544145']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307219&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32630 +Barba Del Mauro,4316,108,,106,Parliament,"['58020070']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306382&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32440 +Daniele Del Grosso,"4318, 10698",105,,106,Parliament,"['202726940']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306062&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Andrea Delle Delmastro Vedove,4320,104,,106,Parliament,"['519867330']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307479&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32630 +Antonio Del Monaco,4321,105,,106,Parliament,"['1617624164']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307520&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +De Diego Lorenzis,"4322, 10703",105,,106,Parliament,"['44370691']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305848&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Claudia Del Emanuela Re,4324,105,,106,Parliament,"['412137356']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307437&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +Delrio Graziano,4325,108,,106,Parliament,"['484982241']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306540&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32440 +Del Margherita Sesto,4326,105,,106,Parliament,"['1476950726']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307551&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +De Luca Piero,4327,108,,106,Parliament,"['2725835234']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307561&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32440 +Andrea De Maria,"10416, 4328",108,,106,Parliament,"['384881122']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305698&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32440 +De Guido Martini,4329,106,,106,Parliament,"['422152255']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307217&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32720 +De Menech Roger,"4330, 10570",108,,106,Parliament,"['1116261655']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305656&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32440 +De Micheli Paola,"4331, 10467",108,,106,Parliament,"['461306712']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302856&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32440 +D'Eramo Luigi,4332,106,,106,Parliament,"['417213918']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307242&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32720 +Dieni Federica,"4335, 10706",105,,106,Parliament,"['940100618']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306120&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Di Giorgi Maria Rosa,4336,108,,106,Parliament,"['1372230528']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306383&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32440 +Di Luigi Maio,"10709, 4338",105,,106,Parliament,"['48062712']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305892&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Di Maio Marco,"4339, 10328",108,,106,Parliament,"['48484178']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305850&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32440 +D'Inca' Federico,"4341, 10710",105,,106,Parliament,"['122445010']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305674&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +D'Ippolito Giuseppe,4342,105,,106,Parliament,"['3046916127']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307565&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +Di Iolanda Stasio,4345,105,,106,Parliament,"['833401295478329344']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307200&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +Di Manlio Stefano,"4346, 10377",105,,106,Parliament,"['208642171']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306228&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Donno Leonardo,4348,105,,106,Parliament,"['921355910437580800']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307348&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32956 +Donzelli Giovanni,4349,104,,106,Parliament,"['22127498']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307246&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32630 +Claudio Durigon,4352,106,,106,Parliament,"['2482335605']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307468&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=D,,Italy,12,24,32720 +D'Uva Francesco,"4353, 10383",105,,106,Parliament,"['238909679']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306085&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=D, https://www.camera.it/leg18/28?lettera=D",,Italy,12,"23, 24",32956 +Epifani Ettore Guglielmo,"10576, 4356","496, 110",,106,Parliament,"['1133749243']","ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305837&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=E, https://www.camera.it/leg18/28?lettera=E",,Italy,12,"23, 24", +Alessandra Ermellino,4357,105,,106,Parliament,"['866667288']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307350&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=E,,Italy,12,24,32956 +David Ermini,"4358, 10424",108,,106,Parliament,"['394787464']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306168&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=E, https://www.camera.it/leg18/28?lettera=E",,Italy,12,"23, 24",32440 +Fantinati Mattia,"10719, 4359",105,,106,Parliament,"['49275896']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305612&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32956 +Faro Marialuisa,4361,105,,106,Parliament,"['1006435341983797248']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307346&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32956 +Fassina Stefano,"4364, 10391","110, 492",,106,Parliament,"['301472434']","SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305806&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32230 +Fassino Piero,4365,108,,106,Parliament,"['100218289']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=36500&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32440 +Carlo Fatuzzo,4366,107,,106,Parliament,"['2775392512']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307626&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32610 +Fedriga Massimiliano,"4368, 10724","106, 495",,106,Parliament,"['156316785']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302983&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32720 +Ferraioli Marzia,4369,107,,106,Parliament,"['2496933837']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307539&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32610 +Ferraresi Vittorio,"10725, 4370",105,,106,Parliament,"['2256679742']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305972&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32956 +Cosimo Ferri Maria,4372,108,,106,Parliament,"['547756044']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306549&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32440 +Ferro Wanda,4373,104,,106,Parliament,"['2443559113']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307567&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32630 +Emanuele Fiano,"4374, 10394",108,,106,Parliament,"['327455219']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301452&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32440 +Fico Roberto,"4376, 10317",105,,106,Parliament,"['22834067']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305890&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32956 +Carlo Fidanza,"4377, 12798","521, 104",33,106,Parliament,"['76596562']","Fratelli d'Italia, FRATELLI DITALIA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307670&tipoAttivita=&tipoVisAtt=&tipoPersona=,,Italy,,https://www.camera.it/leg18/28?lettera=F,,"European Parliament, Italy","27, 12","24, 43",32630 +Fioramonti Lorenzo,4378,105,,106,Parliament,"['839373926']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307450&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32956 +Benedetta Fiorini,4379,107,,106,Parliament,"['604395668']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307284&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32610 +Fitzgerald Fucsia Nissoli,"12859, 6107, 10330, 4380","107, 176, 491",30,"106, 191, 106",Parliament,"['54988878', '553977418']","FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE, Partito Democratico, FORZA ITALIA - BERLUSCONI PRESIDENTE","https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306251&tipoAttivita=&tipoVisAtt=&tipoPersona=, https://www.europarl.europa.eu/meps/en/96864/DAVID-MARIA_SASSOLI_home.html",,Italy,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,"Italy, European Parliament, Italy","12, 27, 12","23, 43, 32, 24","32610, 32440, 32610" +Flati Francesca,4381,105,,106,Parliament,"['973305100612534272']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307445&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32956 +Fontana Gregorio,"4383, 10730","491, 107",,106,Parliament,"['2451712279']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300439&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32610 +Fontana Ilaria,4384,105,,106,Parliament,"['407163369']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307459&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32956 +Fontana Lorenzo,"4385, 6647","106, 264",35,"232, 106",Parliament,"['455378815']","Lega Nord, LEGA - SALVINI PREMIER","https://www.europarl.europa.eu/meps/en/96993/LORENZO_FONTANA_home.html, https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307591&tipoAttivita=&tipoVisAtt=&tipoPersona=",,Italy,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.camera.it/leg18/28?lettera=F",,"European Parliament, Italy","27, 12","24, 32",32720 +Forciniti Francesco,4386,105,,106,Parliament,"['826769015976636416']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307720&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32956 +Federico Fornaro,4388,110,,106,Parliament,"['586037920']",LIBERI E UGUALI,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306398&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24, +Foscolo Sara,4389,106,,106,Parliament,"['510454841']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307131&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32720 +Foti Tommaso,4390,104,,106,Parliament,"['607347341']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=50204&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32630 +Fraccaro Riccardo,"10733, 4391",105,,106,Parliament,"['1052596340']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305595&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32956 +Fragomeli Gian Mario,"4392, 10385",108,,106,Parliament,"['248604737']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305559&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32440 +Dario Franceschini,"10332, 4393",108,,106,Parliament,"['61154684']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300246&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32440 +Frassinetti Paola,4394,104,,106,Parliament,"['373947833']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301457&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32630 +Frassini Rebecca,4395,106,,106,Parliament,"['454797927']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307630&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32720 +Flora Frate,4396,105,,106,Parliament,"['474418037']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307204&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32956 +Fratoianni Nicola,"10734, 4397","110, 492",,106,Parliament,"['425686235']","SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305880&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32230 +Fregolent Silvia,"4398, 10510",108,,106,Parliament,"['590358735']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305569&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32440 +Frusone Luca,"4399, 10735",105,,106,Parliament,"['262823808']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305748&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=F, https://www.camera.it/leg17/28?lettera=F",,Italy,12,"23, 24",32956 +Fugatti Maurizio,4400,106,,106,Parliament,"['497977012']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302155&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32720 +Domenico Furgiuele,4401,106,,106,Parliament,"['952881172010369024']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307718&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32720 +Alessandro Fusacchia,4402,112,,106,Parliament,"['85179772']","MISTO, +EUROPA-CENTRO DEMOCRATICO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307155&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=F,,Italy,12,24,32450 +Chiara Gadda Maria,"10555, 4403",108,,106,Parliament,"['1061367398']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305553&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Chiara Gagnarli,"4405, 10739",105,,106,Parliament,"['398611235']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306096&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32956 +Davide Galantino,4406,105,,106,Parliament,"['3142040746']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307344&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32956 +Francesca Galizia,4407,105,,106,Parliament,"['993197078313603072']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307290&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32956 +Filippo Gallinella,"4409, 10741",105,,106,Parliament,"['1637833237']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305696&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32956 +Gallo Luigi,"10742, 4410",105,,106,Parliament,"['920435114']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305900&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32956 +Garavaglia Massimo,4411,106,,106,Parliament,"['1095354780']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302151&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Davide Gariglio,4412,108,,106,Parliament,"['284519305']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307504&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32440 +Flavio Gastaldi,4413,106,,106,Parliament,"['375272121']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307509&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Gava Vannia,4414,106,,106,Parliament,"['578316055']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307138&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Gelmini Mariastella,"10446, 4416","491, 107",,106,Parliament,"['420332560']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301449&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32610 +Gemmato Marcello,4417,104,,106,Parliament,"['211191573']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307332&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32630 +Gentiloni Paolo Silveri,"10749, 4418",108,,106,Parliament,"['406869976']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300637&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Andrea Giaccone,4421,106,,106,Parliament,"['1435200194']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307508&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Giachetti Roberto,"4422, 10492",108,,106,Parliament,"['523058143']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300480&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Antonello Giacomelli,"10473, 4423",108,,106,Parliament,"['480023608']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301056&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Conny Giordano,4430,105,,106,Parliament,"['831263917175427072']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307198&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32956 +Giancarlo Giorgetti,4431,106,,106,Parliament,"['2256593570']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=50115&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Andrea Giorgis,"4432, 10758",108,,106,Parliament,"['697713603709898752']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305567&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Giuliodori Paolo,4434,105,,106,Parliament,"['1040272927319633920']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307177&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32956 +Golinelli Guglielmo,4436,106,,106,Parliament,"['1070558072']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307314&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Grande Marta,"10760, 4437",105,,106,Parliament,"['1269713336']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305784&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32956 +Chiara Gribaudo,"4438, 10549",108,,106,Parliament,"['1030715161']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306008&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Giulia Grillo,"10580, 4439",105,,106,Parliament,"['1156611540', '236565724']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306071&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32956 +Grimaldi Nicola,4440,105,,106,Parliament,"['973150770873929731']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307528&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32956 +Grimoldi Paolo,"10762, 4441","106, 495",,106,Parliament,"['417962415']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301455&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32720 +Carmela Grippa,4442,105,,106,Parliament,"['1228402290']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307232&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32956 +Guerini Lorenzo,"10465, 4444",108,,106,Parliament,"['460163041', '1870754606']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305624&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32440 +Guidesi Guido,"10764, 4445","106, 495",,106,Parliament,"['2197478480']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306582&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=G, https://www.camera.it/leg17/28?lettera=G",,Italy,12,"23, 24",32720 +Alberto Gusmeroli Luigi,4446,106,,106,Parliament,"['878620152253886464']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307475&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=G,,Italy,12,24,32720 +Giancarlo Iezzi Igor,4448,106,,106,Parliament,"['309937155']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307641&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=I,,Italy,12,24,32720 +Antonella Incerti,"10550, 4449",108,,106,Parliament,"['1030729472']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305702&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=I, https://www.camera.it/leg17/28?lettera=I",,Italy,12,"23, 24",32440 +Cristian Invernizzi,4450,106,,106,Parliament,"['418114289']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305503&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=I,,Italy,12,24,32720 +Iovino Luigi,4453,105,,106,Parliament,"['2345113069']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307208&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=I,,Italy,12,24,32956 +Giuseppe L'Abbate,"10772, 4454",105,,106,Parliament,"['1509825860']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305842&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32956 +Labriola Vincenza,"10773, 4455","491, 107",,106,Parliament,"['4218365097']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305872&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32610 +Lacarra Marco,4456,108,,106,Parliament,"['715513977544052736']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307308&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32440 +Francesca La Marca,"4457, 10521",108,,106,Parliament,"['826209650']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306253&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32440 +Lapia Mara,4458,105,,106,Parliament,"['1063902572']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307107&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32956 +Giorgia Latini,4459,106,,106,Parliament,"['2422628264']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307173&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32720 +Arianna Lazzarini,4461,106,,106,Parliament,"['2862880558']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307570&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32720 +Lepri Stefano,4463,108,,106,Parliament,"['384353170']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306420&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32440 +Gianfranco Librandi,"4464, 10779","108, 493",,106,Parliament,"['1074223417']","MISTO, PARTITO DEMOCRATICO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306220&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32440 +Caterina Licatini,4465,105,,106,Parliament,"['1048848524656431104']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307392&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32956 +Liuzzi Mirella,"4467, 10305",105,,106,Parliament,"['11945512']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305982&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32956 +Alessandra Locatelli,4468,106,,106,Parliament,"['4248435813']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307622&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32720 +Lolini Mario,4469,106,,106,Parliament,"['1384222723']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307145&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32720 +Fausto Longo,4473,114,,106,Parliament,"['740912338744803328']","MISTO, CIVICA POPOLARE-AP-PSI-AREA CIVICA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306425&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24, +Lorefice Marialucia,"4474, 10781",105,,106,Parliament,"['1623798294']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306082&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32956 +Beatrice Lorenzin,"4475, 10490","494, 114",,106,Parliament,"['515229378']","MISTO, CIVICA POPOLARE-AP-PSI-AREA CIVICA, ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302783&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24", +Gabriele Lorenzoni,4477,105,,106,Parliament,"['593903001']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307483&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32956 +Alberto Losacco,"4478, 10360",108,,106,Parliament,"['120206776']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302891&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32440 +Lotti Luca,"4479, 10782",108,,106,Parliament,"['1949844973']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306128&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24",32440 +Giorgio Lovecchio,4480,105,,106,Parliament,"['383752497']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307356&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32956 +Lucaselli Ylenja,4481,104,,106,Parliament,"['1005040916997042176']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307340&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32630 +Elena Lucchini,4482,106,,106,Parliament,"['2741809968']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307656&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=L,,Italy,12,24,32720 +Lupi Maurizio,"10408, 4483","494, 111",,106,Parliament,"['373423842']","MISTO, NOI CON LITALIA, ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300447&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=L, https://www.camera.it/leg17/28?lettera=L",,Italy,12,"23, 24", +Elena Maccanti,4484,106,,106,Parliament,"['2668990849']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302980&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Anna Macina,4485,105,,106,Parliament,"['993341282255851520']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307369&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Anna Madia Maria,"4486, 10509",108,,106,Parliament,"['588975097']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302789&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Maggioni Marco,4487,106,,106,Parliament,"['601109667']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=304601&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Magi Riccardo,4488,112,,106,Parliament,"['283026832']","MISTO, +EUROPA-CENTRO DEMOCRATICO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307436&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32450 +Maglione Pasquale,4489,105,,106,Parliament,"['2986474576']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307549&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Gavino Manca,4492,108,,106,Parliament,"['2302629775']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307229&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Claudio Mancini,4493,108,,106,Parliament,"['2458617331']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307481&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Andrea Mandelli,4494,107,,106,Parliament,"['703511639']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306430&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Franco Manzato,4496,106,,106,Parliament,"['713804785']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307700&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Manzo Teresa,4497,105,,106,Parliament,"['467403831']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307212&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Generoso Maraia,4498,105,,106,Parliament,"['2275042282']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307515&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Luigi Marattin,4499,108,,106,Parliament,"['616886078']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307328&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Augusto Marchetti Riccardo,4500,106,,106,Parliament,"['1029849561915949066']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307453&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Felice Mariani,4501,105,,106,Parliament,"['1060665188']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307428&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Marco Marin,4502,107,,106,Parliament,"['921162848']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306432&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Marrocco Patrizia,4504,107,,106,Parliament,"['3153590871']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307466&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Martina Maurizio,4505,108,,106,Parliament,"['415571726']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306551&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Antonio Martino,"4507, 10480","491, 107",,106,Parliament,"['492371310', '958641224944181248']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307230&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32610 +Maria Marzana,"4508, 10803",105,,106,Parliament,"['3101551210']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306080&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32956 +Matteo Mauri,"4512, 10807",108,,106,Parliament,"['2191248370']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306176&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Alessandro Melicchio,4514,105,,106,Parliament,"['1008846302']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307724&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Giorgia Meloni,"10363, 4516","104, 498",,106,Parliament,"['130537001']","FRATELLI DITALIA-ALLEANZA NAZIONALE, FRATELLI DITALIA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302103&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24","32710, 32630" +Carmelo Miceli,4518,108,,106,Parliament,"['1956171698']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307384&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Micillo Salvatore,"10813, 4519",105,,106,Parliament,"['1715119512']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305894&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32956 +Gennaro Migliore,"4520, 10369",108,,106,Parliament,"['154082631']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302164&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Lorena Milanato,4522,107,,106,Parliament,"['959430425256087553']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300296&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Antonino Minardo,4523,107,,106,Parliament,"['607309665']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302913&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Carmelo Massimo Misiti,4525,105,,106,Parliament,"['520275529']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307562&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Molinari Riccardo,4526,106,,106,Parliament,"['529406554']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307507&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Federico Mollicone,4527,104,,106,Parliament,"['272317881']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307424&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32630 +Molteni Nicola,"4528, 10821","106, 495",,106,Parliament,"['635446554']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302762&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32720 +Augusta Montaruli,4529,104,,106,Parliament,"['421841453']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307464&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32630 +Mattia Mor,4530,108,,106,Parliament,"['411424173']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307647&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Alessia Morani,"10455, 4531",108,,106,Parliament,"['429312499']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305780&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Morassut Roberto,"10503, 4532",108,,106,Parliament,"['569887181']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302794&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Moretto Sara,"4534, 10520",108,,106,Parliament,"['823648998']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305660&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Mario Morgoni,4535,108,,106,Parliament,"['1101122352']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306445&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32440 +Jacopo Morrone,4536,106,,106,Parliament,"['476144741']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307300&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Mugnai Stefano,4538,107,,106,Parliament,"['3187239525']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307260&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Giorgio Mule',4539,107,,106,Parliament,"['212364488']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307130&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32610 +Andrea Mura,4540,105,,106,Parliament,"['2811436788']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307106&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32956 +Mura Romina,"4541, 10357",108,,106,Parliament,"['112485367']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306053&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=M, https://www.camera.it/leg18/28?lettera=M",,Italy,12,"23, 24",32440 +Elena Murelli,4542,106,,106,Parliament,"['949928755']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307336&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24,32720 +Muroni Rossella,4543,110,,106,Parliament,"['3405754877']",LIBERI E UGUALI,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307296&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=M,,Italy,12,24, +Iolanda Nanni,4545,105,,106,Parliament,"['477025365']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307649&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32956 +Napoli Osvaldo,4546,107,,106,Parliament,"['725679520083226624']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300387&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32610 +Martina Nardi,"4548, 10830",108,,106,Parliament,"['498224052']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306193&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=N, https://www.camera.it/leg18/28?lettera=N",,Italy,12,"23, 24",32440 +Navarra Pietro,4549,108,,106,Parliament,"['958640426482847744']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307410&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32440 +Dalila Nesci,"10469, 4550",105,,106,Parliament,"['473107684']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306109&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=N, https://www.camera.it/leg18/28?lettera=N",,Italy,12,"23, 24",32956 +Nevi Raffaele,4551,107,,106,Parliament,"['430725523']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307454&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32610 +Luciano Nobili,4553,108,,106,Parliament,"['130851801']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307449&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32440 +Lisa Noja,4554,108,,106,Parliament,"['576934973']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307676&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32440 +Novelli Roberto,4555,107,,106,Parliament,"['402302715']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307378&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=N,,Italy,12,24,32610 +Giuseppina Occhionero,4556,110,,106,Parliament,"['978606525160853505']",LIBERI E UGUALI,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307281&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=O,,Italy,12,24, +Occhiuto Roberto,"4557, 10344","491, 107",,106,Parliament,"['85264321']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302969&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=O, https://www.camera.it/leg17/28?lettera=O",,Italy,12,"23, 24",32610 +Olgiati Riccardo,4558,105,,106,Parliament,"['53438498']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307674&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=O,,Italy,12,24,32956 +Matteo Orfini,"10306, 4559",108,,106,Parliament,"['12514212']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305815&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=O, https://www.camera.it/leg17/28?lettera=O",,Italy,12,"23, 24",32440 +Andrea Orlando,"10484, 4560",108,,106,Parliament,"['496437886']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301463&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=O, https://www.camera.it/leg17/28?lettera=O",,Italy,12,"23, 24",32440 +Anna Laura Orrico,4561,105,,106,Parliament,"['398927724']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307564&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=O,,Italy,12,24,32956 +Andrea Orsini,4562,107,,106,Parliament,"['212269866']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300299&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=O,,Italy,12,24,32610 +Marco Osnato,4563,104,,106,Parliament,"['424980952']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307612&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=O,,Italy,12,24,32630 +Carlo Padoan Pietro,4564,108,,106,Parliament,"['2377155925']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306641&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32440 +Alessandro Pagano,"10418, 4566","106, 495",,106,Parliament,"['386000073', '75155781']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302964&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32720 +Pagano Ubaldo,4567,108,,106,Parliament,"['960596030315212800']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307304&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32440 +Paita Raffaella,4568,108,,106,Parliament,"['455562995']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307535&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32440 +Erasmo Palazzotto,"10840, 4569","110, 492",,106,Parliament,"['808878834']","SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306304&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32230 +Maria Pallini,4570,105,,106,Parliament,"['3078169923']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307547&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32956 +Antonio Palmieri,"10303, 4571","491, 107",,106,Parliament,"['6827962']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300453&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32610 +Palmisano Valentina,4572,105,,106,Parliament,"['976863849793163264']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307338&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32956 +Massimiliano Panizzut,4573,106,,106,Parliament,"['898653725878779904']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307376&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32720 +Paolo Parentela,"4576, 10414",105,,106,Parliament,"['381611850']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306124&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32956 +Parolo Ugo,4578,106,,106,Parliament,"['3017823748']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=50123&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32720 +Luca Pastorino,"4579, 10468","110, 492",,106,Parliament,"['472149764']","SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305733&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32230 +Cristina Patelli,4581,106,,106,Parliament,"['566604491']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307522&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32720 +Laura Maria Paxia,4583,105,,106,Parliament,"['973983243694419968']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307122&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32956 +Claudio Pedrazzini,4584,107,,106,Parliament,"['398911818']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307662&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32610 +Pella Roberto,4585,107,,106,Parliament,"['4008843159']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307496&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32610 +Nicola Pellicani,4586,108,,106,Parliament,"['2995005586']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307704&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32440 +Antonio Pentangelo,4588,107,,106,Parliament,"['1374146521']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307183&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32610 +Germano Guido Pettarin,4592,107,,106,Parliament,"['961958095650992128']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307136&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32610 +Pezzopane Stefania,4594,108,,106,Parliament,"['1080795937']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306466&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32440 +Carlo Piastra,4595,106,,106,Parliament,"['3128137634']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307310&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32720 +Guglielmo Picchi,"10321, 4596","106, 495",,106,Parliament,"['33501253']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301500&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32720 +Flavia Nardelli Piccoli,"4597, 10854",108,,106,Parliament,"['1076737932']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305997&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32440 +Giuditta Pini,"4599, 10497",108,,106,Parliament,"['543382485']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305914&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32440 +Pietro Pittalis,4600,107,,106,Parliament,"['895063669']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307223&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32610 +Catia Polidori,"10866, 4603","491, 107",,106,Parliament,"['1543627718']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302968&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32610 +Polverini Renata,"10868, 4605","491, 107",,106,Parliament,"['113075421']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305761&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32610 +Claudia Porchietto,4606,107,,106,Parliament,"['540078159']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307474&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32610 +Prestigiacomo Stefania,"10498, 4609","491, 107",,106,Parliament,"['544320978']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=38350&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=P, https://www.camera.it/leg17/28?lettera=P",,Italy,12,"23, 24",32610 +Patrizia Prestipino,4610,108,,106,Parliament,"['399010858']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307430&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32440 +Emanuele Prisco,4612,104,,106,Parliament,"['122327232']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307452&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32630 +Nicola Provenza,4613,105,,106,Parliament,"['524509634']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307537&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=P,,Italy,12,24,32956 +Lia Procopio Quartapelle,"4614, 10873",108,,106,Parliament,"['216361540']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306189&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=Q, https://www.camera.it/leg17/28?lettera=Q",,Italy,12,"23, 24",32440 +Fausto Raciti,"10395, 4616",108,,106,Parliament,"['328060514']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306101&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32440 +Raduzzi Raphael,4617,105,,106,Parliament,"['292474458']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307593&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Angela Raffa,4618,105,,106,Parliament,"['2149359853']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307406&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Fabio Rampelli,"10877, 4620","104, 498",,106,Parliament,"['493025647']","FRATELLI DITALIA-ALLEANZA NAZIONALE, FRATELLI DITALIA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301436&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24","32710, 32630" +Laura Ravetto,"10507, 4621","491, 107",,106,Parliament,"['587805027']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301459&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32610 +Alberto Ribolla,4622,106,,106,Parliament,"['585991438']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307628&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32720 +Riccardo Ricciardi,4623,105,,106,Parliament,"['791235296']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307250&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Elisabetta Ripani,4624,107,,106,Parliament,"['2177920516']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307268&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32610 +Edoardo Rixi,4625,106,,106,Parliament,"['61160450']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=304521&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32720 +Rizzetto Walter,"10405, 4626","104, 498",,106,Parliament,"['359933447']","FRATELLI DITALIA-ALLEANZA NAZIONALE, FRATELLI DITALIA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305688&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24","32710, 32630" +Gianluca Rizzo,"10879, 4627",105,,106,Parliament,"['397245294']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306088&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32956 +Marco Rizzone,4628,105,,106,Parliament,"['962012305327251456']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307133&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Luca Nervo Rizzo,4629,108,,106,Parliament,"['34910897']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307322&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32440 +Cristian Romaniello,4630,105,,106,Parliament,"['2280877178']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307646&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Andrea Romano,"10389, 4631",108,,106,Parliament,"['284706444']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306181&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32440 +Nicolo' Paolo Romano,"10881, 4632",105,,106,Parliament,"['52071233']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306030&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32956 +Ettore Rosato,"10387, 4633",108,,106,Parliament,"['258861907']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300674&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32440 +Gianluca Rospi,4634,105,,106,Parliament,"['939092301091168261']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307163&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Cristina Rossello,4635,107,,106,Parliament,"['837629276912504832']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307678&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32610 +Andrea Rossi,4636,108,,106,Parliament,"['123712076']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307306&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32440 +Michela Rostan,"4640, 10567","496, 110",,106,Parliament,"['1111162884']","ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305859&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24", +Gianfranco Rotondi,"10346, 4642","491, 107",,106,Parliament,"['87467449']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=38560&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32610 +Alessia Rotta,"10887, 4643",108,,106,Parliament,"['256163349']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305650&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32440 +Daniela Ruffino,4644,107,,106,Parliament,"['4104382283']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307478&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32610 +Andrea Ruggieri,4645,107,,106,Parliament,"['986813180']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307422&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32610 +Anna Francesca Ruggiero,4646,105,,106,Parliament,"['913545247']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307289&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=R,,Italy,12,24,32956 +Carla Ruocco,"4647, 10536",105,,106,Parliament,"['978488840']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305796&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32956 +Paolo Russo,"4649, 10304","491, 107",,106,Parliament,"['7844932', '494267753']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=50213&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg17/28?lettera=R, https://www.camera.it/leg18/28?lettera=R",,Italy,12,"23, 24",32610 +Eugenio Saitta,4651,105,,106,Parliament,"['281551022']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307124&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Angela Salafia,4652,105,,106,Parliament,"['2901538787']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307439&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Barbara Saltamartini,"10386, 4653","106, 495",,106,Parliament,"['253262674']","LEGA - SALVINI PREMIER, LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302914&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32720 +Jole Santelli,"10486, 4655","491, 107",,106,Parliament,"['556757893', '499941756']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300306&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32610 +Francesco Sapia,4656,105,,106,Parliament,"['1262709276']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307563&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Carlo Sarro,4658,107,,106,Parliament,"['852980514436853760']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=303108&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Giulia Sarti,"4659, 10553",105,,106,Parliament,"['1053093684']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305960&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32956 +Rossano Sasso,4660,106,,106,Parliament,"['520451294']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307360&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32720 +Elvira Savino,"4661, 10476","491, 107",,106,Parliament,"['485685744']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302882&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32610 +Sandra Savino,"4662, 10894","491, 107",,106,Parliament,"['1905601525']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305684&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32610 +Emanuele Scagliusi,"4663, 10896",105,,106,Parliament,"['1385237533']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305862&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32956 +Ivan Scalfarotto,"10319, 4664",108,,106,Parliament,"['30248306']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305933&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32440 +Lucia Scanu,4665,105,,106,Parliament,"['60988699']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307221&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Angela Schiro',4667,108,,106,Parliament,"['994204830276182016']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307149&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32440 +Francesco Scoma,4669,107,,106,Parliament,"['560997857']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306483&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Enrica Segneri,4672,105,,106,Parliament,"['1269881322']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307488&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Debora Serracchiani,4674,108,,106,Parliament,"['35298549']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307374&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32440 +Sgarbi Vittorio,4676,107,,106,Parliament,"['201658727']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=34510&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Paolo Siani,4677,108,,106,Parliament,"['2521419357']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307187&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32440 +Carlo Sibilia,"10362, 4678",105,,106,Parliament,"['127025568']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305918&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32956 +Cosimo Sibilia,4679,107,,106,Parliament,"['869203195301687296']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=303110&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Giorgio Silli,4680,107,,106,Parliament,"['499672556']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307139&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Francesco Silvestri,4681,105,,106,Parliament,"['978400732402642944']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307447&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Rachele Silvestri,4682,105,,106,Parliament,"['174818748']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307175&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Marco Silvestroni,4683,104,,106,Parliament,"['1101905808']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307451&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32630 +Matilde Siracusano,4684,107,,106,Parliament,"['1328329476']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307402&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Michele Sodano,4687,105,,106,Parliament,"['441379961']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307118&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Alessandro Sorte,4688,107,,106,Parliament,"['605789764']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307608&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Diego Sozzani,4690,107,,106,Parliament,"['444722258']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307517&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Edera Maria Spadoni,"10911, 4692",105,,106,Parliament,"['1376730776']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305970&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32956 +Maria Spena,4693,107,,106,Parliament,"['1261619708']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307441&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32610 +Roberto Speranza,"4694, 10397","496, 110",,106,Parliament,"['331005596']","ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA, LIBERI E UGUALI",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305974&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24", +Arianna Spessotto,"10519, 4695",105,,106,Parliament,"['807655352']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305668&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32956 +Luca Squeri,"10512, 4697","491, 107",,106,Parliament,"['615326948']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306214&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=S, https://www.camera.it/leg17/28?lettera=S",,Italy,12,"23, 24",32610 +Simona Suriano,4700,105,,106,Parliament,"['1286365502']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307123&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Luca Sut,4701,105,,106,Parliament,"['77525521']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307382&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=S,,Italy,12,24,32956 +Bruno Tabacci,"10912, 4702","112, 497",,106,Parliament,"['731478246']","DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO, MISTO, +EUROPA-CENTRO DEMOCRATICO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=34580&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=T, https://www.camera.it/leg17/28?lettera=T",,Italy,12,"23, 24",32450 +Annaelsa Tartaglione,4704,107,,106,Parliament,"['2375205539']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307316&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32610 +Antonio Tasso,4705,109,,106,Parliament,"['465480528']","MISTO, MAIE-MOVIMENTO ASSOCIATIVO ITALIANI ALLESTERO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307371&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24, +Anna Rita Tateo,4706,106,,106,Parliament,"['1150624603']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307362&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32720 +Guia Termini,4707,105,,106,Parliament,"['226942418']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307636&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Claudia Maria Terzi,4708,106,,106,Parliament,"['1884023996']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307664&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32720 +Patrizia Terzoni,"10917, 4709",105,,106,Parliament,"['438385480']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305792&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=T, https://www.camera.it/leg17/28?lettera=T",,Italy,12,"23, 24",32956 +Paolo Tiramani,4711,106,,106,Parliament,"['418570030']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307484&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32720 +Gabriele Toccafondi,4712,114,,106,Parliament,"['432304612']","MISTO, CIVICA POPOLARE-AP-PSI-AREA CIVICA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302872&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24, +Angelo Tofalo,"10402, 4713",105,,106,Parliament,"['337171830']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305910&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=T, https://www.camera.it/leg17/28?lettera=T",,Italy,12,"23, 24",32956 +Maura Tomasi,4714,106,,106,Parliament,"['1032755762']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307279&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32720 +Renzo Tondo,4716,111,,106,Parliament,"['730655588']","MISTO, NOI CON LITALIA",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=301448&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24, +Gianni Tonelli,4717,106,,106,Parliament,"['2759208687']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307324&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32720 +Paolo Trancassini,4720,104,,106,Parliament,"['2203729336']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307457&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32630 +Raffaele Trano,4721,105,,106,Parliament,"['116803999']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307486&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Roberto Traversi,4722,105,,106,Parliament,"['1034182227406594048']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307132&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Elisa Tripodi,4724,105,,106,Parliament,"['982703443910516736']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307105&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Maria Tripodi,4725,107,,106,Parliament,"['906269360']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307728&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32610 +Giorgio Trizzino,4726,105,,106,Parliament,"['957604369511444480']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307113&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Francesca Troiano,4727,105,,106,Parliament,"['996725885238726662']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307352&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Riccardo Tucci,4728,105,,106,Parliament,"['535371328']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307726&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Manuel Tuzi,4730,105,,106,Parliament,"['1017017173976461314']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307443&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=T,,Italy,12,24,32956 +Massimo Ungaro,4731,108,,106,Parliament,"['351194561']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307147&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=U,,Italy,12,24,32440 +Gianluca Vacca,"4732, 10361",105,,106,Parliament,"['124236178']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306058&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32956 +Simone Valente,"4734, 10923",105,,106,Parliament,"['1254875144']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305717&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32956 +Andrea Vallascas,"4736, 10926",105,,106,Parliament,"['1386423176']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306034&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32956 +Carolina Maria Varchi,4738,104,,106,Parliament,"['425811911']",FRATELLI DITALIA,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307400&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32630 +Adriano Varrica,4739,105,,106,Parliament,"['375152696']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307386&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32956 +Franco Vazio,"4740, 10527",108,,106,Parliament,"['923413273']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305735&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32440 +Verini Walter,"4741, 10931",108,,106,Parliament,"['722386906189840384']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302774&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32440 +Giuseppina Versace,4742,107,,106,Parliament,"['447056150']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307598&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32610 +Giovanni Vianello,4743,105,,106,Parliament,"['821420941481799680']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307358&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32956 +Stefano Vignaroli,"4745, 10933",105,,106,Parliament,"['1107008174']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305798&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32956 +Villani Virginia,4746,105,,106,Parliament,"['1227564378']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307536&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32956 +Alessio Mattia Villarosa,"4747, 10934",105,,106,Parliament,"['1908166152']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306091&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32956 +Gianluca Vinci,4748,106,,106,Parliament,"['924585253783695360']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307334&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32720 +Antonio Viscomi,4749,108,,106,Parliament,"['1001359057']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307730&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32440 +Catello Vitiello,4750,109,,106,Parliament,"['1017694513966575616']","MISTO, MAIE-MOVIMENTO ASSOCIATIVO ITALIANI ALLESTERO",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307196&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24, +Elio Vito,"10592, 4751","491, 107",,106,Parliament,"['1557514573']","FORZA ITALIA - BERLUSCONI PRESIDENTE, FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE",https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=34730&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=V, https://www.camera.it/leg17/28?lettera=V",,Italy,12,"23, 24",32610 +Gloria Vizzini,4753,105,,106,Parliament,"['732319027']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307252&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32956 +Raffaele Volpi,4755,106,,106,Parliament,"['3036616924']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=302770&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=V,,Italy,12,24,32720 +Alessandro Zan,"4756, 10542",108,,106,Parliament,"['1022254674']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=306272&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=Z, https://www.camera.it/leg17/28?lettera=Z",,Italy,12,"23, 24",32440 +Federica Zanella,4757,107,,106,Parliament,"['596497608']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307650&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=Z,,Italy,12,24,32610 +Pierantonio Zanettin,4758,107,,106,Parliament,"['499911132']",FORZA ITALIA - BERLUSCONI PRESIDENTE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=300271&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=Z,,Italy,12,24,32610 +Davide Zanichelli,4760,105,,106,Parliament,"['51687675']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307326&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=Z,,Italy,12,24,32956 +Diego Zardini,"10461, 4762",108,,106,Parliament,"['442677409']",PARTITO DEMOCRATICO,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305640&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=Z, https://www.camera.it/leg17/28?lettera=Z",,Italy,12,"23, 24",32440 +Edoardo Ziello,4765,106,,106,Parliament,"['1335045720']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307143&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=Z,,Italy,12,24,32720 +Eugenio Zoffili,4766,106,,106,Parliament,"['381443107']",LEGA - SALVINI PREMIER,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=307616&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,https://www.camera.it/leg18/28?lettera=Z,,Italy,12,24,32720 +Alberto Zolezzi,"4767, 10939",105,,106,Parliament,"['1712358318']",MOVIMENTO 5 STELLE,https://documenti.camera.it/apps/commonServices/getDocumento.ashx?sezione=deputati&tipoDoc=schedaDeputato&idlegislatura=18&idPersona=305598&tipoAttivita=&tipoVisAtt=&tipoPersona=,,,,"https://www.camera.it/leg18/28?lettera=Z, https://www.camera.it/leg17/28?lettera=Z",,Italy,12,"23, 24",32956 +Björn Gunnarsson Leví,4770,116,,118,Parliament,"['517182045']",Pirate Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15952 +Albertína Elíasdóttir Friðbjörg,4771,117,,118,Parliament,"['30751827']",The Social Democratic Alliance,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15328 +Andrés Ingi Jónsson,4772,118,,118,Parliament,"['101527317']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Arna Sigurbjörnsdóttir Áslaug,4773,119,,118,Parliament,"['286420722']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Daðason Einar Ásmundur,4774,120,,118,Parliament,"['769236254']",Progressive Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15810 +Bjarkey Gunnarsdóttir Olsen,4775,118,,118,Parliament,"['1254542852']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Benediktsson Bjarni,"4777, 4776","121, 119",,118,Parliament,"['4023814749', '96155186']","Independence Party, Prime Minister",,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Guðlaugur Þór Þórðarson,4778,119,,118,Parliament,"['40869200']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Bragi Gunnar Sveinsson,4779,122,,118,Parliament,"['509456374']",Centre Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26, +Halldóra Mogensen,4780,116,,118,Parliament,"['766660028']",Pirate Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15952 +Friðriksson Hanna Katrín,4781,123,,118,Parliament,"['3538531283']",Reform,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26, +Gunnarsson Helgi Hrafn,4782,116,,118,Parliament,"['200247755']",Pirate Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15952 +Inga Sæland,4783,124,,118,Parliament,"['985888612410675201']",People's Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15220 +Gunnarsson Jón,4784,119,,118,Parliament,"['741283230620519808']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Jón Steindór Valdimarsson,4785,123,,118,Parliament,"['108604619']",Reform,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26, +Jón Ólafsson Þór,4786,116,,118,Parliament,"['30362849']",Pirate Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15952 +Jakobsdóttir Katrín,4787,118,,118,Parliament,"['719555092911931392']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Júlíusson Kristján Þór,4788,119,,118,Parliament,"['1063900742']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Alfreðsdóttir Lilja,4789,120,,118,Parliament,"['722367883964194816']",Progressive Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15810 +Lilja Magnúsdóttir Rafney,4790,118,,118,Parliament,"['2892090209']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Anna Líneik Sævarsdóttir,4791,120,,118,Parliament,"['535428072']",Progressive Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15810 +Magnússon Páll,4792,119,,118,Parliament,"['2475389246']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +G. Harðardóttir Oddný,4793,117,,118,Parliament,"['2657353852']",The Social Democratic Alliance,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15328 +Björn Kárason Óli,4794,119,,118,Parliament,"['408722779']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Björk Brynjólfsdóttir Rósa,4795,118,,118,Parliament,"['1928183623']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Andersen Sigríður Á.,4796,119,,118,Parliament,"['717809882997633024']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Davíð Gunnlaugsson Sigmundur,4797,122,,118,Parliament,"['231054442']",Centre Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26, +Ingi Jóhannsson Sigurður,4798,120,,118,Parliament,"['2469413906']",Progressive Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15810 +Mccarthy Smári,4799,116,,118,Parliament,"['18031814']",Pirate Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15952 +Steinunn Árnadóttir Þóra,4800,118,,118,Parliament,"['3303746463']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Sunna Ævarsdóttir Þórhildur,4801,116,,118,Parliament,"['2214243421']",Pirate Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15952 +Svandís Svavarsdóttir,4802,118,,118,Parliament,"['74680446']",Left-Green Movement,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15111 +Gunnarsdóttir K. Þorgerður,4803,123,,118,Parliament,"['2277506913']",Reform,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26, +Vilhjálmur Árnason,4804,119,,118,Parliament,"['423755971']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Willum Þór Þórsson,4805,120,,118,Parliament,"['918159232830189568']",Progressive Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15810 +Bergþór Ólason,4810,122,,118,Parliament,"['1271063725']",Centre Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26, +Brynjar Níelsson,4814,119,,118,Parliament,"['1005094112532590592']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Brjánsson Guðjón S.,4815,117,,118,Parliament,"['769630914678780032']",The Social Democratic Alliance,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15328 +Gylfadóttir Kolbrún R. Þórdís,4832,119,,118,Parliament,"['2197764102']",Independence Party,,,,,https://www.althingi.is/altext/cv/en/,,Iceland,10,26,15620 +Adams Gerry,4834,125,,127,Parliament,"['245320407']",Sinn Féin,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2280&ConstID=139,,,Louth,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53951 +Aylward Bobby,4835,126,,127,Parliament,"['3072008153']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2172&ConstID=20,,,Carlow-Kilkenny,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Bailey Maria,4836,127,,127,Parliament,"['2823032296']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2421&ConstID=97,,,Dún Laoghaire,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Barrett Sean,4837,127,,127,Parliament,"['262199169']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=26&ConstID=97,,,Dún Laoghaire,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Barry Mick,"4838, 16455",128,,127,Parliament,"['2575040162']",Solidarity - People Before Profit,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2413&ConstID=39, https://www.oireachtas.ie/en/members/member/Mick-Barry.D.2016-10-03/",,Cork North-Central,Cork North-Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53231 +Barrett Boyd Richard,"4839, 16429",128,,127,Parliament,"['236377912']",Solidarity - People Before Profit,"https://www.oireachtas.ie/en/members/member/Richard-Boyd-Barrett.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2285&ConstID=97",,Dún Laoghaire,Dún Laoghaire,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53231 +Brady John,"4840, 16491","125, 7",,127,Parliament,"['229431792']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2430&ConstID=184, https://www.oireachtas.ie/en/members/member/John-Brady.D.2016-10-03/",,Wicklow,Wicklow,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Breathnach Declan,4842,126,,127,Parliament,"['235296623']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2450&ConstID=139,,,Louth,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Breen Pat,4843,127,,127,Parliament,"['29163101']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1766&ConstID=245,,,Clare,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Brophy Colm,"4844, 16536",127,,127,Parliament,"['186394987']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2427&ConstID=93, https://www.oireachtas.ie/en/members/member/Colm-Brophy.D.2016-10-03/",,Dublin South-West,Dublin South-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Broughan Tommy,4845,129,,127,Parliament,"['80267704']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=106&ConstID=241,,,Dublin Bay North,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Browne James,"16503, 4846",126,,127,Parliament,"['319686489']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/James-Browne.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2443&ConstID=181",,Wexford,Wexford,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Bruton Richard,"16428, 4847",127,,127,Parliament,"['237376611']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=119&ConstID=241, https://www.oireachtas.ie/en/members/member/Richard-Bruton.S.1981-10-08/",,Dublin Bay North,Dublin Bay North,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Buckley Pat,"16443, 4848","125, 7",,127,Parliament,"['725582418615373824']",Sinn Féin,"https://www.oireachtas.ie/en/members/member/Pat-Buckley.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2409&ConstID=34",,Cork East,Cork East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Burke Peter,"4849, 16432",127,,127,Parliament,"['242365407']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Peter-Burke.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2457&ConstID=137",,Longford-Westmeath,Longford -Westmeath,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Burton Joan,4850,130,,127,Parliament,"['77184360']",Labour Party,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=133&ConstID=96,,,Dublin West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53320 +Byrne Catherine,4852,127,,127,Parliament,"['3881771789']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2186&ConstID=91,,,Dublin South-Central,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Byrne Thomas,"16410, 4853",126,,127,Parliament,"['32922034']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Thomas-Byrne.D.2007-06-14/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2203&ConstID=218",,Meath East,Meath East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Cahill Jackie,"16504, 4854",126,,127,Parliament,"['3091852973']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2446&ConstID=231, https://www.oireachtas.ie/en/members/member/Jackie-Cahill.D.2016-10-03/",,Tipperary,Tipperary,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Calleary Dara,"4855, 16531",126,,127,Parliament,"['67268150']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2201&ConstID=141, https://www.oireachtas.ie/en/members/member/Dara-Calleary.D.2007-06-14/",,Mayo,Mayo,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Canney Sean,"4856, 16421","2, 129",,127,Parliament,"['2333746914']",Independent,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2432&ConstID=104, https://www.oireachtas.ie/en/members/member/Seán-Canney.D.2016-10-03/",,Galway East,Galway East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Cannon Ciaran,"16538, 4857",127,,127,Parliament,"['20586381']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Ciaran-Cannon.S.2007-07-23/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2253&ConstID=104",,Galway East,Galway East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Carey Joe,"4858, 16495",127,,127,Parliament,"['135877820']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2161&ConstID=245, https://www.oireachtas.ie/en/members/member/Joe-Carey.D.2007-06-14/",,Clare,Clare,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Casey Pat,4859,126,,127,Parliament,"['85696758']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2431&ConstID=184,,,Wicklow,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Cassells Shane,4860,126,,127,Parliament,"['3332899594']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2448&ConstID=219,,,Meath West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Chambers Lisa,4861,126,,127,Parliament,"['463302310']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2449&ConstID=141,,,Mayo,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Chambers Jack,"4862, 16505",126,,127,Parliament,"['192260630']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Jack-Chambers.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2429&ConstID=96",,Dublin West,Dublin West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Collins Niall,"16452, 4864",126,,127,Parliament,"['172749267']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2205&ConstID=235, https://www.oireachtas.ie/en/members/member/Niall-Collins.D.2007-06-14/",,Limerick County,Limerick County,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Collins Joan,"4865, 16496",131,,127,Parliament,"['361335767']",Independents 4 Change,"https://www.oireachtas.ie/en/members/member/Joan-Collins.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2292&ConstID=91",,Dublin South-Central,Dublin South-Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53981 +Catherine Connolly,"4866, 16546","2, 129",,127,Parliament,"['196551540']",Independent,"https://www.oireachtas.ie/en/members/member/Catherine-Connolly.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2435&ConstID=108",,Galway West,Galway West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Coppinger Ruth,4867,128,,127,Parliament,"['2529641024']",Solidarity - People Before Profit,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2398&ConstID=96,,,Dublin West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53231 +Corcoran Kennedy Marcella,4868,127,,127,Parliament,"['519212054']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2339&ConstID=234,,,Offaly,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Coveney Simon,"16415, 4869",127,,127,Parliament,"['118999126']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Simon-Coveney.D.1998-10-23/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=250&ConstID=43",,Cork South-Central,Cork South-Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Barry Cowen,"16557, 4870",126,,127,Parliament,"['432054563']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Barry-Cowen.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2340&ConstID=234",,Laois-Offaly,Offaly,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Creed Michael,"4871, 16464",127,,127,Parliament,"['386584224']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=259&ConstID=41, https://www.oireachtas.ie/en/members/member/Michael-Creed.D.1989-06-29/",,Cork North-West,Cork North-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Crowe Sean,"4872, 16420","125, 7",,127,Parliament,"['1097860584']",Sinn Féin,"https://www.oireachtas.ie/en/members/member/Seán-Crowe.D.2002-06-06/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1774&ConstID=93",,Dublin South-West,Dublin South-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Cullinane David,"4873, 16528","125, 7",,127,Parliament,"['66682393']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2357&ConstID=176, https://www.oireachtas.ie/en/members/member/David-Cullinane.S.2011-05-25/",,Waterford,Waterford,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Curran John,4874,126,,127,Parliament,"['4823508069']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1777&ConstID=83,,,Dublin Mid West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Clare Daly,"12828, 4875","131, 194",28,"127, 265",Parliament,"['385326089']","Independent, Independents 4 Change",https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2296&ConstID=239,,Ireland,Dublin Fingal,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,"Ireland, European Parliament","27, 11","43, 25",53981 +Daly Jim,4876,127,,127,Parliament,"['258136924']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2328&ConstID=45,,,Cork South-West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +D'Arcy Michael W.,4877,127,,127,Parliament,"['22924705']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2208&ConstID=181,,,Wexford,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Deering Patrick,4879,127,,127,Parliament,"['492632023']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2290&ConstID=20,,,Carlow-Kilkenny,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Doherty Pearse,"4880, 16433","125, 7",,127,Parliament,"['68690605']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2216&ConstID=242, https://www.oireachtas.ie/en/members/member/Pearse-Doherty.S.2007-07-23/",,Donegal,Donegal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Doherty Regina,4881,127,,127,Parliament,"['32845471']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2295&ConstID=218,,,Meath East,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Donnelly Stephen,"4882, 16412",126,,127,Parliament,"['237826875']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2336&ConstID=184, https://www.oireachtas.ie/en/members/member/Stephen-Donnelly.D.2011-03-09/",,Wicklow,Wicklow,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Donohoe Paschal,"16444, 4883",127,,127,Parliament,"['19735329']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2244&ConstID=73, https://www.oireachtas.ie/en/members/member/Paschal-Donohoe.S.2007-07-23/",,Dublin Central,Dublin Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Dooley Timmy,4884,126,,127,Parliament,"['249719099']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2015&ConstID=245,,,Clare,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Andrew Doyle,4885,127,,127,Parliament,"['245434042']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2170&ConstID=184,,,Wicklow,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Bernard Durkan,"4886, 16556",127,,127,Parliament,"['228774722']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=355&ConstID=116, https://www.oireachtas.ie/en/members/member/Bernard-Durkan.D.1981-06-30/",,Kildare North,Kildare North,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Damien English,"4888, 16533",127,,127,Parliament,"['63680662']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Damien-English.D.2002-06-06/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1781&ConstID=219",,Meath West,Meath West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Alan Farrell,"4889, 16561",127,,127,Parliament,"['39472243']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Alan-Farrell.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2297&ConstID=239",,Dublin Fingal,Dublin Fingal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Ferris Martin,4890,125,,127,Parliament,"['3190260429']",Sinn Féin,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1783&ConstID=237,,,Kerry,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53951 +Fitzgerald Frances,"4891, 12920","127, 190",29,"127, 205",Parliament,"['111338251']","Fine Gael Party, Fine Gael",https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=401&ConstID=83,,Ireland,Dublin Mid West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,"Ireland, European Parliament","27, 11","43, 25", +Fitzmaurice Michael,"4892, 16463","2, 129",,127,Parliament,"['2914205799']",Independent,"https://www.oireachtas.ie/en/members/member/Michael-Fitzmaurice.D.2014-10-10/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2400&ConstID=233",,Roscommon-Galway,Roscommon-Galway,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Fitzpatrick Peter,"4893, 16431","127, 2",,127,Parliament,"['244156314']","Independent, Fine Gael","https://www.oireachtas.ie/en/members/member/Peter-Fitzpatrick.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2282&ConstID=139",,Louth,Louth,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Charles Flanagan,"16543, 4894",127,,127,Parliament,"['87471023']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Charles-Flanagan.D.1987-03-10/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=414&ConstID=236",,Laois-Offaly,Laois,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Fleming Sean,"4895, 16419",126,,127,Parliament,"['960867485623963649']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=418&ConstID=236, https://www.oireachtas.ie/en/members/member/Seán-Fleming.D.1997-06-26/",,Laois-Offaly,Laois,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Funchion Kathleen,"16484, 4896","125, 7",,127,Parliament,"['3004038711']",Sinn Féin,"https://www.oireachtas.ie/en/members/member/Kathleen-Funchion.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2410&ConstID=20",,Carlow-Kilkenny,Carlow-Kilkenny,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Cope Gallagher Pat The,4897,126,,127,Parliament,"['4875038871']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=446&ConstID=242,,,Donegal,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Brendan Griffin,"16555, 4899",127,,127,Parliament,"['192341330']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Brendan-Griffin.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2333&ConstID=237",,Kerry,Kerry,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Halligan John,4900,129,,127,Parliament,"['116547221']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2315&ConstID=176,,,Waterford,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Harris Simon,"4901, 16414",127,,127,Parliament,"['21117425']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2338&ConstID=184, https://www.oireachtas.ie/en/members/member/Simon-Harris.D.2011-03-09/",,Wicklow,Wicklow,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Harty Michael,4902,129,,127,Parliament,"['4794727988']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2412&ConstID=245,,,Clare,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Haughey Sean,"4903, 16418",126,,127,Parliament,"['507910843']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Seán-Haughey.S.1987-04-25/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=492&ConstID=241",,Dublin Bay North,Dublin Bay North,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Healy Seamus,4904,129,,127,Parliament,"['392883494']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1750&ConstID=231,,,Tipperary,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Danny Healy Rae,4905,129,,127,Parliament,"['4928217519']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2437&ConstID=237,,,Kerry,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Healy-Rae Michael,"4906, 16462","2, 129",,127,Parliament,"['346630615']",Independent,"https://www.oireachtas.ie/en/members/member/Michael-Healy-Rae.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2332&ConstID=237",,Kerry,Kerry,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Heydon Martin,"4907, 16473",127,,127,Parliament,"['137363410']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2286&ConstID=117, https://www.oireachtas.ie/en/members/member/Martin-Heydon.D.2011-03-09/",,Kildare South,Kildare South,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Brendan Howlin,"16554, 4908","47, 130",,127,Parliament,"['4205955087']",Labour Party,"https://www.oireachtas.ie/en/members/member/Brendan-Howlin.S.1983-02-23/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=535&ConstID=181",,Wexford,Wexford,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25","64320, 53320" +Heather Humphreys,"4909, 16510",127,,127,Parliament,"['2791733978']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2308&ConstID=25, https://www.oireachtas.ie/en/members/member/Heather-Humphreys.D.2011-03-09/",,Cavan-Monaghan,Cavan-Monaghan,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Kehoe Paul,"16438, 4910",127,,127,Parliament,"['327886319']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1805&ConstID=181, https://www.oireachtas.ie/en/members/member/Paul-Kehoe.D.2002-06-06/",,Wexford,Wexford,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Billy Kelleher,"4911, 12789","126, 252",63,127,Parliament,"['524423189']","Fianna Fáil Party, Fianna Fáil",https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=565&ConstID=39,,Ireland,Cork North-Central,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,"Ireland, European Parliament","27, 11","43, 25",53714 +Alan Kelly,"16560, 4912","47, 130",,127,Parliament,"['116422140']",Labour Party,"https://www.oireachtas.ie/en/members/member/Alan-Kelly.S.2007-07-23/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2218&ConstID=231",,Tipperary,Tipperary,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25","64320, 53320" +Enda Kenny,4913,127,,127,Parliament,"['135514272']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=580&ConstID=141,,,Mayo,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Kenny Martin,"4914, 16472","125, 7",,127,Parliament,"['121090165']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2405&ConstID=232, https://www.oireachtas.ie/en/members/member/Martin-Kenny.D.2016-10-03/",,Sligo-Leitrim,Sligo-Leitrim,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Gino Kenny,"4915, 16511",128,,127,Parliament,"['23322325']",Solidarity - People Before Profit,"https://www.oireachtas.ie/en/members/member/Gino-Kenny.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2423&ConstID=83",,Dublin Mid-West,Dublin Mid West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53231 +Kyne Seán,4916,127,,127,Parliament,"['316306021']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2343&ConstID=108,,,Galway West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +John Lahart,"16490, 4917",126,,127,Parliament,"['85170762']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/John-Lahart.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2426&ConstID=93",,Dublin South-West,Dublin South-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +James Lawless,"4918, 16502",126,,127,Parliament,"['18492194']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2439&ConstID=116, https://www.oireachtas.ie/en/members/member/James-Lawless.D.2016-10-03/",,Kildare North,Kildare North,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Lowry Michael,4919,129,,127,Parliament,"['1023836365258190720']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=645&ConstID=231,,,Tipperary,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Macsharry Marc,"16478, 4920",126,,127,Parliament,"['243632271']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Marc-MacSharry.S.2002-09-12/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2010&ConstID=232",,Sligo-Leitrim,Sligo-Leitrim,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Josepha Madigan,"16485, 4921",127,,127,Parliament,"['2154117425']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2424&ConstID=238, https://www.oireachtas.ie/en/members/member/Josepha-Madigan.D.2016-10-03/",,Dublin Rathdown,Dublin Rathdown,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Catherine Martin,"4922, 16545","13, 132",,127,Parliament,"['1179033048']",Green Party,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2425&ConstID=238, https://www.oireachtas.ie/en/members/member/Catherine-Martin.D.2016-10-03/",,Dublin Rathdown,Dublin Rathdown,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25","51110, 53110" +Martin Micheál,"16456, 4923",126,,127,Parliament,"['114007914']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=693&ConstID=43, https://www.oireachtas.ie/en/members/member/Micheál-Martin.D.1989-06-29/",,Cork South-Central,Cork South-Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Charlie Mcconalogue,"4924, 16542",126,,127,Parliament,"['197897890']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2319&ConstID=242, https://www.oireachtas.ie/en/members/member/Charlie-McConalogue.D.2011-03-09/",,Donegal,Donegal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Lou Mary Mcdonald,"4925, 16470","125, 7",,127,Parliament,"['148872468']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2298&ConstID=73, https://www.oireachtas.ie/en/members/member/Mary-Lou-McDonald.D.2011-03-09/",,Dublin Central,Dublin Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Helen Mcentee,"4926, 16509",127,,127,Parliament,"['38000023']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Helen-McEntee.D.2013-03-27/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2394&ConstID=218",,Meath East,Meath East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Mcgrath Michael,"4927, 16460",126,,127,Parliament,"['2805902511']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2173&ConstID=43, https://www.oireachtas.ie/en/members/member/Michael-McGrath.D.2007-06-14/",,Cork South-Central,Cork South-Central,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Mattie Mcgrath,"4928, 16467","2, 129",,127,Parliament,"['121375039']",Independent,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2197&ConstID=231, https://www.oireachtas.ie/en/members/member/Mattie-McGrath.D.2007-06-14/",,Tipperary,Tipperary,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Finian Mcgrath,4929,129,,127,Parliament,"['417312511']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1822&ConstID=241,,,Dublin Bay North,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +John Mcguinness,"4930, 16489",126,,127,Parliament,"['248901045']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=741&ConstID=20, https://www.oireachtas.ie/en/members/member/John-McGuinness.D.1997-06-26/",,Carlow-Kilkenny,Carlow-Kilkenny,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Joe Mchugh,"4931, 16493",127,,127,Parliament,"['236912210']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Joe-McHugh.S.2002-09-12/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2018&ConstID=242",,Donegal,Donegal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Mcloughlin Tony,4932,127,,127,Parliament,"['2791515085']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2325&ConstID=232,,,Sligo-Leitrim,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Denise Mitchell,"4933, 16525","125, 7",,127,Parliament,"['3309194513']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2455&ConstID=241, https://www.oireachtas.ie/en/members/member/Denise-Mitchell.D.2016-10-03/",,Dublin Bay North,Dublin Bay North,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Mary Mitchell O'Connor,4934,127,,127,Parliament,"['92521829']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2284&ConstID=97,,,Dún Laoghaire,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Boxer Kevin Moran,4935,129,,127,Parliament,"['752597634767093760']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2454&ConstID=137,,,Longford -Westmeath,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Aindrias Moynihan,"16563, 4936",126,,127,Parliament,"['4047353597']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Aindrias-Moynihan.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2414&ConstID=41",,Cork North-West,Cork North-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Michael Moynihan,"4937, 16458",126,,127,Parliament,"['3964447823']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Michael-Moynihan.D.1997-06-26/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=786&ConstID=41",,Cork North-West,Cork North-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Imelda Munster,"16506, 4938","125, 7",,127,Parliament,"['1676201586']",Sinn Féin,"https://www.oireachtas.ie/en/members/member/Imelda-Munster.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2451&ConstID=139",,Louth,Louth,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Eugene Murphy,4939,126,,127,Parliament,"['2986233633']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2444&ConstID=233,,,Roscommon-Galway,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Murphy Paul,"16436, 4940",128,,127,Parliament,"['270850017']",Solidarity - People Before Profit,"https://www.oireachtas.ie/en/members/member/Paul-Murphy.D.2014-10-10/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2401&ConstID=93",,Dublin South-West,Dublin South-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53231 +Eoghan Murphy,"4941, 16518",127,,127,Parliament,"['109986944']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Eoghan-Murphy.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2288&ConstID=240",,Dublin Bay South,Dublin Bay South,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Dara Murphy,4942,127,,127,Parliament,"['237794265']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2320&ConstID=39,,,Cork North-Central,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Catherine Murphy,"4943, 16544",133,,127,Parliament,"['190987689']",Social Democrats,"https://www.oireachtas.ie/en/members/member/Catherine-Murphy.D.2005-03-11/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2138&ConstID=116",,Kildare North,Kildare North,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53321 +Margaret Murphy O'Mahony,4944,126,,127,Parliament,"['2207936117']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2416&ConstID=45,,,Cork South-West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Denis Naughten,"16526, 4945","2, 129",,127,Parliament,"['21811630']",Independent,"https://www.oireachtas.ie/en/members/member/Denis-Naughten.S.1997-01-28/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=809&ConstID=233",,Roscommon-Galway,Roscommon-Galway,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Hildegarde Naughton,"16508, 4946",127,,127,Parliament,"['181303066']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Hildegarde-Naughton.S.2013-07-19/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2395&ConstID=108",,Galway West,Galway West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Neville Tom,4947,127,,127,Parliament,"['199535726']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2452&ConstID=235,,,Limerick County,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Carol Nolan,"4948, 16549","125, 2",,127,Parliament,"['3360716968']","Sinn Féin, Independent","https://www.oireachtas.ie/en/members/member/Carol-Nolan.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2447&ConstID=234",,Laois-Offaly,Offaly,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25","0, 53951" +Broin Eoin Á,"16517, 4950","125, 7",,127,Parliament,"['166173280']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2422&ConstID=83, https://www.oireachtas.ie/en/members/member/Eoin-Ó-Broin.D.2016-10-03/",,Dublin Mid-West,Dublin Mid West,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53951 +Cuív Éamon Ó,"16521, 4952",126,,127,Parliament,"['81844092']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Éamon-Ó-Cuív.S.1989-10-01/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=852&ConstID=108",,Galway West,Galway West,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53714 +Fearghaál Seán Á,4953,134,,127,Parliament,"['246820781']",Ceann Comhairle,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1827&ConstID=117,,,Kildare South,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Donnchadh Laoghaire Á,"16523, 4954","125, 7",,127,Parliament,"['20936855']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2415&ConstID=43, https://www.oireachtas.ie/en/members/member/Donnchadh-Ó-Laoghaire.D.2016-10-03/",,Cork South-Central,Cork South-Central,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53951 +Aengus Snodaigh Á,"4955, 16564","125, 7",,127,Parliament,"['82645739']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1829&ConstID=91, https://www.oireachtas.ie/en/members/member/Aengus-Ó-Snodaigh.D.2002-06-06/",,Dublin South-Central,Dublin South-Central,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53951 +Darragh O'Brien,"4956, 16530",126,,127,Parliament,"['195697781']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Darragh-O'Brien.D.2007-06-14/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2178&ConstID=239",,Dublin Fingal,Dublin Fingal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Jonathan O'Brien,4957,125,,127,Parliament,"['219454029']",Sinn Féin,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2322&ConstID=39,,,Cork North-Central,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53951 +Jim O'Callaghan,"4958, 16497",126,,127,Parliament,"['2845365802']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Jim-O'Callaghan.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2419&ConstID=240",,Dublin Bay South,Dublin Bay South,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Kate O'Connell,4959,127,,127,Parliament,"['1871710310']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2418&ConstID=240,,,Dublin Bay South,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +O'Dea Willie,"4960, 16405",126,,127,Parliament,"['211231464']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=854&ConstID=129, https://www.oireachtas.ie/en/members/member/Willie-O'Dea.D.1982-03-09/",,Limerick City,Limerick City,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +O'Donovan Patrick,"16440, 4961",127,,127,Parliament,"['70205816']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2316&ConstID=235, https://www.oireachtas.ie/en/members/member/Patrick-O'Donovan.D.2011-03-09/",,Limerick County,Limerick County,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Fergus O'Dowd,"4962, 16516",127,,127,Parliament,"['22983594']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Fergus-O'Dowd.S.1997-09-17/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1833&ConstID=139",,Louth,Louth,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Kevin O'Keeffe,4963,126,,127,Parliament,"['3390714712']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2407&ConstID=34,,,Cork East,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Fiona O'Loughlin,4964,126,,127,Parliament,"['23512243']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2441&ConstID=117,,,Kildare South,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Louise O'Reilly,"16481, 4965","125, 7",,127,Parliament,"['3123373653']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2420&ConstID=239, https://www.oireachtas.ie/en/members/member/Louise-O'Reilly.D.2016-10-03/",,Dublin Fingal,Dublin Fingal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Frank O'Rourke,4966,126,,127,Parliament,"['4873988716']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2440&ConstID=116,,,Kildare North,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Jan O'Sullivan,4967,130,,127,Parliament,"['78019662']",Labour Party,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1754&ConstID=129,,,Limerick City,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53320 +Maureen O'Sullivan,4968,129,,127,Parliament,"['249347954']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2274&ConstID=73,,,Dublin Central,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Penrose Willie,4969,130,,127,Parliament,"['78021401']",Labour Party,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=973&ConstID=137,,,Longford -Westmeath,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53320 +John Paul Phelan,"4970, 16488",127,,127,Parliament,"['19964133']",Fine Gael,"https://www.oireachtas.ie/en/members/member/John-Paul-Phelan.S.2002-09-12/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2004&ConstID=20",,Carlow-Kilkenny,Carlow-Kilkenny,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Pringle Thomas,"4971, 16408","2, 129",,127,Parliament,"['253184868']",Independent,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2324&ConstID=242, https://www.oireachtas.ie/en/members/member/Thomas-Pringle.D.2011-03-09/",,Donegal,Donegal,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",0 +Maurice Quinlivan,"16466, 4972","125, 7",,127,Parliament,"['212555476']",Sinn Féin,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2453&ConstID=129, https://www.oireachtas.ie/en/members/member/Maurice-Quinlivan.D.2016-10-03/",,Limerick City,Limerick City,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53951 +Anne Rabbitte,"4973, 16559",126,,127,Parliament,"['2227385384']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2436&ConstID=104, https://www.oireachtas.ie/en/members/member/Anne-Rabbitte.D.2016-10-03/",,Galway East,Galway East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Michael Ring,"4974, 16457",127,,127,Parliament,"['960474811142213633', '960474811142213632']",Fine Gael,"https://www.oireachtas.ie/en/members/member/Michael-Ring.D.1994-06-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1000&ConstID=141",,Mayo,Mayo,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7",,Ireland,11,"54, 25",0 +Noel Rock,4975,127,,127,Parliament,"['17210507']",Fine Gael,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2406&ConstID=86,,,Dublin North-West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Nathaniel Peter Ross Shane,4976,129,,127,Parliament,"['239444226']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1974&ConstID=238,,,Dublin Rathdown,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Eamon Ryan,"4977, 16520","13, 132",,127,Parliament,"['22005625']",Green Party,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2028&ConstID=240, https://www.oireachtas.ie/en/members/member/Eamon-Ryan.D.2002-06-06/",,Dublin Bay South,Dublin Bay South,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25","51110, 53110" +Brendan Ryan,4978,130,,127,Parliament,"['244026999']",Labour Party,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2251&ConstID=239,,,Dublin Fingal,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53320 +Eamon Scanlon,4979,126,,127,Parliament,"['4382456055']",Fianna Fáil,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1998&ConstID=232,,,Sligo-Leitrim,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53714 +Sean Sherlock,"16416, 4980","47, 130",,127,Parliament,"['74979783']",Labour Party,"https://www.oireachtas.ie/en/members/member/Seán-Sherlock.D.2007-06-14/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2163&ConstID=34",,Cork East,Cork East,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25","64320, 53320" +Ráisán Shortall,"4981, 16424",133,,127,Parliament,"['78026748']",Social Democrats,"https://www.oireachtas.ie/en/members/member/Róisín-Shortall.D.1992-12-14/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1041&ConstID=86",,Dublin North-West,Dublin North-West,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53321 +Brendan Smith,"4982, 16553",126,,127,Parliament,"['430714461']",Fianna Fáil,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1044&ConstID=25, https://www.oireachtas.ie/en/members/member/Brendan-Smith.D.1992-12-14/",,Cavan-Monaghan,Cavan-Monaghan,"https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem",,Ireland,11,"54, 25",53714 +Brád Smith,4983,128,,127,Parliament,"['976435563661275136']",Solidarity - People Before Profit,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2456&ConstID=91,,,Dublin South-Central,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25,53231 +Niamh Smyth,"16451, 4984",126,,127,Parliament,"['740126187192786944']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Niamh-Smyth.D.2016-10-03/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2411&ConstID=25",,Cavan-Monaghan,Cavan-Monaghan,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53714 +Brian Stanley,"16551, 4985","125, 7",,127,Parliament,"['386170620']",Sinn Féin,"https://www.oireachtas.ie/en/members/member/Brian-Stanley.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2341&ConstID=236",,Laois-Offaly,Laois,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53951 +David Stanton,"16527, 4986",127,,127,Parliament,"['104578228']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=1053&ConstID=34, https://www.oireachtas.ie/en/members/member/David-Stanton.D.1997-06-26/",,Cork East,Cork East,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",0 +Peadar Táibán,"16434, 4987","125, 606",,127,Parliament,"['48667895']","Sinn Féin, Aontú","https://www.oireachtas.ie/en/members/member/Peadar-Tóibín.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2304&ConstID=219",,Meath West,Meath West,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53951 +Robert Troy,"4988, 16426",126,,127,Parliament,"['330904433']",Fianna Fáil,"https://www.oireachtas.ie/en/members/member/Robert-Troy.D.2011-03-09/, https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2305&ConstID=137",,Longford-Westmeath,Longford -Westmeath,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",53714 +Leo Varadkar,"16482, 4989",127,,127,Parliament,"['229466877']",Fine Gael,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2192&ConstID=96, https://www.oireachtas.ie/en/members/member/Leo-Varadkar.D.2007-06-14/",,Dublin West,Dublin West,"https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8",,Ireland,11,"54, 25",0 +Mick Wallace,"4990, 13203","131, 557",28,127,Parliament,"['248801998']","Independents for change, Independents 4 Change",https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2310&ConstID=181,,Ireland,Wexford,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,"Ireland, European Parliament","27, 11","43, 25",53981 +Katherine Zappone,4991,129,,127,Parliament,"['360540613']",Independent,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&MemberID=2392&ConstID=93,,,Dublin South-West,https://www.oireachtas.ie/members-hist/default.asp?housetype=0&HouseNum=32&disp=mem,,Ireland,11,25, +Dragasakis Ioannis,"4992, 13503",135,,137,Parliament,"['806736306']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=69c27f82-03da-43d9-8bc7-c52051d0f176,,State,"V2' DYTIKOU TOMEA ATHINON, State",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23,,Greece,9,"47, 27",34020 +Balafas Ioannis,"13468, 4993",135,,137,Parliament,"['1728198787']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=66eb2f90-0d8b-43c1-b6c4-a43400fc077d,,Athens,"V3΄NOTIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=2,,Greece,9,"47, 27",34020 +Ioannis Maniatis,4994,136,,137,Parliament,"['484814497']",DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e92b1ddc-91a6-4155-ad23-fbf8983d0d8a,,Argolida,Argolida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a,,Greece,9,27,34213 +Ioannis Vroutsis,"13724, 4995",137,,137,Parliament,"['3064827747']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c8e85d14-c129-42af-a3aa-e70be827643f,,Cyclades,Cyclades,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=6,,Greece,9,"47, 27",34511 +Kikilias Vasileios,4996,137,,137,Parliament,"['54283324']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=717bc546-c5fd-42dd-beb7-515af3658b83,,Athens,Athens A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,27,34511 +Tsirkas Vasileios,4997,135,,137,Parliament,"['2294276942']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=56e6511e-3d38-4767-88b4-a43401593bad,,Arta,Arta,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=4,,Greece,9,27,34020 +Theodora Tzakri,"4998, 13697",135,,137,Parliament,"['413080707']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fe5bd1fe-e32f-4c4e-a947-fd1b94f83413,,Pella,Pella,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=12,,Greece,9,"47, 27",34020 +Ioannis Tsironis,4999,135,,137,Parliament,"['711936107601137664']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1627ed80-df12-45a6-87d2-a52500ea9e3d,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=3,,Greece,9,27,34020 +Efkleidis Tsakalotos,"13690, 5000",135,,137,Parliament,"['2975032769']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=94978a5c-ac45-4d1d-a7da-eebb0784b82e,,Athens,"V1΄ VOREIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23,,Greece,9,"47, 27",34020 +Alexandros Triantafyllidis,"5001, 13689",135,,137,Parliament,"['2662790664']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5e0215a5-a1f9-425a-99d5-a4340143221c,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=7,,Greece,9,"47, 27",34020 +Karaoglou Theodoros,"5002, 13547",137,,137,Parliament,"['393292109']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3748608f-bfb7-4ba7-8c4e-e0c99baff2ae,,Thessaloniki,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=5,,Greece,9,"47, 27",34511 +Fotiou Theano,"5003, 13512",135,,137,Parliament,"['631973249']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f84488ab-0af4-4198-964a-d251de81535a,,State,"V3΄NOTIOU TOMEA ATHINON, State",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23,,Greece,9,"47, 27",34020 +Giannakis Stergios,5004,137,,137,Parliament,"['1304901391']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=8b7b0a91-8133-431d-9e88-a434014e9fc8,,Preveza,Preveza,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7,,Greece,9,27,34511 +Stavros Theodorakis,5005,138,,137,Parliament,"['777915348335091712']",TO POTAMI (The River),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5ba81fc8-c613-4ebb-852b-a43401507d3d,,Chania,Chania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=da658473-5dd8-4eb5-a533-a434009ba461,,Greece,9,27,34340 +Lykoudis Spyridon,5006,138,,137,Parliament,"['2443536144']",TO POTAMI (The River),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=44ff305b-c7d5-4e88-8a56-853de721f35c,,Athens,Athens A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=da658473-5dd8-4eb5-a533-a434009ba461,,Greece,9,27,34340 +Sofia Voultepsi,"5007, 13722",137,,137,Parliament,"['404193258']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ce747fe0-bb29-4c3b-adb2-fa2d9a4b8324,,Athens,"V3΄NOTIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,"47, 27",34511 +(Simos) Kedikoglou Symeon,"13560, 5008",137,,137,Parliament,"['2748749053']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c2206e6b-48c9-412c-a777-23c8af8ce3f6,,Evia,Evia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=4,,Greece,9,"47, 27",34511 +(Sia) Anagnostopoulou Athanasia,"13446, 5009",135,,137,Parliament,"['2427879955']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=37813e8c-cd80-4326-a1a3-a43400d33d2a,,Achaia,Achaia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=4,,Greece,9,"47, 27",34020 +Famellos Sokratis,"5010, 13507",135,,137,Parliament,"['3034441257']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ba66f008-ae84-4d5a-ad10-a434014470a0,,Thessaloniki,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=8,,Greece,9,"47, 27",34020 +Anastasiadis Savvas,"13447, 5011",137,,137,Parliament,"['852566696']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5082921e-17ac-4d75-a63b-f799fa6722d7,,Thessaloniki,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=5,,Greece,9,"47, 27",34511 +Antonios Samaras,"13658, 5012",137,,137,Parliament,"['83656002']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f672b7d6-bee5-4cdd-9b79-a94ee171f53b,,Messinia,Messinia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7,,Greece,9,"47, 27",34511 +Marios Salmas,"5013, 13657",137,,137,Parliament,"['335179820']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4eff215a-1e00-4443-b009-c51640b14cf5,,Aitolo-Akarnania,"Aitolo-Akarnania, Aitoloαkarnania",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=3,,Greece,9,"47, 27",34511 +Panagiota Vrantza,5014,135,,137,Parliament,"['4894300966']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d0f17f88-3bd5-4bd3-9568-a52500f2539e,,Karditsa,Karditsa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=9,,Greece,9,27,34020 +(Panos) Panagiotis Skourletis,"13666, 5015",135,,137,Parliament,"['408566492']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=f7cf94b8-fe95-493d-ba06-a43400db9279,,Athens,"State, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=2,,Greece,9,"47, 27",34020 +Leventis Vasilis,5016,139,,137,Parliament,"['115001259']",UNION OF CENTRISTS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e2b76583-92c6-48d4-aec4-a52500efac61,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=071de048-5737-4bd7-8143-a52500a89ce9,,Greece,9,27,34410 +Konstantineas Petros,5017,135,,137,Parliament,"['1902564792']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=892c0af0-c4e0-406e-8d1a-a43400eba3cd,,Messinia,Messinia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=11,,Greece,9,27,34020 +Paylos Polakis,5018,135,,137,Parliament,"['2367424185']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fca68671-e503-463b-9f3f-a434013d5bb1,,Chania,Chania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=15,,Greece,9,27,34020 +Christos Pappas,5019,140,,137,Parliament,"['3354141345']",LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9f4826c4-0d51-4912-9920-bc667f5b7c24,,State,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8,,Greece,9,27,34720 +(Panos) Kammenos Panagiotis,5020,141,,137,Parliament,"['74543190']",ANEXARTITOI ELLINES (Independent Hellenes) National Patriotic Democratic Alliance,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=627c6800-82f2-4b66-83e6-3f8dcc78ee37,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=14fc8236-a545-4631-bebd-a435012f6f28,,Greece,9,27,34730 +Kefalogianni Olga,"13563, 5021",137,,137,Parliament,"['2365419054']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d5f08bed-96b4-4bba-8059-50f291212135,,Athens,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,"47, 27",34511 +Gerovasili Olga,"5022, 13518",135,,137,Parliament,"['2786227298']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=e14d5e43-6ac0-47e3-a5b4-633dfb423dd5,,Arta,Arta,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=3,,Greece,9,"47, 27",34020 +Oikonomou Vasileios,5023,137,,137,Parliament,"['770226983657701120']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1207bcdd-e71f-40f3-9876-df3e37f1f80f,,State,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,27,34511 +Kerameus Niki,"13568, 5024",137,,137,Parliament,"['435737814']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c7362b4e-73b1-49ee-bcc0-a4340151de8c,,State,"State, V1΄ VOREIOU TOMEA ATHINON",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,"47, 27",34511 +Kaklamanis Nikitas,"13535, 5025",137,,137,Parliament,"['72838721']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b222eb3e-adb2-476b-9d9e-72f3d4409e78,,Athens,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,"47, 27",34511 +Nikolaos Xydakis,5026,135,,137,Parliament,"['16888662']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9285b38f-6e20-452c-bbc5-a43400fcae7d,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=2,,Greece,9,27,34020 +Kotzias Nikolaos,5027,135,,137,Parliament,"['402920490']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=65f585a1-c051-4c48-8ca4-a52500a8f2f5,,State,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23,,Greece,9,27,34020 +- Dendias Georgios Nikolaos,"5028, 13497",137,,137,Parliament,"['236744081']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7b1e7cd5-7d35-4220-8c7d-cb298943e921,,Athens,"V3΄NOTIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,"47, 27",34511 +Miltiadis Varvitsiotis,"5029, 13709",137,,137,Parliament,"['60591084']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=70d59ef2-8b5e-488d-bc2b-0198c84393c1,,Athens,"V2' DYTIKOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,"47, 27",34511 +Meropi Tzoufi,"13701, 5030",135,,137,Parliament,"['3096944951']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=433e2a68-1b83-41cf-a6cb-a4340157d764,,Ioannina,Ioannina,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=8,,Greece,9,"47, 27",34020 +Georgios Mavrotas,5031,138,,137,Parliament,"['67947092']",TO POTAMI (The River),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=eeec284d-9521-4c4b-977c-a4340153d9b6,,Attica,Attica,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=da658473-5dd8-4eb5-a533-a434009ba461,,Greece,9,27,34340 +Bolaris Markos,5032,135,,137,Parliament,"['192332877']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=522b5d5d-e099-4857-9d9d-e894bdb24feb,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=7,,Greece,9,27,34020 +Katsis Marios,"5033, 13557",135,,137,Parliament,"['3325625573']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ec1f6d02-ee7f-46fd-a717-a43400ea4b96,,Thesprotia,Thesprotia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=7,,Greece,9,"47, 27",34020 +Dimitrios Mardas,5034,135,,137,Parliament,"['763951591']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b988d3cb-40b6-4bc0-843d-a5250106953e,,Thessaloniki,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=8,,Greece,9,27,34020 +Georgiadis Marios,5035,139,,137,Parliament,"['414262228']",UNION OF CENTRISTS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=59729bf4-5f01-4701-b5b2-a52500d85911,,Athens,Athens A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=071de048-5737-4bd7-8143-a52500a89ce9,,Greece,9,27,34410 +(Makis) Mavroudis Voridis,"13721, 5036",137,,137,Parliament,"['540179903']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4e2650b8-8089-4dc4-972c-616e412cd9db,,Attica,"A΄ANATOLIKIS ATTIKIS, Attica",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=3,,Greece,9,"47, 27",34511 +Grigorakos Leonidas,5037,136,,137,Parliament,"['556814427']",DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7d35adef-76ff-4a1d-8a78-00948403915d,,Lakonia,Lakonia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2,,Greece,9,27,34213 +Konstantinos Skandalidis,"5038, 13663","136, 570",,137,Parliament,"['539098641']","DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left), Movement For Change",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=fa81f8e1-e44c-41dc-9e36-f1ecafb8d2c6,,Athens,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a,,Greece,9,"47, 27",34213 +Dimitrios Kremastinos,5039,136,,137,Parliament,"['1474143228']",DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=53217be7-49d1-40a4-8418-a2fd20f5f791,,Dodecanese Islands,Dodecanese Islands,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2,,Greece,9,27,34213 +- Aikaterini Papakosta Sidiropoulou,5040,137,,137,Parliament,"['365940969']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=10e52c22-5d77-49a4-8118-4907403e3b6b,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,27,34511 +Kouroumplis Panagiotis,5041,135,,137,Parliament,"['414287765']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=bd8b7e2b-656b-4489-9686-2c2d8f68f9fd,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=2,,Greece,9,27,34020 +Konstantinos Koukodimos,5042,137,,137,Parliament,"['335276698']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2a7c3904-7c3c-4b76-84f4-269984bdb5bd,,Pieria,Pieria,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7,,Greece,9,27,34511 +Konstantinos Skrekas,"13668, 5043",137,,137,Parliament,"['3041226449']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=09bb14cd-2858-4ea6-92f5-5285bca69430,,Trikala,Trikala,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=8,,Greece,9,"47, 27",34511 +Kyriakos Mitsotakis,"5044, 13615",137,,137,Parliament,"['14283525']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d0750741-dbb8-4bec-9466-526fe9c11773,,Athens,"V2' DYTIKOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,"47, 27",34511 +Bargiotas Konstantinos,5045,136,,137,Parliament,"['48462017']",DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d5bc447a-d1e7-4fc5-b2aa-a4340153e5af,,Larissa,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2,,Greece,9,27,34213 +Andreas Katsaniotis,"13556, 5046",137,,137,Parliament,"['407091620']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2a229169-2f79-4d69-ac5b-a434015174ea,,Achaia,Achaia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=3,,Greece,9,"47, 27",34511 +Katsafados Konstantinos,"13555, 5047",137,,137,Parliament,"['370598533']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=47500a44-f5df-44a1-900a-9961f1617232,,Piraeus,Piraeus A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7,,Greece,9,"47, 27",34511 +Aikaterini Markou,5048,142,,137,Parliament,"['632868099']",INDEPENDENT,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=d0c92cb2-58d0-4d81-bc51-0e169cccb9c4,,Thessaloniki,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=d14ba599-f806-478c-92c3-8b89cf467ba2,,Greece,9,27, +Kalafatis Stavros,"5049, 13536",137,,137,Parliament,"['484702915']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=03e4757b-ddb5-4624-9d0d-f695f535ec70,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=5,,Greece,9,"47, 27",34511 +Karagkounis Konstantinos,"13543, 5050",137,,137,Parliament,"['805151138']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=897f098b-6295-48f2-85a2-b3625386a319,,Aitolo-Akarnania,"Aitolo-Akarnania, Aitoloαkarnania",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=3,,Greece,9,"47, 27",34511 +Ioannis Sarakiotis,"13660, 5051",135,,137,Parliament,"['709702013865562112']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7a6bc85b-de71-4e8e-b12f-a52500f3ee9e,,Fthiotida,Fthiotida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=14,,Greece,9,"47, 27",34020 +Ilias Panagiotaros,5052,140,,137,Parliament,"['706861538']",LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c0f3915a-e2da-4c02-8ef9-5e15977e3b7b,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8,,Greece,9,27,34720 +Ilias Kasidiaris,5053,140,,137,Parliament,"['516400360']",LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ac426d44-d0dd-442b-b363-d7d800ecedc6,,Attica,Attica,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8,,Greece,9,27,34720 +Achmet Ilchan,"13434, 5054","136, 570",,137,Parliament,"['102001522']","DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left), Movement For Change",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=601b6bab-4bde-4f3e-8bcb-4ba2eba6f59b,,Rodopi,Rodopi,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2,,Greece,9,"47, 27",34213 +Fotilas Iason,"13511, 5055",137,,137,Parliament,"['3063865762']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=798ac0b8-bb66-4339-896b-a434015a1c15,,Achaia,Achaia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=4,,Greece,9,"47, 27",34511 +Aivatidis Ioannis,5056,140,,137,Parliament,"['2963278857']",LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=3e922a7b-0ec7-43cd-a150-a52500fb3fe1,,Corfu,Corfu,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8&pageNo=2,,Greece,9,27,34720 +Georgios Vagionas,5057,137,,137,Parliament,"['2955647698']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=ca5219e5-5651-4fe5-9c25-3bac9efa7d1c,,Halkidiki,Halkidiki,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=8,,Greece,9,27,34511 +Grigorios Psarianos,5058,138,,137,Parliament,"['567306088']",TO POTAMI (The River),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=36285483-d83e-4d70-8aa8-a2d582759f1f,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=da658473-5dd8-4eb5-a533-a434009ba461,,Greece,9,27,34340 +Georgios Koumoutsakos,"5059, 13580",137,,137,Parliament,"['633098410']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=eaf5c75c-c137-48c0-af4e-a434014f722f,,Athens,"V1΄ VOREIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,"47, 27",34511 +Ioannis Kefalogiannis,"13564, 5060",137,,137,Parliament,"['562182659']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b2564b3e-d13b-4f82-9c6c-03d8d3e4cdaf,,Rethymno,Rethymno,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7,,Greece,9,"47, 27",34511 +Georgios Katrougkalos,"5061, 13554",135,,137,Parliament,"['42008209']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=8f4b402c-2fe3-4c48-b2c0-a52500ece862,,Messinia,"Messinia, V1΄ VOREIOU TOMEA ATHINON",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=11,,Greece,9,"47, 27",34020 +Gkioulekas Konstantinos,"13528, 5062",137,,137,Parliament,"['190278613']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a4cf96e1-8984-422d-8519-b5bf62479e0d,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=5,,Greece,9,"47, 27",34511 +Gennia Georgia,5063,135,,137,Parliament,"['299874207']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1cab86ef-a5af-40cf-beee-a525010ae7ea,,Piraeus,Piraeus A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=12,,Greece,9,27,34020 +Gerasimos Giakoumatos,5064,137,,137,Parliament,"['537269439']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=68ba70f6-5f47-4938-afe4-345311f269fe,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,27,34511 +Dimaras Georgios,5065,135,,137,Parliament,"['963340633770463232']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=42ea120e-a26c-4ed6-b73e-a43400d9140c,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=2,,Greece,9,27,34020 +Akriotis Georgios,5066,135,,137,Parliament,"['2451561470']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=90083bd9-4752-4866-954a-a43400d2b6cc,,Evia,Evia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=5,,Greece,9,27,34020 +Georgios Stathakis,5067,135,,137,Parliament,"['2814643357']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=704b0595-4422-4318-8e50-c8a868516897,,Chania,Chania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=14,,Greece,9,27,34020 +Ioannis Plakiotakis,"13645, 5068",137,,137,Parliament,"['558383750']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=0589f904-269b-4f4f-900e-0ade69ecf70a,,Lasithi,Lasithi,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=6,,Greece,9,"47, 27",34511 +Foteini Vaki,5069,135,,137,Parliament,"['3049782381']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6b8c6934-0b6f-4600-b1be-a43400d49204,,Corfu,Corfu,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=9,,Greece,9,27,34020 +Fortsakis Theodoros,5070,137,,137,Parliament,"['2991886211']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=03121982-3d00-4dd4-badf-b9e3ec163711,,State,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,27,34511 +(Fofi) Foteini Genimata,"5071, 13514","136, 570",,137,Parliament,"['71482406']","DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left), Movement For Change",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=80c8c04f-388a-44c3-a2e1-fc43ad7e0f12,,Athens,"V3΄NOTIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a,,Greece,9,"47, 27",34213 +(Eyi) Eyangelia Karakosta,5072,135,,137,Parliament,"['3019911899']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=5a162011-1ee7-41b9-8199-a43400e10942,,Piraeus,Piraeus B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=12,,Greece,9,27,34020 +Evangelos Venizelos,5073,136,,137,Parliament,"['22310233']",DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=60c2d57c-9936-469b-91fd-66ed27eaad3f,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2,,Greece,9,27,34213 +Eleni Zaroulia,5074,140,,137,Parliament,"['700747080']",LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c23212ac-1614-456b-81a9-70dadc241fe1,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8,,Greece,9,27,34720 +Avlonitou Eleni,5075,135,,137,Parliament,"['331032006']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=4d7306d4-b301-43df-bd2d-2ffbd22c5327,,Athens,Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=3,,Greece,9,27,34020 +Elena Kountoura,"12882, 5076","141, 199",28,"215, 137",Parliament,"['424164598']","ANEXARTITOI ELLINES (Independent Hellenes) National Patriotic Democratic Alliance, Coalition of the Radical Left",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=330cb710-0d04-4ca5-993d-ea32129457aa,,"Athens, Greece",Athens A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=14fc8236-a545-4631-bebd-a435012f6f28,,"European Parliament, Greece","27, 9","27, 43","34730, 34020" +Eleni Rapti,"13653, 5077",137,,137,Parliament,"['70973903']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=505981d5-5775-451b-bfb0-4760476c0775,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=5,,Greece,9,"47, 27",34511 +(Dora) Bakoyannis Theodora,"5078, 13467",137,,137,Parliament,"['13766852']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6e037ced-1cd5-495c-838d-ee65ff9e0d7f,,Athens,"Athens A, Chania",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058,,Greece,9,"47, 27",34511 +Dimitrios Vettas,5079,135,,137,Parliament,"['948002035']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=7bf70c15-05de-4ffe-ac5a-a43400d5a5ed,,Fthiotida,Fthiotida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=14,,Greece,9,27,34020 +Dedes Ioannis,5080,135,,137,Parliament,"['557315388']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=9217da35-542b-4112-8fe1-a43400d7e021,,Attica,Attica,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=4,,Greece,9,27,34020 +Christos Staikouras,"5081, 13672",137,,137,Parliament,"['84853888']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=90fe5363-5352-45b5-8e6a-3b1edde88073,,Fthiotida,Fthiotida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=8,,Greece,9,"47, 27",34511 +Christos Dimas,"5082, 13500",137,,137,Parliament,"['491550694']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1f400204-b7c2-45d4-9d5d-5f66a0b3621c,,Korinthia,Korinthia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=6,,Greece,9,"47, 27",34511 +Boukoros Christos,"5083, 13478",137,,137,Parliament,"['982264362', '3311683973']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a8910e3c-83f1-4990-a37c-a43401544ae9,,Magnesia,Magnesia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=7,,Greece,9,"47, 27",34511 +Alexios Tsipras,"5084, 13695",135,,137,Parliament,"['334602996']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b57035f7-43e4-48e9-a541-b9d153eb5eab,,Iraklio,"Iraklio, Achaia",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=7,,Greece,9,"47, 27",34020 +Arvanitidis Georgios,"5085, 13455","136, 570",,137,Parliament,"['269667949']","DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left), Movement For Change",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=be36f6c3-3fc0-445c-b8aa-895650a798cf,,Thessaloniki,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a&pageNo=2,,Greece,9,"47, 27",34213 +Arampatzi Foteini,"13453, 5086",137,,137,Parliament,"['537431019']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=c09c98e5-74f9-4efc-88a4-0318a343787a,,Serres,Serres,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=8,,Greece,9,"47, 27",34511 +Antonios Gregos,5087,140,,137,Parliament,"['1097502870']",LAIKOS SYNDESMOS - CHRYSI AVGI (People's Association – Golden Dawn),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2779b0ab-b143-49c1-85f8-e4767649717d,,Thessaloniki,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=0076f967-6af7-44bb-9b9c-aed5308be4a8,,Greece,9,27,34720 +Anna Karamanli,"5088, 13544",137,,137,Parliament,"['478754813']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=6918186f-ebe8-401c-88a8-7c26083a1f55,,Athens,"V3΄NOTIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,"47, 27",34511 +Anna-Michelle Asimakopoulou,"12744, 5089","200, 137",29,"216, 137",Parliament,"['533041104']","N.D. (New Democracy), Nea Demokratia",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=b4b35399-b0d4-4684-af64-d219d99bb7f0,,"Athens, Greece",Athens B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,"European Parliament, Greece","27, 9","27, 43",34511 +Andreas Xanthos,"13727, 5090",135,,137,Parliament,"['1701576919']",SYRIZA (Coalition of the Radical Left),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=2f2bd347-51ea-42ff-a3d9-7e23eb1ea9d6,,Rethymno,Rethymno,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=7c7d4919-5e12-440a-b0ab-5c6ba9232a23&pageNo=13,,Greece,9,"47, 27",34020 +Amyras Georgios,"13445, 5091","137, 138",,137,Parliament,"['75256329']","N.D. (New Democracy), TO POTAMI (The River)",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=a656b810-24d8-499f-a09f-a434014cf7d1,,Athens,"Ioannina, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=da658473-5dd8-4eb5-a533-a434009ba461,,Greece,9,"47, 27","34511, 34340" +- Adonis Georgiadis Spyridon,"13516, 5092",137,,137,Parliament,"['70340615']",N.D. (New Democracy),https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=60d8e525-9b5d-4c91-8b20-438333549712,,Athens,"V1΄ VOREIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=5051dbea-b9ea-4005-89f3-1ed083000058&pageNo=2,,Greece,9,"47, 27",34511 +Andreas Loverdos,"5093, 13597","136, 570",,137,Parliament,"['225931853']","DEMOCRATIC COALITION (Panhellenic Socialist Movement Democratic Left), Movement For Change",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?MPId=1b774a63-35f8-403e-9170-e920e9a06353,,Athens,"V1΄ VOREIOU TOMEA ATHINON, Athens B",https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/?partyId=533a3e87-db7b-45a4-9778-a52500ac728a,,Greece,9,"47, 27",34213 +Elsa Faucillon,5291,144,10,146,Parliament,"['789381772190416896']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721896,,Hauts-de-Seine,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Fabien Roussel,5292,144,10,146,Parliament,"['1324449588']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720692,,Nord,20,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Gabriel Serville,5293,145,10,146,Parliament,"['882350664']",Parti Progressiste Martiniquais,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA610667,,Guyane,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bello Huguette,5295,144,10,146,Parliament,"['3026493886']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA441,,Réunion,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Dufrègne Jean-Paul,5296,144,10,146,Parliament,"['2541430148']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718720,,Allier,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Jean-Paul Lecoq,5297,144,10,146,Parliament,"['539156968']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA335612,,Seine-Maritime,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Brotherson Moetai,5300,147,10,146,Parliament,"['903517622']",Tavini Huiraatira No Te Ao Maohi - Front de libération de Polynésie,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721118,,Polynésie Française,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dharréville Pierre,5301,144,10,146,Parliament,"['2380233572']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718926,,Bouches-du-Rhône,13,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Jumel Sébastien,5302,144,10,146,Parliament,"['461022437']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722202,,Seine-Maritime,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Peu Stéphane,5303,144,10,146,Parliament,"['303112391']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721270,,Seine-Saint-Denis,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Adrien Quatennens,5304,148,11,150,Parliament,"['3023497329']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720422,,Nord,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Alexis Corbière,5305,148,11,150,Parliament,"['266215308']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721210,,Seine-Saint-Denis,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Bastien Lachaud,5306,148,11,150,Parliament,"['247895631']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720846,,Seine-Saint-Denis,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Bénédicte Taurine,5307,148,11,150,Parliament,"['870283676898271232']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718860,,Ariège,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Caroline Fiat,5308,148,11,150,Parliament,"['832246158391144448']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720286,,Meurthe-et-Moselle,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Autain Clémentine,5309,148,11,150,Parliament,"['491343921']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA588884,,Seine-Saint-Denis,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Danièle Obono,5310,148,11,150,Parliament,"['858041350494793728']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721960,,Paris,17,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Coquerel Éric,5311,148,11,150,Parliament,"['311601642']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721202,,Seine-Saint-Denis,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +François Ruffin,5312,148,11,150,Parliament,"['801822323825410049']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722142,,Somme,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Jean-Hugues Ratenon,5313,148,11,150,Parliament,"['913087858679930880']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721062,,Réunion,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Jean-Luc Melenchon,"5314, 6605","148, 292","28, 11","188, 150",Parliament,"['80820758']","Front de Gauche, La France Insoumise","https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2150, https://www.europarl.europa.eu/meps/en/96742/JEAN-LUC_MELENCHON_home.html",,"France, Bouches-du-Rhône",4,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www2.assemblee-nationale.fr/deputes/liste/tableau",,"France, European Parliament","7, 27","30, 32",31240 +Loïc Prud'Homme,5315,148,11,150,Parliament,"['864595354578300928']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719578,,Gironde,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Mathilde Panot,5316,148,11,150,Parliament,"['2370188558']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720892,,Val-de-Marne,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Larive Michel,5317,148,11,150,Parliament,"['857153285190537216']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718868,,Ariège,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Muriel Ressiguier,5318,148,11,150,Parliament,"['1572573320']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719676,,Hérault,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Rubin Sabine,5319,148,11,150,Parliament,"['864527846227759104']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721226,,Seine-Saint-Denis,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Bernalicis Ugo,5320,148,11,150,Parliament,"['152382594']",La France Insoumise,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720430,,Nord,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31240 +Amadou Aude,5321,149,12,151,Parliament,"['1114759578']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720124,,Loire-Atlantique,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Aude Bono-Vandorme,5322,149,12,151,Parliament,"['701715448015024128']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718756,,Aisne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Audrey Dufeu Schubert,5323,149,12,151,Parliament,"['414717475']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720046,,Loire-Atlantique,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Aurélien Taché,5324,149,12,151,Parliament,"['472903732']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720952,,Val-d'Oise,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Aurore Bergé,5325,149,12,151,Parliament,"['37509285']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722046,,Yvelines,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Ballot Barbara Bessot,5326,149,12,151,Parliament,"['866509140570648576']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722312,,Haute-Saône,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Barbara Pompili,5327,149,12,151,Parliament,"['454336881']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA609520,,Somme,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Béatrice Piron,5328,149,12,151,Parliament,"['864547522588667904']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721844,,Yvelines,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Belhaddad Belkhir,5329,149,12,151,Parliament,"['865810478315995136']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720362,,Moselle,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bénédicte Peyrol,5330,149,12,151,Parliament,"['92254303']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718736,,Allier,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Benjamin Dirx,5331,149,12,151,Parliament,"['864077786209812480']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722382,,Saône-et-Loire,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Benoit Potterie,5332,149,12,151,Parliament,"['863763746027696128']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720590,,Pas-de-Calais,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Benoit Simian,5333,149,12,151,Parliament,"['610649874']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719592,,Gironde,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Abba Bérangère,5334,149,12,151,Parliament,"['314472161']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720242,,Haute-Marne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bérangère Couillard,5335,149,12,151,Parliament,"['863834372125970432']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719624,,Gironde,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bertrand Bouyx,5336,149,12,151,Parliament,"['2968734303']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719032,,Calvados,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bertrand Sorre,5337,149,12,151,Parliament,"['827280437059805184']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720190,,Manche,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Blandine Brocard,5338,149,12,151,Parliament,"['156032740']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721336,,Rhône,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bourguignon Brigitte,5339,149,12,151,Parliament,"['484754469']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608083,,Pas-de-Calais,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Brigitte Liso,5340,149,12,151,Parliament,"['863155122041483264']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720446,,Nord,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bonnell Bruno,5342,149,12,151,Parliament,"['3343767939']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721344,,Rhône,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bruno Questel,5344,149,12,151,Parliament,"['319756723']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA643127,,Eure,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bruno Studer,5345,149,12,151,Parliament,"['862190399938539520']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720754,,Bas-Rhin,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Buon Tan,5346,149,12,151,Parliament,"['2495899075']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721690,,Paris,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bureau-Bonnard Carole,5347,149,12,151,Parliament,"['863846061202341890']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720622,,Oise,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Carole Grandjean,5348,149,12,151,Parliament,"['845025344600113152']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720170,,Meurthe-et-Moselle,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Abadie Caroline,5349,149,12,151,Parliament,"['507168683']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719866,,Isère,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Caroline Janvier,5350,149,12,151,Parliament,"['865135799293050880']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720074,,Loiret,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Catherine Fabre,5351,149,12,151,Parliament,"['121106417']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719570,,Gironde,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Catherine Kamowski,5352,149,12,151,Parliament,"['875806431731228672']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719994,,Isère,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Catherine Osson,5353,149,12,151,Parliament,"['2163509654']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720492,,Nord,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cathy Racon-Bouzon,5354,149,12,151,Parliament,"['862722286444564480']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718944,,Bouches-du-Rhône,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cécile Muschotti,5355,149,12,151,Parliament,"['607447732']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721656,,Var,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cédric Roussel,5357,149,12,151,Parliament,"['865558964976603139']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718902,,Alpes-Maritimes,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cédric Villani,5358,149,12,151,Parliament,"['861942866989469696']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722260,,Essonne,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Célia De Lavergne,5359,149,12,151,Parliament,"['866946801726877696']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719310,,Drôme,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Calvez Céline,5360,149,12,151,Parliament,"['142632679']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721750,,Hauts-de-Seine,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Charlotte Lecocq,5362,149,12,151,Parliament,"['866081129048223744']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720480,,Nord,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christelle Dubos,5363,149,12,151,Parliament,"['846977443571388416']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719660,,Gironde,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christine Hennion,5365,149,12,151,Parliament,"['864206680648810496']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722094,,Hauts-de-Seine,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Arend Christophe,5366,149,12,151,Parliament,"['554262922']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720310,,Moselle,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Blanchet Christophe,5367,149,12,151,Parliament,"['745992482387812352']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719024,,Calvados,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Castaner Christophe,5368,150,12,151,Parliament,"['125727024']",Minister,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605131,"['Minister']",Alpes-de-Haute-Provence,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christophe Di Pompeo,5369,149,12,151,Parliament,"['853657404252311552']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720438,,Nord,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christophe Euzet,5370,149,12,151,Parliament,"['864711815552532480']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719616,,Hérault,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christophe Jerretie,5371,149,12,151,Parliament,"['228135373']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719060,,Corrèze,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christophe Lejeune,5372,149,12,151,Parliament,"['903271106303455232']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722320,,Haute-Saône,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Claire O'Petit,5373,149,12,151,Parliament,"['871841979981860864']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719364,,Eure,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Claire Pitollat,5374,149,12,151,Parliament,"['864560136974737408']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718910,,Bouches-du-Rhône,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Coralie Dubost,5375,149,12,151,Parliament,"['738667035371134976']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719684,,Hérault,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Corinne Vignon,5376,149,12,151,Parliament,"['864488046355517440']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719512,,Haute-Garonne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Adam Damien,5377,149,12,151,Parliament,"['15243103']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722038,,Seine-Maritime,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Damien Pichereau,5378,149,12,151,Parliament,"['400123170']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721372,,Sarthe,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Daniel Labaronne,5379,149,12,151,Parliament,"['3063365597']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719798,,Indre-et-Loire,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Danièle Hérin,5381,149,12,151,Parliament,"['139594328']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718794,,Aude,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Brulebois Danielle,5382,149,12,151,Parliament,"['110988733']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719890,,Jura,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bagarry Delphine,5383,149,12,151,Parliament,"['526824153']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718744,,Alpes-de-Haute-Provence,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Denis Masséglia,5384,149,12,151,Parliament,"['793725741355630592']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720146,,Maine-et-Loire,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Denis Sommer,5385,149,12,151,Parliament,"['67336250']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719420,,Doubs,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Baichère Didier,5386,149,12,151,Parliament,"['22255651']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721776,,Yvelines,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Didier Gac Le,5387,149,12,151,Parliament,"['755737508']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719404,,Finistère,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Didier Martin,5388,149,12,151,Parliament,"['2336493002']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719154,,Côte-d'Or,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dimitri Houbron,5390,149,12,151,Parliament,"['816639704464576512']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720454,,Nord,17,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Da Dominique Silva,5391,149,12,151,Parliament,"['837694453250936832']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720932,,Val-d'Oise,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +David Dominique,5392,149,12,151,Parliament,"['864165870213500928']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719710,,Gironde,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Toutut-Picard Élisabeth,5393,149,12,151,Parliament,"['826017036451061760']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719540,,Haute-Garonne,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cariou Émilie,5394,149,12,151,Parliament,"['813728148']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720298,,Meuse,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Chalas Émilie,5395,149,12,151,Parliament,"['1436327000']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719748,,Isère,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alauzet Éric,5397,149,12,151,Parliament,"['842102300']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605963,,Doubs,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bothorel Éric,5398,149,12,151,Parliament,"['162094209']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642695,,Côtes-d'Armor,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Girardin Éric,5399,149,12,151,Parliament,"['1446653228']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720222,,Marne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Poulliat Éric,5400,149,12,151,Parliament,"['178485109']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719600,,Gironde,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fabien Gouttefarde,5401,149,12,151,Parliament,"['802968035208417280']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719330,,Eure,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fabien Matras,5402,149,12,151,Parliament,"['865234300190564352']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721800,,Var,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Colboc Fabienne,5403,149,12,151,Parliament,"['69870071']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719814,,Indre-et-Loire,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fabrice Le Vigoureux,5404,149,12,151,Parliament,"['118061183']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719006,,Calvados,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fadila Khattabi,5405,149,12,151,Parliament,"['447845263']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719186,,Côte-d'Or,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Charvier Fannette,5406,149,12,151,Parliament,"['898841450']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719170,,Doubs,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fiona Lazaar,5407,149,12,151,Parliament,"['856270190736277504']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720916,,Val-d'Oise,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Boudié Florent,5409,149,12,151,Parliament,"['245747441']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606507,,Gironde,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bachelier Florian,5410,149,12,151,Parliament,"['542779549']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719770,,Ille-et-Vilaine,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +André François,5411,149,12,151,Parliament,"['4824773080']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606675,,Ille-et-Vilaine,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +De François Rugy,5413,149,12,151,Parliament,"['455806353']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA332747,,Loire-Atlantique,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +François-Michel Lambert,5415,151,12,151,Parliament,"['522084022']",Parti Radical de Gauche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605518,,Bouches-du-Rhône,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31230 +Dumas Françoise,5416,149,12,151,Parliament,"['485535439']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606202,,Gard,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Barbier Frédéric,5417,149,12,151,Parliament,"['417049363']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642724,,Doubs,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Descrozaille Frédéric,5418,149,12,151,Parliament,"['865114227580784640']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720862,,Val-de-Marne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dumas Frédérique,5419,149,12,151,Parliament,"['3772780954']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721194,,Hauts-de-Seine,13,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Frédérique Lardet,5420,149,12,151,Parliament,"['865125792602304512']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721434,,Haute-Savoie,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Frédérique Tuffnell,5421,149,12,151,Parliament,"['865463897976733696']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719092,,Charente-Maritime,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Attal Gabriel,5422,149,12,151,Parliament,"['379718466']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722190,,Hauts-de-Seine,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bohec Gaël Le,5423,149,12,151,Parliament,"['864057336440213504']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719728,,Ille-et-Vilaine,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gendre Gilles Le,5424,149,12,151,Parliament,"['843748232']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721466,,Paris,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Graziella Melchior,5425,149,12,151,Parliament,"['865162242861535232']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719338,,Finistère,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Besson-Moreau Grégory,5426,149,12,151,Parliament,"['863439731979427840']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718876,,Aube,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Chiche Guillaume,5427,149,12,151,Parliament,"['864228297613479938']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722126,,Deux-Sèvres,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gouffier-Cha Guillaume,5428,149,12,151,Parliament,"['339155330']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721296,,Val-de-Marne,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Guillaume Kasbarian,5429,149,12,151,Parliament,"['818210180756336640']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719372,,Eure-et-Loir,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Guillaume Vuilletet,5430,149,12,151,Parliament,"['73632751']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721262,,Val-d'Oise,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gwendal Rouillard,5431,149,12,151,Parliament,"['856059444']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA343493,,Morbihan,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Hélène Zannier,5432,149,12,151,Parliament,"['864668681967632384']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720318,,Moselle,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Berville Hervé,5433,149,12,151,Parliament,"['708604271701434368']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719218,,Côtes-d'Armor,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Hervé Pellois,5434,149,12,151,Parliament,"['920876347']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607595,,Morbihan,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Hubert Julien-Laferriere,5435,152,12,151,Parliament,"['435623552']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722344,,Rhône,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Hugues Renson,5436,149,12,151,Parliament,"['705617755']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721824,,Paris,13,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Huguette Tiegna,5437,149,12,151,Parliament,"['3940110196']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720014,,Lot,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Isabelle Muller-Quoy,5438,149,12,151,Parliament,"['863020880926056453']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721254,,Val-d'Oise,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Isabelle Rauch,5439,149,12,151,Parliament,"['317420284']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720552,,Moselle,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dubois Jacqueline,5440,149,12,151,Parliament,"['2475448796']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719162,,Dordogne,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jacqueline Maquet,5441,149,12,151,Parliament,"['801121064357085184']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA334116,,Pas-de-Calais,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jacques Krabal,5442,149,12,151,Parliament,"['1946847096']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605084,,Aisne,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jacques-André Maire,"13850, 8876, 5443","432, 149, 432","58, 12","468, 151",Parliament,"['864415461072658432', '815578430']","Parti socialiste suisse, Parti socialiste suisse, En Marche","https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722178, none","['Conseil National']","Neuchâtel, Hauts-de-Seine, Neuchâtel",8,"https://www.parlament.ch/en/organe/national-council/members-national-council-a-z, https://www2.assemblee-nationale.fr/deputes/liste/tableau",,"Switzerland, France, Switzerland","23, 7, 23","6, 30, 50","43320, 43320" +Jacques Marilossian,5444,149,12,151,Parliament,"['795233446121664512']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721946,,Hauts-de-Seine,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jacques Savatier,5445,149,12,151,Parliament,"['864170239445041152']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722078,,Vienne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +François Jean Mbaye,5446,149,12,151,Parliament,"['864825463927164928']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720870,,Val-de-Marne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean Terlier,5447,149,12,151,Parliament,"['864095016943308800']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721584,,Tarn,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Djebbari Jean-Baptiste,5448,149,12,151,Parliament,"['862770295219916800']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722236,,Haute-Vienne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Baptiste Moreau,5449,149,12,151,Parliament,"['615337066']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719242,,Creuse,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Bernard Sempastous,5450,149,12,151,Parliament,"['865305435707985920']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720780,,Hautes-Pyrénées,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Colas-Roy Jean-Charles,5451,149,12,151,Parliament,"['864042960119320576']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719740,,Isère,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Charles Larsonneur,5452,149,12,151,Parliament,"['864560669814816771']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719396,,Finistère,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Claude Leclabart,5453,149,12,151,Parliament,"['864410712487206912']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722228,,Somme,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cesarini Jean-François,5454,149,12,151,Parliament,"['1415006550']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721860,,Vaucluse,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Eliaou Jean-François,5455,149,12,151,Parliament,"['753225726']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719692,,Hérault,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-François Portarrieu,5456,149,12,151,Parliament,"['773993798']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719528,,Haute-Garonne,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bridey Jean-Jacques,5457,149,12,151,Parliament,"['3887630259']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA672,,Val-de-Marne,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Louis Touraine,5458,149,12,151,Parliament,"['577857868']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA334768,,Rhône,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fugit Jean-Luc,5459,149,12,151,Parliament,"['810591493597630464']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722366,,Rhône,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Marc Zulesi,5460,149,12,151,Parliament,"['122155194']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718962,,Bouches-du-Rhône,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fiévet Jean-Marie,5461,149,12,151,Parliament,"['864397221533552640']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722134,,Deux-Sèvres,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Clément Jean-Michel,5462,149,12,151,Parliament,"['393306373']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA336439,,Vienne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jacques Jean-Michel,5464,149,12,151,Parliament,"['814331851070382080']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720354,,Morbihan,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Jean-Michel Mis,5465,149,12,151,Parliament,"['48664671']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719952,,Loire,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cazeneuve Jean-René,5468,149,12,151,Parliament,"['541023150']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719472,,Gers,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Joachim Son-Forget,5470,149,12,151,Parliament,"['175362145']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721174,,Français établis hors de France,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Giraud Joël,5471,149,12,151,Parliament,"['1906998314']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267336,,Hautes-Alpes,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Borowczyk Julien,5472,149,12,151,Parliament,"['865939828550098944']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719980,,Loire,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Avia Laetitia,5473,149,12,151,Parliament,"['2317502810']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721624,,Paris,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Laurence Maillart-Méhaignerie,5477,149,12,151,Parliament,"['1299738390']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719718,,Ille-et-Vilaine,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Laurent Pietraszewski,5479,149,12,151,Parliament,"['863844064961200128']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720512,,Nord,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Laurent Saint-Martin,5480,149,12,151,Parliament,"['733339165379731458']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720878,,Val-de-Marne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Laurianne Rossi,5481,149,12,151,Parliament,"['569390345']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721600,,Hauts-de-Seine,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Adam Lénaïck,5482,149,12,151,Parliament,"['413114866']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721036,,Guyane,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Liliana Tanguy,5483,149,12,151,Parliament,"['574566042']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719550,,Finistère,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Causse Lionel,5484,149,12,151,Parliament,"['912604842643816448']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719922,,Landes,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dombreval Loïc,5485,149,12,151,Parliament,"['52779939']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718894,,Alpes-Maritimes,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Kervran Loïc,5486,149,12,151,Parliament,"['802997806252388352']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719052,,Cher,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Ludovic Mendes,5487,149,12,151,Parliament,"['294130753']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720370,,Moselle,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Manuel Valls,5488,149,12,151,Parliament,"['70385068']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267622,,Essonne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Delatte Marc,5489,149,12,151,Parliament,"['869560974323396608']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718694,,Aisne,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Guévenoux Marie,5490,149,12,151,Parliament,"['277091443']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721880,,Essonne,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Lebec Marie,5491,149,12,151,Parliament,"['2308358192']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721852,,Yvelines,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Marie Tamarelle-Verhaeghe,5492,149,12,151,Parliament,"['730306077456269312']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719350,,Eure,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Magne Marie-Ange,5493,149,12,151,Parliament,"['862750783804190720']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722244,,Haute-Vienne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Marie-Christine Verdier-Jouclas,5494,149,12,151,Parliament,"['843864760689016832']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721542,,Tarn,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Marie-Pierre Rixain,5495,149,12,151,Parliament,"['864254888599068672']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722252,,Essonne,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Marjolaine Meynier-Millefert,5497,149,12,151,Parliament,"['865133923361312768']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719882,,Isère,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Leguille-Balloy Martine,5498,149,12,151,Parliament,"['864386355622817792']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722008,,Vendée,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Martine Wonner,5499,149,12,151,Parliament,"['870216254300270593']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722268,,Bas-Rhin,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Matthieu Orphelin,5500,149,12,151,Parliament,"['949232324']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720278,,Maine-et-Loire,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Delpon Michel,5501,149,12,151,Parliament,"['866314144403927040']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719258,,Dordogne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Lauzzana Michel,5502,149,12,151,Parliament,"['4121844143']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720022,,Lot-et-Garonne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Crouzet Michèle,5503,149,12,151,Parliament,"['866757734875750400']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721808,,Yonne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Michèle Peyron,5504,149,12,151,Parliament,"['802991763476594688']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721710,,Seine-et-Marne,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mickaël Nogal,5505,149,12,151,Parliament,"['80071647']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719520,,Haute-Garonne,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Clapot Mireille,5506,149,12,151,Parliament,"['471076259']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719294,,Drôme,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mireille Robert,5507,149,12,151,Parliament,"['858769856463859712']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718810,,Aude,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Michel Monica,5508,149,12,151,Parliament,"['863317587865866240']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719130,,Bouches-du-Rhône,16,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Iborra Monique,5509,149,12,151,Parliament,"['372703035']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA331835,,Haute-Garonne,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Limon Monique,5510,149,12,151,Parliament,"['867852249673891840']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719858,,Isère,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mahjoubi Mounir,5511,149,12,151,Parliament,"['80528373']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA717167,,Paris,16,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Laabid Mustapha,5512,149,12,151,Parliament,"['581648342']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719842,,Ille-et-Vilaine,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Hai Nadia,5513,149,12,151,Parliament,"['864926925734772736']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722054,,Yvelines,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Moutchou Naïma,5514,149,12,151,Parliament,"['865209415628140544']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720908,,Val-d'Oise,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Natalia Pouzyreff,5515,149,12,151,Parliament,"['864116167841116160']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721916,,Yvelines,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Démoulin Nicolas,5517,149,12,151,Parliament,"['987366042']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719830,,Hérault,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dubre-Chirat Nicole,5518,149,12,151,Parliament,"['866236903066128384']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720154,,Maine-et-Loire,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Le Nicole Peih,5519,149,12,151,Parliament,"['865286612837650432']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720342,,Morbihan,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Nicole Trisse,5520,149,12,151,Parliament,"['887934696511991808']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720394,,Moselle,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Givernet Olga,5521,149,12,151,Parliament,"['4055897896']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718674,,Ain,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gregoire Olivia,5522,149,12,151,Parliament,"['35712322']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721764,,Paris,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Damaisin Olivier,5523,149,12,151,Parliament,"['789792281540890624']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720268,,Lot-et-Garonne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gaillard Olivier,5524,149,12,151,Parliament,"['864819251496046592']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719480,,Gard,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Olivier Serva,5525,149,12,151,Parliament,"['2953113070']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720960,,Guadeloupe,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Olivier Véran,5526,149,12,151,Parliament,"['600345740']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642788,,Isère,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Pacôme Rupin,5527,149,12,151,Parliament,"['72581817']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721616,,Paris,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Bois Pascal,5528,149,12,151,Parliament,"['835149861267849216']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720576,,Oise,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Boyer Pascale,5529,149,12,151,Parliament,"['1700257484']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718710,,Hautes-Alpes,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Fontenel-Personne Pascale,5530,149,12,151,Parliament,"['845978405917069312']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721384,,Sarthe,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anato Patrice,5531,149,12,151,Parliament,"['3791340735']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721278,,Seine-Saint-Denis,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mirallès Patricia,5533,149,12,151,Parliament,"['2208536261']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719668,,Hérault,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Patrick Vignal,5534,149,12,151,Parliament,"['980242016']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606639,,Hérault,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Molac Paul,5535,153,12,151,Parliament,"['450968514']",Régions et Peuples Solidaires,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607619,,Morbihan,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Forteza Paula,5536,149,12,151,Parliament,"['192986664']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721142,,Français établis hors de France,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Goulet Perrine,5537,149,12,151,Parliament,"['2269369240']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720560,,Nièvre,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Chalumeau Philippe,5538,149,12,151,Parliament,"['739098870844690432']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719790,,Indre-et-Loire,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Chassaing Philippe,5539,149,12,151,Parliament,"['911979209714802688']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719250,,Dordogne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Folliot Philippe,5540,149,12,151,Parliament,"['117052245']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267673,,Tarn,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Huppé Philippe,5541,149,12,151,Parliament,"['2979937161']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719700,,Hérault,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cabaré Pierre,5542,149,12,151,Parliament,"['885051305835802624']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719496,,Haute-Garonne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Henriet Pierre,5543,149,12,151,Parliament,"['738724327059656704']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722070,,Vendée,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Person Pierre,5544,149,12,151,Parliament,"['2525163440']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721568,,Paris,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Pierre-Alain Raphan,5545,149,12,151,Parliament,"['864955921025433600']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721888,,Essonne,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anglade Pieyre-Alexandre,5546,149,12,151,Parliament,"['1255991936']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721158,,Français établis hors de France,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Ali Ramlati,5547,149,12,151,Parliament,"['999986689622855680']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA724827,,Mayotte,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gauvain Raphaël,5548,149,12,151,Parliament,"['99056802']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721364,,Saône-et-Loire,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gérard Raphaël,5549,149,12,151,Parliament,"['864215726269378560']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719108,,Charente-Maritime,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Rebeyrotte Rémy,5550,149,12,151,Parliament,"['1359255073']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722398,,Saône-et-Loire,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Ferrand Richard,5551,149,12,151,Parliament,"['438305534']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606171,,Finistère,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Lioger Richard,5552,149,12,151,Parliament,"['448808766']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720378,,Moselle,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Kokouendo Rodrigue,5553,149,12,151,Parliament,"['750407584897724416']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721644,,Seine-et-Marne,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Lescure Roland,5554,149,12,151,Parliament,"['828000112215355393']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721134,,Français établis hors de France,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Grau Romain,5555,149,12,151,Parliament,"['863116339']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720790,,Pyrénées-Orientales,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Sabine Thillaye,5556,149,12,151,Parliament,"['2433624242']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719822,,Indre-et-Loire,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Houlié Sacha,5557,149,12,151,Parliament,"['308514268']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722150,,Vienne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Ahamada Saïd,5558,149,12,151,Parliament,"['119509912']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718954,,Bouches-du-Rhône,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cazebonne Samantha,5559,149,12,151,Parliament,"['214823261']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721166,,Français établis hors de France,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Marsaud Sandra,5560,149,12,151,Parliament,"['863134711715180544']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719080,,Charente,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Josso Sandrine,5561,149,12,151,Parliament,"['863800772248707072']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720038,,Loire-Atlantique,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Feur Le Sandrine,5562,149,12,151,Parliament,"['862999383499042816']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719412,,Finistère,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mörch Sandrine,5563,149,12,151,Parliament,"['855422400443318272']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719456,,Haute-Garonne,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Cazenove Sébastien,5564,149,12,151,Parliament,"['431569315']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720814,,Pyrénées-Orientales,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Nadot Sébastien,5565,149,12,151,Parliament,"['1524756601']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719464,,Haute-Garonne,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mauborgne Sereine,5566,149,12,151,Parliament,"['827528847797153792']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721726,,Var,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Sira Sylla,5567,149,12,151,Parliament,"['864531980033110016']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722118,,Seine-Maritime,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Krimi Sonia,5568,149,12,151,Parliament,"['861587157416378368']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720202,,Manche,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Beaudouin-Hubiere Sophie,5569,149,12,151,Parliament,"['831910700574457856']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722170,,Haute-Vienne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Errante Sophie,5570,149,12,151,Parliament,"['549319211']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607193,,Loire-Atlantique,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Panonacle Sophie,5571,149,12,151,Parliament,"['911178226533388288']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719632,,Gironde,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Guerini Stanislas,5572,149,12,151,Parliament,"['1911591212']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721498,,Paris,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dupont Stella,5573,149,12,151,Parliament,"['3137717312']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA643175,,Maine-et-Loire,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Buchou Stéphane,5574,149,12,151,Parliament,"['864238987669643264']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722000,,Vendée,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mazars Stéphane,5575,149,12,151,Parliament,"['1429780352']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA677483,,Aveyron,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Stéphane Travert,5577,150,12,151,Parliament,"['382747703']",Minister,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607395,"['Minister']",Manche,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Stéphane Trompille,5578,149,12,151,Parliament,"['3291786911']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718682,,Ain,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Do Stéphanie,5579,149,12,151,Parliament,"['816357406280192000']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721718,,Seine-et-Marne,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Kerbarh Stéphanie,5580,149,12,151,Parliament,"['1264462435']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721514,,Seine-Maritime,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Rist Stéphanie,5581,149,12,151,Parliament,"['807901725113851904']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720066,,Loiret,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Maillard Sylvain,5582,149,12,151,Parliament,"['282119887']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA717379,,Paris,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Charrière Sylvie,5583,149,12,151,Parliament,"['1145576430']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721218,,Seine-Saint-Denis,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Michels Thierry,5584,149,12,151,Parliament,"['2859306226']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720738,,Bas-Rhin,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gassilloud Thomas,5585,149,12,151,Parliament,"['207187853']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722358,,Rhône,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Mesnier Thomas,5586,149,12,151,Parliament,"['1341729894']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719072,,Charente,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Rudigoz Thomas,5587,149,12,151,Parliament,"['347374931']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722292,,Rhône,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Degois Typhanie,5588,149,12,151,Parliament,"['866978105189171200']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721398,,Savoie,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Faure-Muntian Valéria,5589,149,12,151,Parliament,"['863389083099426816']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719960,,Loire,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Gomez-Bassac Valérie,5590,149,12,151,Parliament,"['888033440393822208']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721784,,Var,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Oppelt Valérie,5591,149,12,151,Parliament,"['3049520651']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720108,,Loire-Atlantique,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Petit Valérie,5592,149,12,151,Parliament,"['848443405676032000']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720500,,Nord,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Thomas Valérie,5593,149,12,151,Parliament,"['864572608674754560']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720830,,Puy-de-Dôme,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Hammerer Véronique,5594,149,12,151,Parliament,"['863139545528905728']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719652,,Gironde,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Riotton Véronique,5595,149,12,151,Parliament,"['863756233093894144']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721426,,Haute-Savoie,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Thiébaut Vincent,5596,149,12,151,Parliament,"['464437513']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722336,,Bas-Rhin,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Batut Xavier,5597,149,12,151,Parliament,"['862754226589577216']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721522,,Seine-Maritime,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Paluszkiewicz Xavier,5598,149,12,151,Parliament,"['864604534122962944']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720402,,Meurthe-et-Moselle,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Roseren Xavier,5599,149,12,151,Parliament,"['880849230']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721458,,Haute-Savoie,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Braun-Pivet Yaël,5600,149,12,151,Parliament,"['389644606']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721908,,Yvelines,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Haury Yannick,5601,149,12,151,Parliament,"['869538181158498304']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720054,,Loire-Atlantique,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Kerlogot Yannick,5602,149,12,151,Parliament,"['4218590265']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719230,,Côtes-d'Armor,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Blein Yves,5604,149,12,151,Parliament,"['1465704961']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608641,,Rhône,14,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Daniel Yves,5605,149,12,151,Parliament,"['3299222093']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607155,,Loire-Atlantique,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Park Zivka,5606,149,12,151,Parliament,"['866717602298691584']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720944,,Val-d'Oise,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Béatrice Descamps,5607,154,13,156,Parliament,"['861666911872057344']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720696,,Nord,21,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Bertrand Pancher,5608,154,13,156,Parliament,"['436780101']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA333421,,Meuse,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Charles Courson De,5609,154,13,156,Parliament,"['436816838']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA942,,Marne,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Christophe Naegelen,5610,154,13,156,Parliament,"['891005764097191938']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721486,,Vosges,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Francis Vercamer,5611,154,13,156,Parliament,"['1374214321']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267585,,Nord,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Franck Riester,5612,154,13,156,Parliament,"['406978622']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA335758,,Seine-et-Marne,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Jean-Christophe Lagarde,5614,154,13,156,Parliament,"['360680603']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA268019,,Seine-Saint-Denis,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Jean-Luc Warsmann,5615,155,13,156,Parliament,"['94168587']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2952,,Ardennes,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +De La Laure Raudière,5616,154,13,156,Parliament,"['52764210']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA331567,,Eure-et-Loir,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Lise Magnier,5617,154,13,156,Parliament,"['847384196074962944']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720230,,Marne,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Maina Sage,5618,156,13,156,Parliament,"['2851523481']",Tapura Huiraatira,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA702052,,Polynésie Française,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Brenier Marine,5619,155,13,156,Parliament,"['96111834']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA713448,,Alpes-Maritimes,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Leroy Maurice,5620,154,13,156,Parliament,"['52735020']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1960,,Loir-et-Cher,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Habib Meyer,5621,154,13,156,Parliament,"['1851724262']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA695100,,Français établis hors de France,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Michel Zumkeller,5622,154,13,156,Parliament,"['441892644']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267330,,Territoire de Belfort,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Nicole Sanquer,5624,156,13,156,Parliament,"['934136307533545472']",Tapura Huiraatira,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721110,,Polynésie Française,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Christophe Paul,5626,154,13,156,Parliament,"['616609800']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642868,,Nord,14,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Gomès Philippe,5628,158,13,156,Parliament,"['408115726']",Calédonie Ensemble,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA610775,,Nouvelle-Calédonie,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Philippe Vigier,5629,154,13,156,Parliament,"['365505352']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA331582,,Eure-et-Loir,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Morel-À-L'Huissier Pierre,5630,155,13,156,Parliament,"['110940220']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA266788,,Lozère,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bournazel Pierre-Yves,5631,154,13,156,Parliament,"['90409722']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722030,,Paris,18,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Auconie Sophie,5632,154,13,156,Parliament,"['187508945']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719806,,Indre-et-Loire,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Benoit Thierry,5634,154,13,156,Parliament,"['1605436740']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA332228,,Ille-et-Vilaine,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Solère Thierry,5635,149,13,156,Parliament,"['116229959']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA346876,,Hauts-de-Seine,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Ledoux Vincent,5636,154,13,156,Parliament,"['3367383094']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA712014,,Nord,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Becot Favennec Yannick,5637,154,13,156,Parliament,"['16648630']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267042,,Mayenne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Jégo Yves,5638,154,13,156,Parliament,"['74092783']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267801,,Seine-et-Marne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Alain Ramadier,5639,155,14,162,Parliament,"['819329291389431808']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721286,,Seine-Saint-Denis,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Annie Genevard,5640,155,14,162,Parliament,"['3130755833']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605991,,Doubs,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Arnaud Viala,5641,155,14,162,Parliament,"['866886606']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA709315,,Aveyron,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Aurélien Pradié,5642,155,14,162,Parliament,"['1855097904']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720100,,Lot,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bérengère Poletti,5643,155,14,162,Parliament,"['3664828937']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267260,,Ardennes,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bernard Deflesselles,5645,155,14,162,Parliament,"['4826853935']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1029,,Bouches-du-Rhône,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bernard Perrut,5646,155,14,162,Parliament,"['556754160']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2377,,Rhône,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bernard Reynès,5647,155,14,162,Parliament,"['76662684']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA330788,,Bouches-du-Rhône,15,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Brigitte Kuster,5648,155,14,162,Parliament,"['59800834']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721506,,Paris,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Charles De La Verpillière,5649,155,14,162,Parliament,"['115003417']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1012,,Ain,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Claude De Ganay,5652,155,14,162,Parliament,"['424117102']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267735,,Loiret,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Claude Goasguen,5653,155,14,162,Parliament,"['376252824']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1498,,Paris,14,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Constance Grip Le,"5654, 6351","240, 155","29, 14","189, 162",Parliament,"['338910451']",Les Républicains,"https://www.europarl.europa.eu/meps/en/101580/CONSTANCE_LE+GRIP_home.html, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA345722",,"Hauts-de-Seine, France",6,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www2.assemblee-nationale.fr/deputes/liste/tableau",,"France, European Parliament","7, 27","30, 32",31626 +Abad Damien,5655,155,14,162,Parliament,"['76584619']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605036,,Ain,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Daniel Fasquelle,5656,155,14,162,Parliament,"['267310445']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA334149,,Pas-de-Calais,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +David Lorion,5657,155,14,162,Parliament,"['4069983213']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721054,,Réunion,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Didier Quentin,5658,155,14,162,Parliament,"['2152248747']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2492,,Charente-Maritime,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Cinieri Dino,5659,155,14,162,Parliament,"['829686286097211392']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267429,,Loire,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bonnivard Émilie,5660,155,14,162,Parliament,"['550352602']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721410,,Savoie,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Emmanuel Maquet,5661,155,14,162,Parliament,"['802848743045402624']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA346054,,Somme,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Anthoine Emmanuelle,5662,155,14,162,Parliament,"['807531084678385664']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719318,,Drôme,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Ciotti Éric,5663,155,14,162,Parliament,"['87886754']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA330240,,Alpes-Maritimes,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Diard Éric,5664,155,14,162,Parliament,"['252514946']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267440,,Bouches-du-Rhône,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Pauget Éric,5665,155,14,162,Parliament,"['770957104152768512']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718784,,Alpes-Maritimes,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Straumann Éric,5666,155,14,162,Parliament,"['54132631']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA334654,,Haut-Rhin,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Woerth Éric,5667,155,14,162,Parliament,"['390156878']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2960,,Oise,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Di Fabien Filippo,5668,155,14,162,Parliament,"['881156720155930624']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720386,,Moselle,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Brun Fabrice,5669,155,14,162,Parliament,"['2999458558']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718838,,Ardèche,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Franck Marlin,5670,155,14,162,Parliament,"['380990041']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2086,,Essonne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Cornut-Gentille François,5671,155,14,162,Parliament,"['568029290']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA923,,Haute-Marne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Geneviève Levy,5674,155,14,162,Parliament,"['842115066333941760']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267378,,Var,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Cherpion Gérard,5675,155,14,162,Parliament,"['532466430']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA856,,Vosges,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Carrez Gilles,5677,155,14,162,Parliament,"['513300752']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA746,,Val-de-Marne,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Gilles Lurton,5678,155,14,162,Parliament,"['516342405']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606712,,Ille-et-Vilaine,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Guillaume Larrivé,5679,155,14,162,Parliament,"['177662118']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267785,,Yonne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Guillaume Peltier,5680,155,14,162,Parliament,"['239867102']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719946,,Loir-et-Cher,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Guy Teissier,5681,155,14,162,Parliament,"['570703871']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2796,,Bouches-du-Rhône,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Boucard Ian,5682,155,14,162,Parliament,"['486927132']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721816,,Territoire de Belfort,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Isabelle Valentin,5683,155,14,162,Parliament,"['3060130660']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA643134,,Haute-Loire,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Cattin Jacques,5684,155,14,162,Parliament,"['858073347581771776']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA767,,Haut-Rhin,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Grelier Jean-Carles,5685,155,14,162,Parliament,"['905713485329391616']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267318,,Sarthe,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Jean-Charles Taugourdeau,5686,155,14,162,Parliament,"['214110691']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2792,,Maine-et-Loire,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bouchet Jean-Claude,5687,155,14,162,Parliament,"['224265528']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA336316,,Vaucluse,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Ferrara Jean-Jacques,5689,155,14,162,Parliament,"['725260365135765504']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA643103,,Corse-du-Sud,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Gaultier Jean-Jacques,5690,155,14,162,Parliament,"['783216646299193344']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267324,,Vosges,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Jean-Luc Reitzer,5692,155,14,162,Parliament,"['869905383837577216']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2529,,Haut-Rhin,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Jean-Marie Sermier,5693,155,14,162,Parliament,"['753210819379421184']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267204,,Jura,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Door Jean-Pierre,5694,155,14,162,Parliament,"['492616495']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267289,,Loiret,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Jean-Pierre Vigier,5695,155,14,162,Parliament,"['3906442118']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607090,,Haute-Loire,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Jérôme Nury,5697,155,14,162,Parliament,"['47626354']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720644,,Orne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Aubert Julien,5699,155,14,162,Parliament,"['520259649']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA609726,,Vaucluse,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Dive Julien,5700,155,14,162,Parliament,"['106557131']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA712015,,Aisne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Laurence Trastour-Isnart,5701,155,14,162,Parliament,"['862305784188874752']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718780,,Alpes-Maritimes,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Fur Le Marc,5704,155,14,162,Parliament,"['110459051']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1874,,Côtes-d'Armor,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Dubois Marianne,5705,155,14,162,Parliament,"['459093089']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA342935,,Loiret,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Martial Saddier,5707,155,14,162,Parliament,"['2769842216']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267527,,Haute-Savoie,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Maxime Minot,5708,155,14,162,Parliament,"['2846410672']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720630,,Oise,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Michel Vialay,5710,155,14,162,Parliament,"['1482313339']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721968,,Yvelines,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Michèle Tabarot,5711,155,14,162,Parliament,"['514546669']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267794,,Alpes-Maritimes,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bassire Nathalie,5713,155,14,162,Parliament,"['884660403648831488']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721046,,Réunion,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Forissier Nicolas,5714,155,14,162,Parliament,"['3832713568']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1327,,Indre,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Dassault Olivier,5715,155,14,162,Parliament,"['796057206']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA998,,Oise,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Marleix Olivier,5716,155,14,162,Parliament,"['2305186092']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606098,,Eure-et-Loir,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Patrice Verchère,5717,155,14,162,Parliament,"['3648866671']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA334843,,Rhône,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Hetzel Patrick,5718,155,14,162,Parliament,"['4733398756']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608416,,Bas-Rhin,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Gosselin Philippe,5719,155,14,162,Parliament,"['380373029']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA266797,,Manche,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Cordier Pierre,5720,155,14,162,Parliament,"['2529855122']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718850,,Ardennes,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Pierre Vatin,5721,155,14,162,Parliament,"['930776406774173696']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720586,,Oise,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Dumont Pierre-Henri,5722,155,14,162,Parliament,"['28214411']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720684,,Pas-de-Calais,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Raphaël Schellenberger,5723,155,14,162,Parliament,"['111266206']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721314,,Haut-Rhin,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Reda Robin,5725,155,14,162,Parliament,"['41844495']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721678,,Essonne,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Huyghe Sébastien,5726,155,14,162,Parliament,"['85541760']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267200,,Nord,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Leclerc Sébastien,5727,155,14,162,Parliament,"['827139373913223168']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA340853,,Calvados,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Stéphane Viry,5728,155,14,162,Parliament,"['4842549479']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721474,,Vosges,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bazin Thibault,5729,155,14,162,Parliament,"['1970541246']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642847,,Meurthe-et-Moselle,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Bazin-Malgras Valérie,5730,155,14,162,Parliament,"['864248206514946048']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718884,,Aube,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Beauvais Valérie,5731,155,14,162,Parliament,"['1503236472']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720210,,Marne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Boyer Valérie,5732,155,14,162,Parliament,"['276934698']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA330684,,Bouches-du-Rhône,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Lacroute Valérie,5733,155,14,162,Parliament,"['554183197']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA609245,,Seine-et-Marne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Louwagie Véronique,5734,155,14,162,Parliament,"['724577257']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608016,,Orne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Descoeur Vincent,5735,155,14,162,Parliament,"['137338942']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA330909,,Cantal,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Rolland Vincent,5736,155,14,162,Parliament,"['844476456164114432']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA266808,,Savoie,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Duby-Muller Virginie,5737,155,14,162,Parliament,"['531550143']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608826,,Haute-Savoie,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Breton Xavier,5738,155,14,162,Parliament,"['110940366']",Les Républicains,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA330008,,Ain,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31626 +Aude Luquet,5739,152,15,163,Parliament,"['374370615']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721530,,Seine-et-Marne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Brahim Hammouche,5740,152,15,163,Parliament,"['863383857072140288']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720326,,Moselle,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bruno Duvergé,5741,152,15,163,Parliament,"['2910111251']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720652,,Pas-de-Calais,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bruno Fuchs,5742,152,15,163,Parliament,"['115715214']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722284,,Haut-Rhin,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bruno Joncour,5743,152,15,163,Parliament,"['2348352426']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719210,,Côtes-d'Armor,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bruno Millienne,5744,152,15,163,Parliament,"['455602715']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721976,,Yvelines,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Cyrille Isaac-Sibille,5745,152,15,163,Parliament,"['2279236686']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722374,,Rhône,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Jacquier-Laforge Élodie,5746,152,15,163,Parliament,"['107393186']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719874,,Isère,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Balanant Erwan,5747,152,15,163,Parliament,"['17137760']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719558,,Finistère,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Frédéric Petit,5749,152,15,163,Parliament,"['862575147085164544']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721182,,Français établis hors de France,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bannier Géraldine,5750,152,15,163,Parliament,"['866695760905154560']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720256,,Mayenne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Florennes Isabelle,5751,152,15,163,Parliament,"['864856599021727744']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721742,,Hauts-de-Seine,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bourlanges Jean-Louis,5752,152,15,163,Parliament,"['864160956070469632']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721608,,Hauts-de-Seine,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Jean-Luc Lagleize,5753,152,15,163,Parliament,"['118977224']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719504,,Haute-Garonne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Barrot Jean-Noël,5754,152,15,163,Parliament,"['865482011523166208']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721836,,Yvelines,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Jean-Paul Mattei,5755,152,15,163,Parliament,"['985802003149402113']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720728,,Pyrénées-Atlantiques,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Cubertafon Jean-Pierre,5756,152,15,163,Parliament,"['912024416271392768']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719266,,Dordogne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Jimmy Pahun,5757,152,15,163,Parliament,"['244026421']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720334,,Morbihan,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Josy Poueyto,5758,152,15,163,Parliament,"['1890087739']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720720,,Pyrénées-Atlantiques,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Benin Justine,5759,152,15,163,Parliament,"['881887452591517696']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720968,,Guadeloupe,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Laurence Vichnievsky,5760,152,15,163,Parliament,"['85308962']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720704,,Puy-de-Dôme,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Garcia Laurent,5761,152,15,163,Parliament,"['786575225316110336']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720178,,Meurthe-et-Moselle,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Fesneau Marc,5762,152,15,163,Parliament,"['606371561']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719938,,Loir-et-Cher,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Deprez-Audebert Marguerite,5763,152,15,163,Parliament,"['920588743']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720598,,Pas-de-Calais,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +De Marielle Sarnez,"6667, 5764","361, 152","31, 15","163, 192",Parliament,"['303885267']",Mouvement Démocrate,"https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA717151, https://www.europarl.europa.eu/meps/en/4335/MARIELLE_DE+SARNEZ_home.html",,"Paris, France",11,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www2.assemblee-nationale.fr/deputes/liste/tableau",,"France, European Parliament","7, 27","30, 32",31624 +Mathiasin Max,5766,152,15,163,Parliament,"['582980672']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720976,,Guadeloupe,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Laqhila Mohamed,5769,152,15,163,Parliament,"['402214102']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718978,,Bouches-du-Rhône,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Essayan Nadia,5770,152,15,163,Parliament,"['531618516']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719044,,Cher,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Elimas Nathalie,5771,152,15,163,Parliament,"['304899435']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720924,,Val-d'Oise,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Nicolas Turquois,5772,152,15,163,Parliament,"['864844727828582400']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722162,,Vienne,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Gallerneau Patricia,5773,152,15,163,Parliament,"['386751099']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721992,,Vendée,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Mignola Patrick,5774,152,15,163,Parliament,"['1462132418']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721418,,Savoie,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Berta Philippe,5775,152,15,163,Parliament,"['863333535066836993']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719488,,Gard,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bolo Philippe,5776,152,15,163,Parliament,"['2157820581']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720162,,Maine-et-Loire,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Latombe Philippe,5777,152,15,163,Parliament,"['560299831']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721984,,Vendée,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Michel-Kleisbauer Philippe,5778,152,15,163,Parliament,"['294655305']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721734,,Var,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Ramos Richard,5779,152,15,163,Parliament,"['863039952401170432']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720092,,Loiret,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +El Haïry Sarah,5780,152,15,163,Parliament,"['91376641']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720002,,Loire-Atlantique,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Sylvain Waserman,5782,152,15,163,Parliament,"['81371982']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720746,,Bas-Rhin,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Robert Thierry,5783,152,15,163,Parliament,"['461870701']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA610733,,Réunion,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bru Vincent,5784,152,15,163,Parliament,"['866255052104769538']",Mouvement Démocrate,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720772,,Pyrénées-Atlantiques,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31624 +Bilde Bruno,5785,159,16,164,Parliament,"['1635233568']",Front National,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720822,,Pas-de-Calais,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31720 +Azerot Bruno Nestor,5786,144,16,164,Parliament,"['1506150265']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA610634,,Martinique,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Emmanuelle Ménard,5787,159,16,164,Parliament,"['883251500138598400']",Front National,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719608,,Hérault,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31720 +Collard Gilbert,"5788, 12940","159, 512","62, 16",164,Parliament,"['471163803']","Front National, Rassemblement national",https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA606212,,"France, Gard",2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,"France, European Parliament","7, 27","30, 43",31720 +Jean Lassalle,5789,153,16,164,Parliament,"['102722347']",Régions et Peuples Solidaires,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1838,,Pyrénées-Atlantiques,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Acquaviva Jean-Félix,5790,153,16,164,Parliament,"['3147407366']",Régions et Peuples Solidaires,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719146,,Haute-Corse,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Aliot Louis,"6648, 5793","232, 159","16, 35","232, 164",Parliament,"['316956459']","Front National, Front national","https://www.europarl.europa.eu/meps/en/30190/LOUIS_ALIOT_home.html, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720798",,"Pyrénées-Orientales, France",2,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www2.assemblee-nationale.fr/deputes/liste/tableau",,"France, European Parliament","7, 27","30, 32",31720 +Ludovic Pajot,5794,159,16,164,Parliament,"['496370501']",Front National,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720606,,Pas-de-Calais,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31720 +Le Marine Pen,"6671, 5796","232, 159","16, 35","232, 164",Parliament,"['217749896']","Front National, Front national","https://www.europarl.europa.eu/meps/en/28210/MARINE_LE+PEN_home.html, https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720614",,"France, Pas-de-Calais",11,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www2.assemblee-nationale.fr/deputes/liste/tableau",,"France, European Parliament","7, 27","30, 32",31720 +Castellani Michel,5797,153,16,164,Parliament,"['529798328']",Régions et Peuples Solidaires,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719138,,Haute-Corse,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Dupont-Aignan Nicolas,5798,161,16,164,Parliament,"['38170599']",Debout la France,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1206,,Essonne,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Falorni Olivier,5799,151,16,164,Parliament,"['536485159']",Parti Radical de Gauche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605694,,Charente-Maritime,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31230 +Colombani Paul-André,5800,153,16,164,Parliament,"['4073986679']",Régions et Peuples Solidaires,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719286,,Corse-du-Sud,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Chenu Sébastien,5801,159,16,164,Parliament,"['493833484']",Front National,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720468,,Nord,19,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31720 +Pinel Sylvia,5802,151,16,164,Parliament,"['358886584']",Parti Radical de Gauche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA336175,,Tarn-et-Garonne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31230 +Boris Vallaud,5803,162,17,170,Parliament,"['881933353435398144']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719930,,Landes,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Cécile Untermaier,5804,162,17,170,Parliament,"['970250112']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608695,,Saône-et-Loire,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Christian Hutin,5805,162,17,170,Parliament,"['4428131961']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA333818,,Nord,13,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Beaune Christine Pires,5806,162,17,170,Parliament,"['938843677']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608172,,Puy-de-Dôme,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Bouillon Christophe,5807,162,17,170,Parliament,"['295304575']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267233,,Seine-Maritime,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +David Habib,5808,162,17,170,Parliament,"['4714098677']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1592,,Pyrénées-Atlantiques,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Batho Delphine,5809,162,17,170,Parliament,"['263572557']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA335999,,Deux-Sèvres,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Dominique Potier,5810,162,17,170,Parliament,"['450644069']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA607553,,Meurthe-et-Moselle,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Bareigts Ericka,5811,162,17,170,Parliament,"['34898575']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA610681,,Réunion,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +François Pupponi,5812,162,17,170,Parliament,"['413819531']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA405480,,Val-d'Oise,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +George Pau-Langevin,5813,162,17,170,Parliament,"['81063019']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA335532,,Paris,15,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Biémouret Gisèle,5814,162,17,170,Parliament,"['947822287']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA508,,Gers,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Garot Guillaume,5815,162,17,170,Parliament,"['374055885']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA333285,,Mayenne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Hélène Vainqueur-Christophe,5816,145,17,170,Parliament,"['586885949']",Parti Progressiste Martiniquais,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA643145,,Guadeloupe,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Hervé Saulignac,5817,162,17,170,Parliament,"['83424512']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA340343,,Ardèche,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Bricout Jean-Louis,5818,162,17,170,Parliament,"['3028135792']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA605069,,Aisne,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Joaquim Pueyo,5820,162,17,170,Parliament,"['3092785427']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA608011,,Orne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Aviragnet Joël,5821,162,17,170,Parliament,"['2712326416']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA642764,,Haute-Garonne,8,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Dumont Laurence,5823,162,17,170,Parliament,"['851502935511101440']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1198,,Calvados,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Carvounas Luc,5824,162,17,170,Parliament,"['1006325990']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA429893,,Val-de-Marne,9,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Karamanli Marietta,5826,162,17,170,Parliament,"['1189104433']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA335054,,Sarthe,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Dussopt Olivier,5827,150,17,170,Parliament,"['278063562']",Minister,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA330357,"['Minister']",Ardèche,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Faure Olivier,5828,162,17,170,Parliament,"['213754264']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA609332,,Seine-et-Marne,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Juanico Régis,5829,162,17,170,Parliament,"['230495042']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA332614,,Loire,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Letchimy Serge,5830,145,17,170,Parliament,"['470370230']",Parti Progressiste Martiniquais,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA337483,,Martinique,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Foll Le Stéphane,5831,162,17,170,Parliament,"['415498269']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA588886,,Sarthe,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Rabault Valérie,5832,162,17,170,Parliament,"['443129202']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA609590,,Tarn-et-Garonne,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Adrien Taquet,5833,149,12,151,Parliament,"['539842219']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722086,,Hauts-de-Seine,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Agnès Bodo Firmin Le,5834,154,13,156,Parliament,"['1979469114']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267780,,Seine-Maritime,7,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Agnès Thill,5835,149,12,151,Parliament,"['827581398965944320']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720568,,Oise,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Aina Kuric,5836,149,12,151,Parliament,"['4070381506']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720214,,Marne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alain Bruneel,5837,144,10,146,Parliament,"['826026073540481024']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720546,,Nord,16,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +Alain David,5838,162,17,170,Parliament,"['861853257559420928']",Parti Socialiste,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA1008,,Gironde,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31320 +Alain Perea,5839,149,12,151,Parliament,"['3124227529']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718802,,Aude,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alain Tourret,5840,149,12,151,Parliament,"['538968658']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA2828,,Calvados,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Albane Gaillot,5841,149,12,151,Parliament,"['315284579']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721246,,Val-de-Marne,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alexandra Louis,5842,149,12,151,Parliament,"['866826365152235520']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718918,,Bouches-du-Rhône,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alexandra Ardisson Valetta,5843,149,12,151,Parliament,"['849566433138933760']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718768,,Alpes-Maritimes,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alexandre Freschi,5844,149,12,151,Parliament,"['2568594594']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720030,,Lot-et-Garonne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alexandre Holroyd,5845,149,12,151,Parliament,"['2863717025']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721150,,Français établis hors de France,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Alice Thourot,5846,149,12,151,Parliament,"['866199742073712640']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719302,,Drôme,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Amal-Amélia Lakrafi,5847,149,12,151,Parliament,"['806865153472004096']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721004,,Français établis hors de France,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Amélie De Montchalin,5848,149,12,151,Parliament,"['800435764966215680']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721670,,Essonne,6,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +André Chassaigne,5849,144,10,146,Parliament,"['532293856']",Parti Communiste Français,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267306,,Puy-de-Dôme,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31220 +André Villiers,5850,154,13,156,Parliament,"['866589563023749120']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA421348,,Yonne,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Annaïg Le Meur,5852,149,12,151,Parliament,"['862791076633083904']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719388,,Finistère,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne Blanc,5853,149,12,151,Parliament,"['917647276176273408']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718990,,Aveyron,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne Brugnera,5854,149,12,151,Parliament,"['582220122']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721328,,Rhône,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne Genetet,5855,149,12,151,Parliament,"['570133214']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721024,,Français établis hors de France,11,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne-Christine Lang,5856,149,12,151,Parliament,"['977015028']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA643205,,Paris,10,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne-France Brunet,5857,149,12,151,Parliament,"['864509060816793600']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720116,,Loire-Atlantique,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne-Laure Cattelot,5858,149,12,151,Parliament,"['372686353']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA720520,,Nord,12,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anne-Laurence Petel,5859,149,12,151,Parliament,"['1415195768']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA718930,,Bouches-du-Rhône,14,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Annick Girardin,5860,149,12,151,Parliament,"['2517526903']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA337633,,Saint-Pierre-et-Miquelon,1,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Annie Chapelier,5861,149,12,151,Parliament,"['864528441303027712']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719448,,Gard,4,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Annie Vidal,5862,149,12,151,Parliament,"['864199451375751168']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA722102,,Seine-Maritime,2,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Anthony Cellier,5863,149,12,151,Parliament,"['865478836053344257']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA719440,,Gard,3,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Antoine Herth,5864,154,13,156,Parliament,"['377992263']",Union des Démocrates Radicaux et Liberaux,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA267355,,Bas-Rhin,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30,31430 +Benjamin Griveaux,5865,149,12,151,Parliament,"['317655205']",En Marche,https://www2.assemblee-nationale.fr/deputes/fiche/OMC_PA721560,,Paris,5,https://www2.assemblee-nationale.fr/deputes/liste/tableau,,France,7,30, +Arto Satonen,"5866, 11637",163,18,173,Parliament,"['5721792']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/784.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Sofia Vikman,"5867, 11670",163,18,173,Parliament,"['20359688']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1134.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Jyrki Kasvi,5868,164,19,174,Parliament,"['22250610']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/771.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Kankaanniemi Toimi,5869,165,20,175,Parliament,"['3548206763']",Christian Democrats,https://www.eduskunta.fi/EN/kansanedustajat/Pages/175.aspx,,Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14520 +Antti Kaikkonen,"5870, 11536",166,21,176,Parliament,"['26269383']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/772.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Heinonen Timo,"11515, 5871","163, 166",18,173,Parliament,"['27205855']","Centre Party, National Coalition Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/967.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42","14620, 14810" +Lehtomäki Paula,5872,166,21,176,Parliament,"['2619505318']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/581.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Haavisto Pekka,"5873, 11506",164,19,174,Parliament,"['30931835']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/118.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14110 +Annika Lapintie,5874,167,22,178,Parliament,"['34251762']",Left Alliance,https://www.eduskunta.fi/EN/kansanedustajat/Pages/479.aspx,,Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14223 +Mikaela Nylander,5875,168,23,179,Parliament,"['262158312']",Swedish People's Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/769.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14901 +Jutta Urpilainen,"5876, 11660",169,24,180,Parliament,"['34611886']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/808.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Arja Juvonen,"5877, 11534",170,20,175,Parliament,"['1053341616']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1129.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Jussi Niinistö,5878,171,25,182,Parliament,"['118691623']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/856.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Mäkelä Outi,5879,163,18,173,Parliament,"['37722572']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/940.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Paatero Sirpa,"11608, 5880",169,24,180,Parliament,"['40931441']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/887.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Paula Risikko,"5881, 11627",163,18,173,Parliament,"['62561015']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/809.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Essayah Sari,"11499, 5883",165,26,183,Parliament,"['66965573']","Christian Democrats, Christian Democrats in Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/778.aspx,,"Electoral district of Savo-Karelia, Varsinais-Suomi",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14520 +Grahn-Laasonen Sanni,"5884, 11502",163,18,173,Parliament,"['70356692']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1100.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Anneli Kiljunen,"5885, 11547",169,24,180,Parliament,"['432317492']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/791.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Modig Silvia,"5886, 13354","365, 167","22, 28","397, 178",Parliament,"['87206214']","Vasemmistoliitto, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1153.aspx,,"Helsinki, Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,"Finland, European Parliament","6, 27","31, 43",14223 +Multala Sari,"5887, 11590",163,18,173,Parliament,"['1709374759']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1299.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Blomqvist Thomas,5888,168,23,179,Parliament,"['60706671']",Swedish People's Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/923.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14901 +Anne-Mari Virolainen,"5889, 11672",163,18,173,Parliament,"['107416641']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/948.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Anna-Maja Henriksson,"5890, 11517",168,23,179,Parliament,"['114710545']","Swedish People's Party in Finland, Swedish People's Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/941.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14901 +Pia Viitanen,"11669, 5891",169,24,180,Parliament,"['118807976']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/511.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Aino-Kaisa Pekonen,"5892, 11610",167,22,178,Parliament,"['127149761']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1097.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Lenita Toivakka,5893,163,18,173,Parliament,"['131115136']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/932.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Sinuhe Wallinheimo,"5894, 11662",163,18,173,Parliament,"['149045919']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1131.aspx,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Sari Sarkomaa,"11636, 5896",163,18,173,Parliament,"['201634756']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/612.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Filatov Tarja,"5897, 11500",169,24,180,Parliament,"['234728380']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/451.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Antti Lindtman,"5898, 11578",169,24,180,Parliament,"['236378573']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1147.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Eero Heinäluoma,"5899, 12880","169, 356","30, 24","386, 180",Parliament,"['238520837']","Social Democratic Party of Finland, Suomen Sosialidemokraattinen Puolue/Finlands Socialdemokratiska Parti",https://www.eduskunta.fi/EN/kansanedustajat/Pages/768.aspx,,"Helsinki, Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,"Finland, European Parliament","6, 27","31, 43",14320 +Arhinmäki Paavo,"11486, 5900",167,22,178,Parliament,"['245754053']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/917.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Hassi Satu,"5901, 11512",164,19,174,Parliament,"['252987054']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/363.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14110 +Jaana Pelkonen,"11611, 5902",163,18,173,Parliament,"['268165452']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1098.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Niinistö Ville,"13421, 5903","539, 164","19, 32",174,Parliament,"['333954467']","Green League, Vihreä liitto",https://www.eduskunta.fi/EN/kansanedustajat/Pages/956.aspx,,"Varsinais-Suomi, Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,"Finland, European Parliament","6, 27","31, 43",14110 +Biaudet Eva,"5904, 11491",168,23,179,Parliament,"['364866361']","Swedish People's Party in Finland, Swedish People's Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/351.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14901 +Huhtasaari Laura,"13099, 5905, 11524","170, 288","20, 62",175,Parliament,"['1606473660']","Perussuomalaiset, The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1333.aspx,,"Electoral district of Satakunta, Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,"Finland, European Parliament","6, 27","31, 42, 43",14820 +Kiuru Krista,"5906, 11551",169,24,180,Parliament,"['849211483']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/960.aspx,,Electoral district of Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Elovaara Tiina,5907,171,25,182,Parliament,"['137041631']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1320.aspx,,Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Feldt-Ranta Maarit,5908,169,24,180,Parliament,"['968034812']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/931.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Kristiina Salonen,"5910, 11632",169,24,180,Parliament,"['1156868430']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1102.aspx,,Electoral district of Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Kari Mika,"5911, 11541",169,24,180,Parliament,"['1156882332']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1133.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Guzenina Maria,"5912, 11504",169,24,180,Parliament,"['1160070895']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/926.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Huovinen Susanna,5913,169,24,180,Parliament,"['1201611697']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/565.aspx,,Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Tuppurainen Tytti,"5914, 11657",169,24,180,Parliament,"['1245996368']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1126.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Haatainen Tuula,"5915, 11505",169,24,180,Parliament,"['1619776406']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/538.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Orpo Petteri,"11606, 5916",163,18,173,Parliament,"['1339265868']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/947.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Myller Riitta,5917,169,24,180,Parliament,"['1484625438']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/203.aspx,,Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Päivi Räsänen,"5918, 11630",165,26,183,Parliament,"['1595292708']","Christian Democrats, Christian Democrats in Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/499.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14520 +Harri Jaskari,5919,163,18,173,Parliament,"['1933351879']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/972.aspx,,Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Alanko-Kahiluoto Outi,"11482, 5920",164,19,174,Parliament,"['41617380']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/914.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14110 +Emma Kari,"5921, 11540",164,19,174,Parliament,"['26545351']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1336.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14110 +Pekka Puska,5923,166,21,176,Parliament,"['2459464919']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/242.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Nasima Razmyar,5925,169,24,180,Parliament,"['555126030']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1202.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Rydman Wille,"5926, 11629",163,18,173,Parliament,"['114445729']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1282.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Pertti Salolainen,5927,163,18,173,Parliament,"['1399454394']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/259.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Sampo Terho,5928,171,25,182,Parliament,"['37956819']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1347.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Pilvi Torsti,5929,169,24,180,Parliament,"['25330173']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1378.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Antero Vartia,5931,164,19,174,Parliament,"['125374585']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1329.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Juhana Vartiainen,"11664, 5932",163,18,173,Parliament,"['229602587']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1330.aspx,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Ozan Yanar,5933,164,19,174,Parliament,"['274390028']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1332.aspx,,Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Adlercreutz Anders,"11480, 5935",168,23,179,Parliament,"['22895229']","Swedish People's Party in Finland, Swedish People's Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1306.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14901 +Anne Berner,5936,166,21,176,Parliament,"['123961126']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1313.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Elo Simon,5937,171,25,182,Parliament,"['245728736']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1317.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Carl Haglund,5938,168,23,179,Parliament,"['398610621']",Swedish People's Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1217.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14901 +Harakka Timo,"11509, 5939",169,24,180,Parliament,"['1374546126']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1326.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Harkimo Harry,"11511, 5940","172, 502",18,173,Parliament,"['1307265186']","Liike Nyt, Business Now",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1328.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42", +Johanna Karimäki,5941,164,19,174,Parliament,"['107674965']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/921.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Antero Laukkanen,"11573, 5942",165,26,183,Parliament,"['881961157']","Christian Democrats, Christian Democrats in Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1343.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14520 +Lauslahti Sanna,5943,163,18,173,Parliament,"['1001336184']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/934.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Elina Lepomäki,"11575, 5944",163,18,173,Parliament,"['181469205']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1279.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Leena Meri,"11588, 5945",170,20,175,Parliament,"['2811875701']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1349.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Kai Mykkänen,"11592, 5946",163,18,173,Parliament,"['2295945158']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1300.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Mika Niikko,"11600, 5947",170,20,175,Parliament,"['223191433']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1092.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Antti Rinne,"11626, 5949",169,24,180,Parliament,"['978423139']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1274.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Ruoho Veera,5950,163,18,173,Parliament,"['981793994']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1309.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Joona Räsänen,5951,169,24,180,Parliament,"['480723175']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1311.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Jani Toivola,5953,164,19,174,Parliament,"['61158246']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1114.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Kari Uotila,5955,167,22,178,Parliament,"['2326901058']",Left Alliance,https://www.eduskunta.fi/EN/kansanedustajat/Pages/507.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14223 +Matti Vanhanen,"11663, 5956",166,21,176,Parliament,"['2510659034']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/414.aspx,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Eerikki Viljanen,5957,166,21,176,Parliament,"['838473598830592000']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/913.aspx,,Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Ala-Nissilä Olavi,5958,166,21,176,Parliament,"['637315614']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/392.aspx,,Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Andersson Li,"5959, 11484",167,22,178,Parliament,"['72370342']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1310.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Eeva-Johanna Eloranta,"5961, 11497",169,24,180,Parliament,"['180358426']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1099.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Ilkka Kanerva,"5962, 11539",163,18,173,Parliament,"['4437649041']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/170.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Ilkka Kantola,5963,169,24,180,Parliament,"['110431658']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/954.aspx,,Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Esko Kiviranta,"11554, 5964",166,21,176,Parliament,"['910785559131541504']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/779.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Annika Saarikko,"5966, 11631",166,21,176,Parliament,"['137013308']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1157.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Saara-Sofia Sirén,"5967, 11643",163,18,173,Parliament,"['26616416']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1219.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Tavio Ville,"11653, 5969",170,20,175,Parliament,"['2163458821']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1327.aspx,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Stefan Wallin,5970,168,23,179,Parliament,"['1908320713']",Swedish People's Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/910.aspx,,Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14901 +Ari Jalonen,5971,171,25,182,Parliament,"['2173438587']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1124.aspx,,Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Jaana Laitinen-Pesola,5974,163,18,173,Parliament,"['2927314145']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1342.aspx,,Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Jari Myllykoski,"5975, 11593",167,22,178,Parliament,"['321240708']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1154.aspx,,Electoral district of Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Anttila Sirkka-Liisa,5976,166,21,176,Parliament,"['2791017785']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/127.aspx,,Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Jokinen Kalle,"5977, 11531",163,18,173,Parliament,"['2990552771']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1056.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Lehto Rami,"11574, 5978",170,20,175,Parliament,"['476136834']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1344.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Anne Louhelainen,5979,171,25,182,Parliament,"['377279927']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1150.aspx,,Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Juha Rehula,5980,166,21,176,Parliament,"['832020594']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/541.aspx,,Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Skinnari Ville,"5982, 11645",169,24,180,Parliament,"['470802762']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1316.aspx,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Martti Talja,5983,166,21,176,Parliament,"['2420459058']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1321.aspx,,Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Alatalo Mikko,5984,166,21,176,Parliament,"['2303077994']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/786.aspx,,Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Hakanen Pertti,5986,166,21,176,Parliament,"['2917622291']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1322.aspx,,Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Kiuru Pauli,"5987, 11552",163,18,173,Parliament,"['1701995137']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1137.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Anna Kontula,"11556, 5988",167,22,178,Parliament,"['203126022']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1155.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Marin Sanna,"11585, 5989",169,24,180,Parliament,"['1086378912']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1297.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Ilmari Nurminen,"5992, 11602",169,24,180,Parliament,"['361166408']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1302.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Olli-Poika Parviainen,5993,164,19,174,Parliament,"['41332997']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1304.aspx,,Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Arto Pirttilahti,"5994, 11615",166,21,176,Parliament,"['3030328341']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1101.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Sami Savio,"5995, 11638",170,20,175,Parliament,"['757524703779184640']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1314.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Sari Tanus,"5996, 11652",165,26,183,Parliament,"['3047691765']","Christian Democrats, Christian Democrats in Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1325.aspx,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14520 +Antti Häkkänen,"5998, 11527",163,18,173,Parliament,"['2322594456']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1334.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Heli Järvinen,"11535, 5999",164,19,174,Parliament,"['4337164347']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/930.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14110 +Jukka Kopra,"11559, 6000",163,18,173,Parliament,"['264072635']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1142.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Hanna Kosonen,"6001, 11562",166,21,176,Parliament,"['1009652892']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1338.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Kymäläinen Suna,6002,169,24,180,Parliament,"['817648940']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1144.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Jari Leppä,"6003, 11576",166,21,176,Parliament,"['858680358690320385', '858680358690320384']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/582.aspx,,"Electoral district of South-East Finland, Southeast Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Jari Lindström,6004,171,25,182,Parliament,"['2742650668']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1146.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Jani Mäkelä,"11595, 6005",170,20,175,Parliament,"['489523654']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1301.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Markku Pakkanen,6006,166,21,176,Parliament,"['2400113275']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/925.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Satu Taavitsainen,6007,169,24,180,Parliament,"['2545720602']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1319.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Kimmo Tiilikainen,6008,166,21,176,Parliament,"['79683478']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/790.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Ari Torniainen,"11655, 6009",166,21,176,Parliament,"['2985983711']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1120.aspx,,"Southeast Finland, Electoral district of South-East Finland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Kaj Turunen,6010,163,25,182,Parliament,"['1106251411']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1128.aspx,,Southeast Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Hannakaisa Heikkinen,"11513, 6012",166,21,176,Parliament,"['2462610792']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/938.aspx,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Elsi Katainen,"12889, 6014","311, 166","21, 63",176,Parliament,"['3017471855']","Centre Party, Suomen Keskusta",https://www.eduskunta.fi/EN/kansanedustajat/Pages/939.aspx,,"Finland, Savo-Karelia",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,"Finland, European Parliament","6, 27","31, 43",14810 +Kari Kulmala,6016,171,25,182,Parliament,"['3250176363']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1339.aspx,,Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Kääriäinen Seppo,6017,166,21,176,Parliament,"['2757862832']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/202.aspx,,Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Krista Mikkonen,"6018, 11589",164,19,174,Parliament,"['1122819409']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1298.aspx,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14110 +Merja Mäkisalo-Ropponen,"6019, 11597",169,24,180,Parliament,"['1246101558']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1087.aspx,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Raassina Sari,6021,163,18,173,Parliament,"['473057692']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1307.aspx,,Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Markku Rossi,6022,166,21,176,Parliament,"['2982321274']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/375.aspx,,Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Anu Vehviläinen,"6024, 11665",166,21,176,Parliament,"['1361341548']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/508.aspx,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Koski Susanna,6026,163,18,173,Parliament,"['136240607']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1337.aspx,,Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Antti Kurvinen,"11566, 6027",166,21,176,Parliament,"['2754956909']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1341.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Lintilä Mika,"11579, 6028",166,21,176,Parliament,"['2979870159']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/583.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Mats Nylund,6029,168,23,179,Parliament,"['142715610']",Swedish People's Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/943.aspx,,Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14901 +Puumala Tuomo,6030,166,21,176,Parliament,"['1137357900']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/946.aspx,,Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Mikko Savola,"11639, 6031",166,21,176,Parliament,"['123256851']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1106.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Joakim Strand,"6032, 11648",168,23,179,Parliament,"['1651183020']","Swedish People's Party in Finland, Swedish People's Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1318.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14901 +Maria Tolppanen,6033,169,24,180,Parliament,"['1107084654']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1116.aspx,,Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Peter Östman,"11678, 6035",165,26,183,Parliament,"['87524020']","Christian Democrats, Christian Democrats in Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1141.aspx,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14520 +Aalto Touko,6036,164,19,174,Parliament,"['34286780']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1346.aspx,,Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Honkonen Petri,"6038, 11521",166,21,176,Parliament,"['528665263']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1331.aspx,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Ihalainen Lauri,6039,169,24,180,Parliament,"['812949525459509248']",Social Democratic Party of Finland,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1121.aspx,,Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14320 +Anne Kalmari,"11538, 6040",166,21,176,Parliament,"['380283842']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/953.aspx,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Aila Paloniemi,6041,166,21,176,Parliament,"['882050436596891650']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/811.aspx,,Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Mauri Pekkarinen,"13191, 6042","311, 166","21, 63",176,Parliament,"['2827228161']","Centre Party, Suomen Keskusta",https://www.eduskunta.fi/EN/kansanedustajat/Pages/212.aspx,,Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,"Finland, European Parliament","6, 27","31, 43",14810 +Halmeenpää Hanna,6043,164,19,174,Parliament,"['3014339879']",Green League,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1324.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14110 +Hänninen Katja,"6044, 11528",167,22,178,Parliament,"['226161784']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1276.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Immonen Olli,"6045, 11530",170,20,175,Parliament,"['122343643']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1122.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Jarva Marisanna,6046,166,21,176,Parliament,"['2953766266']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1335.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Keränen Niilo,6047,166,21,176,Parliament,"['878198902775840769']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/573.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Korhonen Timo V.,6048,166,21,176,Parliament,"['2976426221']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/959.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Mattila Pirkko,6049,171,25,182,Parliament,"['878051096']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1152.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Parviainen Ulla,6050,166,21,176,Parliament,"['2921900507']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1303.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Juha Pylväs,"11619, 6051",166,21,176,Parliament,"['2949742905']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1305.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Hanna Sarkkinen,"6053, 11635",167,22,178,Parliament,"['1543023169']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1312.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Juha Sipilä,"11642, 6054",166,21,176,Parliament,"['212592239']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1108.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Eero Suutari,6055,163,18,173,Parliament,"['1678747466']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1111.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14620 +Mari-Leena Talvitie,"6056, 11651",163,18,173,Parliament,"['2416301818']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1323.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14620 +Tapani Tölli,6057,166,21,176,Parliament,"['1376595715']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/800.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Mirja Vehkaperä,6058,166,21,176,Parliament,"['2296182750']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/962.aspx,,Oulo,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Ville Vähämäki,"6059, 11674",170,20,175,Parliament,"['59748134']","The Finns Party, Finns Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1136.aspx,,"Oulo, Electoral district of Oulu",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14820 +Katri Kulmuni,"11565, 6060",166,21,176,Parliament,"['489383444']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1340.aspx,,"Electoral district of Lappi, Lapland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Kärnä Mikko,"11569, 6061",166,21,176,Parliament,"['531527946']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1348.aspx,,"Electoral district of Lappi, Lapland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Lohi Markus,"6062, 11580",166,21,176,Parliament,"['1448519120']","Centre Party, Centre Party of Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1149.aspx,,"Electoral district of Lappi, Lapland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14810 +Eeva-Maria Maijala,6063,166,21,176,Parliament,"['1376680387']",Centre Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1151.aspx,,Lapland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31,14810 +Markus Mustajärvi,"6064, 11591",167,22,178,Parliament,"['821389249471795200']","The Left Alliance, Left Alliance",https://www.eduskunta.fi/EN/kansanedustajat/Pages/802.aspx,,"Electoral district of Lappi, Lapland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14223 +Johanna Ojala-Niemelä,"11604, 6065",169,24,180,Parliament,"['1048156568192241664', '1246002565']","Social Democratic Party of Finland, The Finnish Social Democratic Party",https://www.eduskunta.fi/EN/kansanedustajat/Pages/971.aspx,,"Electoral district of Lappi, Lapland",,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42",14320 +Matti Torvinen,6066,171,25,182,Parliament,"['4820355543']",Blue Reform,https://www.eduskunta.fi/EN/kansanedustajat/Pages/1372.aspx,,Lapland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,31, +Löfström Mats,"6067, 11583","168, 166",23,179,Parliament,"['19682219']","Centre Party, Swedish People's Party in Finland",https://www.eduskunta.fi/EN/kansanedustajat/Pages/1345.aspx,,Electoral district of Åland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,"31, 42","14810, 14901" +Niinistö Sauli,6068,163,27,187,,"['37665086']",National Coalition Party,https://www.eduskunta.fi/EN/kansanedustajat/Pages/223.aspx,,,,,,Finland,6,31,14620 +Angela Vallina,6069,173,28,188,Parliament,"['2376830766']",Izquierda Unida,https://www.europarl.europa.eu/meps/en/125050/ANGELA_VALLINA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33220 +Adina-Ioana Vălean,"6070, 12691",174,29,189,Parliament,"['42072558']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/37324/ADINA-IOANA_VALEAN_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",93430 +Agnieszka Kozlowska-Rajewicz,6071,175,29,189,Parliament,"['2362739336']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/124889/AGNIESZKA_KOZLOWSKA-RAJEWICZ_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Alessia Maria Mosca,6072,176,30,191,Parliament,"['14569308']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124868/ALESSIA+MARIA_MOSCA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Alexander Graf Lambsdorff,"6073, 8341","177, 428","52, 31","463, 192",Parliament,"['149299258']","FDP, Freie Demokratische Partei",https://www.europarl.europa.eu/meps/en/28242/ALEXANDER+GRAF_LAMBSDORFF_home.html,,Germany,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.bundestag.de/en/members",,"Germany, European Parliament","8, 27","29, 32",41420 +Alyn Smith,"6074, 12713, 15849","6, 178",32,193,Parliament,"['23056912']",Scottish National Party,"https://www.alynsmith.scot/stay_informed, https://www.europarl.europa.eu/meps/en/28508/ALYN_SMITH_home.html",,"Stirling, United Kingdom",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://members.parliament.uk/members/Commons",2020-02-01,"United Kingdom, European Parliament","27, 24","52, 43, 32",51902 +Amjad Bashir,6075,179,33,194,Parliament,"['2607360637']",Conservative Party,https://www.europarl.europa.eu/meps/en/124956/AMJAD_BASHIR_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Ana Gomes,6076,180,30,191,Parliament,"['771383605']",Partido Socialista,https://www.europarl.europa.eu/meps/en/28306/ANA_GOMES_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35311 +Anders Primdahl Vistisen,6077,181,33,194,Parliament,"['336089942']",Dansk Folkeparti,https://www.europarl.europa.eu/meps/en/124875/ANDERS+PRIMDAHL_VISTISEN_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,13720 +Anna Bildt Corazza Maria,6078,182,29,189,Parliament,"['29180679']",Moderaterna,https://www.europarl.europa.eu/meps/en/96674/ANNA+MARIA_CORAZZA+BILDT_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11620 +Annie Schreijer-Pierik,"12748, 6079",183,29,"189, 198",Parliament,"['2416391065']",Christen Democratisch Appèl,https://www.europarl.europa.eu/meps/en/125030/ANNIE_SCHREIJER-PIERIK_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22521 +Anthea Mcintyre,"12751, 6080",179,33,194,Parliament,"['1536804174']",Conservative Party,https://www.europarl.europa.eu/meps/en/111011/ANTHEA_MCINTYRE_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51620 +Arne Gericke,6081,184,33,194,Parliament,"['2789770352']",Familien-Partei Deutschlands,https://www.europarl.europa.eu/meps/en/124815/ARNE_GERICKE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Arne Lietz,6082,185,30,191,Parliament,"['1063589060']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/124839/ARNE_LIETZ_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Axel Voss,"6083, 12768",186,29,"189, 201",Parliament,"['246295381']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/96761/AXEL_VOSS_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Basterrechea Beatriz Becerra,6084,187,31,192,Parliament,"['156289017']",Independiente,https://www.europarl.europa.eu/meps/en/125040/BEATRIZ_BECERRA+BASTERRECHEA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Benedek Javor,6085,188,32,193,Parliament,"['171153229']",Együtt 2014 - Párbeszéd Magyarországért,https://www.europarl.europa.eu/meps/en/124721/BENEDEK_JAVOR_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,86340 +Biljana Borzan,"6086, 12787",189,30,"204, 191",Parliament,"['1560926802']",Socijaldemokratska partija Hrvatske,https://www.europarl.europa.eu/meps/en/112748/BILJANA_BORZAN_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",81223 +Birgit Sippel,"12790, 6087",185,30,"200, 191",Parliament,"['1580316804']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96932/BIRGIT_SIPPEL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Andrzej Bogdan Zdrojewski,6088,175,29,189,Parliament,"['365363757']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/124893/BOGDAN+ANDRZEJ_ZDROJEWSKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Brian Hayes,6089,190,29,189,Parliament,"['228673882']",Fine Gael Party,https://www.europarl.europa.eu/meps/en/118658/BRIAN_HAYES_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Cecile Kashetu Kyenge,6090,176,30,191,Parliament,"['140133595']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124801/CECILE+KASHETU_KYENGE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Cecilia Wikstrom,6091,191,31,192,Parliament,"['531328950']",Liberalerna,https://www.europarl.europa.eu/meps/en/96677/CECILIA_WIKSTROM_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11420 +Aguilera Clara Eugenia Garcia,"6092, 12827",192,30,"207, 191",Parliament,"['939966774']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/125045/CLARA+EUGENIA_AGUILERA+GARCIA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33320 +Clare Moody,6093,193,30,191,Parliament,"['211175054']",Labour Party,https://www.europarl.europa.eu/meps/en/124944/CLARE_MOODY_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Claude Moraes,"12829, 6094",193,30,"208, 191",Parliament,"['819843415']",Labour Party,https://www.europarl.europa.eu/meps/en/4519/CLAUDE_MORAES_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Cristian Dan Preda,6095,194,29,189,Parliament,"['2165445573']",Independent,https://www.europarl.europa.eu/meps/en/96838/CRISTIAN+DAN_PREDA_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Adam Czeslaw Siekierski,"14595, 6096","195, 576",29,189,Parliament,"['589336079']","Polskie Stronnictwo Ludowe, Polish People's Party-Kukiz15","https://www.siekierski.pl, https://www.europarl.europa.eu/meps/en/23787/CZESLAW+ADAM_SIEKIERSKI_home.html",,Poland,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.sejm.gov.pl/english/poslowie/posel.html",,"Poland, European Parliament","27, 19","49, 32", +Daciana Octavia Sarbu,6097,196,30,191,Parliament,"['849071016']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/33989/DACIANA+OCTAVIA_SARBU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Glenis Willmott,6098,193,30,191,Parliament,"['106110469']",Labour Party,https://www.europarl.europa.eu/meps/en/35743/Dame_GLENIS_WILLMOTT_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Caspary Daniel,"6100, 12850",186,29,"189, 201",Parliament,"['17780822']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/28219/DANIEL_CASPARY_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Danuta Hübner Maria,"6101, 12854",175,29,"189, 190",Parliament,"['1934463319']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/96779/DANUTA+MARIA_HUBNER_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92435 +Bannerman Campbell David,6102,179,33,194,Parliament,"['70664947']",Conservative Party,https://www.europarl.europa.eu/meps/en/96912/DAVID_CAMPBELL+BANNERMAN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Casa David,"6103, 12856",197,29,"189, 213",Parliament,"['2279351990']",Partit Nazzjonalista,https://www.europarl.europa.eu/meps/en/28122/DAVID_CASA_home.html,,Malta,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",54620 +Coburn David,6104,198,34,214,Parliament,"['351009963']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124967/DAVID_COBURN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +David Martin,6105,193,30,191,Parliament,"['113583713']",Labour Party,https://www.europarl.europa.eu/meps/en/1403/DAVID_MARTIN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +David Mcallister,"12860, 6106",186,29,"189, 201",Parliament,"['17621447']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/124806/DAVID_MCALLISTER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Derek Vaughan,6108,193,30,191,Parliament,"['21707498']",Labour Party,https://www.europarl.europa.eu/meps/en/96918/DEREK_VAUGHAN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Dimitrios Papadimoulis,"6109, 12868",199,28,"188, 215",Parliament,"['249601317']",Coalition of the Radical Left,https://www.europarl.europa.eu/meps/en/28586/DIMITRIOS_PAPADIMOULIS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",34020 +Eider Gardiazabal Rubial,"12881, 6110",192,30,"207, 191",Parliament,"['582076945']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/96991/EIDER_GARDIAZABAL+RUBIAL_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33320 +Elissavet Vozemberg-Vrionidi,"6111, 12887",200,29,"189, 216",Parliament,"['385358076']",Nea Demokratia,https://www.europarl.europa.eu/meps/en/125065/ELISSAVET_VOZEMBERG-VRIONIDI_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",34511 +Enrico Gasbarra,6112,176,30,191,Parliament,"['15229068']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124817/ENRICO_GASBARRA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Calvet Chambon Enrique,6113,187,31,192,Parliament,"['2617481322']",Independiente,https://www.europarl.europa.eu/meps/en/129407/ENRIQUE_CALVET+CHAMBON_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Esteban Gonzalez Pons,"12902, 6114",201,29,"189, 217",Parliament,"['106231214']",Partido Popular,https://www.europarl.europa.eu/meps/en/125027/ESTEBAN_GONZALEZ+PONS_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33610 +Estefania Martinez Torres,6115,202,28,188,Parliament,"['154391771']",PODEMOS,https://www.europarl.europa.eu/meps/en/131749/ESTEFANIA_TORRES+MARTINEZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Eva Maydell,"6116, 12909",203,29,"189, 219",Parliament,"['2472445567']",Citizens for European Development of Bulgaria,https://www.europarl.europa.eu/meps/en/98341/EVA_MAYDELL_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",80510 +Fabio Masi Valeriano,"8231, 6117","204, 422","28, 53","188, 457",Parliament,"['14784765']","DIE LINKE., The Left Party",https://www.europarl.europa.eu/meps/en/124858/FABIO_DE+MASI_home.html,,Germany,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.bundestag.de/en/members",,"Germany, European Parliament","8, 27","29, 32","41223, 201709" +Castaldo Fabio Massimo,"12916, 6118",205,"34, 36",214,Parliament,"['1368850908']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124812/FABIO+MASSIMO_CASTALDO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Federley Fredrick,"6119, 12928",206,"31, 63",192,Parliament,"['18901336']",Centerpartiet,https://www.europarl.europa.eu/meps/en/124989/FREDRICK_FEDERLEY_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",11810 +Gabriel Mato,6120,201,29,189,Parliament,"['1371875510']",Partido Popular,https://www.europarl.europa.eu/meps/en/96936/GABRIEL_MATO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33610 +Gabriele Zimmer,6121,204,28,188,Parliament,"['2447738125']",DIE LINKE.,https://www.europarl.europa.eu/meps/en/28248/GABRIELE_ZIMMER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,201709 +Georgios Kyrtsos,"6122, 12935",200,29,"189, 216",Parliament,"['311951299']",Nea Demokratia,https://www.europarl.europa.eu/meps/en/125063/GEORGIOS_KYRTSOS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",34511 +Gerben-Jan Gerbrandy,6123,207,31,192,Parliament,"['30202381']",Democraten 66,https://www.europarl.europa.eu/meps/en/96940/GERBEN-JAN_GERBRANDY_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22330 +Gesine Meissner,6124,177,31,192,Parliament,"['98330202']",Freie Demokratische Partei,https://www.europarl.europa.eu/meps/en/96870/GESINE_MEISSNER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41420 +Bettini Goffredo Maria,6125,176,30,191,Parliament,"['379647647']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124819/GOFFREDO+MARIA_BETTINI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Hans-Olaf Henkel,6126,208,33,194,Parliament,"['379325675']",Liberal-Conservative Refomists,https://www.europarl.europa.eu/meps/en/124823/HANS-OLAF_HENKEL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Helga Trupel,6127,209,32,193,Parliament,"['16345369']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/28240/HELGA_TRUPEL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41113 +Herbert Reul,6128,186,29,189,Parliament,"['38171370']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/28225/HERBERT_REUL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Hudghton Ian,6130,178,32,193,Parliament,"['308677137']",Scottish National Party,https://www.europarl.europa.eu/meps/en/2338/IAN_HUDGHTON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51902 +Grassle Ingeborg,6131,186,29,189,Parliament,"['429065822']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/28220/INGEBORG_GRASSLE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Fernandez Inmaculada Rodriguez-Pinero,"12978, 6132",192,30,"207, 191",Parliament,"['381969506']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/125043/INMACULADA_RODRIGUEZ-PINERO+FERNANDEZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33320 +Garcia Iratxe Perez,"6134, 12981",192,30,"207, 191",Parliament,"['900231078']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/28298/IRATXE_GARCIA+PEREZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33320 +Ivan Stefanec,"6135, 12998",210,29,"189, 226",Parliament,"['2426902357']",Kresťanskodemokratické hnutie,https://www.europarl.europa.eu/meps/en/124929/IVAN_STEFANEC_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",96521 +Barandica Bilbao Izaskun,"6136, 13003",211,"31, 63",192,Parliament,"['1870872692']",Partido Nacionalista Vasco,https://www.europarl.europa.eu/meps/en/96922/IZASKUN_BILBAO+BARANDICA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33902 +Jerome Lavrilleux,6137,212,29,189,Parliament,"['879714670860541952']",-,https://www.europarl.europa.eu/meps/en/124731/JEROME_LAVRILLEUX_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Carver James,6138,198,34,214,Parliament,"['952267464']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124971/JAMES_CARVER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +James Nicholson,6139,213,33,194,Parliament,"['835659450']",Ulster Unionist Party,https://www.europarl.europa.eu/meps/en/1318/JAMES_NICHOLSON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51621 +Jaromir Stetina,6140,214,29,189,Parliament,"['2669428663']",TOP 09 a Starostové,https://www.europarl.europa.eu/meps/en/124702/JAROMIR_STETINA_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82530 +Couso Javier Permuy,6141,173,28,188,Parliament,"['251290516']",Izquierda Unida,https://www.europarl.europa.eu/meps/en/125997/JAVIER_COUSO+PERMUY_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33220 +Jean Lambert,6142,215,32,193,Parliament,"['380226093']",Green Party,https://www.europarl.europa.eu/meps/en/4531/JEAN_LAMBERT_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,53110 +Evans Jill,"13034, 6144",217,32,"233, 193",Parliament,"['93709885']",Plaid Cymru - Party of Wales,https://www.europarl.europa.eu/meps/en/4550/JILL_EVANS_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51901 +Jill Seymour,6145,198,34,214,Parliament,"['866252216']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124950/JILL_SEYMOUR_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Baalen Cornelis Johannes Van,6146,218,31,192,Parliament,"['43407217']",Volkspartij voor Vrijheid en Democratie,https://www.europarl.europa.eu/meps/en/96937/JOHANNES+CORNELIS_VAN+BAALEN_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22420 +Arnott Jonathan,6147,198,34,214,Parliament,"['112413126']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124958/JONATHAN_ARNOTT_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Blanco Jose Lopez,6148,192,30,191,Parliament,"['2976750778']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/125044/JOSE_BLANCO+LOPEZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33320 +Fernandes Jose Manuel,"6149, 13055",219,29,"189, 235",Parliament,"['2785158383']",Partido Social Democrata,https://www.europarl.europa.eu/meps/en/96899/JOSE+MANUEL_FERNANDES_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",35313 +Josep-Maria Terricabras,6150,220,32,193,Parliament,"['1170514248']",Esquerra Republicana de Catalunya,https://www.europarl.europa.eu/meps/en/124932/JOSEP-MARIA_TERRICABRAS_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Abaunz Josu Juaristi,6151,221,28,188,Parliament,"['2320688816']",EH BILDU,https://www.europarl.europa.eu/meps/en/125051/JOSU_JUARISTI+ABAUNZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33902 +Aguilar Fernando Juan López,"13060, 6152",192,30,"207, 191",Parliament,"['449951300']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/96812/JUAN+FERNANDO_LOPEZ+AGUILAR_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33320 +Julia Reid,6153,198,34,214,Parliament,"['43554444']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/106202/JULIA_REID_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Julie Ward,"13065, 6154",193,30,"208, 191",Parliament,"['1354570123']",Labour Party,https://www.europarl.europa.eu/meps/en/124963/JULIE_WARD_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Kaja Kallas,6155,222,31,192,Parliament,"['68964628']",Eesti Reformierakond,https://www.europarl.europa.eu/meps/en/124697/KAJA_KALLAS_home.html,,Estonia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,83430 +Kay Swinburne,6157,179,33,194,Parliament,"['2559483123']",Conservative Party,https://www.europarl.europa.eu/meps/en/96920/KAY_SWINBURNE_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Keith Taylor,6158,215,32,193,Parliament,"['310221185']",Green Party,https://www.europarl.europa.eu/meps/en/102931/KEITH_TAYLOR_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,53110 +Buchner Klaus,"13086, 6159","548, 224",32,193,Parliament,"['2257770468']","Ökologisch-Demokratische Partei, Ökologisch-Demokratische Partei",https://www.europarl.europa.eu/meps/en/124818/KLAUS_BUCHNER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Lambert Nistelrooij Van,6160,183,29,189,Parliament,"['190383639']",Christen Democratisch Appèl,https://www.europarl.europa.eu/meps/en/28165/LAMBERT_VAN+NISTELROOIJ_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22521 +Christoforou Lefteris,"6161, 13101",225,29,"189, 241",Parliament,"['4022826012']",Democratic Rally,https://www.europarl.europa.eu/meps/en/26837/LEFTERIS_CHRISTOFOROU_home.html,,Cyprus,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Liadh Ni Riada,6162,226,28,188,Parliament,"['2239747586']",Sinn Fein,https://www.europarl.europa.eu/meps/en/124987/LIADH_NI+RIADA_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,53951 +De Geringer Joanna Lidia Oedenberg,6163,227,30,191,Parliament,"['200053080']",Bezpartyjna,https://www.europarl.europa.eu/meps/en/28377/LIDIA+JOANNA_GERINGER+DE+OEDENBERG_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Linda Mcavan,6164,193,30,191,Parliament,"['166509226']",Labour Party,https://www.europarl.europa.eu/meps/en/2327/LINDA_MCAVAN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Caldentey Lola Sanchez,6165,202,28,188,Parliament,"['2397043430']",PODEMOS,https://www.europarl.europa.eu/meps/en/125035/LOLA_SANCHEZ+CALDENTEY_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Boylan Lynn,6167,226,28,188,Parliament,"['263243802']",Sinn Fein,https://www.europarl.europa.eu/meps/en/124984/LYNN_BOYLAN_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,53951 +Maite Pagazaurtundua Ruiz,"6168, 13130","229, 550","31, 63",192,Parliament,"['3351784787']","Delegación Ciudadanos Europeos, Unión, Progreso y Democracia",https://www.europarl.europa.eu/meps/en/125038/MAITE_PAGAZAURTUNDUA+RUIZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33440 +Barbat Gimenez Maria Teresa,6169,212,31,192,Parliament,"['2388162240']",-,https://www.europarl.europa.eu/meps/en/135491/MARIA+TERESA_GIMENEZ+BARBAT_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Arena Maria,"13151, 6170",230,30,"247, 191",Parliament,"['143828745']",Parti Socialiste,https://www.europarl.europa.eu/meps/en/124936/MARIA_ARENA_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31320 +Lidia Maria Rodriguez Senra,6171,231,28,188,Parliament,"['2382179366']",Alternativa galega de esquerda en Europa,https://www.europarl.europa.eu/meps/en/125049/MARIA+LIDIA_SENRA+RODRIGUEZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Marian-Jean Marinescu,"13159, 6172",174,29,189,Parliament,"['90014101']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/33982/MARIAN-JEAN_MARINESCU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",93430 +Arnautu Marie-Christine,6173,232,35,232,Parliament,"['592616570']",Front national,https://www.europarl.europa.eu/meps/en/124748/MARIE-CHRISTINE_ARNAUTU_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Marlene Mizzi,6174,233,30,191,Parliament,"['1428138349']",Partit Laburista,https://www.europarl.europa.eu/meps/en/118858/MARLENE_MIZZI_home.html,,Malta,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,54320 +Anderson Martina,"13180, 6175",226,28,"242, 188",Parliament,"['192877061']",Sinn Fein,https://www.europarl.europa.eu/meps/en/113959/MARTINA_ANDERSON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",53951 +Carthy Matt,"6176, 13188, 16469","7, 556",28,188,Parliament,"['26586771']",Sinn Féin,"https://www.oireachtas.ie/en/members/member/Matt-Carthy.D.2020-02-08/, https://www.europarl.europa.eu/meps/en/124986/MATT_CARTHY_home.html",,"Ireland, Cavan-Monaghan",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2",,"Ireland, European Parliament","27, 11","54, 43, 32",53951 +Cramer Michael,6177,209,32,193,Parliament,"['2801885037']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/28238/MICHAEL_CRAMER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41113 +Dalli Miriam,"6179, 13211",233,30,"191, 250",Parliament,"['55207471']",Partit Laburista,https://www.europarl.europa.eu/meps/en/124970/MIRIAM_DALLI_home.html,,Malta,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",54320 +Miroslav Poche,6180,234,30,191,Parliament,"['2368809120']",Česká strana sociálně demokratická,https://www.europarl.europa.eu/meps/en/124699/MIROSLAV_POCHE_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82320 +Momchil Nekov,6181,235,30,191,Parliament,"['2826931688']",Bulgarian Socialist Party,https://www.europarl.europa.eu/meps/en/125013/MOMCHIL_NEKOV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,80220 +Benova Flasikova Monika,6182,236,30,191,Parliament,"['1361319566']",SMER-Sociálna demokracia,https://www.europarl.europa.eu/meps/en/23868/MONIKA_FLASIKOVA+BENOVA_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96423 +Helveg Morten Petersen,"13224, 6183",237,"31, 63",192,Parliament,"['25980581']",Det Radikale Venstre,https://www.europarl.europa.eu/meps/en/124872/MORTEN+HELVEG_PETERSEN_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",13410 +Gill Neena,"13232, 6184",193,30,"208, 191",Parliament,"['1374683634']",Labour Party,https://www.europarl.europa.eu/meps/en/4533/NEENA_GILL_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Childers Nessa,6185,194,30,191,Parliament,"['239862568']",Independent,https://www.europarl.europa.eu/meps/en/96603/NESSA_CHILDERS_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Deva Nirj,6186,179,33,194,Parliament,"['716640056']",Conservative Party,https://www.europarl.europa.eu/meps/en/4556/NIRJ_DEVA_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Bermejo Lopez Paloma,6188,173,28,188,Parliament,"['1492759764']",Izquierda Unida,https://www.europarl.europa.eu/meps/en/125047/PALOMA_LOPEZ+BERMEJO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33220 +Brannen Paul,6189,193,30,191,Parliament,"['1374924439']",Labour Party,https://www.europarl.europa.eu/meps/en/124954/PAUL_BRANNEN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Liese Peter,"6191, 13278",186,29,"189, 201",Parliament,"['42590805']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/1927/PETER_LIESE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Austrevicius Petras,"6192, 13284",239,"31, 63",192,Parliament,"['1314652063']",Lietuvos Respublikos liberalų sąjūdis,https://www.europarl.europa.eu/meps/en/124766/PETRAS_AUSTREVICIUS_home.html,,Lithuania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",88450 +Ayuso Pilar,6193,201,29,189,Parliament,"['917844342']",Partido Popular,https://www.europarl.europa.eu/meps/en/4319/PILAR_AYUSO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33610 +Grafin Hohenstein Roza Thun Und Von,"6194, 13330",175,29,"189, 190",Parliament,"['284067858']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/96776/ROZA+GRAFIN+VON_THUN+UND+HOHENSTEIN_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92435 +Dati Rachida,6195,240,29,189,Parliament,"['272401679']",Les Républicains,https://www.europarl.europa.eu/meps/en/72775/RACHIDA_DATI_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Atondo Jauregui Ramon,6196,192,30,191,Parliament,"['2974653730']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/97078/RAMON_JAUREGUI+ATONDO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33320 +Balcells I Ramon Tremosa,6197,241,31,192,Parliament,"['104849271']",Convergència Democràtica de Catalunya,https://www.europarl.europa.eu/meps/en/97203/RAMON_TREMOSA+I+BALCELLS_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33911 +Renate Weber,6199,194,31,192,Parliament,"['38455020']",Independent,https://www.europarl.europa.eu/meps/en/39713/RENATE_WEBER_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Ashworth Richard,6200,179,33,194,Parliament,"['920895180']",Conservative Party,https://www.europarl.europa.eu/meps/en/28132/RICHARD_ASHWORTH_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Metsola Roberta,"13320, 6201",197,29,"189, 213",Parliament,"['55031092']",Partit Nazzjonalista,https://www.europarl.europa.eu/meps/en/118859/ROBERTA_METSOLA_home.html,,Malta,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",54620 +Romana Tomc,"6202, 13323",242,29,"189, 260",Parliament,"['397348833']",Slovenska demokratska stranka,https://www.europarl.europa.eu/meps/en/125104/ROMANA_TOMC_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",97330 +Karim Sajjad,6203,179,33,194,Parliament,"['192993369']",Conservative Party,https://www.europarl.europa.eu/meps/en/28481/SAJJAD_KARIM_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Domenico Pogliese Salvatore,6204,243,29,189,Parliament,"['361752880']",Forza Italia,https://www.europarl.europa.eu/meps/en/124853/SALVATORE+DOMENICO_POGLIESE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Ayxela Fisas Santiago,6205,201,29,189,Parliament,"['626653053']",Partido Popular,https://www.europarl.europa.eu/meps/en/96729/SANTIAGO_FISAS+AYXELA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33610 +Kelly Sean,"6206, 13347",190,29,"189, 205",Parliament,"['21440665']",Fine Gael Party,https://www.europarl.europa.eu/meps/en/96668/SEAN_KELLY_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Dance Seb,"13348, 6207",193,30,"208, 191",Parliament,"['45360352']",Labour Party,https://www.europarl.europa.eu/meps/en/124952/SEB_DANCE_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Cofferati Gaetano Sergio,6208,212,30,191,Parliament,"['89286622']",-,https://www.europarl.europa.eu/meps/en/96915/SERGIO+GAETANO_COFFERATI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Gutiérrez Prieto Sergio,"16210, 15105, 6209","389, 192",30,191,Parliament,"['162055437']","PSOE, Partido Socialista Obrero Español","https://www.europarl.europa.eu/meps/en/103488/SERGIO_GUTIERREZ+PRIETO_home.html, https://www.sergiogutierrez.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=180&idLegislatura=14",,Spain,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,"European Parliament, Spain","21, 27","53, 56, 32",33320 +Mureşan Siegfried,"13353, 6210","174, 244",29,189,Parliament,"['49950808']","Partidul Mișcarea Populară, Partidul Naţional Liberal",https://www.europarl.europa.eu/meps/en/124802/SIEGFRIED_MURESAN_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",93430 +Cabezon Ruiz Soledad,6211,192,30,191,Parliament,"['393327544']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/125041/SOLEDAD_CABEZON+RUIZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33320 +Moisa Sorin,6212,196,30,191,Parliament,"['77311690']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/124789/SORIN_MOISA_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Eck Stefan,6214,194,28,188,Parliament,"['2977872101']",Independent,https://www.europarl.europa.eu/meps/en/124863/STEFAN_ECK_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Steven Woolfe,6215,194,36,266,Parliament,"['478679663']",Independent,https://www.europarl.europa.eu/meps/en/124966/STEVEN_WOOLFE_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Kaufmann Sylvia-Yvonne,6216,185,30,191,Parliament,"['1380410526']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/1849/SYLVIA-YVONNE_KAUFMANN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Deutsch Tamas,"6217, 13385","246, 508",29,189,Parliament,"['262298210']","Fidesz-Magyar Polgári Szövetség-Keresztény Demokrata Néppárt, Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt",https://www.europarl.europa.eu/meps/en/96826/TAMAS_DEUTSCH_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32","86429, 86421" +Dumitru Stolojan Theodor,6218,174,29,189,Parliament,"['2218262270']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/39721/THEODOR+DUMITRU_STOLOJAN_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93430 +Griffin Theresa,"6219, 13391",193,30,"208, 191",Parliament,"['829060856']",Labour Party,https://www.europarl.europa.eu/meps/en/124961/THERESA_GRIFFIN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Szanyi Tibor,6221,247,30,191,Parliament,"['96137330']",Magyar Szocialista Párt,https://www.europarl.europa.eu/meps/en/124703/TIBOR_SZANYI_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,86220 +Aker Tim,6222,198,34,214,Parliament,"['744743599']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/99650/TIM_AKER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Piotr Poreba Tomasz,"13402, 6223",223,33,"239, 194",Parliament,"['2223619951']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/96801/TOMASZ+PIOTR_POREBA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92436 +Kuhn Werner,6225,186,29,189,Parliament,"['292869151']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/96767/WERNER_KUHN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Camp De Van Wim,6226,183,29,189,Parliament,"['19206899']",Christen Democratisch Appèl,https://www.europarl.europa.eu/meps/en/96754/WIM_VAN+DE+CAMP_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22521 +Benito Xabier Ziluaga,6227,202,28,188,Parliament,"['2407402921']",PODEMOS,https://www.europarl.europa.eu/meps/en/135490/XABIER_BENITO+ZILUAGA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Krasnodebski Zdzislaw,"13432, 6228","248, 223",33,"239, 194",Parliament,"['539156512']","Bezpartyjny, Prawo i Sprawiedliwość",https://www.europarl.europa.eu/meps/en/124891/ZDZISLAW_KRASNODEBSKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92436 +Flanagan Luke Ming,"6229, 13126",194,28,"188, 265",Parliament,"['54172831']",Independent,https://www.europarl.europa.eu/meps/en/124985/LUKE+MING_FLANAGAN_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Franck Proust,6230,240,29,189,Parliament,"['327249605']",Les Républicains,https://www.europarl.europa.eu/meps/en/108080/FRANCK_PROUST_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Gyorgy Schopflin,6231,246,29,189,Parliament,"['2445581293']",Fidesz-Magyar Polgári Szövetség-Keresztény Demokrata Néppárt,https://www.europarl.europa.eu/meps/en/28135/GYORGY_SCHOPFLIN_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,86429 +Maria Spyraki,"6232, 13157",200,29,"189, 216",Parliament,"['339846503']",Nea Demokratia,https://www.europarl.europa.eu/meps/en/125064/MARIA_SPYRAKI_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",34511 +Matthijs Miltenburg Van,6233,207,31,192,Parliament,"['2288266503']",Democraten 66,https://www.europarl.europa.eu/meps/en/125022/MATTHIJS_VAN+MILTENBURG_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22330 +Barbara Kappel,6241,251,35,232,Parliament,"['923435614124601344']",Freiheitliche Partei Österreichs,https://www.europarl.europa.eu/meps/en/125024/BARBARA_KAPPEL_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42420 +Csaba Sogor,6249,254,29,189,Parliament,"['903646090528002048']",Uniunea Democrată Maghiară din România,https://www.europarl.europa.eu/meps/en/39724/CSABA_SOGOR_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93951 +Doru-Claudian Frunzulica,6253,196,30,191,Parliament,"['920574957310136320']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/124790/DORU-CLAUDIAN_FRUNZULICA_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Elzbieta Katarzyna Lukacijewska,"12890, 6254",175,29,"189, 190",Parliament,"['3302560545']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/96791/ELZBIETA+KATARZYNA_LUKACIJEWSKA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92435 +Evelyne Gebhardt,"12911, 6256",185,30,"200, 191",Parliament,"['837214737154846720']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/1913/EVELYNE_GEBHARDT_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Godelieve Quisthoudt-Rowohl,6263,186,29,189,Parliament,"['3072156455']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/1055/GODELIEVE_QUISTHOUDT-ROWOHL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Gyorgy Holvenyi,"6264, 12955",257,29,"189, 278",Parliament,"['842047050577502208']",Kereszténydemokrata Néppárt,https://www.europarl.europa.eu/meps/en/124715/GYORGY_HOLVENYI_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",86061 +Iskra Mihaylova,"6269, 12993",255,"31, 63",192,Parliament,"['831199595011137538', '831199595011137408']",Movement for Rights and Freedoms,https://www.europarl.europa.eu/meps/en/125128/ISKRA_MIHAYLOVA_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"32, 43",80951 +Jana Zitnanska,6272,259,33,194,Parliament,"['2900469544']",NOVA,https://www.europarl.europa.eu/meps/en/124901/JANA_ZITNANSKA_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Ferreira Joao,"6276, 13040",261,28,"188, 282",Parliament,"['951055588330475520']",Partido Comunista Português,https://www.europarl.europa.eu/meps/en/96706/JOAO_FERREIRA_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",35220 +Kosma Zlotowski,"6284, 13089",223,33,"239, 194",Parliament,"['885534897061888000']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/124884/KOSMA_ZLOTOWSKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92436 +Andrikiene Laima Liucija,6287,263,29,189,Parliament,"['39972060']",Tėvynės sąjunga-Lietuvos krikščionys demokratai,https://www.europarl.europa.eu/meps/en/28276/LAIMA+LIUCIJA_ANDRIKIENE_home.html,,Lithuania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,88621 +Dos Manuel Santos,6290,180,30,191,Parliament,"['814894205587832832']",Partido Socialista,https://www.europarl.europa.eu/meps/en/21918/MANUEL_DOS+SANTOS_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35311 +Bizzotto Mara,"13139, 6291","264, 509","62, 35",232,Parliament,"['890601120040615936', '890601120040615808']","Lega Nord, Lega",https://www.europarl.europa.eu/meps/en/97198/MARA_BIZZOTTO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"32, 43",32720 +Miguel Viegas,6294,261,28,188,Parliament,"['964998032822501376']",Partido Comunista Português,https://www.europarl.europa.eu/meps/en/125100/MIGUEL_VIEGAS_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35220 +Mihai Turcanu,6295,174,29,189,Parliament,"['3291104591']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/131750/MIHAI_TURCANU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93430 +Hookem Mike,6296,198,34,214,Parliament,"['877444968071213056']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124957/MIKE_HOOKEM_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Melo Nuno,"6303, 13252","201, 567",29,189,Parliament,"['2858866479']","Partido do Centro Democrático Social-Partido Popular, Partido Popular",https://www.europarl.europa.eu/meps/en/96978/NUNO_MELO_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32","33610, 35520" +Ricardo Santos Serrao,6310,180,30,191,Parliament,"['875283295348686849']",Partido Socialista,https://www.europarl.europa.eu/meps/en/124741/RICARDO_SERRAO+SANTOS_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35311 +Iwaszkiewicz Jaroslaw Robert,6312,268,34,214,Parliament,"['700726075890888704']",KORWiN,https://www.europarl.europa.eu/meps/en/124886/ROBERT+JAROSLAW_IWASZKIEWICZ_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Albert Dess,6331,272,29,189,Parliament,"['3193919883']",Christlich-Soziale Union in Bayern e.V.,https://www.europarl.europa.eu/meps/en/28228/ALBERT_DESS_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Alex Mayer,6332,193,30,191,Parliament,"['21868093']",Labour Party,https://www.europarl.europa.eu/meps/en/185637/ALEX_MAYER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Alojz Peterle,6333,273,29,189,Parliament,"['36147876']",Nova Slovenija – Krščanski demokrati,https://www.europarl.europa.eu/meps/en/23693/ALOJZ_PETERLE_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,97522 +Andor Deli,"12714, 6334","246, 508",29,189,Parliament,"['4782996689']","Fidesz-Magyar Polgári Szövetség-Keresztény Demokrata Néppárt, Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt",https://www.europarl.europa.eu/meps/en/124714/ANDOR_DELI_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32","86429, 86421" +Andrejs Mamikins,6335,274,30,191,Parliament,"['4098437535']","""Saskaņa"" sociāldemokrātiskā partija",https://www.europarl.europa.eu/meps/en/124746/ANDREJS_MAMIKINS_home.html,,Latvia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,87340 +Angel Dzhambazki,"12732, 6336",275,33,"297, 194",Parliament,"['594798146']",VMRO,https://www.europarl.europa.eu/meps/en/124873/ANGEL_DZHAMBAZKI_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",89710 +Angelo Ciocca,"6337, 12735","509, 264","62, 35",232,Parliament,"['493153944']","Lega, Lega Nord",https://www.europarl.europa.eu/meps/en/183793/ANGELO_CIOCCA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32720 +Antonio E Marinho Pinto,6338,276,31,192,Parliament,"['3063965771']",Partido Democrático Republicano,https://www.europarl.europa.eu/meps/en/124742/ANTONIO_MARINHO+E+PINTO_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Antonio López-Istúriz White,"6339, 12752",201,29,"189, 217",Parliament,"['119434647']",Partido Popular,https://www.europarl.europa.eu/meps/en/28399/ANTONIO_LOPEZ-ISTURIZ+WHITE_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33610 +Arndt Kohn,6340,185,30,191,Parliament,"['1435629757']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/186884/ARNDT_KOHN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Barbara Matera,6341,243,29,189,Parliament,"['3028492330']",Forza Italia,https://www.europarl.europa.eu/meps/en/96813/BARBARA_MATERA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Beata Gosiewska,6343,223,33,194,Parliament,"['1244330972']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/124900/BEATA_GOSIEWSKA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92436 +Branislav Skripek,6344,277,33,194,Parliament,"['472277264']",OBYČAJNÍ ĽUDIA,https://www.europarl.europa.eu/meps/en/124927/BRANISLAV_SKRIPEK_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96620 +Catalin Ivan Sorin,6346,196,30,191,Parliament,"['118440658']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/96857/CATALIN+SORIN_IVAN_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Bonnefoy Christine D'Allonnes Revault,6347,228,30,191,Parliament,"['48664313']",Parti socialiste,https://www.europarl.europa.eu/meps/en/124287/CHRISTINE_REVAULT+D%27ALLONNES+BONNEFOY_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Aguiar Cláudia De Monteiro,"12831, 6348",219,29,"189, 235",Parliament,"['239860130']",Partido Social Democrata,https://www.europarl.europa.eu/meps/en/124734/CLAUDIA_MONTEIRO+DE+AGUIAR_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",35313 +Claudia Tapardel,6349,196,30,191,Parliament,"['2574335359']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/124793/CLAUDIA_TAPARDEL_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Ciprian Claudiu Tanasescu,6350,196,30,191,Parliament,"['2991851769']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/96847/CLAUDIU+CIPRIAN_TANASESCU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Cora Nieuwenhuizen Van,6352,218,31,192,Parliament,"['91981058']",Volkspartij voor Vrijheid en Democratie,https://www.europarl.europa.eu/meps/en/125019/CORA_VAN+NIEUWENHUIZEN_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22420 +Czeslaw Hoc,"14803, 6354","483, 223",33,194,Parliament,"['362555490']","Law and Justice, Prawo i Sprawiedliwość","https://www.europarl.europa.eu/meps/en/135540/CZESLAW_HOC_home.html, https://facebook.com/czeslawhoc/",,Poland,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.sejm.gov.pl/english/poslowie/posel.html",,"Poland, European Parliament","27, 19","49, 32",92436 +Diane Dodds,"6355, 12866",279,36,"266, 302",Parliament,"['322529131']",Democratic Unionist Party,https://www.europarl.europa.eu/meps/en/96951/DIANE_DODDS_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51903 +Charanzová Dita,"12871, 6356",280,"31, 63",192,Parliament,"['2656533409']",ANO 2011,https://www.europarl.europa.eu/meps/en/124708/DITA_CHARANZOVA_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82430 +Dubravka Suica,"6357, 12878",258,29,"189, 279",Parliament,"['1860459990']",Hrvatska demokratska zajednica,https://www.europarl.europa.eu/meps/en/119434/DUBRAVKA_SUICA_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",81711 +Eleftherios Synadinos,6359,281,36,266,Parliament,"['2902041331']",Popular Association – Golden Dawn,https://www.europarl.europa.eu/meps/en/125072/ELEFTHERIOS_SYNADINOS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34720 +Eleni Theocharous,6360,194,33,194,Parliament,"['467556902']",Independent,https://www.europarl.europa.eu/meps/en/25704/ELENI_THEOCHAROUS_home.html,,Cyprus,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Elisabeth Morin-Chartier,6361,240,29,189,Parliament,"['102458467']",Les Républicains,https://www.europarl.europa.eu/meps/en/38596/ELISABETH_MORIN-CHARTIER_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Evzen Tosenovsky,"6362, 12913",282,33,"305, 194",Parliament,"['2597918268']",Občanská demokratická strana,https://www.europarl.europa.eu/meps/en/96713/EVZEN_TOSENOVSKY_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82413 +Fernando Ruas,6363,219,29,189,Parliament,"['959053700902899712']",Partido Social Democrata,https://www.europarl.europa.eu/meps/en/124730/FERNANDO_RUAS_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35313 +Florent Marcellesi,6364,283,32,193,Parliament,"['375749713']",EQUO,https://www.europarl.europa.eu/meps/en/26146/FLORENT_MARCELLESI_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Epitideios Georgios,6366,281,36,266,Parliament,"['742666905580888064']",Popular Association – Golden Dawn,https://www.europarl.europa.eu/meps/en/125071/GEORGIOS_EPITIDEIOS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34720 +Giorgos Grammatikakis,6367,284,30,191,Parliament,"['2981141865']",The River,https://www.europarl.europa.eu/meps/en/125112/GIORGOS_GRAMMATIKAKIS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34340 +Helmut Scholz,"12963, 6368",204,28,"188, 220",Parliament,"['2449051215']",DIE LINKE.,https://www.europarl.europa.eu/meps/en/96646/HELMUT_SCHOLZ_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",201709 +Bayet Hugues,"14938, 6369","162, 230",30,191,Parliament,"['3034958314']",Parti Socialiste,"https://www.europarl.europa.eu/meps/en/125002/HUGUES_BAYET_home.html, https://www.huguesbayet.be",,"Hainaut, Belgium",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,"Belgium, European Parliament","27, 3","44, 32",31320 +Iuliu Winkler,"12996, 6370",254,29,"189, 275",Parliament,"['4023186321']",Uniunea Democrată Maghiară din România,https://www.europarl.europa.eu/meps/en/39725/IULIU_WINKLER_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",93951 +Ivana Maletic,6371,258,29,189,Parliament,"['1565809416']",Hrvatska demokratska zajednica,https://www.europarl.europa.eu/meps/en/119436/IVANA_MALETIC_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,81711 +Jakob Von Weizsacker,6372,185,30,191,Parliament,"['800377088897224704']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/124840/JAKOB_VON+WEIZSACKER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Collins Jane,6374,198,34,214,Parliament,"['3321185645']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124955/JANE_COLLINS_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Joao Lopes Pimenta,6376,261,28,188,Parliament,"['82916461']",Partido Comunista Português,https://www.europarl.europa.eu/meps/en/136236/JOAO_PIMENTA+LOPES_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35220 +Bergeron Joelle,6377,286,34,214,Parliament,"['775640126705795072']",Sans étiquette,https://www.europarl.europa.eu/meps/en/124740/JOELLE_BERGERON_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +John Procter,6378,179,33,194,Parliament,"['803917434998689920']",Conservative Party,https://www.europarl.europa.eu/meps/en/185628/JOHN_PROCTER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Jordi Sole,6379,220,32,193,Parliament,"['108361004']",Esquerra Republicana de Catalunya,https://www.europarl.europa.eu/meps/en/185974/JORDI_SOLE_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Faria Inacio Jose,6380,287,29,189,Parliament,"['2861353025']",Partido da Terra,https://www.europarl.europa.eu/meps/en/125101/JOSE+INACIO_FARIA_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Halla-Aho Jussi,"11508, 6381","170, 288",33,194,Parliament,"['200923051']","Perussuomalaiset, The Finns Party",https://www.europarl.europa.eu/meps/en/124727/JUSSI_HALLA-AHO_home.html,,"Electoral district of Helsinki, Finland",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx",,"Finland, European Parliament","6, 27","42, 32",14820 +Graswander-Hainz Karoline,6382,289,30,191,Parliament,"['798922852233867264']",Sozialdemokratische Partei Österreichs,https://www.europarl.europa.eu/meps/en/133316/KAROLINE_GRASWANDER-HAINZ_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42320 +Kazimierz Michal Ujazdowski,6383,223,33,194,Parliament,"['2791568826']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/23791/KAZIMIERZ+MICHAL_UJAZDOWSKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92436 +Kostadinka Kuneva,6384,199,28,188,Parliament,"['2802163754']",Coalition of the Radical Left,https://www.europarl.europa.eu/meps/en/125092/KOSTADINKA_KUNEVA_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34020 +Chrysogonos Kostas,6385,199,28,188,Parliament,"['2340156271']",Coalition of the Radical Left,https://www.europarl.europa.eu/meps/en/125061/KOSTAS_CHRYSOGONOS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34020 +Hetman Krzysztof,"13092, 6386",195,29,"189, 210",Parliament,"['747764682459582464']",Polskie Stronnictwo Ludowe,https://www.europarl.europa.eu/meps/en/124895/KRZYSZTOF_HETMAN_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Fountoulis Lampros,6387,281,36,266,Parliament,"['4205205495']",Popular Association – Golden Dawn,https://www.europarl.europa.eu/meps/en/125070/LAMPROS_FOUNTOULIS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34720 +Agea Laura,6388,205,34,214,Parliament,"['1977797946']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124811/LAURA_AGEA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Laurentiu Rebega,6389,194,35,232,Parliament,"['2304094443']",Independent,https://www.europarl.europa.eu/meps/en/124792/LAURENTIU_REBEGA_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Liliana Rodrigues,6390,180,30,191,Parliament,"['2795506144']",Partido Socialista,https://www.europarl.europa.eu/meps/en/125099/LILIANA_RODRIGUES_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35311 +Louis Michel,6391,290,31,192,Parliament,"['3032768741']",Mouvement Réformateur,https://www.europarl.europa.eu/meps/en/96670/LOUIS_MICHEL_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Ludek Niedermayer,"13120, 6392",214,29,"189, 230",Parliament,"['2815744853']",TOP 09 a Starostové,https://www.europarl.europa.eu/meps/en/124701/LUDEK_NIEDERMAYER_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82530 +Delvaux Mady,6393,291,30,191,Parliament,"['2794265861']",Parti ouvrier socialiste luxembourgeois,https://www.europarl.europa.eu/meps/en/124776/MADY_DELVAUX_home.html,,Luxembourg,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Kefalogiannis Manolis,"13134, 6394",200,29,"189, 216",Parliament,"['2441261875']",Nea Demokratia,https://www.europarl.europa.eu/meps/en/125068/MANOLIS_KEFALOGIANNIS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",34511 +Marek Plura,6395,175,29,189,Parliament,"['3435481989']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/124881/MAREK_PLURA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Margot Parker,6396,198,34,214,Parliament,"['121171051']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124945/MARGOT_PARKER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Joao Maria Rodrigues,6397,180,30,191,Parliament,"['866498616']",Partido Socialista,https://www.europarl.europa.eu/meps/en/124737/MARIA+JOAO_RODRIGUES_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35311 +Boutonnet Marie-Christine,6398,232,35,232,Parliament,"['733206538274414720']",Front national,https://www.europarl.europa.eu/meps/en/124753/MARIE-CHRISTINE_BOUTONNET_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Marie-Christine Vergiat,6399,292,28,188,Parliament,"['203027759']",Front de Gauche,https://www.europarl.europa.eu/meps/en/96858/MARIE-CHRISTINE_VERGIAT_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Lauristin Marju,6400,293,30,191,Parliament,"['3131259647']",Sotsiaaldemokraatlik Erakond,https://www.europarl.europa.eu/meps/en/124698/MARJU_LAURISTIN_home.html,,Estonia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,83320 +Dlabajová Martina,"6401, 13181",280,"31, 63",192,Parliament,"['43505930']",ANO 2011,https://www.europarl.europa.eu/meps/en/124709/MARTINA_DLABAJOVA_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82430 +Massimiliano Salini,"13184, 6402",243,29,"189, 261",Parliament,"['601773356']",Forza Italia,https://www.europarl.europa.eu/meps/en/125670/MASSIMILIANO_SALINI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32610 +Marusik Michal,6403,245,35,232,Parliament,"['795365936337485824']",Kongres Nowej Prawicy,https://www.europarl.europa.eu/meps/en/124894/MICHAL_MARUSIK_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Michaela Sojdrova,"13199, 6404",294,29,"189, 318",Parliament,"['2671775504']",Křesťanská a demokratická unie - Československá strana lidová,https://www.europarl.europa.eu/meps/en/124710/MICHAELA_SOJDROVA_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",201310 +Kyrkos Miltiadis,6405,284,30,191,Parliament,"['4895076994']",The River,https://www.europarl.europa.eu/meps/en/125113/MILTIADIS_KYRKOS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,34340 +D'Ornano Mireille,6406,232,35,232,Parliament,"['2828047772']",Front national,https://www.europarl.europa.eu/meps/en/124750/MIREILLE_D%27ORNANO_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Cato Molly Scott,"13216, 6407",215,32,"193, 231",Parliament,"['726372601']",Green Party,https://www.europarl.europa.eu/meps/en/124942/MOLLY_SCOTT+CATO_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",53110 +Lokkegaard Morten,"13223, 6408",295,"31, 63",192,Parliament,"['88184493']","Venstre, Danmarks Liberale Parti",https://www.europarl.europa.eu/meps/en/96709/MORTEN_LOKKEGAARD_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",13420 +Barekov Nikolay,6409,296,33,194,Parliament,"['2596021254']",Reload Bulgaria Party,https://www.europarl.europa.eu/meps/en/124871/NIKOLAY_BAREKOV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Marias Notis,6410,297,33,194,Parliament,"['1306932638']",Greece-The Alternative Road,https://www.europarl.europa.eu/meps/en/125069/NOTIS_MARIAS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Csaky Pal,6411,298,29,189,Parliament,"['3512908877']",Strana mad'arskej komunity- Magyar Közösség Pártja,https://www.europarl.europa.eu/meps/en/124930/PAL_CSAKY_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96952 +Arimont Pascal,"13263, 6412",299,29,"189, 323",Parliament,"['3393988786']",Christlich Soziale Partei,https://www.europarl.europa.eu/meps/en/24922/PASCAL_ARIMONT_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",21522 +Kouroumbashev Peter,6413,212,30,191,Parliament,"['837013304237309952']",-,https://www.europarl.europa.eu/meps/en/124857/PETER_KOUROUMBASHEV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Castillo Del Pilar Vera,"6414, 13297",201,29,"189, 217",Parliament,"['52009223']",Partido Popular,https://www.europarl.europa.eu/meps/en/28390/PILAR_DEL+CASTILLO+VERA_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33610 +Pirkko Ruohonen-Lerner,6415,288,33,194,Parliament,"['84585110']",Perussuomalaiset,https://www.europarl.europa.eu/meps/en/132366/PIRKKO_RUOHONEN-LERNER_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,14820 +Luis Ramon Siso Valcarcel,6416,201,29,189,Parliament,"['787615073061728257']",Partido Popular,https://www.europarl.europa.eu/meps/en/125032/RAMON+LUIS_VALCARCEL+SISO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33610 +Manescu Nicole Ramona,6417,174,29,189,Parliament,"['775341791973412864']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/39717/RAMONA+NICOLE_MANESCU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93430 +D’Amato Rosa,"6418, 13326",205,"34, 36",214,Parliament,"['2680186468']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124835/ROSA_D%27AMATO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Ribeiro Sofia,6419,219,29,189,Parliament,"['2651558413']",Partido Social Democrata,https://www.europarl.europa.eu/meps/en/124733/SOFIA_RIBEIRO_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35313 +Sakorafa Sofia,"6420, 13656","569, 194",28,188,Parliament,"['533082734']","Independent, MeRa25",https://www.europarl.europa.eu/meps/en/125091/SOFIA_SAKORAFA_home.html,,Greece,V3΄NOTIOU TOMEA ATHINON,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/",,"European Parliament, Greece","27, 9","47, 32", +'T In Sophia Veld,"13363, 6421",207,"31, 63",192,Parliament,"['19231330']",Democraten 66,https://www.europarl.europa.eu/meps/en/28266/SOPHIA_IN+%27T+VELD_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22330 +Hristov Malinov Svetoslav,6422,300,29,189,Parliament,"['2645296975']",Democrats for Strong Bulgaria,https://www.europarl.europa.eu/meps/en/111027/SVETOSLAV+HRISTOV_MALINOV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,80610 +Meszerics Tamas,6423,301,32,193,Parliament,"['1256386124']",Lehet Más A Politika,https://www.europarl.europa.eu/meps/en/124720/TAMAS_MESZERICS_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,86110 +Mann Thomas,6424,186,29,189,Parliament,"['3307144396']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/1922/THOMAS_MANN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Tiemo Wolken,"6425, 13393",185,30,"200, 191",Parliament,"['18174975']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/185619/TIEMO_WOLKEN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Mazuronis Valentinas,6426,302,31,192,Parliament,"['3415166927']",Darbo partija,https://www.europarl.europa.eu/meps/en/124768/VALENTINAS_MAZURONIS_home.html,,Lithuania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,88440 +Bostinaru Victor,6427,196,30,191,Parliament,"['2875224999']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/39711/VICTOR_BOSTINARU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Toom Yana,"6429, 13428",303,"31, 63",192,Parliament,"['2834900104']",Eesti Keskerakond,https://www.europarl.europa.eu/meps/en/124700/YANA_TOOM_home.html,,Estonia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Kósa Ádám,"6430, 12690","246, 508",29,189,Parliament,"['85184055']","Fidesz-Magyar Polgári Szövetség-Keresztény Demokrata Néppárt, Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt",https://www.europarl.europa.eu/meps/en/96829/ADAM_KOSA_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32","86429, 86421" +Adam Szejnfeld,6432,175,29,189,Parliament,"['535452316']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/124890/ADAM_SZEJNFELD_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Agnes Jongerius,"6434, 12695",305,30,"191, 329",Parliament,"['2351820624']",Partij van de Arbeid,https://www.europarl.europa.eu/meps/en/125021/AGNES_JONGERIUS_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22320 +Alain Cadec,6435,240,29,189,Parliament,"['467581610']",Les Républicains,https://www.europarl.europa.eu/meps/en/96849/ALAIN_CADEC_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Alain Lamassoure,6436,240,29,189,Parliament,"['2389235778']",Les Républicains,https://www.europarl.europa.eu/meps/en/1204/ALAIN_LAMASSOURE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Alberto Cirio,6437,243,29,189,Parliament,"['532284091']",Forza Italia,https://www.europarl.europa.eu/meps/en/124772/ALBERTO_CIRIO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Aldo Patriciello,"12697, 6438",243,29,"189, 261",Parliament,"['454821447']",Forza Italia,https://www.europarl.europa.eu/meps/en/36392/ALDO_PATRICIELLO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32610 +Alessandra Mussolini,6439,243,29,189,Parliament,"['70951142']",Forza Italia,https://www.europarl.europa.eu/meps/en/28429/ALESSANDRA_MUSSOLINI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Alfred Sant,"12709, 6440",233,30,"191, 250",Parliament,"['1558588135']",Partit Laburista,https://www.europarl.europa.eu/meps/en/124781/ALFRED_SANT_home.html,,Malta,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",54320 +Andi Cristea,6442,196,30,191,Parliament,"['2838395656']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/40224/ANDI_CRISTEA_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Andrea Cozzolino,"6443, 12719",176,30,191,Parliament,"['467604110']",Partito Democratico,https://www.europarl.europa.eu/meps/en/96880/ANDREA_COZZOLINO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Andreas Schwab,"6444, 12722",186,29,"189, 201",Parliament,"['31099936']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/28223/ANDREAS_SCHWAB_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Andrey Kovatchev,"6446, 12724",203,29,"189, 219",Parliament,"['189082017']",Citizens for European Development of Bulgaria,https://www.europarl.europa.eu/meps/en/97968/ANDREY_KOVATCHEV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",80510 +Andrey Novakov,"6447, 12725",203,29,"189, 219",Parliament,"['1704818077']",Citizens for European Development of Bulgaria,https://www.europarl.europa.eu/meps/en/107212/ANDREY_NOVAKOV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",80510 +Andrzej Grzyb,"14813, 6448","195, 576",29,189,Parliament,"['1119834276']","Polskie Stronnictwo Ludowe, Polish People's Party-Kukiz15","https://www.europarl.europa.eu/meps/en/23785/ANDRZEJ_GRZYB_home.html, https://andrzejgrzyb.eu",,Poland,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.sejm.gov.pl/english/poslowie/posel.html",,"Poland, European Parliament","27, 19","49, 32", +Angelique Delahaye,6449,240,29,189,Parliament,"['2476048160']",Les Républicains,https://www.europarl.europa.eu/meps/en/124732/ANGELIQUE_DELAHAYE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Angelika Mlinar,6450,306,31,192,Parliament,"['48339953']",NEOS – Das Neue Österreich,https://www.europarl.europa.eu/meps/en/125026/ANGELIKA_MLINAR_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42430 +Angelika Niebler,"6451, 12733",272,29,"189, 294",Parliament,"['886420428']",Christlich-Soziale Union in Bayern e.V.,https://www.europarl.europa.eu/meps/en/4289/ANGELIKA_NIEBLER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Anja Hazekamp,"6452, 12736",307,28,"188, 331",Parliament,"['146088853']",Partij voor de Dieren,https://www.europarl.europa.eu/meps/en/125023/ANJA_HAZEKAMP_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22951 +Anna Hedh,6453,308,30,191,Parliament,"['19435245']",Arbetarepartiet- Socialdemokraterna,https://www.europarl.europa.eu/meps/en/28131/ANNA_HEDH_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11320 +Anne Sander,"12746, 6454",240,29,"189, 258",Parliament,"['2610126043']",Les Républicains,https://www.europarl.europa.eu/meps/en/24594/ANNE_SANDER_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31626 +Anne-Marie Mineur,6455,309,28,188,Parliament,"['76887333']",Socialistische Partij,https://www.europarl.europa.eu/meps/en/125037/ANNE-MARIE_MINEUR_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22220 +Anneleen Bossuyt Van,"6456, 15054",310,33,194,Parliament,"['1356343460']",Nieuw-Vlaamse Alliantie,"https://www.anneleenvanbossuyt.eu, https://www.europarl.europa.eu/meps/en/117491/ANNELEEN_VAN+BOSSUYT_home.html",,"Oost-Vlaanderen, Belgium",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,"Belgium, European Parliament","27, 3","44, 32",21916 +Anneli Jaatteenmaki,6457,311,31,192,Parliament,"['487393533']",Suomen Keskusta,https://www.europarl.europa.eu/meps/en/28314/ANNELI_JAATTEENMAKI_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,14810 +Antanas Guoga,6459,194,29,189,Parliament,"['199606998']",Independent,https://www.europarl.europa.eu/meps/en/124763/ANTANAS_GUOGA_home.html,,Lithuania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Antonio Tajani,"12754, 6460",243,29,"189, 261",Parliament,"['529247064']",Forza Italia,https://www.europarl.europa.eu/meps/en/2187/ANTONIO_TAJANI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32610 +Arnaud Danjean,"6461, 12758",240,29,"189, 258",Parliament,"['439463212']",Les Républicains,https://www.europarl.europa.eu/meps/en/96747/ARNAUD_DANJEAN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31626 +Ashley Fox,6463,179,33,194,Parliament,"['1585889305']",Conservative Party,https://www.europarl.europa.eu/meps/en/96957/ASHLEY_FOX_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Aymeric Chauprade,6464,313,36,266,Parliament,"['365765843']",Les Français Libres,https://www.europarl.europa.eu/meps/en/124752/AYMERIC_CHAUPRADE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Barbara Kudrycka,6465,175,29,189,Parliament,"['114778403']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/28284/BARBARA_KUDRYCKA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Barbara Lochbihler,6466,209,32,193,Parliament,"['815107976']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/96728/BARBARA_LOCHBIHLER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41113 +Bart Staes,6467,314,32,193,Parliament,"['19452793']",Groen,https://www.europarl.europa.eu/meps/en/4751/BART_STAES_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,21112 +Bas Belder,6468,315,33,194,Parliament,"['224572743']",Staatkundig Gereformeerde Partij,https://www.europarl.europa.eu/meps/en/4507/BAS_BELDER_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22952 +Bas Eickhout,"12774, 6469",316,32,"340, 193",Parliament,"['19763668']",GroenLinks,https://www.europarl.europa.eu/meps/en/96725/BAS_EICKHOUT_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22110 +Beatrix Storch Von,"6470, 8188","427, 317","34, 51","214, 462",Parliament,"['805308596']","AfD, Alternative für Deutschland",https://www.europarl.europa.eu/meps/en/124825/BEATRIX_VON+STORCH_home.html,,Germany,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.bundestag.de/en/members",,"Germany, European Parliament","8, 27","29, 32",41953 +Bendt Bendtsen,6471,318,29,189,Parliament,"['992741821']",Det Konservative Folkeparti,https://www.europarl.europa.eu/meps/en/96705/BENDT_BENDTSEN_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,13620 +Bernard Monot,6472,232,35,232,Parliament,"['2347360369']",Front national,https://www.europarl.europa.eu/meps/en/124761/BERNARD_MONOT_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Bernd Kolmel,6473,208,33,194,Parliament,"['2601279836']",Liberal-Conservative Refomists,https://www.europarl.europa.eu/meps/en/124824/BERND_KOLMEL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Bernd Lange,"12783, 6474",185,30,"200, 191",Parliament,"['17576181']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/1909/BERND_LANGE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Bernd Lucke,6475,208,33,194,Parliament,"['3036150304']",Liberal-Conservative Refomists,https://www.europarl.europa.eu/meps/en/124820/BERND_LUCKE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Bill Etheridge,6476,198,34,214,Parliament,"['155704077']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124951/BILL_ETHERIDGE_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Bodil Valero,6477,319,32,193,Parliament,"['38415999']",Miljöpartiet de gröna,https://www.europarl.europa.eu/meps/en/124993/BODIL_VALERO_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11110 +Bogusław Liberadzki,"12792, 6478",320,30,"344, 191",Parliament,"['714000438']",Sojusz Lewicy Demokratycznej,https://www.europarl.europa.eu/meps/en/23768/BOGUSLAW_LIBERADZKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92210 +Boris Zala,6479,236,30,191,Parliament,"['193261836']",SMER-Sociálna demokracia,https://www.europarl.europa.eu/meps/en/96656/BORIS_ZALA_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96423 +Benifei Brando,"12793, 6480",176,30,191,Parliament,"['87306292']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124867/BRANDO_BENIFEI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Brice Hortefeux,"6481, 12795",240,29,"189, 258",Parliament,"['2445174992']",Les Républicains,https://www.europarl.europa.eu/meps/en/5565/BRICE_HORTEFEUX_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31626 +Bruno Gollnisch,6482,232,36,266,Parliament,"['162023981']",Front national,https://www.europarl.europa.eu/meps/en/1164/BRUNO_GOLLNISCH_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Balz Burkhard,6483,186,29,189,Parliament,"['37523381']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/96997/BURKHARD_BALZ_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Carlos Coelho,6484,219,29,189,Parliament,"['21195865']",Partido Social Democrata,https://www.europarl.europa.eu/meps/en/1892/CARLOS_COELHO_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,35313 +Carlos Iturgaiz,6485,201,29,189,Parliament,"['347513124']",Partido Popular,https://www.europarl.europa.eu/meps/en/28398/CARLOS_ITURGAIZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33610 +Carlos Zorrinho,"6486, 12799",180,30,"191, 195",Parliament,"['34423857']",Partido Socialista,https://www.europarl.europa.eu/meps/en/124739/CARLOS_ZORRINHO_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",35311 +Carolina Punset,6487,260,31,192,Parliament,"['2395909352']",Ciudadanos – Partido de la Ciudadanía,https://www.europarl.europa.eu/meps/en/90110/CAROLINA_PUNSET_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33420 +Caterina Chinnici,"6488, 12804",176,30,191,Parliament,"['2262477443']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124861/CATERINA_CHINNICI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Bearder Catherine,"12805, 6489",321,"31, 63",192,Parliament,"['454779231']",Liberal Democrats,https://www.europarl.europa.eu/meps/en/96955/CATHERINE_BEARDER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51421 +Catherine Stihler,6490,193,30,191,Parliament,"['18721034']",Labour Party,https://www.europarl.europa.eu/meps/en/4545/CATHERINE_STIHLER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Charles Goerens,"12810, 6491",322,"31, 63",192,Parliament,"['606349480']",Parti démocratique,https://www.europarl.europa.eu/meps/en/840/CHARLES_GOERENS_home.html,,Luxembourg,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",23420 +Charles Tannock,6492,179,33,194,Parliament,"['914281548']",Conservative Party,https://www.europarl.europa.eu/meps/en/4521/CHARLES_TANNOCK_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Christel Schaldemose,"6493, 12814",323,30,"191, 348",Parliament,"['1249695476']",Socialdemokratiet,https://www.europarl.europa.eu/meps/en/37312/CHRISTEL_SCHALDEMOSE_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",13320 +Christofer Fjellner,6494,182,29,189,Parliament,"['21786064']",Moderaterna,https://www.europarl.europa.eu/meps/en/28126/CHRISTOFER_FJELLNER_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11620 +Claude Rolin,6495,324,29,189,Parliament,"['309257842']",Centre Démocrate Humaniste,https://www.europarl.europa.eu/meps/en/125107/CLAUDE_ROLIN_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Claude Turmes,6496,325,32,193,Parliament,"['34578176']",Déi Gréng - Les Verts,https://www.europarl.europa.eu/meps/en/4432/CLAUDE_TURMES_home.html,,Luxembourg,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,23113 +Claudia Schmidt,6497,238,29,189,Parliament,"['741604337139503106']",Österreichische Volkspartei,https://www.europarl.europa.eu/meps/en/125016/CLAUDIA_SCHMIDT_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42520 +Constanze Krehl,"12834, 6498",185,30,"200, 191",Parliament,"['2373681362']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/1854/CONSTANZE_KREHL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Cornelia Ernst,"6499, 12836",204,28,"188, 220",Parliament,"['1225229076']",DIE LINKE.,https://www.europarl.europa.eu/meps/en/96852/CORNELIA_ERNST_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",201709 +Curzio Maltese,6500,326,28,188,Parliament,"['2613958728']",Lista Tsipras-L'Altra Europa,https://www.europarl.europa.eu/meps/en/125192/CURZIO_MALTESE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Damiano Zoffoli,6501,176,30,191,Parliament,"['141151403']",Partito Democratico,https://www.europarl.europa.eu/meps/en/131051/DAMIANO_ZOFFOLI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Buda Daniel,"12849, 6502",174,29,189,Parliament,"['3833423967']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/125012/DANIEL_BUDA_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",93430 +Dalton Daniel,6503,179,33,194,Parliament,"['28123362']",Conservative Party,https://www.europarl.europa.eu/meps/en/35135/DANIEL_DALTON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Daniel Hannan,"6504, 12852",179,33,194,Parliament,"['85794542']",Conservative Party,https://www.europarl.europa.eu/meps/en/4555/DANIEL_HANNAN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51620 +Aiuto Daniela,6505,205,34,214,Parliament,"['2466169957']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124842/DANIELA_AIUTO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Daniele Viotti,6506,176,30,191,Parliament,"['22651555']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124791/DANIELE_VIOTTI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Danuta Jazlowiecka,6507,175,29,189,Parliament,"['252590140']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/96781/DANUTA_JAZLOWIECKA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Dario Tamburrano,6508,205,34,214,Parliament,"['19422447']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124813/DARIO_TAMBURRANO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Dariusz Rosati,"6509, 14621","175, 574",29,189,Parliament,"['1249486668']","Civic Coalition, Platforma Obywatelska","https://www.europarl.europa.eu/meps/en/28394/DARIUSZ_ROSATI_home.html, https://www.rosati.pl",,Poland,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.sejm.gov.pl/english/poslowie/posel.html",,"Poland, European Parliament","27, 19","49, 32",92435 +Borrelli David,6510,205,34,214,Parliament,"['142690511']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124796/DAVID_BORRELLI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Davor Skrlec,6511,194,32,193,Parliament,"['2329776624']",Independent,https://www.europarl.europa.eu/meps/en/124756/DAVOR_SKRLEC_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Clune Deirdre,6512,190,29,189,Parliament,"['627200944']",Fine Gael Party,https://www.europarl.europa.eu/meps/en/124988/DEIRDRE_CLUNE_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Demetris Papadakis,"12862, 6513",327,30,"191, 353",Parliament,"['1498593469']",Movement for Social Democracy EDEK,https://www.europarl.europa.eu/meps/en/124692/DEMETRIS_PAPADAKIS_home.html,,Cyprus,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",55322 +De Dennis Jong,6514,309,28,188,Parliament,"['42372786']",Socialistische Partij,https://www.europarl.europa.eu/meps/en/96748/DENNIS_DE+JONG_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22220 +Diane James,6515,212,36,266,Parliament,"['2673995912']",-,https://www.europarl.europa.eu/meps/en/124939/DIANE_JAMES_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Bilde Dominique,"6516, 12874","232, 512","62, 35",232,Parliament,"['3065992036']","Rassemblement national, Front national",https://www.europarl.europa.eu/meps/en/124771/DOMINIQUE_BILDE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31720 +Dominique Martin,6517,232,35,232,Parliament,"['2875243653']",Front national,https://www.europarl.europa.eu/meps/en/124751/DOMINIQUE_MARTIN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Dominique Riquet,"12875, 6518","328, 531","31, 63",192,Parliament,"['2394252247']","Mouvement Radical Social-Libéral, Parti Radical - UDI",https://www.europarl.europa.eu/meps/en/96885/DOMINIQUE_RIQUET_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31430 +Edouard Ferrand,6519,232,35,232,Parliament,"['2841196901']",Front national,https://www.europarl.europa.eu/meps/en/124767/EDOUARD_FERRAND_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Edouard Martin,6520,228,30,191,Parliament,"['2369520374']",Parti socialiste,https://www.europarl.europa.eu/meps/en/124947/EDOUARD_MARTIN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Eduard Kukan,6521,194,29,189,Parliament,"['1870771148']",Independent,https://www.europarl.europa.eu/meps/en/96651/EDUARD_KUKAN_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Elena Gentile,6522,176,30,191,Parliament,"['484515352']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124847/ELENA_GENTILE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Elena Valenciano,6523,192,30,191,Parliament,"['2190755568']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/4334/ELENA_VALENCIANO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33320 +Eleonora Evi,"6524, 12885",205,"34, 36",214,Parliament,"['1135141640']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124779/ELEONORA_EVI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Eleonora Forenza,6525,326,28,188,Parliament,"['491722490']",Lista Tsipras-L'Altra Europa,https://www.europarl.europa.eu/meps/en/125193/ELEONORA_FORENZA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Elisabeth Kostinger,6526,238,29,189,Parliament,"['29963566']",Österreichische Volkspartei,https://www.europarl.europa.eu/meps/en/96882/ELISABETH_KOSTINGER_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42520 +Elisabetta Gardini,6527,243,29,189,Parliament,"['404836757']",Forza Italia,https://www.europarl.europa.eu/meps/en/58758/ELISABETTA_GARDINI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Elly Schlein,6528,212,30,191,Parliament,"['322933929']",-,https://www.europarl.europa.eu/meps/en/124804/ELLY_SCHLEIN_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Brok Elmar,6529,186,29,189,Parliament,"['2870350006']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/1263/ELMAR_BROK_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Emil Radev,"6530, 12893",203,29,"189, 219",Parliament,"['3108154565']",Citizens for European Development of Bulgaria,https://www.europarl.europa.eu/meps/en/124850/EMIL_RADEV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",80510 +Emilian Pavel,6531,196,30,191,Parliament,"['2362862240']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/129256/EMILIAN_PAVEL_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Emma Mcclarkin,6532,179,33,194,Parliament,"['88928275']",Conservative Party,https://www.europarl.europa.eu/meps/en/96919/EMMA_MCCLARKIN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Emmanuel Maurel,"12895, 6533","228, 533","28, 30",191,Parliament,"['66691158']","Parti socialiste, Gauche républicaine et socialiste",https://www.europarl.europa.eu/meps/en/24505/EMMANUEL_MAUREL_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31320 +Andrieu Eric,"12898, 6534",228,30,"244, 191",Parliament,"['415475621', '27288390']",Parti socialiste,https://www.europarl.europa.eu/meps/en/113892/ERIC_ANDRIEU_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"32, 43",31320 +Ernest Urtasun,"6535, 12901","534, 329",32,193,Parliament,"['280227352']","Catalunya en Comú, Iniciativa per Catalunya Verds",https://www.europarl.europa.eu/meps/en/124972/ERNEST_URTASUN_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +De Esther Lange,"12903, 6536",183,29,"189, 198",Parliament,"['28773799']",Christen Democratisch Appèl,https://www.europarl.europa.eu/meps/en/38398/ESTHER_DE+LANGE_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22521 +Eugen Freund,6537,289,30,191,Parliament,"['599491010']",Sozialdemokratische Partei Österreichs,https://www.europarl.europa.eu/meps/en/125018/EUGEN_FREUND_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42320 +Eva Joly,6538,330,32,193,Parliament,"['234035533']",Europe Écologie,https://www.europarl.europa.eu/meps/en/96883/EVA_JOLY_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31110 +Eva Kaili,"6539, 12908",331,30,"358, 191",Parliament,"['33248043']",Panhellenic Socialist Movement - Olive Tree,https://www.europarl.europa.eu/meps/en/125109/EVA_KAILI_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32329 +Evelyn Regner,"12910, 6540",289,30,"191, 312",Parliament,"['139661393']",Sozialdemokratische Partei Österreichs,https://www.europarl.europa.eu/meps/en/96998/EVELYN_REGNER_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",42320 +Flavio Zanonato,6541,332,30,191,Parliament,"['53944421']",Articolo UNO – Movimento Democratico e Progressista,https://www.europarl.europa.eu/meps/en/124800/FLAVIO_ZANONATO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Florian Philippot,6542,232,35,232,Parliament,"['472412809']",Front national,https://www.europarl.europa.eu/meps/en/110977/FLORIAN_PHILIPPOT_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Frederique Ries,"6543, 12927",290,"31, 63",192,Parliament,"['191779603']",Mouvement Réformateur,https://www.europarl.europa.eu/meps/en/4253/FREDERIQUE_RIES_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Francoise Grossetete,6544,240,29,189,Parliament,"['472043689']",Les Républicains,https://www.europarl.europa.eu/meps/en/2025/FRANCOISE_GROSSETETE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Bogovič Franc,"12918, 6545",333,29,"189, 360",Parliament,"['2803444640']",Slovenska ljudska stranka,https://www.europarl.europa.eu/meps/en/125004/FRANC_BOGOVIC_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",97521 +Bogovic Franc,6546,333,29,189,Parliament,"['2587648843']",Slovenska ljudska stranka,https://www.europarl.europa.eu/meps/en/125004/FRANC_BOGOVIC_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,97521 +Francesc Gambus,6547,212,29,189,Parliament,"['193258521']",-,https://www.europarl.europa.eu/meps/en/125006/FRANCESC_GAMBUS_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Franz Obermayr,6548,251,35,232,Parliament,"['562091221']",Freiheitliche Partei Österreichs,https://www.europarl.europa.eu/meps/en/96981/FRANZ_OBERMAYR_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42420 +Fulvio Martusciello,"12929, 6549",243,29,"189, 261",Parliament,"['813738259']",Forza Italia,https://www.europarl.europa.eu/meps/en/124828/FULVIO_MARTUSCIELLO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32610 +Deprez Gerard,6550,290,31,192,Parliament,"['2687237153']",Mouvement Réformateur,https://www.europarl.europa.eu/meps/en/1473/GERARD_DEPREZ_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Georg Mayer,6552,251,35,232,Parliament,"['2821282972']",Freiheitliche Partei Österreichs,https://www.europarl.europa.eu/meps/en/38511/GEORG_MAYER_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42420 +Batten Gerard,6553,198,34,214,Parliament,"['216327829']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/28497/GERARD_BATTEN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Annemans Gerolf,"6554, 12936",334,"62, 35",232,Parliament,"['145252665']",Vlaams Belang,https://www.europarl.europa.eu/meps/en/124973/GEROLF_ANNEMANS_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",21917 +Gianni Pittella,6555,176,30,191,Parliament,"['14460250']",Partito Democratico,https://www.europarl.europa.eu/meps/en/4436/GIANNI_PITTELLA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Gilles Lebreton,"6556, 12942","512, 335","62, 35",232,Parliament,"['2463325740']","Rassemblement national, Front national/ Rassemblement Bleu Marine",https://www.europarl.europa.eu/meps/en/124738/GILLES_LEBRETON_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31720 +Gilles Pargneaux,6557,228,30,191,Parliament,"['24899436']",Parti socialiste,https://www.europarl.europa.eu/meps/en/96948/GILLES_PARGNEAUX_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Giovanni La Via,6558,336,29,189,Parliament,"['384230182']",Nuovo Centrodestra - Unione di Centro,https://www.europarl.europa.eu/meps/en/96816/GIOVANNI_LA+VIA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32530 +Giulia Moi,6559,205,34,214,Parliament,"['2886726611']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124859/GIULIA_MOI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Balas Guillaume,6560,228,30,191,Parliament,"['199700276']",Parti socialiste,https://www.europarl.europa.eu/meps/en/124744/GUILLAUME_BALAS_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Gunnar Hokmark,6561,182,29,189,Parliament,"['19864682']",Moderaterna,https://www.europarl.europa.eu/meps/en/28124/GUNNAR_HOKMARK_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11620 +Guy Verhofstadt,"6562, 12953",337,"31, 63",192,Parliament,"['856010760']",Open Vlaamse Liberalen en Democraten,https://www.europarl.europa.eu/meps/en/97058/GUY_VERHOFSTADT_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",21421 +Hannu Takkula,6563,311,31,192,Parliament,"['2336512853']",Suomen Keskusta,https://www.europarl.europa.eu/meps/en/28316/HANNU_TAKKULA_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,14810 +Harald Vilimsky,"6564, 12958",251,"62, 35",232,Parliament,"['303234771']",Freiheitliche Partei Österreichs,https://www.europarl.europa.eu/meps/en/125001/HARALD_VILIMSKY_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",42420 +Hautala Heidi,"12959, 6565","338, 539",32,193,Parliament,"['92337227']","Vihreä liitto, Vihreä liitto",https://www.europarl.europa.eu/meps/en/2054/HEIDI_HAUTALA_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",14110 +Helga Stevens,6566,310,33,194,Parliament,"['603467021']",Nieuw-Vlaamse Alliantie,https://www.europarl.europa.eu/meps/en/125105/HELGA_STEVENS_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,21916 +Henna Virkkunen,"6567, 12964",339,29,"189, 366",Parliament,"['72277900']",Kansallinen Kokoomus,https://www.europarl.europa.eu/meps/en/124726/HENNA_VIRKKUNEN_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",14620 +Dorfmann Herbert,"6568, 12967","340, 540",29,189,Parliament,"['479390782']","Südtiroler Volkspartei, Südtiroler Volkspartei (Partito popolare sudtirolese)",https://www.europarl.europa.eu/meps/en/96787/HERBERT_DORFMANN_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32904 +Hilde Vautmans,"12970, 6569",337,"31, 63",192,Parliament,"['700605423']",Open Vlaamse Liberalen en Democraten,https://www.europarl.europa.eu/meps/en/130100/HILDE_VAUTMANS_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",21421 +Corrao Ignazio,"12975, 6570",205,"34, 36",214,Parliament,"['143393223']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124856/IGNAZIO_CORRAO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Igor Soltes,6571,341,32,193,Parliament,"['2435411066']",Lista dr. Igorja Šoltesa,https://www.europarl.europa.eu/meps/en/125003/IGOR_SOLTES_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Ilhan Kyuchyuk,"6572, 12976",255,"31, 63",192,Parliament,"['2425184299']",Movement for Rights and Freedoms,https://www.europarl.europa.eu/meps/en/124866/ILHAN_KYUCHYUK_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",80951 +Ayala Ines Sender,6573,192,30,191,Parliament,"['2470710932']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/28292/INES_AYALA+SENDER_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33320 +Indrek Tarand,6574,342,32,193,Parliament,"['34585384']",Sõltumatu,https://www.europarl.europa.eu/meps/en/97136/INDREK_TARAND_home.html,,Estonia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Inese Vaidere,"12977, 6575","543, 312",29,189,Parliament,"['222400131']","Partija ""VIENOTĪBA""",https://www.europarl.europa.eu/meps/en/28617/INESE_VAIDERE_home.html,,Latvia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",87062 +Adinolfi Isabella,"6576, 12991",205,"34, 36",214,Parliament,"['2195622679']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124831/ISABELLA_ADINOLFI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +De Isabella Monte,6577,176,30,191,Parliament,"['1510780328']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124803/ISABELLA_DE+MONTE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Isabelle Thomas,6578,228,30,191,Parliament,"['1525524354']",Parti socialiste,https://www.europarl.europa.eu/meps/en/114279/ISABELLE_THOMAS_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Ertug Ismail,"6579, 12994",185,30,"200, 191",Parliament,"['578240398']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96842/ISMAIL_ERTUG_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Istvan Ujhelyi,"12995, 6580",247,30,"268, 191",Parliament,"['705011648558473216']",Magyar Szocialista Párt,https://www.europarl.europa.eu/meps/en/124705/ISTVAN_UJHELYI_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",86220 +Ivan Jakovcic,6581,343,31,192,Parliament,"['1149068857']",Istarski demokratski sabor - Dieta democratica istriana,https://www.europarl.europa.eu/meps/en/124754/IVAN_JAKOVCIC_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,81953 +Belet Ivo,6583,345,29,189,Parliament,"['24355430']",Christen-Democratisch & Vlaams,https://www.europarl.europa.eu/meps/en/28257/IVO_BELET_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,21521 +Dohrmann Jorn,6585,181,33,194,Parliament,"['2905209975']",Dansk Folkeparti,https://www.europarl.europa.eu/meps/en/124878/JORN_DOHRMANN_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,13720 +Jozsef Nagy,6586,347,29,189,Parliament,"['3088397200']",MOST - HÍD,https://www.europarl.europa.eu/meps/en/124926/JOZSEF_NAGY_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Jacek Saryusz-Wolski,"6587, 13005","175, 223","33, 36","239, 266",Parliament,"['1485429175']","Platforma Obywatelska, Prawo i Sprawiedliwość",https://www.europarl.europa.eu/meps/en/28297/JACEK_SARYUSZ-WOLSKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32","92435, 92436" +Foster Jacqueline,6588,179,33,194,Parliament,"['48507794']",Conservative Party,https://www.europarl.europa.eu/meps/en/4553/JACQUELINE_FOSTER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Jadwiga Wisniewska,"13007, 6589",223,33,"239, 194",Parliament,"['255941995']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/124877/JADWIGA_WISNIEWSKA_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92436 +Dalunde Jakop,6590,319,32,193,Parliament,"['6118442']",Miljöpartiet de gröna,https://www.europarl.europa.eu/meps/en/183338/JAKOP_DALUNDE_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11110 +Huitema Jan,"6591, 13011",218,"31, 63",192,Parliament,"['145297666']",Volkspartij voor Vrijheid en Democratie,https://www.europarl.europa.eu/meps/en/58789/JAN_HUITEMA_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22420 +Jan Olbrycht,"6592, 13012",175,29,"189, 190",Parliament,"['628396879']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/28288/JAN_OLBRYCHT_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92435 +Albrecht Jan Philipp,6593,209,32,193,Parliament,"['17131762']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/96736/JAN+PHILIPP_ALBRECHT_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41113 +Jan Zahradil,"13013, 6594",282,33,"305, 194",Parliament,"['1875717132']",Občanská demokratická strana,https://www.europarl.europa.eu/meps/en/23712/JAN_ZAHRADIL_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82413 +Atkinson Janice,6595,212,35,232,Parliament,"['3329053900']",-,https://www.europarl.europa.eu/meps/en/124938/JANICE_ATKINSON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Janusz Korwin-Mikke,"14768, 6596","268, 577",36,266,Parliament,"['2858025183']","Confederation Liberty and Independence, KORWiN","https://korwin-mikke.pl/, https://www.europarl.europa.eu/meps/en/124879/JANUSZ_KORWIN-MIKKE_home.html",,Poland,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.sejm.gov.pl/english/poslowie/posel.html",,"Poland, European Parliament","27, 19","49, 32", +Janusz Lewandowski,"13017, 6597",175,29,"189, 190",Parliament,"['146101077']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/23781/JANUSZ_LEWANDOWSKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92435 +Jaromir Kohlicek,6599,285,28,188,Parliament,"['714773575874514944']",Komunistická strana Čech a Moravy,https://www.europarl.europa.eu/meps/en/28331/JAROMIR_KOHLICEK_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82220 +Jaroslaw Walesa,"6600, 14526","175, 574",29,189,Parliament,"['2267143780']","Civic Coalition, Platforma Obywatelska","https://www.europarl.europa.eu/meps/en/96774/JAROSLAW_WALESA_home.html, https://jaroslawwalesa.pl",,Poland,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.sejm.gov.pl/english/poslowie/posel.html",,"Poland, European Parliament","27, 19","49, 32",92435 +Jasenko Selimovic,6601,191,31,192,Parliament,"['24033832']",Liberalerna,https://www.europarl.europa.eu/meps/en/134243/JASENKO_SELIMOVIC_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11420 +Javi López,"6602, 13020",349,30,"191, 379",Parliament,"['153388751']",Partit dels Socialistes de Catalunya,https://www.europarl.europa.eu/meps/en/125042/JAVI_LOPEZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Arthuis Jean,6603,350,31,192,Parliament,"['110191018']",Union des Démocrates et Indépendants,https://www.europarl.europa.eu/meps/en/124773/JEAN_ARTHUIS_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31430 +Jalkh Jean-Francois,6604,232,35,232,Parliament,"['2862580192']",Front national,https://www.europarl.europa.eu/meps/en/124770/JEAN-FRANCOIS_JALKH_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Cavada Jean-Marie,6606,351,31,192,Parliament,"['378480926']",Génération Citoyens,https://www.europarl.europa.eu/meps/en/28206/JEAN-MARIE_CAVADA_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Jean-Marie Le Pen,6607,232,36,266,Parliament,"['1206108030']",Front national,https://www.europarl.europa.eu/meps/en/1023/JEAN-MARIE_LE+PEN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Denanot Jean-Paul,6608,228,30,191,Parliament,"['106446573']",Parti socialiste,https://www.europarl.europa.eu/meps/en/94282/JEAN-PAUL_DENANOT_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Geier Jens,"13026, 6609",185,30,"200, 191",Parliament,"['36347303']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96833/JENS_GEIER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Jens Nilsson,6610,308,30,191,Parliament,"['25868679']",Arbetarepartiet- Socialdemokraterna,https://www.europarl.europa.eu/meps/en/111024/JENS_NILSSON_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11320 +Jens Rohde,"6611, 12493","408, 237",31,192,Parliament,"['2229015027']","Det Radikale Venstre, The Social Liberal Party",https://www.europarl.europa.eu/meps/en/96710/JENS_ROHDE_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,"European Parliament, Denmark","27, 5","45, 32",13410 +Jeppe Kofod,"12495, 6612","323, 412",30,191,Parliament,"['24909190']","The Social Democratic Party, Socialdemokratiet",https://www.europarl.europa.eu/meps/en/124870/JEPPE_KOFOD_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,"European Parliament, Denmark","27, 5","45, 32",13320 +Jeroen Lenaers,"13029, 6613",183,29,"189, 198",Parliament,"['399991392']",Christen Democratisch Appèl,https://www.europarl.europa.eu/meps/en/95074/JEROEN_LENAERS_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22521 +Buzek Jerzy,"13031, 6614",175,29,"189, 190",Parliament,"['104782747']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/28269/JERZY_BUZEK_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92435 +Jiri Pospisil,"13035, 6615",214,29,"189, 230",Parliament,"['1734717882']",TOP 09 a Starostové,https://www.europarl.europa.eu/meps/en/125706/JIRI_POSPISIL_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82530 +Jo Leinen,6616,185,30,191,Parliament,"['1040088108']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/4262/JO_LEINEN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Joelle Melin,"6617, 13041","232, 512","62, 35",232,Parliament,"['2362654915']","Rassemblement national, Front national",https://www.europarl.europa.eu/meps/en/124765/JOELLE_MELIN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31720 +Joachim Starbatty,6618,208,33,194,Parliament,"['3163035801']",Liberal-Conservative Refomists,https://www.europarl.europa.eu/meps/en/124827/JOACHIM_STARBATTY_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Fernandez Jonas,"6620, 13047",192,30,"207, 191",Parliament,"['15061445']",Partido Socialista Obrero Español,https://www.europarl.europa.eu/meps/en/125046/JONAS_FERNANDEZ_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",33320 +Bove Jose,6621,330,32,193,Parliament,"['23339387']",Europe Écologie,https://www.europarl.europa.eu/meps/en/96744/JOSE_BOVE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31110 +Josef Weidenholzer,6622,289,30,191,Parliament,"['420475423']",Sozialdemokratische Partei Österreichs,https://www.europarl.europa.eu/meps/en/111014/JOSEF_WEIDENHOLZER_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42320 +Jozo Rados,6623,352,31,192,Parliament,"['1313437296']",Hrvatska narodna stranka - liberalni demokrati,https://www.europarl.europa.eu/meps/en/112753/JOZO_RADOS_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,81712 +Jude Kirton-Darling,"13062, 6624",193,30,"208, 191",Parliament,"['28640933']",Labour Party,https://www.europarl.europa.eu/meps/en/124953/JUDE_KIRTON-DARLING_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Judith Sargentini,6625,316,32,193,Parliament,"['19763877']",GroenLinks,https://www.europarl.europa.eu/meps/en/96815/JUDITH_SARGENTINI_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22110 +Julia Reda,6626,353,32,193,Parliament,"['14861745']",Piratenpartei Deutschland,https://www.europarl.europa.eu/meps/en/124816/JULIA_REDA_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41952 +Girling Julie,6627,179,33,194,Parliament,"['252491320']",Conservative Party,https://www.europarl.europa.eu/meps/en/96956/JULIE_GIRLING_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Jutta Steinruck,6628,185,30,191,Parliament,"['18873086']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96831/JUTTA_STEINRUCK_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Guteland Jytte,"6629, 13069",308,30,"191, 332",Parliament,"['24181511']",Arbetarepartiet- Socialdemokraterna,https://www.europarl.europa.eu/meps/en/124991/JYTTE_GUTELAND_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",11320 +Delli Karima,"6630, 13071",330,32,"357, 193",Parliament,"['92233525']",Europe Écologie,https://www.europarl.europa.eu/meps/en/96868/KARIMA_DELLI_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31110 +Kateřina Konečná,"6632, 13078",285,28,"188, 308",Parliament,"['2362301084']",Komunistická strana Čech a Moravy,https://www.europarl.europa.eu/meps/en/23699/KATERINA_KONECNA_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",82220 +Brempt Kathleen Van,"6633, 13079",354,30,"384, 191",Parliament,"['381540723']",Socialistische Partij.Anders,https://www.europarl.europa.eu/meps/en/5729/KATHLEEN_VAN+BREMPT_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",21221 +Kati Piri,"6634, 13080",305,30,"191, 329",Parliament,"['2279751087']",Partij van de Arbeid,https://www.europarl.europa.eu/meps/en/37229/KATI_PIRI_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22320 +Kerstin Westphal,6635,185,30,191,Parliament,"['2370090686']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96839/KERSTIN_WESTPHAL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Fleckenstein Knut,6636,185,30,191,Parliament,"['19504290']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96840/KNUT_FLECKENSTEIN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Karins Krisjanis,6637,312,29,189,Parliament,"['99914275']","Partija ""VIENOTĪBA""",https://www.europarl.europa.eu/meps/en/96901/KRISJANIS_KARINS_home.html,,Latvia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,87062 +Comi Lara,6640,243,29,189,Parliament,"['156729839']",Forza Italia,https://www.europarl.europa.eu/meps/en/96775/LARA_COMI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Ferrara Laura,"13098, 6642",205,"34, 36",214,Parliament,"['2424047370']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124833/LAURA_FERRARA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Lieve Wierinck,6643,337,31,192,Parliament,"['1568102785']",Open Vlaamse Liberalen en Democraten,https://www.europarl.europa.eu/meps/en/183022/LIEVE_WIERINCK_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,21421 +Jaakonsaari Liisa,6644,356,30,191,Parliament,"['1011412910']",Suomen Sosialidemokraattinen Puolue/Finlands Socialdemokratiska Parti,https://www.europarl.europa.eu/meps/en/96684/LIISA_JAAKONSAARI_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,14320 +Engstrom Linnea,6645,319,32,193,Parliament,"['25489542']",Miljöpartiet de gröna,https://www.europarl.europa.eu/meps/en/128588/LINNEA_ENGSTROM_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11110 +Cesa Lorenzo,6646,336,29,189,Parliament,"['510693528']",Nuovo Centrodestra - Unione di Centro,https://www.europarl.europa.eu/meps/en/28451/LORENZO_CESA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32530 +Anderson Lucy,6649,193,30,191,Parliament,"['826743260']",Labour Party,https://www.europarl.europa.eu/meps/en/124949/LUCY_ANDERSON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Luigi Morgano,6650,176,30,191,Parliament,"['2853507520']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124788/LUIGI_MORGANO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Mairead Mcguinness,"13129, 6651",190,29,"189, 205",Parliament,"['166102184']",Fine Gael Party,https://www.europarl.europa.eu/meps/en/28115/MAIREAD_MCGUINNESS_home.html,,Ireland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Bjork Malin,"6652, 13132","357, 551",28,188,Parliament,"['2289930074']","Vänsterpartiet, Vänsterpartiet",https://www.europarl.europa.eu/meps/en/124992/MALIN_BJORK_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",11220 +Manfred Weber,"13133, 6653",272,29,"189, 294",Parliament,"['20399735']",Christlich-Soziale Union in Bayern e.V.,https://www.europarl.europa.eu/meps/en/28229/MANFRED_WEBER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Joulaud Marc,6654,240,29,189,Parliament,"['481538673']",Les Républicains,https://www.europarl.europa.eu/meps/en/124728/MARC_JOULAUD_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Marc Tarabella,"6655, 13141",230,30,"247, 191",Parliament,"['144238332']",Parti Socialiste,https://www.europarl.europa.eu/meps/en/29579/MARC_TARABELLA_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31320 +De Graaff Marcel,6656,249,35,232,Parliament,"['198791659']",Partij voor de Vrijheid,https://www.europarl.europa.eu/meps/en/125025/MARCEL_DE+GRAAFF_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22722 +Affronte Marco,6657,205,32,193,Parliament,"['46416760']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124797/MARCO_AFFRONTE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Marco Valli,6658,205,34,214,Parliament,"['2494327693']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124778/MARCO_VALLI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32956 +Marco Zanni,"6659, 13145","509, 194","62, 35",232,Parliament,"['112873259']","Lega, Independent",https://www.europarl.europa.eu/meps/en/124780/MARCO_ZANNI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32720 +Marco Zullo,"13146, 6660",205,"34, 36",214,Parliament,"['2780234221']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/125237/MARCO_ZULLO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Marcus Pretzell,6661,317,35,232,Parliament,"['1274709210']",Alternative für Deutschland,https://www.europarl.europa.eu/meps/en/124830/MARCUS_PRETZELL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41953 +Jurek Marek,6662,358,33,194,Parliament,"['125404928']",Prawica Rzeczypospolitej,https://www.europarl.europa.eu/meps/en/124892/MAREK_JUREK_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Auken Margrete,"6663, 13150",359,32,"193, 391",Parliament,"['37643162']",Socialistisk Folkeparti,https://www.europarl.europa.eu/meps/en/28161/MARGRETE_AUKEN_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",13230 +Grapini Maria,"13153, 6664","360, 196",30,"191, 211",Parliament,"['4706135422']","Partidul Puterii Umaniste, Partidul Social Democrat",https://www.europarl.europa.eu/meps/en/124785/MARIA_GRAPINI_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",93320 +Heubuch Maria,6665,209,32,193,Parliament,"['3834416134']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/124848/MARIA_HEUBUCH_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41113 +Harkin Marian,"6666, 16476","2, 194",31,192,Parliament,"['26228880']",Independent,"https://www.europarl.europa.eu/meps/en/28116/MARIAN_HARKIN_home.html, https://www.oireachtas.ie/en/members/member/Marian-Harkin.D.2002-06-06/",,"Ireland, Sligo-Leitrim",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4",,"Ireland, European Parliament","27, 11","54, 32",0 +Marietje Schaake,6668,207,31,192,Parliament,"['19541556']",Democraten 66,https://www.europarl.europa.eu/meps/en/96945/MARIETJE_SCHAAKE_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22330 +Marijana Petir,6669,362,29,189,Parliament,"['3520822337']",Hrvatska seljačka stranka,https://www.europarl.europa.eu/meps/en/124749/MARIJANA_PETIR_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,81810 +Albiol Guzman Marina,6670,173,28,188,Parliament,"['245074453']",Izquierda Unida,https://www.europarl.europa.eu/meps/en/125048/MARINA_ALBIOL+GUZMAN_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,33220 +Marisa Matias,"6672, 13166",363,28,"188, 395",Parliament,"['948552829']",Bloco de Esquerda,https://www.europarl.europa.eu/meps/en/96820/MARISA_MATIAS_home.html,,Portugal,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",35211 +Marita Ulvskog,6673,308,30,191,Parliament,"['21648649']",Arbetarepartiet- Socialdemokraterna,https://www.europarl.europa.eu/meps/en/96672/MARITA_ULVSKOG_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11320 +Gabriel Mariya,6674,203,29,189,Parliament,"['2162942852']",Citizens for European Development of Bulgaria,https://www.europarl.europa.eu/meps/en/96848/MARIYA_GABRIEL_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,80510 +Demesmaeker Mark,6675,310,33,194,Parliament,"['1374827906']",Nieuw-Vlaamse Alliantie,https://www.europarl.europa.eu/meps/en/117477/MARK_DEMESMAEKER_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,21916 +Ferber Markus,"13169, 6676",272,29,"189, 294",Parliament,"['1949513514']",Christlich-Soziale Union in Bayern e.V.,https://www.europarl.europa.eu/meps/en/1917/MARKUS_FERBER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Markus Pieper,"13170, 6677",186,29,"189, 201",Parliament,"['2979616235']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/28224/MARKUS_PIEPER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Hausling Martin,"13174, 6678",209,32,"193, 225",Parliament,"['82912952']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/96752/MARTIN_HAUSLING_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41113 +Martin Sonneborn,"13179, 6679",364,36,"396, 266",Parliament,"['20463983']",Die PARTEI,https://www.europarl.europa.eu/meps/en/124834/MARTIN_SONNEBORN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Martina Michels,"6680, 13182",204,28,"188, 220",Parliament,"['3292756634']",DIE LINKE.,https://www.europarl.europa.eu/meps/en/120478/MARTINA_MICHELS_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",201709 +Martina Werner,6681,185,30,191,Parliament,"['2350848886']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/124826/MARTINA_WERNER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Honeyball Mary,6682,193,30,191,Parliament,"['20237435']",Labour Party,https://www.europarl.europa.eu/meps/en/5846/MARY_HONEYBALL_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Massimo Paolucci,6683,332,30,191,Parliament,"['2370772835']",Articolo UNO – Movimento Democratico e Progressista,https://www.europarl.europa.eu/meps/en/124849/MASSIMO_PAOLUCCI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Matteo Salvini,6684,264,35,232,Parliament,"['270839361']",Lega Nord,https://www.europarl.europa.eu/meps/en/28404/MATTEO_SALVINI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32720 +Maurice Ponga,6685,240,29,189,Parliament,"['2497562078']",Les Républicains,https://www.europarl.europa.eu/meps/en/96931/MAURICE_PONGA_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Andersson Max,6686,319,32,193,Parliament,"['32393140']",Miljöpartiet de gröna,https://www.europarl.europa.eu/meps/en/124994/MAX_ANDERSSON_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11110 +Bresso Mercedes,6687,176,30,191,Parliament,"['16905927']",Partito Democratico,https://www.europarl.europa.eu/meps/en/28346/MERCEDES_BRESSO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Kyllonen Merja,6688,365,28,188,Parliament,"['2843868553']",Vasemmistoliitto,https://www.europarl.europa.eu/meps/en/124736/MERJA_KYLLONEN_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,14223 +Alliot-Marie Michele,6690,240,29,189,Parliament,"['149813090']",Les Républicains,https://www.europarl.europa.eu/meps/en/1179/MICHELE_ALLIOT-MARIE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Michele Rivasi,"13202, 6691",330,32,"357, 193",Parliament,"['89431845']",Europe Écologie,https://www.europarl.europa.eu/meps/en/96743/MICHELE_RIVASI_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31110 +Boni Michal,6692,175,29,189,Parliament,"['356190403']",Platforma Obywatelska,https://www.europarl.europa.eu/meps/en/124896/MICHAL_BONI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,92435 +Michael Theurer,"8178, 6693","177, 428","52, 31","463, 192",Parliament,"['1108382916']","FDP, Freie Demokratische Partei",https://www.europarl.europa.eu/meps/en/96871/MICHAEL_THEURER_home.html,,Germany,,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.bundestag.de/en/members",,"Germany, European Parliament","8, 27","29, 32",41420 +Dantin Michel,6694,240,29,189,Parliament,"['1137018775']",Les Républicains,https://www.europarl.europa.eu/meps/en/97296/MICHEL_DANTIN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Mba Michel Reimon,"6695, 15994","588, 366",32,193,Parliament,"['17448796']","The Greens, Die Grünen - Die Grüne Alternative","https://www.parlament.gv.at/WWER/PAD_84054/index.shtml, https://www.europarl.europa.eu/meps/en/124935/MICHEL_REIMON_home.html",,"Austria, BWV",B Bundeswahlvorschlag,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=",,"European Parliament, Austria","2, 27","55, 32",42110 +Giuffrida Michela,6696,176,30,191,Parliament,"['143536359']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124864/MICHELA_GIUFFRIDA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Crespo Miguel Urban,"6697, 13204",202,28,"188, 218",Parliament,"['392199690']",PODEMOS,https://www.europarl.europa.eu/meps/en/131507/MIGUEL_URBAN+CRESPO_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Milan Zver,"6698, 13209",242,29,"189, 260",Parliament,"['368804657']",Slovenska demokratska stranka,https://www.europarl.europa.eu/meps/en/96933/MILAN_ZVER_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",97330 +Diaconu Mircea,6699,194,31,192,Parliament,"['3889366779']",Independent,https://www.europarl.europa.eu/meps/en/124805/MIRCEA_DIACONU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Mikolasik Miroslav,6700,210,29,189,Parliament,"['1048626774']",Kresťanskodemokratické hnutie,https://www.europarl.europa.eu/meps/en/28178/MIROSLAV_MIKOLASIK_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96521 +Macovei Monica,6701,194,33,194,Parliament,"['854441570']",Independent,https://www.europarl.europa.eu/meps/en/96824/MONICA_MACOVEI_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Hohlmeier Monika,"13220, 6702",272,29,"189, 294",Parliament,"['2904048473']",Christlich-Soziale Union in Bayern e.V.,https://www.europarl.europa.eu/meps/en/96780/MONIKA_HOHLMEIER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Monika Smolkova,6703,236,30,191,Parliament,"['2336443579']",SMER-Sociálna demokracia,https://www.europarl.europa.eu/meps/en/96655/MONIKA_SMOLKOVA_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96423 +Monika Vana,"6704, 13221",366,32,"193, 398",Parliament,"['2615232002']",Die Grünen - Die Grüne Alternative,https://www.europarl.europa.eu/meps/en/124934/MONIKA_VANA_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",42110 +Messerschmidt Morten,"6705, 12553","181, 414",33,194,Parliament,"['509288627']","The Danish People's Party, Dansk Folkeparti",https://www.europarl.europa.eu/meps/en/96663/MORTEN_MESSERSCHMIDT_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,"European Parliament, Denmark","27, 5","45, 32",13720 +Mylene Troszczynski,6706,232,35,232,Parliament,"['326111493']",Front national,https://www.europarl.europa.eu/meps/en/124758/MYLENE_TROSZCZYNSKI_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Morano Nadine,"6707, 13227",240,29,"189, 258",Parliament,"['413839619']",Les Républicains,https://www.europarl.europa.eu/meps/en/72779/NADINE_MORANO_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31626 +Griesbeck Nathalie,6708,361,31,192,Parliament,"['25051152']",Mouvement Démocrate,https://www.europarl.europa.eu/meps/en/28208/NATHALIE_GRIESBECK_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Gill Nathan,"6709, 13231","511, 198","34, 36",214,Parliament,"['1668992125']","United Kingdom Independence Party, The Brexit Party",https://www.europarl.europa.eu/meps/en/124965/NATHAN_GILL_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51951 +Neoklis Sylikiotis,6710,367,28,188,Parliament,"['2482719410']",Progressive Party of Working People - Left - New Forces,https://www.europarl.europa.eu/meps/en/124689/NEOKLIS_SYLIKIOTIS_home.html,,Cyprus,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,55321 +Caputo Nicola,6711,176,30,191,Parliament,"['83041759']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124851/NICOLA_CAPUTO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Danti Nicola,6712,176,30,191,Parliament,"['829032654']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124821/NICOLA_DANTI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Bay Nicolas,"13238, 6713","232, 512","62, 35",232,Parliament,"['2443718293']","Rassemblement national, Front national",https://www.europarl.europa.eu/meps/en/124760/NICOLAS_BAY_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31720 +Farage Nigel,"13243, 6714","511, 198","34, 36",214,Parliament,"['19017675']","United Kingdom Independence Party, The Brexit Party",https://www.europarl.europa.eu/meps/en/4525/NIGEL_FARAGE_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51951 +Androulakis Nikos,"13246, 6715","562, 331",30,191,Parliament,"['581103570']","PASOK-KINAL, Panhellenic Socialist Movement - Olive Tree",https://www.europarl.europa.eu/meps/en/125110/NIKOS_ANDROULAKIS_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32329 +Nils Torvalds,"13247, 6716",368,"31, 63",192,Parliament,"['25057713']",Svenska folkpartiet,https://www.europarl.europa.eu/meps/en/114268/NILS_TORVALDS_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",14901 +Olaf Stuger,6717,249,35,232,Parliament,"['1374283010']",Partij voor de Vrijheid,https://www.europarl.europa.eu/meps/en/125028/OLAF_STUGER_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,22722 +Christensen Ole,6718,323,30,191,Parliament,"['2194389229']",Socialdemokratiet,https://www.europarl.europa.eu/meps/en/28154/OLE_CHRISTENSEN_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,13320 +Olga Sehnalova,6719,234,30,191,Parliament,"['296139716']",Česká strana sociálně demokratická,https://www.europarl.europa.eu/meps/en/96718/OLGA_SEHNALOVA_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82320 +Ludvigsson Olle,6720,308,30,191,Parliament,"['22004795']",Arbetarepartiet- Socialdemokraterna,https://www.europarl.europa.eu/meps/en/96673/OLLE_LUDVIGSSON_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,11320 +Karas Othmar,"13257, 6721",238,29,"189, 256",Parliament,"['120109196']",Österreichische Volkspartei,https://www.europarl.europa.eu/meps/en/4246/OTHMAR_KARAS_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",42520 +Niedermuller Peter,6722,253,30,191,Parliament,"['2875112260']",Demokratikus Koalíció,https://www.europarl.europa.eu/meps/en/124723/PETER_NIEDERMULLER_home.html,,Hungary,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,86221 +Paavo Vayrynen,6723,311,31,192,Parliament,"['398693880']",Suomen Keskusta,https://www.europarl.europa.eu/meps/en/2128/PAAVO_VAYRYNEN_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,14810 +Castro De Paolo,"6724, 13261",176,30,191,Parliament,"['9234892']",Partito Democratico,https://www.europarl.europa.eu/meps/en/96891/PAOLO_DE+CASTRO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Durand Pascal,"6725, 13265","519, 330","63, 32",193,Parliament,"['404894090']","Europe Écologie, Liste Renaissance",https://www.europarl.europa.eu/meps/en/124693/PASCAL_DURAND_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31110 +Patricija Sulin,6726,242,29,189,Parliament,"['391508451']",Slovenska demokratska stranka,https://www.europarl.europa.eu/meps/en/125103/PATRICIJA_SULIN_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,97330 +Hyaric Le Patrick,6727,292,28,188,Parliament,"['77963355']",Front de Gauche,https://www.europarl.europa.eu/meps/en/96735/PATRICK_LE+HYARIC_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +O’Flynn Patrick,6728,198,34,214,Parliament,"['158021529']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/124940/PATRICK_O%27FLYNN_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Patrizia Toia,"6729, 13267",176,30,191,Parliament,"['86719842']",Partito Democratico,https://www.europarl.europa.eu/meps/en/28340/PATRIZIA_TOIA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Nuttall Paul,6730,198,34,214,Parliament,"['873293086444703744']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/96805/PAUL_NUTTALL_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Paul Tang,"13269, 6731",305,30,"191, 329",Parliament,"['23318055']",Partij van de Arbeid,https://www.europarl.europa.eu/meps/en/125020/PAUL_TANG_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22320 +Pavel Poc,6733,234,30,191,Parliament,"['243097200']",Česká strana sociálně demokratická,https://www.europarl.europa.eu/meps/en/96715/PAVEL_POC_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82320 +Pavel Svoboda,6734,294,29,189,Parliament,"['2578600004']",Křesťanská a demokratická unie - Československá strana lidová,https://www.europarl.europa.eu/meps/en/96272/PAVEL_SVOBODA_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,201310 +Pavel Telicka,6735,280,31,192,Parliament,"['2317789460']",ANO 2011,https://www.europarl.europa.eu/meps/en/124706/PAVEL_TELICKA_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82430 +Beres Pervenche,6736,228,30,191,Parliament,"['230849793']",Parti socialiste,https://www.europarl.europa.eu/meps/en/1985/PERVENCHE_BERES_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Jahr Peter,"6737, 13276",186,29,"189, 201",Parliament,"['3119157183']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/96772/PETER_JAHR_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Peter Simon,6738,185,30,191,Parliament,"['292917443']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/96836/PETER_SIMON_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Dalen Peter Van,"6739, 13281",369,"29, 33",194,Parliament,"['198432070']",ChristenUnie,https://www.europarl.europa.eu/meps/en/96809/PETER_VAN+DALEN_home.html,,Netherlands,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",22526 +Jezek Petr,6740,280,31,192,Parliament,"['2396056585']",ANO 2011,https://www.europarl.europa.eu/meps/en/124707/PETR_JEZEK_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,82430 +Mach Petr,6741,370,34,214,Parliament,"['2510731297']",Strana svobodných občanů,https://www.europarl.europa.eu/meps/en/84175/PETR_MACH_home.html,,Czech Republic,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Petri Sarvamaa,"13285, 6742",339,29,"189, 366",Parliament,"['31193470']",Kansallinen Kokoomus,https://www.europarl.europa.eu/meps/en/112611/PETRI_SARVAMAA_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",14620 +Juvin Philippe,6743,240,29,189,Parliament,"['11911322']",Les Républicains,https://www.europarl.europa.eu/meps/en/96884/PHILIPPE_JUVIN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Lamberts Philippe,"13288, 6744",371,32,"193, 403",Parliament,"['165786404']",Ecologistes Confédérés pour l'Organisation de Luttes Originales,https://www.europarl.europa.eu/meps/en/96648/PHILIPPE_LAMBERTS_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",21111 +Loiseau Philippe,6745,232,35,232,Parliament,"['2841216929']",Front national,https://www.europarl.europa.eu/meps/en/125684/PHILIPPE_LOISEAU_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Antonio Panzeri Pier,6746,176,30,191,Parliament,"['371315536']",Partito Democratico,https://www.europarl.europa.eu/meps/en/28365/PIER+ANTONIO_PANZERI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Pedicini Piernicola,"6747, 13291",205,"34, 36",214,Parliament,"['631767111']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124844/PIERNICOLA_PEDICINI_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Picierno Pina,"6748, 13298",176,30,191,Parliament,"['339672122']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124846/PINA_PICIERNO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Fitto Raffaele,"13304, 6749","521, 372",33,194,Parliament,"['702661167']","Conservatori e Riformisti, Fratelli d'Italia",https://www.europarl.europa.eu/meps/en/4465/RAFFAELE_FITTO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32630 +Harms Rebecca,6750,209,32,193,Parliament,"['1379066754']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/28233/REBECCA_HARMS_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41113 +Butikofer Reinhard,"13312, 6751",209,32,"193, 225",Parliament,"['20610385']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/96739/REINHARD_BUTIKOFER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41113 +Remo Sernagiotto,6752,372,33,194,Parliament,"['552711664']",Conservatori e Riformisti,https://www.europarl.europa.eu/meps/en/124794/REMO_SERNAGIOTTO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Briano Renata,6753,176,30,191,Parliament,"['461219174']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124787/RENATA_BRIANO_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Renato Soru,6754,176,36,266,Parliament,"['93255334']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124860/RENATO_SORU_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Muselier Renaud,6755,240,29,189,Parliament,"['185976655']",Les Républicains,https://www.europarl.europa.eu/meps/en/124729/RENAUD_MUSELIER_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Corbett Richard,"6756, 13313",193,30,"208, 191",Parliament,"['1347250338']",Labour Party,https://www.europarl.europa.eu/meps/en/2309/RICHARD_CORBETT_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,2020-02-01,European Parliament,27,"43, 32",51320 +Richard Sulik,6757,373,33,194,Parliament,"['843244314']",Sloboda a Solidarita,https://www.europarl.europa.eu/meps/en/124928/RICHARD_SULIK_home.html,,Slovakia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,96440 +Kari Rina Ronja,6758,374,28,188,Parliament,"['31417167']",Folkebevægelsen mod EU,https://www.europarl.europa.eu/meps/en/122885/RINA+RONJA_KARI_home.html,,Denmark,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Gualtieri Roberto,"6760, 10351","176, 493",30,"106, 191",Parliament,"['103152299']","MISTO, Partito Democratico",https://www.europarl.europa.eu/meps/en/96892/ROBERTO_GUALTIERI_home.html,,Italy,,"https://www.camera.it/leg17/28?lettera=A, https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=",,"European Parliament, Italy","27, 12","23, 32",32440 +Roberts Zīle,"6761, 13321","527, 375",33,194,Parliament,"['104777237']","Nacionālā apvienība ""Visu Latvijai!""-""Tēvzemei un Brīvībai/LNNK""",https://www.europarl.europa.eu/meps/en/28615/ROBERTS_ZILE_home.html,,Latvia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",87071 +Helmer Roger,6762,198,34,214,Parliament,"['108882900']",United Kingdom Independence Party,https://www.europarl.europa.eu/meps/en/4516/ROGER_HELMER_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51951 +Ruza Tomasic,"13332, 6764",377,33,"410, 194",Parliament,"['1557028850']",Hrvatska konzervativna stranka,https://www.europarl.europa.eu/meps/en/119431/RUZA_TOMASIC_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Czarnecki Ryszard,"13334, 6765",223,33,"239, 194",Parliament,"['77188782']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/28372/RYSZARD_CZARNECKI_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92436 +Sabine Verheyen,"13335, 6766",186,29,"189, 201",Parliament,"['2606242467']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/96756/SABINE_VERHEYEN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Cicu Salvatore,6767,243,29,189,Parliament,"['379645871']",Forza Italia,https://www.europarl.europa.eu/meps/en/124854/SALVATORE_CICU_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Loones Sander,"15018, 6768",310,33,194,Parliament,"['370709666']",Nieuw-Vlaamse Alliantie,"https://www.sanderloones.eu, https://www.europarl.europa.eu/meps/en/128717/SANDER_LOONES_home.html",,"Belgium, West-Vlaanderen",,"https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,"Belgium, European Parliament","27, 3","44, 32",21916 +Kalniete Sandra,"13340, 6769","543, 312",29,189,Parliament,"['25509816']","Partija ""VIENOTĪBA""",https://www.europarl.europa.eu/meps/en/96934/SANDRA_KALNIETE_home.html,,Latvia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",87062 +Sergei Stanishev,"13349, 6770",235,30,"191, 252",Parliament,"['435714725']",Bulgarian Socialist Party,https://www.europarl.europa.eu/meps/en/124852/SERGEI_STANISHEV_home.html,,Bulgaria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",80220 +Simon Sion,6771,193,30,191,Parliament,"['18460290']",Labour Party,https://www.europarl.europa.eu/meps/en/124948/SION_SIMON_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51320 +Costa Silvia,6772,176,30,191,Parliament,"['1336254342']",Partito Democratico,https://www.europarl.europa.eu/meps/en/96917/SILVIA_COSTA_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32440 +Bonafe Simona,"6773, 13358",176,30,191,Parliament,"['391945446']",Partito Democratico,https://www.europarl.europa.eu/meps/en/124814/SIMONA_BONAFE_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32440 +Pietikäinen Sirpa,"13361, 6774",339,29,"189, 366",Parliament,"['20228586']",Kansallinen Kokoomus,https://www.europarl.europa.eu/meps/en/40599/SIRPA_PIETIKAINEN_home.html,,Finland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",14620 +Keller Ska,"6775, 13362",209,32,"193, 225",Parliament,"['16600393']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/96734/SKA_KELLER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41113 +Montel Sophie,6776,232,35,232,Parliament,"['3044857870']",Front national,https://www.europarl.europa.eu/meps/en/124769/SOPHIE_MONTEL_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Post Soraya,6777,378,30,191,Parliament,"['2467689584']",Feministiskt initiativ,https://www.europarl.europa.eu/meps/en/124997/SORAYA_POST_home.html,,Sweden,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Polcak Stanislav,"6779, 13365",379,29,"189, 412",Parliament,"['2414884400']",Starostové a nezávisli,https://www.europarl.europa.eu/meps/en/124704/STANISLAV_POLCAK_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Briois Steeve,6780,232,35,232,Parliament,"['498983436']",Front national,https://www.europarl.europa.eu/meps/en/124757/STEEVE_BRIOIS_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Maullu Stefano,6781,243,29,189,Parliament,"['23740839']",Forza Italia,https://www.europarl.europa.eu/meps/en/133326/STEFANO_MAULLU_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,32610 +Kouloglou Stelios,"6782, 13369",199,28,"188, 215",Parliament,"['136333369']",Coalition of the Radical Left,https://www.europarl.europa.eu/meps/en/130833/STELIOS_KOULOGLOU_home.html,,Greece,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",34020 +Giegold Sven,"13376, 6783",209,32,"193, 225",Parliament,"['16705726']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/96730/SVEN_GIEGOLD_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41113 +Schulze Sven,"13378, 6784",186,29,"189, 201",Parliament,"['2339095172']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/124809/SVEN_SCHULZE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41521 +Kamall Syed,6785,179,33,194,Parliament,"['144483627']",Conservative Party,https://www.europarl.europa.eu/meps/en/33569/SYED_KAMALL_home.html,,United Kingdom,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,51620 +Goddyn Sylvie,6786,232,35,232,Parliament,"['2598036859']",Front national,https://www.europarl.europa.eu/meps/en/21331/SYLVIE_GODDYN_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31720 +Guillaume Sylvie,"6788, 13383",228,30,"191, 244",Parliament,"['167328296']",Parti socialiste,https://www.europarl.europa.eu/meps/en/96952/SYLVIE_GUILLAUME_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31320 +Hadjigeorgiou Takis,6790,367,28,188,Parliament,"['512029333']",Progressive Party of Working People - Left - New Forces,https://www.europarl.europa.eu/meps/en/96907/TAKIS_HADJIGEORGIOU_home.html,,Cyprus,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,55321 +Gonzalez Penas Tania,6791,202,28,188,Parliament,"['2419290031']",PODEMOS,https://www.europarl.europa.eu/meps/en/127330/TANIA_GONZALEZ+PENAS_home.html,,Spain,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Fajon Tanja,"13386, 6792",381,30,"191, 414",Parliament,"['102918775']",Socialni demokrati,https://www.europarl.europa.eu/meps/en/96911/TANJA_FAJON_home.html,,Slovenia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",97321 +Tatjana Ždanoka,"6793, 13387",382,32,"415, 193",Parliament,"['252625352']",Latvijas Krievu savienība,https://www.europarl.europa.eu/meps/en/28619/TATJANA_ZDANOKA_home.html,,Latvia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Reintke Terry,"6794, 13388",209,32,"193, 225",Parliament,"['560188351']",Bündnis 90/Die Grünen,https://www.europarl.europa.eu/meps/en/103381/TERRY_REINTKE_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41113 +Handel Thomas,6795,204,28,188,Parliament,"['1294551798']",DIE LINKE.,https://www.europarl.europa.eu/meps/en/96851/THOMAS_HANDEL_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,201709 +Beghin Tiziana,"13396, 6796",205,"34, 36",214,Parliament,"['2343845391']",Movimento 5 Stelle,https://www.europarl.europa.eu/meps/en/124777/TIZIANA_BEGHIN_home.html,,Italy,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",32956 +Saifi Tokia,6797,240,29,189,Parliament,"['441101681']",Les Républicains,https://www.europarl.europa.eu/meps/en/4345/TOKIA_SAIFI_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31626 +Tom Vandenkendelaere,6798,345,29,189,Parliament,"['177605712']",Christen-Democratisch & Vlaams,https://www.europarl.europa.eu/meps/en/129164/TOM_VANDENKENDELAERE_home.html,,Belgium,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,21521 +Tomas Zdechovsky,"13400, 6799",294,29,"189, 318",Parliament,"['796413882']",Křesťanská a demokratická unie - Československá strana lidová,https://www.europarl.europa.eu/meps/en/124713/TOMAS_ZDECHOVSKY_home.html,,"Czech Republic, Czechia",,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",201310 +Picula Tonino,"6800, 13404",189,30,"204, 191",Parliament,"['306134959']",Socijaldemokratska partija Hrvatske,https://www.europarl.europa.eu/meps/en/112744/TONINO_PICULA_home.html,,Croatia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",81223 +Traian Ungureanu,6801,174,29,189,Parliament,"['625617955']",Partidul Naţional Liberal,https://www.europarl.europa.eu/meps/en/96835/TRAIAN_UNGUREANU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93430 +Bullmann Udo,"6802, 13408",185,30,"200, 191",Parliament,"['2461432297']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/4267/UDO_BULLMANN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",41320 +Udo Voigt,6803,383,36,266,Parliament,"['48694964']",Nationaldemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/124832/UDO_VOIGT_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,85424 +Lunacek Ulrike,6804,366,32,193,Parliament,"['182404196']",Die Grünen - Die Grüne Alternative,https://www.europarl.europa.eu/meps/en/97017/ULRIKE_LUNACEK_home.html,,Austria,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,42110 +Muller Ulrike,"6805, 13409",384,"31, 63",192,Parliament,"['612717643']",Freie Wähler,https://www.europarl.europa.eu/meps/en/124862/ULRIKE_MULLER_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32", +Rodust Ulrike,6806,185,30,191,Parliament,"['28767771']",Sozialdemokratische Partei Deutschlands,https://www.europarl.europa.eu/meps/en/93624/ULRIKE_RODUST_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41320 +Trebesius Ulrike,6807,208,33,194,Parliament,"['2884017652']",Liberal-Conservative Refomists,https://www.europarl.europa.eu/meps/en/124829/ULRIKE_TREBESIUS_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32, +Paet Urmas,"13410, 6808",222,"31, 63",192,Parliament,"['1198416960']",Eesti Reformierakond,https://www.europarl.europa.eu/meps/en/129073/URMAS_PAET_home.html,,Estonia,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",83430 +Negrescu Victor,6809,196,30,191,Parliament,"['241540322']",Partidul Social Democrat,https://www.europarl.europa.eu/meps/en/88882/VICTOR_NEGRESCU_home.html,,Romania,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,93320 +Peillon Vincent,6810,228,30,191,Parliament,"['25104112']",Parti socialiste,https://www.europarl.europa.eu/meps/en/28166/VINCENT_PEILLON_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31320 +Roziere Virginie,6812,385,30,191,Parliament,"['2293287188']",Parti radical de gauche,https://www.europarl.europa.eu/meps/en/103845/VIRGINIE_ROZIERE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,31421 +Langen Werner,6814,186,29,189,Parliament,"['1030730444']",Christlich Demokratische Union Deutschlands,https://www.europarl.europa.eu/meps/en/1928/WERNER_LANGEN_home.html,,Germany,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,32,41521 +Jadot Yannick,"13429, 6815",330,32,"357, 193",Parliament,"['117761523']",Europe Écologie,https://www.europarl.europa.eu/meps/en/96740/YANNICK_JADOT_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31110 +Omarjee Younous,"6816, 13430","386, 515",28,188,Parliament,"['116407356']","L'union pour les Outremer, La France Insoumise",https://www.europarl.europa.eu/meps/en/30482/YOUNOUS_OMARJEE_home.html,,France,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",31240 +Kuźmiuk Zbigniew,"6817, 13431",223,33,"239, 194",Parliament,"['357514379']",Prawo i Sprawiedliwość,https://www.europarl.europa.eu/meps/en/28389/ZBIGNIEW_KUZMIUK_home.html,,Poland,,https://www.europarl.europa.eu/meps/en/full-list.html?filter=all&leg=,,European Parliament,27,"43, 32",92436 +Andrés Irene Rivera,6819,387,37,420,Parliament,"['2163601513']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=245&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Raimundo Viejo Viñas,6820,388,38,421,Parliament,"['229165429']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=266&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +González María Veracruz,6927,389,39,422,Parliament,"['17593734']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=166&idLegislatura=12,,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Álvarez Álvarez Ángeles,6928,389,39,422,Parliament,"['61631963']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=102&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33320 +José Luis Meco Ábalos,"16055, 6929",389,39,422,Parliament,"['202372417']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=171&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=267&idLegislatura=14",,Comunitat Valenciana,Valencia/València,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/PagPersDip",,Spain,21,"10, 56",33320 +Adriana Fernández Lastra,"16228, 6930, 15113",389,39,422,Parliament,"['200194757']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=284&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=109&idLegislatura=14, none",,Principado de Asturias,Asturias,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Alberto Espinosa Garzón,"15095, 16187, 6931","584, 390, 598",38,421,Parliament,"['11904592']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN, IU","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=240&idLegislatura=12, https://www.agarzon.net, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=12&idLegislatura=14",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33020 +Antonio González Terol,"6932, 16199, 15107","392, 387",40,425,Parliament,"['164274777']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=166&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=170&idLegislatura=12, https://www.facebook.com/aglezterol/",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Aina Sáez Vidal,"16398, 6933","591, 388",38,421,Parliament,"['53350394']","ECP-GUAYEM EL CANVI, ECP","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=266&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=256&idLegislatura=12",,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56", +Melero Sánchez Tania,6934,390,38,421,Parliament,"['20929745']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=272&idLegislatura=12,,,Tania,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Aitor Bravo Esteban,"16155, 15102, 6935",397,42,430,Parliament,"['158442670']","EAJ-PNV, EAJ-PNV","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=235&idLegislatura=12, https://aitoresteban.eus, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=94&idLegislatura=14",,País Vasco,Bizkaia,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33902 +Alberto Rodríguez Rodríguez,"6936, 16333",390,38,421,Parliament,"['3380065859']",UP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=328&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=338&idLegislatura=14",,Canarias,S/C Tenerife,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33020 +Albert Díaz Rivera,"6937, 15088",387,37,420,Parliament,"['108994652']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=95&idLegislatura=12, https://www.albertrivera.es",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Alberto Celia Pérez,6938,392,40,425,Parliament,"['296534794']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=359&idLegislatura=12,,Canarias,Palmas (Las),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33610 +Alconchel Gonzaga Miriam,6939,389,39,422,Parliament,"['1431097482']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=276&idLegislatura=12,,Andalucía,Cádiz,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33320 +Adán Alfonso Candón,6940,392,40,425,Parliament,"['2320400652']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=77&idLegislatura=12,,Andalucía,Cádiz,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Alicia Pérez Sánchez-Camacho,6941,392,40,425,Parliament,"['518335085']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=92&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Alberto Montero Soler,6942,390,38,421,Parliament,"['815159544']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=41&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Ana Botella Gómez María,"6943, 16100",389,39,422,Parliament,"['4258411577']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=237&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=238&idLegislatura=14",,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Ana Belén Blanco Vázquez,"15176, 16391, 6944","392, 387",40,425,Parliament,"['397867366']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=115&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=23&idLegislatura=12, https://www.gppopular.es/diputados/ana-belen-vazquez/",,Galicia,Ourense,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Ana Díaz Madrazo María,6945,392,40,425,Parliament,"['375614100']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=218&idLegislatura=12,,Cantabria,Cantabria,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Ana Marcello Santos,6946,390,38,421,Parliament,"['2246206818']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=338&idLegislatura=12,,Castilla y León,León,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Ana María Spadea Surra,6947,402,43,435,Parliament,"['181749304']",ERC-CATSÍ,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=349&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33905 +Ana Belén Berbel Terrón,6948,390,38,421,Parliament,"['108310222']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=174&idLegislatura=12,,Andalucía,Granada,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Ana Expósito María Zurita,"16404, 6949",392,40,425,Parliament,"['518445571']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=52&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=111&idLegislatura=14",,Canarias,S/C Tenerife,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +González Luis Muñoz Ángel,6950,392,40,425,Parliament,"['196331193']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=208&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Antonio Hurtado Zurera,"6951, 16217",389,39,422,Parliament,"['20585781']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=372&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=144&idLegislatura=12",,Andalucía,Córdoba,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Antonio Lombán María Ramón Trevín,6952,389,39,422,Parliament,"['1586910313']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=216&idLegislatura=12,,Principado de Asturias,Asturias,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Antoni Postius Terrado,6953,400,41,428,Parliament,"['2381824175']",CDC,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=348&idLegislatura=12,,Cataluña,LLeida,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33911 +Calvache Reynés Águeda,6954,392,40,425,Parliament,"['406583668']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=229&idLegislatura=12,,Illes Balears,Balears (Illes),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Auxiliadora Chulián Honorato María,6955,390,38,421,Parliament,"['962015557']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=172&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Avelino Barrionuevo De Gener,6956,392,40,425,Parliament,"['452979002']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=4&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Belén Hoyo Juliá,"16216, 6957, 15127","392, 387",40,425,Parliament,"['239779545']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=141&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=210&idLegislatura=12, none",,Comunitat Valenciana,Valencia/València,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Arriba Bienvenido De Sánchez,6958,392,40,425,Parliament,"['274666040']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=13&idLegislatura=12,,Castilla y León,Salamanca,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Baena Bravo Juan,6959,392,40,425,Parliament,"['4185752121']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=141&idLegislatura=12,,Ceuta (Ciudad Autónoma de),Ceuta,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Capdevila Esteve I Joan,"6960, 16115","593, 402",43,435,Parliament,"['331085228']","ERC-S, ERC-CATSÍ","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=172&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=336&idLegislatura=12",,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33905 +Campuzano Canadés Carles I,6961,400,41,428,Parliament,"['14047971']",CDC,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=40&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33911 +Carlos García Rojas,"16335, 15103, 6962","392, 387",40,425,Parliament,"['158846236']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=242&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=307&idLegislatura=12, https://www.gppopular.es",,Andalucía,Granada,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Carmen Pérez Valido,6963,390,38,421,Parliament,"['701080966236917760']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=149&idLegislatura=12,,Canarias,Palmas (Las),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Carmen Cuello Pérez Rocío,6964,389,39,422,Parliament,"['333322412']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=194&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Carolina España Reina,"16152, 6965",392,40,425,Parliament,"['700630213462401024']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=15&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=316&idLegislatura=14",,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Ascensión Carreño Fernández María,6966,392,40,425,Parliament,"['3654855981']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=137&idLegislatura=12,,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Fresquet Marta Sorlí,6967,404,41,428,Parliament,"['554631256']",C-P-EUPV,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=222&idLegislatura=12,,Comunitat Valenciana,Castellón/Castelló,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33098 +Armendáriz Carlos Casimiro Salvador,6968,405,41,428,Parliament,"['625442348']",UPN-PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=27&idLegislatura=12,,Navarra (Comunidad Foral de),Navarra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Arce Celso Delgado Luis,"16141, 6969",392,40,425,Parliament,"['755798880118243328']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=116&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=20&idLegislatura=12",,Galicia,Ourense,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +César Luena López,"12809, 6970","389, 192","30, 39","422, 207",Parliament,"['163029352']","PSOE, Partido Socialista Obrero Español",https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=119&idLegislatura=12,,"Spain, La Rioja",Rioja (La),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,"European Parliament, Spain","21, 27","10, 43",33320 +Barber Chiquillo José María,6971,392,40,425,Parliament,"['253469738']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=254&idLegislatura=12,,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Cruz De La Marta María Rivera,6972,387,37,420,Parliament,"['736284974878478337']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=98&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +José Manuel Pérez Villegas,"15099, 6973",387,37,420,Parliament,"['144231116']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=100&idLegislatura=12, https://ciudadanos-cs.org",,Cataluña,Barcelona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Carmen Lacoba Navarro,"6974, 16284",392,40,425,Parliament,"['4172373034']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=82&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=191&idLegislatura=12",,Castilla - La Mancha,Albacete,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Cristóbal Montoro Ricardo Romero,6975,392,40,425,Parliament,"['4786148403']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=200&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Carmelo Hernández Romero,"16336, 6976",392,40,425,Parliament,"['461900036']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=280&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=241&idLegislatura=14",,Andalucía,Huelva,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Fernando Fernández-Rodríguez Navarro,6977,387,37,420,Parliament,"['3947076561']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=25&idLegislatura=12,,Illes Balears,Balears (Illes),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Cañamero Diego Valle,6978,390,38,421,Parliament,"['1894591321']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=298&idLegislatura=12,,Andalucía,Jaén,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Clemente Diego Giménez,6979,387,37,420,Parliament,"['101598854']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=135&idLegislatura=12,,Andalucía,Almería,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Diego Lombilla Movellán,"6980, 16278",392,40,425,Parliament,"['96331240']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=78&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=365&idLegislatura=12",,Cantabria,Cantabria,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Dolors Montserrat Montserrat,"12872, 6981","392, 201","40, 29","425, 217",Parliament,"['283559538']","PP, Partido Popular",https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=83&idLegislatura=12,,"Cataluña, Spain",Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,"European Parliament, Spain","21, 27","10, 43",33610 +David Pariente Serrada,"16369, 15142, 6982",389,39,422,Parliament,"['271436089']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=37&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=168&idLegislatura=12, none",,Castilla y León,Salamanca,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Eduardo Fernández García,6983,392,40,425,Parliament,"['716943372678742016']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=87&idLegislatura=12,,Castilla y León,León,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Eduardo Javier Maura Zorita,6984,390,38,421,Parliament,"['455875065']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=188&idLegislatura=12,,País Vasco,Bizkaia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +De Elena Encarnación Faba La,6985,387,37,420,Parliament,"['2195620676']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=275&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Eloy Lamata Suárez,"16378, 6986","393, 392",40,425,Parliament,"['241080178']","PP-PAR, PP","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=214&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=18&idLegislatura=12",,Aragón,Zaragoza,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Elvira Ramón Utrabo,"16318, 6987",389,39,422,Parliament,"['390217747']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=8&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=179&idLegislatura=12",,Andalucía,Granada,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Begoña Moreno Tundidor Victoria,6988,389,39,422,Parliament,"['341735522']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=49&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Del Emilio Río Sanz,6989,392,40,425,Parliament,"['168447928']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=74&idLegislatura=12,,La Rioja,Rioja (La),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Eduardo Itoiz Santos,6990,390,38,421,Parliament,"['704652799288725504']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=323&idLegislatura=12,,Navarra (Comunidad Foral de),Navarra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Capella Ester Farré I,6991,402,43,435,Parliament,"['232168294']",ERC-CATSÍ,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=301&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33905 +Camarero Esther Peña,"6992, 16301, 15137",389,39,422,Parliament,"['266683385']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=18&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=303&idLegislatura=12, none",,Castilla y León,Burgos,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Eva García Sempere,"15128, 6993","584, 390",38,421,Parliament,"['2415685538']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=241&idLegislatura=12, none",,Andalucía,Málaga,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33020 +Antonio García Mira Ricardo,6994,394,39,422,Parliament,"['73171981']",PSdG-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=99&idLegislatura=12,,Galicia,Coruña (A),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Alférez Felipe Jesús Sicilia,"16372, 15131, 6995",389,39,422,Parliament,"['246982544']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=259&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=107&idLegislatura=12, none",,Andalucía,Jaén,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Félix Palleiro Álvarez,6996,387,37,420,Parliament,"['238275157']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=132&idLegislatura=12,,Cantabria,Cantabria,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33420 +Alonso Cantorné Félix,6997,388,38,421,Parliament,"['237218780']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=247&idLegislatura=12,,Cataluña,Tarragona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10, +Barandiarán Fernando Maura,6998,387,37,420,Parliament,"['240613149']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=209&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Arisqueta Francisco Igea,6999,387,37,420,Parliament,"['493242970']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=9&idLegislatura=12,,Castilla y León,Valladolid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +De Díaz Francisco La Torre,7000,387,37,420,Parliament,"['195498264']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=59&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Gabriel Romero Rufián,"15149, 16343, 7001","593, 402, 583",43,435,Parliament,"['2904896141']","ERC-S, Republicano, ERC-CATSÍ","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=187&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=335&idLegislatura=12, https://www.gabrielrufian.cat",,Cataluña,Barcelona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33905 +Carlos Girauta Juan Vidal,"15119, 7002",387,37,420,Parliament,"['2223841798']",Cs,"https://www.ciudadanos-cs.org, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=339&idLegislatura=12",,Cataluña,Barcelona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Elizo Gloria María Serrano,"7003, 15150, 16148","584, 390",38,421,Parliament,"['301403189']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=300&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=147&idLegislatura=12, https://Facebook.com/GloriaElizo",,Castilla - La Mancha,Toledo,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33020 +Anaya Guillermo Mariscal,"16249, 7004, 15112","392, 387",40,425,Parliament,"['196204374']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=339&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=319&idLegislatura=12, none",,Canarias,Palmas (Las),"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Gonzalo Guarné Palacín,7005,389,39,422,Parliament,"['805238214']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=321&idLegislatura=12,,Aragón,Huesca,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Cámara Gregorio Villar,7006,389,39,422,Parliament,"['736562893']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=278&idLegislatura=12,,Andalucía,Granada,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Antonio Couselo Guillermo Meijón,"7007, 15094, 16264","394, 589, 389",39,422,Parliament,"['118033828']","PSdG-PSOE, PSOE, PsdeG-PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=1&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=162&idLegislatura=12, https://www.escoladeferrado.es",,Galicia,Pontevedra,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Bento Carmen Del Hernández María,7008,392,40,425,Parliament,"['4203496689']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=53&idLegislatura=12,,Canarias,Palmas (Las),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Alberto Bono Herrero José,"7009, 16213","393, 392",40,425,Parliament,"['2849798849']","PP-PAR, PP","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=239&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=184&idLegislatura=12",,Aragón,Teruel,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Errejón Galván Íñigo,"7010, 16151","390, 596",38,421,Parliament,"['482389606']","UP, MÁS PAÍS-EQUO","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=185&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=233&idLegislatura=14",,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33020 +Candela Ignasi Serna,7011,404,41,428,Parliament,"['105936954']",C-P-EUPV,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=224&idLegislatura=12,,Comunitat Valenciana,Alicante/Alacant,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33098 +Alli Jesús Martínez Íñigo,7012,405,41,428,Parliament,"['27010192']",UPN-PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=211&idLegislatura=12,,Navarra (Comunidad Foral de),Navarra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33610 +García Isabel Rodríguez,7013,389,39,422,Parliament,"['140862366']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=246&idLegislatura=12,,Castilla - La Mancha,Ciudad Real,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Ignacio Sancho Urquizu,7014,389,39,422,Parliament,"['148748195']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=75&idLegislatura=12,,Aragón,Teruel,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Javier Serna Sánchez,"16361, 7015",390,38,421,Parliament,"['300969753']",UP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=163&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=67&idLegislatura=14",,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33020 +Alonso José Zaragoza,"7016, 15196, 16403","389, 398",39,422,Parliament,"['715890348569010176']","PSC-PSOE, PSC-PSOE, PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=263&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=196&idLegislatura=14",,Cataluña,Barcelona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Antonio Delgado Juan Ramos,"15180, 7017","584, 390",38,421,Parliament,"['409549183']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=142&idLegislatura=12, https://podemos.info",,Andalucía,Cádiz,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo",,Spain,21,"10, 53",33020 +De Eduardo Jaime Olano Vela,"7018, 16289, 15106","392, 387",40,425,Parliament,"['1637483929']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=167&idLegislatura=14, https://www.gppopular.es/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=152&idLegislatura=12",,Galicia,Lugo,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Andrés José Mora Torres,7019,389,39,422,Parliament,"['361281589']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=158&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Jaume Matas Moya,7020,388,38,421,Parliament,"['3385532741']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=267&idLegislatura=12,,Cataluña,LLeida,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Antón Cacho Javier,"7021, 16073",389,39,422,Parliament,"['119170897']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=198&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=100&idLegislatura=14",,Castilla y León,Soria,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,"10, 56",33320 +Aranzábal Javier Maroto,7022,392,40,425,Parliament,"['66940461']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=355&idLegislatura=12,,País Vasco,Araba/Álava,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Carracedo David José Verde,7023,390,38,421,Parliament,"['258600494']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=318&idLegislatura=12,,País Vasco,Bizkaia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Díaz Fernández Jesús María,7024,389,39,422,Parliament,"['2151581724']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=244&idLegislatura=12,,Navarra (Comunidad Foral de),Navarra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Ayllón José Luis Manso,7025,392,40,425,Parliament,"['10809072']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=286&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33610 +Arca Joan Mena,"16265, 7026","591, 388",38,421,Parliament,"['61822734']","ECP-GUAYEM EL CANVI, ECP","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=264&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=253&idLegislatura=12",,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56", +Coma I Joan Tardà,7027,402,43,435,Parliament,"['363696047']",ERC-CATSÍ,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=334&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33905 +Albaladejo Joaquín Martínez,7028,392,40,425,Parliament,"['382328551']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=255&idLegislatura=12,,Comunitat Valenciana,Alicante/Alacant,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33610 +Jordi Mas Roca,7029,392,40,425,Parliament,"['14966033']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=106&idLegislatura=12,,Cataluña,Tarragona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Costa I Jordi Xuclà,7030,400,41,428,Parliament,"['12124172']",CDC,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=6&idLegislatura=12,,Cataluña,Girona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33911 +Díaz Fernández Jorge,7031,392,40,425,Parliament,"['723712422587019264']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=169&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Bail Jorge Luis,7032,390,38,421,Parliament,"['17353978']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=60&idLegislatura=12,,Aragón,Huesca,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +González José Luis Martínez,7033,387,37,420,Parliament,"['186788672']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=115&idLegislatura=12,,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Camacho José Miguel Sánchez,7034,389,39,422,Parliament,"['336668028']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=17&idLegislatura=12,,Castilla - La Mancha,Toledo,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +García Hernández José Ramón,7035,392,40,425,Parliament,"['4171612029']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=89&idLegislatura=12,,Castilla y León,Ávila,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Juan Pedro Suárez Yllanes,7036,399,38,421,Parliament,"['4299732613']",UPM,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=93&idLegislatura=12,,Illes Balears,Balears (Illes),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Carbonell I Joan Ruiz,"16345, 7037",398,39,422,Parliament,"['163541727']","PSC-PSOE, PSC-PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=261&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=209&idLegislatura=14",,Cataluña,Tarragona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Duch I Jordi Salvador,"16354, 15160, 7038","593, 402, 583",43,435,Parliament,"['326105216']","ERC-S, Republicano, ERC-CATSÍ","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=184&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=337&idLegislatura=12, https://www.youtube.com/user/jordisd9",,Cataluña,Tarragona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33905 +Jesús Postigo Quintana,"7039, 16309",392,40,425,Parliament,"['2457797184']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=72&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=51&idLegislatura=14",,Castilla y León,Segovia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Jiménez Juan Tortosa,7040,389,39,422,Parliament,"['456519574']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=330&idLegislatura=12,,Andalucía,Almería,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Gordo Juan Luis Pérez,7041,389,39,422,Parliament,"['272656294']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=157&idLegislatura=12,,Castilla y León,Segovia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Del Ibáñez Juan Manuel Olmo,7042,390,38,421,Parliament,"['19020032']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=38&idLegislatura=12,,Castilla y León,Valladolid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Aras Juan Pérez Vicente,7043,392,40,425,Parliament,"['1187155471']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=62&idLegislatura=12,,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Julián López Milla,7044,389,39,422,Parliament,"['174797966']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=30&idLegislatura=12,,Comunitat Valenciana,Alicante/Alacant,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Antonio De Garmendia Juan López Uralde,"16236, 7045",390,38,421,Parliament,"['69060709']",UP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=205&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=196&idLegislatura=12",,País Vasco,Araba/Álava,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33020 +Bosó José Marí Vicente,7046,392,40,425,Parliament,"['1397939407']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=140&idLegislatura=12,,Illes Balears,Balears (Illes),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Iribarren Javier José Lasarte,7047,396,39,422,Parliament,"['925408752']",PSE-EE-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=35&idLegislatura=12,,País Vasco,Araba/Álava,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Buldó Ciuró I Lourdes,7048,400,41,428,Parliament,"['145549038']",CDC,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=212&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33911 +Carlos García Luis Sahuquillo,"15168, 16352, 7049",389,39,422,Parliament,"['364183185']",PSOE,"https://www.psoecuenca.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=1&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=2&idLegislatura=14",,Castilla - La Mancha,Cuenca,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Antonio Gutiérrez Limones,7050,389,39,422,Parliament,"['1089488659']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=175&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Dolores Marcos María Moyano,7051,392,40,425,Parliament,"['311987298']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=46&idLegislatura=12,,Extremadura,Cáceres,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Cascales Loreto Martínez,7052,390,40,425,Parliament,"['3221111871']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=130&idLegislatura=12,,Comunitat Valenciana,Alicante/Alacant,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +García Luis Miguel Salvador,7053,387,37,420,Parliament,"['15180395']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=16&idLegislatura=12,,Andalucía,Granada,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Luz Martínez María Seijo,"16257, 15139, 7054",389,39,422,Parliament,"['270356445']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=297&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=251&idLegislatura=14, https://www.luzseijo.com",,Castilla y León,Palencia,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Aurora Flórez María Rodríguez,7055,389,39,422,Parliament,"['3892982842']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=288&idLegislatura=12,,Castilla y León,León,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Bustamante Martín Miguel Ángel,7056,390,38,421,Parliament,"['4181148713']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=242&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Díaz Heredia Miguel Ángel,7057,389,39,422,Parliament,"['199231277']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=50&idLegislatura=12,,Andalucía,Málaga,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Balmaseda Cotelo Mar,7058,392,40,425,Parliament,"['401988151']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=73&idLegislatura=12,,La Rioja,Rioja (La),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Balsera Gómez Marcial,"15097, 7059",387,37,420,Parliament,"['1278012284']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=116&idLegislatura=12, https://www.ciudadanos-cs.org",,Andalucía,Córdoba,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Estañol Lamuà Marc,"7060, 15108, 16227","389, 398",39,422,Parliament,"['171506399']","PSC-PSOE, PSC-PSOE, PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=260&idLegislatura=12, none, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=200&idLegislatura=14",,Cataluña,Girona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +María Tejada Torres,7061,392,40,425,Parliament,"['376660921']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=366&idLegislatura=12,,Andalucía,Jaén,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Eugenia María Rodríguez Romero,7062,392,40,425,Parliament,"['4130446661']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=76&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Camps Marta Sibina,7063,388,38,421,Parliament,"['285112683']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=269&idLegislatura=12,,Cataluña,Girona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Llaguno Marta Martín,"7064, 15195, 16253",387,37,420,Parliament,"['65325998']",Cs,"https://www.ciudadanos-cs.org, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=155&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=8&idLegislatura=12",,Comunitat Valenciana,Alicante/Alacant,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33420 +Fernando Martínez-Maíllo Toribio,7065,392,40,425,Parliament,"['237256444']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=32&idLegislatura=12,,Castilla y León,Zamora,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Mayoral Perales Rafael,"15096, 7066, 16261","584, 390",38,421,Parliament,"['1269484171']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://podemos.info, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=257&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=336&idLegislatura=14",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33020 +Cospedal De Dolores García María,7067,392,40,425,Parliament,"['220958101']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=292&idLegislatura=12,,Castilla - La Mancha,Toledo,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Conillas I María Mercè Perea,"7068, 15116, 16302","389, 398",39,422,Parliament,"['214794461']","PSC-PSOE, PSC-PSOE, PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=203&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=252&idLegislatura=12, none",,Cataluña,Barcelona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Gutiérrez Miguel Vivas Ángel,"15124, 7069",387,37,420,Parliament,"['2250812558']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=96&idLegislatura=12, https://ciudadanos-cs.org",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Garzón Micaela Navarro,7070,389,39,422,Parliament,"['198832885']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=125&idLegislatura=12,,Andalucía,Jaén,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Diéguez Miguel Viso Ángel,7071,392,40,425,Parliament,"['4349709262']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=103&idLegislatura=12,,Galicia,Ourense,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Garaulet Miguel Rodríguez Ángel,7072,387,37,420,Parliament,"['324911077']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=114&idLegislatura=12,,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Gómez Miguel Vila,7073,390,38,421,Parliament,"['379850316']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=226&idLegislatura=12,,Castilla y León,Burgos,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Legarda Mikel Uriarte,"16231, 7074, 15181",397,42,430,Parliament,"['4178226827']","EAJ-PNV, EAJ-PNV","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=232&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=95&idLegislatura=14, https://congreso.eaj-pnv.eus",,País Vasco,Araba/Álava,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33902 +Jesús Jiménez María Serrano,7075,389,39,422,Parliament,"['538438751']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=193&idLegislatura=12,,Andalucía,Córdoba,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Almaraz Jesús María Moro,"7076, 16277",392,40,425,Parliament,"['2365318187']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=91&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=12&idLegislatura=12",,Castilla y León,Salamanca,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Expósito Marcelo Prieto,7077,388,38,421,Parliament,"['300323478']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=101&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Hernández Melisa Rodríguez,"7078, 15157",387,37,420,Parliament,"['3166103591']",Cs,"https://www.ciudadanos-cs.org/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=340&idLegislatura=12",,Canarias,S/C Tenerife,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Julià Julià María Sandra,7079,387,37,420,Parliament,"['3728904797']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=354&idLegislatura=12,,Comunitat Valenciana,Castellón/Castelló,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Amor Ignacio José Sánchez,"13226, 7080","389, 192","30, 39","422, 207",Parliament,"['322551792']","PSOE, Partido Socialista Obrero Español",https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=197&idLegislatura=12,,"Extremadura, Spain",Badajoz,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,"European Parliament, Spain","21, 27","10, 43",33320 +Alba Goveli Miriam Nayua,7081,390,38,421,Parliament,"['2563141286']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=187&idLegislatura=12,,País Vasco,Gipuzkoa,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33020 +Galeano Gracia Óscar,7082,389,39,422,Parliament,"['4912974298']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=61&idLegislatura=12,,Aragón,Zaragoza,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Clavell López Óscar,"16128, 7083",392,40,425,Parliament,"['540111388']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=160&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=108&idLegislatura=14",,Comunitat Valenciana,Castellón/Castelló,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Gamazo Micó Óscar,"7084, 16172",392,40,425,Parliament,"['170340172']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=212&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=289&idLegislatura=12",,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Iglesias Pablo Turrión,"15101, 16218, 7085","584, 390",38,421,Parliament,"['158342368']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=161&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=319&idLegislatura=14, https://podemos.info",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33020 +Blanco Casado Pablo,"16120, 7086, 15188","392, 387",40,425,Parliament,"['523386042']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=309&idLegislatura=12, https://www.pp.es/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=307&idLegislatura=14",,Castilla y León,Ávila,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Martínez Rodríguez Ángela,7087,391,38,421,Parliament,"['303142449']",EM-P-A-EU,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=345&idLegislatura=12,,Galicia,Pontevedra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Pascual Peña Sergio,7088,390,38,421,Parliament,"['159119360']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=173&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Patricia Reyes Rivera,"7089, 15159",387,37,420,Parliament,"['3231722962']",Cs,"https://www.ciudadanos-cs.org, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=34&idLegislatura=12",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Amador Bustinduy Pablo,7090,390,38,421,Parliament,"['597499972']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=310&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Acedo Pedro Penco,7091,392,40,425,Parliament,"['281190155']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=131&idLegislatura=12,,Extremadura,Badajoz,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33610 +Iturbe Pedro Quevedo,"7092, 16314","604, 406",41,428,Parliament,"['250740163']","NC-CCa-PNC, NCa","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=351&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=350&idLegislatura=12",,Canarias,Palmas (Las),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56", +García Pedro Saura,7093,389,39,422,Parliament,"['538336743']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=138&idLegislatura=12,,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Joan Pere Pons Sampietro,"16308, 7094, 15118",389,39,422,Parliament,"['22079985']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=223&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=304&idLegislatura=12, none",,Illes Balears,Balears (Illes),"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Cancela Pilar Rodríguez,"15086, 16112, 7095","394, 589, 389",39,422,Parliament,"['1042939466']","PSdG-PSOE, PSOE, PsdeG-PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=292&idLegislatura=14, none, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=271&idLegislatura=12",,Galicia,Coruña (A),"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Antonio Pradas Torres,7096,389,39,422,Parliament,"['523226200']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=148&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Antonio Fraile Hernando Rafael,7097,392,40,425,Parliament,"['380456440']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=85&idLegislatura=12,,Andalucía,Almería,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Catalá Polo Rafael,7098,392,40,425,Parliament,"['4230619467']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=167&idLegislatura=12,,Castilla - La Mancha,Cuenca,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +López Merino Rafael,7099,392,40,425,Parliament,"['353863842']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=293&idLegislatura=12,,Andalucía,Córdoba,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Artemi Lombarte Rallo,7100,389,39,422,Parliament,"['4025964687']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=283&idLegislatura=12,,Comunitat Valenciana,Castellón/Castelló,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Alonso Hernández Raquel,7101,392,40,425,Parliament,"['231865990']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=361&idLegislatura=12,,Castilla y León,Valladolid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=12,,Spain,21,10,33610 +Cortés Lastra Ricardo,7102,389,39,422,Parliament,"['249572808']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=353&idLegislatura=12,,Cantabria,Cantabria,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Blanco Ricardo Tarno,7103,392,40,425,Parliament,"['3017650371']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=213&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +García Gómez Rodrigo,"7104, 15129",387,37,420,Parliament,"['2433967856']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=143&idLegislatura=12, https://aragon.ciudadanos-cs.org",,Aragón,Zaragoza,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 53",33420 +Noguera Pilar Rojo,7105,392,40,425,Parliament,"['966514903']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=129&idLegislatura=12,,Galicia,Pontevedra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Del Mar María Rominguera Salazar,7106,389,39,422,Parliament,"['289877902']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=183&idLegislatura=12,,Castilla y León,Zamora,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33320 +Martínez María Rodríguez Rosa,7107,390,38,421,Parliament,"['2221994242']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=186&idLegislatura=12,,País Vasco,Bizkaia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +María Romero Rosa Sánchez,"7108, 16337",392,40,425,Parliament,"['253968932']",PP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=36&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=56&idLegislatura=12",,Castilla - La Mancha,Ciudad Real,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33610 +Iglesias Ricardo Sixto,7109,390,38,421,Parliament,"['358225467']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=206&idLegislatura=12,,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +García Javier Ruano,7110,392,40,425,Parliament,"['293997277']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=363&idLegislatura=12,,Murcia (Región de),Murcia,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Areste Isabel María Salud,7111,390,38,421,Parliament,"['470648176']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=243&idLegislatura=12,,País Vasco,Gipuzkoa,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +Freire Ramírez Saúl,7112,387,37,420,Parliament,"['3383434870']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=145&idLegislatura=12,,Canarias,Palmas (Las),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Campo Del Estaún Sergio,"7113, 15171",387,37,420,Parliament,"['3709301116']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=291&idLegislatura=12, https://www.instagram.com/sergiodlcampo/",,Cataluña,Tarragona,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=3&idLegislatura=12&tipoBusqueda=completo",,Spain,21,"10, 53",33420 +García González Segundo,7114,390,38,421,Parliament,"['1478198448']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=327&idLegislatura=12,,Principado de Asturias,Asturias,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33020 +I Miquel Sergi Valentí,"7115, 16270","400, 590",41,428,Parliament,"['176191893']","JxCat-JUNTS, CDC","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=23&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=5&idLegislatura=12",,Cataluña,Girona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33911 +Heredia Martín Silvia,7116,392,40,425,Parliament,"['396905084']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=136&idLegislatura=12,,Andalucía,Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Castañón Fernández Sofía,"7117, 16161",390,38,421,Parliament,"['3495603017']",UP,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=272&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=274&idLegislatura=12",,Principado de Asturias,Asturias,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33020 +Farré Fidalgo Sònia,7118,388,38,421,Parliament,"['246882981']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=249&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Ferrer Sonia Tesoro,"7119, 16166",389,39,422,Parliament,"['264761667']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=114&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=199&idLegislatura=12",,Andalucía,Almería,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Antón De María Santamaría Soraya Sáenz,7120,392,40,425,Parliament,"['76914701']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=285&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +María Ramos Rodríguez Soraya,"7121, 13156","260, 389",39,422,Parliament,"['380200858']","Ciudadanos – Partido de la Ciudadanía, PSOE",https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=153&idLegislatura=12,,"Castilla y León, Spain",Valladolid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,"European Parliament, Spain","21, 27","10, 43","33320, 33420" +Jordán Sumelzo Susana,"7122, 16379, 15187",389,39,422,Parliament,"['520609496']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=126&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=313&idLegislatura=12, none",,Aragón,Zaragoza,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Ares López Susana,7123,392,40,425,Parliament,"['576313586']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=234&idLegislatura=12,,Principado de Asturias,Asturias,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=7&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Ochaíta Silvia Valmaña,7124,392,40,425,Parliament,"['109304374']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=26&idLegislatura=12,,Castilla - La Mancha,Guadalajara,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +María Raya Rodríguez Tamara,"16321, 7125",389,39,422,Parliament,"['3082102098']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=322&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=112&idLegislatura=14",,Canarias,S/C Tenerife,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Martínez Saiz Teófila,7126,392,40,425,Parliament,"['3130765065']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=164&idLegislatura=12,,Andalucía,Cádiz,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=8&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +I Jordà Roura Teresa,7127,402,43,435,Parliament,"['395485571']",ERC-CATSÍ,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=333&idLegislatura=12,,Cataluña,Girona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33905 +Palmer Teresa Tous,7128,392,40,425,Parliament,"['386082224']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=228&idLegislatura=12,,Illes Balears,Balears (Illes),https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=9&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Díaz Fole Javier Tomás,7129,392,40,425,Parliament,"['800727537127079936']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=357&idLegislatura=12,,Galicia,Pontevedra,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Antonio Cantó Del García Moral,7130,387,37,420,Parliament,"['249122306']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=290&idLegislatura=12,,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Antonio Monés Roldán,7131,387,37,420,Parliament,"['224371808']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=97&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=11&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +García Guijarro Txema,"15198, 16206, 7132","584, 390, 404",38,421,Parliament,"['752439542859304960']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN, C-P-EUPV","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=315&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=344&idLegislatura=14, https://instagram.com/txemaguijarro?igshid=1fxowrlc9kdjc",,Comunitat Valenciana,Alicante/Alacant,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=6&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33020, 33098" +Gardeñes Josep Vendrell,7133,388,38,421,Parliament,"['472986537']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=250&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Noelia Ruíz-Herrera Vera,"7134, 16396, 15125","584, 390",38,421,Parliament,"['225138968']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=345&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=54&idLegislatura=12, none",,Andalucía,Cádiz,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33020 +Oliver Ten Vicente,7135,387,37,420,Parliament,"['2972873087']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=203&idLegislatura=12,,Comunitat Valenciana,Valencia/València,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33420 +Domènech Francesc Sampere Xavier,7136,388,38,421,Parliament,"['191102437']",ECP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=268&idLegislatura=12,,Cataluña,Barcelona,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10, +Ciuró Eritja Francesc Xavier,"7137, 16150, 15130","593, 402, 583",43,435,Parliament,"['243593550']","ERC-S, Republicano, ERC-CATSÍ","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=331&idLegislatura=12, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=186&idLegislatura=14, none",,Cataluña,LLeida,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33905 +Díaz Pérez Yolanda,"7138, 16143, 15199","584, 595, 391",38,421,Parliament,"['761862806']","CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN, EM-P-A-EU, EC-UP","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=248&idLegislatura=12, https://esquerdaunida.org, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=171&idLegislatura=14",,Galicia,Coruña (A),"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=4&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53", +Cantera Castro De Zaida,"7139, 16114",389,39,422,Parliament,"['2610041328']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=38&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=80&idLegislatura=12",,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=2&idLegislatura=12&tipoBusqueda=completo,,Spain,21,"10, 56",33320 +Ignacio Juan Zoido Álvarez,"13061, 7140","392, 201","40, 29","425, 217",Parliament,"['169843986']","PP, Partido Popular",https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=215&idLegislatura=12,,"Andalucía, Spain",Sevilla,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=13&idLegislatura=12&tipoBusqueda=completo,,"European Parliament, Spain","21, 27","10, 43",33610 +Brey Mariano Rajoy,7141,392,40,425,Parliament,"['343447873']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=105&idLegislatura=12,,Madrid,Madrid,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=10&idLegislatura=12&tipoBusqueda=completo,,Spain,21,10,33610 +Egea García Teodoro,"7142, 15121, 16177","392, 387",40,425,Parliament,"['224074203']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=310&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=66&idLegislatura=12, https://www.teodorogarciaegea.com",,Murcia (Región de),Murcia,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=5&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53","33420, 33610" +Rafael Simancas Simancas,"7143, 15178, 16373",389,39,422,Parliament,"['402219133']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=287&idLegislatura=14, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=88&idLegislatura=12, https://rafaelsimancas.wordpress.com",,Madrid,Madrid,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_2874067_73_1333049_1333049.next_page=/wc/busquedaAlfabeticaDiputados&paginaActual=12&idLegislatura=12&tipoBusqueda=completo, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13",,Spain,21,"10, 56, 53",33320 +Lars Løkke Rasmussen,"12521, 7144",407,,442,Parliament,"['26201346']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Pind Søren,7145,407,,442,Parliament,"['9679302']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13420 +Morten Østergaard,"7146, 12554",408,,442,Parliament,"['19233129']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13410 +Auken Ida,"7147, 12481",408,,442,Parliament,"['23976247']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13410 +Pernille Skipper,"12565, 7148",409,,442,Parliament,"['611076925']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13229 +Jensen Kristian,"7149, 12515",407,,442,Parliament,"['15243853']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Anders Samuelsen,7150,410,,442,Parliament,"['26735736']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13001 +Dyhr Olsen Pia,"7151, 12572",411,,442,Parliament,"['65025162']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13230 +Heunicke Magnus,"12531, 7152",412,,442,Parliament,"['22695562']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Lykketoft Mogens,7153,412,,442,Parliament,"['98354773']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13320 +Dan Jørgensen,"7154, 12459",412,,442,Parliament,"['507425094']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Ammitzbøll-Bille Emil Simon,"12586, 7155",410,,442,Parliament,"['26210681']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13001 +Pape Poulsen Søren,"12593, 7156",413,,442,Parliament,"['2712091824']",The Conservative People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13620 +Ellen Nørby Trane,"7157, 12463",407,,442,Parliament,"['34569194']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Lidegaard Martin,"12541, 7158",408,,442,Parliament,"['1070745218']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13410 +Pernille Rosenkrantz-Theil,"12564, 7159",412,,442,Parliament,"['563220669']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Stampe Zenia,"12611, 7160",408,,442,Parliament,"['360234529']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13410 +Mattias Tesfaye,"12542, 7161",412,,442,Parliament,"['546254893']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Løhde Sophie,"7162, 12590",407,,442,Parliament,"['44611200']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Brix Stine,7163,409,,442,Parliament,"['34026528']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13229 +Benny Engelbrecht,"12442, 7164",412,,442,Parliament,"['520266902']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Astrid Krag,"12441, 7165",412,,442,Parliament,"['61264905']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Karsten Lauritzen,"12505, 7166",407,,442,Parliament,"['26263965']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Antorini Christine,7167,412,,442,Parliament,"['1650524881']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Lotte Rod,"12528, 7168",408,,442,Parliament,"['441744182']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13410 +Jensen Mogens,"12549, 7169",412,,442,Parliament,"['1218988039']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Bødskov Morten,"7170, 12551",412,,442,Parliament,"['2229232175']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Gjerskov Mette,"7173, 12545",412,,442,Parliament,"['525315094']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Jesper Petersen,"12496, 7174",412,,442,Parliament,"['1495154216']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Brian Mikkelsen,7175,413,,442,Parliament,"['773271914']",The Conservative People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13620 +B. Joachim Olsen,7176,410,,442,Parliament,"['2202900275']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13001 +Engel-Schmidt Jakob,7177,407,,442,Parliament,"['337779051']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13420 +Bramsen Trine,"12603, 7178",412,,442,Parliament,"['130160241']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Dragsted Pelle,7179,409,,442,Parliament,"['119879630']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13229 +Mai Mercado,"7180, 12532",413,,442,Parliament,"['1079806855']",The Conservative People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13620 +Nikolaj Villumsen,"7181, 13245","561, 409",28,442,Parliament,"['35877137']","The Red-Green Alliance, Enhedslisten",,"['Member of Parliament']",Denmark,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,"European Parliament, Denmark","27, 5","43, 33",13229 +Espersen Søren,"12592, 7182",414,,442,Parliament,"['2444718215']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Birk Ole Olesen,"7183, 12559",410,,442,Parliament,"['2222188479']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13001 +Prehn Rasmus,"12578, 7184",412,,442,Parliament,"['23776194']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Merete Riisager,7185,410,,442,Parliament,"['1338661411']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13001 +Bech Lisbeth Poulsen,"12525, 7186",411,,442,Parliament,"['1535102756']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13230 +Jarlov Rasmus,"7187, 12576",413,,442,Parliament,"['1225930531']",The Conservative People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13620 +E. Jan Jørgensen,"7188, 12488",407,,442,Parliament,"['279986859']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Horn Langhoff Rasmus,"12575, 7189",412,,442,Parliament,"['38429769']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Maja Panduro,7190,412,,442,Parliament,"['1680161270']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13320 +Jens Joel,"12492, 7191",412,,442,Parliament,"['266667139']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Jelved Marianne,"7192, 12536",408,,442,Parliament,"['2391109702']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13410 +Khader Naser,"7193, 12555",413,,442,Parliament,"['857999360']",The Conservative People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13620 +Peter Skaarup,"12570, 7194",414,,442,Parliament,"['3144074691']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13720 +Bertel Haarder,7195,407,,442,Parliament,"['2324070741']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13420 +Akdogan Yildiz,7196,412,,442,Parliament,"['34717297']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Blixt Liselott,"7197, 12527",414,,442,Parliament,"['58550919']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Nordqvist Rasmus,"7198, 12577",415,,442,Parliament,"['1127968447']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33", +Abildgaard Mette,"7199, 12543",413,,442,Parliament,"['37877392']",The Conservative People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13620 +Andreas Steenberg,"7200, 12432",408,,442,Parliament,"['67289447']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13410 +Mette Reissmann,7201,412,,442,Parliament,"['67062563']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13320 +Hønge Karsten,"12504, 7202",411,,442,Parliament,"['2304249887']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13230 +Fock Josephine,7203,415,,442,Parliament,"['84389583']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33, +Gade René,7204,415,,442,Parliament,"['1031093456666591232']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33, +Jacob Jensen,"12484, 7205",407,,442,Parliament,"['179488326']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Finn Sørensen,7206,409,,442,Parliament,"['1467981116']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13229 +Christian Lars Lilleholt,"7207, 12520",407,,442,Parliament,"['2368516215']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Christian Poll,7208,415,,442,Parliament,"['55667577']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33, +Lund Poulsen Troels,"12605, 7209",407,,442,Parliament,"['2965907578']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Jensen Thomas,"7210, 12599",412,,442,Parliament,"['542404193']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Gjerding Maria Reumert,7211,409,,442,Parliament,"['2761891817']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13229 +Holger K. Nielsen,7212,411,,442,Parliament,"['3096483250']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13230 +Andersen Hans,"7213, 12471",407,,442,Parliament,"['988390315']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Carl Holst,7214,407,,442,Parliament,"['64384867']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13420 +Ellemann Karen,"7215, 12501",407,,442,Parliament,"['3123406113']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Jacob Mark,"12485, 7216",411,,442,Parliament,"['2373406198']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13230 +Kollerup Simon,"12587, 7217",412,,442,Parliament,"['58884557']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Eva Hansen Kjer,7218,407,,442,Parliament,"['2412289363']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13420 +Laura Lindahl,7219,410,,442,Parliament,"['149979904']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13001 +Nicolai Wammen,"7220, 12557",412,,442,Parliament,"['2803948786']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Bock Mette,7221,410,,442,Parliament,"['282002390']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13001 +Carolina Magdalene Maier,7222,415,,442,Parliament,"['33848504']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33, +Heitmann Jane,"7223, 12490",407,,442,Parliament,"['28096144']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Dahl Henrik,"7224, 12476",410,,442,Parliament,"['2734140920']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13001 +Kofod Peter Poulsen,"13277, 7225","181, 414",62,442,Parliament,"['1613378210']","The Danish People's Party, Dansk Folkeparti",,"['Member of Parliament']",Denmark,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,"European Parliament, Denmark","27, 5","43, 33",13720 +Dennis Flydtkjær,"7226, 12461",414,,442,Parliament,"['531595033']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Danielsen Thomas,"7227, 12598",407,,442,Parliament,"['378468270']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Kristian Lorentzen Pihl,"7228, 12516",407,,442,Parliament,"['233261424']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Christian Juhl,"12455, 7229",409,,442,Parliament,"['2266696967']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13229 +Gejl Torsten,"12601, 7230",415,,442,Parliament,"['2806864609']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33", +Jensen Lahn Leif,"7231, 12523",412,,442,Parliament,"['2234506529']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Christina Egelund,7232,410,,442,Parliament,"['2302252871']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13001 +Marinus Morten,7233,414,,442,Parliament,"['817152956']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13720 +Krarup Marie,"12538, 7234",414,,442,Parliament,"['3002813973']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13720 +Anni Matthiesen,"7235, 12439",407,,442,Parliament,"['2469669116']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Lea Wermelin,"7236, 12522",412,,442,Parliament,"['606561223']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Berth Kenneth Kristensen,7237,414,,442,Parliament,"['2806166418']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Torp Trine,"12604, 7238",411,,442,Parliament,"['1667677735']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13230 +Eva Flyvholm,"12465, 7239",409,,442,Parliament,"['3211612979']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13229 +Hans Kristian Skibby,"7240, 12473",414,,442,Parliament,"['1131430489']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13720 +Julie Skovsby,"12499, 7241",412,,442,Parliament,"['2873047508']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Dybvad Kaare,"7242, 12500",412,,442,Parliament,"['71238590']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Adsbøl Karina,"12502, 7243",414,,442,Parliament,"['827279426']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Jakob Sølvhøj,"12487, 7244",409,,442,Parliament,"['2797971941']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13229 +Harpsøe Marlene,7245,414,,442,Parliament,"['2295632469']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Gaardsted Karin,7246,412,,442,Parliament,"['500041790']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Christian Madsen Rabjerg,"7247, 12456",412,,442,Parliament,"['2173972657']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Adelsteen Pia,7249,414,,442,Parliament,"['821103998']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Christensen Villum,7250,410,,442,Parliament,"['70912615']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13001 +Matthisen Roger,7251,415,,442,Parliament,"['51700244']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33, +Juel-Jensen Peter,"7252, 12568",407,,442,Parliament,"['1667366742']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Lund Rune,"12582, 7253",409,,442,Parliament,"['4360080437']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13229 +Bager Britt,"7254, 12450",407,,442,Parliament,"['2605052558']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Annette Lind,"12438, 7255",412,,442,Parliament,"['2893104329']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Kattrup May-Britt,7256,410,,442,Parliament,"['1713337812']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13001 +Bech Lise,"12526, 7257",414,,442,Parliament,"['564932837']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Bendixen Pernille,7258,414,,442,Parliament,"['602162155']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Ravn Troels,"12606, 7259",412,,442,Parliament,"['2784153787']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Hav Orla,"7260, 12560",412,,442,Parliament,"['2927175207']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Claus Hansen Kvist,7261,414,,442,Parliament,"['3025626230']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Bonnesen Erling,"7262, 12464",407,,442,Parliament,"['3017243674']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Dencker Hjermind Mette,"7264, 12546",414,,442,Parliament,"['2711744016']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Dahl Henrik Jens Thulesen,"12491, 7265",414,,442,Parliament,"['1877755088']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Aaja Chemnitz Larsen,"12427, 7266",416,,442,Parliament,"['483812025']",Inuit Ataqatigiit,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33", +Eilersen Susanne,7267,414,,442,Parliament,"['3300600657']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Jakobsen Jeppe,7268,414,,442,Parliament,"['3600094816']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Bork Tilde,7269,414,,442,Parliament,"['2453303762']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Brigitte Jerkel Klintskov,"7270, 12449",413,,442,Parliament,"['2600310521']",The Conservative People's Party,,"['Substitute Member of the Danish Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13620 +Christensen Erik,7271,412,,442,Parliament,"['2580385852']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Aleqa Hammond,7272,417,,442,Parliament,"['3222259668']",Outside the parliamentary groups,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33, +Pernille Schnoor,7273,415,,442,Parliament,"['34248269']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33, +Leif Mikkelsen,7274,410,,442,Parliament,"['2777061257']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13001 +Daniel Jakobsen Toft,"12460, 7275",412,,442,Parliament,"['2886095615']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Egge Rasmussen Søren,"12591, 7276",409,,442,Parliament,"['4629954015']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13229 +Christiansen Kim,7277,414,,442,Parliament,"['2235993418']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Anders Johansson,7278,413,,442,Parliament,"['2412517861']",The Conservative People's Party,,"['Substitute Member of the Danish Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13620 +J. Karen Klint,7279,412,,442,Parliament,"['1944851540']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13320 +Jan Johansen,7280,412,,442,Parliament,"['1862888882']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Dencker Mikkel,7281,414,,442,Parliament,"['1204304318']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Dea Larsen Merete,7282,414,,442,Parliament,"['2966558757']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13720 +Due Karina,7283,414,,442,Parliament,"['3051806933']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13720 +Aslan Lars Rasmussen,"12518, 7284",412,,442,Parliament,"['4867147983']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Dorthe Ullemose,7285,414,,442,Parliament,"['4193620336']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33,13720 +Sjúrður Skaale,"12588, 7286",412,,442,Parliament,"['284499703', '2855166586']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"33, 45",13320 +Arge Magni,7287,419,,442,Parliament,"['504247657']",Tjóðveldi,,"['Substitute Member of the Danish Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33, +Bjarne Laustsen,"12447, 7288",412,,442,Parliament,"['4849840935']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Andersen Kirsten Normann,"7290, 12512",411,,442,Parliament,"['235646319']",The Socialist People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13230 +Bach Carsten,7291,410,,442,Parliament,"['743354099958067200']",Liberal Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13001 +Brosbøl Kirsten,7293,412,,442,Parliament,"['26110155']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Dahl Kristian Thulesen,"7296, 12517",414,,442,Parliament,"['854722518426451968']",The Danish People's Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13720 +Elbæk Uffe,"12607, 7298",415,,442,Parliament,"['79255216']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33", +Elholm Louise Schack,"7299, 12529",407,,442,Parliament,"['233962696']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Ellemann-Jensen Jakob,"7300, 12486",407,,442,Parliament,"['155584627']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Frederiksen Mette,7302,412,,442,Parliament,"['4777040128']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,33,13320 +Gade Søren,"7303, 13364","295, 407",63,442,Parliament,"['975064362359623680']","The Liberal Party, Venstre, Danmarks Liberale Parti",,"['Member of Parliament']",Denmark,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,"European Parliament, Denmark","27, 5","43, 33",13420 +Ane Halsboe-Jørgensen,"7304, 12433",412,,442,Parliament,"['595006074']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13320 +Aastrup Jensen Michael,"7309, 12548",407,,442,Parliament,"['16270209']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=1#search,,Denmark,5,"45, 33",13420 +Henrik Larsen Sass,"12479, 7316",412,,442,Parliament,"['1377530305']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Larsen Malte,"12534, 7317",412,,442,Parliament,"['80865374']",The Social Democratic Party,,"['Substitute Member of the Danish Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Flemming Mortensen Møller,"12468, 7319",412,,442,Parliament,"['2818658541']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Carsten Nielsen Sofie,"12589, 7320",408,,442,Parliament,"['16955917']",The Social Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13410 +Pedersen Schack Torsten,"7322, 12602",407,,442,Parliament,"['168644257']",The Liberal Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13420 +Sandbæk Ulla,7324,415,,442,Parliament,"['542624551']",The Alternative,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,33, +Søndergaard Søren,"12594, 7328",409,,442,Parliament,"['1050737835983163392']",The Red-Green Alliance,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13229 +Hummelgaard Peter Thomsen,"12567, 7329",412,,442,Parliament,"['600462984']",The Social Democratic Party,,"['Member of Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13320 +Orla Østerby,"12561, 7331",413,,442,Parliament,"['846693966884065280']",The Conservative People's Party,,"['Substitute Member of the Danish Parliament']",,,https://www.thedanishparliament.dk/searchResults.aspx?pageSize=100&pageNr=2#search,,Denmark,5,"45, 33",13620 +Johannes Kahrs,"7363, 8085",421,"45, 50",456,Parliament,"['35687457']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dieter Janecek,"8369, 7364",423,"47, 54",458,Parliament,"['52024480']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Bär Dorothee,"8345, 7365","420, 426","49, 44",455,Parliament,"['140821364']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Kelber Ulrich,"7366, 8099",421,"45, 50",456,Parliament,"['20877217']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Schummer Uwe,"8377, 7367","420, 425","49, 44",455,Parliament,"['409203792']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Konstantin Notz Von,"8239, 7369",423,"47, 54",458,Parliament,"['17752770']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Sebastian Steineke,"8290, 7370","420, 425","49, 44",455,Parliament,"['277006619']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Klingbeil Lars,"8109, 7371",421,"45, 50",456,Parliament,"['16255941']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Schipanski Tankred,"8156, 7372","420, 425","49, 44",455,Parliament,"['39938182']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Lazar Monika,"7373, 8272",423,"47, 54",458,Parliament,"['60630139']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Gabriele Hiller-Ohm,"7374, 8208",421,"45, 50",456,Parliament,"['25816024']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Esken Saskia,"8285, 7375",421,"45, 50",456,Parliament,"['1423622834']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Künast Renate,"7376, 8214",423,"47, 54",458,Parliament,"['1425265488']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Nouripour Omid,"7377, 8083",423,"47, 54",458,Parliament,"['16674128']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Movassat Niema,"8373, 7378",422,"46, 53",457,Parliament,"['111054843']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Pau Petra,"8410, 7379",422,"46, 53",457,Parliament,"['560467206']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Andreas Nick,"7380, 8197","420, 425","49, 44",455,Parliament,"['49450039']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Grosse-Brömer Michael,"8056, 7381","420, 425","49, 44",455,Parliament,"['574424501']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Eva Högl,"7382, 8419",421,"45, 50",456,Parliament,"['35846585']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Kaufmann Stefan,"7383, 8287","420, 425","49, 44",455,Parliament,"['51752254']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Kiesewetter Roderich,"7384, 8327","420, 425","49, 44",455,Parliament,"['42698498']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Göring-Eckardt Katrin,"8406, 7385",423,"47, 54",458,Parliament,"['626287930']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Altmaier Peter,"7386, 8122","420, 425","49, 44",455,Parliament,"['378693834']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Erwin Rüddel,"8198, 7387","420, 425","49, 44",455,Parliament,"['33071479']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Rößner Tabea,"8357, 7388",423,"47, 54",458,Parliament,"['53351462']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Lemke Steffi,"8077, 7389",423,"47, 54",458,Parliament,"['17229513']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Andrej Hunko,"8311, 7390",422,"46, 53",457,Parliament,"['87281380']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Bülow Marco,"8350, 7391",421,"45, 50",456,Parliament,"['52119203']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dörner Katja,"8361, 7392",423,"47, 54",458,Parliament,"['19738866']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Rix Sönke,"7393, 8293",421,"45, 50",456,Parliament,"['36327895']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Petra Sitte,"8237, 7394",422,"46, 53",457,Parliament,"['293522998']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Patrick Schnieder,"8222, 7395","420, 425","49, 44",455,Parliament,"['368334555']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Deligöz Ekin,"8336, 7396",423,"47, 54",458,Parliament,"['22125770']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Beate Walter-Rosenheimer,"8153, 7397",423,"47, 54",458,Parliament,"['47049428']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Marco Wanderwitz,"7398, 8121","420, 425","49, 44",455,Parliament,"['16361044']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Griese Kerstin,"8271, 7399",421,"45, 50",456,Parliament,"['39709752']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Michael Roth,"7400, 8087",421,"45, 50",456,Parliament,"['1114675538']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Hitschler Thomas,"7401, 8171",421,"45, 50",456,Parliament,"['292151515']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Britta Haßelmann,"7402, 8328",423,"47, 54",458,Parliament,"['1131092102']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Frank Schwabe,"8226, 7403",421,"45, 50",456,Parliament,"['30050484']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Liebich Stefan,"8421, 7404",422,"46, 53",457,Parliament,"['1065899292']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Klein-Schmeink Maria,"8163, 7405",423,"47, 54",458,Parliament,"['18103366']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Christian Hirte,"8185, 7406","420, 425","49, 44",455,Parliament,"['37642893']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Jarzombek Thomas,"7407, 8039","420, 425","49, 44",455,Parliament,"['37105136']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Gutting Olav,"8143, 7408","420, 425","49, 44",455,Parliament,"['58429842']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Beate Müller-Gemmeke,"8249, 7409",423,"47, 54",458,Parliament,"['53426644']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Johannes Steiniger,"7410, 8148","420, 425","49, 44",455,Parliament,"['83474160']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Heike Hänsel,"7411, 8289",422,"46, 53",457,Parliament,"['332264734']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Leidig Sabine,"7412, 8283",422,"46, 53",457,Parliament,"['257461232']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Ebner Harald,"7413, 8211",423,"47, 54",458,Parliament,"['52431948']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Annen Niels,"7414, 8313",421,"45, 50",456,Parliament,"['42401449']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Kotting-Uhl Sylvia,"8238, 7415",423,"47, 54",458,Parliament,"['474013625']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Kathrin Vogler,"7416, 8154",422,"46, 53",457,Parliament,"['21287514']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Jens Spahn,"8318, 7417","420, 425","49, 44",455,Parliament,"['299650387']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Martina Renner,"7418, 8288",422,"46, 53",457,Parliament,"['68920005']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Irene Mihalic,"8223, 7419",423,"47, 54",458,Parliament,"['143000381']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Achim Post,"8191, 7420",421,"45, 50",456,Parliament,"['1117749912']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Jens Koeppen,"7421, 8209","420, 425","49, 44",455,Parliament,"['146376562']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Jürgen Trittin,"7422, 8371",423,"47, 54",458,Parliament,"['485751594']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Katja Kipping,"7423, 8360",422,"46, 53",457,Parliament,"['28066013']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Nissen Ulli,"8204, 7424",421,"45, 50",456,Parliament,"['382044198']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Lindner Tobias,"8234, 7425",423,"47, 54",458,Parliament,"['21197524']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Bas Bärbel,"7426, 8193",421,"45, 50",456,Parliament,"['19438957']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Florian Pronold,"7427, 8084",421,"45, 50",456,Parliament,"['19257571']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Christian Lange,"7428, 8235",421,"45, 50",456,Parliament,"['328939758']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Marlene Mortler,"8212, 7429","420, 426","49, 44",455,Parliament,"['21579707']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Heil Hubertus,"7430, 8310",421,"45, 50",456,Parliament,"['15943222']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Brantner Franziska,"7431, 8301",423,"47, 54",458,Parliament,"['32323724']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Hardt Jürgen,"7432, 8186","420, 425","49, 44",455,Parliament,"['38467606']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Birkwald Matthias W.,"7433, 8243",422,"46, 53",457,Parliament,"['748851762']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Nadine Schön,"7434, 8366","420, 425","49, 44",455,Parliament,"['41840905']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Dehm Diether,"8278, 7435",422,"46, 53",457,Parliament,"['20986770']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Buchholz Christine,"8294, 7436",422,"46, 53",457,Parliament,"['426403057']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Kai Wegner,"7437, 8210","420, 425","49, 44",455,Parliament,"['39999872']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Oppermann Thomas,"7438, 8381",421,"45, 50",456,Parliament,"['293066780']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Kühn Stephan,"7439, 8183",423,"47, 54",458,Parliament,"['104100946']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Gabi Weber,"7440, 8112",421,"45, 50",456,Parliament,"['992808439']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Bilger Steffen,"8219, 7441","420, 425","49, 44",455,Parliament,"['23925041']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Michael Thews,"7442, 8079",421,"45, 50",456,Parliament,"['409258073']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Hauer Matthias,"8092, 7443","420, 425","49, 44",455,Parliament,"['1158585210']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Gröhe Hermann,"7444, 8303","420, 425","49, 44",455,Parliament,"['94363834']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Jutta Krellmann,"7445, 8131",422,"46, 53",457,Parliament,"['600984834']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Hartmann Sebastian,"8247, 7446",421,"45, 50",456,Parliament,"['1076269195']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Sorge Tino,"8065, 7447","420, 425","49, 44",455,Parliament,"['110385973']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Carsten Schneider,"8358, 7448",421,"45, 50",456,Parliament,"['96783215']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Andreas Rimkus,"8046, 7449",421,"45, 50",456,Parliament,"['30838821']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Bartol Sören,"8196, 7450",421,"45, 50",456,Parliament,"['57293969']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Ute Vogt,"7451, 8246",421,"45, 50",456,Parliament,"['106684561']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dennis Rohde,"7452, 8037",421,"45, 50",456,Parliament,"['18160122']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Anja Weisgerber,"8416, 7453","420, 426","49, 44",455,Parliament,"['133770069']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Cansel Kiziltepe,"7454, 8169",421,"45, 50",456,Parliament,"['23248102']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Kirsten Tackmann,"8170, 7455",422,"46, 53",457,Parliament,"['1294725486']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Beermann Maik,"7456, 8069","420, 425","49, 44",455,Parliament,"['569257486']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Dröge Katharina,"7457, 8166",423,"47, 54",458,Parliament,"['15722010']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Harbarth Stephan,"7458, 8102","420, 425","49, 44",455,Parliament,"['56762889']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Andreae Kerstin,"8335, 7459",423,"47, 54",458,Parliament,"['41548943']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Kaczmarek Oliver,"7460, 8134",421,"45, 50",456,Parliament,"['231440493']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Gesine Lötzsch,"7461, 8241",422,"46, 53",457,Parliament,"['24178198']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Kruse Rüdiger,"7462, 8120","420, 425","49, 44",455,Parliament,"['20916357']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Kekeritz Uwe,"8111, 7463",423,"47, 54",458,Parliament,"['46480553']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Daniela Kolbe,"8236, 7464",421,"45, 50",456,Parliament,"['516783036']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Armin Schuster,"8048, 7465","420, 425","49, 44",455,Parliament,"['395912134']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Schwartze Stefan,"8157, 7466",421,"45, 50",456,Parliament,"['1117526742']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Katrin Werner,"8071, 7467",422,"46, 53",457,Parliament,"['224630872']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Heil Mechthild,"8118, 7468","420, 425","49, 44",455,Parliament,"['974367631']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Frank Steffel,"7469, 8164","420, 425","49, 44",455,Parliament,"['26869088']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Hauptmann Mark,"7470, 8078","420, 425","49, 44",455,Parliament,"['1370491088']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Hakverdi Metin,"8160, 7471",421,"45, 50",456,Parliament,"['1043288618']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Müller Stefan,"7472, 8292","420, 426","49, 44",455,Parliament,"['17960911']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Martin Rosemann,"8053, 7473",421,"45, 50",456,Parliament,"['28784085']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Christian Kühn,"8101, 7474",423,"47, 54",458,Parliament,"['1143130812']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Schulz Swen,"7475, 8217",421,"45, 50",456,Parliament,"['21791639']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Brehmer Heike,"7476, 8398","420, 425","49, 44",455,Parliament,"['150372237']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Frank Heinrich,"8076, 7477","420, 425","49, 44",455,Parliament,"['43959185']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Fuchtel Hans-Joachim,"7478, 8103","420, 425","49, 44",455,Parliament,"['66750542']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Kerstin Tack,7479,421,45,456,Parliament,"['37733252']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Brinkhaus Ralph,"8200, 7480","420, 425","49, 44",455,Parliament,"['38001527']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Gebhart Thomas,"7481, 8113","420, 425","49, 44",455,Parliament,"['51483238']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Jan-Marco Luczak,"7482, 8080","420, 425","49, 44",455,Parliament,"['22908417']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Sahra Wagenknecht,"8091, 7483",422,"46, 53",457,Parliament,"['47375691']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Jan Metzler,"8094, 7484","420, 425","49, 44",455,Parliament,"['995653004']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Hilde Mattheis,"8284, 7485",421,"45, 50",456,Parliament,"['115614153']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Friedrich Ostendorff,"7486, 8095",423,"47, 54",458,Parliament,"['862714045']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Ingo Wellenreuther,"8052, 7487","420, 425","49, 44",455,Parliament,"['54535670']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Kurth Markus,"8132, 7488",423,"47, 54",458,Parliament,"['150188536']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Gabriele Katzmarek,"8245, 7489",421,"50, 45",456,Parliament,"['3017602065', '1106401321']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"29, 28",41320 +Dieter Ernst Rossmann,"8117, 7490",421,"45, 50",456,Parliament,"['38645930']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Oellers Wilfried,"8306, 7491","420, 425","49, 44",455,Parliament,"['906847944']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Heider Matthias,"7492, 8413","420, 425","49, 44",455,Parliament,"['154064825']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Corinna Rüffer,"8072, 7493",423,"47, 54",458,Parliament,"['1524735194']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Kühne Roy,"8409, 7494","420, 425","49, 44",455,Parliament,"['1906911697']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Bärbel Kofler,"7495, 8206",421,"45, 50",456,Parliament,"['193629792']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Gastel Matthias,"7496, 8125",423,"47, 54",458,Parliament,"['727782559']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Gero Storjohann,"8282, 7497","420, 425","49, 44",455,Parliament,"['20534846']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Dagmar Schmidt,"7498, 8417",421,"45, 50",456,Parliament,"['95905207']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Andrea Lindholz,"7499, 8038","420, 426","49, 44",455,Parliament,"['1446031532']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Klein Volkmar,"8067, 7500","420, 425","49, 44",455,Parliament,"['33043294']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Burkert Martin,"8334, 7501",421,"45, 50",456,Parliament,"['36329898']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Arno Klare,"7502, 8215",421,"45, 50",456,Parliament,"['1028440310']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Behrens Manfred,"7503, 8404","420, 425","49, 44",455,Parliament,"['61577387']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Marcus Weinberg,"8063, 7504","420, 425","49, 44",455,Parliament,"['884382990']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Karsten Möring,"8378, 7505","420, 425","49, 44",455,Parliament,"['1099159964']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Katja Leikert,"7506, 8309","420, 425","49, 44",455,Parliament,"['467381196']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Jana Schimke,"7507, 8342","420, 425","49, 44",455,Parliament,"['728990858']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Florian Post,"8401, 7508",421,"45, 50",456,Parliament,"['741532130']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Mahmut Özdemir,"7509, 8393",421,"45, 50",456,Parliament,"['1399764944']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Günter Krings,"7510, 8399","420, 425","49, 44",455,Parliament,"['392312829']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Gabriela Heinrich,"8199, 7511",421,"45, 50",456,Parliament,"['296121556']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Rüthrich Susann,"7512, 8279",421,"45, 50",456,Parliament,"['1461997548']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Beyer Peter,"7513, 8250","420, 425","49, 44",455,Parliament,"['69814084']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Florian Oßner,"7514, 8248","420, 426","49, 44",455,Parliament,"['1294532364']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Pantel Sylvia,"8270, 7515","420, 425","49, 44",455,Parliament,"['1082464339']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Lange Ulrich,"7516, 8082","420, 426","49, 44",455,Parliament,"['68172699']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Anette Kramme,"8268, 7517",421,"45, 50",456,Parliament,"['1461705757']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Durz Hansjörg,"8180, 7518","420, 426","49, 44",455,Parliament,"['1662533040']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Mittag Susanne,"8040, 7519",421,"45, 50",456,Parliament,"['939034891']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Anton Hofreiter,"7520, 8340",423,"47, 54",458,Parliament,"['442678902']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Der Leyen Ursula Von,"7521, 8174","420, 425","49, 44",455,Parliament,"['45194009']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Bareiß Thomas,"7522, 8275","420, 425","49, 44",455,Parliament,"['2797812265']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Fritz Güntzler,"8362, 7523","420, 425","49, 44",455,Parliament,"['779601750789656320']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Launert Silke,"8265, 7524","420, 426","49, 44",455,Parliament,"['4926993244']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Andreas Lenz,"8349, 7525","420, 426","49, 44",455,Parliament,"['3635730797']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Magwas Yvonne,"7526, 8228","420, 425","49, 44",455,Parliament,"['3852561082']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Schäuble Wolfgang,"8232, 7527","420, 425","49, 44",455,Parliament,"['491327447']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Stefinger Wolfgang,"7528, 8273","420, 426","49, 44",455,Parliament,"['4866955749']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Marian Wendt,"7529, 8044","420, 425","49, 44",455,Parliament,"['2430137675']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Kai Whittaker,"7530, 8402","420, 425","49, 44",455,Parliament,"['2479436480']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Annette Widmann-Mauz,"7531, 8418","420, 425","49, 44",455,Parliament,"['3351905747']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Jens Zimmermann,"7532, 8139",421,"45, 50",456,Parliament,"['449619355']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Stefan Zierke,"8317, 7533",421,"45, 50",456,Parliament,"['64220313']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dagmar Ziegler,"8089, 7534",421,"45, 50",456,Parliament,"['2290961736']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dirk Wiese,"7535, 8344",421,"45, 50",456,Parliament,"['815469233090023424']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Martina Stamm-Fibich,"7536, 8144",421,"45, 50",456,Parliament,"['4017796049']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Rita Schwarzelühr-Sutter,"8152, 7537",421,"45, 50",456,Parliament,"['50932086']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Nina Scheer,"8400, 7538",421,"45, 50",456,Parliament,"['845213960060243968']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Johann Saathoff,"7539, 8354",421,"45, 50",456,Parliament,"['159217491']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Christian Petry,"8390, 7540",421,"45, 50",456,Parliament,"['64159881']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Bettina Müller,"8146, 7541",421,"45, 50",456,Parliament,"['2443895924']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Detlef Müller,"8150, 7542",421,"45, 50",456,Parliament,"['784760007275515904']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Klaus Mindrup,"8051, 7543",421,"45, 50",456,Parliament,"['845282647261761536']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Josip Juratovic,"8253, 7544",421,"45, 50",456,Parliament,"['738731811380076544']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Gustav Herzog,"7545, 8045",421,"45, 50",456,Parliament,"['857001941305634816']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Barbara Hendricks,"7546, 8230",421,"45, 50",456,Parliament,"['3890221275']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Held Marcus,"7547, 8348",421,"45, 50",456,Parliament,"['2860802891']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dirk Heidenblut,7548,421,45,456,Parliament,"['798315497498537984']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Hagl-Kehl Rita,"8130, 7549",421,"45, 50",456,Parliament,"['836553428042141696']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Gerdes Michael,"8189, 7550",421,"45, 50",456,Parliament,"['2468956470']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Felgentreu Fritz,"8147, 7551",421,"45, 50",456,Parliament,"['2805274855']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Dittmar Sabine,"8062, 7552",421,"45, 50",456,Parliament,"['1872648764']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Binding Lothar,"8221, 7553",421,"45, 50",456,Parliament,"['2617281050']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Bartke Matthias,"8127, 7554",421,"45, 50",456,Parliament,"['3376953843']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Barley Katarina,"13077, 7555, 8412","421, 185","30, 45, 50","456, 200",Parliament,"['4097559143']","Sozialdemokratische Partei Deutschlands, SPD",,,Germany,,https://www.bundestag.de/en/members,,"Germany, European Parliament","8, 27","28, 29, 43",41320 +Hubertus Zdebel,"8202, 7556",422,"46, 53",457,Parliament,"['4557858142']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Harald Weinberg,"7557, 8298",422,"46, 53",457,Parliament,"['625642009']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Müller Norbert,"8405, 7558",422,"46, 53",457,Parliament,"['4265444913']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Lutze Thomas,"8281, 7559",422,"46, 53",457,Parliament,"['3667108397']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Gerhard Schick,"7560, 8321",423,"47, 54",458,Parliament,"['4110374301']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Cem Özdemir,"7561, 8323",423,"47, 54",458,Parliament,"['19108766']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Annalena Baerbock,"7562, 8240",423,"47, 54",458,Parliament,"['2179010672']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Beck Volker,7563,423,47,458,Parliament,"['16337664']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Halina Wawzyniak,7564,422,46,457,Parliament,"['18866407']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Michael Peter Tauber,"7566, 8114","420, 425","49, 44",455,Parliament,"['22260144']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Erika Steinbach,7567,424,48,459,Parliament,"['425845268']",Independent,,,,,https://www.bundestag.de/en/members,,Germany,8,28, +Mutlu Özcan,7568,423,47,458,Parliament,"['73088949']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Anna Kordula Schulz-Asche,"7569, 8259",423,"47, 54",458,Parliament,"['17870195']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Strengmann-Kuhn Wolfgang,"7570, 8325",423,"47, 54",458,Parliament,"['20840049']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Sven Volmering,7572,420,44,455,Parliament,"['332698790']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Mechthild Rawert,7573,421,45,456,Parliament,"['37438947']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Dagmar G. Wöhrl,7574,420,44,455,Parliament,"['28525166']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Hartmut Koschyk,7575,420,44,455,Parliament,"['64377390']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Gerold Reichenbach,7576,421,45,456,Parliament,"['277587918']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Feist Thomas,7577,420,44,455,Parliament,"['47990090']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +(Lisa) Elisabeth Paus,"8696, 7579",423,"47, 54",458,Parliament,"['569166756']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Meiwald Peter,7580,423,47,458,Parliament,"['19464497']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Boris Gehring Kai,"7581, 8352",423,"47, 54",458,Parliament,"['110368456']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Burkhard Karl Lischka,"8207, 7582",421,"45, 50",456,Parliament,"['36665085']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Krischer Michael Oliver,"8694, 7584",423,"47, 54",458,Parliament,"['88630242']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Fuchs Michael,7585,420,44,455,Parliament,"['56670083']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Bärbel Höhn,7586,423,47,458,Parliament,"['22900494']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Christina Schwarzer,7587,420,44,455,Parliament,"['359327259']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Elke Ferner,7588,421,45,456,Parliament,"['26203837']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Annette Groth,7589,422,46,457,Parliament,"['431503846']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Engelmeier Michaela,7590,421,45,456,Parliament,"['26713568']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Hinz Priska,7591,423,47,458,Parliament,"['64998836']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Charles Huber M.,7592,420,44,455,Parliament,"['81142025']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +(Ulle) Schauws Ursula,"7593, 8698",423,"47, 54",458,Parliament,"['17363943']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Alexander Neu S.,"7594, 8261",422,"46, 53",457,Parliament,"['1182878557']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Kristina Schröder,7596,420,44,455,Parliament,"['18761526']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Brigitte Zypries,7597,421,45,456,Parliament,"['574472515']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Da?Delen Sevim,"7598, 8151",422,"46, 53",457,Parliament,"['139407967']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Agnieszka Brugger,"8338, 7599",423,"47, 54",458,Parliament,"['172269309']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Diana Golze,7601,422,46,457,Parliament,"['625799912']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Gohlke Nicole Stephanie,"8296, 7602",422,"46, 53",457,Parliament,"['866425075']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Heribert Hirte,"7603, 8181","420, 425","49, 44",455,Parliament,"['1513671236']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Ferdinand Manuel Sarrazin,"8220, 7604",423,"47, 54",458,Parliament,"['17922403']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Brigitte Pothmer,7605,423,47,458,Parliament,"['68394879']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Castellucci Lars,"8177, 7606",421,"45, 50",456,Parliament,"['17469649']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Braun Helge Reinhold,"8420, 7607","420, 425","49, 44",455,Parliament,"['19108071']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Gabriel Hartmut Sigmar,"7608, 7999",421,"45, 50",456,Parliament,"['569832889']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Gerhard Leutert Michael,"8681, 7609",422,"46, 53",457,Parliament,"['93612750']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Hartmann Michael,7610,421,45,456,Parliament,"['434884982']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Gehrcke Wolfgang,7611,422,46,457,Parliament,"['532669620']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Christina Kampmann,7613,421,45,456,Parliament,"['1037134387']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Florian Hahn Peter,"7614, 8155","420, 426","49, 44",455,Parliament,"['403735368']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Hans-Christian Ströbele,7615,423,47,458,Parliament,"['304342650']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Albsteiger Katrin,7616,420,44,455,Parliament,"['429357796']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Günther Meister Michael,"8560, 7617","420, 425","49, 44",455,Parliament,"['34214048']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Lemme Steffen-Claudio,7618,421,45,456,Parliament,"['26102710']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Julia Maria Verlinden,"8224, 7620",423,"47, 54",458,Parliament,"['1475734592']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Maisch Nicole,7621,423,47,458,Parliament,"['18723339']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Rebmann Stefan,7622,421,45,456,Parliament,"['313213943']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Caren Lay Nicole,"8351, 7623",422,"46, 53",457,Parliament,"['21404382']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Valerie Wilms,7625,423,47,458,Parliament,"['396069600']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Behrens Herbert,"7626, 7701",422,46,457,Parliament,"['189466573', '573861390']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Gregor Gysi,"7627, 8100",422,"46, 53",457,Parliament,"['888289790']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Christoph Strässer,7628,421,45,456,Parliament,"['1509832074']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Lietz Matthias,7629,420,44,455,Parliament,"['508645493']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Arnold Rainer,7630,421,45,456,Parliament,"['56990207']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Bettina Hornhues,7632,420,44,455,Parliament,"['275204467']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Aken Jan Van,7633,422,46,457,Parliament,"['936486542']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Andreas Franz Scheuer,"8225, 7634","420, 426","49, 44",455,Parliament,"['50315139']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Michael Ullrich Volker,"7635, 8133","420, 426","49, 44",455,Parliament,"['28446356']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Nina Warken,7636,420,44,455,Parliament,"['65413134']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Diaby Karamba Nat. Rer.,"8386, 7637",421,"45, 50",456,Parliament,"['316355056']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Hans Nord Thomas,"8126, 7638",422,"46, 53",457,Parliament,"['1421571306']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Jung Xaver,7639,420,44,455,Parliament,"['1313226002']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Binder Karin,7641,422,46,457,Parliament,"['22142658']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Koenigs Tom,7643,423,47,458,Parliament,"['399988476']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Aydan Özoğuz,7644,421,45,456,Parliament,"['83342791']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Ernst Friedrich Klaus,"7646, 8300",422,"46, 53",457,Parliament,"['64994645']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Matthias Rainer Zimmer,"7647, 8365","420, 425","49, 44",455,Parliament,"['52994606']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Mißfelder Philipp,7648,420,44,455,Parliament,"['20677269']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Priesmeier Wilhelm,7649,421,45,456,Parliament,"['62457691']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Ernst Patrick Sensburg,"8108, 7651","420, 425","49, 44",455,Parliament,"['43537931']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Waltraud Wolff,7652,421,45,456,Parliament,"['47940273']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Johannes Singhammer,7653,420,44,455,Parliament,"['542415865']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Hermann Martin Rabanus,"7654, 8050",421,"45, 50",456,Parliament,"['46356949']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Beck Marieluise,7655,423,47,458,Parliament,"['763549040']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Tobias Zech,7656,420,44,455,Parliament,"['1720247887']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Axel Fischer,"8346, 7657","420, 425","49, 44",455,Parliament,"['160906608']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Edgar Franke Konrad,"7658, 8128",421,"45, 50",456,Parliament,"['481393623']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +David Johann Wadephul,"7659, 8047","420, 425","49, 44",455,Parliament,"['389682667']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Hein Rosemarie,7660,422,46,457,Parliament,"['73468394']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Bernd C. Fabritius H.,7661,420,44,455,Parliament,"['493229926']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Gisela Manderla,7662,420,44,455,Parliament,"['1095781218']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Karawanskij Susanna,7664,422,46,457,Parliament,"['892779458']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Helmut Nowak,7665,420,44,455,Parliament,"['1120117190']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Annette Sawade,7666,421,45,456,Parliament,"['1192966249']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Bernd Siebert,7667,420,44,455,Parliament,"['24674518']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Axel Troost,7668,422,46,457,Parliament,"['73990900']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Jürgen Klimke,7670,420,44,455,Parliament,"['47698123']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Gundelach Herlind,7672,420,44,455,Parliament,"['550951920']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Ernstberger Petra,7673,421,45,456,Parliament,"['408506969']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Franz Josef Jung,7674,420,44,455,Parliament,"['860067295']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Pfeiffer Sibylle,7676,420,44,455,Parliament,"['574528123']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Hiltrud Lotze,7677,421,45,456,Parliament,"['38272947']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Eckhardt Rehberg,7678,420,44,455,Parliament,"['39485791']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Ehrmann Siegmund,"7679, 7696",421,45,456,Parliament,"['59422617', '1131372344']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Frank Junge Michael,"8000, 7680",421,"45, 50",456,Parliament,"['77928749']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Franz Thönnes,7681,421,45,456,Parliament,"['36048137']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Karl-Georg Wellmann,7682,420,44,455,Parliament,"['391355501']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Norbert Spinrath,7684,421,45,456,Parliament,"['1701848514']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Andrea Wicklein,7685,421,45,456,Parliament,"['1148893550']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Egon Jüttner,7687,420,44,455,Parliament,"['871704942']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Peter Weiß,7688,420,44,455,Parliament,"['54202670']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Feiler Uwe,7690,420,44,455,Parliament,"['47151012']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Michael Vietz,7693,420,44,455,Parliament,"['15691333']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Fograscher Gabriele,7695,421,45,456,Parliament,"['1381420976']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Karl Lamers,7697,420,44,455,Parliament,"['51798059']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Christian Freiherr Stetten Von,7698,420,44,455,Parliament,"['1334019378']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Peer Steinbrück,7699,421,45,456,Parliament,"['856641566']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Edathy Sebastian,7700,421,45,456,Parliament,"['380362523']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Agnes Alpers,7702,422,46,457,Parliament,"['181699011']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Markus Tressel,7703,423,47,458,Parliament,"['70375580']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Böhmer Maria,7711,420,44,455,Parliament,"['2898896728']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Eberl Iris,7723,420,44,455,Parliament,"['4782890181']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Eckenbach Jutta,7724,420,44,455,Parliament,"['3332437210']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Hoffmann Thorsten,7756,420,44,455,Parliament,"['588942667']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Bettina Kudla,7781,420,44,455,Parliament,"['3301440772']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Lengsfeld Philipp,7789,420,44,455,Parliament,"['2166255624']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Ingbert Liebing,7792,420,44,455,Parliament,"['2785989037']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Mosblech Volker,7809,420,44,455,Parliament,"['1369718948']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Julia Obermeier,7812,420,44,455,Parliament,"['2175692210']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Ostermann Tim,7813,420,44,455,Parliament,"['702800400223772672']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Alexander Gamal Radwan,"7823, 8075","420, 426","49, 44",455,Parliament,"['2831760211']","CSU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Annette Schavan,7833,420,44,455,Parliament,"['1151950350']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Heiko Schmelzle,7834,420,44,455,Parliament,"['2179332253']",CDU/CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41521 +Alexander Markus Uhl,"7997, 7859","420, 425","49, 44",455,Parliament,"['1391875208']","CDU, CDU/CSU",,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41521 +Carsten Träger,7879,421,45,456,Parliament,"['3577737256']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Tiefensee Wolfgang,7880,421,45,456,Parliament,"['1662100297']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Elfi Scho-Antwerpes,7887,421,45,456,Parliament,"['705054100212359168']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Matthias Schmidt,7888,421,45,456,Parliament,"['704243557700411392']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Jeannine Pflugradt,7904,421,45,456,Parliament,"['841013612294656000']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Markus Paschke,7905,421,45,456,Parliament,"['3163499392']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Birgit Malecha-Nissen,7913,421,45,456,Parliament,"['1230819176']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Jost Reinhold,7923,421,45,456,Parliament,"['23742433']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Christina Jantz-Herrmann,7924,421,45,456,Parliament,"['2292470384']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Ilgen Matthias,7925,421,45,456,Parliament,"['2156382000']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Hampel Ulrich,7928,421,45,456,Parliament,"['822445694233493504']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Groß Michael,7932,421,45,456,Parliament,"['2814949590']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Freese Ronald Ulrich,"7998, 7938",421,"45, 50",456,Parliament,"['2317202160']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Christian Flisek,7939,421,45,456,Parliament,"['2469449068']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Daniela De Pol. Rer. Ridder,"7945, 8161",421,"45, 50",456,Parliament,"['2842430247']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41320 +Coße Jürgen,7948,421,45,456,Parliament,"['161395160']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Bätzing-Lichtenthäler Sabine,7954,421,45,456,Parliament,"['281941547']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41320 +Jörn Wunderlich,7964,422,46,457,Parliament,"['3748945281']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Frank Tempel,7967,422,46,457,Parliament,"['730695836288585728']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +Harald Petzold,7972,422,46,457,Parliament,"['377925526']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41223 +(Ulla) Jelpke Ursula,"8679, 7977",422,"46, 53",457,Parliament,"['2837971145']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Bartsch Dietmar Gerhard,"7984, 8182",422,"46, 53",457,Parliament,"['2320519958']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41223 +Harald Terpe,7985,423,47,458,Parliament,"['40451562']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Elisabeth Scharfenberg,7987,423,47,458,Parliament,"['753551801706766208']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,28,41113 +Anja Hajduk Margarete,"8034, 7991",423,"47, 54",458,Parliament,"['4724923756']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,"28, 29",41113 +Henrichmann Marc,7994,425,49,455,Parliament,"['44608858']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Pilsinger Stephan,7996,426,49,455,Parliament,"['819914159915667456']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Josephine Loulou Ortleb,8001,421,50,456,Parliament,"['21618829']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Cotar Eleonora Joana,8002,427,51,462,Parliament,"['814970546366611457']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Ehrhorn Thomas,8003,427,51,462,Parliament,"['3242322815']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Felser Peter,8004,427,51,462,Parliament,"['3384789731']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Anton Friesen,8005,427,51,462,Parliament,"['916324637046435840']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Gottberg Von Wilhelm,8006,427,51,462,Parliament,"['3412973404']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Hartmann Verena,8007,427,51,462,Parliament,"['942722262179962880']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Hemmelgarn Theodor Udo,8008,427,51,462,Parliament,"['849060114388705280']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Herdt Waldemar,8009,427,51,462,Parliament,"['3384824825']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Höchst Nicole,8010,427,51,462,Parliament,"['3105025175']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Bruno Hollnagel,8011,427,51,462,Parliament,"['996440442819502080']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Huber Johannes,8012,427,51,462,Parliament,"['2527085323']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Fabian Jacobi,8013,427,51,462,Parliament,"['944181149424898048']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jens Kestner,8014,427,51,462,Parliament,"['916937598232391680']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jörn König,8015,427,51,462,Parliament,"['960974630709284864']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Kotré Steffen,8016,427,51,462,Parliament,"['912223443231428608']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Hans-Rüdiger Lucassen,8017,427,51,462,Parliament,"['4875914470']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jens Maier,8018,427,51,462,Parliament,"['916639458409242624']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Münz Volker,8019,427,51,462,Parliament,"['804063618270695424']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jan Nolte Ralf,8020,427,51,462,Parliament,"['3408940048']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Oehme Ulrich,8021,427,51,462,Parliament,"['3384795790']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Matthias Peterka Tobias,8022,427,51,462,Parliament,"['2496104640']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Paul Podolay Viktor,8023,427,51,462,Parliament,"['774308243124391937']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Johannes Reusch Roman,8024,427,51,462,Parliament,"['821073663999045632']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Seitz Thomas,8025,427,51,462,Parliament,"['913358838736310272']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Heiko Wildberg,8026,427,51,462,Parliament,"['3183992596']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Christian Friedrich Wirth,8027,427,51,462,Parliament,"['920193967937019904']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Ebbing Hartmut,8028,428,52,463,Parliament,"['916950563815870464']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Bernd Reuther,8029,428,52,463,Parliament,"['930422173478608903']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Bettina Stark-Watzinger,8030,428,52,463,Parliament,"['38228691']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Brandt Michel,8031,422,53,457,Parliament,"['1543429536']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Birke Bull-Bischoff,8032,422,53,457,Parliament,"['81394072']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Evrim Sommer,8033,422,53,457,Parliament,"['143882918']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Markus Stefan Tressel,8035,423,54,458,Parliament,"['2306519694']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Ingrid Nestle,8041,423,54,458,Parliament,"['44359035']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Bahr Ulrike,8042,421,50,456,Parliament,"['724565991104110592']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Carina Konrad,8043,428,52,463,Parliament,"['874304935906729984']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Andreas Steier,8049,425,49,455,Parliament,"['3236928208']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Kuffer Michael,8054,426,49,455,Parliament,"['4249342037']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Achim Kessler,8055,422,53,457,Parliament,"['849567328899616768']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Filiz Polat,8057,423,54,458,Parliament,"['194535434']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Brunner Heinz Karl,8058,421,50,456,Parliament,"['882929865535705088']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Rouenhoff Stefan,8059,425,49,455,Parliament,"['963904327']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Hellmich Wolfgang,8061,421,50,456,Parliament,"['786498202832822272']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Christoph Matschie,8064,421,50,456,Parliament,"['19286748']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Angela Dorothea Merkel,8066,425,49,455,Parliament,"['2631881902']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +C. Georg H. Hans Michelbach,8068,426,49,455,Parliament,"['824221646290616320']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Kamann Uwe,8070,427,51,462,Parliament,"['2546790747']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Frohnmaier Markus,8073,427,51,462,Parliament,"['4130621842']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Bernstiel Christoph,8081,425,49,455,Parliament,"['830085678063030272']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Linda Teuteberg,8086,428,52,463,Parliament,"['170964436']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Ingmar Jung Ludwig,8088,426,49,455,Parliament,"['23296367']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Bernd Riexinger,8090,422,53,457,Parliament,"['849012308']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Cornelia Möhring,8093,422,53,457,Parliament,"['2596171296']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Sandra Weeser,8096,428,52,463,Parliament,"['858362895075340288']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Helge Lindh,8097,421,50,456,Parliament,"['454981027']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Andreas Bleck,8104,427,51,462,Parliament,"['910878654535749632']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Gremmels Timon,8105,421,50,456,Parliament,"['494809842']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Lothar Maier,8106,427,51,462,Parliament,"['824210890354520064']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Erwin Martin Renner,8110,427,51,462,Parliament,"['2535401947']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Daniela Wagner,8115,423,54,458,Parliament,"['874917828436078592']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Brandenburg Mario,8116,428,52,463,Parliament,"['802968497831739392']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Barrientos Krauss Simone,8119,422,53,457,Parliament,"['176104376']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Alice Weidel,8123,427,51,462,Parliament,"['833398209053605888']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Andrew Ullmann,8124,428,52,463,Parliament,"['609972369']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Christian Lindner,8129,428,52,463,Parliament,"['122104353']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Albert Schinnenburg Wieland,8135,428,52,463,Parliament,"['828943222432997376']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Brandenburg Jens,8136,428,52,463,Parliament,"['857906951707127808']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Frank Sitta,8137,428,52,463,Parliament,"['28087038']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Michael Schrodi,8140,421,50,456,Parliament,"['806975237766135808']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Holm Leif-Erik,8141,427,51,462,Parliament,"['739531034761498624']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Andreas Schwarz,8142,421,50,456,Parliament,"['2226815116']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Heiko Maas,8145,421,50,456,Parliament,"['24158261']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Anke Domscheit-Berg,8158,422,53,457,Parliament,"['16557497']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Florian Toncar,8162,428,52,463,Parliament,"['17462171']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Kemmerich L. Thomas,8165,428,52,463,Parliament,"['22755312']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Frank Pasemann,8167,427,51,462,Parliament,"['1490376331']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Marie-Agnes Strack-Zimmermann,8168,428,52,463,Parliament,"['3047392319']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Dietlind Tiemann,8172,425,49,455,Parliament,"['4818645382']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Curio Gottfried,8173,427,51,462,Parliament,"['848618993015500800']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Harald Weyel,8175,427,51,462,Parliament,"['841412635270762496']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Aumer Peter,8184,426,49,455,Parliament,"['348460907']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Bayaz Danyal,8187,423,54,458,Parliament,"['808400627084705792']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Bause Margarete,8192,423,54,458,Parliament,"['480623844']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Boehringer Peter,8195,427,51,462,Parliament,"['99268600']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Stadler Svenja,8201,421,50,456,Parliament,"['3337459024']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Holtz Ottmar Von,8203,423,54,458,Parliament,"['2357675876']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Beer Gertrud Nicola,"8205, 13235","177, 428","52, 63",463,Parliament,"['828623998921629696']","FDP, Freie Demokratische Partei",,,Germany,,https://www.bundestag.de/en/members,,"Germany, European Parliament","8, 27","29, 43",41420 +Gabelmann Sylvia,8213,422,53,457,Parliament,"['850993608']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Hessel Katja,8216,428,52,463,Parliament,"['107806591']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Gelbhaar Stefan,8218,423,54,458,Parliament,"['426582569']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Daniela Kluckert,8227,428,52,463,Parliament,"['28327765']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Luksic Oliver,8229,428,52,463,Parliament,"['21144568']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Schweiger Torsten,8233,425,49,455,Parliament,"['2758602415']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Anna Christmann,8242,423,54,458,Parliament,"['1617177360']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Kemmer Ronja,8244,425,49,455,Parliament,"['2405039875']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Josef Oster,8251,425,49,455,Parliament,"['28089973']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Falko Mohrs,8252,421,50,456,Parliament,"['79228932']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Karl Lauterbach,8254,421,50,456,Parliament,"['3292982985']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Gottschalk Kay,8255,427,51,462,Parliament,"['1286011081']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jan Korte,8256,422,53,457,Parliament,"['4164673821']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Christian Jung,8257,428,52,463,Parliament,"['740178046649565184']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Corinna Miazga,8258,427,51,462,Parliament,"['868762469115846657']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Ingrid Remmers,8260,422,53,457,Parliament,"['551802475']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Alexander Hess Martin,8262,427,51,462,Parliament,"['872663038805016576']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Christoph Meyer,8264,428,52,463,Parliament,"['861992050358616064']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Axel Gehrke,8266,427,51,462,Parliament,"['1862781722']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Nils Schmid,8267,421,50,456,Parliament,"['83795057']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Bystron Petr,8269,427,51,462,Parliament,"['810957560723505152']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Elisabeth Kaiser,8274,421,50,456,Parliament,"['1425035358']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Bayram Canan,8277,423,54,458,Parliament,"['587862375']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Frieser Michael,8280,426,49,455,Parliament,"['4577700622']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Buschmann Marco,8286,428,52,463,Parliament,"['106136813']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Faber Marcus,8291,428,52,463,Parliament,"['22364234']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Herbst Torsten,8295,428,52,463,Parliament,"['17561226']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Sattelberger Thomas,8297,428,52,463,Parliament,"['1296544153']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Elias Konstantin Kuhle,8299,428,52,463,Parliament,"['475275997']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Badum Hildegard Lisa,8302,423,54,458,Parliament,"['282195399']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Angelika Glöckner,8304,421,50,456,Parliament,"['976421048']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Lechte Ulrich,8305,428,52,463,Parliament,"['988765113606918144']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Abercron Michael Von,8307,425,49,455,Parliament,"['862747349277450240']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Martin Reichardt,8308,427,51,462,Parliament,"['2545743991']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Nastic Zaklin,8312,422,53,457,Parliament,"['2527808433']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Berengar Elsner Gronow Von,8315,427,51,462,Parliament,"['4429947807']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Andreas Mrosek,8316,427,51,462,Parliament,"['2618890032']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Paul Ziemiak,8319,425,49,455,Parliament,"['288696645']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Uwe Witt,8322,427,51,462,Parliament,"['4503658823']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Martin Schulz,8324,421,50,456,Parliament,"['17675072']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Keuter Stefan,8326,427,51,462,Parliament,"['794628172570619904']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Ruppert Stefan,8329,428,52,463,Parliament,"['2710786593']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Stephan Thomae,8331,428,52,463,Parliament,"['75005687']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Johannes Schraps,8332,421,50,456,Parliament,"['1356753444']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Bernhard Marc,8333,427,51,462,Parliament,"['805823950253150208']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Hermann Otto Solms,8337,428,52,463,Parliament,"['16325209']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Lehmann Sven,8339,423,54,458,Parliament,"['16706236']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Benjamin Strasser,8343,428,52,463,Parliament,"['29540300']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Peter Stein,8347,425,49,455,Parliament,"['2885729417']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Dirk Spaniel,8353,427,51,462,Parliament,"['810537151729373184']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Enrico Komning,8355,427,51,462,Parliament,"['781747720897892352']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Katrin Staffler,8356,426,49,455,Parliament,"['825019912083038208']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Anita Schäfer,8363,425,49,455,Parliament,"['874474169106395136']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Elvan Korkmaz,8364,421,50,456,Parliament,"['3930477322']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Felix Schreiner,8367,425,49,455,Parliament,"['162398888']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Brandner Stephan,8368,427,51,462,Parliament,"['713361366858481664']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Manfred Todtenhausen,8370,428,52,463,Parliament,"['563706584']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Protschka Stephan,8372,427,51,462,Parliament,"['1412287272']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Breymaier Leni,8375,421,50,456,Parliament,"['748453543632330752']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Espendiller Michael,8376,427,51,462,Parliament,"['885167849685340160']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Haug Jochen,8379,427,51,462,Parliament,"['717077328669646848']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Carsten Müller,8380,425,49,455,Parliament,"['53945479']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Alexander Eberhardt Gauland,8382,427,51,462,Parliament,"['914612826928504832']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jimmy Schulz,8383,428,52,463,Parliament,"['18000943']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Beeck Jens,8384,428,52,463,Parliament,"['179216369']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Hacker Thomas,8385,428,52,463,Parliament,"['89209507']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Hartwig Roland,8387,427,51,462,Parliament,"['2935654689']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Meiser Pascal,8388,422,53,457,Parliament,"['314534724']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Helling-Plahr Katrin,8391,428,52,463,Parliament,"['21267421']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Georg Link Michael,8392,428,52,463,Parliament,"['3034092143']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Friedrich Hans-Peter,8394,426,49,455,Parliament,"['708224250885349376']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Johannes Vogel,8395,428,52,463,Parliament,"['15630931']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Fricke Otto,8397,428,52,463,Parliament,"['18044683']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Aschenberg-Dugnus Christine,8403,428,52,463,Parliament,"['25980076']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Sonja Steffen,8407,421,50,456,Parliament,"['702653022']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Benning Sybille,8408,425,49,455,Parliament,"['869205749632831488']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Jongen Marc Stephan,8411,427,51,462,Parliament,"['4121053541']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Houben Reinhard,8415,428,52,463,Parliament,"['825069798140833794']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Grübel Markus,8439,425,49,455,Parliament,"['796691290016583680']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Anja Karliczek,8450,425,49,455,Parliament,"['2521976694']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Axel Knoerig,8453,425,49,455,Parliament,"['928974816220254208']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Daniela Ludwig,8460,425,49,455,Parliament,"['1019846605044936705']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Norbert Röttgen,8476,425,49,455,Parliament,"['1040160799208161280']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Silberhorn Thomas,8480,426,49,455,Parliament,"['951489275312443392']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Fechner Johannes,8498,421,50,456,Parliament,"['838545322360057728']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Grötsch Uli,8501,421,50,456,Parliament,"['867351565757239296']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Katja Mast,8506,421,50,456,Parliament,"['937678874095300608']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Michelle Müntefering,8508,421,50,456,Parliament,"['947740210036641792']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Schiefner Udo,8518,421,50,456,Parliament,"['3823042877']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Katja Keul,8532,423,54,458,Parliament,"['959105406416162816']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Kindler Sven-Christian,8533,423,54,458,Parliament,"['17343047']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Biadacz Marc,8539,425,49,455,Parliament,"['935815000006053888']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Brehm Sebastian,8541,426,49,455,Parliament,"['904304932257492992']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Erndl Thomas,8544,426,49,455,Parliament,"['2192588903']",CSU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Feiler Uwe Wolfgang,8545,425,49,455,Parliament,"['855028904339394560']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Heilmann Thomas,8550,425,49,455,Parliament,"['56806603']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Kartes Torbjörn,8552,425,49,455,Parliament,"['3188225915']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Andreas Gottfried Lämmel,8555,425,49,455,Parliament,"['946570863616421888']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Löbel Nikolas,8557,425,49,455,Parliament,"['143351769']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Müller Sepp,8564,425,49,455,Parliament,"['801803127762669568']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Christoph Johannes Ploß,8568,425,49,455,Parliament,"['928335737803722753']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Alexander Throm,8578,425,49,455,Parliament,"['829056811974144000']",CDU,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41521 +Dilcher Esther,8586,421,50,456,Parliament,"['939092636165689345']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Möller Siemtje,8592,421,50,456,Parliament,"['1115940238801743872']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Manja Schüle,8598,421,50,456,Parliament,"['827090742162100224']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Jens Mathias Stein,8599,421,50,456,Parliament,"['46498076']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Markus Töns,8600,421,50,456,Parliament,"['3522875063']",SPD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41320 +Braun Jürgen,8603,427,51,462,Parliament,"['917756296555892736']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Bühl Marcus,8604,427,51,462,Parliament,"['729360191263780864']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Büttner Matthias,8605,427,51,462,Parliament,"['881480498043916288']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Chrupalla Tino,8606,427,51,462,Parliament,"['797137333820784640']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Dietmar Friedhoff,8608,427,51,462,Parliament,"['3383505179']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Frömming Götz,8609,427,51,462,Parliament,"['809895794']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Franziska Gminder,8611,427,51,462,Parliament,"['3386357374']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Harder-Kühnel Iris Mariana,8612,427,51,462,Parliament,"['815699423057637381']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Herrmann Klaus Lars,8614,427,51,462,Parliament,"['3386302239']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Hilse Karsten,8616,427,51,462,Parliament,"['920932259347214336']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Kleinwächter Norbert,8618,427,51,462,Parliament,"['865920519668989952']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Kraft Rainer,8619,427,51,462,Parliament,"['804064797977444352']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Mario Mieruch,8622,427,51,462,Parliament,"['932931561015730176']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Gerhard Hansjörg Müller,8623,427,51,462,Parliament,"['965591555783430144']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Münzenmaier Sebastian,8624,427,51,462,Parliament,"['863657874941255680']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Christoph Neumann,8625,427,51,462,Parliament,"['760188355615293440']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jürgen Pohl,8627,427,51,462,Parliament,"['175071092']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Schielke-Ziesing Ulrike,8628,427,51,462,Parliament,"['866924100']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Robby Schlund,8629,427,51,462,Parliament,"['1009025255753601024']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Jörg Schneider,8630,427,51,462,Parliament,"['719975730784956416']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Schulz Uwe,8631,427,51,462,Parliament,"['19177808']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Johannes Martin Sichert,8632,427,51,462,Parliament,"['918405860862382080']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +René Springer,8634,427,51,462,Parliament,"['831541837965967360']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Wiehle Wolfgang,8635,427,51,462,Parliament,"['1003656299589132291']",AfD,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41953 +Aggelidis Grigorios,8636,428,52,463,Parliament,"['976107205849206784']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Alt Renata,8637,428,52,463,Parliament,"['1001837201276235777']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Beek In Olaf,8639,428,52,463,Parliament,"['913327957602693120']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Busen Karlheinz,8640,428,52,463,Parliament,"['935554963639558144']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Britta Dassler Katharina,8642,428,52,463,Parliament,"['998867063274921984']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Bijan Djir-Sarai,8643,428,52,463,Parliament,"['960463104537657344']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Christian Dürr,8644,428,52,463,Parliament,"['17535941']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Daniel Föst,8645,428,52,463,Parliament,"['422569574']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Herbrand Markus,8646,428,52,463,Parliament,"['997138767763750912']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Clemens Gero Hocker,8647,428,52,463,Parliament,"['966707365893558272']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Höferlin Manuel,8648,428,52,463,Parliament,"['17483463']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Ihnen Ulla,8650,428,52,463,Parliament,"['997415730051207168']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Klinge Marcel,8652,428,52,463,Parliament,"['773136774470205440']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Köhler Lukas,8655,428,52,463,Parliament,"['898597063444877312']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Alexander Müller,8660,428,52,463,Parliament,"['936235058792484864']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Müller-Böhm Roman,8661,428,52,463,Parliament,"['2373251115']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Frank Müller-Rosentritt,8662,428,52,463,Parliament,"['984048002967982080']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Martin Neumann,8663,428,52,463,Parliament,"['974589289689427968']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Hagen Reinhold,8664,428,52,463,Parliament,"['925657781759332353']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Christian Sauter,8665,428,52,463,Parliament,"['997033716324093952']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Frank Schäffler,8666,428,52,463,Parliament,"['18189342']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Matthias Seestern-Pauly,8667,428,52,463,Parliament,"['1006099793888841729']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Judith Skudelny,8668,428,52,463,Parliament,"['948958759560376320']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Katja Rita Suding,8669,428,52,463,Parliament,"['18880634']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Gerald Ullrich,8670,428,52,463,Parliament,"['935456332655874048']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Nicole Westig,8671,428,52,463,Parliament,"['989145249682526208']",FDP,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41420 +Achelwilm Doris Maria,8672,422,53,457,Parliament,"['4819478705']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Akbulut Gökay,8673,422,53,457,Parliament,"['800457587510476800']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Beutin Gösta Lorenz,8674,422,53,457,Parliament,"['136266976']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Cezanne Jörg,8675,422,53,457,Parliament,"['1391879604']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Brigitte Freihold,8677,422,53,457,Parliament,"['925703909825548288']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Höhn Matthias,8678,422,53,457,Parliament,"['15686106']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Ali Amira Mohamed,8682,422,53,457,Parliament,"['934029228886065152']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Pellmann Sören,8683,422,53,457,Parliament,"['74837812']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Angelo Perli Victor,8684,422,53,457,Parliament,"['3350681139']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Pflüger Tobias,8685,422,53,457,Parliament,"['16696924']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Elisabeth Eva-Maria Schreiber,8686,422,53,457,Parliament,"['940585440746328064']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Friedrich Straetmanns,8687,422,53,457,Parliament,"['959059951523106816']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Jessica Tatti,8688,422,53,457,Parliament,"['1020297087970435072']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Andreas Wagner,8689,422,53,457,Parliament,"['235703405']",The Left Party,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41223 +Erhard Grundl,8691,423,54,458,Parliament,"['951773879822880768']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Bettina Hoffmann,8692,423,54,458,Parliament,"['971040144420720640']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Kappert-Gonther Kirsten,8693,423,54,458,Parliament,"['955357684013953024']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Claudia Müller,8695,423,54,458,Parliament,"['937403112']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Manuela Rottmann,8697,423,54,458,Parliament,"['984735466783232000']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Schmidt Stefan,8699,423,54,458,Parliament,"['930725836482928640']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Margit Stumpp,8700,423,54,458,Parliament,"['943082490482262016']",Alliance 90/The Greens,,,,,https://www.bundestag.de/en/members,,Germany,8,29,41113 +Johann N. Schneider-Ammann,8701,429,,464,Special,"['2965582641']",PLR.Les Libéraux-Radicaux,,,Berne,,,,Switzerland,23,6,43420 +Ada Marra,"13735, 8810",432,58,468,Parliament,"['607353825']",Parti socialiste suisse,none,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Adèle Goumaz Thorens,"8811, 13736",433,59,469,Parliament,"['2870723938']",Parti écologiste suisse,none,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43110 +Adrian Amstutz,"13737, 8812",430,56,466,Parliament,"['2395783423']",Union Démocratique du Centre,https://www.adrian-amstutz.ch/,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Andrea Gmür-Schönenberger,"13748, 8813",431,57,467,Parliament,"['235081966']",Parti démocrate-chrétien suisse,https://www.andrea-gmuer.ch,"['Conseil National']",Lucerne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Alain Berset,"8814, 13739",432,,464,"Executive council, Special","['214032204']",Parti socialiste suisse,https://www.alainberset.ch,"['Conseil Fédéral']",Fribourg,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Alice Glauser-Zufferey,"13744, 8815",430,56,466,Parliament,"['3354760547']",Union Démocratique du Centre,https://aliceglauser.ch/,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Amaudruz Céline,"8816, 13777",430,56,466,Parliament,"['3096244845']",Union Démocratique du Centre,none,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Angelo Barrile,"8817, 13752",432,58,468,Parliament,"['219076403']",Parti socialiste suisse,https://www.barrile.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Andrea Caroni,"8818, 13747",429,55,465,Senate,"['442685639']",PLR.Les Libéraux-Radicaux,https://www.andrea-caroni.ch,"['Conseil des Etats']",Appenzell Rh.-Ext.,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43420 +Barbara Steinemann,"13758, 8819",430,56,466,Parliament,"['385293664']",Union Démocratique du Centre,https://www.barbara-steinemann.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Barbara Gysi,"8820, 13756",432,58,468,Parliament,"['2536865558']",Parti socialiste suisse,https://www.barbara-gysi.ch,"['Conseil National']",St-Gall,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Barazzone Guillaume,"13826, 8821",431,57,467,Parliament,"['278262326']",Parti démocrate-chrétien suisse,https://www.barazzone.ch,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Bastien Girod,"8822, 13759",433,59,469,Parliament,"['14077586']",Parti écologiste suisse,https://www.bastiengirod.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43110 +Bea Heim,"13760, 8823",432,58,468,Parliament,"['67100346']",Parti socialiste suisse,https://www.bea-heim.ch,"['Conseil National']",Soleure,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Beat Vonlanthen,"8824, 13765",431,57,467,Senate,"['1947128240']",Parti démocrate-chrétien suisse,https://www.beat-vonlanthen.ch/,"['Conseil des Etats']",Fribourg,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Beat Flach,"13762, 8825",440,61,479,Parliament,"['123362849']",Parti vert'libéral,https://www.beatflach.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43120 +Benoît Genecand,8826,429,55,465,Parliament,"['2822483402']",PLR.Les Libéraux-Radicaux,,,Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43420 +Berberat Didier,"13802, 8827",432,58,468,Senate,"['271271590']",Parti socialiste suisse,https://www.dberberat.ch,"['Conseil des Etats']",Neuchâtel,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43320 +Bernhard Guhl,"8828, 13770",434,60,470,Parliament,"['113616426']",Parti bourgeois-démocratique suisse,https://www.bernhard-guhl.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43811 +Balthasar Glättli,"8829, 13755",433,59,469,Parliament,"['14675346']",Parti écologiste suisse,https://www.balthasar-glaettli.ch?source=twitterprofile,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43110 +Brand Heinz,"13838, 8830",430,56,466,Parliament,"['3039132947']",Union Démocratique du Centre,https://www.heinz-brand.ch,"['Conseil National']",Grisons,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Bühler Manfred,"8831, 13875",430,56,466,Parliament,"['2172700965']",Union Démocratique du Centre,https://udcjb.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Carlo Sommaruga,"8832, 13775",432,58,468,Parliament,"['157431387']",Parti socialiste suisse,https://www.carlosommaruga.ch,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Cédric Wermuth,"8833, 13776",432,58,468,Parliament,"['21436172']",Parti socialiste suisse,none,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Amarelle Cesla,8834,432,58,468,Parliament,"['522653287']",Parti socialiste suisse,,,Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Christian Lohr,"13781, 8835",431,57,467,Parliament,"['327254073']",Parti démocrate-chrétien suisse,https://www.lohr.ch/,"['Conseil National']",Thurgovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Chantal Galladé,8836,432,58,468,Parliament,"['2613366038']",Parti socialiste suisse,,,Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Christine Häsler,8837,433,59,469,Parliament,"['816301993799155712']",Parti écologiste suisse,,,Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43110 +Christa Markwalder,"13778, 8838",429,55,465,Parliament,"['226922317']",PLR.Les Libéraux-Radicaux,https://www.christa-markwalder.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Christian Imark,"8839, 13779",430,56,466,Parliament,"['222903677']",Union Démocratique du Centre,https://www.christian-imark.ch,"['Conseil National']",Soleure,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Christian Levrat,"13780, 8840",432,58,468,Senate,"['40872955']",Parti socialiste suisse,https://www.levrat.ch,"['Conseil des Etats']",Fribourg,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43320 +Béglé Claude,"13786, 8841",431,57,467,Parliament,"['1940472746']",Parti démocrate-chrétien suisse,https://www.begle.ch,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Claudia Friedl,"9765, 8842, 13789","432, 479",58,"468, 514",Parliament,"['2696249536']","Parti socialiste suisse, Social Democratic Party","https://www.parlament.gv.at/WWER/PAD_02347/index.shtml, https://www.claudia-friedl.ch","['Conseil National']","St-Gall, B",1B Burgenland Süd,"https://www.parlament.ch/en/organe/national-council/members-national-council-a-z, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,"Switzerland, Austria","2, 23","6, 50, 37","43320, 42320" +Christian Lüscher,8843,429,55,465,Parliament,"['2912625905']",PLR.Les Libéraux-Radicaux,,,Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43420 +Christian Wasserfallen,"8844, 13783",429,55,465,Parliament,"['50444931']",PLR.Les Libéraux-Radicaux,https://www.wasserfallen.news,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Damian Müller,"8845, 13793",429,55,465,Senate,"['603431624']",PLR.Les Libéraux-Radicaux,https://www.damian-mueller.ch,"['Conseil des Etats']",Lucerne,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43420 +Daniel Jositsch,"13797, 8846",432,58,468,Senate,"['3246291543']",Parti socialiste suisse,https://www.jositsch.ch,"['Conseil des Etats']",Zurich,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43320 +Buman De Dominique,"13803, 8847",431,57,467,Parliament,"['627501106']",Parti démocrate-chrétien suisse,https://www.debuman.ch,"['Conseil National']",Fribourg,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Doris Fiala,"8848, 13804",429,55,465,Parliament,"['3070292500']",PLR.Les Libéraux-Radicaux,https://www.fiala.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Erich Ettlin,"8849, 13809",431,57,467,Senate,"['2154083999']",Parti démocrate-chrétien suisse,https://www.erich-ettlin.ch,"['Conseil des Etats']",Obwald,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Elisabeth Schneider-Schneiter,"8850, 13807",431,57,467,Parliament,"['263582303']",Parti démocrate-chrétien suisse,https://www.elisabethschneider.ch,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Engler Stefan,"8851, 13954",431,57,467,Senate,"['3290133496']",Parti démocrate-chrétien suisse,https://www.stefanengler.ch,"['Conseil des Etats']",Grisons,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Eric Nussbaumer,"13808, 8852",432,58,468,Parliament,"['1052528581']",Parti socialiste suisse,https://eric-nussbaumer.ch,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Erich Hess,"8853, 13810",430,56,466,Parliament,"['62798697']",Union Démocratique du Centre,https://www.erichhess.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Allemann Evi,8854,432,58,468,Parliament,"['217706717']",Parti socialiste suisse,,,Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Derder Fathi,"8855, 13814",429,55,465,Parliament,"['619225869']",PLR.Les Libéraux-Radicaux,none,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Franz Grüter,"8856, 13818",430,56,466,Parliament,"['1140570679', '605639477']",Union Démocratique du Centre,https://www.franz-grueter.ch,"['Conseil National']",Lucerne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"50, 6",43810 +Borloz Frédéric,"13820, 8857",429,55,465,Parliament,"['373194785']",PLR.Les Libéraux-Radicaux,https://www.fredericborloz.ch/,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Fabio Regazzi,"13813, 8858",431,57,467,Parliament,"['991720068']",Parti démocrate-chrétien suisse,https://www.fabioregazzi.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Fricker Jonas,8859,433,59,469,Parliament,"['182760916']",Parti écologiste suisse,,,Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43110 +Gerhard Pfister,"13823, 8860",431,57,467,Parliament,"['3291242279']",Parti démocrate-chrétien suisse,https://www.gpfister.ch,"['Conseil National']",Zoug,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Géraldine Marchand-Balet,"13821, 8861",431,57,467,Parliament,"['2449367689']",Parti démocrate-chrétien suisse,none,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Graber Konrad,"13863, 8862",431,57,467,Senate,"['617269323']",Parti démocrate-chrétien suisse,https://www.konradgraber.ch,"['Conseil des Etats']",Lucerne,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Hansjörg Knecht,"13837, 8863",430,56,466,Parliament,"['2982472295']",Union Démocratique du Centre,https://www.hansjoerg-knecht.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Hans-Ueli Vogt,"13834, 8864",430,56,466,Parliament,"['3063932104']",Union Démocratique du Centre,https://www.hansuelivogt.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Hiltpold Hugues,"13840, 8865",429,55,465,Parliament,"['35465127']",PLR.Les Libéraux-Radicaux,https://www.hugues-hiltpold.ch,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Hans-Peter Portmann,"8866, 13833",429,55,465,Parliament,"['109517535']",PLR.Les Libéraux-Radicaux,https://www.hanspeter-portmann.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Bigler Hans-Ulrich,"8867, 13835",429,55,465,Parliament,"['3329760406']",PLR.Les Libéraux-Radicaux,https://www.hansulrich-bigler.ch/,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Chevalley Isabelle,"8868, 13844",440,61,479,Parliament,"['149008275']",Parti vert'libéral,https://www.isabellechevalley.ch,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43120 +Glanzmann-Hunkeler Ida,"8869, 13841",431,57,467,Parliament,"['444935177']",Parti démocrate-chrétien suisse,https://www.ida-glanzmann.ch,"['Conseil National']",Lucerne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Cassis Ignazio,"8870, 13842",429,55,465,"Parliament, Executive council","['270609583']",PLR.Les Libéraux-Radicaux,https://www.dfae.admin.ch,"['Conseil Fédéral']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Isabelle Moret,"8871, 13845",429,55,465,Parliament,"['155823857']",PLR.Les Libéraux-Radicaux,https://isabelle-moret.ch,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Jauslin Matthias Samuel,"13896, 8872",429,55,465,Parliament,"['716002872']",PLR.Les Libéraux-Radicaux,https://www.matthias-jauslin.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Badran Jacqueline,"13847, 8873",432,58,468,Parliament,"['50047040']",Parti socialiste suisse,https://www.badran.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Christophe Jean Schwaab,8874,432,58,468,Parliament,"['244437560']",Parti socialiste suisse,,,Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Jean-François Rime,"8875, 13851",430,56,466,Parliament,"['1626089100']",Union Démocratique du Centre,none,"['Conseil National']",Fribourg,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Grossen Jürg,"8877, 13858",440,61,479,Parliament,"['463149099']",Parti vert'libéral,https://www.juerg-grossen.ch/,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43120 +Bertschy Kathrin,"8878, 13861",440,61,479,Parliament,"['2913929512']",Parti vert'libéral,none,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43120 +Kathy Riklin,"13862, 8879",431,57,467,Parliament,"['93878848']",Parti démocrate-chrétien suisse,https://www.kathyriklin.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Landolt Martin,"13889, 8880",434,60,470,Parliament,"['761741430']",Parti bourgeois-démocratique suisse,https://www.landolt.info,"['Conseil National']",Glaris,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43811 +Laurent Wehrli,"13866, 8881",429,55,465,Parliament,"['3301771943']",PLR.Les Libéraux-Radicaux,https://www.laurentwehrli.com,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Filippo Lombardi,"13816, 8882",431,57,467,Senate,"['804958800']",Parti démocrate-chrétien suisse,https://www.filippolombardi.ch,"['Conseil des Etats']",Tessin,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Hess Lorenz,"8883, 13870",434,60,470,Parliament,"['1543019749']",Parti bourgeois-démocratique suisse,none,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43811 +Lorenzo Quadri,"8884, 13871",441,56,466,Parliament,"['323132835']",Lega dei Ticinesi,https://www.lorenzoquadri.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43901 +Lukas Reimann,"13872, 8885",430,56,466,Parliament,"['26531313']",Union Démocratique du Centre,https://www.lukas-reimann.ch,"['Conseil National']",St-Gall,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Luzi Stamm,"13873, 8886",430,56,466,Parliament,"['350243582']",Union Démocratique du Centre,https://www.luzi-stamm.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Aebischer Matthias,"8887, 13895",432,58,468,Parliament,"['280789941']",Parti socialiste suisse,https://www.matthiasaebischer.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Ingold Maja,8888,442,57,467,Parliament,"['2341633765']",Parti évangélique suisse,,,Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43530 +Manuel Tornare,"13876, 8889",432,58,468,Parliament,"['485885985']",Parti socialiste suisse,https://www.manuel-tornare.ch,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Dobler Marcel,"13878, 8890",429,55,465,Parliament,"['2882434546']",PLR.Les Libéraux-Radicaux,https://www.dobler.swiss,"['Conseil National']",St-Gall,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Chiesa Marco,"8891, 13879",430,56,466,Parliament,"['289393019']",Union Démocratique du Centre,https://www.marcochiesa.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Marco Romano,"8892, 13880",431,57,467,Parliament,"['50262858']",Parti démocrate-chrétien suisse,https://www.marcoromano.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Kiener Margret Nellen,"13881, 8893",432,58,468,Parliament,"['3208154031']",Parti socialiste suisse,https://www.kienernellen.ch/,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Marianne Streiff-Feller,"8894, 13882",442,57,467,Parliament,"['2226700633']",Parti évangélique suisse,https://www.marianne-streiff.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43530 +Bäumle Martin,"13886, 8895",440,61,479,Parliament,"['3221526790']",Parti vert'libéral,none,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43120 +Candinas Martin,"8896, 13887",431,57,467,Parliament,"['706788594954981376']",Parti démocrate-chrétien suisse,https://www.martincandinas.ch,"['Conseil National']",Grisons,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Martina Munz,"8897, 13892",432,58,468,Parliament,"['780565772']",Parti socialiste suisse,https://www.martinamunz.ch,"['Conseil National']",Schaffhouse,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Mathias Reynard,"8898, 13893",432,58,468,Parliament,"['406232148']",Parti socialiste suisse,https://mathiasreynard.ch,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Maximilian Reimann,"8899, 13898",430,56,466,Parliament,"['3064353419']",Union Démocratique du Centre,https://www.maximilian-reimann.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Mattea Meyer,"8900, 13894",432,58,468,Parliament,"['2881577681']",Parti socialiste suisse,https://www.matteameyer.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Buffat Michaël,"8901, 13900",430,56,466,Parliament,"['724584142344695808']",Union Démocratique du Centre,none,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Li Marti Min,"13903, 8902",432,58,468,Parliament,"['107053461']",Parti socialiste suisse,https://minli-marti.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Müller-Altermatt Stefan,"13955, 8903",431,57,467,Parliament,"['458597614']",Parti démocrate-chrétien suisse,https://www.mueller-altermatt.ch,"['Conseil National']",Soleure,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Nantermod Philippe,"8904, 13923",429,55,465,Parliament,"['20442734']",PLR.Les Libéraux-Radicaux,https://www.nantermod2019.ch,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Natalie Rickli,8905,430,56,466,Parliament,"['190944081']",Union Démocratique du Centre,,,Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43810 +Masshardt Nadine,"8906, 13904",432,58,468,Parliament,"['1228066279']",Parti socialiste suisse,https://www.nadinemasshardt.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Nordmann Roger,"13940, 8907",432,58,468,Parliament,"['778644518']",Parti socialiste suisse,https://www.roger-nordmann.ch,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Graf Maya,"8908, 13899",433,59,469,Parliament,"['3374457514']",Parti écologiste suisse,https://www.mayagraf.ch,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43110 +Thurnherr Walter,8909,431,,464,Special,"['3064373091']",Parti démocrate-chrétien suisse,,,Argovie,,,,Switzerland,23,6,43520 +Français Olivier,"8910, 13910",429,55,465,Senate,"['3428301377']",PLR.Les Libéraux-Radicaux,https://www.olivier-francais.ch,"['Conseil des Etats']",Vaud,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43420 +Paul Rechsteiner,"13912, 8911",432,58,468,Senate,"['529478391']",Parti socialiste suisse,https://paulrechsteiner.ch,"['Conseil des Etats']",St-Gall,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43320 +Gössi Petra,"13917, 8912",429,55,465,Parliament,"['365423665']",PLR.Les Libéraux-Radicaux,https://www.petragoessi.ch,"['Conseil National']",Schwyz,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Hadorn Philipp,"8913, 13918",432,58,468,Parliament,"['75777484']",Parti socialiste suisse,https://www.philipp-hadorn.ch,"['Conseil National']",Soleure,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Bischof Pirmin,"13926, 8914",431,57,467,Senate,"['196646702']",Parti démocrate-chrétien suisse,https://www.pirmin-bischof.ch,"['Conseil des Etats']",Soleure,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Quadranti Rosmarie,"8915, 13943",434,60,470,Parliament,"['3130690545']",Parti bourgeois-démocratique suisse,https://www.rosmarie-quadranti.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43811 +Comte Raphaël,"13930, 8916",429,55,465,Senate,"['3295223895']",PLR.Les Libéraux-Radicaux,none,"['Conseil des Etats']",Neuchâtel,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43420 +Ana Rebecca Ruiz,8917,432,58,468,Parliament,"['938685108']",Parti socialiste suisse,,,Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Regula Rytz,"8918, 13933",433,59,469,Parliament,"['1530247224']",Parti écologiste suisse,https://www.regularytz.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43110 +Beat Rieder,"13764, 8919",431,57,467,Senate,"['2832533567']",Parti démocrate-chrétien suisse,none,"['Conseil des Etats']",Valais,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43520 +Cramer Robert,"8920, 13934",433,59,469,Senate,"['2536784770']",Parti écologiste suisse,none,"['Conseil des Etats']",Genève,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43110 +Roberto Schmidt,8921,431,57,467,Parliament,"['3328906187']",Parti démocrate-chrétien suisse,,,Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43520 +Pantani Roberta,"8922, 13935",441,56,466,Parliament,"['350198606']",Lega dei Ticinesi,https://www.robertapantani.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43901 +Köppel Roger,"13939, 8923",430,56,466,Parliament,"['873945156']",Union Démocratique du Centre,https://www.weltwoche.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Noser Ruedi,"8924, 13944",429,55,465,Senate,"['304379532']",PLR.Les Libéraux-Radicaux,https://www.ruedinoser.ch,"['Conseil des Etats']",Zurich,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43420 +Humbel Ruth,"13945, 8925",431,57,467,Parliament,"['2860664668']",Parti démocrate-chrétien suisse,https://www.ruthhumbel.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Sandra Sollberger,"8926, 13948",430,56,466,Parliament,"['556256043']",Union Démocratique du Centre,https://www.sandrasollberger.ch,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Schenker Silvia,"13952, 8927",432,58,468,Parliament,"['303319566']",Parti socialiste suisse,https://silviaschenker.ch,"['Conseil National']",Bâle-Ville,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Barbara Schmid-Federer,8928,431,57,467,Parliament,"['45513818']",Parti démocrate-chrétien suisse,,,Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43520 +Daniela Schneeberger,"13798, 8929",429,55,465,Parliament,"['4702673004']",PLR.Les Libéraux-Radicaux,https://www.danielaschneeberger.ch,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Graf Priska Seiler,"8930, 13929",432,58,468,Parliament,"['743779500341792768']",Parti socialiste suisse,https://www.priskaseilergraf.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Arslan Sibel,"13950, 8931",444,59,469,Parliament,"['3257088023']",Basels starke Alternative,none,"['Conseil National']",Bâle-Ville,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",0 +Leutenegger Oberholzer Susanne,8932,432,58,468,Parliament,"['332184640']",Parti socialiste suisse,,,Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Brunner Toni,8933,430,56,466,Parliament,"['61431883']",Union Démocratique du Centre,,,St-Gall,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43810 +Ammann Thomas,"13960, 8934",431,57,467,Parliament,"['3302607988']",Parti démocrate-chrétien suisse,https://www.th-ammann.ch,"['Conseil National']",St-Gall,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Hardegger Thomas,"13964, 8935",432,58,468,Parliament,"['2948791281']",Parti socialiste suisse,https://www.hardegger.site,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Burkart Thierry,"8936, 13958",429,55,465,Parliament,"['3240586961']",PLR.Les Libéraux-Radicaux,https://www.thierry-burkart.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43420 +Aeschi Thomas,"8937, 13959",430,56,466,Parliament,"['731908201592045568']",Union Démocratique du Centre,https://www.aeschi.com,"['Conseil National']",Zoug,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Burgherr Thomas,"8938, 13961",430,56,466,Parliament,"['353662120']",Union Démocratique du Centre,https://thomasburgherr.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Angelina Moser Tiana,"8939, 13971",440,61,479,Parliament,"['906476588983824386', '906476588983824384']",Parti vert'libéral,https://www.tianamoser.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"50, 6",43120 +Guldimann Tim,8940,432,58,468,Parliament,"['2841156604']",Parti socialiste suisse,,,Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43320 +Addor Jean-Luc,"13852, 8941",430,56,466,Parliament,"['256863130']",Union Démocratique du Centre,https://www.jladdor.ch,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Giezendanner Ulrich,"13973, 8942",430,56,466,Parliament,"['546752881']",Union Démocratique du Centre,https://www.giezendanner-rothrist.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Carrard Piller Valérie,"13975, 8943",432,58,468,Parliament,"['621159422']",Parti socialiste suisse,none,"['Conseil National']",Fribourg,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Herzog Verena,"8944, 13976",430,56,466,Parliament,"['1307125520']",Union Démocratique du Centre,https://www.verena-herzog.ch,"['Conseil National']",Thurgovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Amherd Viola,"13977, 8945",431,57,467,"Parliament, Executive council","['72560162']",Parti démocrate-chrétien suisse,https://www.vbs.admin.ch/,"['Conseil Fédéral']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43520 +Liliane Maury Pasquier,"13868, 8946",432,58,468,Senate,"['379014467']",Parti socialiste suisse,https://www.votrevoix.ch,"['Conseil des Etats']",Genève,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43320 +Hösli Werner,"13980, 8947",430,56,466,Senate,"['2431017296']",Union Démocratique du Centre,none,"['Conseil des Etats']",Glaris,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43810 +Salzmann Werner,"8948, 13982",430,56,466,Parliament,"['3133285757']",Union Démocratique du Centre,https://www.werner-salzmann.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Buttet Yannick,8949,431,57,467,Parliament,"['271068328']",Parti démocrate-chrétien suisse,,,Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,6,43520 +Feri Yvonne,"13985, 8950",432,58,468,Parliament,"['227087638']",Parti socialiste suisse,https://www.yvonneferi.ch,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43320 +Nidegger Yves,"13983, 8951",430,56,466,Parliament,"['2991955251']",Union Démocratique du Centre,https://www.facebook.com/yves.nidegger,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Estermann Yvette,"8952, 13984",430,56,466,Parliament,"['1017350089']",Union Démocratique du Centre,https://estermann-aktuell.ch,"['Conseil National']",Lucerne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Claudio Zanetti,"13790, 8953",430,56,466,Parliament,"['121068845']",Union Démocratique du Centre,https://www.zanetti.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,"6, 50",43810 +Roberto Zanetti,"13936, 8954",432,58,468,Senate,"['84155033']",Parti socialiste suisse,https://www.robertozanetti.ch,"['Conseil des Etats']",Soleure,,"https://www.parlament.ch/en/organe/council-of-states/members-council-of-state-a-z, https://www.parlament.ch/en/organe/national-council/members-national-council-a-z",,Switzerland,23,"6, 50",43320 +Adam Vaughan,"13988, 8955",445,,483,Parliament,"['2194707954']",Liberal,https://www.adamvaughan.ca,,Ontario,Spadina-Fort York,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Ahmed Hussen,"13989, 8956",445,,483,Parliament,"['2891740872']",Liberal,https://ahussen.liberal.ca/,,Ontario,York South-Weston,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Alain Rayes,"8957, 13990",446,,483,Parliament,"['414218319']",Conservative,https://www.alainrayes.ca,,Quebec,Richmond-Arthabaska,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Alaina Lockhart,8958,445,,483,Parliament,"['2410630211']",Liberal,,,New Brunswick,Fundy Royal,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Alexander Nuttall,8959,446,,483,Parliament,"['114358452']",Conservative,,,Ontario,Barrie-Springwater-Oro-Medonte,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Alexandra Mendès,"13993, 8960",445,,483,Parliament,"['249221867']",Liberal,https://alexandramendes.liberal.ca,,Quebec,Brossard-Saint-Lambert,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Alexandre Boulerice,"13994, 8961",447,,483,Parliament,"['196717787']",NDP,https://boulerice.org,,Quebec,Rosemont-La Petite-Patrie,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Ali Ehsassi,"13996, 8962",445,,483,Parliament,"['1895316878']",Liberal,https://www.aliehsassi.ca,,Ontario,Willowdale,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Alice Wong,"8963, 13997",446,,483,Parliament,"['271343342']",Conservative,https://disabilityvisibilityproject.com,,British Columbia,Richmond Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Alistair Macgregor,"8964, 13998",447,,483,Parliament,"['256069692']",NDP,https://www.AlistairMacGregor.ndp.ca,,British Columbia,Cowichan-Malahat-Langford,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Alupa Clarke,8965,446,,483,Parliament,"['3341891907']",Conservative,,,Quebec,Beauport-Limoilou,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Amarjeet(Hon.) Sohi,8966,445,,483,Parliament,"['172407835']",Liberal,,,Alberta,Edmonton Mill Woods,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Andrew Leslie,8967,445,,483,Parliament,"['1665135241']",Liberal,,,Ontario,Orléans,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Andrew(Hon.) Scheer,"14000, 8968",446,,483,Parliament,"['256360738']",Conservative,https://andrewscheer.ca,,Saskatchewan,Regina-Qu'Appelle,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Andy Fillmore,"14001, 8969",445,,483,Parliament,"['158458133']",Liberal,https://andyfillmore.ca,,Nova Scotia,Halifax,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Angelo Iacono,"8970, 14002",445,,483,Parliament,"['102563403']",Liberal,https://angeloiacono.ca,,Quebec,Alfred-Pellan,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Anita Vandenbeld,"8971, 14004",445,,483,Parliament,"['43510607']",Liberal,none,,Ontario,Ottawa West-Nepean,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Anju Dhillon,"14005, 8972",445,,483,Parliament,"['2874772780']",Liberal,https://www.anjudhillon.com,,Quebec,Dorval-Lachine-LaSalle,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Anne Minh-Thu Quach,8973,447,,483,Parliament,"['327038655']",NDP,,,Quebec,Salaberry-Suroît,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Anthony Housefather,"14007, 8974",445,,483,Parliament,"['1646334073']",Liberal,none,,Quebec,Mount Royal,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Anthony Rota,"14008, 8975",445,,483,Parliament,"['170377354']",Liberal,https://anthonyrota.ca,,Ontario,Nipissing-Timiskaming,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Arif Virani,"8976, 14009",445,,483,Parliament,"['524557553']",Liberal,https://avirani.liberal.ca,,Ontario,Parkdale-High Park,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Arnold Viersen,"8977, 14010",446,,483,Parliament,"['3375064758']",Conservative,https://www.mparnold.ca,,Alberta,Peace River-Westlock,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Ben Lobb,"8978, 14012",446,,483,Parliament,"['1851503720']",Conservative,https://www.benlobb.com,,Ontario,Huron-Bruce,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Bernadette Jordan,"8979, 14013",445,,483,Parliament,"['2729561810']",Liberal,https://www.bernadettejordan.ca,,Nova Scotia,South Shore-St. Margarets,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bernard Généreux,"14014, 8980",446,,483,Parliament,"['3136229996']",Conservative,https://www.bernardgenereux.ca,,Quebec,Montmagny-L'Islet-Kamouraska-Rivière-du-Loup,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Bev Shipley,8981,446,,483,Parliament,"['271505228']",Conservative,,,Ontario,Lambton-Kent-Middlesex,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Bill Blair,"14015, 8982",445,,483,Parliament,"['3196494064']",Liberal,https://bblair.liberal.ca/,,Ontario,Scarborough Southwest,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bill Casey,8983,445,,483,Parliament,"['2875223338']",Liberal,,,Nova Scotia,Cumberland-Colchester,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Bill Morneau,"8984, 14016",445,,483,Parliament,"['2155691491']",Liberal,https://bmorneau.liberal.ca,,Ontario,Toronto Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Blaine Calkins,"8985, 14017",446,,483,Parliament,"['156288226']",Conservative,https://www.blainecalkinsmp.ca,,Alberta,Red Deer-Lacombe,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Blake Richards,"14018, 8986",446,,483,Parliament,"['24171225']",Conservative,https://www.VoteRichards.ca,,Alberta,Banff-Airdrie,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Benzen Bob,"14019, 8987",446,,483,Parliament,"['737359208945844224']",Conservative,https://www.BobBenzenMP.ca,,Alberta,Calgary Heritage,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Bob Bratina,"14020, 8988",445,,483,Parliament,"['2982975394']",Liberal,https://bobbratina.liberal.ca/,,Ontario,Hamilton East-Stoney Creek,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bob Saroya,"14021, 8989",446,,483,Parliament,"['1872440785']",Conservative,https://www.bobsaroya.ca,,Ontario,Markham-Unionville,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Bob Zimmer,"14022, 8990",446,,483,Parliament,"['176207343']",Conservative,https://www.bobzimmer.ca,,British Columbia,Prince George-Peace River-Northern Rockies,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Borys Wrzesnewskyj,8991,445,,483,Parliament,"['2906429466']",Liberal,,,Ontario,Etobicoke Centre,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Brad Trost,8992,446,,483,Parliament,"['275821378']",Conservative,,,Saskatchewan,Saskatoon-University,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Brenda Shanahan,"14025, 8993",445,,483,Parliament,"['118121295']",Liberal,https://www.facebook.com/BrendaShanahan2015,,Quebec,Châteauguay-Lacolle,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Brian Masse,"14026, 8994",447,,483,Parliament,"['19750015']",NDP,https://action2.ndp.ca/page/contribute/35117-EN?fbclid=IwAR2KfkStVQNmR4H_80U2unVcmPbF7lEvxF2LWx5KXPu,,Ontario,Windsor West,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Brigitte Sansoucy,8995,447,,483,Parliament,"['3289048493']",NDP,,,Quebec,Saint-Hyacinthe-Bagot,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Bruce Stanton,"8996, 14027",446,,483,Parliament,"['272183541']",Conservative,none,,Ontario,Simcoe North,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Bryan May,"8997, 14028",445,,483,Parliament,"['52080359']",Liberal,https://bryanmaymp.ca,,Ontario,Cambridge,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bergen Candice(Hon.),"14029, 8998",446,,483,Parliament,"['833988769']",Conservative,https://candicebergen.ca,,Manitoba,Portage-Lisgar,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Carla(Hon.) Qualtrough,"8999, 14030",445,,483,Parliament,"['2852899113']",Liberal,https://cqualtrough.liberal.ca,,British Columbia,Delta,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Carol Hughes,"9000, 14031",447,,483,Parliament,"['60916234']",NDP,https://carolhughes.ndp.ca,,Ontario,Algoma-Manitoulin-Kapuskasing,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Bennett Carolyn(Hon.),"9001, 14033",445,,483,Parliament,"['40550119']",Liberal,https://carolynbennett.ca,,Ontario,Toronto-St. Paul's,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Cathay Wagantall,"14034, 9002",446,,483,Parliament,"['1626700808']",Conservative,https://www.cathaywagantall.ca,,Saskatchewan,Yorkton-Melville,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Catherine(Hon.) Mckenna,"9003, 14035",445,,483,Parliament,"['140252240']",Liberal,https://facebook.com/McKenna.Ottawa/,,Ontario,Ottawa Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Cathy Mcleod,"9004, 14036",446,,483,Parliament,"['68995519']",Conservative,https://www.cathymcleod.ca,,British Columbia,Kamloops-Thompson-Cariboo,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Caesar-Chavannes Celina,9005,445,,483,Parliament,"['2467006676']",Liberal,,,Ontario,Whitby,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Arya Chandra,"14037, 9006",445,,483,Parliament,"['2327530022']",Liberal,https://www.ChandraArya.ca,,Ontario,Nepean,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Angus Charlie,"14038, 9007",447,,483,Parliament,"['215632349']",NDP,https://www.charlieangus.ca,,Ontario,Timmins-James Bay,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Cheryl Gallant,"9008, 14039",446,,483,Parliament,"['43545966']",Conservative,https://www.cherylgallant.com,,Ontario,Renfrew-Nipissing-Pembroke,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Cheryl Hardcastle,9009,447,,483,Parliament,"['3308492974']",NDP,,,Ontario,Windsor-Tecumseh,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Bittle Chris,"9010, 14040",445,,483,Parliament,"['417389780']",Liberal,https://www.chrisbittleMP.ca,,Ontario,St. Catharines,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Chris Warkentin,"14043, 9011",446,,483,Parliament,"['45923631']",Conservative,https://www.chriswarkentin.ca/,,Alberta,Grande Prairie-Mackenzie,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Christine Moore,9012,447,,483,Parliament,"['620605132']",NDP,,,Quebec,Abitibi-Témiscamingue,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Chrystia(Hon.) Freeland,"14045, 9013",445,,483,Parliament,"['203132018']",Liberal,https://www.chrystiafreeland.ca,,Ontario,University-Rosedale,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Colin Fraser,9014,445,,483,Parliament,"['2756110901']",Liberal,,,Nova Scotia,West Nova,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Albas Dan,"14051, 9015",446,,483,Parliament,"['16278177']",Conservative,https://www.DanAlbas.ca,,British Columbia,Central Okanagan-Similkameen-Nicola,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Kim Rudd,9016,445,,483,Parliament,"['55468747']",Liberal,,,Ontario,Northumberland-Peterborough South,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Dan Ruimy,9017,445,,483,Parliament,"['3317233394']",Liberal,,,British Columbia,Pitt Meadows-Maple Ridge,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Dan Vandal,"9018, 14053",445,,483,Parliament,"['234550882']",Liberal,https://danvandal.ca,,Manitoba,Saint Boniface-Saint Vital,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Dane Lloyd,"14054, 9019",446,,483,Parliament,"['24558868']",Conservative,https://Danelloyd.ca,,Alberta,Sturgeon River-Parkland,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Blaikie Daniel,"9020, 14055",447,,483,Parliament,"['2612658385']",NDP,none,,Manitoba,Elmwood-Transcona,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Darrell Samson,"9021, 14056",445,,483,Parliament,"['2789770741']",Liberal,https://darrellsamson.liberal.ca/,,Nova Scotia,Sackville-Preston-Chezzetcook,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Darren Fisher,"9022, 14057",445,,483,Parliament,"['408072407']",Liberal,https://www.darrenfisher.ca,,Nova Scotia,Dartmouth-Cole Harbour,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Darshan Kang Singh,9023,448,,483,Parliament,"['41398327']",Independent,,,Alberta,Calgary Skyview,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34, +Dave Mackenzie,"9024, 14059",446,,483,Parliament,"['897770628']",Conservative,https://www.davemackenzie.ca,,Ontario,Oxford,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Dave Kesteren Van,9025,446,,483,Parliament,"['2726686742']",Conservative,,,Ontario,Chatham-Kent-Leamington,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Christopherson David,9026,447,,483,Parliament,"['3092256856']",NDP,,,Ontario,Hamilton Centre,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Burgh David De Graham,9027,445,,483,Parliament,"['95498557']",Liberal,,,Quebec,Laurentides-Labelle,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +David Lametti,"9028, 14060",445,,483,Parliament,"['1360838234']",Liberal,https://dlametti.liberal.ca/,,Quebec,LaSalle-Émard-Verdun,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +David Mcguinty,"14061, 9029",445,,483,Parliament,"['272903688']",Liberal,https://www.davidmcguinty.ca,,Ontario,Ottawa South,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +David Sweet,"14062, 9030",446,,483,Parliament,"['68452445']",Conservative,https://www.DavidSweet.ca,,Ontario,Flamborough-Glanbrook,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +David Tilson,9031,446,,483,Parliament,"['76233932']",Conservative,,,Ontario,Dufferin-Caledon,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +David Yurdiga,"14063, 9032",446,,483,Parliament,"['2285856702']",Conservative,https://davidyurdiga.ca/,,Alberta,Fort McMurray-Cold Lake,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Deborah Schulte,"9033, 14065",445,,483,Parliament,"['477327043']",Liberal,https://www.debschulte.ca,,Ontario,King-Vaughan,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Denis Paradis,9034,445,,483,Parliament,"['968180693854507008']",Liberal,,,Quebec,Brome-Missisquoi,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Diane(Hon.) Lebouthillier,"14069, 9036",445,,483,Parliament,"['3142614406']",Liberal,https://www.parl.gc.ca/Parliamentarians/fr/members/Diane-Lebouthillier(88460),,Quebec,Gaspésie-Les Îles-de-la-Madeleine,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Dominic(Hon.) Leblanc,"9037, 14070",445,,483,Parliament,"['720579941184757760']",Liberal,https://dleblanc.liberal.ca/,,New Brunswick,Beauséjour,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Davies Don,"9038, 14071",447,,483,Parliament,"['16189107']",NDP,https://www.dondavies.org,,British Columbia,Vancouver Kingsway,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Don Rusnak,9039,445,,483,Parliament,"['3256976143']",Liberal,,,Ontario,Thunder Bay-Rainy River,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Carrie Colin,"14048, 9040",446,,483,Parliament,"['63210367']",Conservative,https://colincarriemp.ca,,Ontario,Oshawa,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Doug Eyolfson,9041,445,,483,Parliament,"['3148572655']",Liberal,,,Manitoba,Charleswood-St. James-Assiniboia-Headingley,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Emmanuella Lambropoulos,"14078, 9042",445,,483,Parliament,"['274042977', '1126335697785425920']",Liberal,none,,Quebec,Saint-Laurent,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"51, 34",62420 +Dreeshen Earl,"14073, 9043",446,,483,Parliament,"['272617171']",Conservative,https://www.voteearldreeshen.ca,,Alberta,Red Deer-Mountain View,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +(Hon.) Ed Fast,"14074, 9044",446,,483,Parliament,"['2459904061']",Conservative,none,,British Columbia,Abbotsford,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Dubourg Emmanuel,"9045, 14077",445,,483,Parliament,"['1881004363']",Liberal,https://www.EmmanuelDubourg.ca,,Quebec,Bourassa,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Erin O'Toole,"14081, 9046",446,,483,Parliament,"['296553576']",Conservative,https://www.erinotoolemp.ca,,Ontario,Durham,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Erin Weir,9047,447,,483,Parliament,"['493148184']",NDP,,,Saskatchewan,Regina-Lewvan,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Eva Nassif,9048,445,,483,Parliament,"['175810297']",Liberal,,,Quebec,Vimy,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +El-Khoury Fayçal,"9049, 14082",445,,483,Parliament,"['3315017505']",Liberal,none,,Quebec,Laval-Les Îles,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Filomena Tassi,"9050, 14083",445,,483,Parliament,"['4026045455']",Liberal,https://filomenatassi.liberal.ca/,,Ontario,Hamilton West-Ancaster-Dundas,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Donnelly Fin,9051,447,,483,Parliament,"['54962166']",NDP,,,British Columbia,Port Moody-Coquitlam,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Francesco Sorbara,"9052, 14084",445,,483,Parliament,"['272185225']",Liberal,https://francescosorbara.liberal.ca/,,Ontario,Vaughan-Woodbridge,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Drouin Francis,"9053, 14085",445,,483,Parliament,"['743129088']",Liberal,https://www.parl.gc.ca/Parliamentarians/fr/members/Francis-Drouin(88756),,Ontario,Glengarry-Prescott-Russell,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Francis Scarpaleggia,"9054, 14086",445,,483,Parliament,"['200100603']",Liberal,https://www.scarpaleggia.ca,,Quebec,Lac-Saint-Louis,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Choquette François,9055,447,,483,Parliament,"['464871646']",NDP,,,Quebec,Drummond,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +(Hon.) Champagne François-Philippe,"9056, 14087",445,,483,Parliament,"['1707636642']",Liberal,https://francoisphilippechampagne.liberal.ca/,,Quebec,Saint-Maurice-Champlain,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Baylis Frank,9057,445,,483,Parliament,"['1514441148']",Liberal,,,Quebec,Pierrefonds-Dollard,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Gabriel Ste-Marie,"14088, 9058",449,,483,Parliament,"['3356795013']",Bloc Québécois,https://www.linkedin.com/in/gabrielstemarie/,,Quebec,Joliette,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Gagan Sikand,"9059, 14089",445,,483,Parliament,"['236395551']",Liberal,https://gagansikand.liberal.ca/,,Ontario,Mississauga-Streetsville,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Garnett Genuis,"14090, 9060",446,,483,Parliament,"['235122381']",Conservative,https://www.facebook.com/Garnett-Genuis-173928532656310/,,Alberta,Sherwood Park-Fort Saskatchewan,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Anandasangaree Gary,"14091, 9061",445,,483,Parliament,"['1899063048']",Liberal,none,,Ontario,Scarborough-Rouge Park,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Geng Tan,9062,445,,483,Parliament,"['2761458139']",Liberal,,,Ontario,Don Valley North,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Geoff Regan,"14093, 9063",445,,483,Parliament,"['76143039']",Liberal,https://www.geoffregan.ca,,Nova Scotia,Halifax West,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Georgina Jolibois,9064,447,,483,Parliament,"['3146571545']",NDP,,,Saskatchewan,Desnethé-Missinippi-Churchill River,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Deltell Gérard,"14095, 9065",446,,483,Parliament,"['36133644']",Conservative,https://www.facebook.com/deltell.gerard,,Quebec,Louis-Saint-Laurent,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Glen Motz,"9066, 14097",446,,483,Parliament,"['720083863830069249', '720083863830069248']",Conservative,https://www.glenmotzmp.com,,Alberta,Medicine Hat-Cardston-Warner,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"51, 34","51620, 62623" +Brown Gordon,9067,446,,483,Parliament,"['20390307']",Conservative,,,Ontario,Leeds-Grenville-Thousand Islands and Rideau Lakes,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Gord Johns,"14098, 9068",447,,483,Parliament,"['212484497']",NDP,https://www.reelectgord.ca,,British Columbia,Courtenay-Alberni,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Fergus Greg,"14099, 9069",445,,483,Parliament,"['45848808']",Liberal,https://gregfergus.ca,,Quebec,Hull-Aylmer,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Gudie Hutchings,"9070, 14101",445,,483,Parliament,"['21687438']",Liberal,https://ghutchings.liberal.ca/,,Newfoundland and Labrador,Long Range Mountains,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Caron Guy,9071,447,,483,Parliament,"['304991157']",NDP,,,Quebec,Rimouski-Neigette-Témiscouata-Les Basques,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Guy Lauzon,9072,446,,483,Parliament,"['700760409263857664']",Conservative,,,Ontario,Stormont-Dundas-South Glengarry,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Harjit S.(Hon.) Sajjan,"9073, 14103",445,,483,Parliament,"['413802355']",Liberal,https://hsajjan.liberal.ca/,,British Columbia,Vancouver South,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Albrecht Harold,9074,446,,483,Parliament,"['276234003']",Conservative,,,Ontario,Kitchener-Conestoga,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Hélène Laverdière,9075,447,,483,Parliament,"['270938299']",NDP,,,Quebec,Laurier-Sainte-Marie,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +(Hon.) Deepak Obhrai,9076,446,,483,Parliament,"['274328258']",Conservative,,,Alberta,Calgary Forest Lawn,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Maryann(Hon.) Mihychuk,9077,445,,483,Parliament,"['519995796']",Liberal,,,Manitoba,Kildonan-St. Paul,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Bardish Chagger,9078,445,,483,Parliament,"['1034621641886584832']",Liberal,,,Ontario,Waterloo,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Fry Hedy,"9079, 14105",445,,483,Parliament,"['25127782']",Liberal,https://hedyfry.com,,British Columbia,Vancouver Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Duncan Kirsty,"9080, 14155",445,,483,Parliament,"['271073165']",Liberal,https://kirstyduncan.liberal.ca,,Ontario,Etobicoke North,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bains Navdeep(Hon.),"14220, 9081",445,,483,Parliament,"['234395010']",Liberal,https://navdeepbains.ca,,Ontario,Mississauga-Malton,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Kent Peter,"14237, 9082",446,,483,Parliament,"['1449320024']",Conservative,https://peterkent.ca,,Ontario,Thornhill,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +(Hon.) Hunter Tootoo,9083,448,,483,Parliament,"['3396107086']",Independent,,,Nunavut,Nunavut,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34, +Iqra Khalid,"9084, 14107",445,,483,Parliament,"['58319221']",Liberal,https://iqrakhalid.liberal.ca/,,Ontario,Mississauga-Erin Mills,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Irene Mathyssen,9085,447,,483,Parliament,"['72663989']",NDP,,,Ontario,London-Fanshawe,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +James Maloney,"14116, 9087",445,,483,Parliament,"['32915303']",Liberal,none,,Ontario,Etobicoke-Lakeshore,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Jamie Schmale,"14117, 9088",446,,483,Parliament,"['256552850']",Conservative,https://www.jamieschmale.ca,,Ontario,Haliburton-Kawartha Lakes-Brock,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +(Hon.) Jane Philpott,9089,445,,483,Parliament,"['61638283']",Liberal,,,Ontario,Markham-Stouffville,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Jati Sidhu,9090,445,,483,Parliament,"['3286805210']",Liberal,,,British Columbia,Mission-Matsqui-Fraser Canyon,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Jean Rioux,9091,445,,483,Parliament,"['3351145157']",Liberal,,,Quebec,Saint-Jean,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Jean-Claude Poissant,9092,445,,483,Parliament,"['2827020955']",Liberal,,,Quebec,La Prairie,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Duclos Jean-Yves,"14120, 9093",445,,483,Parliament,"['2848993491']",Liberal,https://www.jeanyvesduclos.ca,,Quebec,Québec,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Jennifer O'Connell,"14122, 9094",445,,483,Parliament,"['2983179809']",Liberal,https://jenniferoconnell.liberal.ca,,Ontario,Pickering-Uxbridge,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Jenny Kwan,"9095, 14123",447,,483,Parliament,"['580114637']",NDP,https://jennykwan2019.ndp.ca/,,British Columbia,Vancouver East,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +(Hon.) Carr Jim,"14125, 9096",445,,483,Parliament,"['2322580746']",Liberal,https://www.jcarr.liberal.ca,,Manitoba,Winnipeg South Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Eglinski Jim,9097,446,,483,Parliament,"['2850279754']",Conservative,,,Alberta,Yellowhead,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +(Hon.) Jody Wilson-Raybould,"9098, 14126","448, 445",,483,Parliament,"['912988142']","Independent, Liberal",https://www.re-electjodywr.ca,,British Columbia,Vancouver Granville,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62420, 0" +Joe Peschisolido,9099,445,,483,Parliament,"['3448254521']",Liberal,,,British Columbia,Steveston-Richmond East,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Godin Joël,"14127, 9100",446,,483,Parliament,"['710180898763890688']",Conservative,none,,Quebec,Portneuf-Jacques-Cartier,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Joël Lightbound,"14128, 9101",445,,483,Parliament,"['210565134']",Liberal,https://www.lightbound.ca,,Quebec,Louis-Hébert,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Aldag John,9102,445,,483,Parliament,"['335769776']",Liberal,,,British Columbia,Cloverdale-Langley City,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Brassard John,"9103, 14130",446,,483,Parliament,"['38100599']",Conservative,https://www.johnbrassard.com,,Ontario,Barrie-Innisfil,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +(Hon.) John Mckay,"14131, 9104",445,,483,Parliament,"['245954929']",Liberal,https://www.jmckay.liberal.ca,,Ontario,Scarborough-Guildwood,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +John Nater,"9105, 14132",446,,483,Parliament,"['34606493']",Conservative,https://www.johnnater.ca,,Ontario,Perth-Wellington,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +John Oliver,9106,445,,483,Parliament,"['2590181821']",Liberal,,,Ontario,Oakville,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Barlow John,"14129, 9107",446,,483,Parliament,"['270570153']",Conservative,none,,Alberta,Foothills,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Jonathan Wilkinson,"9108, 14134",445,,483,Parliament,"['2579359027']",Liberal,https://jwilkinson.liberal.ca/,,British Columbia,North Vancouver,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Joyce Murray,"9109, 14135",445,,483,Parliament,"['16180205']",Liberal,https://joycemurray.ca/,,British Columbia,Vancouver Quadra,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) A. Judy Sgro,"9110, 14136",445,,483,Parliament,"['1390883714']",Liberal,https://jsgro.liberal.ca/,,Ontario,Humber River-Black Creek,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Dabrusin Julie,"14137, 9111",445,,483,Parliament,"['382949896']",Liberal,https://jdabrusin.liberal.ca,,Ontario,Toronto-Danforth,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Dzerowicz Julie,"14138, 9112",445,,483,Parliament,"['1942107584']",Liberal,https://jdzerowicz.liberal.ca/,,Ontario,Davenport,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Right Hon.) Justin Trudeau,"14140, 9113",445,,483,Parliament,"['14260960']",Liberal,https://pm.gc.ca/,,Quebec,Papineau,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Kamal Khera,"9114, 14141",445,,483,Parliament,"['232446981']",Liberal,none,,Ontario,Brampton West,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Karen Ludwig,9115,445,,483,Parliament,"['2843751570']",Liberal,,,New Brunswick,New Brunswick Southwest,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Karen Mccrimmon,"14142, 9116",445,,483,Parliament,"['192321697']",Liberal,https://KarenMcCrimmon.ca/,,Ontario,Kanata-Carleton,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Karen Vecchio,"14143, 9117",446,,483,Parliament,"['269930134']",Conservative,https://www.karenvecchiomp.ca,,Ontario,Elgin-Middlesex-London,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Gould Karina(Hon.),"14144, 9118",445,,483,Parliament,"['61521038']",Liberal,https://kgould.liberal.ca,,Ontario,Burlington,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Karine Trudel,9119,447,,483,Parliament,"['2630175615']",NDP,,,Quebec,Jonquière,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Kate Young,"9120, 14145",445,,483,Parliament,"['2763372632']",Liberal,https://kateyoung.liberal.ca,,Ontario,London West,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) K. Kellie Leitch,9121,446,,483,Parliament,"['1449023288']",Conservative,,,Ontario,Simcoe-Grey,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Kelly Mccauley,"14147, 9122",446,,483,Parliament,"['3314769865']",Conservative,https://www.kellymccauley.ca,,Alberta,Edmonton West,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Hardie Ken,"14148, 9123",445,,483,Parliament,"['3358671']",Liberal,https://kenhardie.liberal.ca,,British Columbia,Fleetwood-Port Kells,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Ken Mcdonald,"14149, 9124",445,,483,Parliament,"['3257047456']",Liberal,https://kmcdonald.liberal.ca,,Newfoundland and Labrador,Avalon,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bezan James,"9125, 14114",446,,483,Parliament,"['44718864']",Conservative,https://www.jamesbezan.com,,Manitoba,Selkirk-Interlake-Eastman,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Kennedy Stewart,9126,447,,483,Parliament,"['27823555']",NDP,,,British Columbia,Burnaby South,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +(Hon.) Hehr Kent,9127,445,,483,Parliament,"['18736221']",Liberal,,,Alberta,Calgary Centre,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Diotte Kerry,"14151, 9128",446,,483,Parliament,"['140960578']",Conservative,https://www.kerrydiotte.com,,Alberta,Edmonton Griesbach,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Kevin Lamoureux,"14153, 9129",445,,483,Parliament,"['208750527']",Liberal,https://kevin-lamoureux.liberal.ca/,,Manitoba,Winnipeg North,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Kevin(Hon.) Sorenson,9130,446,,483,Parliament,"['1872481212']",Conservative,,,Alberta,Battle River-Crowfoot,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Kevin Waugh,"14154, 9131",446,,483,Parliament,"['3320613061']",Conservative,https://www.kevinwaugh.ca,,Saskatchewan,Saskatoon-Grasswood,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Kyle Peterson,9132,445,,483,Parliament,"['37934391']",Liberal,,,Ontario,Newmarket-Aurora,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Bagnell Larry,"9133, 14159",445,,483,Parliament,"['126233342']",Liberal,https://lbagnell.liberal.ca/,,Yukon,Yukon,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Larry Maguire,"9134, 14160",446,,483,Parliament,"['1686740173']",Conservative,https://www.larrymaguire.ca,,Manitoba,Brandon-Souris,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Larry Miller,9135,446,,483,Parliament,"['2516160571']",Conservative,,,Ontario,Bruce-Grey-Owen Sound,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Lawrence(Hon.) Macaulay,"14162, 9136",445,,483,Parliament,"['493488747']",Liberal,https://lmacaulay.liberal.ca/,,Prince Edward Island,Cardigan,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Len Webber,"14164, 9137",446,,483,Parliament,"['2295209034']",Conservative,https://lenwebber.ca,,Alberta,Calgary Confederation,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Alleslev Leona,"9138, 14166","446, 445",,483,Parliament,"['2445479707']","Liberal, Conservative",https://leonaalleslevmp.ca/,,Ontario,Aurora-Oak Ridges-Richmond Hill,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62420, 51620" +Duncan Linda,9139,447,,483,Parliament,"['62909691']",NDP,,,Alberta,Edmonton Strathcona,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Lapointe Linda,9140,445,,483,Parliament,"['399727491']",Liberal,,,Quebec,Rivière-des-Mille-Îles,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Lisa Raitt,9141,446,,483,Parliament,"['55687338']",Conservative,,,Ontario,Milton,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Lloyd Longfield,"9142, 14169",445,,483,Parliament,"['579377522']",Liberal,https://MPLongfield.ca,,Ontario,Guelph,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Berthold Luc,"14173, 9143",446,,483,Parliament,"['268832287']",Conservative,none,,Quebec,Mégantic-L'Érable,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Luc Thériault,"14175, 9144",449,,483,Parliament,"['439064573']",Bloc Québécois,https://luctheriault.quebec,,Quebec,Montcalm,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Jowhari Majid,"9145, 14177",445,,483,Parliament,"['2229187188']",Liberal,https://mpjowhari.ca,,Ontario,Richmond Hill,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Garneau Marc(Hon.),"14180, 9146",445,,483,Parliament,"['80702644']",Liberal,https://www.marcgarneau.ca,,Quebec,Notre-Dame-de-Grâce-Westmount,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Marc Miller,"9147, 14181",445,,483,Parliament,"['1882871270']",Liberal,none,,Quebec,Ville-Marie-Le Sud-Ouest-Île-des-Soeurs,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Marc Serré,"14182, 9148",445,,483,Parliament,"['159655782']",Liberal,https://mserre.liberal.ca/,,Ontario,Nickel Belt,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Marco Mendicino,"9149, 14183",445,,483,Parliament,"['312759403']",Liberal,https://www.marcomendicinomp.ca,,Ontario,Eglinton-Lawrence,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Bibeau Marie-Claude(Hon.),"14185, 9150",445,,483,Parliament,"['911471588']",Liberal,https://mcbibeau.liberal.ca/en/,,Quebec,Compton-Stanstead,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Gill Marilène,"9151, 14188",449,,483,Parliament,"['3402128080']",Bloc Québécois,https://www.facebook.com/marilenegill.blocquebecois/?fref=ts,,Quebec,Manicouagan,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Gladu Marilyn,"9152, 14189",446,,483,Parliament,"['791282631006621696']",Conservative,https://www.marilyngladu.com,,Ontario,Sarnia-Lambton,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Beaulieu Mario,"9153, 14190",449,,483,Parliament,"['161748431']",Bloc Québécois,https://www.blocquebecois.org,,Quebec,La Pointe-de-l'Île,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Boutin-Sweet Marjolaine,9154,447,,483,Parliament,"['286229457']",NDP,,,Quebec,Hochelaga,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +(Hon.) Eyking Mark,9155,445,,483,Parliament,"['378207083']",Liberal,,,Nova Scotia,Sydney-Victoria,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Gerretsen Mark,"9156, 14192",445,,483,Parliament,"['157152601']",Liberal,https://www.mgerretsen.liberal.ca,,Ontario,Kingston and the Islands,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Holland Mark,"14193, 9157",445,,483,Parliament,"['85428184']",Liberal,https://www.MarkHollandMP.ca,,Ontario,Ajax,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Mark Strahl,"14194, 9158",446,,483,Parliament,"['274831602']",Conservative,https://www.markstrahl.com,,British Columbia,Chilliwack-Hope,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Mark Warawa,9159,446,,483,Parliament,"['99334624']",Conservative,,,British Columbia,Langley-Aldergrove,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Martin Shields,"9160, 14196",446,,483,Parliament,"['3115495914']",Conservative,https://www.votemartinshields.com,,Alberta,Bow River,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Marwan Tabbara,"14198, 9161",445,,483,Parliament,"['3398024471']",Liberal,https://www.marwantabbaramp.ca,,Ontario,Kitchener South-Hespeler,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Mary Ng,"14199, 9162",445,,483,Parliament,"['29754743']",Liberal,https://www.maryng.liberal.ca,,Ontario,Markham-Thornhill,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Maryam(Hon.) Monsef,"14200, 9163",445,,483,Parliament,"['494668818']",Liberal,https://Maryammonsef.ca,,Ontario,Peterborough-Kawartha,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Decourcey Matt,9164,445,,483,Parliament,"['37098566']",Liberal,,,New Brunswick,Fredericton,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Jeneroux Matt,"14201, 9165",446,,483,Parliament,"['15810950']",Conservative,https://www.mattjeneroux.ca,,Alberta,Edmonton Riverbend,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Dubé Matthew,9166,447,,483,Parliament,"['288970758']",NDP,,,Quebec,Beloeil-Chambly,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Bernier Maxime(Hon.),9167,446,,483,Parliament,"['2791988124']",Conservative,,,Quebec,Beauce,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Arnold Mel,"9168, 14204",446,,483,Parliament,"['964829521']",Conservative,https://melarnold.ca/,,British Columbia,North Okanagan-Shuswap,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Joly Mélanie(Hon.),"9169, 14205",445,,483,Parliament,"['25227444']",Liberal,https://www.instagram.com/melaniejoly,,Quebec,Ahuntsic-Cartierville,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Chong Michael,"9170, 14207",446,,483,Parliament,"['2223489614']",Conservative,https://michaelchong.ca/,,Ontario,Wellington-Halton Hills,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Cooper Michael,"9171, 14208",446,,483,Parliament,"['2149496034']",Conservative,https://www.michaelcoopermp.ca,,Alberta,St. Albert-Edmonton,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Levitt Michael,"14210, 9172",445,,483,Parliament,"['31764814']",Liberal,https://www.michaellevitt.ca,,Ontario,York Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Mcleod Michael,"14211, 9173",445,,483,Parliament,"['3242606862']",Liberal,https://mmcleod.liberal.ca/,,Northwest Territories,Northwest Territories,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Boudrias Michel,"9174, 14212",449,,483,Parliament,"['2972038637']",Bloc Québécois,https://michelboudrias.quebec,,Quebec,Terrebonne,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Michel Picard,9175,445,,483,Parliament,"['2589860840']",Liberal,,,Quebec,Montarville,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Michelle(Hon.) Rempel,"14213, 9176",446,,483,Parliament,"['14538949']",Conservative,https://mprempel.ca/about,,Alberta,Calgary Nose Hill,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Bossio Mike,9177,445,,483,Parliament,"['1117211622']",Liberal,,,Ontario,Hastings-Lennox and Addington,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Lake Mike,"14215, 9178",446,,483,Parliament,"['129395750']",Conservative,https://www.MikeLake.ca,,Alberta,Edmonton-Wetaskiwin,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Ginette(Hon.) Petitpas Taylor,9179,445,,483,Parliament,"['757623733888675840']",Liberal,,,New Brunswick,Moncton-Riverview-Dieppe,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Fortier Mona,"9180, 14216",445,,483,Parliament,"['631988630']",Liberal,https://monafortier.liberal.ca/,,Ontario,Ottawa-Vanier,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Monique Pauzé,"9181, 14217",449,,483,Parliament,"['4504267216']",Bloc Québécois,https://www.moniquepauze.quebec,,Quebec,Repentigny,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Finnigan Pat,"9182, 14227",445,,483,Parliament,"['3327100054']",Liberal,https://pfinnigan.liberal.ca/,,New Brunswick,Miramichi-Grand Lake,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Murray Rankin,9183,447,,483,Parliament,"['796675838']",NDP,,,British Columbia,Victoria,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Erskine-Smith Nathaniel,9184,445,,483,Parliament,"['1942247293']",Liberal,,,Ontario,Beaches-East York,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Cullen Nathan,9185,447,,483,Parliament,"['16307818']",NDP,,,British Columbia,Skeena-Bulkley Valley,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Ellis Neil,"9186, 14221",445,,483,Parliament,"['122247581']",Liberal,https://nellis.liberal.ca,,Ontario,Bay of Quinte,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Nick Whalen,9187,445,,483,Parliament,"['106829525']",Liberal,,,Newfoundland and Labrador,St. John's East,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Di Iorio Nicola,9188,445,,483,Parliament,"['3396085774']",Liberal,,,Quebec,Saint-Léonard-Saint-Michel,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Ashton Niki,"9189, 14223",447,,483,Parliament,"['18654401']",NDP,https://nikiashton2019.ndp.ca/,,Manitoba,Churchill-Keewatinook Aski,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Alghabra Omar,"14224, 9190",445,,483,Parliament,"['20199202']",Liberal,https://www.omaralghabra.ca,,Ontario,Mississauga Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Pablo(Hon.) Rodriguez,"14225, 9191",445,,483,Parliament,"['2242940071']",Liberal,https://www.pablorodriguez.ca,,Quebec,Honoré-Mercier,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Damoff Pam,"9192, 14226",445,,483,Parliament,"['205786669']",Liberal,https://pdamoff.liberal.ca,,Ontario,Oakville North-Burlington,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Goldsmith-Jones Pam,9193,445,,483,Parliament,"['2436071071']",Liberal,,,British Columbia,West Vancouver-Sunshine Coast-Sea to Sky Country,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Kelly Pat,"9194, 14228",446,,483,Parliament,"['2555308646']",Conservative,none,,Alberta,Calgary Rocky Ridge,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Hajdu Patty(Hon.),"14231, 9195",445,,483,Parliament,"['1005090338']",Liberal,https://m.facebook.com/PattyHajdu,,Ontario,Thunder Bay-Superior North,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Lefebvre Paul,"9196, 14232",445,,483,Parliament,"['2902760530']",Liberal,https://plefebvre.liberal.ca/,,Ontario,Sudbury,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Fonseca Peter,"9197, 14234",445,,483,Parliament,"['4269886099']",Liberal,https://www.PeterFonseca.ca,,Ontario,Mississauga East-Cooksville,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Fragiskatos Peter,"9198, 14235",445,,483,Parliament,"['593944500']",Liberal,https://www.PeterFragiskatos.ca,,Ontario,London North Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Julian Peter,"9199, 14236",447,,483,Parliament,"['19557595']",NDP,https://peterjulian.ca/,,British Columbia,New Westminster-Burnaby,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Peter Schiefke,"9200, 14238",445,,483,Parliament,"['342258692']",Liberal,https://www.peterschiefke.ca,,Quebec,Vaudreuil-Soulanges,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Loan Peter Van,9201,446,,483,Parliament,"['2233139882']",Conservative,,,Ontario,York-Simcoe,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Mccoleman Phil,"14239, 9202",446,,483,Parliament,"['271959297']",Conservative,https://www.philmccolemanmp.ca,,Ontario,Brantford-Brant,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Breton Pierre,9203,445,,483,Parliament,"['3016006195']",Liberal,,,Quebec,Shefford,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Nantel Pierre,9204,447,,483,Parliament,"['275600932']",NDP,,,Quebec,Longueuil-Saint-Hubert,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Paul-Hus Pierre,"9205, 14241",446,,483,Parliament,"['412708728']",Conservative,https://www.pierrepaul-hus.ca,,Quebec,Charlesbourg-Haute-Saint-Charles,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +(Hon.) Pierre Poilievre,"14242, 9206",446,,483,Parliament,"['242827267']",Conservative,https://withpierre.ca,,Ontario,Carleton,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Dusseault Pierre-Luc,9207,447,,483,Parliament,"['22785676']",NDP,,,Quebec,Sherbrooke,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Harder Rachael,"14243, 9208",446,,483,Parliament,"['4054610843']",Conservative,https://www.rachaelharder.ca,,Alberta,Lethbridge,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Blaney Rachel,"14245, 9209",447,,483,Parliament,"['121343164']",NDP,https://rachelblaney.ndp.ca/,,British Columbia,North Island-Powell River,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Grewal Raj,9210,445,,483,Parliament,"['1947944587']",Liberal,,,Ontario,Brampton East,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Raj Saini,"9211, 14246",445,,483,Parliament,"['2667603834']",Liberal,https://www.RajSaini.ca,,Ontario,Kitchener Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Goodale Ralph(Hon.),9212,445,,483,Parliament,"['188359178']",Liberal,,,Saskatchewan,Regina-Wascana,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Ramesh Sangha,"9213, 14247",445,,483,Parliament,"['598920180']",Liberal,none,,Ontario,Brampton Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Ayoub Ramez,9214,445,,483,Parliament,"['268642270']",Liberal,,,Quebec,Thérèse-De Blainville,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Garrison Randall,"9215, 14248",447,,483,Parliament,"['266855812']",NDP,https://www.randallgarrison.ca,,British Columbia,Esquimalt-Saanich-Sooke,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Randeep Sarai,"9216, 14249",445,,483,Parliament,"['931397016']",Liberal,https://randeepsarai.ca,,British Columbia,Surrey Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Boissonnault Randy,9217,445,,483,Parliament,"['24215794']",Liberal,,,Alberta,Edmonton Centre,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Hoback Randy,"9218, 14250",446,,483,Parliament,"['35018890']",Conservative,https://www.MPRandyHoback.com,,Saskatchewan,Prince Albert,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Massé Rémi,9219,445,,483,Parliament,"['2555873100']",Liberal,,,Quebec,Avignon-La Mitis-Matane-Matapédia,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Fortin Rhéal,"9220, 14253",449,,483,Parliament,"['309715967']",Bloc Québécois,none,,Quebec,Rivière-du-Nord,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Cannings Richard,"14255, 9221",447,,483,Parliament,"['814078628']",NDP,https://www.facebook.com/richardjcannings,,British Columbia,South Okanagan-West Kootenay,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Hébert Richard,9222,445,,483,Parliament,"['908708311054286848']",Liberal,,,Quebec,Lac-Saint-Jean,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +(Hon.) Nicholson Rob,9223,446,,483,Parliament,"['1340289319']",Conservative,,,Ontario,Niagara Falls,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Oliphant Robert,9224,445,,483,Parliament,"['65061044']",Liberal,,,Ontario,Don Valley West,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Aubin Robert,9225,447,,483,Parliament,"['272436944']",NDP,,,Quebec,Trois-Rivières,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Morrissey Robert,"14261, 9226",445,,483,Parliament,"['2804150911']",Liberal,https://rmorrissey.liberal.ca/,,Prince Edward Island,Egmont,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Robert Sopuck,9227,446,,483,Parliament,"['2817975217']",Conservative,,,Manitoba,Dauphin-Swan River-Neepawa,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Ouellette Robert-Falcon,9228,445,,483,Parliament,"['831351734']",Liberal,,,Manitoba,Winnipeg Centre,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Cuzner Rodger,9229,445,,483,Parliament,"['266635199']",Liberal,,,Nova Scotia,Cape Breton-Canso,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Romeo Saganash,9230,447,,483,Parliament,"['334802268']",NDP,,,Quebec,Abitibi-Baie-James-Nunavik-Eeyou,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Liepert Ron,"14263, 9231",446,,483,Parliament,"['2254171724']",Conservative,https://ronliepert.ca,,Alberta,Calgary Signal Hill,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Mckinnon Ron,"9232, 14264",445,,483,Parliament,"['1109797962']",Liberal,https://rmckinnon.liberal.ca/page/working-hard/,,British Columbia,Coquitlam-Port Coquitlam,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Ruby Sahota,"14266, 9233",445,,483,Parliament,"['49160271']",Liberal,https://www.rubysahota.liberal.ca,,Ontario,Brampton North,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Brosseau Ellen Ruth,9234,447,,483,Parliament,"['305695167']",NDP,,,Quebec,Berthier-Maskinongé,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Salma Zahid,"9235, 14268",445,,483,Parliament,"['2344419362']",Liberal,https://szahid.liberal.ca,,Ontario,Scarborough Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Brison Scott,9236,445,,483,Parliament,"['76710096']",Liberal,,,Nova Scotia,Kings-Hants,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Duvall Scott,"9237, 14272",447,,483,Parliament,"['535820788']",NDP,https://scottduvall.ndp.ca/,,Ontario,Hamilton Mountain,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62320 +Reid Scott,"9238, 14273",446,,483,Parliament,"['283179858']",Conservative,https://www.scottreid.ca,,Ontario,Lanark-Frontenac-Kingston,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Scott Simms,"9239, 14274",445,,483,Parliament,"['171977015']",Liberal,none,,Newfoundland and Labrador,Coast of Bays-Central-Notre Dame,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +O'Regan Seamus(Hon.),"9240, 14275",445,,483,Parliament,"['22849568']",Liberal,https://seamusoregan.liberal.ca,,Newfoundland and Labrador,St. John's South-Mount Pearl,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Casey Sean,"9241, 14276",445,,483,Parliament,"['256775505']",Liberal,https://seancasey.liberal.ca/,,Prince Edward Island,Charlottetown,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Fraser Sean,"14277, 9242",445,,483,Parliament,"['1072270926']",Liberal,https://www.seanfrasermp.ca,,Nova Scotia,Central Nova,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Cormier Serge,"9243, 14279",445,,483,Parliament,"['3423287925']",Liberal,https://www.scormier.liberal.ca,,New Brunswick,Acadie-Bathurst,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Shannon Stubbs,"14280, 9244",446,,483,Parliament,"['2963597856']",Conservative,https://www.shannonstubbsmp.ca,,Alberta,Lakeland,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Chen Shaun,"14281, 9245",445,,483,Parliament,"['2937436849']",Liberal,https://www.shaunchen.com,,Ontario,Scarborough North,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Malcolmson Sheila,9246,447,,483,Parliament,"['390346699']",NDP,,,British Columbia,Nanaimo-Ladysmith,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Benson Sheri,9247,447,,483,Parliament,"['1189154815']",NDP,,,Saskatchewan,Saskatoon West,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Romanado Sherry,"9248, 14282",445,,483,Parliament,"['488052222']",Liberal,https://www.sherryromanado.ca,,Quebec,Longueuil-Charles-LeMoyne,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Marcil Simon,"9249, 14283",449,,483,Parliament,"['767735634438094850']",Bloc Québécois,none,,Quebec,Mirabel,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Sidhu Sonia,"9250, 14285",445,,483,Parliament,"['3188558830']",Liberal,https://soniasidhu.liberal.ca/,,Ontario,Brampton South,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Lauzon Stéphane,"14288, 9251",445,,483,Parliament,"['3187763194']",Liberal,https://stephanelauzon.liberal.ca/,,Quebec,Argenteuil-La Petite-Nation,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Kusie Stephanie,"9252, 14289",446,,483,Parliament,"['1722999380']",Conservative,https://www.stephaniekusiemp.ca,,Alberta,Calgary Midnapore,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Fuhr Stephen,9253,445,,483,Parliament,"['2458332464']",Liberal,,,British Columbia,Kelowna-Lake Country,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Blaney Steven(Hon.),"9254, 14290",446,,483,Parliament,"['75459502']",Conservative,https://www.stevenblaney.ca,,Quebec,Bellechasse-Les Etchemins-Lévis,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Mackinnon Steven,"14292, 9255",445,,483,Parliament,"['165812196']",Liberal,https://stevemackinnon.liberal.ca/,,Quebec,Gatineau,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Dhaliwal Sukh,"9256, 14293",445,,483,Parliament,"['38625077']",Liberal,https://teamsukh2019.ca,,British Columbia,Surrey-Newton,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Spengemann Sven,"9257, 14294",445,,483,Parliament,"['282526718']",Liberal,https://sspengemann.liberal.ca/,,Ontario,Mississauga-Lakeshore,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Boucher Sylvie,9258,446,,483,Parliament,"['2382876865']",Conservative,,,Quebec,Beauport-Côte-de-Beaupré-Île d'Orléans-Charlevoix,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Falk Ted,"14299, 9259",446,,483,Parliament,"['2228891196']",Conservative,https://TedFalk.com,,Manitoba,Provencher,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Beech Terry,"14300, 9260",445,,483,Parliament,"['16279532']",Liberal,https://terrybeechmp.ca,,British Columbia,Burnaby North-Seymour,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Duguid Terry,"14302, 9261",445,,483,Parliament,"['171115367']",Liberal,https://terryduguid.liberal.ca/,,Manitoba,Winnipeg South,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Sheehan Terry,"9262, 14303",445,,483,Parliament,"['3363252329']",Liberal,https://tsheehan.liberal.ca/,,Ontario,Sault Ste. Marie,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Nault Robert,9263,445,,483,Parliament,"['2945434194']",Liberal,,,Ontario,Kenora,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Harvey T.J.,9264,445,,483,Parliament,"['248976061']",Liberal,,,New Brunswick,Tobique-Mactaquac,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62420 +Doherty Todd,"9265, 14306",446,,483,Parliament,"['2988907684']",Conservative,https://www.todddoherty.ca,,British Columbia,Cariboo-Prince George,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Kmiec Tom,"9266, 14307",446,,483,Parliament,"['268528986']",Conservative,https://www.tomkmiec.ca,,Alberta,Calgary Shepard,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Mulcair Thomas(Hon.),9268,447,,483,Parliament,"['363997684']",NDP,,,Quebec,Outremont,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +(Hon.) Clement Tony,9269,446,,483,Parliament,"['121483664']",Conservative,,,Ontario,Parry Sound-Muskoka,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62623 +Ramsey Tracey,9270,447,,483,Parliament,"['228394456']",NDP,,,Ontario,Essex,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Badawey Vance,"14312, 9271",445,,483,Parliament,"['1002181382']",Liberal,https://www.vancebadawey.ca,,Ontario,Niagara Centre,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +(Hon.) Easter Wayne,"9272, 14314",445,,483,Parliament,"['65624152']",Liberal,https://weaster.liberal.ca/,,Prince Edward Island,Malpeque,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Long Wayne,"9273, 14315",445,,483,Parliament,"['436087744']",Liberal,https://www.waynelongmp.ca,,New Brunswick,Saint John-Rothesay,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Stetski Wayne,9274,447,,483,Parliament,"['360020825']",NDP,,,British Columbia,Kootenay-Columbia,https://www.ourcommons.ca/Parliamentarians/en/members,,Canada,4,34,62320 +Amos William,"9275, 14316",445,,483,Parliament,"['919714903']",Liberal,https://www.facebook.com/willamoscanada/,,Quebec,Pontiac,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Barsalou-Duval Xavier,"9276, 14317",449,,483,Parliament,"['554809138']",Bloc Québécois,https://www.blocquebecois.org,,Quebec,Pierre-Boucher-Les Patriotes-Verchères,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62901 +Ratansi Yasmin,"9277, 14318",445,,483,Parliament,"['2391192848']",Liberal,https://yasminratansi.liberal.ca,,Ontario,Don Valley East,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Robillard Yves,"14321, 9278",445,,483,Parliament,"['2942312619']",Liberal,https://yvesrobillard.liberal.ca,,Quebec,Marc-Aurèle-Fortin,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Jones Yvonne,"14323, 9279",445,,483,Parliament,"['240786249']",Liberal,https://yvonnejones.liberal.ca/,,Newfoundland and Labrador,Labrador,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51",62420 +Aboultaif Ziad,"13986, 9280",446,,483,Parliament,"['4568748862']",Conservative,none,,Alberta,Edmonton Manning,"https://www.ourcommons.ca/members/en/search, https://www.ourcommons.ca/Parliamentarians/en/members",,Canada,4,"34, 51","62623, 51620" +Allison Dean,"9281, 14064",446,,483,Parliament,"['243709627']",Conservative,https://www.deanallison.ca,,Ontario,Niagara West,https://www.ourcommons.ca/members/en/search,,Canada,4,"34, 51","62623, 51620" +Anderson David,9282,446,,483,Parliament,"['212295349']",Conservative,,,Saskatchewan,Cypress Hills-Grasslands,,,Canada,4,34,62623 +Block Kelly,"14146, 9284",446,,483,Parliament,"['28804785']",Conservative,https://www.kellyblockmp.ca,,Saskatchewan,Carlton Trail-Eagle Creek,https://www.ourcommons.ca/members/en/search,,Canada,4,"34, 51","62623, 51620" +Elizabeth May,"14076, 9287",450,,483,Parliament,"['16220555']",Green Party,https://elizabethmaymp.ca/,,British Columbia,Saanich-Gulf Islands,https://www.ourcommons.ca/members/en/search,,Canada,4,"34, 51","62110, 51110" +Quickenborne Van Vincent,9289,451,,489,Parliament,"['102008468']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00972&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Servais Verherstraeten,"9290, 15075","452, 345",,489,Parliament,"['1259463008']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00826&lactivity=54, https://servais.verherstraeten.cdenv.be",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Chastel Olivier,"9291, 13253","290, 453",63,489,Parliament,"['138689410']","Mouvement Réformateur, Mouvement Réformateur",https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00906&lactivity=54,,Belgium,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,"European Parliament, Belgium","27, 3","35, 43",21426 +Dallemagne Georges,"9292, 14961","324, 454",,489,Parliament,"['138747473']","centre démocrate Humaniste, Centre démocrate humaniste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00951&lactivity=54, https://www.georgesdallemagne.blogs.com/",,Bruxelles-Capitale,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=cdH&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",0 +Muylle Nathalie,"15027, 9293","452, 345",,489,Parliament,"['140510920']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.nathaliemuylle.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01130&lactivity=54",,athalie,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Raf Terwingen,9294,452,,489,Parliament,"['141158659']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01240&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Stefaan Vercamer,9295,452,,489,Parliament,"['141205805']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01231&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Hees Marco Van,"9296, 15060","578, 455",,489,Parliament,"['141958841']","Workers' Party of Belgium, PVDA-PTB","https://www.frerealbert.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06701&lactivity=54",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PTB%2DGO%21&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44", +Dewinter Filip,9297,456,,489,Parliament,"['142646856']",Vlaams Belang,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00472&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=VB&legis=54&nohtml,,Belgium,3,35,21914 +Tim Vandenput,"9298, 15070","337, 451",,489,Parliament,"['143385147']","Open Vlaamse Liberalen en Democraten, Open Vlaamse liberalen en democraten","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06823&lactivity=54, https://www.timvandenput.be",,Vlaams-Brabant,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21421 +Carina Cauter Van,9299,451,,489,Parliament,"['143761737']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01230&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Bracke Siegfried,9300,457,,489,Parliament,"['144113849']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06025&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +De Vriendt Wouter,"9301, 14970","458, 579",,489,Parliament,"['144519396']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01199&lactivity=54, https://www.wouterdevriendt.be",,West-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Özen Özlem,"9302, 15029","162, 459",,489,Parliament,"['175438902']","Parti Socialiste, Parti Socialiste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06326&lactivity=54, https://www.ozlemozen.be",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Bogaert Hendrik,"14942, 9303","452, 345",,489,Parliament,"['18424692']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.hendrikbogaert.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01039&lactivity=54",,West-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Annemie Turtelboom,9304,451,,489,Parliament,"['185991774']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01102&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Benoit Hellings,9305,458,,489,Parliament,"['19765534']",Ecolo-Groen,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01303&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml,,Belgium,3,35,21111 +Daphné Dumery,9306,457,,489,Parliament,"['202021509']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06086&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Griet Smaers,9307,452,,489,Parliament,"['204808435']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06122&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Karin Temmerman,9308,460,,489,Parliament,"['20861982']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06047&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Daniel Senesael,"15044, 9309","162, 459",,489,Parliament,"['21665227']","Parti Socialiste, Parti Socialiste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06682&lactivity=54, https://www.danielsenesael.be",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Calvo Kristof,"9310, 14949","458, 579",,489,Parliament,"['222893593']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06128&lactivity=54, https://www.kristofcalvo.be",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Ceysens Patricia,9311,451,,489,Parliament,"['22627734']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O937&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Lijnen Nele,9312,451,,489,Parliament,"['249626115']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01179&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Veli Yüksel,9313,452,,489,Parliament,"['250299192']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06022&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Françoise Schepmans,9314,453,,489,Parliament,"['25977997']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01083&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Deseyn Roel,9315,452,,489,Parliament,"['27005953']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01030&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Dewael Patrick,"9316, 14982","337, 451",,489,Parliament,"['27620218']","Open Vlaamse Liberalen en Democraten, Open Vlaamse liberalen en democraten","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00124&lactivity=54, https://www.facebook.com/dewaelp",,Limburg,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21421 +Lanjri Nahima,"15014, 9317","452, 345",,489,Parliament,"['280941391']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.nahima.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01042&lactivity=54",,ahima,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Bert Wollants,"15083, 9318","457, 310",,489,Parliament,"['28338163']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.bertwollants.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06147&lactivity=54",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Kristien Vaerenbergh Van,"15066, 9319","457, 310",,489,Parliament,"['312845736']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06230&lactivity=54, https://www.kristienvanvaerenbergh.be",,Vlaams-Brabant,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Dierick Leen,"14985, 9320","452, 345",,489,Parliament,"['360784538']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01201&lactivity=54, https://www.leendierick.be",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Bergh Den Jef Van,"9321, 15056","452, 345",,489,Parliament,"['37477079']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01131&lactivity=54, https://www.jefvandenbergh.be",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Becq Sonja,9322,452,,489,Parliament,"['381749868']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01190&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +De Lamotte Michel,9323,454,,489,Parliament,"['39223645']",Centre démocrate humaniste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O2028&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=cdH&legis=54&nohtml,,Belgium,3,35, +An Capoen,9324,457,,489,Parliament,"['41401641']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06796&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Karine Lalieux,9325,459,,489,Parliament,"['41564561']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00988&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Biesen Luk Van,9326,451,,489,Parliament,"['418533274']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01139&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Daerden Frédéric,"14960, 9327","162, 459",,489,Parliament,"['42380944']","Parti Socialiste, Parti Socialiste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06731&lactivity=54, https://www.linkedin.com/in/frédéric-daerden-25680513a",,Liège,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Hecke Stefaan Van,"15059, 9328","458, 579",,489,Parliament,"['424093972']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01227&lactivity=54, https://www.stefaanvanhecke.be",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Almaci Meyrem,9329,458,,489,Parliament,"['429881279']",Ecolo-Groen,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01189&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml,,Belgium,3,35,21111 +Coninck De Monica,9330,460,,489,Parliament,"['442598520']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01183&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Egbert Lachaert,"9331, 15012","337, 451",,489,Parliament,"['50003590']","Open Vlaamse Liberalen en Democraten, Open Vlaamse liberalen en democraten","https://www.egbertlachaert.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06884&lactivity=54",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21421 +Veerle Wouters,9332,461,,489,Parliament,"['503714294']",Vuye&Wouters,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06401&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Vuye%26Wouters&legis=54&nohtml,,Belgium,3,35, +Beke Wouter,"14939, 9333","452, 345",,489,Parliament,"['515620055']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01149&lactivity=54, https://www.wouterbeke.be",,Limburg,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Hufkens Renate,9334,457,,489,Parliament,"['524188147']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06843&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Alain Top,9335,460,,489,Parliament,"['525309781']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06109&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Clarinval David,"9336, 14951","290, 453",,489,Parliament,"['527758724']",Mouvement Réformateur,"https://davidclarinval.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01259&lactivity=54",,Namur,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","0, 21426" +Peel Valerie Van,"15064, 9337","457, 310",,489,Parliament,"['56336288']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.valerievanpeel.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06589&lactivity=54",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Koen Metsu,"9338, 15023","457, 310",,489,Parliament,"['580737124']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.koenmetsu.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06591&lactivity=54",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Annick Lambrecht,9339,460,,489,Parliament,"['602125550']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06785&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +De Sophie Wit,"14972, 9340","457, 310",,489,Parliament,"['608041261']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06141&lactivity=54, https://www.sophiedewit.be",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Burre Gilles Vanden,"9341, 15068","458, 579",,489,Parliament,"['64506745']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://gillesvandenburre.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06638&lactivity=54",,Bruxelles-Capitale,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Denis Ducarme,"14987, 9342","290, 453",,489,Parliament,"['75315061']",Mouvement Réformateur,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01056&lactivity=54, none",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","0, 21426" +Barbara Pas,"9343, 15030","456, 334",,489,Parliament,"['97476338']",Vlaams Belang,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01236&lactivity=54, https://www.barbarapas.org",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=VB&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","21914, 21917" +Ben Hamou Nawal,9344,459,,489,Parliament,"['2654112169']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06647&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Blanchart Philippe,9345,459,,489,Parliament,"['2320348984']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01288&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Calomne Gautier,9346,453,,489,Parliament,"['212199487']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06620&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Caprasse Véronique,9347,462,,489,Parliament,"['3364144787']",DéFI,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06627&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=D%E9FI&legis=54&nohtml,,Belgium,3,35, +Caroline Cassart-Mailleux,9348,453,,489,Parliament,"['3814911568']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06385&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Crusnière Stéphane,9349,459,,489,Parliament,"['221335901']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06536&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Coninck De Inez,9350,457,,489,Parliament,"['1032292795']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06842&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Anne Dedry,9351,458,,489,Parliament,"['2226103702']",Ecolo-Groen,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06813&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml,,Belgium,3,35,21111 +Delizée Jean-Marc,"9352, 14975","162, 459",,489,Parliament,"['3074970471']","Parti Socialiste, Parti Socialiste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00746&lactivity=54, https://www.jmdelizee.be",,Namur,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Demon Franky,"14977, 9353","452, 345",,489,Parliament,"['372263406']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06805&lactivity=54, none",,West-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +De Peter Roover,"14967, 9354","457, 310",,489,Parliament,"['471895761']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06588&lactivity=54, https://www.peterderoover.be",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Bart De Wever,9355,457,,489,Parliament,"['143910307']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01200&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Di Elio Rupo,"14984, 9356","162, 459",,489,Parliament,"['4808861']","Parti Socialiste, Parti Socialiste","https://www.facebook.com/eliodirupo, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00439&lactivity=54",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Fernandez Fernandez Julie,9357,459,,489,Parliament,"['132864440']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01279&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Flahaux Jean-Jacques,9358,453,,489,Parliament,"['4045328908']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01203&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Catherine Fonck,"14990, 9359","324, 454",,489,Parliament,"['1392844044']","centre démocrate Humaniste, Centre démocrate humaniste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01076&lactivity=54, none",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=cdH&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",0 +Foret Gilles,9360,453,,489,Parliament,"['144874064']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06712&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Benoît Friart,9361,453,,489,Parliament,"['2366945215']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06663&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Gabriëls Katja,"14993, 9362","337, 451",,489,Parliament,"['557697570']","Open Vlaamse Liberalen en Democraten, Open Vlaamse liberalen en democraten","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06885&lactivity=54, https://www.katjagabriels.be",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21421 +Gantois Rita,9363,457,,489,Parliament,"['732923639897706496']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06795&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Georges Gilkinet,"14997, 9364","458, 579",,489,Parliament,"['383682976']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01205&lactivity=54, https://www.gilki.net",,Namur,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Grovonius Gwenaëlle,9365,459,,489,Parliament,"['38679171']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06018&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Hedebouw Raoul,"9366, 15001","578, 455",,489,Parliament,"['42015742']","Workers' Party of Belgium, PVDA-PTB","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06759&lactivity=54, https://www.ptb.be",,Liège,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PTB%2DGO%21&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44", +Heeren Veerle,9367,452,,489,Parliament,"['817382385339826176']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O2321&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Jadin Kattrin,"9368, 15004","290, 453",,489,Parliament,"['49613383']",Mouvement Réformateur,"https://www.jadin.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01207&lactivity=54",,Liège,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","0, 21426" +Jiroflée Karin,"9369, 15006",460,,489,Parliament,"['2411241452']","Socialistische Partij Anders, Socialistische partij anders","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01070&lactivity=54, https://karinjiroflee.be",,Vlaams-Brabant,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21321 +Emir Kir,"9370, 15009","162, 459",,489,Parliament,"['1245744524']","Parti Socialiste, Parti Socialiste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06645&lactivity=54, none",,Bruxelles-Capitale,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Kitir Meryame,"15010, 9371",460,,489,Parliament,"['1117307676']","Socialistische Partij Anders, Socialistische partij anders","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01209&lactivity=54, none",,Limburg,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21321 +Johan Klaps,9372,457,,489,Parliament,"['2818639564']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06593&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Ahmed Laaouej,"9373, 15011","162, 459",,489,Parliament,"['41107057']","Parti Socialiste, Parti Socialiste","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06461&lactivity=54, https://www.laaouej.be",,Bruxelles-Capitale,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Lahaye-Battheu Sabien,9374,451,,489,Parliament,"['3017723038']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01032&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Benoît Lutgen,"9375, 12781","454, 324",29,"489, 349",Parliament,"['825427526344441857', '825427526344441728']","Centre Démocrate Humaniste, Centre démocrate humaniste",https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01145&lactivity=54,,Belgium,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=cdH&legis=54&nohtml,,"Belgium, European Parliament","27, 3","43, 35", +Luykx Peter,9376,457,,489,Parliament,"['113442360']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01260&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Maingain Olivier,9377,462,,489,Parliament,"['1004498838']",DéFI,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00682&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=D%E9FI&legis=54&nohtml,,Belgium,3,35, +Eric Massin,9378,459,,489,Parliament,"['710414084181729280']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01050&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Miller Richard,9379,453,,489,Parliament,"['749011424']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06664&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Laurette Onkelinx,9380,459,,489,Parliament,"['2809960227']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00476&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Fatma Pehlivan,9381,460,,489,Parliament,"['1307076637']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01002&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Jan Penris,9382,456,,489,Parliament,"['1224857574']",Vlaams Belang,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06183&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=VB&legis=54&nohtml,,Belgium,3,35,21914 +Benoît Piedboeuf,"15031, 9383","290, 453",,489,Parliament,"['1910345449']",Mouvement Réformateur,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06423&lactivity=54, https://www.benoitpiedboeuf.be",,Luxembourg,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","0, 21426" +Raskin Wouter,"9384, 15035","457, 310",,489,Parliament,"['1358793595']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06498&lactivity=54, https://www.wouterraskin.be",,Limburg,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Scourneau Vincent,9385,453,,489,Parliament,"['456249093']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06287&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Sarah Smeyers,9386,457,,489,Parliament,"['1089921426']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01219&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Jan Spooren,"15047, 9387","457, 310",,489,Parliament,"['2903507087']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.jan-spooren.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06841&lactivity=54",,Vlaams-Brabant,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Eric Thiébaut,"9388, 15051","162, 459",,489,Parliament,"['193790469']","Parti Socialiste, Parti Socialiste","https://www.ericthiebaut.eu, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01222&lactivity=54",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","31320, 21322" +Damien Thiery,9389,453,,489,Parliament,"['234096704']",Mouvement Réformateur,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06219&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml,,Belgium,3,35,21426 +Ann Vanheste,9390,460,,489,Parliament,"['4234630396']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06106&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Els Hoof Van,"15061, 9391","452, 345",,489,Parliament,"['365329481']","Christen-Democratisch en Vlaams, Christen-Democratisch & Vlaams","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06852&lactivity=54, https://www.elsvanhoof.be",,Vlaams-Brabant,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21521 +Jan Vercammen,9392,457,,489,Parliament,"['3306452297']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06794&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Hendrik Vuye,9393,461,,489,Parliament,"['2793877337']",Vuye&Wouters,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06840&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Vuye%26Wouters&legis=54&nohtml,,Belgium,3,35, +Fabienne Winckel,9394,459,,489,Parliament,"['437619782']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06455&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Buysrogge Peter,"9395, 14947","457, 310",,489,Parliament,"['2382815018']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06030&lactivity=54, https://www.peterbuysrogge.be",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Grosemans Karolien,9396,457,,489,Parliament,"['3542806097']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=04726&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Peteghem Van Vincent,9397,452,,489,Parliament,"['107486283']",Christen-Democratisch en Vlaams,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06919&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=CD%26V&legis=54&nohtml,,Belgium,3,35,21521 +Jean-Marc Nollet,"15028, 9398","458, 579",,489,Parliament,"['877260416']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://www.nollet.info, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01016&lactivity=54",,Hainaut,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Demeyer Willy,9399,459,,489,Parliament,"['2956395495']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06456&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Der Dirk Maelen Van,9401,460,,489,Parliament,"['2785649857']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00565&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Peter Vanvelthoven,9402,460,,489,Parliament,"['2260100922']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00917&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +Goedele Uyttersprot,9403,457,,489,Parliament,"['712920850522095616']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O1388&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Janssen Werner,9404,457,,489,Parliament,"['2331605581']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06497&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Brecht Vermeulen,9405,457,,489,Parliament,"['1863195774']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06793&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Burton Emmanuel,"9408, 14945","290, 453",,489,Parliament,"['2588017745']",Mouvement Réformateur,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O1057&lactivity=54, none",,BrabantWallon,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=MR&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44","0, 21426" +Ine Somers,9410,451,,489,Parliament,"['1946262222']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01284&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +Degroote Koenraad,9411,457,,489,Parliament,"['4691154253']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06088&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Bellens Rita,9412,457,,489,Parliament,"['2367518554']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06592&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Evita Willaert,"9413, 15081","458, 579",,489,Parliament,"['490706325']","Ecologistes Confédérés pour l'organisation de luttes originales Groen, Ecolo-Groen","https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06861&lactivity=54, https://www.evitawillaert.be",,Oost-Vlaanderen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Ecolo%2DGroen&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21111 +Dirk Mechelen Van,9414,451,,489,Parliament,"['993473948']",Open Vlaamse Liberalen en Democraten,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=00454&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=Open%20Vld&legis=54&nohtml,,Belgium,3,35,21421 +David Geerts,9415,460,,489,Parliament,"['905541446']",Socialistische Partij Anders,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01127&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=sp%2Ea&legis=54&nohtml,,Belgium,3,35,21321 +De Robert Van Velde,9416,457,,489,Parliament,"['55813582']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01239&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Dedecker Peter,9417,457,,489,Parliament,"['4347061']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06027&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Camp Van Yoleen,"15055, 9418","457, 310",,489,Parliament,"['2326108382']","New Flemish Alliance, Nieuw-Vlaamse Alliantie","https://www.yoleenvancamp.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06590&lactivity=54",,Antwerpen,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",21916 +Der Donckt Van Wim,9419,457,,489,Parliament,"['2442196564']",New Flemish Alliance,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06595&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=N%2DVA&legis=54&nohtml,,Belgium,3,35,21916 +Aldo Carcaci,9421,463,,489,Parliament,"['780472481555550208']",Parti Populaire,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=06749&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PP&legis=54&nohtml,,Belgium,3,35, +Delannois Paul-Olivier,9423,459,,489,Parliament,"['3072587134']",Parti Socialiste,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=O1846&lactivity=54,,,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=PS&legis=54&nohtml,,Belgium,3,35,21322 +Matz Vanessa,"15020, 9434","324, 454",,489,Parliament,"['852163716992966657']","centre démocrate Humaniste, Centre démocrate humaniste","https://www.vanessamatz.be, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvview54.cfm?key=01281&lactivity=54",,Liège,,"https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=cvlist54.cfm?sorttype=group&namegroup=cdH&legis=54&nohtml, https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm",,Belgium,3,"35, 44",0 +Hon Senator Seselja The Zed,"12686, 9439",464,,502,Senate,"['338036917']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HZE,"['Assistant Minister for Social Services and Multicultural Affairs']",Australian Capital Territory,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Birmingham Hon Senator Simon The,"12679, 9440",464,,502,Senate,"['22196776']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=H6X,"['Minister for Education and Training']",South Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Hon Ryan Scott Senator The,"12678, 9441",464,,502,Senate,"['36872712']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0Q,"['President of the Senate']","Victoria, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Hon Penny Senator The Wong,"12669, 9442",465,,502,Senate,"['529147678']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AOU,"['Leader of the Opposition in the Senate']",South Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Fifield Hon Mitch Senator The,"9444, 12663",464,,502,Senate,"['1976865085']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=D2I,"['Manager of Government Business in the Senate']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Cash Hon Michaelia Senator The,"9445, 12662",464,,502,Senate,"['274249799']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0M,"['Minister for Employment']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Canavan Hon Matthew Senator The,"12660, 9446",467,,502,Senate,"['632817143']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=245212,"['Minister for Resources and Northern Australia']",Queensland,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63810 +Cormann Hon Mathias Senator The,"9447, 12659",464,,502,Senate,"['43304756']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HDA,"['Deputy Leader of the Government in the Senate']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Hon Marise Payne Senator The,"12658, 9448",464,,502,Senate,"['2300779218']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=M56,"['Minister for Defence']","South Australia, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Hon Lisa Senator Singh The,"9449, 12654",465,,502,Senate,"['29401651']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=M0R,"['Deputy Chair of Parliamentary Joint Committee on Law Enforcement']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Carr Hon Kim Senator The,"9450, 12649",465,,502,Senate,"['711691441']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=AW5,"['Australian Labor Party']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Hon James Mcgrath Senator The,9451,464,,502,Senate,"['389808189']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=217241,"['Assistant Minister to the Prime Minister']",Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Abetz Eric Hon Senator The,"9455, 12634",464,,502,Senate,"['128440862']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=N26,"['Liberal Party of Australia']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Concetta Fierravanti-Wells Hon Senator The,"9458, 12625",464,,502,Senate,"['1929717391']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=e4t,"['Minister for International Development and the Pacific']",New South Wales,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Ao Arthur Hon Senator Sinodinos The,"9459, 12617",464,,502,Senate,"['3397614014']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=bv7,"['Minister for Industry']",New South Wales,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Anne Hon Ruston Senator The,"9460, 12614",464,,502,Senate,"['44302241']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=243273,"['Assistant Minister for Agriculture and Water Resources']","Victoria, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Lines Senator Sue,"9461, 12683",465,,502,Senate,"['133599328']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=112096,"['Chair of Committees']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Griff Senator Stirling,"9462, 12682","503, 468",,502,Senate,"['202574467']","Centre Alliance, Nick Xenophon Team",https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=76760,"['Nick Xenophon Team']",South Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Hanson-Young Sarah Senator,"9464, 12677",469,,502,Senate,"['4553061']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0U,"['Deputy Chair of Select Committee on the Future of Public Interest Journalism']",South Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +Di Natale Richard Senator,"12676, 9466",469,,502,Senate,"['37611292']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=53369,"['Leader of the Australian Greens']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +Patrick Rex Senator,"12674, 9467","503, 468",,502,Senate,"['926019424154349568']","Centre Alliance, Nick Xenophon Team",https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=144292,"['Nick Xenophon Team']","Victoria, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Rachel Senator Siewert,"9468, 12672",469,,502,Senate,"['25298878']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=e5z,"['Australian Greens Whip']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +Peter Senator Whish-Wilson,"12671, 9469",469,,502,Senate,"['573244782']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=195565,"['Australian Greens']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +Georgiou Peter Senator,"9470, 12670",470,,502,Senate,"['827330353496854528']",Pauline Hanson's One Nation,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=269583,"[""Pauline Hanson's One Nation""]",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Hanson Pauline Senator,"12668, 9471",470,,502,Senate,"['1471232930']",Pauline Hanson's One Nation,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=BK6,"['Chair of Select Committee on Lending to Primary Production Customers']",Queensland,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Dodson Patrick Senator,"9472, 12667",465,,502,Senate,"['954263782070484992']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=SR5,"['Australian Labor Party']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Mckim Nick Senator,"12665, 9473",469,,502,Senate,"['156077839']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=JKM,"['Australian Greens']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +Murray Senator Watt,"9474, 12664",465,,502,Senate,"['304856790']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=245759,"['Chair of Select Committee on the Future of Work and Workers']",Queensland,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Malarndirri Mccarthy Senator,"9475, 12657",465,,502,Senate,"['760359549295484928']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=122087,"['Australian Labor Party']",Northern Territory,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Gichuhi Lucy Senator,9476,464,,502,Senate,"['850573294692573184']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=270552,"['Deputy Chair of Select Committee on the Future of Work and Workers']",South Australia,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Louise Pratt Senator,"12655, 9477",465,,502,Senate,"['27647260']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0T,"['Chair of Legal and Constitutional Affairs References Committee']","Tasmania, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Csc Linda Reynolds Senator,"9478, 12653",464,,502,Senate,"['2393844469']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=250216,"['Chair of Education and Employment Legislation Committee']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Lee Rhiannon Senator,9479,469,,502,Senate,"['29863656']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=CPR,"['Australian Greens']",New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63110 +Kimberley Kitching Senator,"12650, 9480",465,,502,Senate,"['20494141']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=247512,"['Australian Labor Party']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Gallagher Katy Senator,9481,465,,502,Senate,"['227531567']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=ING,"['Australian Labor Party']",Australian Capital Territory,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Jordon Senator Steele-John,"9482, 12648",469,,502,Senate,"['179129274']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=250156,"['Australian Greens']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +John Senator Williams,"9484, 12646",467,,502,Senate,"['58992129']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=I0V,"['Nationals Whip in the Senate']",New South Wales,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63810 +Jenny Mcallister Senator,"12644, 9485",465,,502,Senate,"['44288405']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=121628,"['Deputy Opposition Whip in the Senate']",New South Wales,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Janet Rice Senator,"9486, 12643",469,,502,Senate,"['77209956']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=155410,"['Chair of Environment and Communications References Committee']","Victoria, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63110 +Hume Jane Senator,"12642, 9487",464,,502,Senate,"['2899264434']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=266499,"['Chair of Economics Legislation Committee']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +James Paterson Senator,"12641, 9488",464,,502,Senate,"['28791311']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=144138,"['Chair of Finance and Public Administration Legislation Committee']","Victoria, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +Helen Polley Senator,"9489, 12638",465,,502,Senate,"['929373746']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=e5x,"['Chair of Standing Committee for the Scrutiny of Bills']","Tasmania, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Glenn Senator Sterle,"12637, 9490",465,,502,Senate,"['570513390']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=e68,"['Chair of Rural and Regional Affairs and Transport References Committee']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Anning Fraser Senator,"12635, 9492",471,,502,Senate,"['940479842859958272']",Independent,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=273829,"[""Pauline Hanson's One Nation""]",Queensland,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Derryn Hinch Senator,"12630, 9493",472,,502,Senate,"['180258856']",Derryn Hinch's Justice Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=2O4,"['Chair of Joint Select Committee on oversight of the implementation of redress related recommendations of the Royal Commission into Institutional Responses to Child Sexual Abuse']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Deborah O'Neill Senator,"12629, 9494",465,,502,Senate,"['145444495']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=140651,"['Deputy Chair of Parliamentary Joint Committee on Corporations and Financial Services']","Queensland, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Dean Senator Smith,"12628, 9495",464,,502,Senate,"['538191458']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=241710,"['Deputy Government Whip in the Senate']",Western Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63620 +David Leyonhjelm Senator,9496,473,,502,Senate,"['1845164558']",Liberal Democratic Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=111206,"['Chair of Red Tape Committee']",New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38, +Bushby David Senator,9498,464,,502,Senate,"['117296775']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HLL,"['Chief Government Whip in the Senate']",Tasmania,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Bernardi Cory Senator,"9499, 12626",474,,502,Senate,"['80965423']",Australian Conservatives,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=G0D,"['Australian Conservatives']",South Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38", +Claire Moore Senator,"12624, 9500",465,,502,Senate,"['1132531790']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AOQ,"['Australian Labor Party']","Queensland, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Chris Ketter Senator,9501,465,,502,Senate,"['2646748014']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=244247,"['Deputy Opposition Whip in the Senate']",Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Bilyk Catryna Senator,"9502, 12622",465,,502,Senate,"['108209937']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HZB,"['Chair of Select Committee into Funding for Research into Cancers with Low Survival Rates']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Brown Carol Senator,"9503, 12621",465,,502,Senate,"['540485961']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=F49,"['Australian Labor Party']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Bridget Mckenzie Senator,"9504, 12620",467,,502,Senate,"['525812268']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=207825,"['Deputy Leader of The Nationals in the Senate']",Victoria,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63810 +Brian Burston Senator,9505,470,,502,Senate,"['991497889829404672']",Pauline Hanson's One Nation,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=207807,"[""Pauline Hanson's One Nation""]",New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38, +Anthony Chisholm Senator,"12616, 9507",465,,502,Senate,"['108922449']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=39801,"['Australian Labor Party']",Queensland,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Anne Senator Urquhart,"9508, 12615",465,,502,Senate,"['786867271']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=231199,"['Opposition Whip in the Senate']",Tasmania,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Andrew Bartlett Senator,9509,469,,502,Senate,"['14241904']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DT6,"['Australian Greens']",Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63110 +Alex Gallacher Senator,"9510, 12612",465,,502,Senate,"['252986202']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=204953,"['Chair of Foreign Affairs, Defence and Trade References Committee']",South Australia,,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0, https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1",,Australia,1,"46, 38",63320 +Adam Bandt Mp Mr,"14474, 9521",469,,502,Parliament,"['25960714']",Australian Greens,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=M3C,"['Australian Greens']","Melbourne, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63110 +Alan Hon Mp Tudge,"14473, 9522",464,,502,Parliament,"['185932331']",Liberal Party of Australia,"https://www.alantudge.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=M2Y","['Minister for Human Services']","Aston, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Albanese Anthony Hon Mp,"9523, 14456",465,,502,Parliament,"['254515782']",Australian Labor Party,"https://www.anthonyalbanese.com.au/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=R36","['Australian Labor Party']","Grayndler, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Andrew Dr Hon Leigh Mp,"14465, 9524",465,,502,Parliament,"['322866759']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=BU8,"['Australian Labor Party']","Fenner, Australian Capital Territory",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Alex Hawke Hon Mp,"14472, 9525",464,,502,Parliament,"['18864066']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWO,"['Assistant Minister for Immigration and Border Protection']","Mitchell, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Amanda Hon Mp Rishworth,"9526, 14470",465,,502,Parliament,"['86257323']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWA, https://rishworth.com.au","['Australian Labor Party']","Kingston, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Andrew Gee Mp Mr,9527,467,,502,Parliament,"['423966765']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=261393,"['The Nationals']","Calare, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63810 +Andrew Giles Mp Mr,"14468, 9528",465,,502,Parliament,"['713582779']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=243609, https://www.andrewgiles.com.au","['Deputy Chair of Joint Standing Committee on Electoral Matters']","Scullin, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Andrew Laming Mp Mr,"14466, 9529","573, 464",,502,Parliament,"['49499855']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E0H, https://www.andrewlaming.com.au","['Chair of Standing Committee on Employment, Education and Training']","Bowman, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Andrew Mp Mr Wallace,"14464, 9530","573, 464",,502,Parliament,"['252016955']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.andrewwallacemp.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265967","['Chair of Standing Committee on Infrastructure, Transport and Cities']","Fisher, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Angus Hon Mp Taylor,"9531, 14461",464,,502,Parliament,"['84750011']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=231027,"['Assistant Minister for Cities and Digital Transformation']","Hume, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Ann Mp Mrs Sudmalis,9532,464,,502,Parliament,"['835797426229256192']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=241586,"['Liberal Party of Australia']","Gilmore, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Anne Mp Ms Stanley,"14458, 9533",465,,502,Parliament,"['718781363898322944']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265990,"['Australian Labor Party']","Werriwa, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Anthony Byrne Hon Mp,"14455, 9534",465,,502,Parliament,"['259477075']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=008K0, https://www.anthonybyrnemp.com/","['Deputy Chair of Parliamentary Joint Committee on Intelligence and Security']","Holt, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Barnaby Hon Joyce Mp,"14454, 9535",467,,502,Parliament,"['114936799']",The Nationals,"https://www.barnabyjoyce.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E5D","['Deputy Prime Minister']","New England, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Bert Manen Mp Mr Van,"9536, 14452","573, 464",,502,Parliament,"['131986906']","Liberal National Party of Queensland, Liberal Party of Australia",https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=188315,"['Government Whip']","Forde, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Bill Hon Mp Shorten,"14451, 9537",465,,502,Parliament,"['137198586']",Australian Labor Party,"https://www.billshorten.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00ATG","['Leader of the Opposition']","Maribyrnong, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Brendan Hon Mp O'Connor,"9538, 14449",465,,502,Parliament,"['611598902']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AN3, https://www.brendanoconnor.com.au/","['Australian Labor Party']","Gorton, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Bowen Chris Hon Mp,"9539, 14444",465,,502,Parliament,"['150856088']",Australian Labor Party,"https://www.chrisbowen.net, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DZS","['Australian Labor Party']","McMahon, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Brian Mitchell Mp Mr,"9540, 14448",465,,502,Parliament,"['16663973']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=129164,"['Australian Labor Party']","Lyons, Tasmania",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Andrew Broad Mp Mr,9541,467,,502,Parliament,"['1401187418']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=30379,"['Chair of Standing Committee on the Environment and Energy']","Mallee, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63810 +Broadbent Mp Mr Russell,"14351, 9542",464,,502,Parliament,"['2388106568']",Liberal Party of Australia,"https://facebook.com/russell.broadbent.94, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=MT4","['Liberal Party of Australia']","McMillan, Victoria, Monash, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Cathy Mp Ms O'Toole,9543,465,,502,Parliament,"['808712768']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249908,"['Australian Labor Party']","Herbert, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Catherine Hon King Mp,"9544, 14446",465,,502,Parliament,"['47273818']",Australian Labor Party,"https://www.catherineking.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AMR","['Australian Labor Party']","Ballarat, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Chris Crewther Mp Mr,9545,464,,502,Parliament,"['66919987']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=248969,"['Liberal Party of Australia']","Dunkley, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Clare Mp Ms O'Neil,"14441, 9547",465,,502,Parliament,"['57906313']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=140590, https://clareoneil.com","['Australian Labor Party']","Hotham, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Christian Hon Mp Porter,"9548, 14442",464,,502,Parliament,"['1559788717']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=208884, https://www.christianporter.com.au","['Minister for Social Services']","Pearce, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Christopher Hon Mp Pyne,9549,464,,502,Parliament,"['2592733051']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=9V5,"['Leader of the House']","Sturt, South Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Craig Kelly Mp Mr,"9550, 14440",464,,502,Parliament,"['211371719']",Liberal Party of Australia,"https://www.craigkelly.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=99931","['Chair of Parliamentary Joint Committee on Law Enforcement']","Hughes, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +David Littleproud Mp Mr,"9551, 14432","467, 573",,502,Parliament,"['780554980847517696']","The Nationals, Liberal National Party of Queensland","https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265585, https://www.facebook.com/littleproud4maranoa/","['The Nationals']","Maranoa, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Damian Drum Hon Mp,"14439, 9552",467,,502,Parliament,"['2393667362']",The Nationals,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=56430, https://damiandrum.com.au/","['Chief Nationals Whip']","Murray, Victoria, Nicholls, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Dan Hon Mp Tehan,"14438, 9553",464,,502,Parliament,"['139052672']",Liberal Party of Australia,"https://www.dantehan.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=210911","['Minister Assisting the Prime Minister for Cyber Security']","Wannon, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Chester Darren Hon Mp,"14436, 9554",467,,502,Parliament,"['514866289']",The Nationals,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=IPZ, https://www.darrenchester.com","['Minister for Infrastructure and Transport']","Gippsland, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +David Dr Gillespie Hon Mp,"14433, 9555",467,,502,Parliament,"['127083666']",The Nationals,"https://www.davidgillespie.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=72184","['Assistant Minister for Health']","Lyne, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Coleman David Mp Mr,"9556, 14434",464,,502,Parliament,"['1924883101']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=241067, none","['Chair of House of Representatives Standing Committee on Economics']","Banks, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Emma Mcbride Mp Ms,9557,465,,502,Parliament,"['702698265695760000']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=248353,"['Australian Labor Party']","Dobell, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Emma Husar Mp Ms,9558,465,,502,Parliament,"['112383045']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=263328,"['Australian Labor Party']","Lindsay, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Fitzgibbon Hon Joel Mp,"14412, 9559",465,,502,Parliament,"['147869440']",Australian Labor Party,"https://joelfitzgibbon.com, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=8K6","['Australian Labor Party']","Hunter, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Brodtmann Gai Mp Ms,9560,465,,502,Parliament,"['486335150']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=30540,"['Deputy Chair of Joint Standing Committee on the National Capital and External Territories']","Canberra, Australian Capital Territory",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Christensen George Mp Mr,9561,467,,502,Parliament,"['17338684']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=230485,"['Chair of Joint Committee on Publications']","Dawson, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63810 +Graham Mp Mr Perrett,"14422, 9562",465,,502,Parliament,"['251976625']",Australian Labor Party,"https://grahamperrettmp.com, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HVP","['Opposition Whip']","Moreton, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Greg Hon Hunt Mp,"9563, 14421",464,,502,Parliament,"['60483082']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AMV,"['Minister for Health']","Flinders, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Goodenough Ian Mp Mr,"9564, 14419",464,,502,Parliament,"['2579671633']",Liberal Party of Australia,"https://www.IanGoodenough.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=74046","['Chair of Parliamentary Joint Committee on Human Rights']","Moore, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Ao Cathy Mcgowan Mp Ms,9565,471,,502,Parliament,"['364814582']",Independent,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=123674,"['Independent']","Indi, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38, +Hon Jane Mp Prentice,9566,464,,502,Parliament,"['259148388']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=217266,"['Assistant Minister for Social Services and Disability Services']","Ryan, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Clare Hon Jason Mp,"14417, 9567",465,,502,Parliament,"['88859872']",Australian Labor Party,"https://www.jasonclare.com.au/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWL","['Australian Labor Party']","Blaxland, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Falinski Jason Mp Mr,"9568, 14416",464,,502,Parliament,"['759921684543451136']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=G86,"['Liberal Party of Australia']","Mackellar, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Jason Mp Mr Wood,"9569, 14415",464,,502,Parliament,"['74049076']",Liberal Party of Australia,"https://www.facebook.com/JasonWood.Updates, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E0F","['Chair of Joint Standing Committee on Migration']","La Trobe, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Chalmers Dr Jim Mp,"14414, 9570",465,,502,Parliament,"['258124400']",Australian Labor Party,"https://jimchalmers.org, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=37998","['Australian Labor Party']","Rankin, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Elliot Hon Justine Mp,"9571, 14401",465,,502,Parliament,"['2464473097']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DZW, none","['Deputy Chair of Standing Committee on Petitions']","Richmond, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Joanne Mp Ms Ryan,"9573, 14413",465,,502,Parliament,"['1631812358']",Australian Labor Party,"https://joanneryan.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249224","['Opposition Whip']","Lalor, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Dr John Mcveigh Mp,"9574, 14410","573, 464",,502,Parliament,"['929086908']","Liberal National Party of Queensland, Liberal Party of Australia",https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=125865,"['Chair of Select Committee on Regional Development and Decentralisation']","Groom, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Frydenberg Hon Josh Mp,"14408, 9575",464,,502,Parliament,"['63942152']",Liberal Party of Australia,"https://www.joshfrydenberg.com.au/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=FKL","['Minister for the Environment and Energy']","Kooyong, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Josh Mp Mr Wilson,9576,465,,502,Parliament,"['785375839965683712']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265970,"['Deputy Chair of Joint Standing Committee on the National Broadband Network']","Fremantle, Western Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Banks Julia Mp Ms,9577,464,,502,Parliament,"['753170760252784641']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=18661,"['Liberal Party of Australia']","Chisholm, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Hill Julian Mp Mr,"9578, 14406",465,,502,Parliament,"['750658704949678081']",Australian Labor Party,"https://www.julianhillmp.com, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=86256","['Deputy Chair of Joint Committee of Public Accounts and Audit']","Bruce, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Julian Leeser Mp Mr,"14405, 9579",464,,502,Parliament,"['2594661042']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=109556, https://www.facebook.com/JulianLeeserMP","['Liberal Party of Australia']","Berowra, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Bishop Hon Julie Mp,9580,464,,502,Parliament,"['89856037']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=83P,"['Minister for Foreign Affairs']","Curtin, Western Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Collins Hon Julie Mp,"9581, 14403",465,,502,Parliament,"['812382313']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWM, https://www.juliecollins.com","['Australian Labor Party']","Franklin, Tasmania",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Julie Mp Ms Owens,"14402, 9582",465,,502,Parliament,"['114596660']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E09, https://www.julieowens.com.au","['Deputy Chair of Standing Committee on Appropriations and Administration']","Parramatta, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Justine Keay Mp Ms,9583,465,,502,Parliament,"['1637230910']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=262273,"['Deputy Chair of Standing Committee on Agriculture and Water Resources']","Braddon, Tasmania",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Andrews Hon Karen Mp,"9584, 14400","573, 464",,502,Parliament,"['47318173']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=230886, https://www.karenandrewsmp.com","['Assistant Minister for Vocational Education and Skills']","McPherson, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Ellis Hon Kate Mp,9585,465,,502,Parliament,"['22753831']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DZU,"['Australian Labor Party']","Adelaide, South Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Hon Keith Mp Pitt,"14397, 9586","467, 573",,502,Parliament,"['399832616']","The Nationals, Liberal National Party of Queensland","https://www.keithpitt.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=148150","['Assistant Minister for Trade']","Hinkler, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Hon Kelly Mp O'Dwyer,9587,464,,502,Parliament,"['41543509']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=LKU,"['Minister for Revenue and Financial Services']","Higgins, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Ken Mp Mr O'Dowd,"14396, 9588","467, 573",,502,Parliament,"['3252206005']","The Nationals, Liberal National Party of Queensland","https://www.kenodowd.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=139441","['Chair of Joint Standing Committee on Trade and Investment Growth']","Flynn, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Am Hon Ken Mp Wyatt,"9589, 14395",464,,502,Parliament,"['196039332']",Liberal Party of Australia,"https://www.kenwyatt.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=M3A","['Minister for Aged Care']","Hasluck, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Andrews Hon Kevin Mp,"9590, 14394",464,,502,Parliament,"['252331819']",Liberal Party of Australia,"https://kevinandrews.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HK5","['Chair of Joint Standing Committee on the National Disability Insurance Scheme']","Menzies, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Hogan Kevin Mp Mr,"9591, 14393",467,,502,Parliament,"['859024531']",The Nationals,"https://www.kevinhogan.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=218019","['Chair of Standing Committee on Tax and Revenue']","Page, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Craig Hon Laundy Mp,9592,464,,502,Parliament,"['2200705141']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=247130,"['Assistant Minister for Industry']","Reid, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Burney Hon Linda Mp,"14391, 9593",465,,502,Parliament,"['157861165']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=8GH,"['Australian Labor Party']","Barton, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Llew Mp Mr O'Brien,"14389, 9594","467, 573",,502,Parliament,"['749898673648119808']","The Nationals, Liberal National Party of Queensland","https://www.llewobrien.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265991","['The Nationals']","Wide Bay, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Chesters Lisa Mp Ms,"14390, 9595",465,,502,Parliament,"['96088711']",Australian Labor Party,"https://www.lisachesters.org, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249710","['Australian Labor Party']","Bendigo, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Lucy Mp Mrs Wicks,"9596, 14388",464,,502,Parliament,"['2293950596']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=241590, https://www.lucywicks.com.au","['Chair of Standing Committee on Petitions']","Robertson, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Hartsuyker Hon Luke Mp,9597,467,,502,Parliament,"['2225832145']",The Nationals,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AMM,"['Assistant Minister to the Deputy Prime Minister']","Cowper, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63810 +Howarth Luke Mp Mr,"14386, 9598","573, 464",,502,Parliament,"['4882704458']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.lukehowarth.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=247742","['Chair of House of Representatives Standing Committee on Communications and the Arts']","Petrie, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Gosling Luke Mp Mr Oam,"14387, 9599",465,,502,Parliament,"['249616322']",Australian Labor Party,"https://www.lukegosling.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=245392","['Deputy Chair of Standing Committee on Industry, Innovation, Science and Resources']","Solomon, Northern Territory",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Hon Mccormack Michael Mp,"9600, 14375",467,,502,Parliament,"['1195051945']",The Nationals,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=219646, https://michaelmccormack.com.au","['Minister for Small Business']","Riverina, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +King Madeleine Mp Ms,"14385, 9601",465,,502,Parliament,"['2902145304']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=102376, none","['Deputy Chair of Publications Committee']","Brand, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Mp Ms Rebekha Sharkie,"14357, 9602","503, 468",,502,Parliament,"['4253031505']","Centre Alliance, Nick Xenophon Team",https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265980,"['Nick Xenophon Team']","Mayo, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38", +Hon Mp Snowdon Warren,"14325, 9603",465,,502,Parliament,"['619738680']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=IJ4, https://www.warrensnowdon.com","['Deputy Chair of Joint Standing Committee on Northern Australia']","Lingiari, Northern Territory",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Maria Mp Ms Vamvakinou,"9604, 14384",465,,502,Parliament,"['308935814']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AMT, https://www.mariavamvakinou.com","['Deputy Chair of Joint Standing Committee on Migration']","Calwell, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Butler Hon Mark Mp,"9605, 14383",465,,502,Parliament,"['220883243']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWK, none","['Australian Labor Party']","Port Adelaide, South Australia, Hindmarsh, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Coulton Mark Mp Mr,"14382, 9606",467,,502,Parliament,"['481708709']",The Nationals,"https://www.markcoulton.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWN","['Deputy Speaker']","Parkes, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Dreyfus Hon Mark Mp Qc,"14381, 9607",465,,502,Parliament,"['4846185439']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWG, https://markdreyfus.nationbuilder.com/","['Deputy Manager of Opposition Business']","Isaacs, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Keogh Matt Mp Mr,"9608, 14380",465,,502,Parliament,"['18826874']",Australian Labor Party,"https://www.mattkeogh.com, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249147","['Australian Labor Party']","Burt, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Melissa Mp Ms Price,"14377, 9609",464,,502,Parliament,"['753759070750998529']",Liberal Party of Australia,"https://melissapricemp.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249308","['Chair of Standing Committee on Indigenous Affairs']","Durack, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Meryl Mp Ms Swanson,"14376, 9610",465,,502,Parliament,"['1586960762']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=264170,"['Deputy Chair of Select Committee on Regional Development and Decentralisation']","Paterson, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Danby Hon Michael Mp,9611,465,,502,Parliament,"['1355670182']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=WF6,"['Deputy Chair of Joint Standing Committee on Treaties']","Melbourne Ports, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Hon Keenan Michael Mp,9612,464,,502,Parliament,"['3476724493']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E0J,"['Minister Assisting the Prime Minister for Counter-Terrorism']","Stirling, Western Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Hon Michael Mp Sukkar,"14374, 9613",464,,502,Parliament,"['1796057425']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=242515, https://www.michaelsukkar.com.au","['Assistant Minister to the Treasurer']","Deakin, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Am Dr Hon Kelly Mike Mp,"14370, 9614",465,,502,Parliament,"['167699332']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HRI, https://www.facebook.com/MikeKellyEdenMonaro","['Australian Labor Party']","Eden-Monaro, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Dick Milton Mp Mr,"14369, 9615",465,,502,Parliament,"['243944570']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=53517, https://www.miltondick.com.au","['Deputy Chair of Standing Committee on Procedure']","Oxley, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Landry Michelle Mp Ms,"14373, 9616","467, 573",,502,Parliament,"['848758017084477441']","The Nationals, Liberal National Party of Queensland","https://michellelandry.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249764","['Deputy Nationals Whip']","Capricornia, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63810 +Michelle Mp Ms Rowland,"14372, 9617",465,,502,Parliament,"['210702383']",Australian Labor Party,"https://www.facebook.com/mrowlandmp, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=159771","['Australian Labor Party']","Greenway, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Hon Matt Mp Thistlethwaite,"14379, 9618",465,,502,Parliament,"['87395643']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=182468, https://www.mattthistlethwaite.com.au","['Deputy Chair of House of Representatives Standing Committee on Economics']","Kingsford Smith, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Champion Mp Mr Nick,"9619, 14368",465,,502,Parliament,"['85951515']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HW9, none","['Deputy Chair of Joint Standing Committee on Foreign Affairs, Defence and Trade']","Wakefield, South Australia, Spence, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Flint Mp Ms Nicolle,"14367, 9620",464,,502,Parliament,"['2400738924']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=245550,"['Liberal Party of Australia']","Boothby, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Marino Mp Mrs Nola,"9621, 14366",464,,502,Parliament,"['569737805']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWP, https://nolamarino.com.au","['Chief Government Whip']","Forrest, Western Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Conroy Mp Mr Pat,"14364, 9623",465,,502,Parliament,"['419903034']",Australian Labor Party,"https://www.patconroy.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=249127","[""Deputy Chair of Standing Committee of Privileges and Members' Interests""]","Shortland, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Fletcher Hon Mp Paul,"9624, 14362",464,,502,Parliament,"['77896983']",Liberal Party of Australia,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=L6B, https://paulfletcher.com.au","['Minister for Urban Infrastructure']","Bradfield, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Dutton Hon Mp Peter,"14360, 9625","573, 464",,502,Parliament,"['20559705']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.peterdutton.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AKI","['Minister for Immigration and Border Protection']","Dickson, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Khalil Mp Mr Peter,"14359, 9626",465,,502,Parliament,"['253342973']",Australian Labor Party,"https://www.peterkhalil.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=101351","['Australian Labor Party']","Wills, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Bob Hon Katter Mp,"9627, 14450",475,,502,Parliament,"['310726037']",Katter's Australian Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HX4, none","[""Katter's Australian Party""]","Kennedy, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63710 +Hon Marles Mp Richard,"9628, 14356",465,,502,Parliament,"['485139839']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWQ, https://www.richardmarles.com.au/","['Australian Labor Party']","Corio, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Mitchell Mp Mr Rob,"14354, 9629",465,,502,Parliament,"['198056642']",Australian Labor Party,"https://www.robmitchell.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=M3E","['Australian Labor Party']","McEwen, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Hart Mp Mr Ross,9630,465,,502,Parliament,"['735962595555823616']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=263070,"['Australian Labor Party']","Bass, Tasmania",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Mp Mr Ramsey Rowan,"14352, 9631",464,,502,Parliament,"['1544916589']",Liberal Party of Australia,"https://rowanramsey.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWS","['Government Whip']","Grey, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Buchholz Mp Mr Scott,"14350, 9632","573, 464",,502,Parliament,"['252833329']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=230531, https://www.scottbuchholz.com.au","['Chair of Parliamentary Standing Committee on Public Works']","Wright, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Hon Morrison Mp Scott,"9633, 14349",464,,502,Parliament,"['34116377']",Liberal Party of Australia,"https://www.liberal.org.au/sign-up, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=E3L","['Liberal Party of Australia']","Cook, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Bird Hon Mp Sharon,"9634, 14348",465,,502,Parliament,"['92648503']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DZP, https://www.sharonbird.com.au","['Deputy Chair of Standing Committee on Infrastructure, Transport and Cities']","Cunningham, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Claydon Mp Ms Sharon,"14347, 9635",465,,502,Parliament,"['1075527246']",Australian Labor Party,"https://www.sharonclaydon.com, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=248181","['Deputy Chair of Standing Committee on Social Policy and Legal Affairs']","Newcastle, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Hon Mp Neumann Shayne,"9636, 14346",465,,502,Parliament,"['117717402']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HVO, https://www.shayneneumann.com.au","['Australian Labor Party']","Blair, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Henderson Mp Ms Sarah,9637,464,,502,Parliament,"['116975334']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=ZN4,"['Chair of Standing Committee on Social Policy and Legal Affairs']","Corangamite, Victoria",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Mp Ms Susan Templeman,"9638, 14341",465,,502,Parliament,"['850633596']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=181810, https://susantempleman.com.au","['Australian Labor Party']","Macquarie, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Jones Mp Mr Stephen,9639,465,,502,Parliament,"['284933456']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=A9B,"['Australian Labor Party']","Whitlam, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Georganas Mp Mr Steve,"14344, 9640",465,,502,Parliament,"['104087034']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DZY, https://www.facebook.com/steve.georganas","['Deputy Chair of Standing Committee on Health, Aged Care and Sport']","Hindmarsh, South Australia, Adelaide, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Irons Mp Mr Steve,9641,464,,502,Parliament,"['22147650']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HYM,"['Chair of Parliamentary Joint Committee on Corporations and Financial Services']","Swan, Western Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Ciobo Hon Mp Steven,9642,464,,502,Parliament,"['16796812']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AN0,"['Minister for Trade']","Moncrieff, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Hon Mp Robert Stuart,"9643, 14342","573, 464",,502,Parliament,"['21961243']","Liberal National Party of Queensland, Liberal Party of Australia","https://www.robert.com.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=HWT","['Chair of Joint Standing Committee on Treaties']","Fadden, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Lamb Mp Ms Susan,9644,465,,502,Parliament,"['3636891372']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=265975,"['Australian Labor Party']","Longman, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Hon Ley Mp Sussan,"14340, 9645",464,,502,Parliament,"['92862419']",Liberal Party of Australia,"https://www.sussanley.com, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=00AMN","['Chair of Joint Standing Committee on the National Broadband Network']","Farrer, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Hon Mp Swan Wayne,9646,465,,502,Parliament,"['267570919']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=2V5,"['Australian Labor Party']","Lilley, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Hon Mp Plibersek Tanya,"14339, 9647",465,,502,Parliament,"['307755781']",Australian Labor Party,"https://www.tanyaplibersek.com/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=83M","['Deputy Leader of the Opposition']","Sydney, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Mp Mr O'Brien Ted,9648,464,,502,Parliament,"['3241171038']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=138932,"['Liberal Party of Australia']","Fairfax, Queensland",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Butler Mp Ms Terri,"9649, 14337",465,,502,Parliament,"['44334649']",Australian Labor Party,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=248006, https://terributlermp.com","['Deputy Chair of Standing Committee on Employment, Education and Training']","Griffith, Queensland",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Hammond Mp Mr Tim,9650,465,,502,Parliament,"['47356637']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=80109,"['Australian Labor Party']","Perth, Western Australia",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63320 +Mp Mr Tim Watts,"14335, 9651",465,,502,Parliament,"['14294400']",Australian Labor Party,"https://timwatts.net.au, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=193430","['Deputy Chair of House of Representatives Standing Committee on Communications and the Arts']","Gellibrand, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Mp Mr Tim Wilson,"9652, 14334",464,,502,Parliament,"['20742888']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=IMW,"['Liberal Party of Australia']","Goldstein, Victoria",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Burke Hon Mp Tony,"9653, 14333",465,,502,Parliament,"['22887941']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=DYW,"['Acting Manager of Opposition Business in the Senate']","Watson, New South Wales",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63320 +Abbott Hon Mp Tony,9654,464,,502,Parliament,"['93766096']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=EZ5,"['Liberal Party of Australia']","Warringah, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Mp Mr Pasin Tony,"14332, 9655",464,,502,Parliament,"['1918770822']",Liberal Party of Australia,"https://www.tonypasin.com/, https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=240756","['Chair of Standing Committee on Procedure']","Barker, South Australia",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=2&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",63620 +Hon Malcolm Mp Turnbull,9657,464,,502,Parliament,"['16734909']",Liberal Party of Australia,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=885,"['Prime Minister']","Wentworth, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1,,Australia,1,38,63620 +Andrew Mp Mr Wilkie,"9659, 14463","2, 471",,502,Parliament,"['398422158']",Independent,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=C2T, https://andrewwilkie.org","['Independent']","Denison, Tasmania, Clark, Tasmania",,"https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?page=3&q=&mem=1&sen=1&par=-1&gen=0&ps=100&st=1, https://www.aph.gov.au/Senators_and_Members/Members",,Australia,1,"48, 38",0 +Gerstl Mag. Wolfgang,"15909, 9660",476,,514,Parliament,"['96791014']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_67199/index.shtml,,W,9E Wien Süd-West,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Dr. Mag. Wolfgang Zinggl,9661,477,,514,Parliament,"['1101093044']",The Peter Pilz List,https://www.parlament.gv.at/WWER/PAD_22573/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Mölzer Wendelin,9662,478,,514,Parliament,"['865171885']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_36187/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Andreas Mag. Schieder,"12721, 9663","289, 479",30,"514, 312",Parliament,"['15749452']","Sozialdemokratische Partei Österreichs, Social Democratic Party",https://www.parlament.gv.at/WWER/PAD_35504/index.shtml,,"W, Austria",9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,"European Parliament, Austria","2, 27","43, 37",42320 +Bruno Mag. Rossmann,9664,477,,514,Parliament,"['2207184570']",The Peter Pilz List,https://www.parlament.gv.at/WWER/PAD_35516/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Dr. Lopatka Reinhold,"15966, 9665",476,,514,Parliament,"['816879318']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_15526/index.shtml,,St,6B Oststeiermark,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Mag. Philipp Schrangl,"9666, 16012",478,,514,Parliament,"['393965843']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_83134/index.shtml,,"O, BWV","B Bundeswahlvorschlag, 4A Linz und Umgebung","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42420 +Kucher Philip,"9667, 15954",479,,514,Parliament,"['16097307']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_83113/index.shtml,,K,"2 Kärnten, 2A Klagenfurt","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Dr. Peter Pilz,9668,477,,514,Parliament,"['168482405']",The Peter Pilz List,https://www.parlament.gv.at/WWER/PAD_01210/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Bernhard Michael,"9669, 15879",480,,514,Parliament,"['174998008']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_83124/index.shtml,,BWV,B Bundeswahlvorschlag,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42430 +Ing. Lugar Robert,9670,478,,514,Parliament,"['703591886']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_51579/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Jan Kai Krainer,"15951, 9671",479,,514,Parliament,"['739507654746378240']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_14842/index.shtml,,W,"9 Wien, 9A Wien Innen-Süd","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Dr. Jessi Lintl,9672,478,,514,Parliament,"['2884569563']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_83142/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Ba Daniela Holzinger-Vogtenhuber,9673,477,,514,Parliament,"['201017209']",The Peter Pilz List,https://www.parlament.gv.at/WWER/PAD_83111/index.shtml,,O,4 Oberösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Christian Höbart Ing.,9674,478,,514,Parliament,"['414703976']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_51562/index.shtml,,N,3F Wien Umgebung,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Christian Hafenecker Ma,"9675, 15918",478,,514,Parliament,"['150739282']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_78586/index.shtml,,N,3D Niederösterreich Mitte,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42420 +Gerald Loacker Mag.,"9676, 15965",480,,514,Parliament,"['1540692565']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_83121/index.shtml,,BWV,"B Bundeswahlvorschlag, 8 Vorarlberg","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42430 +Deimek Dipl.-Ing. Gerhard,"15889, 9677",478,,514,Parliament,"['574351267']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_51557/index.shtml,,O,"4D Traunviertel, 4 Oberösterreich","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42420 +Gabriel Obernosterer,9678,476,,514,Parliament,"['758952162']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_35487/index.shtml,,K,2 Kärnten,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42520 +Friedrich Mag. Ofenauer,"9679, 15984",476,,514,Parliament,"['791530405']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_83300/index.shtml,,N,3D Niederösterreich Mitte,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Nurten Yılmaz,"9680, 16050",479,,514,Parliament,"['1543602474']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_83117/index.shtml,,W,9F Wien Nord-West,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Erwin Preiner,9681,479,,514,Parliament,"['886202991707131904']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_30011/index.shtml,,B,1A Burgenland Nord,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42320 +Dipl.-Ing. Doppelbauer Karin,"15892, 9682",480,,514,Parliament,"['866176167971360769']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_91141/index.shtml,,O,4 Oberösterreich,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42430 +Cornelia Ecker,"9683, 15895",479,,514,Parliament,"['895085701070331904']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_83109/index.shtml,,S,5 Salzburg,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Carmen Schimanek,9684,478,,514,Parliament,"['1252282256']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_51559/index.shtml,,T,7 Tirol,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Belakowitsch Dagmar Dr.,"9685, 15877",478,,514,Parliament,"['518358904']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_35468/index.shtml,,BWV,"B Bundeswahlvorschlag, 9 Wien","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42420 +Bayr Ma Mls Petra,"9686, 15875",479,,514,Parliament,"['590798448']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_14835/index.shtml,,W,9D Wien Süd,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Angelika Dr. Winzig,"12734, 9687","476, 238",29,"256, 514",Parliament,"['1620533268']","Austrian People's Party, Österreichische Volkspartei",https://www.parlament.gv.at/WWER/PAD_60878/index.shtml,,"O, Austria",4C Hausruckviertel,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,"European Parliament, Austria","2, 27","43, 37",42520 +Andreas Hanger Mag.,"9688, 15923",476,,514,Parliament,"['3367085355']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_83148/index.shtml,,N,3C Mostviertel,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Brückl Hermann,9689,478,,514,Parliament,"['2991799151']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_61639/index.shtml,,O,4B Innviertel,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Androsch Ing. Maurice,9753,479,,514,Parliament,"['4924192780']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_73000/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42320 +(Fh) Bißmann Dipl.-Ing. Martha,9756,481,,514,Parliament,"['713964643']",OK,https://www.parlament.gv.at/WWER/PAD_02349/index.shtml,,St,6 Steiermark,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Dönmez Efgani Pmm,9758,481,,514,Parliament,"['264187690']",OK,https://www.parlament.gv.at/WWER/PAD_47067/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Drozda Mag. Thomas,"15894, 9759",479,,514,Parliament,"['989554376']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_88629/index.shtml,,BWV,B Bundeswahlvorschlag,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Einwallner Ing. Reinhold,"9761, 15897",479,,514,Parliament,"['214079064']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_24257/index.shtml,,V,8 Vorarlberg,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Engelberg Mag. Martin,"15899, 9762",476,,514,Parliament,"['111102286']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_01976/index.shtml,,BWV,B Bundeswahlvorschlag,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +(Wu) Claudia Gamon Msc,"12830, 9768","306, 480",63,514,Parliament,"['37776042']","NEOS – Das Neue Österreich, The New Austria and Liberal Forum",https://www.parlament.gv.at/WWER/PAD_86976/index.shtml,,"W, Austria",9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,"European Parliament, Austria","2, 27","43, 37",42430 +Dr. Griss Irmgard,9773,480,,514,Parliament,"['3977948775']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_02342/index.shtml,,St,6 Steiermark,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42430 +Gruber Renate,9775,479,,514,Parliament,"['756103400157249537']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_03445/index.shtml,,N,3C Mostviertel,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42320 +Gudenus Johann M.A.I.S. Mag.,9777,478,,514,Parliament,"['510411966']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_18665/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Hochstetter-Lackner Irene,9780,479,,514,Parliament,"['837560057424314368']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02296/index.shtml,,K,2 Kärnten,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42320 +Bsc Eva Holzleitner Maria,"15934, 9781",479,,514,Parliament,"['980885362993180672']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02309/index.shtml,,O,4 Oberösterreich,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Franz Hörl,"15935, 9782",476,,514,Parliament,"['739471985265266689']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_35489/index.shtml,,T,7 Tirol,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Ba Carmen Jeitler-Cincelli Mag.,"15938, 9785",476,,514,Parliament,"['46350978']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_01981/index.shtml,,N,"3F Thermenregion, 3F Wien Umgebung","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Hans-Jörg Jenewein Ma,9786,478,,514,Parliament,"['543297567']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_62360/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Ba Kaufmann Martina Mmsc,"15942, 9789",476,,514,Parliament,"['19530594']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_01983/index.shtml,,St,6A Graz und Umgebung,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Andreas Kollross,"9791, 15948",479,,514,Parliament,"['2772835668']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_18666/index.shtml,,N,"3F Thermenregion, 3F Wien Umgebung","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Christian Kovacevic,9792,479,,514,Parliament,"['934883197762011136']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02328/index.shtml,,T,7 Tirol,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42320 +Dr. Krisper Stephanie,"9794, 15952",480,,514,Parliament,"['256020864']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_02344/index.shtml,,W,9 Wien,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42430 +Dr. Gudrun Kugler,"15955, 9795",476,,514,Parliament,"['2244017653']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_01986/index.shtml,,W,9G Wien Nord,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Jörg Leichtfried Mag.,"15961, 9799",479,,514,Parliament,"['862795896']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_22694/index.shtml,,St,"6 Steiermark, 6D Obersteiermark","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Lindner Mario,9802,479,,514,Parliament,"['393994997']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_86613/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42320 +Marchetti Nico,"15968, 9804",476,,514,Parliament,"['2711524718']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_02122/index.shtml,,W,9D Wien Süd,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Beate Mag. Meinl-Reisinger Mes,"9806, 15972",480,,514,Parliament,"['444969570']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_83122/index.shtml,,BWV,"B Bundeswahlvorschlag, 9 Wien","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42430 +Karl Msc Nehammer,9807,476,,514,Parliament,"['183542655']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_02136/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42520 +Mag. Nussbaum Verena,"9810, 15981",479,,514,Parliament,"['935515865453297664']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02334/index.shtml,,St,6A Graz und Umgebung,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Ing. Mag. Reifenberger Volker,"9815, 15993",478,,514,Parliament,"['4861442225']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_03717/index.shtml,,S,"5B Flachgau/Tennengau, 5 Salzburg","https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42420 +Sabine Schatz,"9823, 16003",479,,514,Parliament,"['1533776071']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02337/index.shtml,,O,4E Mühlviertel,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42320 +Dr. Ma Nikolaus Scherak,"9824, 16005",480,,514,Parliament,"['140398719']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_83125/index.shtml,,N,3 Niederösterreich,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42430 +Christoph Stark,"9830, 16025",476,,514,Parliament,"['88396316']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_02327/index.shtml,,St,6B Oststeiermark,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Sandra Wassermann,9836,478,,514,Parliament,"['517935606']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_01866/index.shtml,,K,2 Kärnten,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37,42420 +Mag. Peter Weidinger,"16043, 9837",476,,514,Parliament,"['1926452634']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_02331/index.shtml,,K,2 Kärnten,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Alma Dr. Ll.M. Zadić,9841,477,,514,Parliament,"['909751053754802181']",The Peter Pilz List,https://www.parlament.gv.at/WWER/PAD_02345/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=,,Austria,2,37, +Christoph Zarits,"16052, 9842",476,,514,Parliament,"['900818098743390208']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_02332/index.shtml,,B,1A Burgenland Nord,"https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=, https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&BL=ALLE&STEP=1110&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&LISTE=&jsMode=&requestId=079879C646&R_PBW=PLZ&W=W&WP=ALLE&R_WF=FR&listeId=2&PLZ=",,Austria,2,"55, 37",42520 +Kropiwnicki Robert,"14747, 9843","574, 482",,520,Parliament,"['1323372872']","Civic Coalition, Civic Platform","https://www.robertkropiwnicki.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=187&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Dworczyk Michał,"14865, 9844",483,,520,Parliament,"['2776583390']",Law and Justice,"none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=077&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Agnieszka Pomaska,"14632, 9845","574, 482",,520,Parliament,"['44146348']","Civic Coalition, Civic Platform","https://www.pomaska.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=308&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Dobrzyński Leszek,"14873, 9847",483,,520,Parliament,"['2979663893']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=068&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Siemoniak Tomasz,"9848, 14594","574, 482",,520,Parliament,"['64759001']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=347&type=A, https://tomaszsiemoniak.com",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Cezary Tomczyk,"9849, 14540","574, 482",,520,Parliament,"['52367150']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=404&type=A, https://www.cezarytomczyk.eu",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Błaszczak Mariusz,"14911, 9850",483,,520,Parliament,"['138048156']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=031&type=A, https://www.mariuszblaszczak.pl","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Michał Szczerba,"14563, 9851","574, 482",,520,Parliament,"['58919878']","Civic Coalition, Civic Platform","https://www.facebook.com/posel.szczerba/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=372&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Augustynowska Joanna,9852,482,,520,Parliament,"['3502072935']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=014&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Joanna Lichocka,"9853, 14720",483,,520,Parliament,"['59783143']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=214&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Nitras Sławomir,"9854, 14671","574, 482",,520,Parliament,"['74463657']","Civic Coalition, Civic Platform","https://m.facebook.com/SlawomirNitras/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=274&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Elżbieta Rafalska,"12892, 9856","483, 223",33,"239, 520",Parliament,"['369367937']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=318&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Gosiewska Małgorzata,"9857, 14821",483,,520,Parliament,"['2473087891']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=109&type=A, https://malgorzatagosiewska.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Brejza Krzysztof,9858,482,,520,Parliament,"['87795577']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=039&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Lisiecki Paweł,"9859, 14717",483,,520,Parliament,"['843961716']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=219&type=A, https://www.lisieckipawel.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Pięta Stanisław,9861,483,,520,Parliament,"['1225292564']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=300&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Gowin Jarosław,"9863, 14820",483,,520,Parliament,"['580682368']",Law and Justice,"https://jgowin.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=111&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Artur Gierada,9864,482,,520,Parliament,"['151506536']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=098&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Jacek Kosecki Roman,9865,482,,520,Parliament,"['3238584581']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=173&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Piotr Zgorzelski,"14488, 9866","484, 576",,520,Parliament,"['1070635531447558144', '798860887']","Polish People's Party-Kukiz15, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=449&type=A, https://www.piotrzgorzelski.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Czernow Zofia,"14879, 9867","574, 482",,520,Parliament,"['353597901']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=064&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Arent Iwona,"9869, 14927",483,,520,Parliament,"['176356072']",Law and Justice,"https://iwona-arent.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=009&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Adam Andruszkiewicz,"14931, 9873","485, 483",,520,Parliament,"['3106178813']","Kukiz15, Law and Justice","https://www.facebook.com/andruszkiewicz.blog, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=004&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Kamiński Michał,9874,486,,520,Parliament,"['39155275']",Union of European Democrats,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=150&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92410 +Andrzej Halicki,"12730, 9875","175, 482",29,"190, 520",Parliament,"['993849096']","Civic Platform, Platforma Obywatelska",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=119&type=A,"['wiceprzewodniczący klubu']",Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92435 +Czarnecki Przemysław,"9876, 14885",483,,520,Parliament,"['2226493218']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=060&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Cymański Tadeusz,"14888, 9878",483,,520,Parliament,"['2434077481']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=057&type=A, https://www.cymanskitadeusz.pl/","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Abramowicz Adam,9879,483,,520,Parliament,"['919636994233438208']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=001&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Joanna Mucha,"9880, 14681","574, 482",,520,Parliament,"['304445685']","Civic Coalition, Civic Platform","https://www.joannamucha.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=263&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Anita Czerwińska,"14878, 9881",483,,520,Parliament,"['1138039593775878144', '49698291']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=065&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Ewa Kopacz,"12914, 9882","175, 482",29,"190, 520",Parliament,"['110963318']","Civic Platform, Platforma Obywatelska",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=169&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92435 +Adamczyk Andrzej,"9883, 14475",483,,520,Parliament,"['3341340040']",Law and Justice,"https://www.andrzejadamczyk.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=002&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Ajchler Zbigniew,9884,482,,520,Parliament,"['4807806461']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=003&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Andzel Waldemar,"9885, 14930",483,,520,Parliament,"['1048223781456629760']",Law and Justice,"https://www.waldemarandzel.pl/?fbclid=IwAR2plJpGODuvIroKRq96uyEj1YVVovTp3w74qKj4i8twslVrw9yJgmEGmFc, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=005&type=A","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Apel Piotr,9886,485,,520,Parliament,"['158792074']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=006&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Arłukowicz Bartosz,"9888, 12773","175, 482",29,"190, 520",Parliament,"['101561338']","Civic Platform, Platforma Obywatelska",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=010&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92435 +Arndt Paweł,9889,482,,520,Parliament,"['2363889290']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=011&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Ast Marek,"14926, 9890",483,,520,Parliament,"['750985517488021504']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=012&type=A, none","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Augustyn Urszula,"14925, 9891","574, 482",,520,Parliament,"['2219208608']","Civic Coalition, Civic Platform","https://www.urszula-augustyn.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=013&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Aziewicz Tadeusz,"14924, 9892","574, 482",,520,Parliament,"['487455309']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=015&type=A, https://aziewicz.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Babiarz Piotr Łukasz,9893,483,,520,Parliament,"['3297572841']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=017&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Babinetz Piotr,"9894, 14922",483,,520,Parliament,"['882917064368902146', '882917064368902144']",Law and Justice,"https://babinetz.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=018&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Bakun Wojciech,9895,485,,520,Parliament,"['1331117606']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=019&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Bańkowski Paweł,9896,482,,520,Parliament,"['776432770922999808']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=020&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Bartosik Ryszard,"9897, 14920",483,,520,Parliament,"['932521543']",Law and Justice,"https://ryszardbartosik.net, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=021&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Baszko Kazimierz Mieczysław,"14917, 9899","483, 484",,520,Parliament,"['2489560206']","Law and Justice, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=023&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49","92811, 92436" +Bejda Paweł,"9901, 14916","576, 484",,520,Parliament,"['4220337280']","Polish People's Party-Kukiz15, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=025&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Bernacki Włodzimierz,9902,483,,520,Parliament,"['2200176090']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=026&type=A,"['członek prezydium klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Anna Białkowska,9903,482,,520,Parliament,"['864841123084333056']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=027&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Biernat Zbigniew,9906,483,,520,Parliament,"['3736211302']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=030&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Błeńska Magdalena,9907,487,,520,Parliament,"['3817932323']",Republikanie,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=032&type=A,"['wiceprzewodnicząca koła']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Borowczak Jerzy,"14908, 9909","482, 574",,520,Parliament,"['324998471', '1014868371291148295']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=034&type=A, https://www.jerzy-borowczak.pl/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Borowiak Joanna,"9910, 14907",483,,520,Parliament,"['742114575559069696', '742114575559069697']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=035&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Agata Borowiec,9911,483,,520,Parliament,"['3014454207']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=036&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Brynkus Józef,9913,485,,520,Parliament,"['367702897']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=041&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Barbara Bubula,9914,483,,520,Parliament,"['325045979']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=042&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Buczak Wojciech,9915,483,,520,Parliament,"['2860428443']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=043&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Buda Waldemar,"14901, 9916",483,,520,Parliament,"['829412356723769344', '829412356723769347']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=044&type=A, https://www.waldemarbuda.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Borys Budka,"9917, 14900","574, 482",,520,Parliament,"['118739645']","Civic Coalition, Civic Platform","https://facebook.com/BudkaBorys/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=045&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Bożenna Bukiewicz,9918,482,,520,Parliament,"['2424791941']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=046&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Chmiel Małgorzata,"14896, 9920","574, 482",,520,Parliament,"['484048630']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=048&type=A, https://www.malgorzatachmiel.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Barbara Chrobak,9922,485,,520,Parliament,"['4155790576']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=050&type=A,"['rzecznik dyscyplinarny klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Chruszcz Sylwester,9923,485,,520,Parliament,"['3347465938']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=051&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Alicja Chybicka Chybickaalicja,9924,482,,520,Parliament,"['879756935733682180']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=052&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Cichoń Janusz,"14890, 9926","574, 482",,520,Parliament,"['360572667']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=053&type=A, https://januszcichon.pl/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Cieślak Michał,"9927, 14889",483,,520,Parliament,"['2354638418']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=054&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Cieśliński Piotr,9928,482,,520,Parliament,"['156598692']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=055&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Cimoszewicz Tomasz,9929,482,,520,Parliament,"['231295062']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=056&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Adam Cyrański,9930,488,,520,Parliament,"['3654373474']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=058&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Czabański Krzysztof,9931,483,,520,Parliament,"['303313781']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=059&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Andrzej Czerwiński,9935,482,,520,Parliament,"['217569496']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=066&type=A,"['wiceprzewodniczący klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Długi Grzegorz,9937,485,,520,Parliament,"['3542992521']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=067&type=A,"['wiceprzewodniczący klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Duda Elżbieta,"14868, 9942",483,,520,Parliament,"['4773736517']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=073&type=A, https://elzbietaduda.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Artur Dunin,9944,482,,520,Parliament,"['140957301']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=075&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Duszek Marcin,"14866, 9945",483,,520,Parliament,"['3762178815']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=076&type=A, https://duszek.net",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Dzikowski Waldy,"9946, 14860","574, 482",,520,Parliament,"['1379122699']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=079&type=A, none","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Dziuba Tadeusz,9947,483,,520,Parliament,"['376224751']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=080&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Barbara Dziuk,"14859, 9948",483,,520,Parliament,"['822074578965004291']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=081&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Fabisiak Joanna,"14857, 9949","574, 482",,520,Parliament,"['3978860301']","Civic Coalition, Civic Platform","https://www.joannafabisiak.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=082&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Ewa Filipiak,"9951, 14853",483,,520,Parliament,"['369120418']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=084&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Frydrych Joanna,"14851, 9952","574, 482",,520,Parliament,"['779319312989491200']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=085&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Furgo Grzegorz,9953,482,,520,Parliament,"['3580640541']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=086&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Gadowski Krzysztof,"14849, 9954","574, 482",,520,Parliament,"['3091642103']","Civic Coalition, Civic Platform","https://www.gadowski.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=087&type=A","['skarbnik klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Gajewska-Płochocka Kinga,"9955, 14847","574, 482",,520,Parliament,"['1263232465']","Civic Coalition, Civic Platform","https://kingagajewska.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=088&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Galla Ryszard,"9957, 14845","2, 489",,520,Parliament,"['900247742865395712']",Independent,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=090&type=A, https://ryszard-galla.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",0 +Elżbieta Gapińska,"9958, 14844","574, 482",,520,Parliament,"['3254690307']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=091&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Gasiuk-Pihowicz Kamila,"14843, 9959","574, 488",,520,Parliament,"['3401329131']","Modern, Civic Coalition","https://fb.com/Kamila.Gasiuk.Pihowicz, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=092&type=A","['wiceprzewodnicząca klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Gawlik Zdzisław,9960,482,,520,Parliament,"['910102554821963778']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=093&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Gawłowski Stanisław,9961,482,,520,Parliament,"['759356536724525056']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=094&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Andrzej Gawron,"14840, 9962",483,,520,Parliament,"['3131073706']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=095&type=A, https://www.andrzejgawron.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Gądek Lidia,9963,482,,520,Parliament,"['484133123']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=096&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Elżbieta Gelert,"9964, 14837","574, 482",,520,Parliament,"['359301206']","Civic Coalition, Civic Platform","https://www.egelert.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=097&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Giżyński Szymon,"9965, 14833",483,,520,Parliament,"['881809146735153152']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=099&type=A, https://www.facebook.com/SzymonGizynski/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Gliński Piotr,"9967, 14831",483,,520,Parliament,"['1239047983']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=101&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Golbik Marta,"9971, 14829","574, 482",,520,Parliament,"['3823794201']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=105&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Golińska Małgorzata,"9972, 14828",483,,520,Parliament,"['4662461356']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=106&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Gonciarz Jarosław,"9974, 14826",483,,520,Parliament,"['1009525135555092488', '1009525135555092480']",Law and Justice,"https://jaroslaw-gonciarz.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=108&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Cezary Grabarczyk,"9975, 14819","574, 482",,520,Parliament,"['410104436']","Civic Coalition, Civic Platform","https://www.facebook.com/cezary.grabarczyk1, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=113&type=A","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Grabiec Jan,"14817, 9976","574, 482",,520,Parliament,"['605747501']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=114&type=A, https://www.platforma.org",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Grabowski Paweł,9977,485,,520,Parliament,"['2673677426']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=115&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Gryglas Zbigniew,9979,488,,520,Parliament,"['1171227961']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=117&type=A,"['sekretarz klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Gwiazdowski Kazimierz,"14811, 9980",483,,520,Parliament,"['1049206046970060801', '1049206046970060800']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=118&type=A, https://kazimierz-gwiazdowski.pl/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Bożena Henczyca,9983,482,,520,Parliament,"['960665025206767618']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=122&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Hennig-Kloska Paulina,"14804, 9984","574, 488",,520,Parliament,"['4038230117']","Modern, Civic Coalition","https://fb.com/paulinahennigkloskanowoczesna, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=123&type=A","['wiceprzewodnicząca klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Hok Marek,"9986, 14801","574, 482",,520,Parliament,"['3346320561']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=126&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Horała Marcin,"9987, 14800",483,,520,Parliament,"['92718035']",Law and Justice,"https://www.horala.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=127&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Huskowski Stanisław,9989,486,,520,Parliament,"['335215953']",Union of European Democrats,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=129&type=A,"['wiceprzewodniczący koła']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92410 +Jach Michał,"14797, 9990",483,,520,Parliament,"['1469602327']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=130&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jachnik Jerzy,9991,485,,520,Parliament,"['712892809771159552']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=131&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jaki Patryk,"13268, 9992","483, 518",33,520,Parliament,"['101576198']","Law and Justice, Solidarna Polska Zbigniewa Ziobro",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=132&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Jakubiak Marek,9993,485,,520,Parliament,"['3537549496']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=133&type=A,"['wiceprzewodniczący klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Janczyk Wiesław,"9994, 14795",483,,520,Parliament,"['1612386470']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=134&type=A, https://www.janczyk.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Grzegorz Janik,9995,483,,520,Parliament,"['376743779']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=135&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Janowska Małgorzata,"14794, 9996","487, 483",,520,Parliament,"['835240480808054784']","Republikanie, Law and Justice","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=471&type=A, none","['wiceprzewodnicząca koła']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Janyska Maria Małgorzata,"9997, 14793","574, 482",,520,Parliament,"['2724920673']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=136&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jaros Michał,"9998, 14792","574, 488",,520,Parliament,"['130116348']","Modern, Civic Coalition","https://michaljaros.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=137&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Jarubas Krystian,9999,484,,520,Parliament,"['4193896252']",Polish People's Party,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=138&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92811 +Jaskóła Tomasz,10000,485,,520,Parliament,"['2185684662']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=140&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jędrysek Mariusz Orion,10001,483,,520,Parliament,"['488338315']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=142&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Bartosz Józwiak,10002,485,,520,Parliament,"['359311799']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=143&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Kaczmarczyk Norbert,"10004, 14789","485, 483",,520,Parliament,"['4797487558']","Kukiz15, Law and Justice","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=145&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Alicja Kaczorowska,10005,483,,520,Parliament,"['729010910510108672']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=463&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Jarosław Kaczyński,10006,483,,520,Parliament,"['215426629']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=146&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Bożena Kamińska,10008,482,,520,Parliament,"['1056497094']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=148&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Kamiński Mariusz,"10009, 14782",483,,520,Parliament,"['902969142822793223']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=149&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Karpiński Włodzimierz,10010,482,,520,Parliament,"['806064168969392128']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=151&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Kasprzak Mieczysław,"10011, 14779","576, 484",,520,Parliament,"['160846857']","Polish People's Party-Kukiz15, Polish People's Party","https://www.mieczyslawkasprzak.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=152&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Beata Kempa,"12775, 10012","483, 518",33,520,Parliament,"['4172002246']","Law and Justice, Solidarna Polska Zbigniewa Ziobro",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=153&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Kidawa-Błońska Małgorzata,"10013, 14778","574, 482",,520,Parliament,"['2280346687']","Civic Coalition, Civic Platform","https://www.kidawa-blonska.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=154&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Kierwiński Marcin,"10014, 14777","574, 482",,520,Parliament,"['308367619']","Civic Coalition, Civic Platform","https://kierwinski.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=155&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jan Kilian,10015,483,,520,Parliament,"['2274163034']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=156&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Izabela-Helena Kloc,"13002, 10017","483, 223",33,"239, 520",Parliament,"['2462922450']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=158&type=A,"['członek prezydium klubu']",Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Joanna Kluzik-Rostkowska,"10018, 14775","574, 482",,520,Parliament,"['904085023']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=159&type=A, none","['wiceprzewodnicząca klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Eugeniusz Kłopotek,10019,484,,520,Parliament,"['431204671']",Polish People's Party,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=160&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92811 +Kobyliński Paweł,10021,488,,520,Parliament,"['796260358751219712']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=163&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Kochan Magdalena,10022,482,,520,Parliament,"['943815402529935360']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=164&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Agnieszka Kołacz-Leszczyńska,10023,482,,520,Parliament,"['768886870650548224']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=165&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Ewa Kołodziej,10026,482,,520,Parliament,"['414729637']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=464&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Konwiński Zbigniew,"10027, 14771","574, 482",,520,Parliament,"['4318943867']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=168&type=A, none","['sekretarz klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Joanna Kopcińska,"10028, 13039","483, 223",33,"239, 520",Parliament,"['2767282797']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=170&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Adam Korol,10029,482,,520,Parliament,"['3747854236']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=171&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Kosiniak-Kamysz Władysław,"10031, 14767","576, 484",,520,Parliament,"['955239446']","Polish People's Party-Kukiz15, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=174&type=A, https://kosiniakkamysz.pl","['przewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Kostuś Tomasz,"10033, 14765","574, 482",,520,Parliament,"['3471219255']","Civic Coalition, Civic Platform","none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=176&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Andrzej Kosztowniak,"10034, 14764",483,,520,Parliament,"['1570234500']",Law and Justice,"https://www.kosztowniak.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=177&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Kazimierz Kotowski,10035,484,,520,Parliament,"['2709460326']",Polish People's Party,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=178&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92811 +Bartosz Kownacki,"14759, 10037",483,,520,Parliament,"['742971161185820672']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=180&type=A, https://bartoszkownacki.com.pl/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jerzy Kozłowski,10039,485,,520,Parliament,"['4280707216']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=182&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jarosław Krajewski,"14755, 10040",483,,520,Parliament,"['1731584725']",Law and Justice,"https://www.facebook.com/wybierzKrajewskiego, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=184&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Krajewski Wiesław,"14753, 10041",483,,520,Parliament,"['901352272222965760']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=185&type=A, https://wkrajewski.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Krasulski Leonard,"10042, 14752",483,,520,Parliament,"['3824295795']",Law and Justice,"https://www.leonardkrasulski.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=186&type=A","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Król Piotr,"10043, 14749",483,,520,Parliament,"['2778888760']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=188&type=A, https://www.piotrkrol.info.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Król Wojciech,"14748, 10044","574, 482",,520,Parliament,"['2412529849']","Civic Coalition, Civic Platform","https://www.wojciech-krol.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=189&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Anna Krupka,"14746, 10046",483,,520,Parliament,"['1042854428']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=191&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Andrzej Kryj,"14744, 10047",483,,520,Parliament,"['730303957982167040']",Law and Justice,"https://www.andrzejkryj.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=192&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Bernadeta Krynicka,10048,483,,520,Parliament,"['973823006349897728']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=193&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Krząkała Marek,"14743, 10049","574, 482",,520,Parliament,"['364316079']","Civic Coalition, Civic Platform","https://www.krzakala.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=194&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Dariusz Kubiak,10051,483,,520,Parliament,"['184652695']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=196&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Kuchciński Marek,"14738, 10054",483,,520,Parliament,"['4430407223']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=199&type=A, https://www.marekkuchcinski.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Kukiz Paweł,"14737, 10055","485, 576",,520,Parliament,"['1262921364', '3387848577']","Kukiz15, Polish People's Party-Kukiz15","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=200&type=A, none","['przewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Jakub Kulesza,"10056, 14735","485, 577",,520,Parliament,"['3093606064']","Kukiz15, Confederation Liberty and Independence","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=201&type=A, https://kulesza.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Jacek Kurzępa,10057,483,,520,Parliament,"['344961293']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=203&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Anna Kwiecień,"10058, 14730",483,,520,Parliament,"['2564000304']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=204&type=A, https://www.facebook.com/anna.kwiecien.182",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Lamczyk Stanisław,10060,482,,520,Parliament,"['4118714008']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=206&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Józef Lassota,10061,482,,520,Parliament,"['3019750060']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=207&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Latos Tomasz,"14726, 10062",483,,520,Parliament,"['873380378']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=208&type=A, https://tomaszlatos.pl/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Gabriela Lenartowicz,"14724, 10064","574, 482",,520,Parliament,"['3341806264']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=210&type=A, https://gabrielalenartowicz.pl/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Lenz Tomasz,"10065, 14722","574, 482",,520,Parliament,"['1441718522']","Civic Coalition, Civic Platform","https://www.tomaszlenz.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=211&type=A","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Izabela Leszczyna,10066,482,,520,Parliament,"['61552404']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=212&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Józef Leśniak,10067,483,,520,Parliament,"['941044862060847104']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=213&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Ewa Lieder,10068,488,,520,Parliament,"['1173102552']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=215&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Krzysztof Lipiec,"10069, 14719",483,,520,Parliament,"['372699903']",Law and Justice,"https://krzysztof-lipiec.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=216&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Liroy-Marzec Piotr,10071,489,,520,Parliament,"['17882964']",Independent,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=218&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Lubczyk Radosław,"14713, 10072","488, 576",,520,Parliament,"['4125204376']","Modern, Polish People's Party-Kukiz15","none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=220&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Katarzyna Lubnauer,"14712, 10073","574, 488",,520,Parliament,"['2279602543']","Modern, Civic Coalition","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=221&type=A, https://nowoczesna.org","['przewodnicząca klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Jan Łopata,"10075, 14716","576, 484",,520,Parliament,"['928228270759403520']","Polish People's Party-Kukiz15, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=224&type=A, none","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Machałek Marzena,"14711, 10076",483,,520,Parliament,"['198445724']",Law and Justice,"https://www.marzenamachalek.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=225&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Andrzej Maciejewski,10077,485,,520,Parliament,"['1062805249']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=226&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Antoni Macierewicz,"14709, 10079",483,,520,Parliament,"['703533129252925440', '703533129252925441']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=228&type=A, https://www.mon.gov.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Maliszewski Mirosław,"10081, 14703","576, 484",,520,Parliament,"['1063312908']","Polish People's Party-Kukiz15, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=230&type=A, https://miroslawmaliszewski.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Jerzy Małecki,"14706, 10083",483,,520,Parliament,"['2523233924']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=232&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Maciej Małecki,"10084, 14705",483,,520,Parliament,"['2294199122']",Law and Justice,"https://www.maciejmalecki.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=233&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Arkadiusz Marchewka,"14702, 10085","574, 482",,520,Parliament,"['897718807']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=234&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Maciej Masłowski,10087,485,,520,Parliament,"['4856916845']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=236&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jerzy Materna,"10088, 14699",483,,520,Parliament,"['143549212']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=237&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Beata Mateusiak-Pielucha,"14698, 10089",483,,520,Parliament,"['942777238134644736']",Law and Justice,"https://mateusiak-pielucha.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=238&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Grzegorz Matusiak,"10090, 14697",483,,520,Parliament,"['1048596946888380416']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=239&type=A, https://www.facebook.com/grzegorz.matusiak.31",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Beata Mazurek,"10094, 12776","483, 223",33,"239, 520",Parliament,"['1118740158']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=243&type=A,"['członek prezydium klubu']",Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Andrzej Melak,10095,483,,520,Parliament,"['847538307663888384']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=468&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Jerzy Meysztowicz,10096,488,,520,Parliament,"['1495120664']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=244&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Iwona Michałek,"10099, 14693",483,,520,Parliament,"['534747356']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=247&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Krzysztof Michałkiewicz,10100,483,,520,Parliament,"['374987582']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=248&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Krzysztof Mieszkowski,"14692, 10101","574, 488",,520,Parliament,"['3570329776']","Modern, Civic Coalition","https://www.facebook.com/KrzysztofMieszkowskiDoSejmu/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=249&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Anna Milczanowska,"14691, 10102",483,,520,Parliament,"['713048482622341120']",Law and Justice,"none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=250&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Daniel Milewski,"14690, 10103",483,,520,Parliament,"['283953213']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=251&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Misiło Piotr,10104,488,,520,Parliament,"['1194804265']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=253&type=A,"['wiceprzewodniczący klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Aldona Młyńczak,10105,482,,520,Parliament,"['340397448']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=254&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Kornel Morawiecki,10106,490,,520,Parliament,"['866771656106270720']",Free and Solidary,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=255&type=A,"['przewodniczący koła']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jan Mosiński,"10108, 14686",483,,520,Parliament,"['753647431']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=257&type=A, https://www.janmosinski.com",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Arkadiusz Mularczyk,"10114, 14680",483,,520,Parliament,"['72826548']",Law and Justice,"https://www.facebook.com/arkadiusz.mularczyk?__nodl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=264&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Killion Munyama,"14678, 10115","574, 482",,520,Parliament,"['962582124']","Civic Coalition, Civic Platform","https://www.killionmunyama.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=265&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Murdzek Wojciech,"10116, 14677",483,,520,Parliament,"['1066987526']",Law and Justice,"https://www.murdzek.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=266&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Arkadiusz Myrcha,"14676, 10117","574, 482",,520,Parliament,"['58348751']","Civic Coalition, Civic Platform","none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=267&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Neumann Sławomir,10120,482,,520,Parliament,"['1860681145']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=270&type=A,"['przewodniczący klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Dorota Niedziela,"10121, 14673","574, 482",,520,Parliament,"['1962004784']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=271&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Małgorzata Niemczyk,"14672, 10122","574, 482",,520,Parliament,"['341683263']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=272&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Niesiołowski Stefan,10123,486,,520,Parliament,"['2427923996']",Union of European Democrats,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=273&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92410 +Mirosława Nykiel,"14665, 10124","574, 482",,520,Parliament,"['793662463']","Civic Coalition, Civic Platform","https://www.miroslawanykiel.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=276&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Norbert Obrycki,10126,482,,520,Parliament,"['106666792']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=278&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Marzena Okła-Drewnowicz,"10127, 14662","574, 482",,520,Parliament,"['3305466189']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=279&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Olejniczak Waldemar,10128,483,,520,Parliament,"['1049671000453984256']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=466&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Olszewski Paweł,"10129, 14658","574, 482",,520,Parliament,"['280119771']","Civic Coalition, Civic Platform","https://pawelolszewski.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=280&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Marek Opioła,10132,483,,520,Parliament,"['213763347']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=283&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Katarzyna Osos,"10133, 14657","574, 482",,520,Parliament,"['1025968622']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=284&type=A, https://www.facebook.com/ososkatarzyna/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Krzysztof Ostrowski,10134,483,,520,Parliament,"['831810105599459328']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=285&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Mirosław Pampuch,10137,488,,520,Parliament,"['3981254961']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=288&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Papke Paweł,"10138, 14652","574, 482",,520,Parliament,"['2340473396']","Civic Coalition, Civic Platform","https://www.facebook.com/PawelPapke, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=289&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Błażej Parda,10139,485,,520,Parliament,"['1411492669']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=290&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Pasławska Urszula,10140,484,,520,Parliament,"['163197547']",Polish People's Party,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=291&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92811 +Krzysztof Paszyk,"10141, 14650","576, 484",,520,Parliament,"['3028061229']","Polish People's Party-Kukiz15, Polish People's Party","none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=292&type=A","['sekretarz klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Jerzy Paul,"14649, 10142",483,,520,Parliament,"['1042692978702213120']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=293&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Krystyna Pawłowicz,10143,483,,520,Parliament,"['941260467946835968']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=294&type=A,"['członek prezydium klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Petru Ryszard,10145,488,,520,Parliament,"['344313687']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=296&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Małgorzata Pępek,"14646, 10146","574, 482",,520,Parliament,"['372715684']","Civic Coalition, Civic Platform","https://www.malgorzatapepek.eu, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=297&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jan Piechota Sławomir,"14643, 10147","574, 482",,520,Parliament,"['2553085394']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=298&type=A, https://slawomirpiechota.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Grzegorz Piechowiak,"14642, 10148",483,,520,Parliament,"['3247878197']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=470&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Danuta Pietraszewska,10149,482,,520,Parliament,"['3352919092']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=299&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Dariusz Piontkowski,"14639, 10150",483,,520,Parliament,"['600751790']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=301&type=A, https://www.facebook.com/DariuszPiontkowski/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Kazimierz Plocke,"14637, 10153","574, 482",,520,Parliament,"['3891465892']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=304&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jerzy Polaczek,"14635, 10154",483,,520,Parliament,"['333347147']",Law and Justice,"https://jerzypolaczek.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=305&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Piotr Polak,"10156, 14633",483,,520,Parliament,"['1277987341']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=307&type=A, https://piotrpolak.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jarosław Porwich,10157,485,,520,Parliament,"['1076416807']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=309&type=A,"['wiceprzewodniczący klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jacek Protas,"10159, 14627","574, 482",,520,Parliament,"['4894818729']","Civic Coalition, Civic Platform","https://www.jacekprotas.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=311&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jacek Protasiewicz,"14626, 10160","486, 576",,520,Parliament,"['620182875']","Union of European Democrats, Polish People's Party-Kukiz15","https://jacek-protasiewicz.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=312&type=A","['przewodniczący koła']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92410 +Grzegorz Puda,"10161, 14625",483,,520,Parliament,"['4178250520']",Law and Justice,"none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=314&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Paweł Pudłowski,10162,488,,520,Parliament,"['125298896']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=315&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Piotr Pyzik,10163,483,,520,Parliament,"['1468432238']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=316&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Elżbieta Radziszewska,10165,482,,520,Parliament,"['3373515413']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=317&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Grzegorz Raniewicz,10166,482,,520,Parliament,"['873786324']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=319&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Ireneusz Raś,10167,482,,520,Parliament,"['376253406']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=320&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Monika Rosa,"14622, 10169","574, 488",,520,Parliament,"['2775254939']","Modern, Civic Coalition","https://monika-rosa.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=322&type=A","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Rusecka Urszula,"10172, 14619",483,,520,Parliament,"['3346937219']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=325&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Leszek Ruszczyk,10173,482,,520,Parliament,"['872896983941435393']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=326&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Dorota Rutkowska,10174,482,,520,Parliament,"['623717594']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=327&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Marek Rząsa,"10176, 14614","574, 482",,520,Parliament,"['1157185489']","Civic Coalition, Civic Platform","https://marekrzasa.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=329&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Rzepecki Łukasz,10177,483,,520,Parliament,"['3532757176']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=330&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Bogdan Rzońca,"12791, 10178","483, 223",33,"239, 520",Parliament,"['1548724530']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=331&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Rzymkowski Tomasz,"10179, 14612","485, 483",,520,Parliament,"['1393060472']","Kukiz15, Law and Justice","https://www.rzymkowski.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=332&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Janusz Sanocki,10181,489,,520,Parliament,"['3747521595']",Independent,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=334&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jacek Sasin,"10182, 14608",483,,520,Parliament,"['2827443467']",Law and Justice,"https://jsasin.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=335&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Marek Sawicki,"14607, 10183","576, 484",,520,Parliament,"['362433298']","Polish People's Party-Kukiz15, Polish People's Party","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=336&type=A, https://www.facebook.com/marek.sawicki.92505","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92811 +Grzegorz Schetyna,"14606, 10184","574, 482",,520,Parliament,"['4267404640']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=337&type=A, https://www.schetyna.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Joanna Scheuring-Wielgus,"14605, 10185","575, 488",,520,Parliament,"['2515851247']","Modern, United Left","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=338&type=A, https://fb.com/CEBOdlaJoanny/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Joanna Schmidt,10186,488,,520,Parliament,"['3403837157']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=339&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Schreiber Łukasz,"14603, 10189",483,,520,Parliament,"['4199460070']",Law and Justice,"https://lukasz-schreiber.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=342&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Anna Maria Siarkowska,"10192, 14597","487, 483",,520,Parliament,"['1005935970']","Republikanie, Law and Justice","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=345&type=A, https://twitter.com/republikanieorg","['przewodnicząca koła']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Krystyna Sibińska,"10193, 14596","574, 482",,520,Parliament,"['182335514']","Civic Coalition, Civic Platform","https://www.krystynasibinska.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=346&type=A","['wiceprzewodnicząca klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Krzysztof Sitarski,10194,485,,520,Parliament,"['4874797630']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=348&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Skurkiewicz Wojciech,10196,483,,520,Parliament,"['1627412088']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=350&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Paweł Skutecki,10197,485,,520,Parliament,"['771319480484061184']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=351&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Andrzej Smirnow,10198,483,,520,Parliament,"['3340629957']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=352&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Kazimierz Smoliński,"14586, 10199",483,,520,Parliament,"['819102072993939456']",Law and Justice,"https://www.kazimierzsmolinski.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=353&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Anna Elżbieta Sobecka,10200,483,,520,Parliament,"['907872543180193792']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=354&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Artur Soboń,"14582, 10202",483,,520,Parliament,"['972287478']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=356&type=A, https://sobonartur.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Bogusław Sonik,"14579, 10203","574, 482",,520,Parliament,"['545162340']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=357&type=A, https://www.boguslawsonik.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Marek Sowa,"14576, 10206","574, 488",,520,Parliament,"['970443860']","Modern, Civic Coalition","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=360&type=A, none","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Lech Sprawka,10207,483,,520,Parliament,"['3149109893']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=361&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Mirosława Stachowiak-Różecka,10208,483,,520,Parliament,"['2205387775']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=362&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Dariusz Starzycki,10209,483,,520,Parliament,"['742373270532546560']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=363&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Michał Stasiński,10210,482,,520,Parliament,"['3388648307']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=364&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Jarosław Stawiarski,10212,483,,520,Parliament,"['1050747794963791872']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=365&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Elżbieta Stępień,10213,488,,520,Parliament,"['1400606545']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=366&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Mirosław Suchoń,"10215, 14569","574, 488",,520,Parliament,"['1704377989']","Modern, Civic Coalition","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=367&type=A, https://www.suchon.pl","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Marek Suski,"14568, 10216",483,,520,Parliament,"['82592599']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=368&type=A, https://www.premier.gov.pl","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Paweł Suski,10217,482,,520,Parliament,"['1280178583']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=369&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Artur Szałabawka,"10218, 14566",483,,520,Parliament,"['2289701923']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=370&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jolanta Szczypińska,10221,483,,520,Parliament,"['323239248']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=374&type=A,"['wiceprzewodnicząca klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Paweł Szefernaker,"10222, 14560",483,,520,Parliament,"['192831332']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=375&type=A, https://www.facebook.com/szefernaker",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jarosław Szlachetka,10224,483,,520,Parliament,"['2769937515']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=377&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Adam Szłapka,"14557, 10226","574, 488",,520,Parliament,"['507995154']","Modern, Civic Coalition","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=379&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Paweł Szramka,"14555, 10227","485, 576",,520,Parliament,"['999204090']","Kukiz15, Polish People's Party-Kukiz15","https://www.facebook.com/SzramkaPawel/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=380&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Krystyna Szumilas,"14553, 10229","574, 482",,520,Parliament,"['2905517248']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=382&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Stanisław Szwed,"14551, 10230",483,,520,Parliament,"['3375651196']",Law and Justice,"https://www.stanislawszwed.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=383&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Halina Szydełko,10231,483,,520,Parliament,"['1048190958377025536']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=384&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Beata Szydło,"10232, 12777","483, 223",33,"239, 520",Parliament,"['76979225']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=385&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Bożena Szydłowska,10233,482,,520,Parliament,"['1189597292']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=386&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Szymański Tomasz,"10235, 14549","574, 482",,520,Parliament,"['1010569399']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=388&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Szymon Szynkowski Sęk Vel,10236,483,,520,Parliament,"['735578280909275136']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=389&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Agnieszka Ścigaj,"14602, 10238","485, 576",,520,Parliament,"['4797291501']","Kukiz15, Polish People's Party-Kukiz15","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=391&type=A, none","['wiceprzewodnicząca klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Iwona Śledzińska-Katarasińska,"14589, 10239","574, 482",,520,Parliament,"['881775738']","Civic Coalition, Civic Platform","https://sledzinska-katarasinska.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=392&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Janusz Śniadek,"10240, 14585",483,,520,Parliament,"['902583215227101186', '902583215227101184']",Law and Justice,"https://www.facebook.com/janusz.sniadek.3/#, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=393&type=A","['członek prezydium klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jacek Świat,"14567, 10241",483,,520,Parliament,"['1563918553']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=394&type=A, https://www.jacekswiat.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Marcin Święcicki,10242,482,,520,Parliament,"['480317344']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=395&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Dominik Tarczyński,"10243, 14547",483,,520,Parliament,"['347228796']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=396&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Robert Telus,"14545, 10245",483,,520,Parliament,"['522118879']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=398&type=A, https://www.telusrobert.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Ryszard Terlecki,"14544, 10246",483,,520,Parliament,"['370105716']",Law and Justice,"https://ryszardterlecki.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=399&type=A","['przewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jacek Tomczak,"14541, 10250","482, 576",,520,Parliament,"['3481720163']","Civic Platform, Polish People's Party-Kukiz15","https://www.jacektomczak.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=403&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Krzysztof Truskolaski,"14536, 10251","574, 488",,520,Parliament,"['3401599527']","Modern, Civic Coalition","https://www.krzysztoftruskolaski.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=406&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Rafał Trzaskowski,10252,482,,520,Parliament,"['370112160']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=407&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Sylwester Tułajew,"14534, 10253",483,,520,Parliament,"['164761542']",Law and Justice,"https://www.facebook.com/tulajew, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=408&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Stanisław Tyszka,"14533, 10254","485, 576",,520,Parliament,"['31377422']","Kukiz15, Polish People's Party-Kukiz15","https://www.stanislawtyszka.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=409&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Robert Tyszkiewicz,"10255, 14532","574, 482",,520,Parliament,"['353894325']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=410&type=A, https://www.facebook.com/roberttyszkiewicz/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jarosław Urbaniak,"14530, 10256","574, 482",,520,Parliament,"['3437755967']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=411&type=A, https://facebook.com/UrbaniakJ",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Piotr Uściński,"10258, 14527",483,,520,Parliament,"['2423509169']",Law and Justice,"https://www.uscinski.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=413&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Teresa Wargocka,"10259, 14524",483,,520,Parliament,"['4920211205']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=414&type=A, https://www.wargockateresa.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Małgorzata Wassermann,10263,483,,520,Parliament,"['3595706777']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=418&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Maciej Wąsik,"10265, 14521",483,,520,Parliament,"['710949102733885440']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=420&type=A, https://m.facebook.com/WasikMaciej/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Rafał Weber,"10266, 14516",483,,520,Parliament,"['1277767195']",Law and Justice,"none, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=421&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Monika Wielichowska,"14512, 10267","574, 482",,520,Parliament,"['2248939558']","Civic Coalition, Civic Platform","https://www.monikawielichowska.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=422&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Jacek Wilk,10269,485,,520,Parliament,"['2385179893']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=424&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jerzy Wilk,"10270, 14510",483,,520,Parliament,"['2744897293']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=425&type=A, https://www.jerzywilk.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Wilk Wojciech,10271,482,,520,Parliament,"['338950702']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=426&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Robert Winnicki,"10272, 14509","489, 577",,520,Parliament,"['289210875']","Independent, Confederation Liberty and Independence","https://www.facebook.com/robertwinnickipubliczny, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=427&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Mariusz Witczak,"14508, 10273","574, 482",,520,Parliament,"['1868598290']","Civic Coalition, Civic Platform","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=428&type=A, https://www.mariuszwitczak.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92435 +Elżbieta Witek,"14507, 10274",483,,520,Parliament,"['3159214282']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=429&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Tadeusz Woźniak,"14499, 10278",483,,520,Parliament,"['1006939538']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=433&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Marek Wójcik,10279,482,,520,Parliament,"['260057212']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=434&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Michał Wójcik,"14505, 10280",483,,520,Parliament,"['725240852549894144']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=435&type=A, https://michalwojcik.eu/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Kornelia Wróblewska,10281,488,,520,Parliament,"['605429008']",Modern,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=437&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Krystyna Wróblewska,10282,483,,520,Parliament,"['834311309453844480']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=438&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Bartłomiej Wróblewski,"14498, 10283",483,,520,Parliament,"['342239397']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=439&type=A, none",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Małgorzata Wypych,10284,483,,520,Parliament,"['3504138693']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=440&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Marek Zagórski,"14496, 10285",483,,520,Parliament,"['3316934339']",Law and Justice,"https://www.gov.pl/cyfryzacja, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=441&type=A",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Anna Zalewska,"10286, 12743","483, 223",33,"239, 520",Parliament,"['3354883925']","Law and Justice, Prawo i Sprawiedliwość",https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=442&type=A,,Poland,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,"Poland, European Parliament","27, 19","13, 43",92436 +Artur Zasada,10287,483,,520,Parliament,"['110376941']",Law and Justice,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=444&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92436 +Witold Zembaczyński,"10290, 14489","574, 488",,520,Parliament,"['2451775295']","Modern, Civic Coalition","https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=447&type=A, https://m.facebook.com/witold.zembaczynski/",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49", +Elżbieta Zielińska,10292,485,,520,Parliament,"['1090494014']",Kukiz15,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=037&type=A,"['sekretarz klubu']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Jarosław Zieliński,"14485, 10293",483,,520,Parliament,"['3310934230']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=450&type=A, https://www.jaroslawzielinski.pl",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Zbigniew Ziobro,"10295, 14481",483,,520,Parliament,"['1614572052']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=452&type=A, https://solidarna.org",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Szymon Ziółkowski,10296,482,,520,Parliament,"['757830129259130880']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=453&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Wojciech Zubowski,"14480, 10298",483,,520,Parliament,"['875584567']",Law and Justice,"https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=455&type=A, https://pl-pl.facebook.com/WojciechZubowskiPL",,,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Małgorzata Zwiercan,10299,490,,520,Parliament,"['4765801049']",Free and Solidary,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=456&type=A,"['sekretarz koła']",,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13, +Ireneusz Zyska,"10300, 14476","483, 490",,520,Parliament,"['877868124984442880']","Law and Justice, Free and Solidary","https://ireneusz-zyska.pl/, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=457&type=A","['wiceprzewodniczący koła']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Jacek Żalek,"10301, 14495",483,,520,Parliament,"['297385591']",Law and Justice,"https://www.zalek.pl, https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=458&type=A","['wiceprzewodniczący klubu']",,,"https://www.sejm.gov.pl/english/poslowie/posel.html, https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A",,Poland,19,"13, 49",92436 +Stanisław Żmijan,10302,482,,520,Parliament,"['743390771093581824']",Civic Platform,https://www.sejm.gov.pl/Sejm8.nsf/posel.xsp?id=459&type=A,,,,https://www.sejm.gov.pl/Sejm8.nsf/poslowie.xsp?type=A,,Poland,19,13,92435 +Marco Meloni,10307,108,,106,Parliament,"['12994392']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Andrea Rigoni,10309,108,,106,Parliament,"['13680802']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Civati Giuseppe,10310,492,,106,Parliament,"['14108472']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32230 +Rampi Roberto,10311,108,,106,Parliament,"['14110067']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Guglielmo Vaccaro,10312,493,,106,Parliament,"['14170643']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23, +Bonaccorsi Lorenza,10313,108,,106,Parliament,"['15191260']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Raffaello Vignali,10314,494,,106,Parliament,"['15255463']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23, +Bernini Paolo,10315,105,,106,Parliament,"['19863725']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32956 +Longo Piero,10318,491,,106,Parliament,"['27123196']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32610 +Amedeo Laboccetta,10320,491,,106,Parliament,"['31160859']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32610 +Carbone Ernesto,10322,108,,106,Parliament,"['35804051']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Nuti Riccardo,10323,493,,106,Parliament,"['37507247']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=N,,Italy,12,23, +Davide Faraone,10324,108,,106,Parliament,"['41391760']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Cova Paolo,10325,108,,106,Parliament,"['42113491']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Bianchi Stella,10326,108,,106,Parliament,"['47377992']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Albanella Luisella,10327,108,,106,Parliament,"['47663009']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32440 +Di Fabrizio Stefano,10331,491,,106,Parliament,"['56819005']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32610 +Gianfranco Sammarco,10333,494,,106,Parliament,"['61227039']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Lombardi Roberta,10334,105,,106,Parliament,"['61727028']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32956 +Borghesi Stefano,10335,495,,106,Parliament,"['61769194']",LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32720 +Donati Marco,10336,108,,106,Parliament,"['61905153']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Crimi Rocco,10337,491,,106,Parliament,"['62003557']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32610 +Fabio Porta,10339,108,,106,Parliament,"['66725044']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Bindi Rosy,10340,108,,106,Parliament,"['68941121']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Gozi Sandro,10341,108,,106,Parliament,"['76769340']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Federico Gelli,10342,108,,106,Parliament,"['78914169']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Gandolfi Paolo,10343,108,,106,Parliament,"['81808899']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Alfano Gioacchino,10345,494,,106,Parliament,"['86347667']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Domenico Rossi,10349,497,,106,Parliament,"['97734603']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32450 +Bray Massimo,10350,108,,106,Parliament,"['101507064']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Basso Lorenzo,10353,108,,106,Parliament,"['105802436']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Michele Pelillo,10354,108,,106,Parliament,"['110146077']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Pino Pisicchio,10355,493,,106,Parliament,"['110497143']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Ludovico Vico,10356,108,,106,Parliament,"['111341462']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32440 +Bossi Umberto,10358,495,,106,Parliament,"['117151289']",LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32720 +Bini Caterina,10359,108,,106,Parliament,"['119007003']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Battaglia Demetrio,10364,108,,106,Parliament,"['134431419']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Dario Ginefra,10365,108,,106,Parliament,"['140044951']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Francesco Sanna,10366,108,,106,Parliament,"['143964261']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Capezzone Daniele,10367,493,,106,Parliament,"['144210805']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Alfano Angelino,10368,494,,106,Parliament,"['149060372']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Baruffi Davide,10370,108,,106,Parliament,"['155588864']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Francesco Romano Saverio,10373,499,,106,Parliament,"['177610735']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23, +Caso Vincenzo,10374,105,,106,Parliament,"['185644124']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32956 +De Felice Massimo Rosa,10375,105,,106,Parliament,"['195689744']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32956 +Enzo Lattuca,10376,108,,106,Parliament,"['206384672']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Fioroni Giuseppe,10378,108,,106,Parliament,"['212175993']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Galati Giuseppe,10379,499,,106,Parliament,"['213663506']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23, +Becattini Lorenzo,10380,108,,106,Parliament,"['220271946']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Francesco Laforgia,10382,496,,106,Parliament,"['234844623']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23, +Filiberto Zaratti,10384,496,,106,Parliament,"['247230903']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=Z,,Italy,12,23, +Paolo Petrini,10388,108,,106,Parliament,"['280491875']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Alberti Ferdinando,10390,105,,106,Parliament,"['291717056']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32956 +Marzano Michela,10392,493,,106,Parliament,"['312837588']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Garavini Laura,10393,108,,106,Parliament,"['321939235']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Bechis Eleonora,10396,493,,106,Parliament,"['328671064']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +De Girolamo Nunzia,10399,491,,106,Parliament,"['334321591']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32610 +Adriano Zaccagnini,10400,496,,106,Parliament,"['334611957']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=Z,,Italy,12,23, +Antonio Misiani,10401,108,,106,Parliament,"['336975968']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Bolognesi Paolo,10403,108,,106,Parliament,"['348661004']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +D'Alia Gianpiero,10404,494,,106,Parliament,"['359555283']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +Gaetana Greco Maria,10407,108,,106,Parliament,"['370206118']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Garofalo Vincenzo,10409,494,,106,Parliament,"['377476229']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23, +Alessandro Bratti,10410,108,,106,Parliament,"['378212883']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Di Giulia Vita,10411,493,,106,Parliament,"['379256309']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +Marietta Tidei,10412,108,,106,Parliament,"['380405533']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Andrea Martella,10413,108,,106,Parliament,"['380826306']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Antonio Merlo Ricardo,10415,499,,106,Parliament,"['382238648']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Filippo Fossati,10419,496,,106,Parliament,"['390007456']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23, +Mario Tullo,10420,108,,106,Parliament,"['390069406']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Cimbro Eleonora,10421,496,,106,Parliament,"['391338911']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Aris Prodani,10422,493,,106,Parliament,"['392347271']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Fedi Marco,10423,108,,106,Parliament,"['393974023']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Matteo Richetti,10425,108,,106,Parliament,"['395183088']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Amendola Vincenzo,10427,108,,106,Parliament,"['398726169']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32440 +Tentori Veronica,10428,108,,106,Parliament,"['401332098']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Ermete Realacci,10429,108,,106,Parliament,"['402997564']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Gianluca Pini,10430,495,,106,Parliament,"['406907214']",LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32720 +Giancarlo Giordano,10431,492,,106,Parliament,"['407543535']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32230 +Pizzolante Sergio,10432,494,,106,Parliament,"['407887155']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Caparini Davide,10434,495,,106,Parliament,"['409600788']",LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32720 +Alfredo D'Attorre,10436,496,,106,Parliament,"['413141346']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +Baretta Paolo Pier,10437,108,,106,Parliament,"['414634390']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Carra Marco,10438,108,,106,Parliament,"['414930127']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Mino Taricco,10439,108,,106,Parliament,"['416123085']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Caterina Pes,10440,108,,106,Parliament,"['416923575']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Bonifazi Francesco,10441,108,,106,Parliament,"['418814614']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Edoardo Fanucci,10442,108,,106,Parliament,"['419388564']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Famiglietti Luigi,10443,108,,106,Parliament,"['419480134']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Enrico Letta,10444,108,,106,Parliament,"['419622371']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Bossa Luisa,10447,496,,106,Parliament,"['420335251']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Nicola Stumpo,10448,496,,106,Parliament,"['422168826']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Claudia Mannino,10449,493,,106,Parliament,"['423780098']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Corsaro Enrico Massimo,10450,493,,106,Parliament,"['425033450']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Agostinelli Donatella,10451,105,,106,Parliament,"['425752285']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32956 +Ignazio La Russa,10452,498,,106,Parliament,"['425933041']",FRATELLI DITALIA-ALLEANZA NAZIONALE,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32710 +Daniele Montroni,10453,108,,106,Parliament,"['428436324']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Flavia Malpezzi Simona,10454,108,,106,Parliament,"['428521248']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Baldassarre Marco,10456,493,,106,Parliament,"['429433691']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Leonori Marta,10457,108,,106,Parliament,"['429683173']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Cesare Damiano,10458,108,,106,Parliament,"['430127505']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Marina Sereni,10460,108,,106,Parliament,"['440724583']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Marco Miccoli,10462,108,,106,Parliament,"['447846362']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Argentin Ileana,10463,108,,106,Parliament,"['448039159']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32440 +Folino Vincenzo,10464,496,,106,Parliament,"['453168575']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23, +Costa Enrico,10472,493,,106,Parliament,"['478514521']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Antonino Bosco,10474,494,,106,Parliament,"['480504617']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Giuseppe Guerini,10475,108,,106,Parliament,"['484589440']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Piso Vincenzo,10477,493,,106,Parliament,"['490756518']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Giuseppe Guido Peluffo Vinicio,10478,108,,106,Parliament,"['491164062']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Carrozza Chiara Maria,10481,108,,106,Parliament,"['492928925']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Mariani Raffaella,10482,108,,106,Parliament,"['492928982']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Bianconi Maurizio,10485,493,,106,Parliament,"['499936088']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Buttiglione Rocco,10487,493,,106,Parliament,"['502762950']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Bobba Luigi,10489,108,,106,Parliament,"['514478368']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Carmelo Lo Monte,10491,493,,106,Parliament,"['517903407']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23, +Eugenia Roccella,10493,493,,106,Parliament,"['525553384']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23, +Cominelli Miriam,10494,108,,106,Parliament,"['527574803']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Bargero Cristina,10495,108,,106,Parliament,"['537155694']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Castiglione Giuseppe,10496,494,,106,Parliament,"['540701757']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Andrea Gibelli,10499,500,,106,Parliament,"['545136488']",LEGA NORD E AUTONOMIE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32720 +Aiello Ferdinando,10500,108,,106,Parliament,"['558591392']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32440 +Gero Grassi,10501,108,,106,Parliament,"['563820234']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Alessio Tacconi,10502,108,,106,Parliament,"['569492527']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Artini Massimo,10504,493,,106,Parliament,"['574609969']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Chaouki Khalid,10505,108,,106,Parliament,"['577873250']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Dario Parrini,10506,108,,106,Parliament,"['587802594']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Colomba Mongiello,10511,108,,106,Parliament,"['613387563']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Gnecchi Marialuisa,10513,108,,106,Parliament,"['700756368']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Bragantini Paola,10515,108,,106,Parliament,"['724885020']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Cardinale Daniela,10516,108,,106,Parliament,"['732819391']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Carella Renzo,10517,108,,106,Parliament,"['772349570']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Marroni Umberto,10518,108,,106,Parliament,"['802515553']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Rubinato Simonetta,10522,108,,106,Parliament,"['840400950']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Silvia Velo,10523,108,,106,Parliament,"['847652784']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32440 +Davide Zoggia,10524,496,,106,Parliament,"['871317662']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=Z,,Italy,12,23, +Daniela Sbrollini,10525,108,,106,Parliament,"['903723812']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Mantero Matteo,10526,105,,106,Parliament,"['922769916']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32956 +Ghizzoni Manuela,10528,108,,106,Parliament,"['945803917']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Berretta Giuseppe,10529,108,,106,Parliament,"['958167698']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Impegno Leonardo,10530,108,,106,Parliament,"['960574614']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=I,,Italy,12,23,32440 +Sandra Zampa,10531,108,,106,Parliament,"['964460408']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=Z,,Italy,12,23,32440 +Alessandro Battista Di,10533,105,,106,Parliament,"['970964743']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32956 +Busto Mirko,10535,105,,106,Parliament,"['974102796']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32956 +Piccione Teresa,10537,108,,106,Parliament,"['982584427']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Luca Sani,10538,108,,106,Parliament,"['990581779']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Francesco Ribaudo,10539,108,,106,Parliament,"['1010842189']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Emanuele Lodolini,10540,108,,106,Parliament,"['1016682894']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Giulia Narduolo,10543,108,,106,Parliament,"['1023109254']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=N,,Italy,12,23,32440 +Donata Lenzi,10544,108,,106,Parliament,"['1024235078']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Culotta Magda,10545,108,,106,Parliament,"['1027581487']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Maestri Patrizia,10546,108,,106,Parliament,"['1028139518']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Elisa Simoni,10547,496,,106,Parliament,"['1028678899']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Giampiero Giulietti,10548,108,,106,Parliament,"['1030199844']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Crivellari Diego,10551,108,,106,Parliament,"['1032892159']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Ciccio Detto Ferrara Francesco,10552,496,,106,Parliament,"['1039521145']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23, +Daniela Gasparini Maria Matilde,10554,108,,106,Parliament,"['1061297432']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Grazia Maria Rocchi,10556,108,,106,Parliament,"['1069154431']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Fabbri Marilena,10557,108,,106,Parliament,"['1070732071']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Davide Mattiello,10558,108,,106,Parliament,"['1079900653']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Arlotti Tiziano,10559,108,,106,Parliament,"['1091372017']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32440 +Dallai Luigi,10561,108,,106,Parliament,"['1095269604']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Beni Paolo,10563,108,,106,Parliament,"['1095415531']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Bianchi Dorina,10564,494,,106,Parliament,"['1096575564']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Fabrizia Giuliani,10565,108,,106,Parliament,"['1098999823']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Giovanna Martelli,10566,496,,106,Parliament,"['1104562232']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Capone Salvatore,10568,108,,106,Parliament,"['1111384315']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Ernesto Magorno,10569,108,,106,Parliament,"['1114681735']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Galli Giampaolo,10571,108,,106,Parliament,"['1120077589']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Giuseppe Lauricella,10572,108,,106,Parliament,"['1128275484']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Covello Stefania,10573,108,,106,Parliament,"['1128760278']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Assunta Tartaglione,10574,108,,106,Parliament,"['1130709956']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Donatella Ferranti,10575,108,,106,Parliament,"['1133660100']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Carlo Galli,10577,496,,106,Parliament,"['1134679333']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23, +Danilo Leva,10578,496,,106,Parliament,"['1139458160']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23, +Alessandro Mazzoli,10579,108,,106,Parliament,"['1144972206']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Burtone Giovanni Mario Salvino,10581,108,,106,Parliament,"['1159387741']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Iori Vanna,10582,108,,106,Parliament,"['1160083688']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=I,,Italy,12,23,32440 +Ernesto Preziosi,10583,108,,106,Parliament,"['1161167916']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Edoardo Patriarca,10584,108,,106,Parliament,"['1171546866']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Bernini Massimiliano,10585,105,,106,Parliament,"['1207270483']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32956 +Anna Giacobbe,10586,108,,106,Parliament,"['1247288606']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Casati Ezio Primo,10587,108,,106,Parliament,"['1269968502']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Liliana Ventricelli,10588,108,,106,Parliament,"['1280157438']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32440 +Valente Valeria,10589,108,,106,Parliament,"['1288696170']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32440 +Biondelli Franca,10590,108,,106,Parliament,"['1322426976']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Cuperlo Giovanni,10591,108,,106,Parliament,"['1517294112']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Abrignani Ignazio,10593,499,,106,Parliament,"['468259769']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Adornato Ferdinando,10594,494,,106,Parliament,"['466630937']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Airaudo Giorgio,10597,492,,106,Parliament,"['390868112']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32230 +Albini Tea,10598,496,,106,Parliament,"['398249707']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Alfreider Daniel,10599,493,,106,Parliament,"['3289014647']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Allasia Stefano,10600,495,,106,Parliament,"['703601330']",LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32720 +Alli Paolo,10601,494,,106,Parliament,"['891042680']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Amoddio Sofia,10604,108,,106,Parliament,"['2378358620']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23,32440 +Auci Ernesto,10609,499,,106,Parliament,"['2303117828']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=A,,Italy,12,23, +Barbanti Sebastiano,10610,108,,106,Parliament,"['926354131']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Basilio Tatiana,10611,105,,106,Parliament,"['969081366']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32956 +Bellanova Teresa,10612,108,,106,Parliament,"['606259626']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Bergonzi Marco,10614,108,,106,Parliament,"['2204474266']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Bernardo Maurizio,10616,108,,106,Parliament,"['2159311335']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Bianchi Nicola,10617,105,,106,Parliament,"['133366702']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32956 +Biasotti Sandro,10619,491,,106,Parliament,"['80547099']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32610 +Binetti Paola,10620,493,,106,Parliament,"['81901389']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Blazina Tamara,10621,108,,106,Parliament,"['1095895850']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Boccadutri Sergio,10622,108,,106,Parliament,"['490373717']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Boldrini Paola,10625,108,,106,Parliament,"['953712781']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32440 +Bordo Franco,10628,496,,106,Parliament,"['1071920456']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Beatrice Brignone,10635,492,,106,Parliament,"['50584579']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32230 +Brugnerotto Marco,10636,105,,106,Parliament,"['874358845']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32956 +Bueno Renata,10638,493,,106,Parliament,"['158067709']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23, +Busin Filippo,10640,495,,106,Parliament,"['455667847']",LEGA NORD E AUTONOMIE - LEGA DEI POPOLI - NOI CON SALVINI,,,,,https://www.camera.it/leg17/28?lettera=B,,Italy,12,23,32720 +Camani Vanessa,10642,108,,106,Parliament,"['424209423']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Cani Emanuele,10643,108,,106,Parliament,"['1405064486']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Capelli Roberto,10645,497,,106,Parliament,"['468221093']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32450 +Capozzolo Sabrina,10647,108,,106,Parliament,"['1657888950']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Capua Ilaria,10648,501,,106,Parliament,"['842328415']",SCELTA CIVICA PER LITALIA,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32460 +Cariello Francesco,10649,105,,106,Parliament,"['369177021']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32956 +Anna Carloni Maria,10651,108,,106,Parliament,"['2169027857']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Carocci Mara,10652,108,,106,Parliament,"['403678190']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Caruso Mario,10654,497,,106,Parliament,"['16624761']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32450 +Casellato Floriana,10655,108,,106,Parliament,"['1114873536']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Antonio Castricone,10659,108,,106,Parliament,"['1267533410']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Catalano Ivan,10660,493,,106,Parliament,"['949372327']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Catania Mario,10661,497,,106,Parliament,"['1068658627']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32450 +Andrea Causin,10664,491,,106,Parliament,"['949261333']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32610 +Bruno Censore,10665,108,,106,Parliament,"['335970126']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Centemero Elena,10666,491,,106,Parliament,"['603435826']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32610 +Angelo Cera,10667,493,,106,Parliament,"['406971457']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Antimo Cesaro,10668,493,,106,Parliament,"['1100695382']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Chimienti Silvia,10671,105,,106,Parliament,"['1888044751']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32956 +Cicchitto Fabrizio,10672,494,,106,Parliament,"['1924725571']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Cimmino Luciano,10673,501,,106,Parliament,"['1083850194']",SCELTA CIVICA PER LITALIA,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32460 +Ciraci' Nicola,10674,493,,106,Parliament,"['466847648']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23, +Coccia Laura,10676,108,,106,Parliament,"['999278988']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Colonnese Vega,10678,105,,106,Parliament,"['973465514']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32956 +Coppola Paolo,10680,108,,106,Parliament,"['13056322']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Cozzolino Emanuele,10683,105,,106,Parliament,"['2302888393']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32956 +Crimi' Filippo,10684,108,,106,Parliament,"['1028499156']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Curro' Tommaso,10687,108,,106,Parliament,"['762435457']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=C,,Italy,12,23,32440 +Angelo Antonio D'Agostino,10690,499,,106,Parliament,"['1089905024']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +D'Alessandro Luca,10691,499,,106,Parliament,"['261915070']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +Dambruoso Stefano,10694,493,,106,Parliament,"['1123079112']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +D'Arienzo Vincenzo,10695,108,,106,Parliament,"['4298719462']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Dellai Lorenzo,10699,497,,106,Parliament,"['15309248']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32450 +Carlo Dell'Aringa,10700,108,,106,Parliament,"['2728101928']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Della Ivan Valle,10701,105,,106,Parliament,"['620859402']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32956 +Dell'Orco Michele,10702,105,,106,Parliament,"['1638278257']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32956 +Benedetto Chiara Di,10705,105,,106,Parliament,"['277460126']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32956 +Di Gioia Lello,10707,108,,106,Parliament,"['3130991433']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Di Lello Marco,10708,108,,106,Parliament,"['72643262']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Di Salvo Titti,10712,108,,106,Parliament,"['368935338']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Antonio Distaso,10713,493,,106,Parliament,"['716425138']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23, +Di Marco Stefano,10714,108,,106,Parliament,"['522105197']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +D'Ottavio Umberto,10715,108,,106,Parliament,"['491417328']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=D,,Italy,12,23,32440 +Faenzi Monica,10717,499,,106,Parliament,"['1119069169']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23, +Falcone Giovanni,10718,108,,106,Parliament,"['1032887948']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Fauttilli Federico,10722,497,,106,Parliament,"['1143210860']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32450 +Claudio Fava,10723,496,,106,Parliament,"['599037509']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23, +Alan Ferrari,10726,108,,106,Parliament,"['1280190198']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Fontanelli Paolo,10731,496,,106,Parliament,"['2398174219']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23, +Fusilli Gianluca,10738,108,,106,Parliament,"['2851566357']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=F,,Italy,12,23,32440 +Adriana Galgano,10740,493,,106,Parliament,"['424520974']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23, +Gallo Riccardo,10743,491,,106,Parliament,"['362340736']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32610 +Gabriella Giammanco,10751,491,,106,Parliament,"['714417878']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32610 +Gian Gigli Luigi,10752,497,,106,Parliament,"['1085746758']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32450 +Ginoble Tommaso,10754,108,,106,Parliament,"['1362976807']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Giordano Silvia,10755,105,,106,Parliament,"['931706882']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32956 +Gitti Gregorio,10759,108,,106,Parliament,"['1119040105']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Gregori Monica,10761,492,,106,Parliament,"['1338648810']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32230 +Guerra Mauro,10763,108,,106,Parliament,"['1026494166']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Gutgeld Itzhak Yoram,10766,108,,106,Parliament,"['1975658623']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=G,,Italy,12,23,32440 +Cristian Iannuzzi,10768,493,,106,Parliament,"['970868527']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=I,,Italy,12,23, +Lacquaniti Luigi,10774,496,,106,Parliament,"['879541776']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23, +Cosimo Latronico,10777,493,,106,Parliament,"['429778026']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23, +Fabio Lavagno,10778,108,,106,Parliament,"['18406278']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32440 +Elda Locatelli Pia,10780,493,,106,Parliament,"['120588952']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23, +Loredana Lupo,10783,105,,106,Parliament,"['467402509']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=L,,Italy,12,23,32956 +Andrea Maestri,10784,492,,106,Parliament,"['993545408']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32230 +Maietta Pasquale,10785,498,,106,Parliament,"['1125487783']",FRATELLI DITALIA-ALLEANZA NAZIONALE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32710 +Andrea Manciulli,10787,108,,106,Parliament,"['2546413574']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Manfredi Massimiliano,10788,108,,106,Parliament,"['2239285988']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Irene Manzi,10789,108,,106,Parliament,"['2389507018']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Daniele Marantelli,10790,108,,106,Parliament,"['4173104235']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Marazziti Mario,10791,497,,106,Parliament,"['453267107']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32450 +Giulio Marcon,10795,492,,106,Parliament,"['1058085139']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32230 +Elisa Mariano,10797,108,,106,Parliament,"['839776178']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Marco Martinelli,10800,491,,106,Parliament,"['499586657']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32610 +Marti Roberto,10802,493,,106,Parliament,"['1201391990']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Matarrelli Toni,10805,496,,106,Parliament,"['582188929']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Matarrese Salvatore,10806,493,,106,Parliament,"['1374126524']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Andrea Celso Di Mazziotti,10808,493,,106,Parliament,"['1170061687']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Gianni Melilla,10809,496,,106,Parliament,"['453983111']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Domenico Menorello,10811,493,,106,Parliament,"['1046158488']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Meta Michele Pompeo,10812,108,,106,Parliament,"['1153753759']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Emiliano Minnucci,10816,108,,106,Parliament,"['428300383']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Anna Margherita Miotto,10817,108,,106,Parliament,"['712584258599186432']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Dore Misuraca,10818,494,,106,Parliament,"['545974614']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Bruno Molea,10820,493,,106,Parliament,"['1095861036']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Giovanni Monchiero,10823,493,,106,Parliament,"['3771173182']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Antonino Moscatt,10824,108,,106,Parliament,"['1029633199']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32440 +Mara Mucci,10826,493,,106,Parliament,"['811414452']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23, +Bruno Murgia,10828,498,,106,Parliament,"['1024133262']",FRATELLI DITALIA-ALLEANZA NAZIONALE,,,,,https://www.camera.it/leg17/28?lettera=M,,Italy,12,23,32710 +Marisa Nicchi,10833,496,,106,Parliament,"['1106382398']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=N,,Italy,12,23, +Michele Nicoletti,10834,108,,106,Parliament,"['471256911']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=N,,Italy,12,23,32440 +Oliaro Roberta,10835,493,,106,Parliament,"['1079941478']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=O,,Italy,12,23, +Mauro Ottobre,10837,493,,106,Parliament,"['2541651640']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=O,,Italy,12,23, +Giovanni Paglia,10839,492,,106,Parliament,"['333214378']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32230 +Palese Rocco,10841,491,,106,Parliament,"['511963188']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32610 +Giovanni Palladino,10842,108,,106,Parliament,"['3390761877']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Elio Massimo Palmizio,10844,491,,106,Parliament,"['927957806']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32610 +Annalisa Pannarale,10845,492,,106,Parliament,"['1139418464']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32230 +Massimo Parisi,10846,499,,106,Parliament,"['450140855']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Paris Valentina,10847,108,,106,Parliament,"['440382143']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Oreste Pastorelli,10848,493,,106,Parliament,"['1114159615']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Pellegrino Serena,10849,492,,106,Parliament,"['3290833539']",SINISTRA ITALIANA - SINISTRA ECOLOGIA LIBERTA - POSSIBILE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32230 +Daniele Pesco,10850,105,,106,Parliament,"['1135509110']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32956 +Cosimo Petraroli,10851,105,,106,Parliament,"['939438354']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32956 +Filippo Piccone,10857,494,,106,Parliament,"['326888215']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Gaetano Piepoli,10858,497,,106,Parliament,"['1083431718']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32450 +Mauro Pili,10859,493,,106,Parliament,"['428062604']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Nazzareno Pilozzi,10860,108,,106,Parliament,"['1119006152']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Michele Piras,10862,496,,106,Parliament,"['419431278']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23, +Girolamo Pisano,10863,105,,106,Parliament,"['86554500']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32956 +Francesco Prina,10871,108,,106,Parliament,"['2827610069']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=P,,Italy,12,23,32440 +Quaranta Stefano,10872,496,,106,Parliament,"['122165045']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=Q,,Italy,12,23, +Giuseppe Quintarelli Stefano,10874,493,,106,Parliament,"['5427422']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=Q,,Italy,12,23, +Mariano Rabino,10875,499,,106,Parliament,"['406552900']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23, +Lara Ricciatti,10878,496,,106,Parliament,"['488706755']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23, +Giuseppe Romanini,10880,108,,106,Parliament,"['1024133503']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Anna Rossomando,10885,108,,106,Parliament,"['2927013813']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Angelo Rughetti,10888,108,,106,Parliament,"['929354545']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=R,,Italy,12,23,32440 +Giovanni Sanga,10889,108,,106,Parliament,"['2974967339']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Giovanna Sanna,10890,108,,106,Parliament,"['2664057646']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Milena Santerini,10892,497,,106,Parliament,"['417150886']",DEMOCRAZIA SOLIDALE - CENTRO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32450 +Gian Piero Scanu,10897,108,,106,Parliament,"['2600151114']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Gea Schiro',10898,108,,106,Parliament,"['90891882']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Rosanna Scopelliti,10900,494,,106,Parliament,"['3413443713']",ALTERNATIVA POPOLARE-CENTRISTI PER LEUROPA-NCD,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Arturo Scotto,10901,496,,106,Parliament,"['430169858']",ARTICOLO 1-MOVIMENTO DEMOCRATICO E PROGRESSISTA,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Chiara Scuvera,10902,108,,106,Parliament,"['2512069500']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Samuele Segoni,10904,493,,106,Parliament,"['2693178398']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Angelo Senaldi,10905,108,,106,Parliament,"['407699712']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Camilla Sgambato,10906,108,,106,Parliament,"['1148304355']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32440 +Francesco Paolo Sisto,10908,491,,106,Parliament,"['463064441']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23,32610 +Cesare Giulio Sottanelli,10910,499,,106,Parliament,"['488750612']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=S,,Italy,12,23, +Alessandra Terrosi,10916,108,,106,Parliament,"['865208119617630208']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32440 +Irene Tinagli,"10918, 12983","108, 176",30,"106, 191",Parliament,"['136343557']","PARTITO DEMOCRATICO, Partito Democratico",,,Italy,,https://www.camera.it/leg17/28?lettera=T,,"European Parliament, Italy","27, 12","23, 43",32440 +Danilo Toninelli,10919,105,,106,Parliament,"['960924277']",MOVIMENTO 5 STELLE,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32956 +Achille Totaro,10920,498,,106,Parliament,"['373974686']",FRATELLI DITALIA-ALLEANZA NAZIONALE,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23,32710 +Tancredi Turco,10922,493,,106,Parliament,"['1317015313']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=T,,Italy,12,23, +Simone Valiante,10925,108,,106,Parliament,"['1467415374']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32440 +Pierpaolo Vargiu,10927,493,,106,Parliament,"['1067896026']",MISTO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23, +Paolo Vella,10929,491,,106,Parliament,"['557637492']",FORZA ITALIA - IL POPOLO DELLA LIBERTA - BERLUSCONI PRESIDENTE,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32610 +Laura Venittelli,10930,108,,106,Parliament,"['1480178468']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23,32440 +Maria Valentina Vezzali,10932,499,,106,Parliament,"['631003668']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=V,,Italy,12,23, +Enrico Zanetti,10936,499,,106,Parliament,"['476836933']",SCELTA CIVICA-ALA PER LA COSTITUENTE LIBERALE E POPOLARE-MAIE,,,,,https://www.camera.it/leg17/28?lettera=Z,,Italy,12,23, +Giorgio Zanin,10937,108,,106,Parliament,"['1356493350']",PARTITO DEMOCRATICO,,,,,https://www.camera.it/leg17/28?lettera=Z,,Italy,12,23,32440 +Allred Colin,"10945, 16689",1,,,Parliament,"['346964561', '1078355119920562176']",Democrat,https://pbs.twimg.com/profile_images/1082644909033750528/JmKN3p40_normal.jpg,"['Transportation and Infrastructure', 'Foreign Affairs', ""Veterans' Affairs""]",Texas,32nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Armstrong Kelly,"16691, 10948",0,,,Parliament,"['964996994623311874', '1080515866255593472']",Republican,https://pbs.twimg.com/profile_images/1080879174972264449/PE5-7Tn1_normal.jpg,"['Ethics', 'Energy and Commerce']",North Dakota At Large,,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Axne Cynthia,"16694, 10950",1,,,Parliament,"['1080865917377097728', '867495243482058755']",Democrat,https://pbs.twimg.com/profile_images/1080868174097043456/QomNGZDc_normal.jpg,"['Agriculture', 'Financial Services']",Iowa,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Baird James,"10953, 16697",0,,,Parliament,"['1086316494450032640', '123563657']",Republican,https://pbs.twimg.com/profile_images/1086318018630746113/kobDQry9_normal.jpg,"['Science, Space, and Technology', 'Agriculture']",Indiana,4th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Balderson Troy,"16698, 10954",0,,,Parliament,"['603083228', '1037341536592310272']",Republican,https://pbs.twimg.com/profile_images/1194294042961559552/lz5-JpAz_normal.jpg,"['Agriculture', 'Transportation and Infrastructure']",Ohio,12th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Anthony Brindisi,10973,1,,,Parliament,"['915831762']",Democrat,,,New York,22nd,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Burchett Tim,"16729, 10982",0,,,Parliament,"['353890966', '1028854804087492613']",Republican,https://pbs.twimg.com/profile_images/1078105969543004160/vB8JwoxG_normal.jpg,"['Transportation and Infrastructure', 'Foreign Affairs']",Tennessee,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Case Ed,"10994, 16743",1,,,Parliament,"['1081350574589833221']",Democrat,https://pbs.twimg.com/profile_images/1148306755778162688/dIpjFqB8_normal.png,"['Natural Resources', 'Appropriations']",Hawaii,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Casten Sean,"16744, 10995",1,,,Parliament,"['66804351', '1083472286089396224']",Democrat,https://pbs.twimg.com/profile_images/1100458327002304513/mINz-ss-_normal.png,"['Science, Space, and Technology', 'Financial Services']",Illinois,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Cisneros Gilbert Jr. Ray,11002,1,,,Parliament,"['876894308309147650']",Democrat,,,California,39th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Ben Cline,"11007, 16755",0,,,Parliament,"['1072158357237174272', '40264497']",Republican,https://pbs.twimg.com/profile_images/1080526430851747841/A1ugejo0_normal.jpg,"['Appropriations', 'Budget']",Virginia,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Cloud Michael,"16756, 11008",0,,,Parliament,"['1039879658400112640']",Republican,https://pbs.twimg.com/profile_images/1225845760186515457/wRIZvZ-H_normal.jpg,"['Oversight and Reform', 'Agriculture']",Texas,27th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Cox Tj,11022,1,,,Parliament,"['882843534750961664']",Democrat,,,California,21st,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Angie Craig,"11023, 16767",1,,,Parliament,"['1080222360643485698', '411861905']",Democrat,https://pbs.twimg.com/profile_images/1257340278219911169/7E0EMj2P_normal.jpg,"['Small Business', 'Agriculture', 'Energy and Commerce']",Minnesota,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Crenshaw Dan,"16769, 11025",0,,,Parliament,"['930552552302792705', '1080894931311431682']",Republican,https://pbs.twimg.com/profile_images/1094614383232249856/BHAwJUfL_normal.jpg,"['Energy and Commerce']",Texas,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Crow Jason,"11027, 16771",1,,,Parliament,"['1080191866509901826']",Democrat,https://pbs.twimg.com/profile_images/1080818711815176193/HGVcZOy1_normal.jpg,"['Armed Services', 'Small Business']",Colorado,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Cunningham Joe,11030,1,,,Parliament,"['826589191412862976']",Democrat,,,South Carolina,1st,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Curtis John R.,"16773, 11031",0,,,Parliament,"['931614483050414080']",Republican,https://pbs.twimg.com/profile_images/1217484661108224000/0TLU4TYF_normal.jpg,"['Energy and Commerce']",Utah,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Davids Sharice,"11032, 16774",1,,,Parliament,"['1080516116395499522', '950952511556538368']",Democrat,https://pbs.twimg.com/profile_images/1084915988011892736/jGQS0NvE_normal.jpg,"['Small Business', 'Transportation and Infrastructure']",Kansas,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Dean Madeleine,"11037, 16778",1,,,Parliament,"['567508925']",Democrat,https://pbs.twimg.com/profile_images/1195381108545855488/vc1NsSll_normal.jpg,"['Judiciary', 'Financial Services']",Pennsylvania,4th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Antonio Delgado,"16783, 11042",1,,,Parliament,"['1080485692298444800', '829061809135030272']",Democrat,https://pbs.twimg.com/profile_images/1080486047451103232/c-JbTae0_normal.jpg,"['Small Business', 'Agriculture', 'Transportation and Infrastructure']",New York,19th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Escobar Veronica,"16796, 11056",1,,,Parliament,"['1075517806551154689']",Democrat,https://pbs.twimg.com/profile_images/1080877314123157505/gwdT0ZH9_normal.jpg,"['Ethics', 'Armed Services', 'Judiciary']",Texas,16th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Abby Finkenauer,11062,1,,,Parliament,"['1262017122']",Democrat,,,Iowa,1st,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Fletcher Lizzie,"16808, 11065",1,,,Parliament,"['857009033882083329', '1075904377221722113']",Democrat,https://pbs.twimg.com/profile_images/1129396695056486400/mGqajwam_normal.png,"['Energy and Commerce']",Texas,7th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Fulcher Russ,"11072, 16815",0,,,Parliament,"['1078741899572240384', '172944579']",Republican,https://pbs.twimg.com/profile_images/1084841551463882753/ul2xePnL_normal.jpg,"['Natural Resources', 'Education and Labor']",Idaho,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +"""Chuy"" G. Garcia Jesús","11078, 16821",1,,,Parliament,"['1082427779583541248']",Democrat,https://pbs.twimg.com/profile_images/1092137300115496960/9_hmhIKo_normal.jpg,"['Natural Resources', 'Transportation and Infrastructure', 'Financial Services']",Illinois,4th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Garcia Sylvia,"16823, 11079",1,,,Parliament,"['1080587263132733442']",Democrat,https://pbs.twimg.com/profile_images/1268928806699614208/axku63oe_normal.jpg,"['Judiciary', 'Financial Services']",Texas,29th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Gianforte Greg,11080,0,,,Parliament,"['3420965229']",Republican,,,Montana At Large,,https://www.house.gov/representatives#by-name,,United States,25,40,61620 +Golden Jared,"11083, 16827",1,,,Parliament,"['1080891667308298240', '900516768032202752']",Democrat,https://pbs.twimg.com/profile_images/1226931242152726528/2tTOw6oS_normal.jpg,"['Armed Services', 'Small Business']",Maine,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Gomez Jimmy,"16828, 11084",1,,,Parliament,"['2371339658']",Democrat,https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg,"['Ways and Means', 'Oversight and Reform']",California,34th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Anthony Gonzalez,"16830, 11085",0,,,Parliament,"['1054381765224210432']",Republican,https://pbs.twimg.com/profile_images/1161727822228013056/yu91mfmY_normal.jpg,"['Science, Space, and Technology', 'Financial Services']",Ohio,16th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Gooden Lance,"16834, 11088",0,,,Parliament,"['412595957', '1029094268542099457']",Republican,https://pbs.twimg.com/profile_images/1190009977500508160/lmD2PbMm_normal.jpg,"['Financial Services']",Texas,5th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Green Mark,"16841, 11096",0,,,Parliament,"['1080477288955826176', '93412074']",Republican,https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg,"['Armed Services', 'Foreign Affairs']",Tennessee,7th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Guest Michael,"11100, 16846",0,,,Parliament,"['953749679166156800', '1081243468327018496']",Republican,https://pbs.twimg.com/profile_images/1111288039278628864/Bpkmergx_normal.png,"['Ethics', 'Homeland Security', 'Transportation and Infrastructure']",Mississippi,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Debra Haaland,"16848, 11102",1,,,Parliament,"['1080695666760929280', '286476728']",Democrat,https://pbs.twimg.com/profile_images/1267983377250033665/IldpGF___normal.jpg,,New Mexico,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Hagedorn Jim,"11103, 16849",0,,,Parliament,"['1083474782602125318', '1729773254']",Republican,https://pbs.twimg.com/profile_images/1085188819396157440/hQbDlnW5_normal.jpg,"['Small Business', 'Agriculture']",Minnesota,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Harder Josh,"11104, 16850",1,,,Parliament,"['438665212', '1080851152151953410']",Democrat,https://pbs.twimg.com/profile_images/1357076172329406469/3vKrlbVh_normal.jpg,"['Appropriations', 'Agriculture']",California,10th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Hayes Jahana,"16855, 11108",1,,,Parliament,"['991721030631780354', '1082086081238102018']",Democrat,https://pbs.twimg.com/profile_images/1268034070224572416/9IZWqA1Z_normal.jpg,"['Agriculture', 'Education and Labor']",Connecticut,5th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Hern Kevin,"16856, 11110",0,,,Parliament,"['19168067', '1067818539179024386']",Republican,https://pbs.twimg.com/profile_images/1070789105234128903/ICEvlcHw_normal.jpg,"['Ways and Means']",Oklahoma,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Hill Katie,11116,1,,,Parliament,"['839226269627621376']",Democrat,,,California,25th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Horn Kendra,11120,1,,,Parliament,"['880850093548687360']",Democrat,,,Oklahoma,5th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Horsford Steven,"16866, 11121",1,,,Parliament,"['389840566']",Democrat,https://pbs.twimg.com/profile_images/1228726807354134528/yzkbGJgq_normal.jpg,"['Ways and Means', 'Budget']",Nevada,4th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Chrissy Houlahan,"16867, 11122",1,,,Parliament,"['847098017274613761', '1052896620797460481']",Democrat,https://pbs.twimg.com/profile_images/1096426355594616832/L0qj7q5d_normal.jpg,"['Armed Services', 'Small Business', 'Foreign Affairs']",Pennsylvania,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Hoyer Steny,11123,1,,,Parliament,"['266719387']",Democrat,,,Maryland,5th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Dusty Johnson,"16880, 11133",0,,,Parliament,"['140529899', '1074782372594413569']",Republican,https://pbs.twimg.com/profile_images/1093989780449304578/8oolcm86_normal.jpg,"['Agriculture', 'Transportation and Infrastructure']","South Dakota At Large, South Daota At Large",,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +"""Hank"" C. Henry Johnson Jr.","16882, 11135",1,,,Parliament,"['24745957']",Democrat,https://pbs.twimg.com/profile_images/979005069248081925/dN03wCY1_normal.jpg,"['Oversight and Reform', 'Judiciary', 'Transportation and Infrastructure']",Georgia,4th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +John Joyce,"11140, 16887",0,,,Parliament,"['1082311988926124036']",Republican,https://pbs.twimg.com/profile_images/1082422656778072064/CpGiwhEZ_normal.jpg,"['Energy and Commerce']",Pennsylvania,13th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Andy Kim,"16899, 11151",1,,,Parliament,"['1078771848882593793', '24215154']",Democrat,https://pbs.twimg.com/profile_images/1329149601564282880/PKgFGUel_normal.jpg,"['Armed Services', 'Small Business', 'Foreign Affairs']",New Jersey,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Ann Kirkpatrick,"11156, 16903",1,,,Parliament,"['1081240074946252801']",Democrat,https://pbs.twimg.com/profile_images/1083105724312506369/LMn9i3D5_normal.jpg,"['Appropriations']",Arizona,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Conor Lamb,"11162, 16909",1,,,Parliament,"['984456621417000960']",Democrat,https://pbs.twimg.com/profile_images/984511126653231104/hEb3JBzy_normal.jpg,"['Science, Space, and Technology', 'Transportation and Infrastructure', ""Veterans' Affairs""]",Pennsylvania,17th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Lee Susie,"16919, 11171",1,,,Parliament,"['1079061579973439488']",Democrat,https://pbs.twimg.com/profile_images/1080861522061127680/PO_53d01_normal.jpg,"['Appropriations']",Nevada,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Debbie Lesko,"16921, 11172",0,,,Parliament,"['996094929733652481']",Republican,https://pbs.twimg.com/profile_images/1304080258581368832/nXJqvfgA_normal.jpg,"['Energy and Commerce']",Arizona,8th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Andy Levin,"16923, 11173",1,,,Parliament,"['1080277407867772930']",Democrat,https://pbs.twimg.com/profile_images/1317239447927349250/VI2qPA3k_normal.jpg,"['Foreign Affairs', 'Education and Labor']",Michigan,9th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Levin Mike,"11174, 16924",1,,,Parliament,"['1072134139560620033', '14573926']",Democrat,https://pbs.twimg.com/profile_images/1267847085841436674/O3WeIsaE_normal.jpg,"['Natural Resources', ""Veterans' Affairs""]",California,49th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Elaine Luria,"11187, 16932",1,,,Parliament,"['1080292515939565568']",Democrat,https://pbs.twimg.com/profile_images/1230885830123819009/Lc9AWfbA_normal.jpg,"['Armed Services', ""Veterans' Affairs"", 'Homeland Security']",Virginia,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Malinowski Tom,"11189, 16935",1,,,Parliament,"['1080898026418384897', '811239440916054016']",Democrat,https://pbs.twimg.com/profile_images/1083079287610228736/auj_6yPw_normal.jpg,"['Homeland Security', 'Transportation and Infrastructure', 'Foreign Affairs']",New Jersey,7th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Ben Mcadams,11198,1,,,Parliament,"['196362083']",Democrat,,,Utah,4th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Lucy Mcbath,"16944, 11199",1,,,Parliament,"['1082380458976051202']",Democrat,https://pbs.twimg.com/profile_images/1096472053761392640/KGsi_PNA_normal.jpg,"['Judiciary', 'Education and Labor']",Georgia,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Daniel Meuser,"16958, 11213",0,,,Parliament,"['1080574793630527505']",Republican,https://pbs.twimg.com/profile_images/1081299055114895360/DvrWDK_k_normal.jpg,"['Small Business', 'Foreign Affairs']",Pennsylvania,9th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Carol Miller,"11214, 16960",0,,,Parliament,"['1081318716573470720']",Republican,https://pbs.twimg.com/profile_images/1081319065514323968/DK8CD7JB_normal.jpg,"['Ways and Means']",West Virginia,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Joseph Morelle,"16968, 11219",1,,,Parliament,"['1064595993222615040']",Democrat,https://pbs.twimg.com/profile_images/1074733746631438336/iW_jCdm1_normal.jpg,"['Education and Labor', 'Armed Services', 'Rules', 'Budget']",New York,25th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Debbie Mucarsel-Powell,11221,1,,,Parliament,"['1080941062028447744']",Democrat,,,Florida,26th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Joe Neguse,"16977, 11227",1,,,Parliament,"['1078749802765139968']",Democrat,https://pbs.twimg.com/profile_images/1078835620246622209/3n6aNkEV_normal.jpg,"['Natural Resources', 'Judiciary']",Colorado,2nd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Norman Ralph,"16982, 11230",0,,,Parliament,"['880480631108644864']",Republican,https://pbs.twimg.com/profile_images/886594415904608258/VyYZc8Uk_normal.jpg,"['Homeland Security', 'Oversight and Reform']",South Carolina,5th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Alexandria Ocasio-Cortez,"16986, 11233",1,,,Parliament,"['138203134']",Democrat,https://pbs.twimg.com/profile_images/923274881197895680/AbHcStkl_normal.jpg,"['Oversight and Reform', 'Financial Services']",New York,14th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Ilhan Omar,"16988, 11236",1,,,Parliament,"['783792992', '1082334352711790593']",Democrat,https://pbs.twimg.com/profile_images/1082685661621178373/ledtkemL_normal.jpg,"['Foreign Affairs', 'Education and Labor']",Minnesota,5th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Chris Pappas,"11241, 16994",1,,,Parliament,"['574799823', '1067748650485497862']",Democrat,https://pbs.twimg.com/profile_images/1167093430176157699/a4tGhKAj_normal.jpg,"['Transportation and Infrastructure', ""Veterans' Affairs""]",New Hampshire,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Greg Pence,"11245, 16998",0,,,Parliament,"['1082369392229400576']",Republican,https://pbs.twimg.com/profile_images/1082426958519115783/2O_04xqo_normal.jpg,"['Energy and Commerce']",Indiana,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Dean Phillips,"17003, 11250",1,,,Parliament,"['1061310112013434882', '39894447']",Democrat,https://pbs.twimg.com/profile_images/1297004724563185664/XrXWw_Cm_normal.jpg,"['Ethics', 'Small Business', 'Foreign Affairs']",Minnesota,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Katie Porter,"17007, 11254",1,,,Parliament,"['1081222837459996672', '617266600']",Democrat,https://pbs.twimg.com/profile_images/1138172373390307329/vfzeyP7D_normal.png,"['Natural Resources', 'Oversight and Reform']",California,45th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Ayanna Pressley,"11256, 17009",1,,,Parliament,"['1080584229510172678', '31013444']",Democrat,https://pbs.twimg.com/profile_images/1220719045755973637/fSMPELAr_normal.jpg,"['Oversight and Reform', 'Financial Services']",Massachusetts,7th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Guy Reschenthaler,"17015, 11263",0,,,Parliament,"['477223342', '4205133682']",Republican,https://pbs.twimg.com/profile_images/1364303671182376962/9GlDnwLD_normal.jpg,"['Appropriations', 'Rules']",Pennsylvania,14th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Denver Riggleman,11267,0,,,Parliament,"['818507671284416513']",Republican,,,Virginia,5th,https://www.house.gov/representatives#by-name,,United States,25,40,61620 +John Rose W.,"11273, 17022",0,,,Parliament,"['1081312310059253763']",Republican,https://pbs.twimg.com/profile_images/1081319228383350784/HYRcIXZp_normal.jpg,"['Financial Services']",Tennessee,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Max Rose,11274,1,,,Parliament,"['1078692057940742144']",Democrat,,,New York,11th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Harley Rouda,11275,1,,,Parliament,"['1075080722241736704']",Democrat,,,California,48th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Chip Roy,"11277, 17026",0,,,Parliament,"['1257667158', '1082790600292925440']",Republican,https://pbs.twimg.com/profile_images/1220019471429054465/5jj6fh-N_normal.jpg,"['Judiciary', ""Veterans' Affairs""]",Texas,21st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Gay Mary Scanlon,"11289, 17039",1,,,Parliament,"['1067541214671577093']",Democrat,https://pbs.twimg.com/profile_images/1339584248794079233/5W62OZ0j_normal.jpg,"['Rules', 'Judiciary', 'House Administration']",Pennsylvania,5th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Bradley Schneider,"11292, 17042",1,,,Parliament,"['1071840474']",Democrat,https://pbs.twimg.com/profile_images/1246486546003394560/rPfgAH1g_normal.jpg,"['Ways and Means', 'Foreign Affairs']",Illinois,10th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Kim Schrier,"17044, 11294",1,,,Parliament,"['1080462532815532032']",Democrat,https://pbs.twimg.com/profile_images/1129401036349857793/zvLbPQb6_normal.png,"['Agriculture', 'Energy and Commerce']",Washington,8th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Donna E. Shalala,11302,1,,,Parliament,"['1060584809095925762']",Democrat,,,Florida,27th,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Mikie Sherrill,"11304, 17052",1,,,Parliament,"['1080569698536878081']",Democrat,https://pbs.twimg.com/profile_images/1144656535668350976/dOFWcgKL_normal.jpg,"['Armed Services', 'Science, Space, and Technology', 'Education and Labor']",New Jersey,11th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Elissa Slotkin,"17055, 11308",1,,,Parliament,"['1078401427347857408']",Democrat,https://pbs.twimg.com/profile_images/1085661888631848961/lIgv5rBv_normal.jpg,"['Armed Services', ""Veterans' Affairs"", 'Homeland Security']",Michigan,8th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Abigail Spanberger,"17062, 11315",1,,,Parliament,"['1078771401497161728']",Democrat,https://pbs.twimg.com/profile_images/1080671481040904192/3QHucc8i_normal.jpg,"['Agriculture', 'Foreign Affairs']",Virginia,7th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Ross Spano,11316,0,,,Parliament,"['605615715']",Republican,,,Florida,15th,https://www.house.gov/representatives#by-name,,United States,25,40,61620 +Greg Stanton,"17065, 11318",1,,,Parliament,"['218292287', '1080885078425784320']",Democrat,https://pbs.twimg.com/profile_images/1364306753899421696/HR2_Yy2B_normal.jpg,"['Judiciary', 'Transportation and Infrastructure']",Arizona,9th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Pete Stauber,"11319, 17066",0,,,Parliament,"['1075830599007510535']",Republican,https://pbs.twimg.com/profile_images/1080286189700169731/ZjZ0mUop_normal.jpg,"['Natural Resources', 'Small Business', 'Transportation and Infrastructure']",Minnesota,8th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Bryan Steil,"17069, 11321",0,,,Parliament,"['1075205691621720064']",Republican,https://pbs.twimg.com/profile_images/1080811922474311681/FbNkaP3e_normal.jpg,"['House Administration', 'Financial Services']",Wisconsin,1st,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Gregory Steube W.,"17070, 11322",0,,,Parliament,"['1083125649609506816', '21924842']",Republican,https://pbs.twimg.com/profile_images/1090263131320774656/b7bh-sEB_normal.jpg,"['Judiciary', 'Foreign Affairs']",Florida,17th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Haley Stevens,"11323, 17071",1,,,Parliament,"['1076161611033968640']",Democrat,https://pbs.twimg.com/profile_images/1080877539986497536/65XghImd_normal.jpg,"['Science, Space, and Technology', 'Education and Labor']",Michigan,11th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Taylor Van,"17078, 11329",0,,,Parliament,"['1075040139351597056']",Republican,https://pbs.twimg.com/profile_images/1088576583684812800/nPn9LNpI_normal.jpg,"['Financial Services']",Texas,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Glenn Thompson,"17081, 11331",0,,,Parliament,"['18967498']",Republican,https://pbs.twimg.com/profile_images/80797190/Offical_Photo_twitter_normal.JPG,"['Agriculture', 'Education and Labor']",Pennsylvania,15th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Timmons William,"11334, 17084",0,,,Parliament,"['1079770852302958592']",Republican,https://pbs.twimg.com/profile_images/1237792145886642178/GcgYkCfd_normal.jpg,"['Financial Services']",South Carolina,4th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Rashida Tlaib,"11337, 17086",1,,,Parliament,"['1079769536730140672', '435331179']",Democrat,https://pbs.twimg.com/profile_images/1097639158888230912/GFONbJEm_normal.jpg,"['Natural Resources', 'Oversight and Reform', 'Financial Services']",Michigan,13th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Small Torres Xochitl,11340,1,,,Parliament,"['1080830346915209216']",Democrat,,,New Mexico,2nd,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Lori Trahan,"11341, 17090",1,,,Parliament,"['1079802482640019456']",Democrat,https://pbs.twimg.com/profile_images/1079802597366788102/iwByLB57_normal.jpg,"['Energy and Commerce']",Massachusetts,3rd,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +David Trone,"11342, 17091",1,,,Parliament,"['1080573351914061825']",Democrat,https://pbs.twimg.com/profile_images/1110578625865285633/33soCqWE_normal.png,"['Appropriations', ""Veterans' Affairs""]",Maryland,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Lauren Underwood,"11344, 17093",1,,,Parliament,"['872156132688711681', '1080539438508400642']",Democrat,https://pbs.twimg.com/profile_images/1346602823258148865/4toABdEC_normal.jpg,"['Appropriations', ""Veterans' Affairs""]",Illinois,14th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Drew Jefferson Van,11346,1,,,Parliament,"['1083469084648505344']",Democrat,,,New Jersey,2nd,https://www.house.gov/representatives#by-name,,United States,25,40,61320 +Michael Waltz,"17105, 11357",0,,,Parliament,"['833673914']",Republican,https://pbs.twimg.com/profile_images/1348847375989747718/pNtyUoNH_normal.jpg,"['Armed Services', 'Science, Space, and Technology']",Florida,6th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61620 +Steven Watkins,11360,0,,,Parliament,"['1080307235350241280']",Republican,,,Kansas,2nd,https://www.house.gov/representatives#by-name,,United States,25,40,61620 +Jennifer Wexton,"11367, 17114",1,,,Parliament,"['1017819745880543238', '2212905492']",Democrat,https://pbs.twimg.com/profile_images/1265447906099761152/-Abmr-If_normal.jpg,"['Appropriations', 'Budget']",Virginia,10th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Susan Wild,"17115, 11368",1,,,Parliament,"['1069636653353000962']",Democrat,https://pbs.twimg.com/profile_images/1164937658554040322/arqv20xX_normal.jpg,"['Ethics', 'Foreign Affairs', 'Education and Labor']",Pennsylvania,7th,https://www.house.gov/representatives#by-name,,United States,25,"40, 58",61320 +Braun Mike,11389,0,,,Senate,"['1861019372']",Republican,https://www.braun.senate.gov/,"['Class I']",IN,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61620 +Hawley Josh,11419,0,,,Senate,"['2352629311']",Republican,https://www.hawley.senate.gov/,"['Class I']",MO,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61620 +Cindy Hyde-Smith,11423,0,,,Senate,"['983348251972816896']",Republican,https://www.hydesmith.senate.gov/,"['Class II']",MS,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61620 +Doug Jones,11427,1,,,Senate,"['941080085121175552']",Democrat,https://www.jones.senate.gov/,"['Class II']",AL,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61320 +Mitt Romney,11452,0,,,Senate,"['50055701']",Republican,https://www.romney.senate.gov/,"['Class I']",UT,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61620 +Rick Scott,11460,0,,,Senate,"['131546062']",Republican,https://www.rickscott.senate.gov/,"['Class I']",FL,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61620 +Smith Tina,11465,1,,,Senate,"['941000686275387392']",Democrat,https://www.smith.senate.gov/,"['Class II']",MN,,https://www.senate.gov/general/contact_information/senators_cfm.cfm?OrderBy=last_name&Sort=ASC,,United States,25,41,61320 +Aittakumpu Pekka,11481,166,,,Parliament,"['1050061735418351616']",Centre Party of Finland,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Al-Taee Hussein,11483,169,,,Parliament,"['826807245426016257']",The Finnish Social Democratic Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Antikainen Sanna,11485,170,,,Parliament,"['1563847117']",The Finns Party,,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Asell Marko,11487,169,,,Parliament,"['457029677']",The Finnish Social Democratic Party,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Autto Heikki,11488,163,,,Parliament,"['18670386']",National Coalition Party,,,Electoral district of Lappi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Bergqvist Sandra,11490,168,,,Parliament,"['3419535586']",Swedish People's Party in Finland,,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14901 +Elo Tiina,11495,164,,,Parliament,"['1960523474']",Green League,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Elomaa Ritva,11496,170,,,Parliament,"['751686169']",The Finns Party,,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Bella Forsgrén,11501,164,,,Parliament,"['2329293492']",Green League,,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Atte Harjanne,11510,164,,,Parliament,"['455570658']",Green League,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Heikkinen Janne,11514,163,,,Parliament,"['499255296']",National Coalition Party,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Eveliina Heinäluoma,11516,169,,,Parliament,"['701439116475559937']",The Finnish Social Democratic Party,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Hanna Holopainen,11518,164,,,Parliament,"['2288030058']",Green League,,,Electoral district of South-East Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Holopainen Mari,11519,164,,,Parliament,"['358054105']",Green League,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Honkasalo Veronika,11520,167,,,Parliament,"['891056606']",The Left Alliance,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14223 +Hopsu Inka,11522,164,,,Parliament,"['1979584914']",Green League,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Hanna Huttunen,11525,166,,,Parliament,"['4690226196']",Centre Party of Finland,,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Hyrkkö Saara,11526,164,,,Parliament,"['271538773']",Green League,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Anna-Kaisa Ikonen,11529,163,,,Parliament,"['1075896200']",National Coalition Party,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Junnila Vilhelm,11532,170,,,Parliament,"['257603156']",The Finns Party,,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Juuso Kaisa,11533,170,,,Parliament,"['879649308022366209']",The Finns Party,,,Electoral district of Lappi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Eeva Kalli,11537,166,,,Parliament,"['2461704474']",Centre Party of Finland,,,Electoral district of Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Kauma Pia,11542,163,,,Parliament,"['41351210']",National Coalition Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Kaunisto Ville,11543,163,,,Parliament,"['2416336524']",National Coalition Party,,,Electoral district of South-East Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Juho Kautto,11544,167,,,Parliament,"['2812601094']",The Left Alliance,,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14223 +Hilkka Kemppi,11545,166,,,Parliament,"['2299502306']",Centre Party of Finland,,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Keto-Huovinen Pihla,11546,163,,,Parliament,"['958439194224922626']",National Coalition Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Kiljunen Kimmo,11548,169,,,Parliament,"['196932740']",The Finnish Social Democratic Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Kilpi Marko,11549,163,,,Parliament,"['733052616867991552']",National Coalition Party,,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Kinnunen Mikko,11550,166,,,Parliament,"['1923393679']",Centre Party of Finland,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Kivelä Mai,11553,167,,,Parliament,"['43360821']",The Left Alliance,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14223 +Kivisaari Pasi,11555,166,,,Parliament,"['1421361757']",Centre Party of Finland,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Koponen Noora,11558,164,,,Parliament,"['2968139740']",Green League,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Johannes Koskinen,11561,169,,,Parliament,"['2171803174']",The Finnish Social Democratic Party,,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Koulumies Terhi,11564,163,,,Parliament,"['118725020']",National Coalition Party,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Johan Kvarnström,11567,169,,,Parliament,"['735015758225362944']",The Finnish Social Democratic Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Joonas Könttä,11570,166,,,Parliament,"['1722771805']",Centre Party of Finland,,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Kristian Laakso Sheikki,11571,170,,,Parliament,"['1295154530']",The Finns Party,,,Electoral district of South-East Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Laiho Mia,11572,163,,,Parliament,"['2442540847']",National Coalition Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Aki Lindén,11577,169,,,Parliament,"['713937495']",The Finnish Social Democratic Party,,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Lohikoski Pia,11581,167,,,Parliament,"['77027545']",The Left Alliance,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14223 +Malm Niina,11584,169,,,Parliament,"['144763186']",The Finnish Social Democratic Party,,,Electoral district of South-East Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Marttinen Matias,11586,163,,,Parliament,"['490746919']",National Coalition Party,,,Electoral district of Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Hanna-Leena Mattila,11587,166,,,Parliament,"['2834895820']",Centre Party of Finland,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Juha Mäenpää,11594,170,,,Parliament,"['850051517814120450']",The Finns Party,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Mäkinen Riitta,11596,169,,,Parliament,"['884161063452893184']",The Finnish Social Democratic Party,,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Jukka Mäkynen,11598,170,,,Parliament,"['2987415297']",The Finns Party,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Niemi Veijo,11599,170,,,Parliament,"['3022263592']",The Finns Party,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Anders Norrback,11601,168,,,Parliament,"['1034027466246049792']",Swedish People's Party in Finland,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14901 +Maria Ohisalo,11603,164,,,Parliament,"['798095178']",Green League,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Mikko Ollikainen,11605,168,,,Parliament,"['2842104303']",Swedish People's Party in Finland,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14901 +Jouni Ovaska,11607,166,,,Parliament,"['1011676838']",Centre Party of Finland,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14810 +Packalén Tom,11609,170,,,Parliament,"['1080868712']",The Finns Party,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Mauri Peltokangas,11612,170,,,Parliament,"['4920858935']",The Finns Party,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Piirainen Raimo,11614,169,,,Parliament,"['192881810']",The Finnish Social Democratic Party,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Jenni Pitko,11616,164,,,Parliament,"['45569215']",Green League,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Puisto Sakari,11617,170,,,Parliament,"['703071439']",The Finns Party,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Purra Riikka,11618,170,,,Parliament,"['773198941']",The Finns Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Lulu Ranne,11620,170,,,Parliament,"['2380966292']",The Finns Party,,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Mari Rantanen,11622,170,,,Parliament,"['2813278060']",The Finns Party,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Piritta Rantanen,11623,169,,,Parliament,"['900003618446876672']",The Finnish Social Democratic Party,,,Electoral district of Central Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Rehn-Kivi Veronica,11624,168,,,Parliament,"['210512922']",Swedish People's Party in Finland,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14901 +Minna Reijonen,11625,170,,,Parliament,"['3078747879']",The Finns Party,,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Janne Sankelo,11633,163,,,Parliament,"['752786630826745856']",National Coalition Party,,,Electoral district of Vaasa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Jussi Saramo,11634,167,,,Parliament,"['38424544']",The Left Alliance,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14223 +Jenna Simula,11641,170,,,Parliament,"['198549058']",The Finns Party,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Ruut Sjöblom,11644,163,,,Parliament,"['2442461881']",National Coalition Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14620 +Riikka Slunga-Poutsalo,11646,170,,,Parliament,"['110511440']",The Finns Party,,,Electoral district of Uusimaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Mirka Soinikoski,11647,164,,,Parliament,"['997388846']",Green League,,,Electoral District of Häme,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Iiris Suomela,11649,164,,,Parliament,"['1630164722']",Green League,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Erkki Tuomioja,11656,169,,,Parliament,"['1119877511389822976']",The Finnish Social Democratic Party,,,Electoral district of Helsinki,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Ano Turtiainen,11658,170,,,Parliament,"['1072604511024398339']",The Finns Party,,,Electoral district of South-East Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Sebastian Tynkkynen,11659,170,,,Parliament,"['455437300']",The Finns Party,,,Electoral district of Oulu,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Vallin Veikko,11661,170,,,Parliament,"['630999765']",The Finns Party,,,Electoral district of Pirkanmaa,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Paula Werning,11666,169,,,Parliament,"['828334868237008902']",The Finnish Social Democratic Party,,,Electoral district of South-East Finland,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Jussi Wihonen,11668,170,,,Parliament,"['219780865']",The Finns Party,,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14820 +Heidi Viljanen,11671,169,,,Parliament,"['1001170571772727296']",The Finnish Social Democratic Party,,,Electoral district of Satakunta,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Sofia Virta,11673,164,,,Parliament,"['3313442100']",Green League,,,Electoral district of Varsinais-Suomi,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14110 +Tuula Väätäinen,11675,169,,,Parliament,"['1306686824']",The Finnish Social Democratic Party,,,Electoral district of Savo-Karelia,,https://www.eduskunta.fi/EN/kansanedustajat/nykyiset_kansanedustajat/Pages/default.aspx,,Finland,6,42,14320 +Alex Vanopslagh,12430,410,,,Parliament,"['1531564633']",Liberal Alliance,,,,,,,Denmark,5,45,13001 +Anders Kronborg,12431,412,,,Parliament,"['77326204']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Anne Paulin,12435,412,,,Parliament,"['906516619']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Anne Callesen Sophie,12436,408,,,Parliament,"['3715310535']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Anne Berthelsen Valentina,12437,411,,,Parliament,"['1468148336']",The Socialist People's Party,,,,,,,Denmark,5,45,13230 +Astrid Carøe,12440,411,,,Parliament,"['2931793769']",The Socialist People's Party,,,,,,,Denmark,5,45,13230 +Bergman Birgitte,12445,413,,,Parliament,"['913151376334688256']",The Conservative People's Party,,,,,,,Denmark,5,45,13620 +Birgitte Vind,12446,412,,,Parliament,"['556304517']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Bjørn Brandenborg,12448,412,,,Parliament,"['835417228459802624']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Camilla Fabricius,12451,412,,,Parliament,"['2649896319']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Carl Valentin,12452,411,,,Parliament,"['731479130']",The Socialist People's Party,,,,,,,Denmark,5,45,13230 +Carsten Kissmeyer,12453,407,,,Parliament,"['2215701076']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Aagaard Christoffer Melson,12457,407,,,Parliament,"['527860153']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Fatma Øktem,12467,407,,,Parliament,"['63959111']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Halime Oguz,12470,411,,,Parliament,"['313532695']",The Socialist People's Party,,,,,,,Denmark,5,45,13230 +Christian Hans Schmidt,12472,407,,,Parliament,"['1080766069818773504']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Bank Heidi,12474,407,,,Parliament,"['31388139']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Henrik Møller,12478,412,,,Parliament,"['4289810721']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Bruus Jeppe,12494,412,,,Parliament,"['92745620']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Joy Mogensen,12498,412,,,Parliament,"['586517268']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Dehnhardt Karina Lorentzen,12503,411,,,Parliament,"['1061131015']",The Socialist People's Party,,,,,,,Denmark,5,45,13230 +Kasper Kjær Sand,12507,412,,,Parliament,"['1092338365']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Ammitzbøll Katarina,12508,413,,,Parliament,"['3000528047']",The Conservative People's Party,,,,,,,Denmark,5,45,13620 +Katrine Robsøe,12510,408,,,Parliament,"['2491403660']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Kim Valentin,12511,407,,,Parliament,"['3512158337']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Frandsen Klaus,12513,408,,,Parliament,"['32574252']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Hegaard Kristian,12514,408,,,Parliament,"['1259433132']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Boje Lars Mathiesen,12519,507,,,Parliament,"['980721900']",Nye Borgerlige,,,,,,,Denmark,5,45, +Fuglede Mads,12530,407,,,Parliament,"['37190496']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Mai Villadsen,12533,409,,,Parliament,"['4724782641']",The Red-Green Alliance,,,,,,,Denmark,5,45,13229 +Bjerre Marie,12537,407,,,Parliament,"['763553476240482304']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Geertsen Martin,12540,407,,,Parliament,"['796311847020412928']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Mette Thiesen,12547,507,,,Parliament,"['1390010864']",Nye Borgerlige,,,,,,,Denmark,5,45, +Juul Mona,12550,413,,,Parliament,"['36910691']",The Conservative People's Party,,,,,,,Denmark,5,45,13620 +Dahlin Morten,12552,407,,,Parliament,"['1243488368']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Flemming Hansen Niels,12558,413,,,Parliament,"['313541479']",The Conservative People's Party,,,,,,,Denmark,5,45,13620 +Hvelplund Peder,12562,409,,,Parliament,"['803908516335550464']",The Red-Green Alliance,,,,,,,Denmark,5,45,13229 +Pernille Vermund,12566,507,,,Parliament,"['24687777']",Nye Borgerlige,,,,,,,Denmark,5,45, +Christensen Peter Seier,12569,507,,,Parliament,"['1015524717040631808']",Nye Borgerlige,,,,,,,Denmark,5,45, +Kjærsgaard Pia,12571,414,,,Parliament,"['1054640354690039809']",The Danish People's Party,,,,,,,Denmark,5,45,13720 +Helveg Petersen Rasmus,12574,408,,,Parliament,"['2189798855']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Rasmus Stoklund,12579,412,,,Parliament,"['2848185609']",The Social Democratic Party,,,,,,,Denmark,5,45,13320 +Lund Rosa,12581,409,,,Parliament,"['736979161']",The Red-Green Alliance,,,,,,,Denmark,5,45,13229 +Nawa Samira,12583,408,,,Parliament,"['92107029']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Munk Signe,12584,411,,,Parliament,"['2222360488']",The Socialist People's Party,,,,,,,Denmark,5,45,13230 +Siddique Sikandar,12585,415,,,Parliament,"['966028570572271618']",The Alternative,,,,,,,Denmark,5,45, +Knuth Stén,12595,407,,,Parliament,"['36741289']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Lindgreen Stinus,12596,408,,,Parliament,"['87923613']",The Social Liberal Party,,,,,,,Denmark,5,45,13410 +Susanne Zimmer,12597,415,,,Parliament,"['1858224865']",The Alternative,,,,,,,Denmark,5,45, +Ahlers Tommy,12600,407,,,Parliament,"['19759881']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Tørnæs Ulla,12608,407,,,Parliament,"['2864003393']",The Liberal Party,,,,,,,Denmark,5,45,13420 +Velasquez Victoria,12609,409,,,Parliament,"['70348108']",The Red-Green Alliance,,,,,,,Denmark,5,45,13229 +Amanda Stoker,12613,464,,,Senate,"['996359407939174401']",Liberal Party of Australia,,,Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63620 +Barry O'Sullivan,12618,467,,,Senate,"['1634834588']",The Nationals,,,New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63810 +Brian Burston,12619,504,,,Senate,"['991497889829404673']",United Australia Party,,,New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46, +Cameron Doug,12632,465,,,Senate,"['2490890594']",Australian Labor Party,,,New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63320 +Duncan Spender,12633,473,,,Senate,"['1108151186102771712']",Liberal Democratic Party,,,New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46, +Ian Macdonald,12639,464,,,Senate,"['538984646']",Liberal Party of Australia,,,Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63620 +James Mcgrath,12640,464,,,Senate,"['2757922069']",Liberal Party of Australia,,,Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63620 +Ao Dsc Jim Molan,12645,464,,,Senate,"['961051403098537984']",Liberal Party of Australia,,,Northern Territory,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63620 +Duniam Jonathon,12647,464,,,Senate,"['1035344614956269568']",Liberal Party of Australia,,,Tasmania,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63620 +Keneally Kristina,12651,465,,,Senate,"['18925120']",Australian Labor Party,,,New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63320 +Larissa Waters,12652,469,,,Senate,"['62776140']",Australian Greens,,,Queensland,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63110 +Faruqi Mehreen,12661,469,,,Senate,"['236713668']",Australian Greens,,,New South Wales,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63110 +Ciccone Raff,12673,465,,,Senate,"['171888155']",Australian Labor Party,,,Victoria,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63320 +Colbeck Richard,12675,464,,,Senate,"['170526680']",Liberal Party of Australia,,,Tasmania,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46,63620 +Storer Tim,12684,471,,,Senate,"['100934451']",Independent,,,South Australia,,https://www.aph.gov.au/Senators_and_Members/Parliamentarian_Search_Results?q=&sen=1&par=-1&gen=0&ps=0,,Australia,1,46, +Abir Al-Sahlani,12687,206,63,,Parliament,"['18690932']",Centerpartiet,,,Sweden,,,,European Parliament,27,43,11810 +Adam Bielan,12688,223,33,239,Parliament,"['40022142']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Adam Jarubas,12689,195,29,210,Parliament,"['325592746']",Polskie Stronnictwo Ludowe,,,Poland,,,,European Parliament,27,43, +Adriana López Maldonado,12693,192,30,207,Parliament,"['380234100']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Agnès Evren,12694,240,29,258,Parliament,"['528558611']",Les Républicains,,,France,,,,European Parliament,27,43,31626 +Aileen Mcleod,12696,178,32,193,Parliament,"['1114920226393612160']",Scottish National Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51902 +Alessandra Basso,12698,509,62,,Parliament,"['1125036710222532608']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Alessandra Moretti,12699,176,30,191,Parliament,"['540895773']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Alessandro Panza,12700,509,62,,Parliament,"['744454884901163008']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Agius Alex Saliba,12701,233,30,250,Parliament,"['91314199']",Partit Laburista,,,Malta,,,,European Parliament,27,43,54320 +Alexandr Vondra,12704,282,33,305,Parliament,"['2744733035']",Občanská demokratická strana,,,Czechia,,,,European Parliament,27,43,82413 +Alexandra Geese,12705,209,32,225,Parliament,"['1019949632108064768']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Alexandra Lesley Phillips,12706,511,36,,Parliament,"['1123143752984477696']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Alexandra Louise Phillips Rosenfield,12707,215,32,231,Parliament,"['40363629']",Green Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,53110 +Alexis Georgoulis,12708,199,28,215,Parliament,"['1147467904172081280']",Coalition of the Radical Left,,,Greece,,,,European Parliament,27,43,34020 +Alicia Ginel Homs,12711,192,30,207,Parliament,"['3019838428']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +André Rougé,12716,512,62,,Parliament,"['1156135942660460544']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Andrea Bocskor,12717,508,29,,Parliament,"['871783295813660672']",Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt,,,Hungary,,,,European Parliament,27,43,86421 +Andrea Caroppo,12718,509,62,,Parliament,"['1117008833715556480']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Andreas Glück,12720,177,63,,Parliament,"['1145986626503479296']",Freie Demokratische Partei,,,Germany,,,,European Parliament,27,43,41420 +Andrew England Kerr,12723,511,36,,Parliament,"['1132968185727246336']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Ameriks Andris,12727,513,30,,Parliament,"['102979056']","""Saskaņa"" sociāldemokrātiskā partija",,,Latvia,,,,European Parliament,27,43,87340 +Andrius Kubilius,12728,263,29,284,Parliament,"['358046297']",Tėvynės sąjunga-Lietuvos krikščionys demokratai,,,Lithuania,,,,European Parliament,27,43,88621 +Andrus Ansip,12729,222,63,,Parliament,"['2803587655']",Eesti Reformierakond,,,Estonia,,,,European Parliament,27,43,83430 +Anna Cavazzini,12739,209,32,225,Parliament,"['833300465039319040']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Anna Deparnay-Grunenberg,12740,209,32,225,Parliament,"['825815009041203200']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Anna Fotyga,12741,223,33,239,Parliament,"['1121707380591537920']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Anna Donáth Júlia,12742,514,63,,Parliament,"['1098198745810984832']",Momentum,,,Hungary,,,,European Parliament,27,43, +Annalisa Tardino,12745,509,62,,Parliament,"['1120084154853490560']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Anne-Sophie Pelletier,12747,515,28,,Parliament,"['971692818577215360']",La France Insoumise,,,France,,,,European Parliament,27,43,31240 +Annunziata Mary Rees-Mogg,12750,511,36,,Parliament,"['39102609']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Antonio Maria Rinaldi,12753,509,62,,Parliament,"['1333369999']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Antony Hook,12756,321,63,,Parliament,"['43206205']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Arba Kokalari,12757,182,29,197,Parliament,"['285082743']",Moderaterna,,,Sweden,,,,European Parliament,27,43,11620 +Asger Christensen,12759,295,63,,Parliament,"['1089972461008023680']","Venstre, Danmarks Liberale Parti",,,Denmark,,,,European Parliament,27,43,13420 +Ademov Asim,12760,203,29,219,Parliament,"['907625645773086720']",Citizens for European Development of Bulgaria,,,Bulgaria,,,,European Parliament,27,43,80510 +Assita Kanko,12761,310,33,334,Parliament,"['52361939']",Nieuw-Vlaamse Alliantie,,,Belgium,,,,European Parliament,27,43,21916 +Ara-Kovács Attila,12764,253,30,274,Parliament,"['2226678240']",Demokratikus Koalíció,,,Hungary,,,,European Parliament,27,43,86221 +Aurelia Beigneux,12765,512,62,,Parliament,"['491560128']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Aurore Lalucq,12766,517,30,,Parliament,"['938522598585131008']",Place publique,,,France,,,,European Parliament,27,43, +Aušra Maldeikienė,12767,194,29,209,Parliament,"['1141647835189976960']",Independent,,,Lithuania,,,,European Parliament,27,43, +Ann Barbara Gibson,12770,321,63,,Parliament,"['1998841']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Barbara Thaler,12771,238,29,256,Parliament,"['36098698']",Österreichische Volkspartei,,,Austria,,,,European Parliament,27,43,42520 +Baroness Mobarik Nosheena,12772,179,33,194,Parliament,"['930742277739352064']",Conservative Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51620 +Belinda De Lucy,12778,511,36,,Parliament,"['1124345151642587136']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Ben Habib,12779,511,36,,Parliament,"['2790295109']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Benoît Biteau,12780,330,32,357,Parliament,"['601028185']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +Bernard Guetta,12782,519,63,,Parliament,"['1857085772']",Liste Renaissance,,,France,,,,European Parliament,27,43, +Bert-Jan Ruissen,12785,315,33,339,Parliament,"['72240437']",Staatkundig Gereformeerde Partij,,,Netherlands,,,,European Parliament,27,43,22952 +Bettina Vollath,12786,289,30,312,Parliament,"['1148669682427281408']",Sozialdemokratische Partei Österreichs,,,Austria,,,,European Parliament,27,43,42320 +Bill Dunn Newton,12788,321,63,,Parliament,"['34705879']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Brian Monteith,12794,511,36,,Parliament,"['620893984']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Bronis Ropė,12796,520,32,,Parliament,"['3846811756']",Lietuvos valstiečių ir žaliųjų sąjunga,,,Lithuania,,,,European Parliament,27,43,88820 +Calenda Carlo,12797,176,30,191,Parliament,"['2416067982']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Avram Carmen,12800,196,30,211,Parliament,"['26862888']",Partidul Social Democrat,,,Romania,,,,European Parliament,27,43,93320 +Caroline Nagtegaal,12801,218,63,,Parliament,"['38472446']",Volkspartij voor Vrijheid en Democratie,,,Netherlands,,,,European Parliament,27,43,22420 +Caroline Roose,12802,522,32,,Parliament,"['1150811186772025344']",Alliance Écologiste Indépendante,,,France,,,,European Parliament,27,43, +Caroline Voaden,12803,321,63,,Parliament,"['1086696404']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Catherine Chabaud,12806,519,63,,Parliament,"['2292781046']",Liste Renaissance,,,France,,,,European Parliament,27,43, +Catherine Griset,12807,512,62,,Parliament,"['1090919392840503296']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Catherine Rowett,12808,215,32,231,Parliament,"['1719936289']",Green Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,53110 +Charlie Weimers,12811,267,33,,Parliament,"['19182845']",Sverigedemokraterna,,,Sweden,,,,European Parliament,27,43,11710 +Chiara Gemma,12812,205,36,,Parliament,"['1118800711289122816']",Movimento 5 Stelle,,,Italy,,,,European Parliament,27,43,32956 +Chris Davies,12813,321,63,,Parliament,"['1122091792239873920']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Allard Christian,12815,178,32,193,Parliament,"['932563111']",Scottish National Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51902 +Christian Doleschal,12816,272,29,294,Parliament,"['17782837']",Christlich-Soziale Union in Bayern e.V.,,,Germany,,,,European Parliament,27,43,41521 +Christina Jordan Sheila,12818,511,36,,Parliament,"['1156244818827403264']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Christine Schneider,12820,186,29,201,Parliament,"['56136971']",Christlich Demokratische Union Deutschlands,,,Germany,,,,European Parliament,27,43,41521 +Christophe Grudler,12821,361,63,,Parliament,"['457528606']",Mouvement Démocrate,,,France,,,,European Parliament,27,43, +Christophe Hansen,12822,256,29,277,Parliament,"['2408020351']",Parti chrétien social luxembourgeois,,,Luxembourg,,,,European Parliament,27,43,23520 +Chrysoula Zacharopoulou,12823,523,63,,Parliament,"['976511129018077184']",La République en marche,,,France,,,,European Parliament,27,43,31425 +Ciarán Cuffe,12824,215,32,231,Parliament,"['16627544']",Green Party,,,Ireland,,,,European Parliament,27,43,53110 +Cindy Franssen,12825,345,29,372,Parliament,"['311025549']",Christen-Democratisch & Vlaams,,,Belgium,,,,European Parliament,27,43,21521 +Claire Fox,12826,511,36,,Parliament,"['278656915']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Armand Clotilde,12833,524,63,,Parliament,"['708168822868418560']",Uniunea Salvați România,,,Romania,,,,European Parliament,27,43, +Corina Crețu,12835,525,30,,Parliament,"['1586266080']",PRO Romania,,,Romania,,,,European Parliament,27,43, +Costas Mavrides,12837,278,30,301,Parliament,"['3842013736']",Democratic Party,,,Cyprus,,,,European Parliament,27,43,23420 +Cristian Ghinea,12838,526,63,,Parliament,"['1139525086233452544']",USR-PLUS,,,Romania,,,,European Parliament,27,43, +Almagro Cristina De Maestre Martín,12841,192,30,207,Parliament,"['110695283']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Cioloș Dacian,12844,528,63,,Parliament,"['4171877789']","Partidul Libertate, Unitate și Solidaritate",,,Romania,,,,European Parliament,27,43, +Boeselager Damian,12845,529,32,,Parliament,"['832097871893770240']",Volt,,,Germany,,,,European Parliament,27,43, +Carême Damien,12846,330,32,357,Parliament,"['115702103']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +Dan-Ştefan Motreanu,12848,174,29,189,Parliament,"['2763652310']",Partidul Naţional Liberal,,,Romania,,,,European Parliament,27,43,93430 +Daniel Freund,12851,209,32,225,Parliament,"['306868006']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Daniela Rondinelli,12853,205,36,,Parliament,"['1118895627394481920']",Movimento 5 Stelle,,,Italy,,,,European Parliament,27,43,32956 +Bull David,12855,511,36,,Parliament,"['22464893']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Cormand David,12857,330,32,357,Parliament,"['525436041']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +David Lega,12858,355,29,385,Parliament,"['17006679']",Kristdemokraterna,,,Sweden,,,,European Parliament,27,43,11520 +Burkhardt Delara,12861,185,30,200,Parliament,"['1133570430']",Sozialdemokratische Partei Deutschlands,,,Germany,,,,European Parliament,27,43,41320 +Dennis Radtke,12863,186,29,201,Parliament,"['922398725183623168']",Christlich Demokratische Union Deutschlands,,,Germany,,,,European Parliament,27,43,41521 +Derk Eppink Jan,12864,530,33,,Parliament,"['191409618']",Forum voor Democratie,,,Netherlands,,,,European Parliament,27,43,22730 +Diana Giner I Riba,12865,220,32,236,Parliament,"['3295882694']",Esquerra Republicana de Catalunya,,,Spain,,,,European Parliament,27,43, +Dhamija Dinesh,12869,321,63,,Parliament,"['234695455']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Dino Giarrusso,12870,205,36,,Parliament,"['114332714']",Movimento 5 Stelle,,,Italy,,,,European Parliament,27,43,32956 +Devesa Domènec Ruiz,12873,192,30,207,Parliament,"['372232906']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Dragoş Pîslaru,12876,528,63,,Parliament,"['1140868892249776000']","Partidul Libertate, Unitate și Solidaritate",,,Romania,,,,European Parliament,27,43, +Dragoş Tudorache,12877,528,63,,Parliament,"['1147477812590329728']","Partidul Libertate, Unitate și Solidaritate",,,Romania,,,,European Parliament,27,43, +Edina Tóth,12879,508,29,,Parliament,"['2844983574']",Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt,,,Hungary,,,,European Parliament,27,43,86421 +Elena Lizzi,12883,509,62,,Parliament,"['1125768066']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Elisabetta Gualmini,12886,176,30,191,Parliament,"['372352619']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Chowns Ellie,12888,215,32,231,Parliament,"['493494710']",Green Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,53110 +Engin Eroglu,12896,384,63,,Parliament,"['940691491835564032']",Freie Wähler,,,Germany,,,,European Parliament,27,43, +Bergkvist Erik,12899,308,30,332,Parliament,"['720567963']",Arbetarepartiet- Socialdemokraterna,,,Sweden,,,,European Parliament,27,43,11320 +Erik Marquardt,12900,209,32,225,Parliament,"['149441850']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Dura Estrella Ferrandis,12904,192,30,207,Parliament,"['1160204862845595648']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Eugen Jurzyca,12905,373,33,406,Parliament,"['471836699']",Sloboda a Solidarita,,,Slovakia,,,,European Parliament,27,43,96440 +Eugen Tomac,12906,244,29,263,Parliament,"['4250290102']",Partidul Mișcarea Populară,,,Romania,,,,European Parliament,27,43, +Eugenia Palop Rodríguez,12907,202,28,218,Parliament,"['571948562']",PODEMOS,,,Spain,,,,European Parliament,27,43, +Evin Incir,12912,308,30,332,Parliament,"['1113577805256773632']",Arbetarepartiet- Socialdemokraterna,,,Sweden,,,,European Parliament,27,43,11320 +Fabienne Keller,12915,535,63,,Parliament,"['83120914']",Agir - La Droite constructive,,,France,,,,European Parliament,27,43, +France Jamet,12919,512,62,,Parliament,"['966076399']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Donato Francesca,12921,509,62,,Parliament,"['849274159']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Francisco Guerreiro,12922,536,32,,Parliament,"['1149255309405433728']",Pessoas-Animais-Natureza,,,Portugal,,,,European Parliament,27,43, +Franco Roberti,12924,176,30,191,Parliament,"['1118264104857288832']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Alfonsi François,12925,537,32,,Parliament,"['60264136']",Régions et Peuples Solidaires,,,France,,,,European Parliament,27,43, +Bellamy François-Xavier,12926,240,29,258,Parliament,"['261860968']",Les Républicains,,,France,,,,European Parliament,27,43,31626 +Bourgeois Geert,12931,310,33,334,Parliament,"['994821734']",Nieuw-Vlaamse Alliantie,,,Belgium,,,,European Parliament,27,43,21916 +Geoffrey Orden Van,12932,179,33,194,Parliament,"['2348546149']",Conservative Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51620 +Didier Geoffroy,12933,240,29,258,Parliament,"['463907386']",Les Républicains,,,France,,,,European Parliament,27,43,31626 +Da Gianantonio Re,12938,509,62,,Parliament,"['953626315617337344']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Gancia Gianna,12939,509,62,,Parliament,"['492977249']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Boyer Gilles,12941,538,63,,Parliament,"['102948151']",Indépendant,,,France,,,,European Parliament,27,43, +Dowding Gina,12943,215,32,231,Parliament,"['103819197']",Green Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,53110 +Giuliano Pisapia,12945,176,30,191,Parliament,"['163567416']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Ferrandino Giuseppe,12946,176,30,191,Parliament,"['402097529']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Grace O'Sullivan,12948,215,32,231,Parliament,"['2281217988']",Green Party,,,Ireland,,,,European Parliament,27,43,53110 +Grzegorz Tobiszowski,12949,223,33,239,Parliament,"['1113740345559351296']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Guido Reil,12950,317,62,,Parliament,"['802958013644632064']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +Delbos-Corfield Gwendoline,12954,330,32,357,Parliament,"['1133457388038688768']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +Hannah Neumann,12956,209,32,225,Parliament,"['828566340365643648']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Hannes Heide,12957,289,30,312,Parliament,"['1019231126181826432']",Sozialdemokratische Partei Österreichs,,,Austria,,,,European Parliament,27,43,42320 +Hélène Laporte,12961,512,62,,Parliament,"['789179329854869504']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Henrik Nielsen Overgaard,12965,511,36,,Parliament,"['1121176705027248000']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Hahn Henrike,12966,209,32,225,Parliament,"['1601699341']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Hermann Tertsch,12968,541,33,,Parliament,"['257332880']",VOX,,,Spain,,,,European Parliament,27,43, +Herve Juvin,12969,512,62,,Parliament,"['1074580083594199040']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Bentele Hildegard,12971,186,29,201,Parliament,"['2429391577']",Christlich Demokratische Union Deutschlands,,,Germany,,,,European Parliament,27,43,41521 +Blanco Del Garcia Ibán,12973,192,30,207,Parliament,"['222269705']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Idoia Ruiz Villanueva,12974,202,28,218,Parliament,"['610146315']",PODEMOS,,,Spain,,,,European Parliament,27,43, +Irena Joveva,12982,544,63,,Parliament,"['377486485']",Lista Marjana Šarca,,,Slovenia,,,,European Parliament,27,43, +Irène Tolleret,12984,519,63,,Parliament,"['923116072856846336']",Liste Renaissance,,,France,,,,European Parliament,27,43, +Irina Von Wiese,12985,321,63,,Parliament,"['910520918799155200']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Benjumea Benjumea Isabel,12986,201,29,217,Parliament,"['567222705']",Partido Popular,,,Spain,,,,European Parliament,27,43,33610 +Isabel Santos,12989,180,30,195,Parliament,"['1145077300519739392']",Partido Socialista,,,Portugal,,,,European Parliament,27,43,35311 +Isabel Wiseler-Lima,12990,256,29,277,Parliament,"['42228933']",Parti chrétien social luxembourgeois,,,Luxembourg,,,,European Parliament,27,43,23520 +Isabella Tovaglieri,12992,509,62,,Parliament,"['1126217082658594816']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Ivars Ījabs,13000,546,63,,Parliament,"['28397950']",Attīstībai/Par!,,,Latvia,,,,European Parliament,27,43, +Hristov Ivo,13001,235,30,252,Parliament,"['1166728238816813056']",Bulgarian Socialist Party,,,Bulgaria,,,,European Parliament,27,43,80220 +Jaak Madison,13004,547,62,,Parliament,"['2311916178']",Eesti Konservatiivne Rahvaerakond,,,Estonia,,,,European Parliament,27,43,83720 +Jackie Jones,13006,193,30,208,Parliament,"['1118982945006588032']",Labour Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51320 +Jake Pugh,13008,511,36,,Parliament,"['299612346']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +James Wells,13010,511,36,,Parliament,"['738707750570602496']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Jan-Christoph Oetjen,13014,177,63,,Parliament,"['370708213']",Freie Demokratische Partei,,,Germany,,,,European Parliament,27,43,41420 +Brophy Jane,13015,321,63,,Parliament,"['4099573113']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Janina Ochojska,13016,194,29,209,Parliament,"['2200120927']",Independent,,,Poland,,,,European Parliament,27,43, +Duda Jarosław,13018,175,29,190,Parliament,"['358014007']",Platforma Obywatelska,,,Poland,,,,European Parliament,27,43,92435 +Javier Zarzalejos,13023,201,29,217,Parliament,"['1151073066321158144']",Partido Popular,,,Spain,,,,European Parliament,27,43,33610 +Garraud Jean-Paul,13025,512,62,,Parliament,"['92795265']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Decerle Jérémy,13028,519,63,,Parliament,"['2163600808']",Liste Renaissance,,,France,,,,European Parliament,27,43, +Jérôme Rivière,13030,512,62,,Parliament,"['202102772']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Jessica Stegrud,13033,267,33,,Parliament,"['831943427705208832']",Sverigedemokraterna,,,Sweden,,,,European Parliament,27,43,11710 +Joachim Kuhs,13036,317,62,,Parliament,"['968551492390129664']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +Joachim Schuster,13037,185,30,200,Parliament,"['1154675761414070272']",Sozialdemokratische Partei Deutschlands,,,Germany,,,,European Parliament,27,43,41320 +Brudziński Joachim Stanisław,13038,223,33,239,Parliament,"['114159548']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Danielsson Johan,13042,308,30,332,Parliament,"['18765850']",Arbetarepartiet- Socialdemokraterna,,,Sweden,,,,European Parliament,27,43,11320 +Johan Overtveldt Van,13043,310,33,334,Parliament,"['190955270']",Nieuw-Vlaamse Alliantie,,,Belgium,,,,European Parliament,27,43,21916 +David Edward John Tennant,13044,511,36,,Parliament,"['1132976282008981632']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Howarth John,13045,193,30,208,Parliament,"['27688865']",Labour Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51320 +John Longworth,13046,511,36,,Parliament,"['714854344454238208']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Bullock Jonathan,13048,511,36,,Parliament,"['894914855467180032']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Bardella Jordan,13049,512,62,,Parliament,"['1499400284']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Cañas Jordi,13050,260,,,Parliament,"['173541298']",Ciudadanos – Partido de la Ciudadanía,,,Spain,,,,European Parliament,27,43,33420 +Jörg Meuthen,13051,317,62,,Parliament,"['710201540116652032']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +Buxadé Jorge Villalba,13052,541,33,,Parliament,"['154110601']",VOX,,,Spain,,,,European Parliament,27,43, +Gusmão José,13054,363,28,395,Parliament,"['268208070']",Bloco de Esquerda,,,Portugal,,,,European Parliament,27,43,35211 +García-Margallo José Manuel Marfil Y,13056,201,29,217,Parliament,"['862981072417677312']",Partido Popular,,,Spain,,,,European Parliament,27,43,33610 +Bauzá Díaz José Ramón,13057,260,,,Parliament,"['117705468']",Ciudadanos – Partido de la Ciudadanía,,,Spain,,,,European Parliament,27,43,33420 +Cutajar Josianne,13058,233,30,250,Parliament,"['1023896861470547968']",Partit Laburista,,,Malta,,,,European Parliament,27,43,54320 +Bunting Judith,13063,321,63,,Parliament,"['566536507']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Julie Lechanteux,13064,512,62,,Parliament,"['2909481429']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Alison June Mummery,13066,511,36,,Parliament,"['1085967618446643200']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Juozas Olekas,13067,271,30,293,Parliament,"['1147057678910402432']",Lietuvos socialdemokratų partija,,,Lithuania,,,,European Parliament,27,43,88320 +Jutta Paulus,13068,209,32,225,Parliament,"['433766266']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Karen Melchior,13070,237,63,,Parliament,"['16936237']",Det Radikale Venstre,,,Denmark,,,,European Parliament,27,43,13410 +Karin Karlsbro,13072,191,63,,Parliament,"['571148013']",Liberalerna,,,Sweden,,,,European Parliament,27,43,11420 +Karlo Ressler,13073,258,29,279,Parliament,"['1385476140']",Hrvatska demokratska zajednica,,,Croatia,,,,European Parliament,27,43,81711 +Karol Karski,13074,223,33,239,Parliament,"['2455611960']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Edtstadler Karoline,13075,238,29,256,Parliament,"['948147368918208256']",Österreichische Volkspartei,,,Austria,,,,European Parliament,27,43,42520 +Cseh Katalin,13076,514,63,,Parliament,"['3001691374']",Momentum,,,Hungary,,,,European Parliament,27,43, +Katrin Langensiepen,13081,209,32,225,Parliament,"['950392790']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Kim Sparrentak Van,13082,316,32,340,Parliament,"['55893722']",GroenLinks,,,Netherlands,,,,European Parliament,27,43,22110 +Kira Marie Peter-Hansen,13084,359,32,391,Parliament,"['3378612489']",Socialistisk Folkeparti,,,Denmark,,,,European Parliament,27,43,13230 +Grošelj Klemen,13087,544,63,,Parliament,"['2373445755']",Lista Marjana Šarca,,,Slovenia,,,,European Parliament,27,43, +Arvanitis Konstantinos,13088,199,28,215,Parliament,"['893421475721596928']",Coalition of the Radical Left,,,Greece,,,,European Parliament,27,43,34020 +Kris Peeters,13091,345,29,372,Parliament,"['560537100']",Christen-Democratisch & Vlaams,,,Belgium,,,,European Parliament,27,43,21521 +Jurgiel Krzysztof,13093,223,33,239,Parliament,"['981468706302758656']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Forman Lance,13094,511,36,,Parliament,"['757537572']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Lara Wolters,13095,305,30,329,Parliament,"['1086506457435115520']",Partij van de Arbeid,,,Netherlands,,,,European Parliament,27,43,22320 +Berg Lars Patrick,13096,317,62,,Parliament,"['968841871555465216']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +László Trócsányi,13097,508,29,,Parliament,"['1097491939681804160']",Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt,,,Hungary,,,,European Parliament,27,43,86421 +Farreng Laurence,13100,361,63,,Parliament,"['298525921']",Mouvement Démocrate,,,France,,,,European Parliament,27,43, +Chaibi Leila,13103,515,28,,Parliament,"['232353334']",La France Insoumise,,,France,,,,European Parliament,27,43,31240 +Gil Leopoldo López,13105,201,29,217,Parliament,"['966589602']",Partido Popular,,,Spain,,,,European Parliament,27,43,33610 +Leszek Miller,13106,320,30,344,Parliament,"['897947522']",Sojusz Lewicy Demokratycznej,,,Poland,,,,European Parliament,27,43,92210 +Lídia Pereira,13107,219,29,235,Parliament,"['48132236']",Partido Social Democrata,,,Portugal,,,,European Parliament,27,43,35313 +Liesje Schreinemacher,13108,218,63,,Parliament,"['494021297']",Volkspartij voor Vrijheid en Democratie,,,Netherlands,,,,European Parliament,27,43,22420 +Galvez Lina Muñoz,13109,192,30,207,Parliament,"['337259737']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Járóka Lívia,13111,508,29,,Parliament,"['934152935340158720']",Fidesz-Magyar Polgári Szövetség-Kereszténydemokrata Néppárt,,,Hungary,,,,European Parliament,27,43,86421 +Loránt Vincze,13113,254,29,275,Parliament,"['45225005']",Uniunea Democrată Maghiară din România,,,Romania,,,,European Parliament,27,43,93951 +Fourlas Loucas,13114,225,29,241,Parliament,"['2986671080']",Democratic Rally,,,Cyprus,,,,European Parliament,27,43, +Louis Stedman-Bryce,13115,511,36,,Parliament,"['1121578444943429632']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Lucia Nicholsonová Ďuriš,13116,373,33,406,Parliament,"['809481991242584064']",Sloboda a Solidarita,,,Slovakia,,,,European Parliament,27,43,96440 +Lucia Vuolo,13117,509,62,,Parliament,"['1121084255503900672']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Elizabeth Harris Lucy,13118,511,36,,Parliament,"['58459981']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Lucy Nethsingha,13119,321,63,,Parliament,"['1551071150']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Garicano Luis,13121,260,,,Parliament,"['117773253']",Ciudadanos – Partido de la Ciudadanía,,,Spain,,,,European Parliament,27,43,33420 +Luisa Porritt,13122,321,63,,Parliament,"['338308200']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Luisa Regimenti,13123,509,62,,Parliament,"['725434892']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Lukas Mandl,13124,238,29,256,Parliament,"['56818265']",Österreichische Volkspartei,,,Austria,,,,European Parliament,27,43,42520 +Kohut Łukasz,13125,549,30,,Parliament,"['426773410']",Wiosna,,,Poland,,,,European Parliament,27,43, +Adamowicz Magdalena,13127,194,29,209,Parliament,"['1100499396041625600']",Independent,,,Poland,,,,European Parliament,27,43, +Magid Magid,13128,215,32,231,Parliament,"['28257421']",Green Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,53110 +Aubry Manon,13135,515,28,,Parliament,"['2850651695']",La France Insoumise,,,France,,,,European Parliament,27,43,31240 +Manu Pineda,13136,173,28,188,Parliament,"['301716524']",Izquierda Unida,,,Spain,,,,European Parliament,27,43,33220 +Bompard Manuel,13137,515,28,,Parliament,"['250323361']",La France Insoumise,,,France,,,,European Parliament,27,43,31240 +Manuel Pizarro,13138,180,30,195,Parliament,"['394073804']",Partido Socialista,,,Portugal,,,,European Parliament,27,43,35311 +Botenga Marc,13140,552,28,,Parliament,"['1055950916']",Parti du Travail de Belgique,,,Belgium,,,,European Parliament,27,43, +Kolaja Marcel,13142,553,32,,Parliament,"['1086646510723444736']",PIRÁTI,,,Czechia,,,,European Parliament,27,43, +Campomenosi Marco,13143,509,62,,Parliament,"['1118030533219508224']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Dreosto Marco,13144,509,62,,Parliament,"['490522414']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Belka Marek,13147,320,30,344,Parliament,"['1107063220307746816']",Sojusz Lewicy Demokratycznej,,,Poland,,,,European Parliament,27,43,92210 +Balt Marek Paweł,13148,320,30,344,Parliament,"['1105362661']",Sojusz Lewicy Demokratycznej,,,Poland,,,,European Parliament,27,43,92210 +Margarida Marques,13149,180,30,195,Parliament,"['718106057416052736']",Partido Socialista,,,Portugal,,,,European Parliament,27,43,35311 +Carvalho Da Graça Maria,13152,219,29,235,Parliament,"['30360274']",Partido Social Democrata,,,Portugal,,,,European Parliament,27,43,35313 +Leitão Manuel Maria Marques,13154,180,30,195,Parliament,"['368570542']",Partido Socialista,,,Portugal,,,,European Parliament,27,43,35311 +Maria Noichl,13155,185,30,200,Parliament,"['1070701588598218880']",Sozialdemokratische Partei Deutschlands,,,Germany,,,,European Parliament,27,43,41320 +Maria Walsh,13158,190,29,205,Parliament,"['3350861938']",Fine Gael Party,,,Ireland,,,,European Parliament,27,43, +Marianne Vind,13160,323,30,348,Parliament,"['717367511']",Socialdemokratiet,,,Denmark,,,,European Parliament,27,43,13320 +Marie Toussaint,13161,330,32,357,Parliament,"['244086871']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +Marie-Pierre Vedrenne,13162,361,63,,Parliament,"['2867702451']",Mouvement Démocrate,,,France,,,,European Parliament,27,43, +Kaljurand Marina,13163,293,30,317,Parliament,"['601514135']",Sotsiaaldemokraatlik Erakond,,,Estonia,,,,European Parliament,27,43,83320 +Furore Mario,13164,205,36,,Parliament,"['106548241']",Movimento 5 Stelle,,,Italy,,,,European Parliament,27,43,32956 +Marion Walsmann,13165,186,29,201,Parliament,"['576234213']",Christlich Demokratische Union Deutschlands,,,Germany,,,,European Parliament,27,43,41521 +Gregorová Markéta,13167,553,32,,Parliament,"['83926605']",PIRÁTI,,,Czechia,,,,European Parliament,27,43, +Buchheit Markus,13168,317,62,,Parliament,"['1153326441628651520']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +Buschmann Martin,13172,554,28,,Parliament,"['1041644034849103872']",Partei Mensch Umwelt Tierschutz,,,Germany,,,,European Parliament,27,43, +Daubney Edward Martin,13173,511,36,,Parliament,"['568143078']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Hojsík Martin,13176,555,63,,Parliament,"['54799415']",Progresívne Slovensko,,,Slovakia,,,,European Parliament,27,43, +Horwood Martin,13177,321,63,,Parliament,"['55059675']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Martin Schirdewan,13178,204,28,220,Parliament,"['743724264']",DIE LINKE.,,,Germany,,,,European Parliament,27,43,201709 +Gyöngyösi Márton,13183,250,36,271,Parliament,"['1063031341846093824']",Jobbik Magyarországért Mozgalom,,,Hungary,,,,European Parliament,27,43,86710 +Massimiliano Smeriglio,13185,176,30,191,Parliament,"['388718346']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Adinolfi Matteo,13189,509,62,,Parliament,"['1124950201523941120']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Matthew Patten,13190,511,36,,Parliament,"['1469190546']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Krah Maximilian,13193,317,62,,Parliament,"['1162901370']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +Kumpula-Natri Miapetra,13195,356,30,386,Parliament,"['195681218']",Suomen Sosialidemokraattinen Puolue/Finlands Socialdemokratiska Parti,,,Finland,,,,European Parliament,27,43,14320 +Bloss Michael,13196,209,32,225,Parliament,"['20344328']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Heaver Michael,13198,511,36,,Parliament,"['22800916']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Mihai Tudose,13205,525,30,,Parliament,"['883212184511270912']",PRO Romania,,,Romania,,,,European Parliament,27,43, +Mikuláš Peksa,13206,553,32,,Parliament,"['1402424148']",PIRÁTI,,,Czechia,,,,European Parliament,27,43, +Brglez Milan,13207,381,30,414,Parliament,"['1168120004300222464']",Socialni demokrati,,,Slovenia,,,,European Parliament,27,43,97321 +Hava Mircea-Gheorghe,13210,174,29,189,Parliament,"['318724564']",Partidul Naţional Liberal,,,Romania,,,,European Parliament,27,43,93430 +Chahim Mohammed,13215,305,30,329,Parliament,"['91821215']",Partij van de Arbeid,,,Netherlands,,,,European Parliament,27,43,22320 +Monica Semedo,13217,322,63,,Parliament,"['1574792726']",Parti démocratique,,,Luxembourg,,,,European Parliament,27,43,23420 +González Mónica Silvana,13218,192,30,207,Parliament,"['290206732']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Beňová Monika,13219,236,30,253,Parliament,"['1141000603960782720']",SMER-Sociálna demokracia,,,Slovakia,,,,European Parliament,27,43,96423 +Körner Moritz,13222,177,63,,Parliament,"['21794101']",Freie Demokratische Partei,,,Germany,,,,European Parliament,27,43,41420 +Mounir Satouri,13225,330,32,357,Parliament,"['848826626']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +Long Naomi,13228,559,63,,Parliament,"['97452095']",Alliance Party of Northern Ireland,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Colin-Oesterlé Nathalie,13229,560,29,,Parliament,"['326931834']",Les centristes,,,France,,,,European Parliament,27,43, +Loiseau Nathalie,13230,523,63,,Parliament,"['21694393']",La République en marche,,,France,,,,European Parliament,27,43,31425 +Nico Semsrott,13234,364,32,,Parliament,"['225761424']",Die PARTEI,,,Germany,,,,European Parliament,27,43, +Nicolae Ştefănuță,13237,524,63,,Parliament,"['14157177']",Uniunea Salvați România,,,Romania,,,,European Parliament,27,43, +Casares Gonzalez Nicolás,13239,192,30,207,Parliament,"['10622932']",Partido Socialista Obrero Español,,,Spain,,,,European Parliament,27,43,33320 +Nicolas Schmit,13240,291,30,315,Parliament,"['544312946']",Parti ouvrier socialiste luxembourgeois,,,Luxembourg,,,,European Parliament,27,43, +Fest Nicolaus,13241,317,62,,Parliament,"['773419555729379328']",Alternative für Deutschland,,,Germany,,,,European Parliament,27,43,41953 +Fuglsang Niels,13242,323,30,348,Parliament,"['323111954']",Socialdemokratiet,,,Denmark,,,,European Parliament,27,43,13320 +Nienass Niklas,13244,209,32,225,Parliament,"['147947516']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Nils Ušakovs,13248,513,30,,Parliament,"['34616856']","""Saskaņa"" sociāldemokrātiskā partija",,,Latvia,,,,European Parliament,27,43,87340 +Kizilyürek Niyazi,13249,367,28,399,Parliament,"['3362323781']",Progressive Party of Working People - Left - New Forces,,,Cyprus,,,,European Parliament,27,43,55321 +Lancini Oscar,13256,509,62,,Parliament,"['714899456']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Demirel Özlem,13258,204,28,220,Parliament,"['406893885']",DIE LINKE.,,,Germany,,,,European Parliament,27,43,201709 +Borchia Paolo,13260,509,62,,Parliament,"['2585792659']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Holmgren Pär,13262,319,32,343,Parliament,"['95989483']",Miljöpartiet de gröna,,,Sweden,,,,European Parliament,27,43,11110 +Canfin Pascal,13264,519,63,,Parliament,"['135430876']",Liste Renaissance,,,France,,,,European Parliament,27,43, +Breyer Patrick,13266,353,32,383,Parliament,"['993792060548435968']",Piratenpartei Deutschland,,,Germany,,,,European Parliament,27,43,41952 +Paulo Rangel,13270,219,29,235,Parliament,"['115724250']",Partido Social Democrata,,,Portugal,,,,European Parliament,27,43,35313 +Marques Pedro,13271,180,30,195,Parliament,"['1096808124135235584']",Partido Socialista,,,Portugal,,,,European Parliament,27,43,35311 +Arza Barrena Pernando,13273,221,28,237,Parliament,"['294868010']",EH BILDU,,,Spain,,,,European Parliament,27,43,33902 +Pernille Weiss,13274,318,29,342,Parliament,"['1007696977369423872']",Det Konservative Folkeparti,,,Denmark,,,,European Parliament,27,43,13620 +Peter Pollák,13280,564,29,,Parliament,"['3101901460']",Obyčajní ľudia a nezávislé osobnosti,,,Slovakia,,,,European Parliament,27,43,96620 +De Petra Sutter,13282,314,32,338,Parliament,"['329815445']",Groen,,,Belgium,,,,European Parliament,27,43,21112 +Kokkalis Vasileios,"13286, 13570","135, 199",28,215,Parliament,"['123834148']","SYRIZA (Coalition of the Radical Left), Coalition of the Radical Left",,,Greece,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,"European Parliament, Greece","27, 9","47, 43",34020 +Bennion Phil,13287,321,63,,Parliament,"['615011876']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Majorino Pierfrancesco,13290,176,30,191,Parliament,"['271596933']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Karleskind Pierre,13292,523,63,,Parliament,"['306778929']",La République en marche,,,France,,,,European Parliament,27,43,31425 +Larrouturou Pierre,13293,565,30,,Parliament,"['18578222']",Nouvelle Donne,,,France,,,,European Parliament,27,43, +Bartolo Pietro,13295,176,30,191,Parliament,"['780024711510130560']",Partito Democratico,,,Italy,,,,European Parliament,27,43,32440 +Fiocchi Pietro,13296,521,33,,Parliament,"['1105850644966137728']",Fratelli d'Italia,,,Italy,,,,European Parliament,27,43,32630 +Fred Matić Predrag,13299,189,30,204,Parliament,"['1110460054392791040']",Socijaldemokratska partija Hrvatske,,,Croatia,,,,European Parliament,27,43,81223 +Professor Trillet-Lenoir Véronique,13300,519,63,,Parliament,"['2824971037']",Liste Renaissance,,,France,,,,European Parliament,27,43, +Kanev Radan,13301,300,29,324,Parliament,"['43869722']",Democrats for Strong Bulgaria,,,Bulgaria,,,,European Parliament,27,43,80610 +Radosław Sikorski,13303,175,29,190,Parliament,"['117029568']",Platforma Obywatelska,,,Poland,,,,European Parliament,27,43,92435 +Raffaele Stancanelli,13305,521,33,,Parliament,"['284555061']",Fratelli d'Italia,,,Italy,,,,European Parliament,27,43,32630 +Ramona Strugariu,13308,528,63,,Parliament,"['699745166807207936']","Partidul Libertate, Unitate și Solidaritate",,,Romania,,,,European Parliament,27,43, +Glucksmann Raphaël,13309,517,30,,Parliament,"['2967623435']",Place publique,,,France,,,,European Parliament,27,43, +Juknevičienė Rasa,13310,263,29,284,Parliament,"['818964552']",Tėvynės sąjunga-Lietuvos krikščionys demokratai,,,Lithuania,,,,European Parliament,27,43,88621 +Andresen Rasmus,13311,209,32,225,Parliament,"['16606874']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Richard Tice,13314,511,36,,Parliament,"['1466783923']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Rob Rooken,13315,530,33,,Parliament,"['15334541']",Forum voor Democratie,,,Netherlands,,,,European Parliament,27,43,22730 +Biedroń Robert,13316,549,30,,Parliament,"['466781777']",Wiosna,,,Poland,,,,European Parliament,27,43, +Hajšel Robert,13317,194,30,212,Parliament,"['1136943210763300864']",Independent,,,Slovakia,,,,European Parliament,27,43, +Robert Roos,13318,530,33,,Parliament,"['130406156']",Forum voor Democratie,,,Netherlands,,,,European Parliament,27,43,22730 +Robert Rowland,13319,511,36,,Parliament,"['1123287693377536000']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Franz Romeo,13324,209,32,225,Parliament,"['850600969184436224']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Palmer Rory,13325,193,30,208,Parliament,"['22625989']",Labour Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51320 +Estaràs Ferragut Rosa,13327,201,29,217,Parliament,"['2461966494']",Partido Popular,,,Spain,,,,European Parliament,27,43,33610 +Plumb Rovana,13329,196,30,211,Parliament,"['562731074']",Partidul Social Democrat,,,Romania,,,,European Parliament,27,43,93320 +Lowe Rupert,13331,511,36,,Parliament,"['1121375429884039168']",The Brexit Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43, +Pignedoli Sabrina,13336,205,36,,Parliament,"['1118820762633285632']",Movimento 5 Stelle,,,Italy,,,,European Parliament,27,43,32956 +Salima Yenbou,13337,330,32,357,Parliament,"['714914764']",Europe Écologie,,,France,,,,European Parliament,27,43,31110 +Rafaela Samira,13338,207,63,,Parliament,"['624017568']",Democraten 66,,,Netherlands,,,,European Parliament,27,43,22330 +Rónai Sándor,13339,253,30,274,Parliament,"['3410987703']",Demokratikus Koalíció,,,Hungary,,,,European Parliament,27,43,86221 +Cerdas Sara,13342,180,30,195,Parliament,"['625048553']",Partido Socialista,,,Portugal,,,,European Parliament,27,43,35311 +Sara Skyttedal,13343,355,29,385,Parliament,"['21556545']",Kristdemokraterna,,,Sweden,,,,European Parliament,27,43,11520 +Bricmont Saskia,13345,371,32,403,Parliament,"['29032586']",Ecologistes Confédérés pour l'Organisation de Luttes Originales,,,Belgium,,,,European Parliament,27,43,21111 +Ainslie Scott,13346,215,32,231,Parliament,"['54158141']",Green Party,,,United Kingdom,,,2020-02-01,European Parliament,27,43,53110 +Lagodinsky Sergey,13350,209,32,225,Parliament,"['436470131']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Mohammed Shaffaq,13351,321,63,,Parliament,"['529961793']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Ritchie Sheila,13352,321,63,,Parliament,"['58730899']",Liberal Democrats,,,United Kingdom,,,2020-02-01,European Parliament,27,43,51421 +Sardone Silvia,13355,509,62,,Parliament,"['600365935']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Berlusconi Silvio,13356,243,29,261,Parliament,"['920277002858500096']",Forza Italia,,,Italy,,,,European Parliament,27,43,32610 +Baldassarre Simona,13357,509,62,,Parliament,"['1124948208457797632']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Rego Sira,13360,173,28,188,Parliament,"['257450818']",Izquierda Unida,,,Spain,,,,European Parliament,27,43,33220 +Berger Stefan,13367,186,29,201,Parliament,"['46128473']",Christlich Demokratische Union Deutschlands,,,Germany,,,,European Parliament,27,43,41521 +Stefania Zambelli,13368,509,62,,Parliament,"['1125285893961547520']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Kympouropoulos Stelios,13370,200,29,216,Parliament,"['585477047']",Nea Demokratia,,,Greece,,,,European Parliament,27,43,34511 +Bijoux Stéphane,13371,523,63,,Parliament,"['1083411992']",La République en marche,,,France,,,,European Parliament,27,43,31425 +Stéphane Séjourné,13372,523,63,,Parliament,"['23967604']",La République en marche,,,France,,,,European Parliament,27,43,31425 +Stéphanie Yon-Courtin,13373,212,63,,Parliament,"['1112075586120400896']",-,,,France,,,,European Parliament,27,43, +Pérez Solís Susana,13374,260,,,Parliament,"['3180723706']",Ciudadanos – Partido de la Ciudadanía,,,Spain,,,,European Parliament,27,43,33420 +Ceccardi Susanna,13375,509,62,,Parliament,"['406110645']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Mikser Sven,13377,293,30,317,Parliament,"['233515767']",Sotsiaaldemokraatlik Erakond,,,Estonia,,,,European Parliament,27,43,83320 +Simon Sven,13379,186,29,201,Parliament,"['19207204']",Christlich Demokratische Union Deutschlands,,,Germany,,,,European Parliament,27,43,41521 +Hahn Svenja,13380,177,63,,Parliament,"['1124773536']",Freie Demokratische Partei,,,Germany,,,,European Parliament,27,43,41420 +Brunet Sylvie,13382,361,63,,Parliament,"['4909186157']",Mouvement Démocrate,,,France,,,,European Parliament,27,43, +Spurek Sylwia,13384,549,30,,Parliament,"['4577469077']",Wiosna,,,Poland,,,,European Parliament,27,43, +Mariani Thierry,13392,512,62,,Parliament,"['87212906']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Metz Tilly,13394,325,32,350,Parliament,"['1166015717239640064']",Déi Gréng - Les Verts,,,Luxembourg,,,,European Parliament,27,43,23113 +Strik Tineke,13395,316,32,340,Parliament,"['300876743']",GroenLinks,,,Netherlands,,,,European Parliament,27,43,22110 +Berendsen Tom,13397,183,29,198,Parliament,"['276687941']",Christen Democratisch Appèl,,,Netherlands,,,,European Parliament,27,43,22521 +Tom Vandendriessche,13398,334,62,,Parliament,"['313540505']",Vlaams Belang,,,Belgium,,,,European Parliament,27,43,21917 +Frankowski Tomasz,13401,175,29,190,Parliament,"['1109154121171517440']",Platforma Obywatelska,,,Poland,,,,European Parliament,27,43,92435 +Sokol Tomislav,13403,258,29,279,Parliament,"['1114837449061150720']",Hrvatska demokratska zajednica,,,Croatia,,,,European Parliament,27,43,81711 +Grant Valentino,13412,509,62,,Parliament,"['825910248']",Lega,,,Italy,,,,European Parliament,27,43,32720 +Hayer Valerie,13413,523,63,,Parliament,"['3318542685']",La République en marche,,,France,,,,European Parliament,27,43,31425 +Flego Valter,13414,343,63,,Parliament,"['1021696411']",Istarski demokratski sabor - Dieta democratica istriana,,,Croatia,,,,European Parliament,27,43,81953 +Meimarakis Vangelis,13415,200,29,216,Parliament,"['3992951153']",Nea Demokratia,,,Greece,,,,European Parliament,27,43,34511 +Tax Vera,13417,305,30,329,Parliament,"['37888214']",Partij van de Arbeid,,,Netherlands,,,,European Parliament,27,43,22320 +Veronika Vrecionová,13418,282,33,305,Parliament,"['953628973551976320']",Občanská demokratická strana,,,Czechia,,,,European Parliament,27,43,82413 +Cramon-Taubadel Viola Von,13422,209,32,225,Parliament,"['30507250']",Bündnis 90/Die Grünen,,,Germany,,,,European Parliament,27,43,41113 +Joron Virginie,13423,512,62,,Parliament,"['2991912647']",Rassemblement national,,,France,,,,European Parliament,27,43,31720 +Bilčík Vladimír,13425,566,29,,Parliament,"['3129707609']",SPOLU – občianska demokracia,,,Slovakia,,,,European Parliament,27,43, +Jan Waszczykowski Witold,13426,223,33,239,Parliament,"['1112654747994071040']",Prawo i Sprawiedliwość,,,Poland,,,,European Parliament,27,43,92436 +Zovko Željana,13433,258,29,279,Parliament,"['832578719525064704']",Hrvatska demokratska zajednica,,,Croatia,,,,European Parliament,27,43,81711 +Achtsioglou Eftychia,13435,135,,,Parliament,"['1051860153191096321']",SYRIZA (Coalition of the Radical Left),,,,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +- Aikaterini Alexopoulou Anastasia,13441,568,,,Parliament,"['1168241295149740038']",The Greek Solution,,,,V1΄ VOREIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Alexopoulou Christina,13442,137,,,Parliament,"['93629265']",N.D. (New Democracy),,,,Achaia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Amanatidis Georgios,13443,137,,,Parliament,"['91145606']",N.D. (New Democracy),,,,Kozani,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +- Arsenis Ilias Kriton,13454,569,,,Parliament,"['92969084']",MeRa25,,,,V2' DYTIKOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +- Asimakopoulou Chaido Sofia,13456,568,,,Parliament,"['1148229718627540992']",The Greek Solution,,,,Piraeus B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Nasos) Athanasios Athanasiou,13457,135,,,Parliament,"['965785002']",SYRIZA (Coalition of the Radical Left),,,,A΄ANATOLIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Athanasiou Charalampos,13458,137,,,Parliament,"['2840171877']",N.D. (New Democracy),,,,Lesvos,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Dora) Avgeri Theodora,13462,135,,,Parliament,"['357631685']",SYRIZA (Coalition of the Radical Left),,,,Thessaloniki B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +- Avgerinopoulou Dionysia Theodora,13463,137,,,Parliament,"['142677826']",N.D. (New Democracy),,,,Ileia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +- Alexandros Avlonitis Christos,13464,135,,,Parliament,"['1161547840449130497']",SYRIZA (Coalition of the Radical Left),,,,Corfu,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Bakadima Foteini,13466,569,,,Parliament,"['350800867']",MeRa25,,,,Piraeus B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Fontas) Baraliakos Xenofon,13469,137,,,Parliament,"['340183590']",N.D. (New Democracy),,,,Pieria,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Barkas Konstantinos,13471,135,,,Parliament,"['4178705584']",SYRIZA (Coalition of the Radical Left),,,,Preveza,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Biagkis Dimitrios,13473,570,,,Parliament,"['1159407842350288896']",Movement For Change,,,,Corfu,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Stella) Biziou Stergiani,13474,137,,,Parliament,"['759834368168910849']",N.D. (New Democracy),,,,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Bougas Ioannis,13477,137,,,Parliament,"['947930930202673153']",N.D. (New Democracy),,,,Fokida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Athanasios Bouras,13480,137,,,Parliament,"['2976349222']",N.D. (New Democracy),,,,V΄DYTIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Bournous Ioannis,13481,135,,,Parliament,"['24637896']",SYRIZA (Coalition of the Radical Left),,,,Lesvos,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +- Boutsikakis Christoforos Emmanouil,13482,137,,,Parliament,"['849286834337271808']",N.D. (New Democracy),,,,Piraeus A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Charakopoulos Maximos,13483,137,,,Parliament,"['2969916503']",N.D. (New Democracy),,,,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Alexis) Alexandros Charitsis,13485,135,,,Parliament,"['973164892877459456']",SYRIZA (Coalition of the Radical Left),,,,Messinia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Kostis) Chatzidakis Konstantinos,13487,137,,,Parliament,"['434832879']",N.D. (New Democracy),,,,V1΄ VOREIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Tasos) Anastasios Chatzivasileiou,13489,137,,,Parliament,"['474756525']",N.D. (New Democracy),,,,Serres,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Themis) Cheimaras Themistoklis,13490,137,,,Parliament,"['2181688916']",N.D. (New Democracy),,,,Fthiotida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Chionidis Savvas,13491,137,,,Parliament,"['888762865']",N.D. (New Democracy),,,,Pieria,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Christidou Rallia,13493,135,,,Parliament,"['171176245']",SYRIZA (Coalition of the Radical Left),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Miltos) Chrysomallis Miltiadis,13494,137,,,Parliament,"['3405878033']",N.D. (New Democracy),,,,Messinia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Athanasios Davakis,13495,137,,,Parliament,"['444707209']",N.D. (New Democracy),,,,Lakonia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Tasos) Anastasios Dimoschakis,13501,137,,,Parliament,"['2466630270']",N.D. (New Democracy),,,,Evros,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Noni) Dounia Panagiota,13502,137,,,Parliament,"['1141433832769503238']",N.D. (New Democracy),,,,Piraeus A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Dritsas Theodoros,13504,135,,,Parliament,"['3084008045']",SYRIZA (Coalition of the Radical Left),,,,Piraeus A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Anna Efthymiou,13505,137,,,Parliament,"['529702286']",N.D. (New Democracy),,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Filis Nikolaos,13508,135,,,Parliament,"['2969679155']",SYRIZA (Coalition of the Radical Left),,,,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Filippos Fortomas,13510,137,,,Parliament,"['991287461006454784']",N.D. (New Democracy),,,,Cyclades,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Georgantas Georgios,13515,137,,,Parliament,"['1150728876424867840']",N.D. (New Democracy),,,,Kilkis,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Nantia) Giannakopoulou Konstantina,13520,570,,,Parliament,"['414090002']",Movement For Change,,,,V2' DYTIKOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Marietta) - Giannakou Koutsikou Mariori,13521,137,,,Parliament,"['886723075']",N.D. (New Democracy),,,,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Christos Giannoulis,13522,135,,,Parliament,"['359478003']",SYRIZA (Coalition of the Radical Left),,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Giogiakas Vasileios,13523,137,,,Parliament,"['907708101872283649']",N.D. (New Democracy),,,,Thesprotia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Natasa) Anastasia Gkara,13524,135,,,Parliament,"['583853188']",SYRIZA (Coalition of the Radical Left),,,,Evros,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Gkiokas Ioannis,13526,143,,,Parliament,"['3030879312']",K.K.E. (Communist Party of Greece),,,,A΄ANATOLIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34210 +(Mika) Iatridi Tsampika,13531,137,,,Parliament,"['2816230252']",N.D. (New Democracy),,,,Dodecanese Islands,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Igoumenidis Nikolaos,13532,135,,,Parliament,"['907201823613837312']",SYRIZA (Coalition of the Radical Left),,,,Iraklio,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Dimitrios Kairidis,13534,137,,,Parliament,"['2608056638']",N.D. (New Democracy),,,,V1΄ VOREIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Georgios Kaminis,13540,570,,,Parliament,"['191033632']",Movement For Change,,,,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Kappatos Panagis,13542,137,,,Parliament,"['1173581893079576580']",N.D. (New Democracy),,,,Kefallonia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Karamanlis Konstantinos,13546,137,,,Parliament,"['1016701366276952064']",N.D. (New Democracy),,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Froso) Eyfrosyni Karasarlidou,13548,135,,,Parliament,"['3105268391']",SYRIZA (Coalition of the Radical Left),,,,Imathia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Nina) Eirini Kasimati,13551,135,,,Parliament,"['223442212']",SYRIZA (Coalition of the Radical Left),,,,Piraeus B,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Katrinis Michail,13553,570,,,Parliament,"['32475807']",Movement For Change,,,,Ileia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Chara) Charoula Kefalidou,13562,570,,,Parliament,"['4126380982']",Movement For Change,,,,Drama,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Keletsis Stavros,13566,137,,,Parliament,"['1158632932304674822']",N.D. (New Democracy),,,,Evros,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Christos Kellas,13567,137,,,Parliament,"['545356505']",N.D. (New Democracy),,,,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Emmanouil Konsolas,13572,137,,,Parliament,"['437388094']",N.D. (New Democracy),,,,Dodecanese Islands,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Konstantinopoulos Odysseas,13574,570,,,Parliament,"['70713954']",Movement For Change,,,,Arcadia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Dimitrios Konstantopoulos,13575,570,,,Parliament,"['3308342351']",Movement For Change,,,,Aitoloαkarnania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Andreas Koutsoumpas,13581,137,,,Parliament,"['563969004']",N.D. (New Democracy),,,,Viotia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Dimitrios Kouvelas,13583,137,,,Parliament,"['346370592']",N.D. (New Democracy),,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Konstantinos Kyranakis,13585,137,,,Parliament,"['17132736']",N.D. (New Democracy),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Lazaridis Makarios,13589,137,,,Parliament,"['189807100']",N.D. (New Democracy),,,,Kavala,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Leontaridis Theofilos,13590,137,,,Parliament,"['540694975']",N.D. (New Democracy),,,,Serres,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Spilios) Livanos Spyridonas-Panagiotis,13595,137,,,Parliament,"['1904674254']",N.D. (New Democracy),,,,Aitoloαkarnania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Giannis) - Ioannis Loverdos Michail,13598,137,,,Parliament,"['2500320130']",N.D. (New Democracy),,,,V2' DYTIKOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Zetta) Makri Zoi,13599,137,,,Parliament,"['2783917512']",N.D. (New Democracy),,,,Magnesia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Charis) Charalampos Mamoulakis,13601,135,,,Parliament,"['823985090925576194']",SYRIZA (Coalition of the Radical Left),,,,Iraklio,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Mantas Periklis,13605,137,,,Parliament,"['196941064']",N.D. (New Democracy),,,,Messinia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Georgia Martinou,13610,137,,,Parliament,"['546281641']",N.D. (New Democracy),,,,A΄ANATOLIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Alexandros Meikopoulos,13611,135,,,Parliament,"['1001342479']",SYRIZA (Coalition of the Radical Left),,,,Magnesia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Andreas Michailidis,13613,135,,,Parliament,"['637030490']",SYRIZA (Coalition of the Radical Left),,,,Chios,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Notis) Mitarachi Panagiotis,13614,137,,,Parliament,"['250518647']",N.D. (New Democracy),,,,Chios,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Thanos) Athanasios Moraitis,13617,135,,,Parliament,"['404205439']",SYRIZA (Coalition of the Radical Left),,,,Aitoloαkarnania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Ioannis Mouzalas,13619,135,,,Parliament,"['4187615537']",SYRIZA (Coalition of the Radical Left),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Antonios Mylonakis,13620,568,,,Parliament,"['501969331']",The Greek Solution,,,,A΄ANATOLIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Andreas Nikolakopoulos,13621,137,,,Parliament,"['1131796120257081344']",N.D. (New Democracy),,,,Ileia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Katerina) Aikaterini Notopoulou,13622,135,,,Parliament,"['983983199012425728']",SYRIZA (Coalition of the Radical Left),,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Ioannis Oikonomou,13623,137,,,Parliament,"['265981780']",N.D. (New Democracy),,,,Fthiotida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Nikolaos Panagiotopoulos,13626,137,,,Parliament,"['2892644871']",N.D. (New Democracy),,,,Kavala,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Apostolos Panas,13627,570,,,Parliament,"['1259340614']",Movement For Change,,,,Halkidiki,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Bampis) Charalampos Papadimitriou,13629,137,,,Parliament,"['48426854']",N.D. (New Democracy),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Sakis) Athanasios Papadopoulos,13630,135,,,Parliament,"['970306790']",SYRIZA (Coalition of the Radical Left),,,,Trikala,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Katerina) - Aikaterini Palioura Papakosta,13633,137,,,Parliament,"['1134005835452076033']",N.D. (New Democracy),,,,Trikala,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Georgios Papandreou,13636,570,,,Parliament,"['7005602']",Movement For Change,,,,Achaia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Ioannis Pappas,13638,137,,,Parliament,"['2960720745']",N.D. (New Democracy),,,,Dodecanese Islands,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Nikolaos Pappas,13639,135,,,Parliament,"['403331236']",SYRIZA (Coalition of the Radical Left),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Andreas Patsis,13641,137,,,Parliament,"['1010930311289556992']",N.D. (New Democracy),,,,Grevena,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Peti) Perka Theopisti,13642,135,,,Parliament,"['1059819442572611584']",SYRIZA (Coalition of the Radical Left),,,,Florina,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Foteini Pipili,13644,137,,,Parliament,"['481393090']",N.D. (New Democracy),,,,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Athanasios Plevris,13646,137,,,Parliament,"['112445908']",N.D. (New Democracy),,,,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Andreas Poulas,13649,570,,,Parliament,"['347951559']",Movement For Change,,,,Argolida,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Georgios Psychogios,13651,135,,,Parliament,"['3100185977']",SYRIZA (Coalition of the Radical Left),,,,Korinthia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Rapti Zoi,13654,137,,,Parliament,"['2443992852']",N.D. (New Democracy),,,,V1΄ VOREIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Maximos Senetakis,13661,137,,,Parliament,"['404869413']",N.D. (New Democracy),,,,Iraklio,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Stratos) Efstratios Simopoulos,13662,137,,,Parliament,"['110670092']",N.D. (New Democracy),,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Asimina Skondra,13664,137,,,Parliament,"['1466870311']",N.D. (New Democracy),,,,Karditsa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Mpetty) Elissavet Skoufa,13665,135,,,Parliament,"['712255673178976256']",SYRIZA (Coalition of the Radical Left),,,,Pieria,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Panos) Panagiotis Skouroliakos,13667,135,,,Parliament,"['3936923243']",SYRIZA (Coalition of the Radical Left),,,,A΄ANATOLIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Marilena) - Eleni Maria Soukouli Viliali,13669,137,,,Parliament,"['532337898']",N.D. (New Democracy),,,,Korinthia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +- Petros Spanakis Vasileios,13670,137,,,Parliament,"['162448017']",N.D. (New Democracy),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Christos Spirtzis,13671,135,,,Parliament,"['758622915965444096']",SYRIZA (Coalition of the Radical Left),,,,A΄ANATOLIKIS ATTIKIS,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Evripidis Stylianidis,13676,137,,,Parliament,"['1614767336']",N.D. (New Democracy),,,,Rodopi,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Georgios Stylios,13677,137,,,Parliament,"['74694195']",N.D. (New Democracy),,,,Arta,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Angelos) Evangelos Syrigos,13679,137,,,Parliament,"['422814594']",N.D. (New Democracy),,,,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Nikolaos Syrmalenios,13680,135,,,Parliament,"['349090550']",SYRIZA (Coalition of the Radical Left),,,,Cyclades,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Olympia Teligioridou,13684,135,,,Parliament,"['1057566665595076608']",SYRIZA (Coalition of the Radical Left),,,,Kastoria,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +(Charis) Theocharis Theocharis,13685,137,,,Parliament,"['107136186']",N.D. (New Democracy),,,,V3΄NOTIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Takis) Panagiotis Theodorikakos,13686,137,,,Parliament,"['1149205366930071552']",N.D. (New Democracy),,,,State,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Lazaros Tsavdaridis,13691,137,,,Parliament,"['787026822']",N.D. (New Democracy),,,,Imathia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Konstantinos Tsiaras,13692,137,,,Parliament,"['974974055731355654']",N.D. (New Democracy),,,,Karditsa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Angelos Tsigkris,13693,137,,,Parliament,"['409149518']",N.D. (New Democracy),,,,Achaia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Spyros) Spyridon Tsilingiris,13694,137,,,Parliament,"['1142755245761662976']",N.D. (New Democracy),,,,Xanthi,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Dimitrios Tzanakopoulos,13698,135,,,Parliament,"['801812686954725377']",SYRIZA (Coalition of the Radical Left),,,,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Konstantinos Tzavaras,13699,137,,,Parliament,"['2863966079']",N.D. (New Democracy),,,,Ileia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Anna Vagena,13702,135,,,Parliament,"['3377051099']",SYRIZA (Coalition of the Radical Left),,,,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Georgios Varoufakis Yanis,13707,569,,,Parliament,"['124690469']",MeRa25,,,,Thessaloniki A,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +(Lakis) Vasileiadis Vasileios,13710,137,,,Parliament,"['961619128237940736']",N.D. (New Democracy),,,,Pella,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +Kyriakos Velopoulos,13712,568,,,Parliament,"['579067205']",The Greek Solution,,,,Larissa,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47, +Christoforos Vernardakis,13713,135,,,Parliament,"['801796590117801984']",SYRIZA (Coalition of the Radical Left),,,,Athens A΄,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Konstantinos Vlasis,13719,137,,,Parliament,"['402714886']",N.D. (New Democracy),,,,Arcadia,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +- Konstantinos Manousos Voloudakis,13720,137,,,Parliament,"['21152451']",N.D. (New Democracy),,,,Chania,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34511 +(Mariliza) - Eliza Maria Xenogiannakopoulou,13728,135,,,Parliament,"['1224671498']",SYRIZA (Coalition of the Radical Left),,,,V1΄ VOREIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Konstantinos Zachariadis,13730,135,,,Parliament,"['204069781']",SYRIZA (Coalition of the Radical Left),,,,V1΄ VOREIOU TOMEA ATHINON,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Chousein Zeimpek,13731,135,,,Parliament,"['338861628']",SYRIZA (Coalition of the Radical Left),,,,Xanthi,https://www.hellenicparliament.gr/en/Vouleftes/Ana-Koinovouleftiki-Omada/,,Greece,9,47,34020 +Adrian Wüthrich,13738,432,,,Parliament,"['305027543']",Parti socialiste suisse,https://www.adrianwuethrich.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Alfred Heer,13743,430,,,Parliament,"['2527505330']",Union Démocratique du Centre,none,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Aline Trede,13745,433,,,Parliament,"['264811652']",Parti écologiste suisse,https://www.alinetrede.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43110 +Alois Gmür,13746,431,,,Parliament,"['1087398104054358017']",Parti démocrate-chrétien suisse,none,"['Conseil National']",Schwyz,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Beat Jans,13763,432,,,Parliament,"['1171689999160487937']",Parti socialiste suisse,none,"['Conseil National']",Bâle-Ville,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Benjamin Roduit,13768,431,,,Parliament,"['2317281625']",Parti démocrate-chrétien suisse,https://www.benjaminpdc.ch,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Brigitte Häberli-Koller,13772,431,,,Senate,"['132899636']",Parti démocrate-chrétien suisse,none,"['Conseil des Etats']",Thurgovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Bulliard-Marbach Christine,13784,431,,,Parliament,"['1360306513']",Parti démocrate-chrétien suisse,https://www.christine-bulliard.ch,"['Conseil National']",Fribourg,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Daniel Frei,13796,432,,,Parliament,"['3505042877']",Parti socialiste suisse,https://www.daniel-frei.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Diana Gutjahr,13801,430,,,Parliament,"['1280965525']",Union Démocratique du Centre,https://www.diana-gutjahr.ch,"['Conseil National']",Thurgovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Campell Duri,13805,434,,,Parliament,"['968401772732735488']",Parti bourgeois-démocratique suisse,https://www.duri-campell.ch/de/,"['Conseil National']",Grisons,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43811 +Edith Graf-Litscher,13806,432,,,Parliament,"['246714911']",Parti socialiste suisse,https://www.edith-graf.ch,"['Conseil National']",Thurgovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Flavia Wasserfallen,13817,432,,,Parliament,"['921948812']",Parti socialiste suisse,https://www.flaviawasserfallen.ch,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Guy Parmelin,13827,430,,,Executive council,"['1072443638930726913']",Union Démocratique du Centre,https://www.wbf.admin.ch,"['Conseil Fédéral']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Brunner Hansjörg,13836,429,,,Parliament,"['289247746']",PLR.Les Libéraux-Radicaux,https://www.hansjoerg-brunner.ch,"['Conseil National']",Thurgovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43420 +Heinz Siegenthaler,13839,434,,,Parliament,"['969185938898345985']",Parti bourgeois-démocratique suisse,none,"['Conseil National']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43811 +Irène Kälin,13843,433,,,Parliament,"['2977817361']",Parti écologiste suisse,none,"['Conseil National']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43110 +Fluri Kurt,13864,429,,,Parliament,"['1090960191963742208']",PLR.Les Libéraux-Radicaux,https://www.kurt-fluri.ch,"['Conseil National']",Soleure,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43420 +Fehlmann Laurence Rielle,13865,432,,,Parliament,"['3082560978']",Parti socialiste suisse,https://www.fehlmann-rielle.info,"['Conseil National']",Genève,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Carobbio Guscetti Marina,13883,432,,,Parliament,"['847717320']",Parti socialiste suisse,https://www.marinacarobbio.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Haab Martin,13888,430,,,Parliament,"['2974577195']",Union Démocratique du Centre,https://www.martinhaab.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Mauro Tuena,13897,430,,,Parliament,"['1018157677']",Union Démocratique du Centre,none,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Michael Töngi,13901,433,,,Parliament,"['2353332248']",Parti écologiste suisse,https://www.michael-toengi.ch,"['Conseil National']",Lucerne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43110 +Fernandez Nicolas Rochat,13906,432,,,Parliament,"['822165214405738496']",Parti socialiste suisse,none,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Nicolo Paganini,13907,431,,,Parliament,"['2869699084']",Parti démocrate-chrétien suisse,https://www.nicolo-paganini.ch,"['Conseil National']",St-Gall,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Gugger Niklaus-Samuel,13908,442,,,Parliament,"['337729795']",Parti évangélique suisse,https://www.nikgugger.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43530 +Bruderer Pascale Wyss,13911,432,,,Senate,"['241509277']",Parti socialiste suisse,none,"['Conseil des Etats']",Argovie,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Hegglin Peter,13914,431,,,Senate,"['2940740333']",Parti démocrate-chrétien suisse,https://www.mtf-zh.ch,"['Conseil des Etats']",Zoug,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Kutter Philipp,13919,431,,,Parliament,"['316336539']",Parti démocrate-chrétien suisse,https://www.philippkutter.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43520 +Bregy Matthias Philipp,13920,571,,,Parliament,"['96339142']",Christlichdemokratische Volkspartei Oberwallis,https://www.pm-bregy.ch,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50, +Regine Sauter,13932,429,,,Parliament,"['1090224356133871616']",PLR.Les Libéraux-Radicaux,https://www.reginesauter.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43420 +Cattaneo Rocco,13937,429,,,Parliament,"['361833256']",PLR.Les Libéraux-Radicaux,https://www.roccocattaneo.ch,"['Conseil National']",Tessin,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43420 +Marti Samira,13946,432,,,Parliament,"['1690746518']",Parti socialiste suisse,https://www.samira-marti.ch/,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Bendahan Samuel,13947,432,,,Parliament,"['43504217']",Parti socialiste suisse,none,"['Conseil National']",Vaud,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Simonetta Sommaruga,13953,432,,,Executive council,"['1139082610033008640']",Parti socialiste suisse,https://www.uvek.admin.ch/brso,"['Conseil Fédéral']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Schläpfer Therese,13957,430,,,Parliament,"['3345916444']",Union Démocratique du Centre,https://www.therese-schlaepfer.ch,"['Conseil National']",Zurich,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Courten De Thomas,13962,430,,,Parliament,"['395146551']",Union Démocratique du Centre,none,"['Conseil National']",Bâle-Campagne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43810 +Egger Thomas,13963,572,,,Parliament,"['888380018673545216']",Christlichsoziale Volkspartei Oberwallis,https://www.thomasegger.ch,"['Conseil National']",Valais,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50, +Schneider Schüttel Ursula,13974,432,,,Parliament,"['2899280753']",Parti socialiste suisse,https://ursulaschneider.ch,"['Conseil National']",Fribourg,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43320 +Luginbühl Werner,13981,434,,,Senate,"['976446961292402689']",Parti bourgeois-démocratique suisse,https://www.werner-luginbuehl.ch/,"['Conseil des Etats']",Berne,,https://www.parlament.ch/en/organe/national-council/members-national-council-a-z,,Switzerland,23,50,43811 +Adam Koeverden Van,13987,445,,,Parliament,"['112815157']",Liberal,https://voteavk.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Alain Therrien,13991,449,,,Parliament,"['4104867797']",Bloc Québécois,https://m.assnat.qc.ca/fr/deputes/therrien-alain-12189/index.html,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Alex Ruff,13992,446,,,Parliament,"['1086084557009575936']",Conservative,https://www.AlexRuff.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Alexis Brunelle-Duceppe,13995,449,,,Parliament,"['803381983']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Anand Anita,14003,445,,,Parliament,"['480418245']",Liberal,https://anitaanand.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Annie Koutrakis,14006,445,,,Parliament,"['1170770038208565248']",Liberal,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Bardish Chagger,14011,445,,,Parliament,"['2696723713']",Liberal,https://bardishchagger.liberal.ca/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Brad Redekopp,14023,446,,,Parliament,"['955157569894404096']",Conservative,none,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Brad Vis,14024,446,,,Parliament,"['1278253171']",Conservative,none,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Chris D'Entremont,14041,446,,,Parliament,"['80109093']",Conservative,https://chrisdentremont.ca,,Nova Scotia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Chris Lewis,14042,446,,,Parliament,"['1034798285389737984']",Conservative,https://www.chrislewisessex.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Christine Normandin,14044,449,,,Parliament,"['2375818352']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Churence Rogers,14046,445,,,Parliament,"['500232993']",Liberal,https://CRogers.Liberal.Ca,,Newfoundland and Labrador,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Claude Debellefeuille,14047,449,,,Parliament,"['1173429508034220032']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Corey Tochor,14049,446,,,Parliament,"['27079065']",Conservative,https://www.coreytochor2019.ca,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Damien Kurek,14050,446,,,Parliament,"['83508245']",Conservative,https://www.damienkurek.ca,,Alberta,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Dan Mazier,14052,446,,,Parliament,"['324555383']",Conservative,https://danmazier.ca,,Manitoba,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Dave Epp,14058,446,,,Parliament,"['1026225299057389569']",Conservative,https://daveepp.ca/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Denis Trudel,14066,449,,,Parliament,"['2800741820']",Bloc Québécois,https://denistrudel.quebec,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Derek Sloan,14067,446,,,Parliament,"['1072606577566183424']",Conservative,https://www.electsloan.ca/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Doug Shipley,14072,446,,,Parliament,"['883774859452579840']",Conservative,https://www.dougshipley.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Duncan Eric,14079,446,,,Parliament,"['24543481']",Conservative,https://www.ericduncan.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Eric Melillo,14080,446,,,Parliament,"['343059330']",Conservative,https://ericmelillo.ca/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Gary Vidal,14092,446,,,Parliament,"['1957288050']",Conservative,https://garyvidal.ca,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Ginette Petitpas Taylor,14096,445,,,Parliament,"['3341414159']",Liberal,https://ginettepetitpastaylor.liberal.ca/,,New Brunswick,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Greg Mclean,14100,446,,,Parliament,"['1044738781171961856']",Conservative,https://www.gregmclean.ca,,Alberta,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Dong Han,14102,445,,,Parliament,"['1406573892']",Liberal,https://www.ourcommons.ca/Members/en/han-dong(105091),,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Heather Mcpherson,14104,447,,,Parliament,"['98492817']",NDP,https://www.heathermcpherson.ca,,Alberta,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Helena Jaczek,14106,445,,,Parliament,"['290162716']",Liberal,none,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Irek Kusmierczyk,14108,445,,,Parliament,"['274507495']",Liberal,https://www.irek.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Harris Jack,14109,447,,,Parliament,"['274231222']",NDP,https://www.ndp.ca,,Newfoundland and Labrador,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Jagmeet Singh,14112,447,,,Parliament,"['253340075']",NDP,https://www.ndp.ca,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Battiste Jaime,14113,445,,,Parliament,"['1166717268975333376']",Liberal,https://www.jaimebattiste.ca,,Nova Scotia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Cumming James,14115,446,,,Parliament,"['1092278966']",Conservative,https://jamescumming.ca,,Alberta,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Hallan Jasraj Singh,14118,446,,,Parliament,"['128997918']",Conservative,https://www.jasraj.ca,,Alberta,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Jean Yip,14119,445,,,Parliament,"['2513973205']",Liberal,https://www.jyip.liberal.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Atwin Jenica,14121,450,,,Parliament,"['1711439305']",Green Party,https://www.facebook.com/JenicaAtwinFredericton/,,New Brunswick,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51110 +John Williamson,14133,446,,,Parliament,"['321752222']",Conservative,none,,New Brunswick,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Julie Vignola,14139,449,,,Parliament,"['1063494232126689280']",Bloc Québécois,https://www.blocquebecois.org,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Chiu Kenny,14150,446,,,Parliament,"['262518997']",Conservative,https://www.facebook.com/RMD.kenny.chiu/,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Findlay Kerry-Lynne,14152,446,,,Parliament,"['1283934079']",Conservative,none,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Kristina Michaud,14157,449,,,Parliament,"['2530008414']",Bloc Québécois,https://www.noscommunes.ca/Members/fr/Kristina-Michaud(104648),,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Collins Laurel,14161,447,,,Parliament,"['2167166754']",NDP,https://laurelcollins.ndp.ca,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Gazan Leah,14163,447,,,Parliament,"['335759893']",NDP,none,,Manitoba,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Lenore Zann,14165,445,,,Parliament,"['1646161106']",Liberal,https://www.lenore.ca,,Nova Scotia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Lianne Rood,14167,446,,,Parliament,"['876849435820474368']",Conservative,none,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Lindsay Mathyssen,14168,447,,,Parliament,"['276176967']",NDP,https://www.lindsaymathyssen.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Chabot Louise,14171,449,,,Parliament,"['1187132490684784642']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Desilets Luc,14174,449,,,Parliament,"['1143229947932229632']",Bloc Québécois,https://www.facebook.com/LucDesiletsDepute/,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Maninder Sidhu,14178,445,,,Parliament,"['1143342270399373313']",Liberal,none,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Dalton Marc,14179,446,,,Parliament,"['248866864']",Conservative,https://www.marcdalton.com,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Lalonde Marie-France,14186,445,,,Parliament,"['417524720']",Liberal,https://mflalonde.com/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Gaudreau Marie-Hélène,14187,449,,,Parliament,"['1125543746697924609']",Bloc Québécois,https://www.blocquebecois.org,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Mario Simard,14191,449,,,Parliament,"['261772246']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Champoux Martin,14195,449,,,Parliament,"['335361064']",Bloc Québécois,https://blocquebecois.org,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Marty Morantz,14197,446,,,Parliament,"['1021022461']",Conservative,https://www.martymorantz.ca,,Manitoba,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Green Matthew,14202,447,,,Parliament,"['17823761']",NDP,https://www.matthewgreen2019.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Blanchette-Joncas Maxime,14203,449,,,Parliament,"['3234862179']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Barrett Michael,14206,446,,,Parliament,"['302189804']",Conservative,https://www.michaelbarrett.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Kram Michael,14209,446,,,Parliament,"['564207331']",Conservative,https://www.michaelkram.ca,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Kelloway Mike,14214,445,,,Parliament,"['1192858611879428097']",Liberal,none,,Nova Scotia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Mumilaaq Qaqqaq,14218,447,,,Parliament,"['1172345859905871872']",NDP,https://ndp.ca/mumilaaq,,Nunavut,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Lattanzio Patricia,14229,445,,,Parliament,"['868245382148521984']",Liberal,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Patrick Weiler,14230,445,,,Parliament,"['1162219997977960449']",Liberal,https://patrickweiler.ca,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Manly Paul,14233,450,,,Parliament,"['67098611']",Green Party,https://www.paulmanlymp.ca/,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51110 +Bendayan Rachel,14244,445,,,Parliament,"['283226685']",Liberal,https://www.facebook.com/bendayan.rachel/,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Dancho Raquel,14251,446,,,Parliament,"['3071709259']",Conservative,https://www.raqueldancho.com,,Manitoba,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Bragdon Richard,14254,446,,,Parliament,"['1104590774']",Conservative,none,,New Brunswick,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Martel Richard,14257,446,,,Parliament,"['943174774154498048']",Conservative,https://www.votezrichardmartel.ca,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Moore Rob,14258,446,,,Parliament,"['485885933']",Conservative,https://bit.ly/OfficialRobMoore,,New Brunswick,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Morrison Rob,14259,446,,,Parliament,"['282274289']",Conservative,https://www.morrisonformp.ca,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Falk Rosemarie,14265,446,,,Parliament,"['4876239438']",Conservative,none,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Ryan Turnbull,14267,445,,,Parliament,"['1140090941195325440']",Liberal,https://ourcommons.ca/Members/en/ryan-turnbull(105480),,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Sameer Zuberi,14269,445,,,Parliament,"['1148197780583849984']",Liberal,https://sameerzuberi.com,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Davidson Scot,14270,446,,,Parliament,"['1084856644687679496']",Conservative,https://scotdavidson.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Aitchison Scott,14271,446,,,Parliament,"['172004509']",Conservative,https://www.conservativepsm.com/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Lemire Sébastien,14278,449,,,Parliament,"['216469057']",Bloc Québécois,https://www.blocquebecois.org,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Savard-Tremblay Simon-Pierre,14284,449,,,Parliament,"['521630301']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Ferrada Martinez Soraya,14286,445,,,Parliament,"['132763075']",Liberal,https://sorayamartinez.liberal.ca/,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Bergeron Stéphane,14287,449,,,Parliament,"['16014404']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Guilbeault Steven,14291,445,,,Parliament,"['276713213']",Liberal,https://stevenpour2019.ca/,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Bérubé Sylvie,14295,449,,,Parliament,"['2579085134']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Jansen Tamara,14297,446,,,Parliament,"['1249193246']",Conservative,none,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Bachrach Taylor,14298,447,,,Parliament,"['175259033']",NDP,https://bachrach.ca,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62320 +Dowdall Terry,14301,446,,,Parliament,"['3530226858']",Conservative,https://simcoegreycpc.nationbuilder.com/,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Louis Tim,14304,445,,,Parliament,"['2678072299']",Liberal,none,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Tim Uppal,14305,446,,,Parliament,"['195820437']",Conservative,none,,Alberta,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Lukiwski Tom,14308,446,,,Parliament,"['271042651']",Conservative,none,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Bynen Tony Van,14310,445,,,Parliament,"['19634262']",Liberal,none,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Gray Tracy,14311,446,,,Parliament,"['2733595406']",Conservative,https://www.votetracygray.com/,,British Columbia,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Steinley Warren,14313,446,,,Parliament,"['284066822']",Conservative,none,,Saskatchewan,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,51620 +Baker Yvan,14319,445,,,Parliament,"['47692251']",Liberal,https://yvanbaker.ca,,Ontario,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62420 +Perron Yves,14320,449,,,Parliament,"['3025416359']",Bloc Québécois,none,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Blanchet Yves-François,14322,449,,,Parliament,"['38262290']",Bloc Québécois,https://diffusionyfb.net,,Quebec,,https://www.ourcommons.ca/members/en/search,,Canada,4,51,62901 +Steggall Zali,14324,2,,,Parliament,"['1089151295397621760']",Independent,https://zalisteggall.com.au,,"Warringah, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,0 +Evans Trevor,14328,573,,,Parliament,"['1046961420493971456']",Liberal National Party of Queensland,none,,"Brisbane, Queensland",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48, +Smith Tony,14331,464,,,Parliament,"['2932863030']",Liberal Party of Australia,https://aph.gov.au,,"Casey, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +Jones Stephen,14345,465,,,Parliament,"['117273312']",Australian Labor Party,,,"Whitlam, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Phillip Thompson,14358,573,,,Parliament,"['929896339307053056']",Liberal National Party of Queensland,https://www.phillipthompsonoam.com.au,,"Herbert, Queensland",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48, +Murphy Peta,14361,465,,,Parliament,"['385344053']",Australian Labor Party,none,,"Dunkley, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Gorman Patrick,14363,465,,,Parliament,"['1069512940926062592']",Australian Labor Party,https://www.aph.gov.au/Senators_and_Members/Parliamentarian?MPID=74519,,"Perth, Western Australia",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Conaghan Pat,14365,467,,,Parliament,"['1092276077341270016']",The Nationals,https://www.patconaghan.com.au,,"Cowper, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63810 +Coker Libby,14392,465,,,Parliament,"['3099277759']",Australian Labor Party,https://libbycoker.com.au,,"Corangamite, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Allen Katie,14398,464,,,Parliament,"['959651769000185857']",Liberal Party of Australia,https://www.KatieAllen.com.au,,"Higgins, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +Kate Thwaites,14399,465,,,Parliament,"['1138293919836360704']",Australian Labor Party,none,,"Jagajaga, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Burns Josh,14409,465,,,Parliament,"['1029612428026204160']",Australian Labor Party,https://joshburns.com.au,,"Macnamara, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Alexander John,14411,464,,,Parliament,"['930234593990414336']",Liberal Party of Australia,none,,"Bennelong, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +James Stevens,14418,464,,,Parliament,"['16780488']",Liberal Party of Australia,https://www.jamesstevens.com.au,,"Sturt, South Australia",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +Haines Helen,14420,2,,,Parliament,"['423035895']",Independent,https://www.helenhaines.org,,"Indi, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,0 +Gladys Liu,14423,464,,,Parliament,"['1146956698931744768']",Liberal Party of Australia,https://gladysliu.com.au,,"Chisholm, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +Ged Kearney,14425,465,,,Parliament,"['163767099']",Australian Labor Party,https://www.facebook.com/GedKearneyLabor,,"Cooper, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Fiona Phillips,14427,465,,,Parliament,"['526287118']",Australian Labor Party,https://www.fionaphillips.com.au,,"Gilmore, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Fiona Martin,14428,464,,,Parliament,"['1133297264896593920']",Liberal Party of Australia,none,,"Reid, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +Emma Mcbride,14429,465,,,Parliament,"['702698265695760384']",Australian Labor Party,none,,"Dobell, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +David Smith,14431,465,,,Parliament,"['1002757800236232704']",Australian Labor Party,https://www.alp.org.au/our-people/our-people/david-smith/,,"Bean , Australian Capital Territory",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Dave Sharma,14435,464,,,Parliament,"['799911790398373888']",Liberal Party of Australia,none,,"Wentworth, New South Wales",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63620 +Daniel Mulino,14437,465,,,Parliament,"['2939270366']",Australian Labor Party,https://www.danielmulino.com/,,"Fraser, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Anne Webster,14457,467,,,Parliament,"['561565763']",The Nationals,none,,"Mallee, Victoria",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63810 +Anika Wells,14460,465,,,Parliament,"['19204267']",Australian Labor Party,https://anikawells.com.au,,"Lilley, Queensland",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Alicia Payne,14471,465,,,Parliament,"['1183659613217947648']",Australian Labor Party,https://www.aliciapayne.com.au,,"Canberra, Australian Capital Territory",,https://www.aph.gov.au/Senators_and_Members/Members,,Australia,1,48,63320 +Tadeusz Zwiefka,14477,574,,,Parliament,"['471352210']",Civic Coalition,https://tzwiefka.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Anna Maria Żukowska,14478,575,,,Parliament,"['941899796']",United Left,https://sld.org.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Tomasz Zimoch,14482,574,,,Parliament,"['1978424448']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Benedykt Piotr Zientarski,14483,574,,,Parliament,"['800662827736276992']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Tomasz Zieliński,14484,483,,,Parliament,"['486422663']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Urszula Zielińska,14486,574,,,Parliament,"['23505563']",Civic Coalition,https://www.urszulazielinska.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Bożena Żelazowska,14490,576,,,Parliament,"['807551561593458688']",Polish People's Party-Kukiz15,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Marcelina Zawisza,14491,575,,,Parliament,"['603672164']",United Left,https://www.facebook.com/mmzawisza,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Sławomir Zawiślak,14492,483,,,Parliament,"['1048185101945884675']",Law and Justice,https://www.slawomirzawislak.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Adrian Zandberg,14493,575,,,Parliament,"['4008009335']",United Left,https://www.partiarazem.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Paweł Zalewski,14494,574,,,Parliament,"['523090325']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Michał Wypij,14497,483,,,Parliament,"['536604031']",Law and Justice,https://michalwypij.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Adam Grzegorz Woźniak,14500,483,,,Parliament,"['1048232773058793472']",Law and Justice,https://grzegorzwozniak.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Michał Woś,14501,483,,,Parliament,"['1538671028']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Agata Katarzyna Wojtyszek,14504,483,,,Parliament,"['1699176834']",Law and Justice,https://www.kielce.uw.gov.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Grzegorz Wojciechowski,14506,483,,,Parliament,"['1090596098677399552']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Ryszard Wilczyński,14511,574,,,Parliament,"['1149624572682969089']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Dariusz Wieczorek,14513,575,,,Parliament,"['2470417238']",United Left,https://dariuszwieczorek.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Marta Wcisło,14517,574,,,Parliament,"['811590381540409344']",Civic Coalition,https://www.martawcislo.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Piotr Wawrzyk,14518,483,,,Parliament,"['488004548']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Jan Warzecha,14522,483,,,Parliament,"['962252043426697218']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Marcin Warchoł,14525,483,,,Parliament,"['4019339657']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Michał Urbaniak,14529,577,,,Parliament,"['3103658079']",Confederation Liberty and Independence,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Katarzyna Ueberhan,14531,575,,,Parliament,"['3730818035']",United Left,https://facebook.com/KUeberhan,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Krzysztof Tuduj,14535,577,,,Parliament,"['889250035782885377']",Confederation Liberty and Independence,https://tuduj.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Mariusz Trepka,14537,483,,,Parliament,"['1048537965763481600']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Tomasz Trela,14538,575,,,Parliament,"['547089308']",United Left,https://www.tomasztrela.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Małgorzata Tracz,14539,574,,,Parliament,"['3308133795']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Krzysztof Tchórzewski,14546,483,,,Parliament,"['1156882865742856192']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Szumowski Łukasz,14552,483,,,Parliament,"['802193669503746050']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Krzysztof Szulowski,14554,483,,,Parliament,"['949630386971271169']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Jan Szopiński,14556,575,,,Parliament,"['197193041']",United Left,https://www.szopinski.bydgoszcz.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Andrzej Szewiński,14558,574,,,Parliament,"['3151071129']",Civic Coalition,https://www.szewinski.senat.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Andrzej Szejna,14559,575,,,Parliament,"['1108989641359790082']",United Left,https://sld.org.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Józefa Szczurek-Żelazko,14561,483,,,Parliament,"['812250989080281088']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Aleksandra Szczudło,14562,483,,,Parliament,"['4798888065']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Szczepański Wiesław,14564,575,,,Parliament,"['1212409036282269697']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Franciszek Sterczewski,14571,574,,,Parliament,"['779992056']",Civic Coalition,https://www.facebook.com/Franek-Sterczewski-178276012920766/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Magdalena Sroka,14574,483,,,Parliament,"['1035938025287680000']",Law and Justice,https://magdalenasroka.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Anita Sowińska,14575,575,,,Parliament,"['852968511492288513']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Dobromir Sośnierz,14577,577,,,Parliament,"['956144051308425216']",Confederation Liberty and Independence,https://www.facebook.com/dobromir.sosnierz/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Katarzyna Sójka,14580,483,,,Parliament,"['1197302054378778630']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Agnieszka Soin,14581,483,,,Parliament,"['3224178351']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Krzysztof Sobolewski,14583,483,,,Parliament,"['147238009']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Krzysztof Śmiszek,14587,575,,,Parliament,"['3025432383']",United Left,https://www.wiosnabiedronia.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Sługocki Waldemar,14588,574,,,Parliament,"['857012935']",Civic Coalition,https://waldemarslugocki.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Krystyna Skowrońska,14591,574,,,Parliament,"['1113361271800381440']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Sipiera Zdzisław,14592,483,,,Parliament,"['1171678909068394496']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Bartłomiej Sienkiewicz,14593,574,,,Parliament,"['1042408388242677761']",Civic Coalition,https://bartlomiejsienkiewicz.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Joanna Senyszyn,14599,575,,,Parliament,"['135122873']",United Left,https://senyszyn.eu,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Saługa Wojciech,14609,574,,,Parliament,"['2909824174']",Civic Coalition,https://www.facebook.com/wojciech.saluga/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Jarosław Sachajko,14611,576,,,Parliament,"['3251198688']",Polish People's Party-Kukiz15,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Jarosław Rzepa,14613,576,,,Parliament,"['826365108586741760']",Polish People's Party-Kukiz15,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Paweł Rychlik,14615,483,,,Parliament,"['898979180532166656']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Marek Rutka,14617,575,,,Parliament,"['961341478508343301']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Grzegorz Rusiecki,14618,574,,,Parliament,"['604766216']",Civic Coalition,https://www.rusiecki.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Andrzej Rozenek,14620,575,,,Parliament,"['859525963']",United Left,https://www.facebook.com/AndrzejRozenek2019/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Rau Zbigniew,14623,483,,,Parliament,"['1156897065852657664']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Małgorzata Prokop-Paczkowska,14628,575,,,Parliament,"['2574529119']",United Left,https://facebook.com/mprokoppaczkowska,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Porowska Violetta,14630,483,,,Parliament,"['1007273967906951168']",Law and Justice,https://www.facebook.com/violetta.porowska/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Paweł Poncyljusz,14631,574,,,Parliament,"['71850712']",Civic Coalition,https://www.facebook.com/Poncyljusz,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Kacper Płażyński,14638,483,,,Parliament,"['1625407788']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Katarzyna Maria Piekarska,14640,574,,,Parliament,"['1158817639818551297']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Monika Pawłowska,14647,575,,,Parliament,"['3077418646']",United Left,https://monikapawlowska.com,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Karolina Pawliczak,14648,575,,,Parliament,"['1167771546984812545']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Anna Paluch,14654,483,,,Parliament,"['953561225429966848']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Jacek Ozdoba,14655,483,,,Parliament,"['2302131097']",Law and Justice,https://jacek-ozdoba.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Dariusz Olszewski,14659,483,,,Parliament,"['1151539784080379905']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Marcin Ociepa,14663,483,,,Parliament,"['101728509']",Law and Justice,https://www.MarcinOciepa.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Obaz Robert,14664,575,,,Parliament,"['830916709']",United Left,https://www.facebook.com/ObazRobert2,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Nowicka Wanda,14667,575,,,Parliament,"['346539842']",United Left,https://wandanowicka.natemat.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Danuta Nowicka,14668,483,,,Parliament,"['1116715380821692417']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Nowak Piotr Tomasz,14669,574,,,Parliament,"['351748578']",Civic Coalition,https://www.tomasz-nowak.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Barbara Nowacka,14670,574,,,Parliament,"['291740186']",Civic Coalition,https://barbaranowacka.eu,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Grzegorz Napieralski,14675,574,,,Parliament,"['129166436']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Müller Piotr,14679,483,,,Parliament,"['121679076']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Izabela Katarzyna Mrzygłocka,14682,574,,,Parliament,"['3317307142']",Civic Coalition,https://mrzyglocka.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Czesław Mroczek,14684,574,,,Parliament,"['1159574572708110336']",Civic Coalition,https://www.czeslawmroczek.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Mateusz Morawiecki,14687,483,,,Parliament,"['939053934232195072']",Law and Justice,https://www.premier.gov.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Aleksander Miszalski,14688,574,,,Parliament,"['121373807']",Civic Coalition,https://miszalski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Matysiak Paulina,14694,575,,,Parliament,"['1139785801']",United Left,https://lewica2019.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Kazimierz Matuszny,14695,483,,,Parliament,"['1047927473621671936']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Gabriela Masłowska,14700,483,,,Parliament,"['1048166133931630592']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Jagna Marczułajtis-Walczak,14701,574,,,Parliament,"['1197946705']",Civic Coalition,https://www.marczulajtiswalczak.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Magdalena Maląg Marlena,14707,483,,,Parliament,"['1085539673412460545']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Beata Maciejewska,14710,575,,,Parliament,"['1126342838']",United Left,https://wiosnabiedronia.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Magdalena Łośko,14714,574,,,Parliament,"['1195342087304204288']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Tomasz Ławniczak,14725,483,,,Parliament,"['1052461532284690432']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Lasek Maciej,14727,574,,,Parliament,"['1077726788']",Civic Coalition,https://www.facebook.com/MaciejLasek.KO/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Kwitek Marek,14729,483,,,Parliament,"['1042185375924543488']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kwiatkowski Robert,14731,575,,,Parliament,"['431921191']",United Left,https://robertkwiatkowski.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Kulasek Marcin,14736,575,,,Parliament,"['902228052']",United Left,https://marcinkulasek.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Anita Kucharska-Dziedzic,14739,575,,,Parliament,"['950711970780639232']",United Left,https://www.facebook.com/KucharskaDziedzic,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Krzysztof Kubów,14740,483,,,Parliament,"['347822027']",Law and Justice,https://www.krzysztofkubow.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kubiak Marta,14741,483,,,Parliament,"['1049245884305874945']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Krutul Paweł,14745,575,,,Parliament,"['1110138775651471360']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Katarzyna Kretkowska,14750,575,,,Parliament,"['709050059334262784']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Krawczyk Michał,14751,574,,,Parliament,"['2362525875']",Civic Coalition,https://facebok.com/Michal.Krawczyk.Lublin,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Krajewski Stefan,14754,576,,,Parliament,"['1201875318']",Polish People's Party-Kukiz15,https://stefankrajewski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Iwona Kozłowska Maria,14756,574,,,Parliament,"['1170618190063423489']",Civic Coalition,https://iwonakozlowska.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Ewa Kozanecka,14758,483,,,Parliament,"['839481384691449856']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Janusz Kowalski,14760,483,,,Parliament,"['1150329318633017345']",Law and Justice,https://www.januszkowalski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kowal Paweł,14762,574,,,Parliament,"['96859379']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Katarzyna Kotula,14763,575,,,Parliament,"['3889514427']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Kossakowski Wojciech,14766,483,,,Parliament,"['137969025']",Law and Justice,https://www.facebook.com/kossakowskiwojciech/?epa=SEARCH_BOX,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kopiec Maciej,14769,575,,,Parliament,"['1249203362']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Konieczny Maciej,14772,575,,,Parliament,"['2461849153']",United Left,https://partiarazem.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Dariusz Klimczak,14776,576,,,Parliament,"['964017524']",Polish People's Party-Kukiz15,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Jan Kanthak,14781,483,,,Parliament,"['8897142']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kamiński Krystian,14783,577,,,Parliament,"['1184018094479597568']",Confederation Liberty and Independence,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Kałużny Mariusz,14784,483,,,Parliament,"['3921212205']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kaleta Sebastian,14785,483,,,Parliament,"['368843103']",Law and Justice,https://www.facebook.com/pages/Sebastian-Kaleta/1643686859194259,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Kaleta Piotr,14786,483,,,Parliament,"['1047901076115079168']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Filip Kaczyński,14788,483,,,Parliament,"['2815489544']",Law and Justice,https://www.filipkaczynski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Dariusz Joński,14790,574,,,Parliament,"['509272614']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Jaśkowiak Joanna,14791,574,,,Parliament,"['613783101']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Jachira Klaudia,14796,574,,,Parliament,"['3380008071']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Arkadiusz Iwaniak,14798,575,,,Parliament,"['994928700922703874']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Hreniak Paweł,14799,483,,,Parliament,"['1162326015445803010']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Grzegorz Hoffmann Zbigniew,14802,483,,,Parliament,"['1175151679']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Hardie-Douglas Jerzy,14806,574,,,Parliament,"['2331634403']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Gwóźdź Marcin,14810,483,,,Parliament,"['1128319845290971136']",Law and Justice,https://marcingwozdz.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Andrzej Gut-Mostowy,14812,483,,,Parliament,"['1483228472']",Law and Justice,https://mostowy.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Gróbarczyk Marek,14815,483,,,Parliament,"['113915931']",Law and Justice,https://www.facebook.com/marek.grobarczyk,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Gramatyka Michał,14816,574,,,Parliament,"['321603527']",Civic Coalition,https://www.gramatyka.info,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Daria Gosek-Popiołek,14822,575,,,Parliament,"['917055074119057409']",United Left,https://lewica2019.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Agnieszka Górska,14824,483,,,Parliament,"['1197528957710716934']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Gontarz Robert,14825,483,,,Parliament,"['1027084138317336576']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Głogowski Tomasz,14830,574,,,Parliament,"['1143428998460051457']",Civic Coalition,https://www.glogowski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Girzyński Zbigniew,14834,483,,,Parliament,"['73079601']",Law and Justice,https://www.girzynski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Gill-Piątek Hanna,14835,575,,,Parliament,"['1373124126']",United Left,https://gillpiatek.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Anna Gembicka,14836,483,,,Parliament,"['1201673839']",Law and Justice,https://www.annagembicka.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Gdula Maciej,14838,575,,,Parliament,"['1109212389738725376']",United Left,https://www.wiosnabiedronia.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Gawkowski Krzysztof,14841,575,,,Parliament,"['190298914']",United Left,https://gawkowski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Adam Gawęda,14842,483,,,Parliament,"['972058994322935809']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Galemba Leszek,14846,483,,,Parliament,"['1160871213264252928']",Law and Justice,https://www.leszek-galemba.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Aleksandra Gajewska,14848,574,,,Parliament,"['220816457']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Frysztak Konrad,14850,574,,,Parliament,"['628603252']",Civic Coalition,https://www.facebook.com/konrad.frysztak.RADOM,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Fogiel Radosław,14852,483,,,Parliament,"['18214715']",Law and Justice,https://www.facebook.com/radoslawfogiel,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Filiks Magdalena,14854,574,,,Parliament,"['889084155274899456']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Falej Monika,14856,575,,,Parliament,"['2860103476']",United Left,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Emilewicz Jadwiga,14858,483,,,Parliament,"['2435997204']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Agnieszka Dziemianowicz-Bąk,14861,575,,,Parliament,"['47887653']",United Left,https://www.facebook.com/dziemianowiczbak/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Artur Dziambor,14863,577,,,Parliament,"['181121893']",Confederation Liberty and Independence,https://www.facebook.com/ArturEDziambor,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Drabek Przemysław,14869,483,,,Parliament,"['963505243886706689']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Dajczak Władysław,14874,483,,,Parliament,"['1114108063332610048']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Czarzasty Włodzimierz,14881,575,,,Parliament,"['485755268']",United Left,https://www.sld.org.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Arkadiusz Czartoryski,14882,483,,,Parliament,"['4062355756']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Czarnek Przemysław,14883,483,,,Parliament,"['834344635774464000']",Law and Justice,https://czarnek.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Czarnecki Witold,14884,483,,,Parliament,"['1049587880673374208']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Chorosińska Dominika,14893,483,,,Parliament,"['1121122323342532608']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Buż Wiesław,14897,575,,,Parliament,"['563506864']",United Left,https://sld.org.pl/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Burzyńska Lidia,14898,483,,,Parliament,"['956623286775017475']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Bukowiec Stanisław,14899,483,,,Parliament,"['1100117904035590146']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Braun Grzegorz,14902,577,,,Parliament,"['1186367483546165248']",Confederation Liberty and Independence,https://grzegorzbraun.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Bosak Krzysztof,14903,577,,,Parliament,"['1206893629337419781']",Confederation Liberty and Independence,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Borys-Szopa Bożena,14904,483,,,Parliament,"['1136281581738483713']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Borys Piotr,14905,574,,,Parliament,"['1718217162']",Civic Coalition,https://www.piotrborys.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Bortniczuk Kamil,14906,483,,,Parliament,"['944777492']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Bochenek Rafał,14909,483,,,Parliament,"['4744832231']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Bochenek Mateusz,14910,574,,,Parliament,"['449857333']",Civic Coalition,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Bielecki Jerzy,14913,483,,,Parliament,"['783771913155973120']",Law and Justice,none,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Berkowicz Konrad,14915,577,,,Parliament,"['1420353350']",Confederation Liberty and Independence,https://facebook.pl/KonradBerkowiczPL,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Bartoszewski Teofil Władysław,14919,576,,,Parliament,"['1103253862545268736']",Polish People's Party-Kukiz15,https://facebook.com/WTBartoszewski/,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Babalski Zbigniew,14923,483,,,Parliament,"['1048123691022868481']",Law and Justice,https://www.babalski.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Ardanowski Jan Krzysztof,14928,483,,,Parliament,"['1055378302876241921']",Law and Justice,https://ardanowski.info,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49,92436 +Aniśko Tomasz,14929,574,,,Parliament,"['1107260868549664768']",Civic Coalition,https://tomaszanisko.pl,,,,https://www.sejm.gov.pl/english/poslowie/posel.html,,Poland,19,49, +Arens Josy,14936,324,,,Parliament,"['968558966627295233']",centre démocrate Humaniste,none,,Luxembourg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Bacquelaine Daniel,14937,290,,,Parliament,"['2874908639']",Mouvement Réformateur,https://bacquelaine.fgov.be,,Liège,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Bertels Jan,14941,460,,,Parliament,"['278482119']",Socialistische partij anders,none,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Briers Jan,14944,345,,,Parliament,"['1690562936']",Christen-Democratisch & Vlaams,none,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21521 +Buyst Kim,14948,579,,,Parliament,"['1085994108']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,none,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Cogolati Samuel,14952,579,,,Parliament,"['3086239053']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,none,,Liège,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Colebunders Gaby,14953,578,,,Parliament,"['713166981']",PVDA-PTB,none,,Liège,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Crombez John,14956,460,,,Parliament,"['245296005']",Socialistische partij anders,https://www.johncrombez.be,,West-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Block De Maggie,14962,337,,,Parliament,"['2860510937']",Open Vlaamse liberalen en democraten,https://www.maggiedeblock.be,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +Caluwé De Robby,14963,337,,,Parliament,"['1026420624']",Open Vlaamse liberalen en democraten,https://www.robbydecaluwe.be,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +Alexander Croo De,14964,337,,,Parliament,"['39500950']",Open Vlaamse liberalen en democraten,https://alexanderdecroo.be,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +De Maegd Michel,14966,290,,,Parliament,"['1110158391211708416']",Mouvement Réformateur,none,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +De François Smet,14968,580,,,Parliament,"['200876111']",Démocrate Fédéraliste Indépendant,https://cheminsdetraverse.blog/,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +De Pieter Spiegeleer,14969,334,,,Parliament,"['4010279236']",Vlaams Belang,none,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Dedecker Jean-Marie,14973,581,,,Parliament,"['166555933']",Onafhankelijk,https://www.jmdedecker.com,,West-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Demir Zuhal,14976,310,,,Parliament,"['2438136788']",Nieuw-Vlaamse Alliantie,https://www.zuhaldemir.be,,Limburg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Depoorter Kathleen,14978,310,,,Parliament,"['2390807984']",Nieuw-Vlaamse Alliantie,none,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Depoortere Ortwin,14979,334,,,Parliament,"['1148114702']",Vlaams Belang,none,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Depraetere Melissa,14980,460,,,Parliament,"['931493658620235776']",Socialistische partij anders,none,,West-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Caroline Désir,14981,162,,,Parliament,"['569378609']",Parti Socialiste,https://www.carolinedesir.be,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,31320 +Dewulf Nathalie,14983,334,,,Parliament,"['2589202692']",Vlaams Belang,https://www.focus-wtv.be,,athalie,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Farih Nawal,14988,345,,,Parliament,"['3436535536']",Christen-Democratisch & Vlaams,none,,awal,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21521 +André Flahaut,14989,162,,,Parliament,"['593757874']",Parti Socialiste,https://www.andreflahaut.be,,BrabantWallon,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,31320 +Francken Theo,14991,310,,,Parliament,"['951258554']",Nieuw-Vlaamse Alliantie,https://www.theofrancken.eu,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Freilich Michael,14992,310,,,Parliament,"['4245311650']",Nieuw-Vlaamse Alliantie,https://www.michael-freilich.be,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Geens Koen,14994,345,,,Parliament,"['1585166444']",Christen-Democratisch & Vlaams,https://www.koengeens.be,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21521 +Frieda Gijbels,14995,310,,,Parliament,"['237217741']",Nieuw-Vlaamse Alliantie,https://friedagijbels.com,,Limburg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Erik Gilissen,14996,334,,,Parliament,"['1048196971356442624']",Vlaams Belang,none,,Limburg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Goblet Marc,14998,162,,,Parliament,"['1110235483257389056']",Parti Socialiste,none,,Liège,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,31320 +Ingels Yngvild,15003,310,,,Parliament,"['1010031669024296960']",Nieuw-Vlaamse Alliantie,none,,West-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Jambon Jan,15005,310,,,Parliament,"['143713239']",Nieuw-Vlaamse Alliantie,https://www.n-va.be,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Khattabi Zakia,15007,579,,,Parliament,"['140704713']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,https://ecolo.be/nos-elu-e-s/zakia-khattabi/,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Kherbache Yasmine,15008,460,,,Parliament,"['110815614']",Socialistische partij anders,https://facebook.com/yasmine.kherbache,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Christophe Lacroix,15013,162,,,Parliament,"['2722025873']",Parti Socialiste,https://www.christophelacroix.be,,Liège,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,31320 +Christian Leysen,15016,337,,,Parliament,"['366255557']",Open Vlaamse liberalen en democraten,https://www.christianleysen.be,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +Goedele Liekens,15017,337,,,Parliament,"['257410956']",Open Vlaamse liberalen en democraten,https://www.goedele.be,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +Marghem Marie-Christine,15019,290,,,Parliament,"['2856838395']",Mouvement Réformateur,https://www.marghem.be,,Hainaut,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Merckx Sofie,15021,578,,,Parliament,"['476895973']",PVDA-PTB,https://www.ptb.be,,Hainaut,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Mertens Peter,15022,578,,,Parliament,"['438317752']",PVDA-PTB,https://www.pvda.be,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Charles Michel,15024,290,,,Parliament,"['98639150']",Mouvement Réformateur,https://www.premier.be,,BrabantWallon,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Moutquin Simon,15026,579,,,Parliament,"['2359526718']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,none,,BrabantWallon,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Annick Ponthier,15032,334,,,Parliament,"['144150596']",Vlaams Belang,none,,Limburg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Maxime Prévot,15033,324,,,Parliament,"['1356960020']",centre démocrate Humaniste,https://www.lecdh.be,,Namur,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Patrick Prévot,15034,162,,,Parliament,"['381549171']",Parti Socialiste,none,,Hainaut,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,31320 +Florence Reuter,15037,290,,,Parliament,"['512045801']",Mouvement Réformateur,https://Florencereuter.be,,BrabantWallon,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Didier Reynders,15038,290,,,Parliament,"['37281164']",Mouvement Réformateur,https://www.didier-reynders.be/,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Roggeman Tomas,15039,310,,,Parliament,"['1083406650']",Nieuw-Vlaamse Alliantie,https://facebook.com/tomas.roggeman,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Rohonyi Sophie,15040,580,,,Parliament,"['1851210716']",Démocrate Fédéraliste Indépendant,https://www.sophierohonyi.be/,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Darya Safai,15041,310,,,Parliament,"['3060125596']",Nieuw-Vlaamse Alliantie,none,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21916 +Ellen Samyn,15042,334,,,Parliament,"['761649192']",Vlaams Belang,none,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Sarah Schlitz,15043,579,,,Parliament,"['487325531']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,none,,Liège,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Jessika Soors,15046,579,,,Parliament,"['1069964831900483585']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,https://fb.me/JessikaSoors,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Caroline Taquin,15048,290,,,Parliament,"['1102277106329968642']",Mouvement Réformateur,https://m.facebook.com/carolinetaquin.bourgmestre,,Hainaut,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Eliane Tillieux,15052,162,,,Parliament,"['601882135']",Parti Socialiste,https://www.tillieux.be,,Namur,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,31320 +Frank Troosters,15053,334,,,Parliament,"['185283970']",Vlaams Belang,none,,Limburg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Grieken Tom Van,15058,334,,,Parliament,"['145611608']",Vlaams Belang,nan,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Dries Langenhove Van,15062,334,,,Parliament,"['848784339483721728']",Vlaams Belang,https://steun.kiesdries.be,,Vlaams-Brabant,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Lommel Reccino Van,15063,334,,,Parliament,"['348928538']",Vlaams Belang,https://www.reccino.eu,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Joris Vandenbroucke,15069,460,,,Parliament,"['555876490']",Socialistische partij anders,none,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Anja Vanrobaeys,15071,460,,,Parliament,"['42855132']",Socialistische partij anders,none,,Oost-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Kris Verduyckt,15072,460,,,Parliament,"['1141026131484774400']",Socialistische partij anders,none,,Limburg,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21321 +Marianne Verhaert,15073,337,,,Parliament,"['2257825612']",Open Vlaamse liberalen en democraten,none,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +Kathleen Verhelst,15074,337,,,Parliament,"['275550281']",Open Vlaamse liberalen en democraten,https://www.verhelst.be,,West-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21421 +Vermeersch Wouter,15076,334,,,Parliament,"['110529625']",Vlaams Belang,none,,West-Vlaanderen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Hans Verreyt,15077,334,,,Parliament,"['39602962']",Vlaams Belang,https://www.hansverreyt.org,,Antwerpen,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,21917 +Albert Vicaire,15078,579,,,Parliament,"['724518816584183808']",Ecologistes Confédérés pour l'organisation de luttes originales Groen,none,,Hainaut,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Thierry Warmoes,15080,578,,,Parliament,"['1145547632']",PVDA-PTB,none,,Namur,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44, +Sophie Wilmès,15082,290,,,Parliament,"['516626068']",Mouvement Réformateur,https://www.wilmes.belgium.be,,Bruxelles-Capitale,,https://www.dekamer.be/kvvcr/showpage.cfm?section=/depute&language=nl&cfm=/site/wwwcfm/depute/cvlist54.cfm,,Belgium,3,44,0 +Conde Santiago Abascal,"15085, 16056",541,,,Parliament,"['260788584']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=43&idLegislatura=14, https://youtu.be/RaSIX4-RPAI",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Bassa Coll Montserrat,"15087, 16087","593, 583",,,Parliament,"['1084408297']","ERC-S, Republicano","none, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=192&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Ochoa Tirado Vicente,"16382, 15089","392, 387",,,Parliament,"['1096467320468312066']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=16&idLegislatura=14, https://www.pp.es",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Bal Edmundo Francés,"16082, 15090",387,,,Parliament,"['1099251922152931329']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=211&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +Choclán Macarena Olona,"15091, 16290",541,,,Parliament,"['1109573601995440129']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=84&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Echániz Ignacio José Salgado,"16146, 15092","392, 387",,,Parliament,"['1110628846242594820']","PP, Cs","https://pp.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=89&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Francisco Javier Ortega Smith-Molina,"16294, 15093",541,,,Parliament,"['1118941682']",Vox,"none, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=326&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Cerdán León Santos,"15098, 16125",389,,,Parliament,"['141183245']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=163&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Chirosa Francisco Hervías Javier,15100,387,,,Parliament,"['146214432']",Cs,https://www.ciudadanos-cs.org,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33420 +López Patxi Álvarez,"15104, 16234","396, 389",,,Parliament,"['16084460']","PSE-EE-PSOE, PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=61&idLegislatura=14, https://www.patxilopez.com",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Joan Josep Nuet Pujals,"16288, 15109","593, 583",,,Parliament,"['17199998']","ERC-S, Republicano","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=189&idLegislatura=14, https://nuet.cat",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +De Marcos Quinto Romero,"15110, 16138",387,,,Parliament,"['183178222']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=325&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +Borràs Castanyer Laura,"16097, 15111","590, 585",,,Parliament,"['19002571']","JxCat-JUNTS, Mixto","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=25&idLegislatura=14, https://www.lauraborras.cat",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Asens Jaume Llodrà,"15114, 16080","584, 591",,,Parliament,"['212377097']","ECP-GUAYEM EL CANVI, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=291&idLegislatura=14, https://www.nohihadret.cat/",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Antonio José Rodríguez Salas,"16334, 15115",389,,,Parliament,"['21361705']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=6&idLegislatura=14, https://about.me/JoseantonioJun",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Izquierdo Javier José Roncero,15117,389,,,Parliament,"['216756613']",PSOE,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Carolina I Lozano Telechea,"15120, 16381","593, 583",,,Parliament,"['2234780184']","ERC-S, Republicano","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=188&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Cano Ignacio López,"16235, 15122",389,,,Parliament,"['224199272']",PSOE,"https://www.psoe.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=343&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Alfonso Celis De Gómez Rodríguez,"15123, 16331",389,,,Parliament,"['22473944']",PSOE,"https://rodriguezgomezdecelis.wordpress.com, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=168&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Ana Beltrán María Villalba,"15126, 16091","392, 387",,,Parliament,"['2300055003']","PP, Cs","https://www.ppnavarra.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=260&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +José Marín Simón,15132,389,,,Parliament,"['249332567']",PSOE,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Alberto Casero Ávila,"15133, 16122","392, 387",,,Parliament,"['250702520']","PP, Cs","https://www.trujillo.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=283&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Alejandro Mur Soler,"15134, 16374",389,,,Parliament,"['251096605']",PSOE,"https://www.psoe.es/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=144&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Echenique Pablo Robba,"15135, 16147","584, 390",,,Parliament,"['25555639']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=13&idLegislatura=14, https://www.facebook.com/pablo.echenique/",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33020 +Patricia Perelló Rueda,"16342, 15136",541,,,Parliament,"['2613310915']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=75&idLegislatura=14, https://voxespana.es",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Berja Laura Vega,"15138, 16092",389,,,Parliament,"['269472408']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=70&idLegislatura=14, https://psoedejaen.com/",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Ignacio José Prendes Prendes,15140,387,,,Parliament,"['270588836']",Cs,https://www.ciudadanos-cs.org/,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33420 +Ceballos Guijarro María,"15141, 16205","396, 389",,,Parliament,"['270901461']","PSE-EE-PSOE, PSOE","none, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=136&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Ana Belén Casero Fernández,"16160, 15143",389,,,Parliament,"['2718789058']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=230&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +De Fernando Gómez Páramo,15144,387,,,Parliament,"['274663206']",Cs,https://ciudadanos-cs.org,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33420 +Figaredo José María Álvarez-Sala,"16167, 15145",541,,,Parliament,"['2799483719']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=318&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +César Pérez Sánchez,"16359, 15146","392, 387",,,Parliament,"['28385397']","PP, Cs","https://www.facebook.com/cesarsanchezcalpe, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=249&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Elorza González Odón,"15147, 16149","396, 389",,,Parliament,"['284488502']","PSE-EE-PSOE, PSOE","https://www.odonelorza.com, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=324&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Concicao De Garriga Ignacio Vaz,"16186, 15148",541,,,Parliament,"['2876878144']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=150&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Cayetana De Peralta-Ramos Toledo Álvarez,"16067, 15151","392, 387",,,Parliament,"['303168830']","PP, Cs","https://cayetanaalvarezdetoledo.com, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=308&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Gerardo Pisarello Prados,"15152, 16306","584, 591",,,Parliament,"['3039268715']","ECP-GUAYEM EL CANVI, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=290&idLegislatura=14, https://www.facebook.com/GerardoPisarelloPrados/",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Balbín Carla De Toscano,"15153, 16384",541,,,Parliament,"['3050371833']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=296&idLegislatura=14, https://voxespana.es",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Ana Julián María Pastor,"16298, 15154","392, 387",,,Parliament,"['307570052']","PP, Cs",https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=31&idLegislatura=14,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +María Peinado Rosado Ángeles,15155,387,,,Parliament,"['312114335']",Cs,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33420 +María Muñoz Vidal,"16280, 15156",387,,,Parliament,"['316058009']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=333&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +Ferrando Joan Mesquida,15158,387,,,Parliament,"['3197307549']",Cs,https://www.ciudadanos-cs.org,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33420 +Aguayo Montesinos Pablo,"15161, 16274","392, 387",,,Parliament,"['326735453']","PP, Cs","https://www.ppmalaga.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=315&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Aguilar María Rosell Victoria,15162,584,,,Parliament,"['3346916993']",CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53, +Crespín Rafaela Rubio,"15163, 16132",389,,,Parliament,"['3348787462']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=107&idLegislatura=14, https://psoecordoba.com",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +González Marta Vázquez,"16200, 15164","392, 387",,,Parliament,"['3436686957']","PP, Cs","https://www.pp.es/marta-gonzalez-vazquez, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=237&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Belarra Ione Urteaga,"16090, 15165","584, 390",,,Parliament,"['344739325']","UP, CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=139&idLegislatura=14, https://www.facebook.com/IoneBelarra/",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33020 +García Gómez Valentín,"16178, 15166",389,,,Parliament,"['353808961']",PSOE,"https://www.psoe.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=226&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Antonio José Martos Montilla,15167,389,,,Parliament,"['359852036']",PSOE,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Antonio Gómez-Reino Varela,"16193, 15169","584, 595",,,Parliament,"['365392319']","CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN, EC-UP","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=176&idLegislatura=14, https://caminharpreguntando.wordpress.com/",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Martínez Ros Susana,"15170, 16339",389,,,Parliament,"['365957901']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=53&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Gil Irene María Montero,15172,584,,,Parliament,"['372812630']",CONFEDERAL DE UNIDAS PODEMOS-EN COMÚ PODEM-GALICIA EN COMÚN,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53, +Funes Marrodán María,15173,389,,,Parliament,"['372816654']",PSOE,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Baldoví Joan Roda,"15174, 16083","592, 585",,,Parliament,"['378944786']","MÉS COMPROMÍS, Mixto","https://joanbaldovi.com, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=247&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Costa Hernanz Sofía,"16212, 15175",389,,,Parliament,"['393300798']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=289&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Alcaraz Blanquer Patricia,"16095, 15177",389,,,Parliament,"['399278810']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=71&idLegislatura=14, https://www.patriciablanquer.es",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Conesa Espejo-Saavedra José María,"15179, 16153",387,,,Parliament,"['405430824']",Cs,"https://www.ciudadanos-cs.org, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=257&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +Andre Dioh Diouf Luc,"16144, 15182",389,,,Parliament,"['4276393785']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=221&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Campo Carlos Juan Moreno,15183,389,,,Parliament,"['4580450962']",PSOE,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Ana González-Moro María Oramas,"15184, 16291","603, 585",,,Parliament,"['479394745']","Cca-NC, Mixto","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=161&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53", +Giménez Giménez Sara,"15185, 16191",387,,,Parliament,"['479740555']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=169&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +De De Espinosa Iván Los Monteros Simón,"15186, 16154",541,,,Parliament,"['48976307']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=83&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Del Manuel Real Sánchez Víctor,"16355, 15189",541,,,Parliament,"['53517943']",Vox,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=195&idLegislatura=14, https://www.voxespana.es",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",0 +Arrimadas García Inés,"16078, 15190",387,,,Parliament,"['552561770']",Cs,"https://www.instagram.com/inesarrimadas/, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=331&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +Aizpurua Arzallus Mertxe,"16060, 15191","221, 585",,,Parliament,"['555326714']","EH Bildu, Mixto","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=69&idLegislatura=14, https://www.ehbildu.eus",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33902 +Fernández Isaura Leal,"15192, 16229",389,,,Parliament,"['555395673']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=352&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Gómez Hernández Héctor,"16192, 15193",389,,,Parliament,"['60114737']",PSOE,"https://hectorgomezh.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=104&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Jódar Marisol Sánchez,"15194, 16358",389,,,Parliament,"['613233224']",PSOE,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=276&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Batet Lamaña Meritxell,"15197, 16088","389, 398",,,Parliament,"['725700028392689664']","PSOE, PSC-PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=215&idLegislatura=14, https://www.instagram.com/meritxell_batet",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Arangüena Fernández Pablo,15200,389,,,Parliament,"['788864262483615745']",PSOE,none,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Borrego Cortés Isabel María,"16099, 15201","392, 387",,,Parliament,"['803628460350509056']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=130&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Garcés Mario Sanagustín,"15202, 16173","392, 387",,,Parliament,"['808948514155855872']","PP, Cs","none, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=219&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Concepción Gamarra Ruiz-Clavijo,"15203, 16171","392, 387",,,Parliament,"['83573034']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=261&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Francisco José Rodríguez Salazar,15204,389,,,Parliament,"['842106329347039232']",PSOE,https://instagram.com/salazarropaco?utm_source=ig_profile_share&igshid=nufh2bjw35vt,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +García Montse Mínguez,"15205, 16269","389, 398",,,Parliament,"['847169983']","PSOE, PSC-PSOE","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=199&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Díaz Guillermo Gómez,"15206, 16142",387,,,Parliament,"['851719544615968768']",Cs,"https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=122&idLegislatura=14, none",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33420 +Franco José Manuel Pardo,15207,389,,,Parliament,"['884767581177040897']",PSOE,https://www.josemanuelfranco.es,,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,53,33320 +Begoña Nasarre Oliva,"16282, 15208",389,,,Parliament,"['88802757']",PSOE,"https://huesca.aragonpsoe.es, https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=313&idLegislatura=14",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53",33320 +Ferro Martínez María Valentina,"16254, 15209","392, 387",,,Parliament,"['9242202']","PP, Cs","https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=341&idLegislatura=14, https://www.pp.es",,,,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados?_piref73_1333056_73_1333049_1333049.next_page=/wc/menuAbecedarioInicio&tipoBusqueda=completo&idLegislatura=13,,Spain,21,"56, 53","33420, 33610" +Sultana Zarah,15223,3,,,Parliament,"['3056307455']",Labour,none,,Coventry South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Chamberlain Wendy,15231,9,,,Parliament,"['2785648892']",Liberal Democrat,https://www.northeastfifelibdems.org.uk,,North East Fife,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51421 +Crosbie Virginia,15233,4,,,Parliament,"['855455848377798657']",Conservative,https://www.virginiacrosbie.co.uk,,Ynys Môn,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Randall Tom,15247,4,,,Parliament,"['131268401']",Conservative,none,,Gedling,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Hunt Tom,15249,4,,,Parliament,"['370033792']",Conservative,https://www.tom4ipswich.com/,,Ipswich,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Clarke Theo,15253,4,,,Parliament,"['61052508']",Conservative,https://www.theo-clarke.org.uk,,Stafford,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Owatemi Taiwo,15255,3,,,Parliament,"['802599212194131968']",Labour,none,,Coventry North West,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Ali Tahir,15256,3,,,Parliament,"['302302898']",Labour,none,,"Birmingham, Hall Green",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Suzanne Webb,15257,4,,,Parliament,"['1469672990']",Conservative,none,,Stourbridge,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Anderson Stuart,15261,4,,,Parliament,"['727494797490049024']",Conservative,https://www.stuartanderson.org.uk,,Wolverhampton South West,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Bonnar Steven,15264,6,,,Parliament,"['3369212393']",Scottish National Party,none,,"Coatbridge, Chryston and Bellshill",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Flynn Stephen,15275,6,,,Parliament,"['487655647']",Scottish National Party,none,,Aberdeen South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Farry Stephen,15276,586,,,Parliament,"['583327329']",Alliance,https://www.allianceparty.org,,North Down,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52, +Gale Roger Sir,15282,4,,,Parliament,"['1064912412736917504']",Conservative,https://www.rogergale.com,,North Thanet,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Duncan Iain Sir Smith,15293,4,,,Parliament,"['1133305785910550528']",Conservative,https://www.iainduncansmith.org.uk,,Chingford and Woodford Green,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Brady Graham Sir,15295,4,,,Parliament,"['1136266851883859968']",Conservative,https://www.grahambrady.co.uk/,,Altrincham and Sale West,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Charles Sir Walker,15305,4,,,Parliament,"['1145687208030081024']",Conservative,https://www.charleswalker.org.uk,,Broxbourne,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Baillie Siobhan,15308,4,,,Parliament,"['129951559']",Conservative,https://www.siobhan4stroud.com,,Stroud,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jupp Simon,15310,4,,,Parliament,"['215778638']",Conservative,https://www.simonjupp.org.uk,,East Devon,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Fell Simon,15313,4,,,Parliament,"['16454546']",Conservative,https://www.simonfell.org,,Barrow and Furness,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Baynes Simon,15314,4,,,Parliament,"['3817818435']",Conservative,https://www.simonbaynes.co.uk,,Clwyd South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Bailey Shaun,15315,4,,,Parliament,"['40451753']",Conservative,https://shaunforlondon.uk,,West Bromwich West,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Saxby Selaine,15317,4,,,Parliament,"['265280042']",Conservative,https://www.selainesaxby.org.uk,,North Devon,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Benton Scott,15320,4,,,Parliament,"['733395174475210752']",Conservative,https://www.scottbenton.org.uk,,Blackpool South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Owen Sarah,15321,3,,,Parliament,"['250601094']",Labour,none,,Luton North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Olney Sarah,15322,9,,,Parliament,"['4453006828']",Liberal Democrat,https://www.saraholneymp.org.uk,,Richmond Park,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51421 +Atherton Sarah,15325,4,,,Parliament,"['928672211883495425']",Conservative,https://www.sarahatherton.org.uk,,Wrexham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Britcliffe Sara,15326,4,,,Parliament,"['1207018014077575169']",Conservative,none,,Hyndburn,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Bhatti Saqib,15327,4,,,Parliament,"['431730103']",Conservative,https://conservatives.com,,Meriden,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Sam Tarry,15329,3,,,Parliament,"['25718389']",Labour,https://www.samtarry.org,,Ilford South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Hart Sally-Ann,15330,4,,,Parliament,"['1193173567313240075']",Conservative,,,Hastings and Rye,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jones Ruth,15332,3,,,Parliament,"['1093899576329801729']",Labour,https://www.ruthjones.wales/,,Newport West,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Edwards Ruth,15333,4,,,Parliament,"['1394164963']",Conservative,none,,Rushcliffe,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Millar Robin,15340,4,,,Parliament,"['1194759472087998465']",Conservative,https://www.robin-millar.org.uk,,Aberconwy,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Largan Robert,15341,4,,,Parliament,"['862282069153599488']",Conservative,https://robertlargan.co.uk,,High Peak,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Moore Robbie,15346,4,,,Parliament,"['1158490894028460032']",Conservative,https://www.robbiemoore.org.uk,,Keighley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Rob Roberts,15347,4,,,Parliament,"['1179046208398123008']",Conservative,https://rjroberts.co.uk,,Delyn,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Butler Rob,15348,4,,,Parliament,"['300457581']",Conservative,https://RobButler.org.uk,,Aylesbury,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Rishi Sunak,15349,4,,,Parliament,"['1168968080690749441']",Conservative,https://rishisunak.com,,Richmond (Yorks),,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Richard Thomson,15350,6,,,Parliament,"['2173202897']",Scottish National Party,https://www.facebook.com/RichardThomsonMP,,Gordon,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Hopkins Rachel,15361,3,,,Parliament,"['952069440']",Labour,https://www.rachelhopkins.org,,Luton South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Barker Paula,15374,3,,,Parliament,"['1117104681002721288']",Labour,https://www.facebook.com/PaulaBarkerMP/,,"Liverpool, Wavertree",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Howell Paul,15378,4,,,Parliament,"['577329523']",Conservative,none,,Sedgefield,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Holmes Paul,15379,4,,,Parliament,"['172090468']",Conservative,https://www.paulholmesmp.co.uk,,Eastleigh,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Bristow Paul,15381,4,,,Parliament,"['68357219']",Conservative,https://www.paulbristow.org.uk,,Peterborough,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Owen Thompson,15386,6,,,Parliament,"['28354217']",Scottish National Party,https://www.owenthompson.scot,,Midlothian,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Blake Olivia,15388,3,,,Parliament,"['990891818']",Labour,https://www.oliviablake.org.uk,,"Sheffield, Hallam",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Dowden Oliver,15389,4,,,Parliament,"['1172535926209298432']",Conservative,https://www.oliverdowden.com/,,Hertsmere,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Nicola Richards,15393,4,,,Parliament,"['1337283895']",Conservative,none,,West Bromwich East,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Aiken Nickie,15394,4,,,Parliament,"['1215286623715414017']",Conservative,https://www.nickieaiken.org.uk,,Cities of London and Westminster,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Fletcher Nick,15398,4,,,Parliament,"['704595592329220096']",Conservative,https://www.nickfletcher.org.uk,,Don Valley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Hanvey Neale,15404,2,,,Parliament,"['210446472']",Independent,https://www.facebook.com/Neale4KCPC/,,Kirkcaldy and Cowdenbeath,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,0 +Mishra Navendu,15406,3,,,Parliament,"['873636843627196416']",Labour,https://www.facebook.com/NavenduForStockport/,,Stockport,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Nadia Whittome,15407,3,,,Parliament,"['576682647']",Labour,https://nadiawhittome.org,,Nottingham East,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Munira Wilson,15409,9,,,Parliament,"['397566701']",Liberal Democrat,https://www.trlibdems.org.uk/,,Twickenham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51421 +Marie Ms Rimmer,15412,3,,,Parliament,"['859413318699819009']",Labour,none,,St Helens South and Whiston,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Elphicke Mrs Natalie,15421,4,,,Parliament,"['1154535918']",Conservative,https://natalieelphicke.com,,Dover,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Drummond Flick Mrs,15425,4,,,Parliament,"['20225578']",Conservative,https://www.flickdrummond.com,,Meon Valley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Morgan Mr Stephen,15434,3,,,Parliament,"['24045870']",Labour,,,Portsmouth South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Holden Mr Richard,15439,4,,,Parliament,"['2209331701']",Conservative,https://www.facebook.com/Richard4NWDurham,,North West Durham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jayawardena Mr Ranil,15441,4,,,Parliament,"['930829985241280512']",Conservative,https://ranil.uk,,North East Hampshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Bacon Gareth Mr,15462,4,,,Parliament,"['4897196079']",Conservative,,,Orpington,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dines Miss Sarah,15474,4,,,Parliament,"['1197569645261283329']",Conservative,https://www.derbyshiredalesconservatives.org.uk,,Derbyshire Dales,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Mick Whitley,15483,3,,,Parliament,"['1066505124095373314']",Labour,none,,Birkenhead,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Foy Kelly Mary,15500,3,,,Parliament,"['1858780626']",Labour,none,,City of Durham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Jenkinson Mark,15512,4,,,Parliament,"['116228328']",Conservative,https://www.mark-jenkinson.co.uk,,Workington,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Eastwood Mark,15515,4,,,Parliament,"['1154951216']",Conservative,https://www.markeastwood.org.uk,,Dewsbury,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Ferrier Margaret,15520,6,,,Parliament,"['3001829008']",Scottish National Party,none,,Rutherglen and Hamilton West,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Longhi Marco,15522,4,,,Parliament,"['1179055854794018816']",Conservative,https://www.marcolonghi.org.uk,,Dudley North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Maggie Throup,15523,4,,,Parliament,"['1082258629116465152']",Conservative,https://www.maggiethroup.com,,Erewash,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Lia Nici,15537,4,,,Parliament,"['863848156739629056']",Conservative,https://www.grimsbyconservatives.org.uk,,Great Grimsby,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Anderson Lee,15540,4,,,Parliament,"['1172902183777558529']",Conservative,none,,Ashfield,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Farris Laura,15543,4,,,Parliament,"['3240259683']",Conservative,https://www.laurafarris.co.uk,,Newbury,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Kirsten Oswald,15547,6,,,Parliament,"['2707851346']",Scottish National Party,https://snp.org,,East Renfrewshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Johnson Kim,15548,3,,,Parliament,"['918729143159853056']",Labour,none,,"Liverpool, Riverside",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Kenny Macaskill,15553,6,,,Parliament,"['240243637']",Scottish National Party,https://www.kenny-macaskill.co.uk/,,East Lothian,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Fletcher Katherine,15557,4,,,Parliament,"['2318830022']",Conservative,https://www.facebook.com/katherine.fletcher.5667,,South Ribble,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Kate Osborne,15558,3,,,Parliament,"['1192911732823482370']",Labour,none,,Jarrow,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Karl Mccartney,15564,4,,,Parliament,"['26796376']",Conservative,https://www.karlmccartney.co.uk,,Lincoln,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Julie Marson,15569,4,,,Parliament,"['20995745']",Conservative,https://www.juliemarson.org.uk,,Hertford and Stortford,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Julian Sturdy,15571,4,,,Parliament,"['8558522']",Conservative,https://juliansturdy.co.uk,,York Outer,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Joy Morrissey,15576,4,,,Parliament,"['536479831']",Conservative,https://www.joymorrissey.uk/,,Beaconsfield,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Gullis Jonathan,15578,4,,,Parliament,"['4049141417']",Conservative,https://www.jonathangullis.com,,Stoke-on-Trent North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +John Nicolson,15588,6,,,Parliament,"['2327654917']",Scottish National Party,,,Ochil and South Perthshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Finucane John,15595,7,,,Parliament,"['255277792']",Sinn Féin,none,,Belfast North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,53951 +Gideon Jo,15599,4,,,Parliament,"['67323615']",Conservative,https://www.jogideon.org,,Stoke-on-Trent Central,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jerome Mayhew,15606,4,,,Parliament,"['370700221']",Conservative,none,,Broadland,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jason Mccartney,15612,4,,,Parliament,"['19619404']",Conservative,https://www.jasonmccartney.com,,Colne Valley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jane Stevenson,15614,4,,,Parliament,"['911729779820433408']",Conservative,none,,Wolverhampton North East,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Hunt Jane,15615,4,,,Parliament,"['36154400']",Conservative,https://janehunt.uk,,Loughborough,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +James Wild,15617,4,,,Parliament,"['271868768']",Conservative,https://facebook.com/jameswild4nwn,,North West Norfolk,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +James Sunderland,15618,4,,,Parliament,"['1184244273245573120']",Conservative,none,,Bracknell,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +James Murray,15619,5,,,Parliament,"['175512020']",Labour Co-op,https://www.jamesmurray.org,,Ealing North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Daly James,15625,4,,,Parliament,"['1430228162']",Conservative,none,,Bury North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Jacob Young,15630,4,,,Parliament,"['2391791419']",Conservative,https://fb.com/JacobForRedcar,,Redcar,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Ahmad Imran Khan,15636,4,,,Parliament,"['48370685']",Conservative,https://imranforwakefield.org.uk,,Wakefield,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Ian Paisley,15637,10,,,Parliament,"['1051161991304372224']",Democratic Unionist Party,https://www.GoWithGod.com,,North Antrim,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51903 +Byrne Ian,15642,3,,,Parliament,"['570352145']",Labour,https://www.facebook.com/Ian4WestDerby/,,"Liverpool, West Derby",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Greg Smith,15656,4,,,Parliament,"['195752750']",Conservative,https://www.gregsmith.co.uk,,Buckingham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Gary Sambrook,15674,4,,,Parliament,"['372251146']",Conservative,https://www.garysambrook.co.uk,,"Birmingham, Northfield",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Davies Gareth,15677,4,,,Parliament,"['351657777']",Conservative,https://www.garethdavies.co.uk,,Grantham and Stamford,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Gagan Mohindra,15678,4,,,Parliament,"['28329646']",Conservative,none,,South West Hertfordshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Eshalomi Florence,15680,5,,,Parliament,"['20763907']",Labour Co-op,https://www.florence4vauxhall.org.uk,,Vauxhall,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Anderson Fleur,15681,3,,,Parliament,"['2583099904']",Labour,https://fleuranderson.co.uk/,,Putney,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Clark Feryal,15683,3,,,Parliament,"['67289397']",Labour,none,,Enfield North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Buchan Felicity,15684,4,,,Parliament,"['32361590']",Conservative,https://www.felicitybuchan.com,,Kensington,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Fay Jones,15685,4,,,Parliament,"['134257511']",Conservative,https://www.fayjones.org.uk/,,Brecon and Radnorshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Colburn Elliot,15690,4,,,Parliament,"['277969601']",Conservative,https://www.elliotcolburn.co.uk,,Carshalton and Wallington,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Edward Timpson,15693,4,,,Parliament,"['3306903539']",Conservative,https://www.eddisburyconservatives.co.uk/,,Eddisbury,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Baker Duncan,15697,4,,,Parliament,"['24963373']",Conservative,https://www.duncanbaker.org.uk,,North Norfolk,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dr Hudson Neil,15703,4,,,Parliament,"['1133792320040701953']",Conservative,none,,Penrith and The Border,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dr Evans Luke,15705,4,,,Parliament,"['475138726']",Conservative,https://www.drlukeevans.org.uk,,Bosworth,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dr Kieran Mullan,15708,4,,,Parliament,"['2834640796']",Conservative,https://drkieranmullan.org.uk,,Crewe and Nantwich,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dr Jamie Wallis,15710,4,,,Parliament,"['4285605677']",Conservative,https://www.jamiewallisbridgend.com,,Bridgend,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Davies Dr James,15711,4,,,Parliament,"['22378075']",Conservative,https://www.fb.com/jamesdaviesofficial,,Vale of Clwyd,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dan Dr Poulter,15712,4,,,Parliament,"['1113119935557926914']",Conservative,,,Central Suffolk and North Ipswich,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Caroline Dr Johnson,15713,4,,,Parliament,"['797021745563766785']",Conservative,https://www.carolinejohnson.co.uk,,Sleaford and North Hykeham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Ben Dr Spencer,15714,4,,,Parliament,"['2788637049']",Conservative,https://www.drbenspencer.org.uk,,Runnymede and Weybridge,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Davison Dehenna,15723,4,,,Parliament,"['28306725']",Conservative,https://dehennadavison.com,,Bishop Auckland,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dean Russell,15725,4,,,Parliament,"['1189861431048622080']",Conservative,https://www.deanrussell.co.uk/,,Watford,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +David Simmonds,15729,4,,,Parliament,"['1170457166']",Conservative,https://hillingdon.gov.uk,,"Ruislip, Northwood and Pinner",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +David Johnston,15734,4,,,Parliament,"['1194647670092128256']",Conservative,https://www.davidjohnston.info,,Wantage,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Dave Doogan,15736,6,,,Parliament,"['1608703687']",Scottish National Party,https://www.michelledonelan.com,,Angus,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Darren Henry,15738,4,,,Parliament,"['2490452258']",Conservative,https://www.darrenhenry.org.uk,,Broxtowe,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Danny Kruger,15739,4,,,Parliament,"['295948042']",Conservative,none,,Devizes,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Damien Moore,15744,4,,,Parliament,"['2902135256']",Conservative,https://www.damienmooremp.com,,Southport,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Cooper Daisy,15753,9,,,Parliament,"['113476721']",Liberal Democrat,https://www.stalbanslibdems.org.uk,,St Albans,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51421 +Craig Williams,15755,4,,,Parliament,"['1344130148']",Conservative,none,,Montgomeryshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Colum Eastwood,15761,587,,,Parliament,"['20924620']",Social Democratic & Labour Party,none,,Foyle,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52, +Claudia Webbe,15765,3,,,Parliament,"['50997451']",Labour,https://www.theguardian.com/profile/claudiawebbe,,Leicester East,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Claire Hanna,15766,587,,,Parliament,"['20508666']",Social Democratic & Labour Party,https://m.facebook.com/ClaireHannaSDLP/,,Belfast South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52, +Claire Coutinho,15767,4,,,Parliament,"['336529567']",Conservative,none,,East Surrey,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Christian Wakeford,15771,4,,,Parliament,"['1156498325056696320']",Conservative,none,,Bury South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Chris Loder,15776,4,,,Parliament,"['195808903']",Conservative,https://www.chrisloder.co.uk,,West Dorset,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Chris Clarkson,15784,4,,,Parliament,"['95172754']",Conservative,none,,Heywood and Middleton,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Cherilyn Mackrory,15788,4,,,Parliament,"['366525113']",Conservative,https://facebook.com/thisischerilyn,,Truro and Falmouth,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Charlotte Nichols,15789,3,,,Parliament,"['342187925']",Labour,https://www.votecharlottenichols.com,,Warrington North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Ansell Caroline,15797,4,,,Parliament,"['608008015']",Conservative,,,Eastbourne,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Carla Lockhart,15799,10,,,Parliament,"['22645918']",Democratic Unionist Party,none,,Upper Bann,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51903 +Brendan Clarke-Smith,15802,4,,,Parliament,"['1189293292686630912']",Conservative,none,,Bassetlaw,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Beth Winter,15811,3,,,Parliament,"['2864289041']",Labour,none,,Cynon Valley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Ben Everitt,15813,4,,,Parliament,"['119356526']",Conservative,https://www.facebook.com/BenEverittMK/,,Milton Keynes North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Ben Bradley,15814,4,,,Parliament,"['918031841759780864']",Conservative,https://benbradleymp.com,,Mansfield,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Bell Ribeiro-Addy,15815,3,,,Parliament,"['237341484']",Labour,https://bellribeiroaddy.com/,,Streatham,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Apsana Begum,15819,3,,,Parliament,"['1184537212303630336']",Labour,https://apsanabegum.com/,,Poplar and Limehouse,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Antony Higginbotham,15820,4,,,Parliament,"['3401851379']",Conservative,https://www.antonyhig.co.uk,,Burnley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Anthony Mangnall,15821,4,,,Parliament,"['861628345041244160']",Conservative,,,Totnes,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Anthony Browne,15822,4,,,Parliament,"['1153342828149379074']",Conservative,https://www.anthonybrowne.org,,South Cambridgeshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Anne Mclaughlin,15825,6,,,Parliament,"['23364828']",Scottish National Party,,,Glasgow North East,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Angela Richardson,15829,4,,,Parliament,"['825630349250199552']",Conservative,none,,Guildford,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Andy Carter,15834,4,,,Parliament,"['26035809']",Conservative,https://andycarter.org.uk,,Warrington South,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Andrew Griffith,15842,4,,,Parliament,"['136398656']",Conservative,https://www.AndrewGriffithMP.com,,Arundel and South Downs,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Amy Callaghan,15846,6,,,Parliament,"['401469367']",Scottish National Party,https://instagram.com/amycallaghansnp?igshid=1vqsa04v3rzck,,East Dunbartonshire,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Amanda Solloway,15847,4,,,Parliament,"['4439444062']",Conservative,https://amandasolloway.org.uk,,Derby North,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Allan Dorans,15852,6,,,Parliament,"['1169892055952158720']",Scottish National Party,https://www.facebook.com/AllanDoransSNP/,,"Ayr, Carrick and Cumnock",,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51902 +Alicia Kearns,15855,4,,,Parliament,"['41195676']",Conservative,https://www.aliciakearns.com,,Rutland and Melton,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Alexander Stafford,15856,4,,,Parliament,"['221562616']",Conservative,https://www.facebook.com/AlexStafford4RotherValley/,,Rother Valley,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Alex Davies-Jones,15859,3,,,Parliament,"['33031863']",Labour,none,,Pontypridd,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Abena Oppong-Asare,15870,3,,,Parliament,"['350223904']",Labour,https://www.abenaoppongasare.com,,Erith and Thamesmead,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51320 +Aaron Bell,15871,4,,,Parliament,"['240808845']",Conservative,https://www.aaronbell.org.uk/,,Newcastle-under-Lyme,,https://members.parliament.uk/members/Commons,,United Kingdom,24,52,51620 +Blimlinger Eva Mag.,15880,588,,,Parliament,"['1135101106458157057']",The Greens,https://www.parlament.gv.at/WWER/PAD_05649/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Brandstätter Dr. Helmut,15882,480,,,Parliament,"['334036057']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_05682/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Brandstötter Henrike,15883,480,,,Parliament,"['278921219']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_05683/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Bürstmayr Georg Mag.,15887,588,,,Parliament,"['2364568520']",The Greens,https://www.parlament.gv.at/WWER/PAD_06501/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Disoski Mag. Meri,15891,588,,,Parliament,"['2328562887']",The Greens,https://www.parlament.gv.at/WWER/PAD_05650/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +El-Nagashi Faika Mag.,15898,588,,,Parliament,"['337807320']",The Greens,https://www.parlament.gv.at/WWER/PAD_05651/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Dr. Ernst-Dziedzic Ewa,15900,588,,,Parliament,"['1418867791']",The Greens,https://www.parlament.gv.at/WWER/PAD_87146/index.shtml,,W,9E Wien Süd-West,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Eypeltauer Felix Mag.,15902,480,,,Parliament,"['494861194']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_88288/index.shtml,,O,4 Oberösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Fischer Mag. Ulrike,15904,588,,,Parliament,"['1010214877326200832']",The Greens,https://www.parlament.gv.at/WWER/PAD_05652/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Ernst Gödl Mag.,15910,476,,,Parliament,"['19255232']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_83409/index.shtml,,St,6A Graz und Umgebung,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42520 +Dr. Elisabeth Götze,15911,588,,,Parliament,"['1213149800']",The Greens,https://www.parlament.gv.at/WWER/PAD_05654/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Hamann Mag. Sibylle,15919,588,,,Parliament,"['50578233']",The Greens,https://www.parlament.gv.at/WWER/PAD_05668/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Hammer Lukas,15920,588,,,Parliament,"['256221937']",The Greens,https://www.parlament.gv.at/WWER/PAD_65219/index.shtml,,W,9F Wien Nord-West,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Elisabeth Herr Julia,15928,479,,,Parliament,"['854535318']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_05639/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Hofer Ing. Norbert,15931,478,,,Parliament,"['333606989']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_35521/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42420 +Douglas Hoyos-Trauttmansdorff,15936,480,,,Parliament,"['87757854']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_02343/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Jachs Johanna Mag.,15937,476,,,Parliament,"['811008914']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_01980/index.shtml,,O,4E Mühlviertel,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42520 +Gerhard Kaniak Mag.,15940,478,,,Parliament,"['3312189503']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_01970/index.shtml,,O,4C Hausruckviertel,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42420 +Herbert Kickl,15944,478,,,Parliament,"['905877379280760832']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_35520/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42420 +Kirchbaumer Rebecca,15945,476,,,Parliament,"['2482019360']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_01984/index.shtml,,T,7B Innsbruck-Land,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42520 +Klaus Köchl,15946,479,,,Parliament,"['3414706043']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_05640/index.shtml,,K,2 Kärnten,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Köllner Ma Maximilian,15947,479,,,Parliament,"['783239278809710593']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_05641/index.shtml,,B,1A Burgenland Nord,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Koza Mag. Markus,15950,588,,,Parliament,"['809673582582308864']",The Greens,https://www.parlament.gv.at/WWER/PAD_05670/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Katharina Kucharowits,15953,479,,,Parliament,"['109310122']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_35908/index.shtml,,N,3G Niederösterreich Ost,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Künsberg Mag. Martina Sarre,15957,480,,,Parliament,"['1212035979097174017']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_05685/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Laimer Robert,15959,479,,,Parliament,"['950732132699328513']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02330/index.shtml,,N,3D Niederösterreich Mitte,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Lercher Maximilian,15962,479,,,Parliament,"['394177801']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_05642/index.shtml,,St,6D Obersteiermark,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Ing. Litschauer Martin,15964,588,,,Parliament,"['2180371392']",The Greens,https://www.parlament.gv.at/WWER/PAD_05671/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Dr. Johannes Margreiter,15969,480,,,Parliament,"['24527379']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_05686/index.shtml,,T,7 Tirol,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Christoph Dr. Matznetter,15970,479,,,Parliament,"['249404950']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_14844/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Ba Maurer Sigrid,15971,588,,,Parliament,"['22000071']",The Greens,https://www.parlament.gv.at/WWER/PAD_83101/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Josef Muchitsch,15976,479,,,Parliament,"['1159748421319872514']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_35497/index.shtml,,St,6 Steiermark,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Barbara Neßler,15978,588,,,Parliament,"['974404372774998017']",The Greens,https://www.parlament.gv.at/WWER/PAD_05672/index.shtml,,T,7 Tirol,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Agnes Mag. Prammer Sirkka,15989,588,,,Parliament,"['1447681058']",The Greens,https://www.parlament.gv.at/WWER/PAD_06502/index.shtml,,O,4A Linz und Umgebung,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Christian Mag. Ragger,15991,478,,,Parliament,"['66646980']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_01937/index.shtml,,K,2 Kärnten,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42420 +Dr. Msc Pamela Rendi-Wagner,15996,479,,,Parliament,"['3058262529']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_91034/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Gertraud Mmmag. Salzmann,16000,476,,,Parliament,"['731944458145648640']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_03716/index.shtml,,S,5 Salzburg,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42520 +Ralph Schallmeiner,16001,588,,,Parliament,"['68799321']",The Greens,https://www.parlament.gv.at/WWER/PAD_05676/index.shtml,,O,4C Hausruckviertel,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Josef Schellhorn,16004,480,,,Parliament,"['282732697']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_84056/index.shtml,,BWV,B Bundeswahlvorschlag,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Joachim Schnabel,16010,476,,,Parliament,"['1921215740']",Austrian People's Party,https://www.parlament.gv.at/WWER/PAD_05630/index.shtml,,St,6C Weststeiermark,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42520 +Michael Schnedlitz,16011,478,,,Parliament,"['1285994456']",Freedom Party,https://www.parlament.gv.at/WWER/PAD_64022/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42420 +Ba Dr. Jakob Mag. Schwarz,16015,588,,,Parliament,"['222130347']",The Greens,https://www.parlament.gv.at/WWER/PAD_05677/index.shtml,,St,6 Steiermark,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Shetty Yannick,16017,480,,,Parliament,"['1286517246']",The New Austria and Liberal Forum,https://www.parlament.gv.at/WWER/PAD_05687/index.shtml,,W,9 Wien,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42430 +Rudolf Silvan,16019,479,,,Parliament,"['953241222776328193']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_05646/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +David Stögmüller,16031,588,,,Parliament,"['540694329']",The Greens,https://www.parlament.gv.at/WWER/PAD_87001/index.shtml,,O,4 Oberösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Mag. Nina Tomaselli,16036,588,,,Parliament,"['970361797625761792']",The Greens,https://www.parlament.gv.at/WWER/PAD_05678/index.shtml,,V,8 Vorarlberg,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Dipl.-Ing. Olga Voglauer,16040,588,,,Parliament,"['1133630836023205889']",The Greens,https://www.parlament.gv.at/WWER/PAD_05679/index.shtml,,K,2 Kärnten,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Mag. Selma Yildirim,16049,479,,,Parliament,"['454736150']",Social Democratic Party,https://www.parlament.gv.at/WWER/PAD_02339/index.shtml,,T,7 Tirol,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55,42320 +Süleyman Zorba,16054,588,,,Parliament,"['760383091101855744']",The Greens,https://www.parlament.gv.at/WWER/PAD_05681/index.shtml,,N,3 Niederösterreich,https://www.parlament.gv.at/WWER/NR/AKT/index.shtml?xdocumentUri=%2FWWER%2FNR%2FAKT%2Findex.shtml&pageNumber=&GP=AKT&STEP=1110&BL=ALLE&feldRnr=1&FR=ALLE&FUNK=ALLE&M=M&ascDesc=ASC&NRBR=NR&FBEZ=FW_002&WK=ALLE&requestId=268DCFA870&LISTE=&jsMode=&R_PBW=PLZ&W=W&WP=ALLE&listeId=2&R_WF=FR&PLZ=,,Austria,2,55, +Aceves Galindo José Luis,16057,389,,,Parliament,"['132666884']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=56&idLegislatura=14,,,,,,Spain,21,56,33320 +Agirretxea Andoni Joseba Urresti,16058,397,,,Parliament,"['821764964']",EAJ-PNV,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=99&idLegislatura=14,,,,,,Spain,21,56,33902 +Aizcorbe José Juan Torra,16059,541,,,Parliament,"['2832034762']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=151&idLegislatura=14,,,,,,Spain,21,56,0 +Alcaraz Francisco José Martos,16061,541,,,Parliament,"['266066285']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=252&idLegislatura=14,,,,,,Spain,21,56,0 +Alfonso Cendón Javier,16062,389,,,Parliament,"['901414373050241024']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=103&idLegislatura=14,,,,,,Spain,21,56,33320 +Agustín Almodóbar Barceló,16063,392,,,Parliament,"['155350950']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=305&idLegislatura=14,,,,,,Spain,21,56,33610 +Alonso José Pérez Ángel,16064,392,,,Parliament,"['386439973']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=244&idLegislatura=14,,,,,,Spain,21,56,33610 +Alonso-Cuevillas I Jaume Sayrol,16066,590,,,Parliament,"['32937695']",JxCat-JUNTS,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=26&idLegislatura=14,,,,,,Spain,21,56, +Beatriz Fanjul Álvarez,16068,392,,,Parliament,"['320145391']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=101&idLegislatura=14,,,,,,Spain,21,56,33610 +Andrés Añón Carmen,16069,398,,,Parliament,"['372852334']",PSC-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=204&idLegislatura=14,,,,,,Spain,21,56,33320 +Anguita Omar Pérez,16071,389,,,Parliament,"['875222185']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=354&idLegislatura=14,,,,,,Spain,21,56,33320 +Aranda Francisco Vargas,16075,398,,,Parliament,"['76285597']",PSC-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=198&idLegislatura=14,,,,,,Spain,21,56,33320 +Arribas Manuel Maroto,16077,389,,,Parliament,"['396773774']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=369&idLegislatura=14,,,,,,Spain,21,56,33320 +Baños Carmen Ruiz,16084,389,,,Parliament,"['264362379']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=365&idLegislatura=14,,,,,,Spain,21,56,33320 +Barandiaran Benito Íñigo,16085,397,,,Parliament,"['878647221532729345']",EAJ-PNV,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=97&idLegislatura=14,,,,,,Spain,21,56,33902 +Bas Corugeira Javier,16086,392,,,Parliament,"['1103313372479672320']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=118&idLegislatura=14,,,,,,Spain,21,56,33610 +Accensi Bel Ferran,16089,590,,,Parliament,"['352930189']",JxCat-JUNTS,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=14&idLegislatura=14,,,,,,Spain,21,56, +Betoret Coll Vicente,16094,392,,,Parliament,"['141173322']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=228&idLegislatura=14,,,,,,Spain,21,56,33610 +Boadella Esteve Genís,16096,590,,,Parliament,"['541483505']",JxCat-JUNTS,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=24&idLegislatura=14,,,,,,Spain,21,56, +Borrás Mireia Pabón,16098,541,,,Parliament,"['2348453556']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=142&idLegislatura=14,,,,,,Spain,21,56,0 +Albert Botran Pahissa,16101,594,,,Parliament,"['2978274629']",CUP-PR,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=87&idLegislatura=14,,,,,,Spain,21,56, +Barco Bravo Eva,16102,389,,,Parliament,"['1116022190154113030']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=281&idLegislatura=14,,,,,,Spain,21,56,33320 +Bueno Campanario Eva Patricia,16103,389,,,Parliament,"['2675863029']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=314&idLegislatura=14,,,,,,Spain,21,56,33320 +Caballero Gutiérrez Helena,16104,389,,,Parliament,"['2177035457']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=320&idLegislatura=14,,,,,,Spain,21,56,33320 +Cabezón Casas Tomás,16105,392,,,Parliament,"['516834154']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=28&idLegislatura=14,,,,,,Spain,21,56,33610 +Antonio Callejas Cano Juan,16106,392,,,Parliament,"['403536088']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=35&idLegislatura=14,,,,,,Spain,21,56,33610 +Calvo Juan Liste Pablo,16107,541,,,Parliament,"['1183315635863994373']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=213&idLegislatura=14,,,,,,Spain,21,56,0 +Calvo Carmen Poyato,16108,389,,,Parliament,"['933309177623121921']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=258&idLegislatura=14,,,,,,Spain,21,56,33320 +Cambronero Pablo Piqueras,16109,387,,,Parliament,"['2679135387']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=58&idLegislatura=14,,,,,,Spain,21,56,33420 +Cañadell Concep Salvia,16110,590,,,Parliament,"['2867230876']",JxCat-JUNTS,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=21&idLegislatura=14,,,,,,Spain,21,56, +Canales De Duque Gracia Mariana,16111,389,,,Parliament,"['844285125248651264']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=3&idLegislatura=14,,,,,,Spain,21,56,33320 +Cañizares Inés María Pacheco,16113,541,,,Parliament,"['2561709684']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=152&idLegislatura=14,,,,,,Spain,21,56,0 +Carazo Eduardo Hermoso,16116,392,,,Parliament,"['242430168']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=245&idLegislatura=14,,,,,,Spain,21,56,33610 +Carcedo Luisa María Roces,16117,389,,,Parliament,"['925676922838929408']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=270&idLegislatura=14,,,,,,Spain,21,56,33320 +Beatriz Carrillo De Los Micaela Reyes,16118,389,,,Parliament,"['621790334']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=280&idLegislatura=14,,,,,,Spain,21,56,33320 +Carvalho Dantas María,16119,593,,,Parliament,"['87042194']",ERC-S,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=190&idLegislatura=14,,,,,,Spain,21,56, +Casares Hontañón Pedro,16121,389,,,Parliament,"['378525757']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=347&idLegislatura=14,,,,,,Spain,21,56,33320 +Castellón Miguel Rubio Ángel,16123,392,,,Parliament,"['265938163']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=74&idLegislatura=14,,,,,,Spain,21,56,33610 +Cerqueiro González Javier,16126,589,,,Parliament,"['964981159183765505']",PsdeG-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=47&idLegislatura=14,,,,,,Spain,21,56, +Chamorro Delmo Ricardo,16127,541,,,Parliament,"['279233001']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=125&idLegislatura=14,,,,,,Spain,21,56,0 +Contreras Francisco José Peláez,16129,541,,,Parliament,"['192834709']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=229&idLegislatura=14,,,,,,Spain,21,56,0 +Cortés Gómez Ismael,16131,591,,,Parliament,"['1109063639024189452']",ECP-GUAYEM EL CANVI,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=350&idLegislatura=14,,,,,,Spain,21,56, +Cruz-Guzmán García María Soledad,16133,392,,,Parliament,"['789120175']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=159&idLegislatura=14,,,,,,Spain,21,56,33610 +Asua Cuatrecasas Juan,16134,389,,,Parliament,"['1111604643409391624']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=303&idLegislatura=14,,,,,,Spain,21,56,33320 +De Fernández Heras Las Patricia,16135,541,,,Parliament,"['1086595769833017344']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=248&idLegislatura=14,,,,,,Spain,21,56,0 +De Llanos Luna Tobarra,16136,392,,,Parliament,"['1128589504682569733']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=157&idLegislatura=14,,,,,,Spain,21,56,33610 +De Meer Méndez Rocío,16137,541,,,Parliament,"['4525423215']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=340&idLegislatura=14,,,,,,Spain,21,56,0 +De Del Iscar Julio Valle,16139,389,,,Parliament,"['90520367']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=360&idLegislatura=14,,,,,,Spain,21,56,33320 +Del Emilio Jesús Rodríguez Valle,16140,541,,,Parliament,"['1122839391096004608']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=175&idLegislatura=14,,,,,,Spain,21,56,0 +Carlos Durán José Peralta,16145,389,,,Parliament,"['222048521']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=342&idLegislatura=14,,,,,,Spain,21,56,33320 +Alicia Calonje Cristina Esteban,16156,541,,,Parliament,"['1193908437362577408']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=297&idLegislatura=14,,,,,,Spain,21,56,0 +Antidio Campo Fagúndez,16157,389,,,Parliament,"['1228373473']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=4&idLegislatura=14,,,,,,Spain,21,56,33320 +Andrea Benéitez Fernández,16159,389,,,Parliament,"['702298741651447808']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=102&idLegislatura=14,,,,,,Spain,21,56,33320 +Fernández Hernández Pedro,16162,541,,,Parliament,"['805508913261146112']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=146&idLegislatura=14,,,,,,Spain,21,56,0 +Fernández Ríos Tomás,16163,541,,,Parliament,"['799971934201085954']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=330&idLegislatura=14,,,,,,Spain,21,56,0 +Fernández-Lomana Gutiérrez Rafael,16164,541,,,Parliament,"['821157253']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=294&idLegislatura=14,,,,,,Spain,21,56,0 +Carlos Fernández-Roca Hugo Suárez,16165,541,,,Parliament,"['3512934022']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=298&idLegislatura=14,,,,,,Spain,21,56,0 +Carmona Franco Isabel,16168,390,,,Parliament,"['302453497']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=321&idLegislatura=14,,,,,,Spain,21,56,33020 +Bernardo Curbelo Fuentes Juan,16169,389,,,Parliament,"['379117713']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=359&idLegislatura=14,,,,,,Spain,21,56,33320 +Bugarín Diego Gago,16170,392,,,Parliament,"['267707645']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=121&idLegislatura=14,,,,,,Spain,21,56,33610 +Chavarría García María Montserrat,16175,589,,,Parliament,"['837874657']",PsdeG-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=304&idLegislatura=14,,,,,,Spain,21,56, +Díez García Joaquín María,16176,392,,,Parliament,"['267248683']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=11&idLegislatura=14,,,,,,Spain,21,56,33610 +García López Maribel,16179,389,,,Parliament,"['864392892']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=39&idLegislatura=14,,,,,,Spain,21,56,33320 +García Morís Roberto,16180,389,,,Parliament,"['917967385']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=231&idLegislatura=14,,,,,,Spain,21,56,33320 +Del García Mar María Puig,16181,591,,,Parliament,"['2921983427']",ECP-GUAYEM EL CANVI,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=265&idLegislatura=14,,,,,,Spain,21,56, +Alicia García Rodríguez,16182,392,,,Parliament,"['495288613']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=50&idLegislatura=14,,,,,,Spain,21,56,33610 +García Isabel Tejerina,16183,392,,,Parliament,"['1107968827013427200']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=323&idLegislatura=14,,,,,,Spain,21,56,33610 +Garrido Gutiérrez Pilar,16185,390,,,Parliament,"['3377815605']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=210&idLegislatura=14,,,,,,Spain,21,56,33020 +Collado Gázquez Paloma,16188,599,,,Parliament,"['1107072258294669313']",PP - FORO,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=279&idLegislatura=14,,,,,,Spain,21,56, +De Gestoso Luis Miguel,16189,541,,,Parliament,"['932321656416108544']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=131&idLegislatura=14,,,,,,Spain,21,56,0 +Caballero González Miguel Ángel,16194,389,,,Parliament,"['3391734845']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=222&idLegislatura=14,,,,,,Spain,21,56,33320 +Coello De González Portugal Víctor,16195,541,,,Parliament,"['49607100']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=76&idLegislatura=14,,,,,,Spain,21,56,0 +Carmen Del González Guinda María,16196,392,,,Parliament,"['4385137295']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=288&idLegislatura=14,,,,,,Spain,21,56,33610 +Ariagona González Pérez,16197,389,,,Parliament,"['3221713971']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=164&idLegislatura=14,,,,,,Spain,21,56,33320 +Cunillera Granollers Inés,16202,593,,,Parliament,"['357586041']",ERC-S,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=183&idLegislatura=14,,,,,,Spain,21,56, +Esteruelas Guaita Sandra,16203,398,,,Parliament,"['199850925']",PSC-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=208&idLegislatura=14,,,,,,Spain,21,56,33320 +Guerra López Sonia,16204,398,,,Parliament,"['701090171865976832']",PSC-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=357&idLegislatura=14,,,,,,Spain,21,56,33320 +Guinart Lídia Moreno,16207,398,,,Parliament,"['440281129']",PSC-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=202&idLegislatura=14,,,,,,Spain,21,56,33320 +Adolfo De Díaz Fernando Gutiérrez Otazu,16209,392,,,Parliament,"['983101658']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=149&idLegislatura=14,,,,,,Spain,21,56,33610 +Gutiérrez Indalecio Salinas,16211,389,,,Parliament,"['293944355']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=358&idLegislatura=14,,,,,,Spain,21,56,33320 +De Hispán Iglesias Pablo Ussel,16214,392,,,Parliament,"['3095873030']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=309&idLegislatura=14,,,,,,Spain,21,56,33610 +Antonio Honrubia Hurtado Pedro,16215,390,,,Parliament,"['302024398']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=68&idLegislatura=14,,,,,,Spain,21,56,33020 +Dausà Illamola Mariona,16219,590,,,Parliament,"['441732574']",JxCat-JUNTS,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=22&idLegislatura=14,,,,,,Spain,21,56, +García Iñarritu Jon,16220,221,,,Parliament,"['402593346']",EH Bildu,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=62&idLegislatura=14,,,,,,Spain,21,56,33902 +Jerez Juan Miguel Ángel,16221,392,,,Parliament,"['385882186']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=124&idLegislatura=14,,,,,,Spain,21,56,33610 +Jiménez Revuelta Rodrigo,16223,541,,,Parliament,"['1681133749']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=165&idLegislatura=14,,,,,,Spain,21,56,0 +Barrio Jiménez-Becerril María Teresa,16224,392,,,Parliament,"['1106640378193678339']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=179&idLegislatura=14,,,,,,Spain,21,56,33610 +José Rafael Vélez,16225,389,,,Parliament,"['504365221']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=361&idLegislatura=14,,,,,,Spain,21,56,33320 +Antonia Díaz Jover,16226,390,,,Parliament,"['230807056']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=334&idLegislatura=14,,,,,,Spain,21,56,33020 +Jesús Ledesma Martín Sebastián,16230,392,,,Parliament,"['1179187428']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=110&idLegislatura=14,,,,,,Spain,21,56,33610 +Cid Fuensanta Lima,16232,389,,,Parliament,"['256656869']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=59&idLegislatura=14,,,,,,Spain,21,56,33320 +López María Teresa Álvarez,16233,541,,,Parliament,"['2286278800']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=327&idLegislatura=14,,,,,,Spain,21,56,0 +Domínguez Laura López,16237,591,,,Parliament,"['193228093']",ECP-GUAYEM EL CANVI,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=263&idLegislatura=14,,,,,,Spain,21,56, +López Maraver Ángel,16238,541,,,Parliament,"['1039475426651979781']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=311&idLegislatura=14,,,,,,Spain,21,56,0 +Gema López Somoza,16239,389,,,Parliament,"['223167040']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=363&idLegislatura=14,,,,,,Spain,21,56,33320 +Cristina López Zamora,16240,389,,,Parliament,"['1153597939660578816']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=224&idLegislatura=14,,,,,,Spain,21,56,33320 +Andrés Lorite Lorite,16241,392,,,Parliament,"['222267978']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=105&idLegislatura=14,,,,,,Spain,21,56,33610 +Fernández José Losada,16242,389,,,Parliament,"['225094442']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=353&idLegislatura=14,,,,,,Spain,21,56,33320 +Maestro Moliner Roser,16243,598,,,Parliament,"['118453663']",IU,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=282&idLegislatura=14,,,,,,Spain,21,56, +Manso Olivar Rubén Silvano,16244,541,,,Parliament,"['386796948']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=119&idLegislatura=14,,,,,,Spain,21,56,0 +Domínguez Marcos Pilar,16245,392,,,Parliament,"['144981542']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=143&idLegislatura=14,,,,,,Spain,21,56,33610 +Joan Margall Sastre,16247,593,,,Parliament,"['15071264']",ERC-S,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=193&idLegislatura=14,,,,,,Spain,21,56, +Klose Marí Pau,16248,389,,,Parliament,"['1165362025']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=73&idLegislatura=14,,,,,,Spain,21,56,33320 +Manuel Mariscal Zabala,16250,541,,,Parliament,"['257669729']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=153&idLegislatura=14,,,,,,Spain,21,56,0 +Guerrero María Márquez,16251,390,,,Parliament,"['220943320']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=236&idLegislatura=14,,,,,,Spain,21,56,33020 +Domínguez Marra María Ángeles,16252,589,,,Parliament,"['487856790']",PsdeG-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=46&idLegislatura=14,,,,,,Spain,21,56, +Carmen Granados Martínez María,16255,387,,,Parliament,"['1056227988180795393']",Cs,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=60&idLegislatura=14,,,,,,Spain,21,56,33420 +Isidro Manuel Martínez Oblanca,16256,601,,,Parliament,"['3108277737']",FAC,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=20&idLegislatura=14,,,,,,Spain,21,56, +De García Jalón Matute Oskar,16260,221,,,Parliament,"['27675374']",EH Bildu,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=63&idLegislatura=14,,,,,,Spain,21,56,33902 +José María Mazón Ramos,16262,602,,,Parliament,"['1109041676042018816']",PRC,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=349&idLegislatura=14,,,,,,Spain,21,56, +María Medel Pérez Rosa,16263,390,,,Parliament,"['1219953321559166981']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=355&idLegislatura=14,,,,,,Spain,21,56,33020 +Lourdes Monasterio Méndez,16266,541,,,Parliament,"['1108432169054208001']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=177&idLegislatura=14,,,,,,Spain,21,56,0 +Javier Martínez Merino,16267,392,,,Parliament,"['82652418']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=138&idLegislatura=14,,,,,,Spain,21,56,33610 +Barea Manuel Mestre,16268,541,,,Parliament,"['93471453']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=268&idLegislatura=14,,,,,,Spain,21,56,0 +Cuadrado Jesús María Montero,16272,389,,,Parliament,"['310187114']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=225&idLegislatura=14,,,,,,Spain,21,56,33320 +De Macarena Miguel Montesinos,16275,392,,,Parliament,"['1197128623364423680']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=346&idLegislatura=14,,,,,,Spain,21,56,33610 +Gómez María Moraleja Tristana,16276,392,,,Parliament,"['789723368']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=57&idLegislatura=14,,,,,,Spain,21,56,33610 +Dalda Lucía Muñoz,16279,390,,,Parliament,"['2578198139']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=335&idLegislatura=14,,,,,,Spain,21,56,33020 +Bandera Dolores María Narváez,16281,389,,,Parliament,"['467682272']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=154&idLegislatura=14,,,,,,Spain,21,56,33320 +Gómez Julio Navalpotro,16283,389,,,Parliament,"['409108065']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=366&idLegislatura=14,,,,,,Spain,21,56,33320 +López Navarro Pedro,16285,392,,,Parliament,"['116701487']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=220&idLegislatura=14,,,,,,Spain,21,56,33610 +Campo Del Magdalena María Nevado,16286,541,,,Parliament,"['274481242']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=293&idLegislatura=14,,,,,,Spain,21,56,0 +Camero I Míriam Nogueras,16287,590,,,Parliament,"['343507680']",JxCat-JUNTS,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=27&idLegislatura=14,,,,,,Spain,21,56, +Inmaculada López María Oria,16292,389,,,Parliament,"['475802494']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=370&idLegislatura=14,,,,,,Spain,21,56,33320 +Galván José Ortiz,16295,392,,,Parliament,"['724965496391634944']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=134&idLegislatura=14,,,,,,Spain,21,56,33610 +Esther Padilla Ruiz,16296,389,,,Parliament,"['202540944']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=173&idLegislatura=14,,,,,,Spain,21,56,33320 +Miguel Núñez Paniagua Ángel,16297,392,,,Parliament,"['90467570']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=240&idLegislatura=14,,,,,,Spain,21,56,33610 +Pedraja Raquel Sáinz,16299,389,,,Parliament,"['112223206']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=362&idLegislatura=14,,,,,,Spain,21,56,33320 +Juan Luis Molina Pedreño,16300,392,,,Parliament,"['3208501132']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=132&idLegislatura=14,,,,,,Spain,21,56,33610 +Abellás Adolfo Pérez,16303,589,,,Parliament,"['3630263955']",PsdeG-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=33&idLegislatura=14,,,,,,Spain,21,56, +Auxiliadora Díaz María Pérez,16304,392,,,Parliament,"['192883412']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=160&idLegislatura=14,,,,,,Spain,21,56,33610 +Maya Píriz Valentín Víctor,16305,392,,,Parliament,"['807001880220073988']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=9&idLegislatura=14,,,,,,Spain,21,56,33610 +Carmen Cárdenes Del María Pita,16307,390,,,Parliament,"['1369105908']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=356&idLegislatura=14,,,,,,Spain,21,56,33020 +Ana Nieto Prieto,16311,589,,,Parliament,"['289844440']",PsdeG-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=81&idLegislatura=14,,,,,,Spain,21,56, +Margarita Prohens Rigo,16312,392,,,Parliament,"['361322719']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=243&idLegislatura=14,,,,,,Spain,21,56,33610 +Farré I Norma Pujol,16313,593,,,Parliament,"['109332337']",ERC-S,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=191&idLegislatura=14,,,,,,Spain,21,56, +María Pilar Ramallo Vázquez,16315,392,,,Parliament,"['1184508781595627521']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=117&idLegislatura=14,,,,,,Spain,21,56,33610 +Arnau Carner Ramírez,16316,398,,,Parliament,"['92407680']",PSC-PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=197&idLegislatura=14,,,,,,Spain,21,56,33320 +Del José Ramírez Río,16317,541,,,Parliament,"['1113813322170863616']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=93&idLegislatura=14,,,,,,Spain,21,56,0 +César Esteban Joaquín Ramos,16319,389,,,Parliament,"['11086042']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=178&idLegislatura=14,,,,,,Spain,21,56,33320 +José Luis Ramos Rodríguez,16320,389,,,Parliament,"['1097807109239029762']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=218&idLegislatura=14,,,,,,Spain,21,56,33320 +Calvillo De La María O Redondo,16322,392,,,Parliament,"['3083771273']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=106&idLegislatura=14,,,,,,Spain,21,56,33610 +Candamil Néstor Rego,16323,605,,,Parliament,"['435720619']",BNG,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=40&idLegislatura=14,,,,,,Spain,21,56, +Germán Martínez Renau,16324,389,,,Parliament,"['153563085']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=52&idLegislatura=14,,,,,,Spain,21,56,33320 +Jesús Novoa Pedro Requejo,16325,541,,,Parliament,"['301733012']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=85&idLegislatura=14,,,,,,Spain,21,56,0 +Carmen Regadera Riolobos,16327,392,,,Parliament,"['106811959']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=7&idLegislatura=14,,,,,,Spain,21,56,33610 +Joaquín López Robles,16328,541,,,Parliament,"['1133273163884826624']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=246&idLegislatura=14,,,,,,Spain,21,56,0 +Alberto Almeida Andrés Rodríguez,16329,541,,,Parliament,"['96874050']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=256&idLegislatura=14,,,,,,Spain,21,56,0 +Elvira Herrer María Rodríguez,16332,392,,,Parliament,"['1184610201812590593']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=123&idLegislatura=14,,,,,,Spain,21,56,33610 +De Los María Reyes Romero Vilches,16338,541,,,Parliament,"['3074491774']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=174&idLegislatura=14,,,,,,Spain,21,56,0 +Agustín Castro De Fernández Rosety,16340,541,,,Parliament,"['1115297214325194755']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=255&idLegislatura=14,,,,,,Spain,21,56,0 +I Marta Rosique Saltor,16341,593,,,Parliament,"['572925673']",ERC-S,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=185&idLegislatura=14,,,,,,Spain,21,56, +De Iñaki Pinedo Ruiz Undiano,16344,221,,,Parliament,"['596531845']",EH Bildu,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=64&idLegislatura=14,,,,,,Spain,21,56,33902 +Cabeza De La María Ruiz Solás,16347,541,,,Parliament,"['3368070699']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=301&idLegislatura=14,,,,,,Spain,21,56,0 +Marisa Muñoz Saavedra,16348,390,,,Parliament,"['897945036402327552']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=348&idLegislatura=14,,,,,,Spain,21,56,33020 +Inés Nadal Sabanés,16349,596,,,Parliament,"['110442665']",MÁS PAÍS-EQUO,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=234&idLegislatura=14,,,,,,Spain,21,56, +Alonso-Muñumer Pablo Sáez,16350,541,,,Parliament,"['559273864']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=278&idLegislatura=14,,,,,,Spain,21,56,0 +Idoia Sagastizabal Unzetabarrenetxea,16351,397,,,Parliament,"['250635207']",EAJ-PNV,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=98&idLegislatura=14,,,,,,Spain,21,56,33902 +Pedro Pérez-Castejón Sánchez,16360,389,,,Parliament,"['68740712']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=274&idLegislatura=14,,,,,,Spain,21,56,33320 +Herminio Rufino Sancho Íñiguez,16363,389,,,Parliament,"['711969278149308416']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=15&idLegislatura=14,,,,,,Spain,21,56,33320 +Luis Ruiz Santamaría,16364,392,,,Parliament,"['227819294']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=269&idLegislatura=14,,,,,,Spain,21,56,33610 +Enrique Fernando Romero Santiago,16365,598,,,Parliament,"['293012562']",IU,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=45&idLegislatura=14,,,,,,Spain,21,56, +Manuel Morell Sarrià Vicent,16366,389,,,Parliament,"['615560129']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=90&idLegislatura=14,,,,,,Spain,21,56,33320 +López Sayas Sergio,16367,597,,,Parliament,"['144600462']",UPN,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=55&idLegislatura=14,,,,,,Spain,21,56, +Daniel Oraá Senderos,16368,389,,,Parliament,"['2790857133']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=367&idLegislatura=14,,,,,,Spain,21,56,33320 +Francisco Juan Martínez Serrano,16370,389,,,Parliament,"['337929140']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=158&idLegislatura=14,,,,,,Spain,21,56,33320 +Ruiz Seva Yolanda,16371,389,,,Parliament,"['4409892215']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=137&idLegislatura=14,,,,,,Spain,21,56,33320 +Burillo Juan Luis Soto,16375,389,,,Parliament,"['1916660826']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=275&idLegislatura=14,,,,,,Spain,21,56,33320 +Juan Luis Olmedillas Steegmann,16376,541,,,Parliament,"['900446435111579648']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=135&idLegislatura=14,,,,,,Spain,21,56,0 +Georgina Gil Trías,16385,541,,,Parliament,"['1118102485053399041']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=277&idLegislatura=14,,,,,,Spain,21,56,0 +Bengoechea Edurne Uriarte,16386,392,,,Parliament,"['250092838']",PP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=30&idLegislatura=14,,,,,,Spain,21,56,33610 +Roberto Torrealday Uriarte,16387,390,,,Parliament,"['3019568698']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=207&idLegislatura=14,,,,,,Spain,21,56,33020 +Cordero Magdalena Valerio,16389,389,,,Parliament,"['258439147']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=140&idLegislatura=14,,,,,,Spain,21,56,33320 +Balañà Pilar Vallugera,16390,593,,,Parliament,"['1724984834']",ERC-S,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=88&idLegislatura=14,,,,,,Spain,21,56, +Cantenys Mireia Vehí,16393,594,,,Parliament,"['312297259']",CUP-PR,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=86&idLegislatura=14,,,,,,Spain,21,56, +Gómez Martina Velarde,16394,390,,,Parliament,"['3300574151']",UP,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=235&idLegislatura=14,,,,,,Spain,21,56,33020 +Daniel Vicente Viondi,16397,389,,,Parliament,"['15667049']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=80&idLegislatura=14,,,,,,Spain,21,56,33320 +Luisa María Ruiz Vilches,16399,389,,,Parliament,"['1119575623972851717']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=332&idLegislatura=14,,,,,,Spain,21,56,33320 +Noemí Quero Villagrasa,16400,389,,,Parliament,"['146397973']",PSOE,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=49&idLegislatura=14,,,,,,Spain,21,56,33320 +Carlos García-Raez José Zambrano,16402,541,,,Parliament,"['2385882402']",Vox,https://www.congreso.es/portal/page/portal/Congreso/Congreso/Diputados/BusqForm?_piref73_1333155_73_1333154_1333154.next_page=/wc/fichaDiputado?idDiputado=254&idLegislatura=14,,,,,,Spain,21,56,0 +Violet-Anne Wynne,16406,7,,,Parliament,"['2519464199']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Violet-Anne-Wynne.D.2020-02-08/,,Clare,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,53951 +Murphy Verona,16407,2,,,Parliament,"['2834112574']",Independent,https://www.oireachtas.ie/en/members/member/Verona-Murphy.D.2020-02-08/,,Wexford,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,0 +Gould Thomas,16409,7,,,Parliament,"['2535265746']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Thomas-Gould.D.2020-02-08/,,Cork North-Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,53951 +Matthews Steven,16411,13,,,Parliament,"['132667972']",Green Party,https://www.oireachtas.ie/en/members/member/Steven-Matthews.D.2020-02-08/,,Wicklow,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5,,Ireland,11,54,51110 +Clarke Sorca,16413,7,,,Parliament,"['1216345275834433537']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Sorca-Clarke.D.2020-02-08/,,Longford-Westmeath,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,53951 +Fearghaíl Seán Ó,16417,126,,,Parliament,"['2433459918']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Seán-Ó-Fearghaíl.S.2000-06-09/,,Kildare South,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,53714 +Murchú Ruairí Ó,16422,7,,,Parliament,"['313595663']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Ruairí-Ó-Murchú.D.2020-02-08/,,Louth,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,53951 +Conway-Walsh Rose,16423,7,,,Parliament,"['156974826']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Rose-Conway-Walsh.S.2016-04-25/,,Mayo,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,53951 +O'Gorman Roderic,16425,13,,,Parliament,"['18287940']",Green Party,https://www.oireachtas.ie/en/members/member/Roderic-O'Gorman.D.2020-02-08/,,Dublin West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,51110 +O'Donoghue Richard,16427,2,,,Parliament,"['2243998753']",Independent,https://www.oireachtas.ie/en/members/member/Richard-O'Donoghue.D.2020-02-08/,,Limerick County,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,0 +Cronin Réada,16430,7,,,Parliament,"['361559966']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Réada-Cronin.D.2020-02-08/,,Kildare North,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,53951 +Mcauliffe Paul,16437,126,,,Parliament,"['29110219']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Paul-McAuliffe.D.2020-02-08/,,Dublin North-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5,,Ireland,11,54,53714 +Donnelly Paul,16439,7,,,Parliament,"['219297099']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Paul-Donnelly.D.2020-02-08/,,Dublin West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,53951 +Costello Patrick,16441,13,,,Parliament,"['207969912']",Green Party,https://www.oireachtas.ie/en/members/member/Patrick-Costello.D.2020-02-08/,,Dublin South-Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,51110 +O'Sullivan Pádraig,16445,126,,,Parliament,"['224316754']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Pádraig-O'Sullivan.D.2019-11-29/,,Cork North-Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,53714 +Lochlainn Mac Pádraig,16446,7,,,Parliament,"['496338650']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Pádraig-MacLochlainn.D.2011-03-09/,,Donegal,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5,,Ireland,11,54,53951 +Ossian Smyth,16448,13,,,Parliament,"['116560657']",Green Party,https://www.oireachtas.ie/en/members/member/Ossian-Smyth.D.2020-02-08/,,Dún Laoghaire,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,51110 +Hourigan Neasa,16453,13,,,Parliament,"['2347393720']",Green Party,https://www.oireachtas.ie/en/members/member/Neasa-Hourigan.D.2020-02-08/,,Dublin Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4,,Ireland,11,54,51110 +Neale Richmond,16454,127,,,Parliament,"['239555645']",Fine Gael,https://www.oireachtas.ie/en/members/member/Neale-Richmond.S.2016-04-25/,,Dublin Rathdown,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,0 +Mcnamara Michael,16459,2,,,Parliament,"['246966794']",Independent,https://www.oireachtas.ie/en/members/member/Michael-McNamara.D.2011-03-09/,,Clare,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5,,Ireland,11,54,0 +Collins Michael,16465,2,,,Parliament,"['737618008827301896']",Independent,https://www.oireachtas.ie/en/members/member/Michael-Collins.D.2016-10-03/,,Cork South-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,0 +Matt Shanahan,16468,2,,,Parliament,"['1121809513789759488']",Independent,https://www.oireachtas.ie/en/members/member/Matt-Shanahan.D.2020-02-08/,,Waterford,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,0 +Butler Mary,16471,126,,,Parliament,"['244689557']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Mary-Butler.D.2016-10-03/,,Waterford,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1,,Ireland,11,54,53714 +Browne Martin,16474,7,,,Parliament,"['108413627']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Martin-Browne.D.2020-02-08/,,Tipperary,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1,,Ireland,11,54,53951 +Mark Ward,16475,7,,,Parliament,"['247506610']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Mark-Ward.D.2019-11-29/,,Dublin Mid-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,53951 +Cathasaigh Marc Ó,16477,13,,,Parliament,"['146096523']",Green Party,https://www.oireachtas.ie/en/members/member/Marc-Ó-Cathasaigh.D.2020-02-08/,,Waterford,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,51110 +Malcolm Noonan,16479,13,,,Parliament,"['878273203617099776']",Green Party,https://www.oireachtas.ie/en/members/member/Malcolm-Noonan.D.2020-02-08/,,Carlow-Kilkenny,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,51110 +Farrell Mairéad,16480,7,,,Parliament,"['261805836']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Mairéad-Farrell.D.2020-02-08/,,Galway West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,53951 +Kieran O'Donnell,16483,127,,,Parliament,"['740599546343006209']",Fine Gael,https://www.oireachtas.ie/en/members/member/Kieran-O'Donnell.D.2007-06-14/,,Limerick City,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,0 +Johnny Mythen,16486,7,,,Parliament,"['368959476']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Johnny-Mythen.D.2020-02-08/,,Wexford,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,53951 +Guirke Johnny,16487,7,,,Parliament,"['1181512691338354688']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Johnny-Guirke.D.2020-02-08/,,Meath West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4,,Ireland,11,54,53951 +Joe O'Brien,16492,13,,,Parliament,"['706733654']",Green Party,https://www.oireachtas.ie/en/members/member/Joe-O'Brien.D.2019-11-29/,,Dublin Fingal,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,51110 +Flaherty Joe,16494,126,,,Parliament,"['241286535']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Joe-Flaherty.D.2020-02-08/,,Longford-Westmeath,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,53714 +Jennifer Whitmore,16498,133,,,Parliament,"['1423427988']",Social Democrats,https://www.oireachtas.ie/en/members/member/Jennifer-Whitmore.D.2020-02-08/,,Wicklow,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,53321 +Jennifer Murnane O'Connor,16499,126,,,Parliament,"['857988043109748736']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Jennifer-Murnane-O'Connor.S.2016-04-25/,,Carlow-Kilkenny,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,53714 +Carroll Jennifer Macneill,16500,127,,,Parliament,"['237707902']",Fine Gael,https://www.oireachtas.ie/en/members/member/Jennifer-Carroll-MacNeill.D.2020-02-08/,,Dún Laoghaire,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,0 +James O'Connor,16501,126,,,Parliament,"['512612664']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/James-O'Connor.D.2020-02-08/,,Cork East,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,53714 +Cairns Holly,16507,133,,,Parliament,"['558077735']",Social Democrats,https://www.oireachtas.ie/en/members/member/Holly-Cairns.D.2020-02-08/,,Cork South-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1,,Ireland,11,54,53321 +Ged Nash,16512,47,,,Parliament,"['23781227']",Labour Party,https://www.oireachtas.ie/en/members/member/Gerald-Nash.D.2011-03-09/,,Louth,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,64320 +Gannon Gary,16513,133,,,Parliament,"['478789007']",Social Democrats,https://www.oireachtas.ie/en/members/member/Gary-Gannon.D.2020-02-08/,,Dublin Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,53321 +Feighan Frankie,16514,127,,,Parliament,"['127331013']",Fine Gael,https://www.oireachtas.ie/en/members/member/Frank-Feighan.S.2002-09-12/,,Sligo-Leitrim,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,0 +Duffy Francis Noel,16515,13,,,Parliament,"['247541948']",Green Party,https://www.oireachtas.ie/en/members/member/FrancisNoel-Duffy.D.2020-02-08/,,Dublin South-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=3,,Ireland,11,54,51110 +Emer Higgins,16519,127,,,Parliament,"['830145551421280256']",Fine Gael,https://www.oireachtas.ie/en/members/member/Emer-Higgins.D.2020-02-08/,,Dublin Mid-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4,,Ireland,11,54,0 +Duncan Smith,16522,47,,,Parliament,"['176373211']",Labour Party,https://www.oireachtas.ie/en/members/member/Duncan-Smith.D.2020-02-08/,,Dublin Fingal,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,64320 +Darren O'Rourke,16529,7,,,Parliament,"['298561399']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Darren-O'Rourke.D.2020-02-08/,,Meath East,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,53951 +Cormac Devlin,16534,126,,,Parliament,"['54605067']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Cormac-Devlin.D.2020-02-08/,,Dún Laoghaire,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,53714 +Burke Colm,16535,127,,,Parliament,"['322549346']",Fine Gael,https://www.oireachtas.ie/en/members/member/Colm-Burke.S.2011-05-25/,,Cork North-Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1,,Ireland,11,54,0 +Claire Kerrane,16537,7,,,Parliament,"['573535657']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Claire-Kerrane.D.2020-02-08/,,Roscommon-Galway,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=4,,Ireland,11,54,53951 +Cian O'Callaghan,16539,133,,,Parliament,"['127903938']",Social Democrats,https://www.oireachtas.ie/en/members/member/Cian-O'Callaghan.D.2020-02-08/,,Dublin Bay North,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=6,,Ireland,11,54,53321 +Christopher O'Sullivan,16540,126,,,Parliament,"['273626909']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Christopher-O'Sullivan.D.2020-02-08/,,Cork South-West,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,53714 +Andrews Chris,16541,7,,,Parliament,"['126603446']",Sinn Féin,https://www.oireachtas.ie/en/members/member/Chris-Andrews.D.2007-06-14/,,Dublin Bay South,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1,,Ireland,11,54,53951 +Cathal Crowe,16547,126,,,Parliament,"['28364382']",Fianna Fáil,https://www.oireachtas.ie/en/members/member/Cathal-Crowe.D.2020-02-08/,,Clare,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,53714 +Berry Cathal,16548,2,,,Parliament,"['1117396183222235136']",Independent,https://www.oireachtas.ie/en/members/member/Cathal-Berry.D.2020-02-08/,,Kildare South,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=1,,Ireland,11,54,0 +Bríd Smith,16550,128,,,Parliament,"['124269402']",Solidarity - People Before Profit,https://www.oireachtas.ie/en/members/member/Bríd-Smith.D.2016-10-03/,,Dublin South-Central,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=7,,Ireland,11,54,53231 +Brian Leddin,16552,13,,,Parliament,"['126008267']",Green Party,https://www.oireachtas.ie/en/members/member/Brian-Leddin.D.2020-02-08/,,Limerick City,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=5,,Ireland,11,54,51110 +Aodhán Ríordáin Ó,16558,47,,,Parliament,"['120117254']",Labour Party,https://www.oireachtas.ie/en/members/member/Aodhán-Ó-Ríordáin.D.2011-03-09/,,Dublin Bay North,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=8,,Ireland,11,54,64320 +Alan Dillon,16562,127,,,Parliament,"['177266455']",Fine Gael,https://www.oireachtas.ie/en/members/member/Alan-Dillon.D.2020-02-08/,,Mayo,,https://www.oireachtas.ie/en/members/tds/?term=%2Fie%2Foireachtas%2Fhouse%2Fdail%2F33&tab=party&page=2,,Ireland,11,54,0 +Andrew Bayly,16569,46,,,Parliament,"['1333969859659456514']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bayly-andrew/,"['National Party’s Shadow Treasurer & Spokesperson for Infrastructure and MP for Port Waikato', 'Authorised by Andrew Bayly, 7 Wesley Street, Pukekohe']",Port Waikato,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +Belich Camilla,16570,47,,,Parliament,"['2469332939']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/belich-camilla/,"['NZ Labour List MP, Authorised by Rob Salmond, 160 Willis St, Wellington.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Bennett Glen,16572,47,,,Parliament,"['728679700634050560']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/bennett-glen/,"['Labour Party candidate for New Plymouth. Authorised by Timothy Grigg, 160 Willis Street, Wellington.']",New Plymouth,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Boyack Rachel,16574,47,,,Parliament,"['2743922324']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/boyack-rachel/,"['@nzlabour MP for Nelson. Labrador Owner, Coffee Drinker, Beach lover. Authorised by Rachel Boyack MP, Parliament Buildings, Wellington.']",Nelson,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Brooking Rachel,16576,47,,,Parliament,"['2846908830']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/brooking-rachel/,"['Labour MP & Caucus Secretary. Retired company director & environmental lawyer. LLB, BSc. Slow runner. Fan of the South Authorised by R Salmond 160 Willis St Wgn']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Brownlee Gerry,16578,46,,,Parliament,"['1027298892872736768']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/brownlee-gerry/,"['MP for Ilam, Shadow Leader of the House, National Spokesperson for Foreign Affairs, GCSB & NZSIS. Authorised by Hon Gerry Brownlee, 283 Greers Road, CHC.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +Chen Naisi,16580,47,,,Parliament,"['859366363437056000']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/chen-naisi/,"['Labour list MP based in Botany. Authorised by Rob Salmond 160 Willis St Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Court Simon,16585,52,,,Parliament,"['2825565770']",ACT Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/court-simon/,"['ACT MP. Infrastructure-Transport-Climate-Environment-Energy-Resources-Local_Govt', 'Authorised by D Smith, Suite 2.5, 27 Gillies Avenue, Newmarket, Auckland']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64420 +Craig Liz,16586,47,,,Parliament,"['2665445005']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/craig-liz/,"['Labour Candidate for Clutha Southland. Authorised by Tim Barnett, 160 Willis St, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Barbara Edmonds,16592,47,,,Parliament,"['1266633259716194305']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/edmonds-barbara/,"['Proud local 💁🏽\u200d♀️ mother of eight 👨\u200d👩\u200d👧\u200d👦 specialist tax lawyer 👩🏽\u200d⚖️ & @nzlabour MP for Mana.📍 Authorised by Rob Salmond, 160 Willis St, Wellington.']",Mana,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Ghahraman Golriz,16595,13,,,Parliament,"['870447381006868480']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ghahraman-golriz/,"['Member of Parliament @NZGreens, Human rights lawyer, KurdIranianKiwi refugee, Feminist, Oxford, UN, She/her. Authorised by Gwen Shaw, Lvl 2, 17 Garrett St, WLG']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,51110 +Halbert Shanan,16598,47,,,Parliament,"['2467455000']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/halbert-shanan/,"['MP for Northcote. Authorised by Shanan Halbert, Parliament Buildings, Wellington.']",Northcote,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Jackson Willie,16602,47,,,Parliament,"['896533028029177856']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/jackson-willie/,"['Frequent diner at Sam Woos. South Auckland resident. 2017 started social media. Labour Party List MP. Authorised by Timothy Grigg,160 Willis Street, Wellington.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Anahila Kanongata'A-Suisuiki,16603,47,,,Parliament,"['1036566660738560003']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/kanongataa-suisuiki-anahila/,"['Authorised by Timothy Grigg, 160 Willis St, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Elizabeth Kerekere,16604,13,,,Parliament,"['2893234844']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/kerekere-elizabeth/,"['Green Party candidate for Ikaroa-Rāwhiti. Takatāpui and Kaupapa Māori enthusiast. Authorised by: Gwen Shaw, Level 2, 17 Garrett Street, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,51110 +Ingrid Leary,16606,47,,,Parliament,"['240516924']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/leary-ingrid/,"['Labour Candidate for Taieri (Authorised by Ingrid Leary, MP, Parliament Buildings, Wellington.) Curious human. Perhaps annoyingly yet authentically optimistic.']",Taieri,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Lewis Steph,16609,47,,,Parliament,"['1476805686']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lewis-steph/,"['Labour MP for Whanganui, including South Taranaki and Stratford.', 'Authorised by Rob Salmond, 160 Willis Street, Wellington.']",Whanganui,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Anna Lorck,16612,47,,,Parliament,"['127124247']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/lorck-anna/,"['raising a family of five girls in Hastings and MP for Tukituki authorised by Anna Lorck, 10 Donnelly St Havelock North.']",Tukituki,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Chris Luxon,16614,46,,,Parliament,"['1180976032658014209']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/luxon-christopher/,"['Husband, Father, former business leader, sports addict, and National Party MP for Botany.']",Botany,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +James Mcdowall,16620,52,,,Parliament,"['1303264902975373312']",ACT Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mcdowall-james/,"['List Member of the 53rd New Zealand Parliament for ACT New Zealand. Authorised by D Smith, 27 Gillies Avenue, Newmarket, Auckland.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64420 +Mclellan Tracey,16623,47,,,Parliament,"['22409466']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/mclellan-tracey/,"['MP for Banks Peninsula. Authorised, Tracey McLellan, Parliament buildings, Wellington']",Banks Peninsula,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +March Menéndez Ricardo,16624,13,,,Parliament,"['745599511960051712']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/menéndez-march-ricardo/,"['@nzgreens MP. Climate & economic justice yarns 🍉 Auth’d by G Shaw, 1/17 Garrett Street, WLG. he/him']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,51110 +Debbie Ngarewa-Packer,16629,51,,,Parliament,"['1613567335']",Māori Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ngarewa-packer-debbie/,"['Te Pāti Māori Co-leader and List MP based in Te Tai Hauāuru. #BanSeabedMining']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64901 +Ngobi Terisa,16630,47,,,Parliament,"['1261919716559384576']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/ngobi-terisa/,"['Labour MP for Ōtaki ❤️ A proud Horowhenua local! 🏡 Authorised by Terisa Ngobi, Parliament Buildings, Wellington.']",Ōtaki,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Greg O’Connor,16632,47,,,Parliament,"['827649731635523585']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/oconnor-greg/,"['Authorised by Timothy Grigg, 160 Willis Street, Wellington.', 'Labour MP for Ōhāriu.']",Ōhāriu,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Ibrahim Omer,16634,47,,,Parliament,"['1268455526951600133']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/omer-ibrahim/,"['Standing up for refugees and working people in Aotearoa ✊🏿 Authorised by Ibrahim Omer MP, Parliament Buildings, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Pallett Sarah,16635,47,,,Parliament,"['1225625583196856320']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/pallett-sarah/,"[""Proud to be Labour's Member of Parliament for Ilam. A positive voice for the communities of Ilam. Authorised by Rob Salmond, 180 Willis St, Wellington""]",Ilam,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Chris Penk,16637,46,,,Parliament,"['25026571']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/penk-chris/,"['MP Kaipara ki Mahurangi electorate. Authorised by Chris Penk, 365 Main Road, Huapai (“And who is Christopher Penk,the man who has done fuck all.”)']",Kaipara ki Mahurangi,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +Priyanca Radhakrishnan,16640,47,,,Parliament,"['2617089288']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/radhakrishnan-priyanca/,"['MP for Maungakiekie, Akl. NZ Labour. Minister of the Crown. Motivated by social justice. Loves dogs. Authorised by Timothy Grigg, 160 Willis Street, Wellington.']",Maungakiekie,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Angela Roberts,16642,47,,,Parliament,"['130943657']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/roberts-angela/,"['Labour list MP based in Taranaki-King Country. Advocate for thriving rural communities. Authorised by Timothy Grigg, 160 Willis Street, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Deborah Russell,16645,47,,,Parliament,"['87850509']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/russell-deborah/,"['Labour MP for New Lynn. My Twitter is mostly personal but sometimes it’s not. Authorised by D Russell, 1885 Great North Rd, Auckland.']",New Lynn,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Gaurav Sharma,16651,47,,,Parliament,"['14756168']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/sharma-gaurav/,"['Member of Parliament for Hamilton West, New Zealand l Doctor (GP) l MBA from Washington DC l Fulbright Scholar | NZ Labour Party']",Hamilton West,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Erica Stanford,16659,46,,,Parliament,"['1002990314']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/stanford-erica/,"['Member of Parliament for East Coast Bays. Authorised by Erica Stanford 85 Beachfront Lane, Browns Bay.']",East Coast Bays,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +Teanau Tuiono,16664,13,,,Parliament,"['39727705']",Green Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/tuiono-teanau/,"['rewa hard, palmy proud. ( he / him / ia )']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,51110 +Tangi Utikere,16667,47,,,Parliament,"['459049208']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/utikere-tangi/,"['MP for Palmerston North, committed to providing a strong, local voice for Palmy in Parliament. Authorised by Tangi Utikere MP, Parliament Buildings, Wellington.']",Palmerston North,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Brooke Van Velden,16669,52,,,Parliament,"['701569472692228097']",ACT Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/van-velden-brooke/,"['ACT Party Deputy Leader and List Member of Parliament Authorised by D Smith, Suite 2.5 27 Gillies Ave, Newmarket, Auckland, 1023']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64420 +Ayesha Verrall,16670,47,,,Parliament,"['2275377007']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/verrall-ayesha/,"['Minister of Food Safety, Minister for Seniors, Assoc. Health and RSI. Labour List MP. Infectious Diseases Doc. Passionate about preventive medicine.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Rawiri Waititi,16671,51,,,Parliament,"['2419904468']",Māori Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/waititi-rawiri/,"['✊🏾 MP for Waiariki & Māori Party co-leader. Father, husband, son, brother, cuzzy & mate. Auth by R Waititi, Parliament Buildings, WLG.']",Waiariki,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64901 +Vanushi Walters,16673,47,,,Parliament,"['967499293211860992']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/walters-vanushi/,"['Authorised by Timothy Grigg, 160 Willis Street, Wellington.']",Upper Harbour,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Angie Clark Warren,16674,47,,,Parliament,"['858143732884885504']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/warren-clark-angie/,"['Labour List MP based in the Bay of Plenty. Authorised by Timothy Grigg, 160 Willis Street, Wellington']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Simon Watts,16675,46,,,Parliament,"['1317993231427121152']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/watts-simon/,"['National MP for North Shore. Husband, Father, Emergency Ambulance Officer, International finance and business, steak and cheese pie enthusiast.']",North Shore,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +Helen White,16678,47,,,Parliament,"['806352422']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/white-helen/,"['General Counsel at Christchurch City Council, New Zealand and twin mum.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Arena Williams,16679,47,,,Parliament,"['19509569']",Labour Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/williams-arena/,"['Mum, lawyer, MP for Manurewa. Authorised by Arena Williams MP, 2 Osterley Way, Manukau.']",Manurewa,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64320 +Nicola Willis,16681,46,,,Parliament,"['421375843']",National Party,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/willis-nicola/,"['Mum of 4. National Party List MP based in Wellington. Housing & RMA Spokesperson. Authorised by Nicola Willis, 41 Pipitea St, Wellington.']",List,,https://www.parliament.nz/en/mps-and-electorates/members-of-parliament/,,New Zealand,17,57,64620 +Auchincloss Jake,16693,1,,,Parliament,"['1330278736554582016']",Democrat,https://pbs.twimg.com/profile_images/1361340530286882824/EOzF66R9_normal.jpg,"['Transportation and Infrastructure', 'Financial Services']",Massachusetts,4th,https://www.house.gov/representatives,,United States,25,58,61320 +Bentz Cliff,16704,0,,,Parliament,"['1345788865911656454']",Republican,https://pbs.twimg.com/profile_images/1345898634064388097/jdT8A4Q9_normal.jpg,"['Natural Resources', 'Judiciary']",Oregon,2nd,https://www.house.gov/representatives,,United States,25,58,61620 +Bice I. Stephanie,16708,0,,,Parliament,"['1344260196227555334']",Republican,https://pbs.twimg.com/profile_images/1345744030806773762/Yieqge6I_normal.jpg,"['Armed Services', 'Science, Space, and Technology']",Oklahoma,5th,https://www.house.gov/representatives,,United States,25,58,61620 +Bishop Dan,16711,0,,,Parliament,"['1176522535531360257']",Republican,https://pbs.twimg.com/profile_images/1189959597727072257/u-wZ3Q3l_normal.jpg,"['Homeland Security', 'Judiciary']",North Carolina,9th,https://www.house.gov/representatives,,United States,25,58,61620 +Boebert Lauren,16715,0,,,Parliament,"['1342989756611907584']",Republican,https://pbs.twimg.com/profile_images/1342989940968333318/Wq_vlZvn_normal.jpg,"['Natural Resources', 'Budget']",Colorado,3rd,https://www.house.gov/representatives,,United States,25,58,61620 +Bourdeaux Carolyn,16718,1,,,Parliament,"['1343620645452595200']",Democrat,https://pbs.twimg.com/profile_images/1345745027566243846/HkshH1Ao_normal.jpg,"['Small Business', 'Transportation and Infrastructure']",Georgia,7th,https://www.house.gov/representatives,,United States,25,58,61320 +Bowman Jamaal,16719,1,,,Parliament,"['1344389506963808264']",Democrat,https://pbs.twimg.com/profile_images/1345714590869549058/2Evp_Hpa_normal.jpg,"['Science, Space, and Technology', 'Education and Labor']",New York,16th,https://www.house.gov/representatives,,United States,25,58,61320 +Bush Cori,16731,1,,,Parliament,"['1002630999052865536']",Democrat,https://pbs.twimg.com/profile_images/1352693777895485457/hGX2jRBe_normal.jpg,"['Oversight and Reform', 'Judiciary']",Missouri,1st,https://www.house.gov/representatives,,United States,25,58,61320 +Cammack Kat,16735,0,,,Parliament,"['1344325638983987201']",Republican,https://pbs.twimg.com/profile_images/1344418605769887744/l3yGYKd3_normal.jpg,"['Homeland Security', 'Agriculture']",Florida,3rd,https://www.house.gov/representatives,,United States,25,58,61620 +Carl Jerry L.,16738,0,,,Parliament,"['1341091420439015424']",Republican,https://pbs.twimg.com/profile_images/1344716855332786180/KZkt0j8M_normal.jpg,"['Natural Resources', 'Armed Services']",Alabama,1st,https://www.house.gov/representatives,,United States,25,58,61620 +Cawthorn Madison,16747,0,,,Parliament,"['1344007696555663360']",Republican,https://pbs.twimg.com/profile_images/1345734980333424641/Nr8X6w3D_normal.jpg,"[""Veterans' Affairs"", 'Education and Labor']",North Carolina,11th,https://www.house.gov/representatives,,United States,25,58,61620 +Andrew Clyde S.,16758,0,,,Parliament,"['1357017361568694274']",Republican,https://pbs.twimg.com/profile_images/1357017586647629826/0Gp14jBE_normal.jpg,"['Homeland Security', 'Oversight and Reform']",Georgia,9th,https://www.house.gov/representatives,,United States,25,58,61620 +Byron Donalds,16791,0,,,Parliament,"['1343968646050283522']",Republican,https://pbs.twimg.com/profile_images/1344343639850364939/8h4GprDW_normal.jpg,"['Oversight and Reform', 'Small Business', 'Budget']",Florida,19th,https://www.house.gov/representatives,,United States,25,58,61620 +Fallon Pat,16801,0,,,Parliament,"['1343258042704527362']",Republican,https://pbs.twimg.com/profile_images/1352345794486149127/uZ0AS4W4_normal.jpg,"['Armed Services', 'Oversight and Reform']",Texas,4th,https://www.house.gov/representatives,,United States,25,58,61620 +Feenstra Randy,16802,0,,,Parliament,"['1345135363761852416']",Republican,https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg,"['Science, Space, and Technology', 'Agriculture', 'Budget']",Iowa,4th,https://www.house.gov/representatives,,United States,25,58,61620 +Fischbach Michelle,16804,0,,,Parliament,"['1344375287484723205']",Republican,https://pbs.twimg.com/profile_images/1345553611795947526/8FiAueBg_normal.jpg,"['Rules', 'Judiciary', 'Agriculture']",Minnesota,7th,https://www.house.gov/representatives,,United States,25,58,61620 +Fitzgerald Scott,16805,0,,,Parliament,"['1004891731']",Republican,https://pbs.twimg.com/profile_images/1369069308714885121/ClZOcu0z_normal.jpg,"['Small Business', 'Judiciary', 'Education and Labor']",Wisconsin,5th,https://www.house.gov/representatives,,United States,25,58,61620 +C. Franklin Scott,16813,0,,,Parliament,"['1343664721384398849']",Republican,https://pbs.twimg.com/profile_images/1363905247601655811/b2rY800o_normal.jpg,"['Armed Services', 'Oversight and Reform']",Florida,15th,https://www.house.gov/representatives,,United States,25,58,61620 +Andrew Garbarino R.,16820,0,,,Parliament,"['1344349650447433729']",Republican,https://pbs.twimg.com/profile_images/1345549516125167616/NeuVOQWT_normal.jpg,"['Homeland Security', 'Small Business']",New York,2nd,https://www.house.gov/representatives,,United States,25,58,61620 +Garcia Mike,16822,0,,,Parliament,"['1262531473057423361']",Republican,https://pbs.twimg.com/profile_images/1265056985361375233/KlEhMQx__normal.jpg,"['Appropriations', 'Science, Space, and Technology']",California,25th,https://www.house.gov/representatives,,United States,25,58,61620 +A. Carlos Gimenez,16825,0,,,Parliament,"['1343679195034103808']",Republican,https://pbs.twimg.com/profile_images/1343962494533066752/eDWlrUcw_normal.jpg,"['Homeland Security', 'Science, Space, and Technology', 'Transportation and Infrastructure']",Florida,26th,https://www.house.gov/representatives,,United States,25,58,61620 +Gonzales Tony,16829,0,,,Parliament,"['1343627416120532992']",Republican,https://pbs.twimg.com/profile_images/1343627927838142464/tdGyhYg4_normal.jpg,"['Appropriations']",Texas,23rd,https://www.house.gov/representatives,,United States,25,58,61620 +González-Colón Jenniffer,16832,0,,,Parliament,"['400246874']",Republican,https://pbs.twimg.com/profile_images/1324358952478511108/H3IsY_a6_normal.jpg,"['Natural Resources', 'Transportation and Infrastructure']",Puerto Rico Resident Commissioner,,https://www.house.gov/representatives,,United States,25,58,61620 +Bob Good,16833,0,,,Parliament,"['1345536897838436353']",Republican,https://pbs.twimg.com/profile_images/1345769186568626179/a8SJKYld_normal.jpg,"['Education and Labor', 'Budget']",Virginia,5th,https://www.house.gov/representatives,,United States,25,58,61620 +Greene Marjorie Taylor,16842,0,,,Parliament,"['1344356576786866176']",Republican,https://pbs.twimg.com/profile_images/1344356993017008128/vrBGKcjd_normal.jpg,,Georgia,14th,https://www.house.gov/representatives,,United States,25,58,61620 +Diana Harshbarger,16852,0,,,Parliament,"['1345787285179162624']",Republican,https://pbs.twimg.com/profile_images/1345806240123916289/NhXXybt1_normal.jpg,"['Homeland Security', 'Education and Labor']",Tennessee,1st,https://www.house.gov/representatives,,United States,25,58,61620 +Herrell Yvette,16857,0,,,Parliament,"['1344416719260016641']",Republican,https://pbs.twimg.com/profile_images/1344420106437353472/RErgo9C8_normal.jpg,"['Natural Resources', 'Oversight and Reform']",New Mexico,2nd,https://www.house.gov/representatives,,United States,25,58,61620 +Ashley Hinson,16864,0,,,Parliament,"['1340783304304410625']",Republican,https://pbs.twimg.com/profile_images/1343676797007892481/wyWNJ7wg_normal.jpg,"['Appropriations', 'Budget']",Iowa,1st,https://www.house.gov/representatives,,United States,25,58,61620 +Jackson Ronny,16873,0,,,Parliament,"['1341903465610686464']",Republican,https://pbs.twimg.com/profile_images/1345773612226277377/9Us7FmwH_normal.jpg,"['Armed Services', 'Foreign Affairs']",Texas,13th,https://www.house.gov/representatives,,United States,25,58,61620 +Chris Jacobs,16875,0,,,Parliament,"['1276232539510919168']",Republican,https://pbs.twimg.com/profile_images/1288864965550583814/myiHUrAr_normal.jpg,"['Agriculture', 'Budget']",New York,27th,https://www.house.gov/representatives,,United States,25,58,61620 +Jacobs Sara,16876,1,,,Parliament,"['1345103905869455361']",Democrat,https://pbs.twimg.com/profile_images/1345594478023897088/aWg1N8_G_normal.jpg,"['Armed Services', 'Foreign Affairs']",California,53rd,https://www.house.gov/representatives,,United States,25,58,61320 +Jones Mondaire,16884,1,,,Parliament,"['1345883634046279681']",Democrat,https://pbs.twimg.com/profile_images/1346226012187734016/7urno5n3_normal.jpg,"['Ethics', 'Judiciary', 'Education and Labor']",New York,17th,https://www.house.gov/representatives,,United States,25,58,61320 +Kahele KaialiʻI,16888,1,,,Parliament,"['4863545294']",Democrat,https://pbs.twimg.com/profile_images/1324826706943770624/t5FHCGlm_normal.jpg,"['Armed Services', 'Transportation and Infrastructure']",Hawaii,2nd,https://www.house.gov/representatives,,United States,25,58,61320 +Fred Keller,16892,0,,,Parliament,"['1136060761422405633']",Republican,https://pbs.twimg.com/profile_images/1154154723202818048/vp1Y9-fs_normal.jpg,"['Oversight and Reform', 'Education and Labor']",Pennsylvania,12th,https://www.house.gov/representatives,,United States,25,58,61620 +Kim Young,16900,0,,,Parliament,"['1344677401465397249']",Republican,https://pbs.twimg.com/profile_images/1344829812364500993/vZjm99gz_normal.jpg,"['Small Business', 'Science, Space, and Technology', 'Foreign Affairs']",California,39th,https://www.house.gov/representatives,,United States,25,58,61620 +Jake Laturner,16915,0,,,Parliament,"['1345850704800468993']",Republican,https://pbs.twimg.com/profile_images/1353827408105910272/bKNy90In_normal.jpg,"['Homeland Security', 'Oversight and Reform', 'Science, Space, and Technology']",Kansas,2nd,https://www.house.gov/representatives,,United States,25,58,61620 +Fernandez Leger Teresa,16920,1,,,Parliament,"['1345147845926670337']",Democrat,https://pbs.twimg.com/profile_images/1362134515699834888/H8hmmCXU_normal.jpg,"['Natural Resources', 'House Administration', 'Education and Labor']",New Mexico,3rd,https://www.house.gov/representatives,,United States,25,58,61320 +Mace Nancy,16934,0,,,Parliament,"['1343597700542038017']",Republican,https://pbs.twimg.com/profile_images/1344644863191560196/_sLBt0UA_normal.jpg,"['Oversight and Reform', 'Transportation and Infrastructure', ""Veterans' Affairs""]",South Carolina,1st,https://www.house.gov/representatives,,United States,25,58,61620 +Malliotakis Nicole,16936,0,,,Parliament,"['1344750588026900481']",Republican,https://pbs.twimg.com/profile_images/1345790652416745477/f-Vnpg1e_normal.jpg,"['Transportation and Infrastructure', 'Foreign Affairs']",New York,11th,https://www.house.gov/representatives,,United States,25,58,61620 +Mann Tracey,16939,0,,,Parliament,"['1345825008887721986']",Republican,https://pbs.twimg.com/profile_images/1367926202401492992/4eZE1usc_normal.jpg,"['Agriculture', ""Veterans' Affairs""]",Kansas,1st,https://www.house.gov/representatives,,United States,25,58,61620 +E. Kathy Manning,16940,1,,,Parliament,"['1337115670161608712']",Democrat,https://pbs.twimg.com/profile_images/1337116029919653888/gGdH6lon_normal.jpg,"['Foreign Affairs', 'Education and Labor']",North Carolina,6th,https://www.house.gov/representatives,,United States,25,58,61320 +C. Lisa Mcclain,16947,0,,,Parliament,"['1344032292432437248']",Republican,https://pbs.twimg.com/profile_images/1345205475558752256/BaY9VPJK_normal.jpg,"['Armed Services', 'Education and Labor']",Michigan,10th,https://www.house.gov/representatives,,United States,25,58,61620 +Meijer Peter,16956,0,,,Parliament,"['1334164871420796928']",Republican,https://pbs.twimg.com/profile_images/1334569532736876558/BKugIXcB_normal.jpg,"['Homeland Security', 'Science, Space, and Technology', 'Foreign Affairs']",Michigan,3rd,https://www.house.gov/representatives,,United States,25,58,61620 +Kweisi Mfume,16959,1,,,Parliament,"['1276209702322438148']",Democrat,https://pbs.twimg.com/profile_images/1306311561137590274/bhbNBaKJ_normal.jpg,"['Oversight and Reform', 'Small Business']",Maryland,7th,https://www.house.gov/representatives,,United States,25,58,61320 +E. Mary Miller,16961,0,,,Parliament,"['1343656635907125250']",Republican,https://pbs.twimg.com/profile_images/1345761002089017352/RkkvBkgp_normal.jpg,"['Agriculture', 'Education and Labor']",Illinois,15th,https://www.house.gov/representatives,,United States,25,58,61620 +Mariannette Miller-Meeks,16962,0,,,Parliament,"['1345807954604412929']",Republican,https://pbs.twimg.com/profile_images/1345808220946886656/0vHhstxi_normal.jpg,"['Homeland Security', ""Veterans' Affairs"", 'Education and Labor']",Iowa,2nd,https://www.house.gov/representatives,,United States,25,58,61620 +Barry Moore,16965,0,,,Parliament,"['1339006078688825344']",Republican,https://pbs.twimg.com/profile_images/1357081525813149698/W3nYEhkr_normal.jpg,"['Agriculture', ""Veterans' Affairs""]",Alabama,2nd,https://www.house.gov/representatives,,United States,25,58,61620 +Blake D. Moore,16966,0,,,Parliament,"['1337452596093587462']",Republican,https://pbs.twimg.com/profile_images/1339629080811999234/qaTTyxBQ_normal.jpg,"['Natural Resources', 'Armed Services']",Utah,1st,https://www.house.gov/representatives,,United States,25,58,61620 +Frank J. Mrvan,16970,1,,,Parliament,"['1346205046036377601']",Democrat,https://pbs.twimg.com/profile_images/1346205271085998084/d12IWXy6_normal.jpg,"[""Veterans' Affairs"", 'Education and Labor']",Indiana,1st,https://www.house.gov/representatives,,United States,25,58,61320 +E. Nehls Troy,16978,0,,,Parliament,"['1347318288850825217']",Republican,https://pbs.twimg.com/profile_images/1347318372497829890/_tIZjwep_normal.jpg,"['Transportation and Infrastructure', ""Veterans' Affairs""]",Texas,22nd,https://www.house.gov/representatives,,United States,25,58,61620 +Marie Newman,16980,1,,,Parliament,"['1343578440977494018']",Democrat,https://pbs.twimg.com/profile_images/1345783189562916864/j9v7rA1I_normal.jpg,"['Small Business', 'Transportation and Infrastructure']",Illinois,3rd,https://www.house.gov/representatives,,United States,25,58,61320 +Jay Obernolte,16985,0,,,Parliament,"['272482466']",Republican,https://pbs.twimg.com/profile_images/1357402265603239942/QUeCFmxF_normal.jpg,"['Natural Resources', 'Science, Space, and Technology', 'Budget']",California,8th,https://www.house.gov/representatives,,United States,25,58,61620 +Burgess Owens,16989,0,,,Parliament,"['1344481217685692416']",Republican,https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg,"['Judiciary', 'Education and Labor']",Utah,4th,https://www.house.gov/representatives,,United States,25,58,61620 +August Pfluger,17002,0,,,Parliament,"['1341120751399809026']",Republican,https://pbs.twimg.com/profile_images/1341121402397745152/JEwhhmMw_normal.jpg,"['Homeland Security', 'Foreign Affairs']",Texas,11th,https://www.house.gov/representatives,,United States,25,58,61620 +M. Matthew Rosendale,17023,0,,,Parliament,"['1344751420139040783']",Republican,https://pbs.twimg.com/profile_images/1345773665871388675/_p2WLBiN_normal.jpg,"['Natural Resources', ""Veterans' Affairs""]",Montana At Large,,https://www.house.gov/representatives,,United States,25,58,61620 +Deborah K. Ross,17024,1,,,Parliament,"['1348683154815655940']",Democrat,https://pbs.twimg.com/profile_images/1348683752436850688/EaKjOvn-_normal.jpg,"['Science, Space, and Technology', 'Judiciary', 'Rules']",North Carolina,2nd,https://www.house.gov/representatives,,United States,25,58,61320 +Elvira Maria Salazar,17034,0,,,Parliament,"['1325928411689349120']",Republican,https://pbs.twimg.com/profile_images/1337468994991828994/-aiEFhVs_normal.jpg,"['Small Business', 'Foreign Affairs']",Florida,27th,https://www.house.gov/representatives,,United States,25,58,61620 +F. Michael Nicolas Q. San,17036,1,,,Parliament,"['346509049']",Democrat,https://pbs.twimg.com/profile_images/1098025305707552770/5Zb7HLNr_normal.jpg,"['Natural Resources', 'Financial Services']",Guam Delegate,,https://www.house.gov/representatives,,United States,25,58,61320 +Jan Schakowsky,17040,1,,,Parliament,"['85896319']",Democrat,https://pbs.twimg.com/profile_images/1295047629584371713/5zoAUXD1_normal.jpg,"['Energy and Commerce', 'Budget']",Illinois,9th,https://www.house.gov/representatives,,United States,25,58,61320 +Spartz Victoria,17063,0,,,Parliament,"['1344845201479663621']",Republican,https://pbs.twimg.com/profile_images/1344919879481135104/G5I-RPbt_normal.jpg,"['Judiciary', 'Education and Labor']",Indiana,5th,https://www.house.gov/representatives,,United States,25,58,61620 +Michelle Steel,17067,0,,,Parliament,"['1343740146630451200']",Republican,https://pbs.twimg.com/profile_images/1345505779613372417/-nwGWwYw_normal.jpg,"['Transportation and Infrastructure', 'Education and Labor']",California,48th,https://www.house.gov/representatives,,United States,25,58,61620 +Marilyn Strickland,17074,1,,,Parliament,"['1206654366758785024']",Democrat,https://pbs.twimg.com/profile_images/1255155496484343814/PtSTjuw6_normal.jpg,"['Armed Services', 'Transportation and Infrastructure']",Washington,10th,https://www.house.gov/representatives,,United States,25,58,61320 +P. Thomas Tiffany,17083,0,,,Parliament,"['1267841066335682562']",Republican,https://pbs.twimg.com/profile_images/1284128581652799488/qQMYZ8VE_normal.jpg,"['Natural Resources', 'Judiciary']",Wisconsin,7th,https://www.house.gov/representatives,,United States,25,58,61620 +Ritchie Torres,17089,1,,,Parliament,"['1276403757224546304']",Democrat,https://pbs.twimg.com/profile_images/1345500865436807168/Egj-DQId_normal.jpg,"['Homeland Security', 'Financial Services']",New York,15th,https://www.house.gov/representatives,,United States,25,58,61320 +Beth Duyne Van,17097,0,,,Parliament,"['489856457']",Republican,https://pbs.twimg.com/profile_images/1158554922570457094/oglXhgtu_normal.jpg,"['Small Business', 'Transportation and Infrastructure']",Texas,24th,https://www.house.gov/representatives,,United States,25,58,61620 +Nikema Williams,17116,1,,,Parliament,"['1345461797361504259']",Democrat,https://pbs.twimg.com/profile_images/1345492139782901760/VWlw2GkX_normal.jpg,"['Transportation and Infrastructure', 'Financial Services']",Georgia,5th,https://www.house.gov/representatives,,United States,25,58,61320 +Ron- Vacancy Wright,17122,0,,,Parliament,"['1080854935535800320']",Republican,https://pbs.twimg.com/profile_images/1081206587426045958/MkX5U9E6_normal.jpg,"['Vacancy']",Texas,6th,https://www.house.gov/representatives,,United States,25,58,61620 diff --git a/backend/read_data.py b/backend/read_data.py new file mode 100644 index 000000000..ad8809438 --- /dev/null +++ b/backend/read_data.py @@ -0,0 +1,25 @@ +import pandas as pd +import json +import csv +list2 = [] +with open('names.csv', 'r') as f: + csv_reader = csv.reader(f, delimiter=',') + for row in csv_reader: + list2.append(row[0]) +# print(list2) + +df = pd.read_csv('short_tweets.csv') +data = {} +df_clean = df.to_dict(orient='records') +a = 0 +for i in range(0, len(df_clean)): + if df_clean[i]['Name'] in list2: + a += 1 + if df_clean[i]['Name'] not in data: + data[df_clean[i]['Name']] = [] + data[df_clean[i]['Name']].append( + {'Retweets': df_clean[i]['Retweets'], 'Likes': df_clean[i]['Likes'], 'Content': df_clean[i]['Content']}) + +with open('short_list.json', 'w') as outfile: + json.dump(data, outfile) +# print(df.to_string()) diff --git a/backend/requirements.txt b/backend/requirements.txt index 3340d6b7e..9592b6195 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -24,3 +24,5 @@ SQLAlchemy==1.4.46 typing_extensions==4.5.0 tzdata==2024.1 Werkzeug==2.2.2 +scikit-learn>=0.0 +nltk>=3.6.5 diff --git a/backend/short_list.json b/backend/short_list.json new file mode 100644 index 000000000..50b842a55 --- /dev/null +++ b/backend/short_list.json @@ -0,0 +1,3009 @@ +{ + "John Kennedy": [ + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "176", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "442", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "511", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "134", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "199", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "231", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "317", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "548", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "506", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "662", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "923", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "220", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "502", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "278", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "176", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "281", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "442", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "511", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "134", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "199", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "231", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "317", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "548", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "506", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "662", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "925", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "220", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "502", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "278", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "280", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.6K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "175", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "90", + "Likes": "280", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "443", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.1K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "511", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "134", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "199", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "231", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "317", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "548", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "505", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "662", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "925", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "220", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "502", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "278", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "91", + "Likes": "284", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "1.2K", + "Likes": "4.7K", + "Content": "No matter what the Obama judge says, illegal immigrants don\u2019t have the right to own a firearm.\nForeign nationals who are in our country illegally are not Americans. Duh." + }, + { + "Retweets": "23", + "Likes": "175", + "Content": "The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies.\nI\u2019ll keep working to get Louisianians the help they need when disaster strikes." + }, + { + "Retweets": "1.2K", + "Likes": "7.3K", + "Content": "Louisianians fall down 7 times and get up 8\u2014even when floods come on the heels of hurricanes. \nI saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro." + }, + { + "Retweets": "91", + "Likes": "284", + "Content": "The Biden admin is again weaponizing the tax code against American energy producers.\nThe president\u2019s plan would raise energy prices for Louisiana families even higher." + }, + { + "Retweets": "93", + "Likes": "444", + "Content": "For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain." + }, + { + "Retweets": "5.2K", + "Likes": "14K", + "Content": "Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why.\nDem witness: Carbon dioxide is \"a huge part of our atmosphere.\"\nMe: \"It\u2019s actually a very small part of our atmosphere.\" (0.035%)\nDem witness: \"Well, okay. But, yeah. I don\u2019t know.\"" + }, + { + "Retweets": "512", + "Likes": "1.3K", + "Content": "Democrats' witnesses support abortion up until the moment a child is born." + }, + { + "Retweets": "16", + "Likes": "135", + "Content": "Many Louisianians are still recovering from Hurricane Ida\u2019s damage. \nThis $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital\u2019s continued recovery." + }, + { + "Retweets": "32", + "Likes": "200", + "Content": "Small businesses create good jobs. Big Biden government shouldn\u2019t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them." + }, + { + "Retweets": "1K", + "Likes": "4K", + "Content": "Biden judge: \u201cAssault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.\u201d\nThe same Biden judge: \u201cI am not a gun expert.\u201d" + }, + { + "Retweets": "449", + "Likes": "2.2K", + "Content": "Razor wire won't hurt you unless you try to go over it or through it.\nSo I've never understood politically why Pres. Biden wants to oppose barriers at the southern border\u2014other than the fact that he really does believe in open borders." + }, + { + "Retweets": "1.5K", + "Likes": "6.2K", + "Content": "Some of my Democratic colleagues call folks who are in our country illegally \u201cundocumented Americans.\u201d\nThey're not undocumented Americans.\nThey're foreign nationals, and they're in our country illegally." + }, + { + "Retweets": "25", + "Likes": "230", + "Content": "Last year\u2019s drought hammered Louisiana\u2019s crawfish producers. \n \nI joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need." + }, + { + "Retweets": "9", + "Likes": "126", + "Content": "Louisiana\u2019s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. \nHere\u2019s one thing I\u2019m doing to make that happen:" + }, + { + "Retweets": "83", + "Likes": "318", + "Content": "The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms." + }, + { + "Retweets": "133", + "Likes": "549", + "Content": "Real wages just can\u2019t keep up with #Bidenflation.\nSo, hardworking Louisianians feel like they\u2019re running a race they can\u2019t win." + }, + { + "Retweets": "270", + "Likes": "1.2K", + "Content": "It\u2019s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. \nSo why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?" + }, + { + "Retweets": "40", + "Likes": "505", + "Content": "Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!" + }, + { + "Retweets": "798", + "Likes": "3.2K", + "Content": "Sometimes I think that the Biden White House would lower the average IQ of an entire city.\nYou can't borrow and spend the kind of money that Pres. Biden has without causing inflation.\nThis is basic ECON 101." + }, + { + "Retweets": "333", + "Likes": "1.3K", + "Content": "Why are energy costs up almost 35% under Pres. Biden?\nHe\u2019s spent 3 years bowing to neo-socialists who think America has no right to be energy independent." + }, + { + "Retweets": "150", + "Likes": "663", + "Content": "TikTok hasn\u2019t proven that the Communist Party of China doesn't have access to our data." + }, + { + "Retweets": "123", + "Likes": "546", + "Content": "Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can\u2019t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4\u2026" + }, + { + "Retweets": "206", + "Likes": "1K", + "Content": "Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't.\nThe Laken Riley Act would get criminal aliens out of our country before they victimize more Americans." + }, + { + "Retweets": "12", + "Likes": "115", + "Content": "Hurricane Ida left many in southeast Louisiana without a safe place to work.\nI\u2019m grateful this $1.6M will help cover the costs of temporary offices in Houma." + }, + { + "Retweets": "15", + "Likes": "99", + "Content": "When waterways overflow, Louisianians\u2019 homes and businesses are at risk of serious damage. \nI\u2019m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish." + }, + { + "Retweets": "50", + "Likes": "223", + "Content": "The Biden admin wants to limit Americans\u2019 freedom to get affordable, short-term health insurance plans that fit their needs.\nMy Patients Choice Act would make sure bureaucrats can\u2019t force Louisianians to pay more for insurance through Obamacare." + }, + { + "Retweets": "133", + "Likes": "529", + "Content": "#Bidenflation is literally eating Louisianians out of house and home." + }, + { + "Retweets": "696", + "Likes": "3.1K", + "Content": "The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial." + }, + { + "Retweets": "307", + "Likes": "925", + "Content": "Louisiana families don\u2019t have an extra $867 to burn every month.\nBut that\u2019s what #Bidenflation now costs them." + }, + { + "Retweets": "48", + "Likes": "221", + "Content": "Left-of-Lenin wokers can\u2019t wake up to reality fast enough." + }, + { + "Retweets": "1.7K", + "Likes": "6.2K", + "Content": "The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children.\nOther countries are proving themselves wiser than America." + }, + { + "Retweets": "87", + "Likes": "533", + "Content": "Unelected bureaucrats shouldn\u2019t be able to strip veterans of their Second Amendment rights unilaterally.\nBecause my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom." + }, + { + "Retweets": "218", + "Likes": "1.2K", + "Content": "The majority of Americans support building the WALL.\nMeanwhile, the Biden admin remains addicted to its open border." + }, + { + "Retweets": "323", + "Likes": "1.1K", + "Content": "Any fair-minded American knows that Pres. Biden\u2019s guiding principle has been, \u201cLet's do the dumbest thing possible that won't work.\u201d\n\nAnd it\u2019s now costing Louisiana families $9,912 every year." + }, + { + "Retweets": "1.7K", + "Likes": "6.7K", + "Content": "If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent." + }, + { + "Retweets": "351", + "Likes": "1.3K", + "Content": "Pres. Biden\u2019s pretty words can\u2019t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "25", + "Likes": "175", + "Content": "4/5 Pres. Biden seems to have more respect for the \u2018rights\u2019 of illegal immigrants than for those of loving parents and of unborn children." + }, + { + "Retweets": "18", + "Likes": "164", + "Content": "5/5 The president\u2019s policies fail because his priorities are backwards.\n\nInsanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course." + }, + { + "Retweets": "20", + "Likes": "152", + "Content": "2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet." + }, + { + "Retweets": "22", + "Likes": "147", + "Content": "3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it.\n\nHis admin let the border wall languish and paroled MILLIONS of aliens into the country illegally." + }, + { + "Retweets": "156", + "Likes": "792", + "Content": "1/5 Tonight, Louisianians will be thinking, \u2018Nice try, President Biden\u2019 because they know that he\u2019s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime." + }, + { + "Retweets": "2.7K", + "Likes": "11K", + "Content": "The Biden admin has been breathtakingly awful.#SOTU" + }, + { + "Retweets": "501", + "Likes": "2.8K", + "Content": "Any fair-minded person can see that the House\u2019s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial." + }, + { + "Retweets": "44", + "Likes": "277", + "Content": "Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers\u2019 businesses.\n\nMy CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables." + }, + { + "Retweets": "614", + "Likes": "3.5K", + "Content": "Kids change their minds. That\u2019s why God gave them parents." + }, + { + "Retweets": "2K", + "Likes": "7.2K", + "Content": "No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she\u2019s fat.\n\nBut gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them\u2014all in the quest to \u201caffirm\u201d gender confusion." + }, + { + "Retweets": "136", + "Likes": "335", + "Content": "The SEC\u2019s CAT could put the personal data of 158M Americans at risk.\n \nThat\u2019s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT\u2019s privacy risks." + } + ], + "David Perdue": [ + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "144", + "Likes": "320", + "Content": "Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families." + }, + { + "Retweets": "117", + "Likes": "587", + "Content": "The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!" + }, + { + "Retweets": "19", + "Likes": "98", + "Content": "Up next on !" + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "8", + "Likes": "47", + "Content": "Joining and live on Fox News around 9:30 AM ET. Hope you\u2019ll tune in!" + }, + { + "Retweets": "226", + "Likes": "748", + "Content": "The polls are OPEN! \nI\u2019d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud." + }, + { + "Retweets": "80", + "Likes": "335", + "Content": "Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. \nPlease make a plan to vote tomorrow if you haven't already!" + }, + { + "Retweets": "80", + "Likes": "206", + "Content": "Abrams doesn\u2019t care about Georgia. She wants to live in the White House. It\u2019s up to us to make sure that NEVER happens." + }, + { + "Retweets": "163", + "Likes": "539", + "Content": "Join us TONIGHT for a tele-rally with President Donald J. Trump!" + }, + { + "Retweets": "172", + "Likes": "458", + "Content": "President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!" + }, + { + "Retweets": "55", + "Likes": "133", + "Content": "Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us.\nGet out and vote on Tuesday, May 24th if you haven\u2019t already!" + }, + { + "Retweets": "48", + "Likes": "178", + "Content": "Great to be with Bikers for Trump on a beautiful night in Plainville!" + }, + { + "Retweets": "51", + "Likes": "145", + "Content": "Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th." + }, + { + "Retweets": "201", + "Likes": "562", + "Content": "Thank you, Mr. President! We\u2019re pushing for a big WIN on Tuesday!" + }, + { + "Retweets": "50", + "Likes": "163", + "Content": "Great to have my friend with us on the campaign trail in Savannah! \nSarah is an America First warrior, and I\u2019m proud to have her support and endorsement.\nGet out and vote, Georgia! Together, we will take back our state and country." + }, + { + "Retweets": "24", + "Likes": "86", + "Content": "Started the morning with a press conference in Columbus. Next stop: Macon!" + }, + { + "Retweets": "31", + "Likes": "103", + "Content": "Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!" + }, + { + "Retweets": "462", + "Likes": "796", + "Content": "Couldn\u2019t pass up the hot sign between campaign stops!" + }, + { + "Retweets": "87", + "Likes": "249", + "Content": "Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th." + }, + { + "Retweets": "70", + "Likes": "203", + "Content": "Proud to have \u2019s endorsement and looking forward to having her join us in Savannah on Friday!" + }, + { + "Retweets": "18", + "Likes": "71", + "Content": "Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory." + }, + { + "Retweets": "16", + "Likes": "74", + "Content": "Enjoyed being in Madison with the Morgan County GOP tonight! \nThe primary election is just ONE WEEK away. Make a plan to vote if you haven\u2019t already!" + }, + { + "Retweets": "21", + "Likes": "84", + "Content": "Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!" + }, + { + "Retweets": "27", + "Likes": "58", + "Content": "Great to be with the Barrow County GOP last night.\nMake a plan to vote if you haven\u2019t already! Find your early voting location at http://voteperdue.com." + }, + { + "Retweets": "63", + "Likes": "156", + "Content": "Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! \nWhen I\u2019m Governor, we will enforce the law and deport criminal illegals." + }, + { + "Retweets": "57", + "Likes": "171", + "Content": "We need a Governor who will stand up and FIGHT!" + }, + { + "Retweets": "18", + "Likes": "99", + "Content": "Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!" + }, + { + "Retweets": "55", + "Likes": "260", + "Content": "Proud to have the support and endorsement of Bikers for Trump!" + }, + { + "Retweets": "39", + "Likes": "74", + "Content": "Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. \nShelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that\u2019s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html\u2026" + }, + { + "Retweets": "21", + "Likes": "45", + "Content": "We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros." + }, + { + "Retweets": "28", + "Likes": "97", + "Content": "Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!" + }, + { + "Retweets": "39", + "Likes": "82", + "Content": "Threatening justices, vandalizing churches \u2014 this behavior is unacceptable and has to stop now.\nAs Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. \nIntimidation and harassment will not be tolerated." + }, + { + "Retweets": "67", + "Likes": "240", + "Content": "Head to http://VotePerdue.com to find your polling location.\nDon\u2019t wait until Election Day. Go ahead and vote early!" + }, + { + "Retweets": "246", + "Likes": "893", + "Content": "If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia.\nI've called on Brian Kemp to commit to doing the same.\nPeople deserve to know where their Governor stands on this issue." + }, + { + "Retweets": "24", + "Likes": "125", + "Content": "Great crowd at our meet and greet in Norcross this weekend!" + }, + { + "Retweets": "13", + "Likes": "131", + "Content": "Wishing a Happy Mother\u2019s Day to all moms, especially my beautiful wife Bonnie." + }, + { + "Retweets": "39", + "Likes": "158", + "Content": "Great morning with the Fulton County GOP. Thank you for having me!" + }, + { + "Retweets": "37", + "Likes": "122", + "Content": "Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections." + }, + { + "Retweets": "6", + "Likes": "63", + "Content": "Joining live on Fox News around 9:25 PM. Tune in if you can!" + }, + { + "Retweets": "9", + "Likes": "59", + "Content": "Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. \n\nWe\u2019re encouraging everybody across the state to get out and VOTE!" + }, + { + "Retweets": "24", + "Likes": "103", + "Content": "Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!" + }, + { + "Retweets": "18", + "Likes": "69", + "Content": "Matthew 18:20 tells us, \u201cFor where two or three gather in my name, there am I with them.\u201d\n\nToday & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer" + }, + { + "Retweets": "31", + "Likes": "127", + "Content": "Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!" + }, + { + "Retweets": "32", + "Likes": "108", + "Content": "I was extremely disappointed by the Governor\u2019s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. \n\nGeorgia voters deserve to know where their Governor stands on this issue. (1/2)" + }, + { + "Retweets": "31", + "Likes": "91", + "Content": "I\u2019m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. \n\nYou are either going to fight for the sanctity of life or you\u2019re not. (2/2)" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "323", + "Likes": "556", + "Content": "In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts.\n \nToday we delivered:\n\u2192 More PPP for small biz\n\u2192 2nd round of relief checks\n\u2192 Funding for hospitals & schools\n\u2192 Efficient vaccine distribution\n\u2192 Support for farmers" + }, + { + "Retweets": "186", + "Likes": "316", + "Content": "Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed.\n \nChuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago.\n \nStatement w/ :" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "32", + "Likes": "164", + "Content": "GREAT NEWS: Two #COVID19 vaccines are now authorized for use!" + }, + { + "Retweets": "21", + "Likes": "43", + "Content": "Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area." + }, + { + "Retweets": "16", + "Likes": "57", + "Content": "Great opportunity for high school students interested in #STEM to work with researchers." + }, + { + "Retweets": "42", + "Likes": "234", + "Content": "The first shipments of #COVID19 vaccine have arrived in Georgia!" + }, + { + "Retweets": "105", + "Likes": "402", + "Content": "Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year.\nThis is nothing short of extraordinary and a testament to the power of American ingenuity." + }, + { + "Retweets": "21", + "Likes": "87", + "Content": "As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials.\nWhile we are one step closer to getting back to normal, our work is not done and we must all remain vigilant." + }, + { + "Retweets": "55", + "Likes": "173", + "Content": "A strong America requires a strong military. This defense bill:\n\u2192 Fully funds our military\n\u2192 Gives troops significant pay raise\n\u2192 Supports military families\n\u2192 Strengthens cybersecurity\n\u2192 Holds China accountable" + }, + { + "Retweets": "75", + "Likes": "98", + "Content": "Statement from & me on passage of the #NDAA:" + }, + { + "Retweets": "35", + "Likes": "259", + "Content": "Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world." + }, + { + "Retweets": "17", + "Likes": "56", + "Content": "Thanks to \u2019s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide." + }, + { + "Retweets": "41", + "Likes": "178", + "Content": "We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay" + }, + { + "Retweets": "148", + "Likes": "411", + "Content": "When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now." + }, + { + "Retweets": "19", + "Likes": "79", + "Content": "While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let\u2019s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago." + }, + { + "Retweets": "35", + "Likes": "69", + "Content": "It\u2019s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality.\n \nFull statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians\u2026" + }, + { + "Retweets": "154", + "Likes": "491", + "Content": "Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !" + }, + { + "Retweets": "189", + "Likes": "1.6K", + "Content": "Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at ." + }, + { + "Retweets": "80", + "Likes": "280", + "Content": "The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses." + }, + { + "Retweets": "20", + "Likes": "65", + "Content": "Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery\u2026" + }, + { + "Retweets": "37", + "Likes": "68", + "Content": ". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record." + }, + { + "Retweets": "62", + "Likes": "152", + "Content": "Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday" + }, + { + "Retweets": "44", + "Likes": "173", + "Content": "This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country." + }, + { + "Retweets": "52", + "Likes": "446", + "Content": "Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving." + }, + { + "Retweets": "18", + "Likes": "36", + "Content": "On Monday, 11/30, will host a virtual Q&A for #veterans and their families. \nRSVP on Facebook:" + }, + { + "Retweets": "42", + "Likes": "131", + "Content": "Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America\u2019s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing\u2026" + }, + { + "Retweets": "107", + "Likes": "251", + "Content": "When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus." + }, + { + "Retweets": "47", + "Likes": "89", + "Content": "Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy." + }, + { + "Retweets": "49", + "Likes": "121", + "Content": "Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible." + }, + { + "Retweets": "39", + "Likes": "104", + "Content": "Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for ." + }, + { + "Retweets": "38", + "Likes": "85", + "Content": "Georgia veterans: VA\u2019s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 \u2013 6:00 p.m.\n \nCall 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf\u2026" + }, + { + "Retweets": "80", + "Likes": "177", + "Content": "#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War." + }, + { + "Retweets": "145", + "Likes": "591", + "Content": "America remains a nation worthy of envy because of our veterans and their families." + }, + { + "Retweets": "3.1K", + "Likes": "18K", + "Content": "The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html\u2026" + }, + { + "Retweets": "64", + "Likes": "324", + "Content": "Georgia\u2019s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. " + }, + { + "Retweets": "42", + "Likes": "149", + "Content": "Georgia\u2019s business-friendly climate continues to attract new jobs and investments, even during #COVID19." + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "144", + "Likes": "320", + "Content": "Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families." + }, + { + "Retweets": "117", + "Likes": "587", + "Content": "The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!" + }, + { + "Retweets": "19", + "Likes": "98", + "Content": "Up next on !" + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "8", + "Likes": "47", + "Content": "Joining and live on Fox News around 9:30 AM ET. Hope you\u2019ll tune in!" + }, + { + "Retweets": "226", + "Likes": "748", + "Content": "The polls are OPEN! \nI\u2019d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud." + }, + { + "Retweets": "80", + "Likes": "335", + "Content": "Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. \nPlease make a plan to vote tomorrow if you haven't already!" + }, + { + "Retweets": "80", + "Likes": "206", + "Content": "Abrams doesn\u2019t care about Georgia. She wants to live in the White House. It\u2019s up to us to make sure that NEVER happens." + }, + { + "Retweets": "163", + "Likes": "539", + "Content": "Join us TONIGHT for a tele-rally with President Donald J. Trump!" + }, + { + "Retweets": "172", + "Likes": "458", + "Content": "President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!" + }, + { + "Retweets": "55", + "Likes": "133", + "Content": "Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us.\nGet out and vote on Tuesday, May 24th if you haven\u2019t already!" + }, + { + "Retweets": "48", + "Likes": "178", + "Content": "Great to be with Bikers for Trump on a beautiful night in Plainville!" + }, + { + "Retweets": "51", + "Likes": "145", + "Content": "Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th." + }, + { + "Retweets": "201", + "Likes": "562", + "Content": "Thank you, Mr. President! We\u2019re pushing for a big WIN on Tuesday!" + }, + { + "Retweets": "50", + "Likes": "163", + "Content": "Great to have my friend with us on the campaign trail in Savannah! \nSarah is an America First warrior, and I\u2019m proud to have her support and endorsement.\nGet out and vote, Georgia! Together, we will take back our state and country." + }, + { + "Retweets": "24", + "Likes": "86", + "Content": "Started the morning with a press conference in Columbus. Next stop: Macon!" + }, + { + "Retweets": "31", + "Likes": "103", + "Content": "Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!" + }, + { + "Retweets": "462", + "Likes": "796", + "Content": "Couldn\u2019t pass up the hot sign between campaign stops!" + }, + { + "Retweets": "87", + "Likes": "249", + "Content": "Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th." + }, + { + "Retweets": "70", + "Likes": "203", + "Content": "Proud to have \u2019s endorsement and looking forward to having her join us in Savannah on Friday!" + }, + { + "Retweets": "18", + "Likes": "71", + "Content": "Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory." + }, + { + "Retweets": "16", + "Likes": "74", + "Content": "Enjoyed being in Madison with the Morgan County GOP tonight! \nThe primary election is just ONE WEEK away. Make a plan to vote if you haven\u2019t already!" + }, + { + "Retweets": "21", + "Likes": "84", + "Content": "Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!" + }, + { + "Retweets": "27", + "Likes": "58", + "Content": "Great to be with the Barrow County GOP last night.\nMake a plan to vote if you haven\u2019t already! Find your early voting location at http://voteperdue.com." + }, + { + "Retweets": "63", + "Likes": "156", + "Content": "Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! \nWhen I\u2019m Governor, we will enforce the law and deport criminal illegals." + }, + { + "Retweets": "57", + "Likes": "171", + "Content": "We need a Governor who will stand up and FIGHT!" + }, + { + "Retweets": "18", + "Likes": "99", + "Content": "Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!" + }, + { + "Retweets": "55", + "Likes": "260", + "Content": "Proud to have the support and endorsement of Bikers for Trump!" + }, + { + "Retweets": "39", + "Likes": "74", + "Content": "Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. \nShelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that\u2019s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html\u2026" + }, + { + "Retweets": "21", + "Likes": "45", + "Content": "We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros." + }, + { + "Retweets": "28", + "Likes": "97", + "Content": "Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!" + }, + { + "Retweets": "39", + "Likes": "82", + "Content": "Threatening justices, vandalizing churches \u2014 this behavior is unacceptable and has to stop now.\nAs Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. \nIntimidation and harassment will not be tolerated." + }, + { + "Retweets": "67", + "Likes": "240", + "Content": "Head to http://VotePerdue.com to find your polling location.\nDon\u2019t wait until Election Day. Go ahead and vote early!" + }, + { + "Retweets": "246", + "Likes": "893", + "Content": "If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia.\nI've called on Brian Kemp to commit to doing the same.\nPeople deserve to know where their Governor stands on this issue." + }, + { + "Retweets": "24", + "Likes": "125", + "Content": "Great crowd at our meet and greet in Norcross this weekend!" + }, + { + "Retweets": "13", + "Likes": "131", + "Content": "Wishing a Happy Mother\u2019s Day to all moms, especially my beautiful wife Bonnie." + }, + { + "Retweets": "39", + "Likes": "158", + "Content": "Great morning with the Fulton County GOP. Thank you for having me!" + }, + { + "Retweets": "37", + "Likes": "122", + "Content": "Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections." + }, + { + "Retweets": "6", + "Likes": "63", + "Content": "Joining live on Fox News around 9:25 PM. Tune in if you can!" + }, + { + "Retweets": "9", + "Likes": "59", + "Content": "Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. \n\nWe\u2019re encouraging everybody across the state to get out and VOTE!" + }, + { + "Retweets": "24", + "Likes": "103", + "Content": "Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!" + }, + { + "Retweets": "18", + "Likes": "69", + "Content": "Matthew 18:20 tells us, \u201cFor where two or three gather in my name, there am I with them.\u201d\n\nToday & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer" + }, + { + "Retweets": "31", + "Likes": "127", + "Content": "Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!" + }, + { + "Retweets": "32", + "Likes": "108", + "Content": "I was extremely disappointed by the Governor\u2019s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. \n\nGeorgia voters deserve to know where their Governor stands on this issue. (1/2)" + }, + { + "Retweets": "31", + "Likes": "91", + "Content": "I\u2019m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. \n\nYou are either going to fight for the sanctity of life or you\u2019re not. (2/2)" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "323", + "Likes": "556", + "Content": "In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts.\n \nToday we delivered:\n\u2192 More PPP for small biz\n\u2192 2nd round of relief checks\n\u2192 Funding for hospitals & schools\n\u2192 Efficient vaccine distribution\n\u2192 Support for farmers" + }, + { + "Retweets": "186", + "Likes": "316", + "Content": "Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed.\n \nChuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago.\n \nStatement w/ :" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "32", + "Likes": "164", + "Content": "GREAT NEWS: Two #COVID19 vaccines are now authorized for use!" + }, + { + "Retweets": "21", + "Likes": "43", + "Content": "Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area." + }, + { + "Retweets": "16", + "Likes": "57", + "Content": "Great opportunity for high school students interested in #STEM to work with researchers." + }, + { + "Retweets": "42", + "Likes": "234", + "Content": "The first shipments of #COVID19 vaccine have arrived in Georgia!" + }, + { + "Retweets": "105", + "Likes": "402", + "Content": "Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year.\nThis is nothing short of extraordinary and a testament to the power of American ingenuity." + }, + { + "Retweets": "21", + "Likes": "87", + "Content": "As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials.\nWhile we are one step closer to getting back to normal, our work is not done and we must all remain vigilant." + }, + { + "Retweets": "55", + "Likes": "173", + "Content": "A strong America requires a strong military. This defense bill:\n\u2192 Fully funds our military\n\u2192 Gives troops significant pay raise\n\u2192 Supports military families\n\u2192 Strengthens cybersecurity\n\u2192 Holds China accountable" + }, + { + "Retweets": "75", + "Likes": "98", + "Content": "Statement from & me on passage of the #NDAA:" + }, + { + "Retweets": "35", + "Likes": "259", + "Content": "Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world." + }, + { + "Retweets": "17", + "Likes": "56", + "Content": "Thanks to \u2019s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide." + }, + { + "Retweets": "41", + "Likes": "178", + "Content": "We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay" + }, + { + "Retweets": "148", + "Likes": "411", + "Content": "When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now." + }, + { + "Retweets": "19", + "Likes": "79", + "Content": "While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let\u2019s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago." + }, + { + "Retweets": "35", + "Likes": "69", + "Content": "It\u2019s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality.\n \nFull statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians\u2026" + }, + { + "Retweets": "154", + "Likes": "491", + "Content": "Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !" + }, + { + "Retweets": "189", + "Likes": "1.6K", + "Content": "Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at ." + }, + { + "Retweets": "80", + "Likes": "280", + "Content": "The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses." + }, + { + "Retweets": "20", + "Likes": "65", + "Content": "Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery\u2026" + }, + { + "Retweets": "37", + "Likes": "68", + "Content": ". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record." + }, + { + "Retweets": "62", + "Likes": "152", + "Content": "Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday" + }, + { + "Retweets": "44", + "Likes": "173", + "Content": "This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country." + }, + { + "Retweets": "52", + "Likes": "446", + "Content": "Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving." + }, + { + "Retweets": "18", + "Likes": "36", + "Content": "On Monday, 11/30, will host a virtual Q&A for #veterans and their families. \nRSVP on Facebook:" + }, + { + "Retweets": "42", + "Likes": "131", + "Content": "Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America\u2019s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing\u2026" + }, + { + "Retweets": "107", + "Likes": "251", + "Content": "When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus." + }, + { + "Retweets": "47", + "Likes": "89", + "Content": "Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy." + }, + { + "Retweets": "49", + "Likes": "121", + "Content": "Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible." + }, + { + "Retweets": "39", + "Likes": "104", + "Content": "Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for ." + }, + { + "Retweets": "38", + "Likes": "85", + "Content": "Georgia veterans: VA\u2019s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 \u2013 6:00 p.m.\n \nCall 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf\u2026" + }, + { + "Retweets": "80", + "Likes": "177", + "Content": "#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War." + }, + { + "Retweets": "145", + "Likes": "591", + "Content": "America remains a nation worthy of envy because of our veterans and their families." + }, + { + "Retweets": "3.1K", + "Likes": "18K", + "Content": "The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html\u2026" + }, + { + "Retweets": "64", + "Likes": "324", + "Content": "Georgia\u2019s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. " + }, + { + "Retweets": "42", + "Likes": "149", + "Content": "Georgia\u2019s business-friendly climate continues to attract new jobs and investments, even during #COVID19." + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "144", + "Likes": "320", + "Content": "Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families." + }, + { + "Retweets": "117", + "Likes": "587", + "Content": "The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!" + }, + { + "Retweets": "19", + "Likes": "99", + "Content": "Up next on !" + }, + { + "Retweets": "31", + "Likes": "110", + "Content": "This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years.\nAs we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer." + }, + { + "Retweets": "8", + "Likes": "47", + "Content": "Joining and live on Fox News around 9:30 AM ET. Hope you\u2019ll tune in!" + }, + { + "Retweets": "226", + "Likes": "748", + "Content": "The polls are OPEN! \nI\u2019d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud." + }, + { + "Retweets": "80", + "Likes": "335", + "Content": "Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. \nPlease make a plan to vote tomorrow if you haven't already!" + }, + { + "Retweets": "80", + "Likes": "206", + "Content": "Abrams doesn\u2019t care about Georgia. She wants to live in the White House. It\u2019s up to us to make sure that NEVER happens." + }, + { + "Retweets": "163", + "Likes": "539", + "Content": "Join us TONIGHT for a tele-rally with President Donald J. Trump!" + }, + { + "Retweets": "172", + "Likes": "458", + "Content": "President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!" + }, + { + "Retweets": "55", + "Likes": "133", + "Content": "Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us.\nGet out and vote on Tuesday, May 24th if you haven\u2019t already!" + }, + { + "Retweets": "48", + "Likes": "178", + "Content": "Great to be with Bikers for Trump on a beautiful night in Plainville!" + }, + { + "Retweets": "51", + "Likes": "146", + "Content": "Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th." + }, + { + "Retweets": "201", + "Likes": "562", + "Content": "Thank you, Mr. President! We\u2019re pushing for a big WIN on Tuesday!" + }, + { + "Retweets": "50", + "Likes": "163", + "Content": "Great to have my friend with us on the campaign trail in Savannah! \nSarah is an America First warrior, and I\u2019m proud to have her support and endorsement.\nGet out and vote, Georgia! Together, we will take back our state and country." + }, + { + "Retweets": "24", + "Likes": "87", + "Content": "Started the morning with a press conference in Columbus. Next stop: Macon!" + }, + { + "Retweets": "31", + "Likes": "103", + "Content": "Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!" + }, + { + "Retweets": "462", + "Likes": "796", + "Content": "Couldn\u2019t pass up the hot sign between campaign stops!" + }, + { + "Retweets": "87", + "Likes": "249", + "Content": "Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th." + }, + { + "Retweets": "70", + "Likes": "203", + "Content": "Proud to have \u2019s endorsement and looking forward to having her join us in Savannah on Friday!" + }, + { + "Retweets": "18", + "Likes": "71", + "Content": "Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory." + }, + { + "Retweets": "16", + "Likes": "74", + "Content": "Enjoyed being in Madison with the Morgan County GOP tonight! \nThe primary election is just ONE WEEK away. Make a plan to vote if you haven\u2019t already!" + }, + { + "Retweets": "21", + "Likes": "84", + "Content": "Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!" + }, + { + "Retweets": "27", + "Likes": "58", + "Content": "Great to be with the Barrow County GOP last night.\nMake a plan to vote if you haven\u2019t already! Find your early voting location at http://voteperdue.com." + }, + { + "Retweets": "63", + "Likes": "156", + "Content": "Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! \nWhen I\u2019m Governor, we will enforce the law and deport criminal illegals." + }, + { + "Retweets": "57", + "Likes": "171", + "Content": "We need a Governor who will stand up and FIGHT!" + }, + { + "Retweets": "18", + "Likes": "99", + "Content": "Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!" + }, + { + "Retweets": "55", + "Likes": "260", + "Content": "Proud to have the support and endorsement of Bikers for Trump!" + }, + { + "Retweets": "39", + "Likes": "74", + "Content": "Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. \nShelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that\u2019s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html\u2026" + }, + { + "Retweets": "21", + "Likes": "45", + "Content": "We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros." + }, + { + "Retweets": "28", + "Likes": "98", + "Content": "Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!" + }, + { + "Retweets": "39", + "Likes": "82", + "Content": "Threatening justices, vandalizing churches \u2014 this behavior is unacceptable and has to stop now.\nAs Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. \nIntimidation and harassment will not be tolerated." + }, + { + "Retweets": "67", + "Likes": "240", + "Content": "Head to http://VotePerdue.com to find your polling location.\nDon\u2019t wait until Election Day. Go ahead and vote early!" + }, + { + "Retweets": "246", + "Likes": "893", + "Content": "If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia.\nI've called on Brian Kemp to commit to doing the same.\nPeople deserve to know where their Governor stands on this issue." + }, + { + "Retweets": "24", + "Likes": "125", + "Content": "Great crowd at our meet and greet in Norcross this weekend!" + }, + { + "Retweets": "13", + "Likes": "131", + "Content": "Wishing a Happy Mother\u2019s Day to all moms, especially my beautiful wife Bonnie." + }, + { + "Retweets": "39", + "Likes": "158", + "Content": "Great morning with the Fulton County GOP. Thank you for having me!" + }, + { + "Retweets": "37", + "Likes": "122", + "Content": "Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections." + }, + { + "Retweets": "6", + "Likes": "63", + "Content": "Joining live on Fox News around 9:25 PM. Tune in if you can!" + }, + { + "Retweets": "9", + "Likes": "60", + "Content": "Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. \n\nWe\u2019re encouraging everybody across the state to get out and VOTE!" + }, + { + "Retweets": "24", + "Likes": "103", + "Content": "Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!" + }, + { + "Retweets": "18", + "Likes": "69", + "Content": "Matthew 18:20 tells us, \u201cFor where two or three gather in my name, there am I with them.\u201d\n\nToday & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer" + }, + { + "Retweets": "31", + "Likes": "127", + "Content": "Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!" + }, + { + "Retweets": "32", + "Likes": "108", + "Content": "I was extremely disappointed by the Governor\u2019s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. \n\nGeorgia voters deserve to know where their Governor stands on this issue. (1/2)" + }, + { + "Retweets": "31", + "Likes": "91", + "Content": "I\u2019m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. \n\nYou are either going to fight for the sanctity of life or you\u2019re not. (2/2)" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "323", + "Likes": "556", + "Content": "In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts.\n \nToday we delivered:\n\u2192 More PPP for small biz\n\u2192 2nd round of relief checks\n\u2192 Funding for hospitals & schools\n\u2192 Efficient vaccine distribution\n\u2192 Support for farmers" + }, + { + "Retweets": "186", + "Likes": "316", + "Content": "Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed.\n \nChuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago.\n \nStatement w/ :" + }, + { + "Retweets": "325", + "Likes": "960", + "Content": "From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I\u2019ve been focused on getting results for ALL Georgians." + }, + { + "Retweets": "66", + "Likes": "482", + "Content": "Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year." + }, + { + "Retweets": "32", + "Likes": "164", + "Content": "GREAT NEWS: Two #COVID19 vaccines are now authorized for use!" + }, + { + "Retweets": "21", + "Likes": "43", + "Content": "Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area." + }, + { + "Retweets": "16", + "Likes": "57", + "Content": "Great opportunity for high school students interested in #STEM to work with researchers." + }, + { + "Retweets": "42", + "Likes": "234", + "Content": "The first shipments of #COVID19 vaccine have arrived in Georgia!" + }, + { + "Retweets": "105", + "Likes": "402", + "Content": "Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year.\nThis is nothing short of extraordinary and a testament to the power of American ingenuity." + }, + { + "Retweets": "21", + "Likes": "87", + "Content": "As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials.\nWhile we are one step closer to getting back to normal, our work is not done and we must all remain vigilant." + }, + { + "Retweets": "55", + "Likes": "173", + "Content": "A strong America requires a strong military. This defense bill:\n\u2192 Fully funds our military\n\u2192 Gives troops significant pay raise\n\u2192 Supports military families\n\u2192 Strengthens cybersecurity\n\u2192 Holds China accountable" + }, + { + "Retweets": "75", + "Likes": "98", + "Content": "Statement from & me on passage of the #NDAA:" + }, + { + "Retweets": "35", + "Likes": "259", + "Content": "Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world." + }, + { + "Retweets": "17", + "Likes": "56", + "Content": "Thanks to \u2019s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide." + }, + { + "Retweets": "41", + "Likes": "178", + "Content": "We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay" + }, + { + "Retweets": "148", + "Likes": "411", + "Content": "When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now." + }, + { + "Retweets": "19", + "Likes": "79", + "Content": "While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let\u2019s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago." + }, + { + "Retweets": "35", + "Likes": "69", + "Content": "It\u2019s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality.\n \nFull statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians\u2026" + }, + { + "Retweets": "154", + "Likes": "491", + "Content": "Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !" + }, + { + "Retweets": "189", + "Likes": "1.6K", + "Content": "Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at ." + }, + { + "Retweets": "80", + "Likes": "280", + "Content": "The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses." + }, + { + "Retweets": "20", + "Likes": "65", + "Content": "Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery\u2026" + }, + { + "Retweets": "37", + "Likes": "68", + "Content": ". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record." + }, + { + "Retweets": "62", + "Likes": "152", + "Content": "Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday" + }, + { + "Retweets": "44", + "Likes": "173", + "Content": "This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country." + }, + { + "Retweets": "52", + "Likes": "446", + "Content": "Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving." + }, + { + "Retweets": "18", + "Likes": "36", + "Content": "On Monday, 11/30, will host a virtual Q&A for #veterans and their families. \nRSVP on Facebook:" + }, + { + "Retweets": "42", + "Likes": "131", + "Content": "Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America\u2019s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing\u2026" + }, + { + "Retweets": "107", + "Likes": "251", + "Content": "When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus." + }, + { + "Retweets": "47", + "Likes": "89", + "Content": "Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy." + }, + { + "Retweets": "49", + "Likes": "121", + "Content": "Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible." + }, + { + "Retweets": "39", + "Likes": "104", + "Content": "Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for ." + }, + { + "Retweets": "38", + "Likes": "85", + "Content": "Georgia veterans: VA\u2019s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 \u2013 6:00 p.m.\n \nCall 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf\u2026" + }, + { + "Retweets": "80", + "Likes": "177", + "Content": "#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War." + }, + { + "Retweets": "145", + "Likes": "591", + "Content": "America remains a nation worthy of envy because of our veterans and their families." + }, + { + "Retweets": "3.1K", + "Likes": "18K", + "Content": "The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html\u2026" + }, + { + "Retweets": "64", + "Likes": "324", + "Content": "Georgia\u2019s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. " + }, + { + "Retweets": "42", + "Likes": "149", + "Content": "Georgia\u2019s business-friendly climate continues to attract new jobs and investments, even during #COVID19." + } + ], + "Chuck Grassley": [ + { + "Retweets": "9", + "Likes": "45", + "Content": "HAPPY Natl Women in Ag Day Iowa has over 50K female producers & added over 1K since 2017 That\u2019s gr8 news Women play an essential role in ag + I was proud 2 support Sen Ernst\u2019s bipart effort to recognize their achievements & success" + }, + { + "Retweets": "9", + "Likes": "46", + "Content": "HAPPY Natl Women in Ag Day Iowa has over 50K female producers & added over 1K since 2017 That\u2019s gr8 news Women play an essential role in ag + I was proud 2 support Sen Ernst\u2019s bipart effort to recognize their achievements & success" + } + ], + "Ben Sasse": [ + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "1", + "Likes": "49", + "Content": "Amazing, again (and again)" + }, + { + "Retweets": "11", + "Likes": "266", + "Content": " our exchange students. \nThree today have called their time in G\u2019ville\n\u201cthe best year of their lives\u201d" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "6", + "Likes": "153", + "Content": "Same." + }, + { + "Retweets": "5", + "Likes": "82", + "Content": "checks out\u2026" + }, + { + "Retweets": "5", + "Likes": "267", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "1", + "Likes": "42", + "Content": "Dude is special" + }, + { + "Retweets": "1", + "Likes": "50", + "Content": "Moly\u2026." + }, + { + "Retweets": "0", + "Likes": "30", + "Content": "Go Gators!" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "(This isn\u2019t the only reason)" + }, + { + "Retweets": "2", + "Likes": "52", + "Content": "12-5. #GatorsSweep" + }, + { + "Retweets": "5", + "Likes": "255", + "Content": " " + }, + { + "Retweets": "2", + "Likes": "21", + "Content": "At the tape\u2026we have a best baby\u2014>" + }, + { + "Retweets": "3", + "Likes": "70", + "Content": "Let\u2019s Gooooo!" + }, + { + "Retweets": "24", + "Likes": "249", + "Content": "#Merica" + }, + { + "Retweets": "16", + "Likes": "290", + "Content": "Am in a barbershop\u2026\nold dude customer: \u201cI\u2019m getting married on March 30.\u201d \nold dude barber: \u201cWhy?\u201d\ncustomer, earnestly trying to answer\u2026\nbarber, interrupting: \u201cDoes she have a boat?\u201d" + }, + { + "Retweets": "0", + "Likes": "34", + "Content": "(Note to self:\ngotta teach him about the leprosy stuff)" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester" + }, + { + "Retweets": "9", + "Likes": "177", + "Content": "one of my college daughters:\n\u201cIs Travis Kelce literally a golden retriever?\u201d" + }, + { + "Retweets": "2", + "Likes": "91", + "Content": "Bonus football!" + }, + { + "Retweets": "0", + "Likes": "86", + "Content": "(well played)" + }, + { + "Retweets": "6", + "Likes": "31", + "Content": "\u201c\u2026ravaging people's ingesting and causing many to defecate bodily\u201d??" + }, + { + "Retweets": "7", + "Likes": "60", + "Content": "\u2018Merican innovation is alive and well\n\u2014>" + }, + { + "Retweets": "0", + "Likes": "52", + "Content": "anyone hear him call glass?" + }, + { + "Retweets": "1", + "Likes": "21", + "Content": NaN + }, + { + "Retweets": "3", + "Likes": "49", + "Content": NaN + }, + { + "Retweets": "0", + "Likes": "13", + "Content": NaN + }, + { + "Retweets": "8", + "Likes": "110", + "Content": "Thanks for the ride,\n\u2066\u2069\nSpaceX launches UF/IFAS microbiology experiment to ISS today - News" + }, + { + "Retweets": "9", + "Likes": "106", + "Content": "Come to Florida, they said\u2026\nWoman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago \u2013 NBC 6" + }, + { + "Retweets": "0", + "Likes": "72", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "0", + "Likes": "24", + "Content": "there\u2019s more where that came from \u2014>" + }, + { + "Retweets": "7", + "Likes": "95", + "Content": "#FloridaMan rocks" + }, + { + "Retweets": "5", + "Likes": "216", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "5", + "Likes": "206", + "Content": "10-1 odds this is florida" + }, + { + "Retweets": "2", + "Likes": "44", + "Content": "Yes. \nThank you for the question, karen" + }, + { + "Retweets": "3", + "Likes": "77", + "Content": "six days with no football is wrong" + }, + { + "Retweets": "1", + "Likes": "19", + "Content": "that\u2019s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries\u2026)" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "1", + "Likes": "49", + "Content": "Amazing, again (and again)" + }, + { + "Retweets": "11", + "Likes": "266", + "Content": " our exchange students. \nThree today have called their time in G\u2019ville\n\u201cthe best year of their lives\u201d" + }, + { + "Retweets": "4", + "Likes": "101", + "Content": "a good night in Nashville" + }, + { + "Retweets": "6", + "Likes": "153", + "Content": "Same." + }, + { + "Retweets": "5", + "Likes": "82", + "Content": "checks out\u2026" + }, + { + "Retweets": "5", + "Likes": "267", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "1", + "Likes": "42", + "Content": "Dude is special" + }, + { + "Retweets": "1", + "Likes": "50", + "Content": "Moly\u2026." + }, + { + "Retweets": "0", + "Likes": "30", + "Content": "Go Gators!" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "(This isn\u2019t the only reason)" + }, + { + "Retweets": "2", + "Likes": "52", + "Content": "12-5. #GatorsSweep" + }, + { + "Retweets": "5", + "Likes": "255", + "Content": " " + }, + { + "Retweets": "2", + "Likes": "21", + "Content": "At the tape\u2026we have a best baby\u2014>" + }, + { + "Retweets": "3", + "Likes": "70", + "Content": "Let\u2019s Gooooo!" + }, + { + "Retweets": "24", + "Likes": "249", + "Content": "#Merica" + }, + { + "Retweets": "16", + "Likes": "290", + "Content": "Am in a barbershop\u2026\nold dude customer: \u201cI\u2019m getting married on March 30.\u201d \nold dude barber: \u201cWhy?\u201d\ncustomer, earnestly trying to answer\u2026\nbarber, interrupting: \u201cDoes she have a boat?\u201d" + }, + { + "Retweets": "0", + "Likes": "34", + "Content": "(Note to self:\ngotta teach him about the leprosy stuff)" + }, + { + "Retweets": "2", + "Likes": "23", + "Content": "$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester" + }, + { + "Retweets": "9", + "Likes": "177", + "Content": "one of my college daughters:\n\u201cIs Travis Kelce literally a golden retriever?\u201d" + }, + { + "Retweets": "2", + "Likes": "91", + "Content": "Bonus football!" + }, + { + "Retweets": "0", + "Likes": "86", + "Content": "(well played)" + }, + { + "Retweets": "6", + "Likes": "31", + "Content": "\u201c\u2026ravaging people's ingesting and causing many to defecate bodily\u201d??" + }, + { + "Retweets": "7", + "Likes": "60", + "Content": "\u2018Merican innovation is alive and well\n\u2014>" + }, + { + "Retweets": "0", + "Likes": "52", + "Content": "anyone hear him call glass?" + }, + { + "Retweets": "1", + "Likes": "21", + "Content": NaN + }, + { + "Retweets": "3", + "Likes": "49", + "Content": NaN + }, + { + "Retweets": "0", + "Likes": "13", + "Content": NaN + }, + { + "Retweets": "8", + "Likes": "110", + "Content": "Thanks for the ride,\n\u2066\u2069\nSpaceX launches UF/IFAS microbiology experiment to ISS today - News" + }, + { + "Retweets": "9", + "Likes": "106", + "Content": "Come to Florida, they said\u2026\nWoman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago \u2013 NBC 6" + }, + { + "Retweets": "0", + "Likes": "72", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "0", + "Likes": "24", + "Content": "there\u2019s more where that came from \u2014>" + }, + { + "Retweets": "7", + "Likes": "95", + "Content": "#FloridaMan rocks" + }, + { + "Retweets": "5", + "Likes": "216", + "Content": "#LoveYourPassion" + }, + { + "Retweets": "5", + "Likes": "206", + "Content": "10-1 odds this is florida" + }, + { + "Retweets": "2", + "Likes": "44", + "Content": "Yes. \nThank you for the question, karen" + }, + { + "Retweets": "3", + "Likes": "77", + "Content": "six days with no football is wrong" + }, + { + "Retweets": "1", + "Likes": "19", + "Content": "that\u2019s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries\u2026)" + } + ], + "Brian Schatz": [ + { + "Retweets": "580", + "Likes": "4.8K", + "Content": "One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity." + }, + { + "Retweets": "57", + "Likes": "330", + "Content": "1) Campaigns are about winning arguments, and our argument is that these last four years have been an improvement on the previous four.\n2) The more people think seriously about the choice, the better Biden performs. \n3) We should compare their records. It\u2019s fair and compelling." + }, + { + "Retweets": "580", + "Likes": "4.8K", + "Content": "One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity." + }, + { + "Retweets": "1.2K", + "Likes": "5.3K", + "Content": "Very easy to just say \u201cno we are not taking foreign money\u201d that\u2019s not at all what she said." + }, + { + "Retweets": "435", + "Likes": "1.2K", + "Content": "If you want to help Democrats win, memorize this list, and repeat it everywhere. It is fair and true because these are their actual policy positions, and it is politically effective because you could literally not find less popular positions. Pass it on." + }, + { + "Retweets": "157", + "Likes": "565", + "Content": "Hey this race is gonna be expensive https://secure.actblue.com/donate/sbhomepage\u2026" + }, + { + "Retweets": "328", + "Likes": "2.2K", + "Content": "Jewish families all across America are arguing about Israel policy. But one thing we can all agree upon is that Donald Trump is not the arbiter of anyone\u2019s Jewishness." + }, + { + "Retweets": "528", + "Likes": "2.8K", + "Content": "Democrats have a lot of work to do in shoring up our base and reaching independents and making the case for Biden against Trump. But victory also depends on patriots like Kinzinger and Cheney and Pence and Romney being joined by millions of voters. All hands on deck." + }, + { + "Retweets": "3K", + "Likes": "11K", + "Content": "Headline writers: Don\u2019t outsmart yourself. Just do \u201cTrump Promises Bloodbath if he Doesn\u2019t Win Election.\u201d" + }, + { + "Retweets": "5.2K", + "Likes": "20K", + "Content": "Promising a bloodbath is disqualifying. I don\u2019t care what you think about other issues. This guy is promising a bloodbath. He needs to lose. Stand up for America. Please." + }, + { + "Retweets": "358", + "Likes": "1.5K", + "Content": "Trump promising violence again and I believe that plenty of people don\u2019t know that." + }, + { + "Retweets": "410", + "Likes": "2.9K", + "Content": "This is a gutsy, historic speech from Leader Schumer. I know he didn\u2019t arrive at this conclusion casually or painlessly." + }, + { + "Retweets": "40", + "Likes": "1K", + "Content": "Never gets old." + }, + { + "Retweets": "112", + "Likes": "944", + "Content": "NEWS: We secured a record $1.3B in federal funds for Native housing in the funding deal\u2014a more than $300M increase from last year" + }, + { + "Retweets": "8", + "Likes": "89", + "Content": "Native housing has historically\u2014and unacceptably\u2014been underfunded by the federal government\n \nBecause of the federal government\u2019s failure over time to provide adequate housing support, Native communities are dealing with urgent and unique housing needs" + }, + { + "Retweets": "3", + "Likes": "47", + "Content": "We fought hard to secure this record investment. It helps bring us one step closer to upholding our crucial trust responsibility to Native communities.\n \nFor more info on the funding, check out this link. (4/4)" + }, + { + "Retweets": "6", + "Likes": "59", + "Content": "This historic NAHASDA funding will help families in Native communities move into affordable homes, make renovations, & receive services vital to addressing their urgent housing needs\n \nIncreased Tribal transportation funding will also improve Tribal access to programs" + }, + { + "Retweets": "989", + "Likes": "3.9K", + "Content": "This whole thing is so ghoulish and cruel and the facts don\u2019t support it. If you reported this bullshit like it was some tough but fair shot, I\u2019m just begging you personally to do some self reflection on whether you want to be this kind of professional." + }, + { + "Retweets": "198", + "Likes": "2.3K", + "Content": "There\u2019s so much real antisemitism in the world you don\u2019t have to make anything up to make your point." + }, + { + "Retweets": "17", + "Likes": "182", + "Content": "Hey get me on this bill!" + }, + { + "Retweets": "314", + "Likes": "3.9K", + "Content": "Hahahahhahahhahahhahahahhahahhahahahhahahahah aaaaaarrrrrrrrgggggh" + } + ], + "Elizabeth Warren": [ + { + "Retweets": "34", + "Likes": "142", + "Content": "President Biden has taken another important step forward in the fight against the climate crisis.\nThe \u2019s new rule will slash our carbon emissions, make our air cleaner, and save Americans thousands of dollars." + }, + { + "Retweets": "113", + "Likes": "497", + "Content": "Today, we lost a bright light. Sarah-Ann Shaw was a historic trailblazer and civil rights leader.\n \nSarah-Ann used the power of journalism to make every voice heard, and her impact will be felt for generations.\n \nMy thoughts are with her family & loved ones." + }, + { + "Retweets": "72", + "Likes": "355", + "Content": "I strongly support ' nomination of Brian Murphy to serve as a judge on the US District Court in Massachusetts! Murphy started as a public defender in Worcester & has dedicated his career to upholding fundamental rights. He'll bring valuable perspective to the federal bench." + }, + { + "Retweets": "346", + "Likes": "1.2K", + "Content": "It's time to break up 's monopoly.\nFrom limiting digital wallets to raising iPhone prices, Apple has used its power to stop innovation, crush competition & harm consumers.\nThis a new era of antitrust enforcement. Kanter is holding Big Tech accountable." + }, + { + "Retweets": "75", + "Likes": "355", + "Content": "LFG! 78,000 more public service workers are getting student debt relief.\nBefore President Biden, this program was broken\u2014only 7,000 borrowers got relief.\nNow has cancelled student debt for over 870,000 public servants like nurses & teachers, including 19,000 folks in MA." + }, + { + "Retweets": "1K", + "Likes": "2.3K", + "Content": "Republicans in Congress just announced they're endorsing an extremist budget plan that would ban abortion and rip away access to IVF nationwide.\nThey claim they want to protect IVF, but are doing the exact opposite.\n \nTheir agenda is extreme and dangerous." + }, + { + "Retweets": "71", + "Likes": "219", + "Content": "Tens of thousands of seniors who rely on Social Security aren't getting their full checks after defaulting on their student loans. It pushes many into poverty\u2014and it's wrong.\nI'm leading over 30 lawmakers calling for an end to this devastating practice." + }, + { + "Retweets": "1.3K", + "Likes": "4K", + "Content": "President Biden wants to tax billionaires and invest in affordable child care.\nThat means most families will pay less than $10 a day for child care \u2014 and they won\u2019t keep paying higher tax rates than Jeff Bezos." + }, + { + "Retweets": "107", + "Likes": "581", + "Content": "Double woo-hoo! I joined and federal and local leaders to celebrate 142 new apartment units that will house seniors and people with disabilities in Brighton. I'll keep working hard to bring home more federal funding to grow our housing supply." + }, + { + "Retweets": "54", + "Likes": "207", + "Content": "Democrats & have pushed to lower drug prices for years & challenged drug companies after I warned about Big Pharma's sham patent claims.\nNow and are reducing inhaler costs to $35/month. & should step up!" + }, + { + "Retweets": "131", + "Likes": "381", + "Content": ". Chair Powell's interest rate hikes are holding back clean energy projects across our country that will create new clean jobs and cut electricity costs.\nIt's time for the Fed to cut interest rates." + }, + { + "Retweets": "126", + "Likes": "526", + "Content": "Today I'm re-introducing my Ultra-Millionaires Tax so that when someone makes it really big\u2014earning over $50 million\u2014they have to chip in 2 cents on the next dollar.\nThat means Jeff Bezos can\u2019t keep paying lower tax rates than public school teachers." + }, + { + "Retweets": "442", + "Likes": "1.5K", + "Content": "I\u2019m calling on the CEO of , one of the nation\u2019s largest student loan servicers, to testify at my subcommittee hearing.\nMillions of borrowers have faced obstacles to repayment. Public servants haven\u2019t gotten relief they\u2019re owed.\n \nAmericans deserve answers." + }, + { + "Retweets": "952", + "Likes": "2.3K", + "Content": "President Biden has canceled student loan debt for nearly 4 million Americans. It\u2019s been life-changing." + }, + { + "Retweets": "1.9K", + "Likes": "5.7K", + "Content": "A lot of people think the Supreme Court is to blame for overturning Roe. And they\u2019re right. \nBut who packed the court with anti-abortion extremists? The man who brags about getting Roe overturned: Donald Trump." + }, + { + "Retweets": "162", + "Likes": "475", + "Content": "Thanks to Democrats passing the PACT Act, if you or a veteran you know was exposed to toxins & other hazards during service, you may be eligible for VA health care! This is one of the largest-ever expansions of veteran care. \nApply to get care: http://VA.gov/PACT" + }, + { + "Retweets": "625", + "Likes": "2K", + "Content": "Are you tired of surprise costs and junk fees on your TV bills? \n \nWell, and the are cracking down. This is a big win for families and for competition." + }, + { + "Retweets": "156", + "Likes": "445", + "Content": "The new Sentinel nuclear missile program is 2 years behind schedule and already costs billions more than expected.\n \nThe Pentagon misled Congress and owes the American people an explanation.\n and I are pressing for answers." + }, + { + "Retweets": "933", + "Likes": "3.6K", + "Content": "Roe wasn\u2019t overturned by some accident. We\u2019re here because Republican extremists have been waging a decades-long war to take down Roe. \nBut one thing they got wrong? Our motivation to fight back and restore Roe." + }, + { + "Retweets": "341", + "Likes": "1.2K", + "Content": "After a years-long delay in investigating 4 senior Fed officials\u2019 suspicious trades, the Fed\u2019s internal watchdog let them all off the hook despite violations of the Fed's own policies.\nI have a bipartisan bill to end the culture of corruption at the Fed." + }, + { + "Retweets": "149", + "Likes": "409", + "Content": "Netanyahu's right-wing government is blocking humanitarian aid into Gaza. Palestinians are starving and need immediate relief. It's horrific and violates U.S. law. With these illegal restrictions, the U.S. cannot continue providing bombs to Israel." + }, + { + "Retweets": "1K", + "Likes": "2.7K", + "Content": "It\u2019s time to crack down on shrinkflation and corporate price gouging." + }, + { + "Retweets": "732", + "Likes": "2.7K", + "Content": "The IRS is cracking down on CEOs who dodge taxes while using corporate jets for private trips - that\u2019s great, and I\u2019m asking Treasury & IRS to also close a loophole that helps these high flying tax dodgers." + }, + { + "Retweets": "299", + "Likes": "1.1K", + "Content": "Criminal records for minor marijuana offenses make it harder for people to get housing, jobs, and more.'s cannabis pardons are powerfully important to right systemic wrongs and advance racial justice.\nWeed is legal is Massachusetts, and it should be nationwide." + }, + { + "Retweets": "548", + "Likes": "1.7K", + "Content": "The majority of Americans agree: It's time to rein in corporate price gouging and shrinkflation and hold giant corporations accountable for raising costs to pad their bottom line." + }, + { + "Retweets": "76", + "Likes": "321", + "Content": "$335 million in federal funds is transformative for Allston. The Mass Pike has divided this community for too long.\nIt's a big win for more green space, good public transit, and new bike lanes.\nKudos to strong partnership w , , & ." + }, + { + "Retweets": "125", + "Likes": "473", + "Content": "Rural Native communities have been hit especially hard by the housing crisis, facing hurdles to finding housing & making much-needed repairs. \nToday, I introduced a bill to guarantee rural tribal communities access to federal housing funds they deserve." + }, + { + "Retweets": "90", + "Likes": "338", + "Content": "I stand in solidarity with workers striking for higher pay at . \nMuseum management should negotiate with union workers in good faith for a fair deal." + }, + { + "Retweets": "415", + "Likes": "1.1K", + "Content": "BIG NEWS: the IRS Direct File pilot has launched!\nMany Americans in 12 states, including MA, have a truly free & easy option to file taxes online directly with the IRS. I fought for this program to save you time & money.\n \nCheck your eligibility & file at http://directfile.IRS.gov" + }, + { + "Retweets": "65", + "Likes": "451", + "Content": "Wishing a blessed Ramadan to families in Massachusetts and around the world. \nIn the midst of profound pain in Muslim communities, I hope this holy month can be a chance for solace, renewal, and peace. Ramadan Kareem!" + }, + { + "Retweets": "81", + "Likes": "379", + "Content": "This reversal is a win for consumers.\nI warned that this giant hotel merger would lead to higher prices and fewer choices. I\u2019m glad the deal was scrapped after scrutiny." + }, + { + "Retweets": "90", + "Likes": "307", + "Content": "After Silicon Valley Bank crashed a year ago, banking regulators told me they'd put tougher rules on big banks. \nNow, I'm asking & to deliver on their commitments to protect our financial system & economy." + }, + { + "Retweets": "3.2K", + "Likes": "10K", + "Content": "How brazen do you have to be to make over $1 million in a single year, and then not file taxes?\nRich tax cheats thought they could get away with it. No more. Thanks to IRS funding Democrats secured, the ultra-rich is being held accountable.https://cnbc.com/2024/02/29/irs-targets-wealthy-non-filers-with-new-wave-of-compliance-letters.html\u2026" + }, + { + "Retweets": "139", + "Likes": "525", + "Content": "This law includes a big win for Mass: $350 million in federal funding to help replace the Cape Cod bridges.\nI worked with to prioritize this project, the to add it into Biden\u2019s budget, and + to secure its inclusion in this bill." + }, + { + "Retweets": "246", + "Likes": "884", + "Content": "The chaos in Haiti is gut-wrenching. The Haitian people deserve free and fair elections, and safety from violence. I\u2019m monitoring this crisis that is deeply personal for the Haitian community in Massachusetts. Parole has been a lifeline, and we must ensure protections for asylum." + }, + { + "Retweets": "437", + "Likes": "1.6K", + "Content": "Birth control is health care & by law, health insurers must cover contraception without copays or burdensome requirements.\n\nBut not all of them do. \n\nThat\u2019s why , , , & I led 150+ colleagues to urge insurance companies to follow the law." + }, + { + "Retweets": "561", + "Likes": "2.1K", + "Content": "University of Phoenix has a long track record of scamming borrowers. And when students can't graduate or get jobs, their inability to pay those loans can destroy lives.\n\nWe must do more to ensure federal dollars don't go to for-profit schools like that rip students off." + }, + { + "Retweets": "859", + "Likes": "1.8K", + "Content": "Under the Trump tax giveaway, 55 companies raked in $667 billion but paid under 5% in federal income tax. \n\nWhile Republicans want tax giveaways for the ultra-rich, Democrats will keep fighting to make sure giant corporations pay their fair share." + }, + { + "Retweets": "81", + "Likes": "229", + "Content": "The IRS Direct File pilot won\u2019t try to trick you into paying junk fees or signing away your privacy like giant tax prep company does. \n\nSee if you\u2019re eligible to file your taxes for free directly with the IRS at: http://directfile.irs.gov" + }, + { + "Retweets": "201", + "Likes": "619", + "Content": "Regulators must block 's merger with .\n\nIf this goes through, it would create another too-big-to-fail bank that could threaten our economy & jack up prices on working people using credit & debit cards.\n\nI explain why in my new op-ed." + }, + { + "Retweets": "5.5K", + "Likes": "41K", + "Content": "What can I say, President Biden just said let\u2019s tax some billionaires and give public school teachers a raise!" + }, + { + "Retweets": "2.8K", + "Likes": "12K", + "Content": "Canceling student debt\nTaxing the rich\nProtecting abortion access\nReceipts. Proof. Timeline.\n\nThis has been a life-changing presidency & isn't done yet." + } + ] +} \ No newline at end of file diff --git a/backend/short_tweets.csv b/backend/short_tweets.csv new file mode 100644 index 000000000..12ea85cb6 --- /dev/null +++ b/backend/short_tweets.csv @@ -0,0 +1,2881 @@ +Name,Handle,Timestamp,Verified,Content,Comments,Retweets,Likes,Analytics,Tags,Mentions,Emojis,Profile Image,Tweet Link,Tweet ID,Tweeter ID2 +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",68,90,281,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:37:54.000Z,True,"No matter what the Obama judge says, illegal immigrants don’t have the right to own a firearm. +Foreign nationals who are in our country illegally are not Americans. Duh.",345,1.2K,4.6K,54K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770897644514095378,tweet_id:1770897644514095378,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:12:24.000Z,True,"The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies. +I’ll keep working to get Louisianians the help they need when disaster strikes.",48,23,176,10K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770891225031131487,tweet_id:1770891225031131487,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",68,90,281,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T17:30:15.000Z,True,"For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain.",114,93,442,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770865517311525371,tweet_id:1770865517311525371,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T15:11:07.000Z,True,"Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why. +Dem witness: Carbon dioxide is ""a huge part of our atmosphere."" +Me: ""It’s actually a very small part of our atmosphere."" (0.035%) +Dem witness: ""Well, okay. But, yeah. I don’t know.""",1.7K,5.1K,14K,527K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770830505417576612,tweet_id:1770830505417576612,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T14:25:13.000Z,True,Democrats' witnesses support abortion up until the moment a child is born.,381,511,1.3K,36K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770818953322869031,tweet_id:1770818953322869031,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T21:38:58.000Z,True,"Many Louisianians are still recovering from Hurricane Ida’s damage. +This $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital’s continued recovery.",53,16,134,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770565724446052422,tweet_id:1770565724446052422,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:25:09.000Z,True,Small businesses create good jobs. Big Biden government shouldn’t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them.,47,32,199,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770532046416294076,tweet_id:1770532046416294076,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:04:59.000Z,True,"Biden judge: “Assault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.” +The same Biden judge: “I am not a gun expert.”",314,1K,4K,93K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770526972122108061,tweet_id:1770526972122108061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T15:17:43.000Z,True,"Razor wire won't hurt you unless you try to go over it or through it. +So I've never understood politically why Pres. Biden wants to oppose barriers at the southern border—other than the fact that he really does believe in open borders.",203,449,2.2K,38K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770469779813331147,tweet_id:1770469779813331147,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T13:22:21.000Z,True,"Some of my Democratic colleagues call folks who are in our country illegally “undocumented Americans.” +They're not undocumented Americans. +They're foreign nationals, and they're in our country illegally.",743,1.5K,6.2K,62K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770440745930867061,tweet_id:1770440745930867061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T22:07:58.000Z,True,"Last year’s drought hammered Louisiana’s crawfish producers. + +I joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need.",102,25,231,18K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770210634321260689,tweet_id:1770210634321260689,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T21:24:50.000Z,True,"Louisiana’s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. +Here’s one thing I’m doing to make that happen:",59,9,126,15K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770199778787262538,tweet_id:1770199778787262538,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T17:40:21.000Z,True,"The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms.",104,83,317,17K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770143284020519408,tweet_id:1770143284020519408,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T19:52:19.000Z,True,"Real wages just can’t keep up with #Bidenflation. +So, hardworking Louisianians feel like they’re running a race they can’t win.",228,133,548,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769814107291537838,tweet_id:1769814107291537838,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T13:57:58.000Z,True,"It’s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. +So why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?",160,270,1.2K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769724933238628653,tweet_id:1769724933238628653,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-17T15:13:39.000Z,True,Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!,94,40,506,26K,['#StPatricksDay'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769381590163980380,tweet_id:1769381590163980380,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-15T16:20:04.000Z,True,"Sometimes I think that the Biden White House would lower the average IQ of an entire city. +You can't borrow and spend the kind of money that Pres. Biden has without causing inflation. +This is basic ECON 101.",1K,798,3.2K,72K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768673531213009330,tweet_id:1768673531213009330,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T17:41:49.000Z,True,"Why are energy costs up almost 35% under Pres. Biden? +He’s spent 3 years bowing to neo-socialists who think America has no right to be energy independent.",386,333,1.3K,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768331714156269648,tweet_id:1768331714156269648,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T15:19:08.000Z,True,TikTok hasn’t proven that the Communist Party of China doesn't have access to our data.,391,150,662,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768295805536932128,tweet_id:1768295805536932128,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T13:22:52.000Z,True,"Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can’t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4…",266,123,546,19K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768266549243035656,tweet_id:1768266549243035656,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T19:55:17.000Z,True,"Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't. +The Laken Riley Act would get criminal aliens out of our country before they victimize more Americans.",274,206,1K,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768002913798922481,tweet_id:1768002913798922481,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T18:13:01.000Z,True,"Hurricane Ida left many in southeast Louisiana without a safe place to work. +I’m grateful this $1.6M will help cover the costs of temporary offices in Houma.",48,12,115,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767977177792819370,tweet_id:1767977177792819370,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T17:03:12.000Z,True,"When waterways overflow, Louisianians’ homes and businesses are at risk of serious damage. +I’m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish.",80,15,99,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767959606997774406,tweet_id:1767959606997774406,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T15:18:17.000Z,True,"The Biden admin wants to limit Americans’ freedom to get affordable, short-term health insurance plans that fit their needs. +My Patients Choice Act would make sure bureaucrats can’t force Louisianians to pay more for insurance through Obamacare.",85,50,223,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767933204722315472,tweet_id:1767933204722315472,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T13:20:07.000Z,True,#Bidenflation is literally eating Louisianians out of house and home.,310,133,529,22K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767903468751056960,tweet_id:1767903468751056960,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T19:47:11.000Z,True,The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial.,310,696,3.1K,46K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767638487157612958,tweet_id:1767638487157612958,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:54:28.000Z,True,"Louisiana families don’t have an extra $867 to burn every month. +But that’s what #Bidenflation now costs them.",370,307,923,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767595023510405442,tweet_id:1767595023510405442,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:28:48.000Z,True,Left-of-Lenin wokers can’t wake up to reality fast enough.,29,48,220,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767588563443417263,tweet_id:1767588563443417263,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T19:09:05.000Z,True,"The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children. +Other countries are proving themselves wiser than America.",328,1.7K,6.2K,85K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767266510752407613,tweet_id:1767266510752407613,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T17:42:43.000Z,True,"Unelected bureaucrats shouldn’t be able to strip veterans of their Second Amendment rights unilaterally. +Because my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom.",151,87,533,15K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767244778054324407,tweet_id:1767244778054324407,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T16:33:04.000Z,True,"The majority of Americans support building the WALL. +Meanwhile, the Biden admin remains addicted to its open border.",467,218,1.2K,26K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767227251421016129,tweet_id:1767227251421016129,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T15:29:22.000Z,True,"Any fair-minded American knows that Pres. Biden’s guiding principle has been, “Let's do the dumbest thing possible that won't work.” + +And it’s now costing Louisiana families $9,912 every year.",394,323,1.1K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767211219310563823,tweet_id:1767211219310563823,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T18:25:56.000Z,True,"If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent.",765,1.7K,6.7K,89K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766168491407659288,tweet_id:1766168491407659288,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T15:21:28.000Z,True,Pres. Biden’s pretty words can’t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement.,345,351,1.3K,28K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766122069543018961,tweet_id:1766122069543018961,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,4/5 Pres. Biden seems to have more respect for the ‘rights’ of illegal immigrants than for those of loving parents and of unborn children.,19,25,175,5.6K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884152413299101,tweet_id:1765884152413299101,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,"5/5 The president’s policies fail because his priorities are backwards. + +Insanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course.",19,18,164,5.7K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884153860427875,tweet_id:1765884153860427875,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet.",26,20,152,5.2K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884149741617433,tweet_id:1765884149741617433,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it. + +His admin let the border wall languish and paroled MILLIONS of aliens into the country illegally.",15,22,147,5.2K,['#BidenBorderCrisis'],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884150953758727,tweet_id:1765884150953758727,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"1/5 Tonight, Louisianians will be thinking, ‘Nice try, President Biden’ because they know that he’s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime.",149,156,792,30K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884148437139802,tweet_id:1765884148437139802,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T19:08:33.000Z,True,"Any fair-minded person can see that the House’s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial.",394,502,2.8K,45K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765816825965637990,tweet_id:1765816825965637990,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T15:40:48.000Z,True,"Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers’ businesses. + +My CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables.",128,44,278,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765764545467883537,tweet_id:1765764545467883537,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-06T18:19:48.000Z,True,Kids change their minds. That’s why God gave them parents.,214,614,3.5K,49K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765442168754200620,tweet_id:1765442168754200620,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-05T18:49:50.000Z,True,"No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she’s fat. + +But gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them—all in the quest to “affirm” gender confusion.",497,2K,7.2K,112K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765087341696405867,tweet_id:1765087341696405867,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-04T21:22:15.000Z,True,"The SEC’s CAT could put the personal data of 158M Americans at risk. + +That’s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT’s privacy risks.",472,136,335,77K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1764763310199541894,tweet_id:1764763310199541894,@SenJohnKennedy +Senator Cortez Masto,@SenCortezMasto,2024-03-22T14:13:00.000Z,True,"Our kids deserve every opportunity to succeed. That's why I introduced the AFTER SCHOOL Act, to deliver federal investments to schools for after school programs that prevent crime and connect young Nevadans with support, education, and the resources they need for a better future.",2,4,14,501,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1771178266432524610,tweet_id:1771178266432524610,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T23:30:59.000Z,True,"I'm always grateful for the and their advocacy for our union workers, especially women members. + +Whether it's affordable child care, housing for workers, or equal pay for equal work - I'm proud to fight every day for our union women literally building Nevada's future.",12,10,35,1.6K,[],['@NVAFLCIO'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770956300773425402,tweet_id:1770956300773425402,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T19:10:00.000Z,True,"Geothermal energy is a key part of our growing clean energy economy, and I'm working to support new projects that will power our communities and create good-paying jobs right here in Nevada.",1,4,10,896,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770890620820689090,tweet_id:1770890620820689090,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T16:26:05.000Z,True,"Congrats, ! Madi is precious.",4,1,29,2.1K,[],['@Sheriff_LVMPD'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770849369090121757,tweet_id:1770849369090121757,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-22T14:13:00.000Z,True,"Our kids deserve every opportunity to succeed. That's why I introduced the AFTER SCHOOL Act, to deliver federal investments to schools for after school programs that prevent crime and connect young Nevadans with support, education, and the resources they need for a better future.",2,4,14,501,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1771178266432524610,tweet_id:1771178266432524610,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T23:30:59.000Z,True,"I'm always grateful for the and their advocacy for our union workers, especially women members. + +Whether it's affordable child care, housing for workers, or equal pay for equal work - I'm proud to fight every day for our union women literally building Nevada's future.",12,10,35,1.6K,[],['@NVAFLCIO'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770956300773425402,tweet_id:1770956300773425402,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T14:00:26.000Z,True,"I know how challenging it can be for first-generation college students, my sister and I were the first in our own family to graduate. + +That's why I fight for programs like TRIO, to make sure every student in Nevada has the support and resources they need to succeed.",9,14,39,1.3K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770812716770361704,tweet_id:1770812716770361704,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T01:25:16.000Z,True,"My dad used to pack our family into the car and drive us up from Las Vegas to Lake Tahoe. And every time I'm back, I still think of those great memories together. + +Lake Tahoe is special - not just to me, but to families all over Nevada. And I will always stand up to protect it.",22,16,120,2.9K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770622674454155647,tweet_id:1770622674454155647,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T21:50:51.000Z,True,"I just finished meeting with Nevadans from the Association about the work I'm doing to boost our tourism and hospitality economy. + +Nevada is a world-class destination, and I'm fighting to support our workers and businesses that count on tourism for their livelihoods.",9,4,15,2.5K,[],['@USTravel'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770568713047064631,tweet_id:1770568713047064631,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T18:04:08.000Z,True,". and I had a great time welcoming Nevada TRIO students and faculty to the Senate today. We hope you all enjoy your time in our nation's capital, and safe travels back home!",19,14,48,2.2K,[],['@SenJackyRosen'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770511656738558258,tweet_id:1770511656738558258,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T14:46:16.000Z,True,"In 2017, Donald Trump tried to repeal the Affordable Care Act and strip away Nevadans' essential health care. + +In 2021, Pres. Biden and expanded the ACA and helped even more Nevadans get health coverage - that's what actually fighting for working families means.",13,28,71,5.6K,[],['@SenateDems'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770461864251490515,tweet_id:1770461864251490515,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T14:46:17.000Z,True,"Defending the ACA was one of my very first votes in the Senate, and I will always be proud of it. But the fight isn't over. + +I will always stand up for our hardworking Nevada families to ensure they can access the quality, affordable health care they need.",2,2,8,833,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770461865870578071,tweet_id:1770461865870578071,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T01:27:03.000Z,True,"Career and technical education is critical for Nevadans to get the skills training they need for booming industries like clean energy and health care. + +I'm proud to work alongside partners like to push for more investments to expand education opportunities in this state.",11,3,17,1.8K,[],['@NvActe'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770260735622320589,tweet_id:1770260735622320589,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T22:18:07.000Z,True,"Ready to cheer on our soon-to-be #MarchMadness champions, and ! +I'm from Las Vegas, don't tell me the odds.",20,22,137,7.4K,['#MarchMadness'],"['@NevadaHoops', '@UNLVLadyRebels']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770213186580418933,tweet_id:1770213186580418933,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T19:07:00.000Z,True,"I'm strongly opposed to any move by that would threaten Nevada jobs and put our seniors' essential medication deliveries at risk of delay. +Moving operations from Reno to California is unacceptable, and I'm fighting to stop it and protect Nevadans' mail service.",8,10,29,2K,[],['@USPS'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770165090538680419,tweet_id:1770165090538680419,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T16:53:00.000Z,True,"It's time to stop relying on imports for the critical minerals we need to build our clean energy future. +I'm glad to see this federal investment will help bring that supply chain back home and create good-paying, clean energy jobs right here in Nevada.",5,2,11,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770131368019689945,tweet_id:1770131368019689945,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T14:15:00.000Z,True,"It's not a secret: anti-choice extremists have already pushed for a national abortion ban and restrictions on women's basic rights and freedoms. +That's why I'm continuing to fight to protect access to reproductive health care in this country.",24,35,82,5.5K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770091606420455581,tweet_id:1770091606420455581,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T01:00:01.000Z,True,"This funding I secured will help local and Tribal police upgrade their equipment and improve their ability to keep our families and communities safe. +Nevada law enforcement can always count on me to deliver the resources they need to serve our state.",27,30,87,2.6K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769891542901366975,tweet_id:1769891542901366975,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T22:17:00.000Z,True,"Women in Tribal communities are more than twice as likely to experience violence, stalking, or assault, but declines to prosecute more than half of their cases. That's unacceptable, and I'm calling on the Attorney General to take action now to address this crisis.",2,8,32,1.4K,[],['@TheJusticeDept'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769850517352599577,tweet_id:1769850517352599577,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T20:15:00.000Z,True,"Nuestras carreteras deben ser seguras para todos los que las usan - conductores, ciclistas, y peatones. Por eso luché para brindar estas nuevas inversiones para hacer nuestras carreteras en Las Vegas más seguras por medio de mi programa SMART. ",6,3,9,992,[],[],['\\U0001f53d'],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769819815470825753,tweet_id:1769819815470825753,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T16:39:00.000Z,True,"I fought to expand the Earned Income Tax Credit to help working families in our state get the tax relief they deserve. But right now, nearly 25% of eligible Nevadans don't claim it. +Don't wait, go to http://irs.gov/eitc to see if you qualify for this tax relief.",7,14,22,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769765456913862657,tweet_id:1769765456913862657,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T14:35:00.000Z,True,"For so many families like mine in our Latino community, homeownership is a stepping stone on the path to the American Dream. knows it, and I'm proud to have partners like them as I fight to bring more middle-class housing to Nevada and combat the housing crisis.",8,5,15,1.3K,[],['@NAHREP'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769734251476603330,tweet_id:1769734251476603330,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T01:56:12.000Z,True,"Thank you to Latino Media Network for having me for a tour of their Las Vegas office and radio station! + +Their work is keeping our Latino community informed about the issues that matter, and I look forward to seeing them continue to serve our state for years to come.",6,13,49,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769543295330402735,tweet_id:1769543295330402735,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-17T21:52:59.000Z,True,"Daniel Dominguez's family came to America to build a better life. Now, they're small business owners here in Las Vegas and serving our community. + +It's my honor to recognize their hard work operating Dulce Michoacan. This is what the American Dream is all about.",12,9,38,1.8K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769482084924461313,tweet_id:1769482084924461313,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-17T15:16:56.000Z,True,Wishing everyone celebrating today a happy and safe #StPatricksDay!,2,3,18,1.5K,['#StPatricksDay'],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769382417943441505,tweet_id:1769382417943441505,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-16T22:45:00.000Z,True,"Anti-choice extremists are pushing for national restrictions on abortion that would block women in Nevada from getting essential health care. +But Nevada is a proud pro-choice state, and I'm fighting to protect women's rights and freedoms that we've fought to secure.",49,44,104,3.3K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769132787993604531,tweet_id:1769132787993604531,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-16T15:12:22.000Z,True,"Tribal communities in Nevada face too many barriers to accessing mental health care resources. + +That's why and I are pushing to improve support for mental health programs for Tribes so they can deliver the care families need.",17,17,60,1.6K,[],"['@SenJackyRosen', '@SecBecerra']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769018879089553824,tweet_id:1769018879089553824,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-16T02:20:09.000Z,True,"Let me be clear: I will never stop fighting for our Dreamers. + +Dreamers were brought to America as children, and now they're doctors, teachers, and so much more to their communities. They deserve a pathway to citizenship, and that's what I'm fighting for.",81,46,131,4K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768824547489218686,tweet_id:1768824547489218686,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T22:29:25.000Z,True,"Stopped by MILPA Mexican Cafe this afternoon to recognize DJ Flores for all of his hard work serving our community as a Latino-owned small business in Southwest Las Vegas. +Thank you DJ for having me today - lunch was delicious!",16,16,84,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768766477643997238,tweet_id:1768766477643997238,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T19:23:00.000Z,True,"I've heard serious concerns from so many families, seniors, and veterans in Northern Nevada that are worried about attempting to move operations out of Reno and into California. +I'm strongly opposed to this and am demanding not move forward with this plan.",12,19,61,2K,[],"['@USPS', '@USPS']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768719565125755048,tweet_id:1768719565125755048,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T16:52:00.000Z,True,"To combat the climate crisis we need to move quickly to responsibly develop the critical minerals we need for our clean energy transition. +I'm glad to see has approved an investment in lithium processing in Nevada, and I'll keep fighting to grow our clean energy economy.",7,6,12,2.6K,[],['@ENERGY'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768681564832211006,tweet_id:1768681564832211006,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T14:18:52.000Z,True,"President Biden's budget treats our working families with dignity by protecting and strengthening Social Security and Medicare. + +Donald Trump's budgets made horrific cuts to Social Security and Medicare every year he was in office, and he's promised to do it again.",144,68,138,8.2K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768643028036542818,tweet_id:1768643028036542818,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T00:00:19.000Z,True,"I hear it all the time when I'm home with my Latino community in Nevada - we're facing a housing crisis, and we need everyone at the table to take action. + +That's why, like I told , I'm fighting for legislation to give our families the break they deserve.",12,15,42,3.3K,[],['@NAHREP'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768426967903216010,tweet_id:1768426967903216010,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T20:13:00.000Z,True,"Big Oil companies are doing everything they can to make more profits off the backs of hardworking Americans. +I'm standing up to fight back for our families by calling on the to take action against any illegal, anti-competitive actions.",9,5,20,2.1K,[],['@FTC'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768369760129978767,tweet_id:1768369760129978767,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T17:18:00.000Z,True,"Thank you to the for your advocacy for our Cystic Fibrosis community in Nevada. It's inspiring to hear about the real progress made in treatment and care, and I'm proud to support all of you in your continued work to find a cure.",0,10,28,1.7K,[],['@CF_Foundation'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768325720067957083,tweet_id:1768325720067957083,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T14:12:00.000Z,True,"The HOME program has helped build thousands of homes in Nevada, and it's made a real difference for middle-class families. +Now, I'm working on legislation to update and expand the program so it can continue to help make homeownership possible for hardworking Nevadans.",1,2,13,982,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768278911652098477,tweet_id:1768278911652098477,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T02:06:04.000Z,True,"I worked with and to deliver relief small businesses and entrepreneurs could count on. + +The results are clear: in the last 3 years, Nevadans have submitted over 195,000 new business applications. And I'm going to keep fighting in the Senate to support them.",5,14,71,6.6K,[],"['@POTUS', '@SenateDems']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768096226111623309,tweet_id:1768096226111623309,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T22:44:30.000Z,True,"Big Pharma tried to stop the Inflation Reduction Act because they didn't want to lower drug costs. But didn't back down. + +Now, they want the courts to let them continue to hike prices on essential medications our seniors need. It's ridiculous.",3,16,33,8.1K,[],['@SenateDems'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768045498340934046,tweet_id:1768045498340934046,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T19:36:00.000Z,True,"Expanding workforce development and providing the support businesses need to succeed is a priority for me. I’m proud to work with our partners like the Las Vegas Chamber of Commerce to put those resources to work in our community. +Thank you for joining me yesterday, !",2,3,15,1.1K,[],['@lvchamber'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767998061010366943,tweet_id:1767998061010366943,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T16:12:00.000Z,True,"Growing up in Nevada, I know how dangerous wildfires are for our families, homes, and businesses. +That's why I fought in the Senate for this funding to reduce the risk of fires and help Northern Nevada communities stay safe.",3,5,20,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767946722943152230,tweet_id:1767946722943152230,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T14:14:00.000Z,True,No.,11,11,26,1.4K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767917027224633509,tweet_id:1767917027224633509,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T00:53:23.000Z,True,"Thanks to the Inflation Reduction Act, critical bike and trail infrastructure is on its way to the Pyramid Lake Paiute Tribe to connect the communities of Sutcliffe, Nixon, and Wadsworth. +That's great news, and I'm going to keep fighting to deliver for Tribes in Nevada.",18,28,58,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767715546659762599,tweet_id:1767715546659762599,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T22:10:00.000Z,True,Nevada is essential to our push to end our reliance on China for the critical minerals we need. That's why I voted to bring that supply chain home. Now I'm pushing to implement the 45X credit the way Congress intended: to create jobs and protect our national security.,10,9,23,1.2K,[],['@USTreasury'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767674428538671105,tweet_id:1767674428538671105,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T20:40:20.000Z,True,"Making sure our kids have every opportunity to succeed is one of my top priorities. And this afternoon, I sat down with principals from Nevada schools to talk about the resources our students need, and what I can do at a federal level to deliver for them and our families.",11,8,28,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767651865326391757,tweet_id:1767651865326391757,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T17:32:00.000Z,True,"My heart goes out to Itay Chen's family and loved ones as we hear the terrible news that Itay was killed by Hamas terrorists in the October 7th attacks. +Hamas' actions are horrific, and we must keep pushing for the release of every hostage they've taken captive.",6,2,24,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767604467728523621,tweet_id:1767604467728523621,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T14:09:00.000Z,True,"On average, a woman has to work through Mar. 12th, on top of all of last year, to make the same amount that a man earned in that same year. That's unacceptable. + +This #EqualPayDay, I'm continuing to fight for a very simple idea: equal pay for equal work.",17,12,40,2.1K,['#EqualPayDay'],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767553381051363552,tweet_id:1767553381051363552,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T01:29:59.000Z,True,"I'm glad to see has included my proposal in his budget to hold the Federal Home Loan Banks accountable and push them to do more to address our housing crisis. + +Working families are counting on us to fight for lower costs, and that's what we're going to do.",13,12,55,2.1K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767362370169401504,tweet_id:1767362370169401504,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-11T22:15:13.000Z,True,"Big Oil companies want less competition and more profits - all off the backs of hardworking Nevadans just trying to get to work or take their kids to school. + +It's ridiculous, and I'm calling on the to investigate and stop anti-competitive practices.",4,7,14,1.2K,[],['@FTC'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767313353725075780,tweet_id:1767313353725075780,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-11T19:21:00.000Z,True,"I've fought to make Nevada the key to America's clean energy future, and with ' help, we've created nearly 16,000 new clean energy jobs just in the past two years, with thousands more on the way. + +That means more jobs and lower costs for working families in Nevada.",17,20,73,7.6K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767269510590115865,tweet_id:1767269510590115865,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-11T16:09:00.000Z,True,"Proud to have secured critical funding for our local law enforcement in Nevada that will upgrade their equipment and provide the support they need to protect our communities. + +Their work keeps Nevada families safe, and I will always stand with them.",6,6,16,1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767221192291910005,tweet_id:1767221192291910005,@SenCortezMasto +Senator Thom Tillis,@SenThomTillis,2024-03-21T22:11:21.000Z,True,Congress is NOT trying to ban TikTok. It’s trying to get TikTok to cut its ties with Communist China and protect Americans. ,122,17,58,5.2K,[],['@TikTokPolicy'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1770936261815009574,tweet_id:1770936261815009574,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-21T18:27:56.000Z,True,Wishing the best of luck to our North Carolina teams competing in . #MarchMadness #LetsDance,5,2,11,1.3K,"['#MarchMadness', '#LetsDance']","['@MarchMadnessMBB', '@DukeMBB', '@PackMensBball', '@UNC_Basketball']",[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1770880037253763410,tweet_id:1770880037253763410,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-20T17:00:02.000Z,True,"This is a voicemail my office received last night. TikTok's misinformation campaign is pushing people to call their members of Congress, and callers like this who communicate threats against elected officials could be committing a federal crime. The Communist-Chinese aligned…",452,846,2K,517K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1770495527508939255,tweet_id:1770495527508939255,@SenThomTillis +Japan Embassy DC,@JapanEmbDC,2024-03-19T20:48:38.000Z,True,I could not agree more with on how the US-Japan relationship has grown to address critical global issues beyond regional affairs. I look forward to working closely with you to deepen our ties with North Carolina. - Ambassador Yamada,5,21,41,4.2K,[],['@SenThomTillis'],[],https://pbs.twimg.com/profile_images/980831830093062145/5H-k9lcX_x96.jpg,https://twitter.com/JapanEmbDC/status/1770190666091352534,tweet_id:1770190666091352534,@SenThomTillis +Dr. Roger Marshall,@RogerMarshallMD,2024-03-19T18:43:56.000Z,True,"Gates County, North Carolina. +Illegal alien on terror watch list opened fire on small business",39,209,296,27K,[],[],['\\U0001f4cd'],https://pbs.twimg.com/profile_images/1460999008453861383/l50MDUN__x96.jpg,https://twitter.com/RogerMarshallMD/status/1770159287077134579,tweet_id:1770159287077134579,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-20T17:00:02.000Z,True,"This is a voicemail my office received last night. TikTok's misinformation campaign is pushing people to call their members of Congress, and callers like this who communicate threats against elected officials could be committing a federal crime. The Communist-Chinese aligned…",452,846,2K,517K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1770495527508939255,tweet_id:1770495527508939255,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-19T16:07:39.000Z,True,"Happy #NationalAgDay! Today is a great day for us to celebrate the beauty and hard work of North Carolina's agriculture producers in North Carolina, the true unsung heroes of North Carolina's economy.",29,3,32,2.5K,['#NationalAgDay'],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1770119954689368336,tweet_id:1770119954689368336,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-19T13:40:31.000Z,True,"Great to meet in my DC office with Town of Cornelius leadership including Mayor Woody Washam, Mayor Pro Tempore Scott Higgins, Commissioner Robert Carney, Commissioner Michael Osborne, Town Manager Adam Grant, and Deputy Town Manager Wayne Herron.",24,3,16,2.6K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1770082930875826663,tweet_id:1770082930875826663,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-18T18:28:46.000Z,True,"Cheap groceries and the cleanest, most beautiful train stations anyone has ever seen. Of course Putin got 88.48% of the vote! (Yes, this is sarcasm)",110,17,106,6.4K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1769793080733913446,tweet_id:1769793080733913446,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-18T16:14:11.000Z,True,"Thank you to North Carolina Pastors Correll, Jenkins, Fulp, and their family members for joining me for a moment of prayer and reflection at my DC office. I always appreciate our annual meetings during Capitol Connection with Awake America Ministries.",18,5,18,2.3K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1769759211515248956,tweet_id:1769759211515248956,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-17T13:37:48.000Z,True,Congratulations to on a historic run and winning the ACC Championship!,8,7,52,6.8K,[],['@packmensbball'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1769357468491006078,tweet_id:1769357468491006078,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-15T18:55:04.000Z,True,"It was a pleasure to meet with North Carolina members of this past week at my DC office. As Senator, I will continue to be an advocate to eradicate antisemitism here at home and support our ally Israel in its mission to destroy Hamas.",47,5,32,4.1K,[],['@AIPAC'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1768712537842065638,tweet_id:1768712537842065638,@SenThomTillis +NATE,@NATEsafety,2024-03-12T16:49:28.000Z,False," North Carolina State Liaison James Blaylock from Delta Oaks Group, PLLC met this week with Trey Lewis from North Carolina U.S. Senator Thom Tillis' staff to discuss the Association's legislative and regulatory policy priorities! Thank you and team!",1,1,5,1.4K,[],"['@NATEWIN_Network', '@SenThomTillis']",[],https://pbs.twimg.com/profile_images/1230179110070210566/z5TMZk12_x96.jpg,https://twitter.com/NATEsafety/status/1767593763700928704,tweet_id:1767593763700928704,@SenThomTillis +Senate Republicans,@SenateGOP,2024-03-15T13:53:41.000Z,True,"NEW EPISODEHow did pushing for a bike trail get started in politics? Don’t worry, he tells us. +Learn the shocking number of Toms in his family, why he has an H in his name, and more! +Listen NOW! ",41,12,32,16K,[],['@SenThomTillis'],"['\\U0001f6a8', '\\U0001f6a8', '\\U0001f6a8', '\\U0001f6a8', '\\U0001f399\\ufe0f']",https://pbs.twimg.com/profile_images/1610319775699288066/3HJLBrxC_x96.jpg,https://twitter.com/SenateGOP/status/1768636692049629352,tweet_id:1768636692049629352,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-14T21:00:53.000Z,True,It is outrageous for President Biden and Chuck Schumer to be meddling in the free democratic election of one of our closest allies. Israelis can make their own decisions independent of an American president who is more concerned about winning Michigan than standing by our ally.,261,55,219,11K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1768381810658939188,tweet_id:1768381810658939188,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-13T17:01:34.000Z,True,"It’s clear President Biden’s priorities are reckless sanctuary policies over the American people’s safety. It's time for Congress to step in and put an end to this madness. That is why this week, I introduced two bills to hold sanctuary cities accountable and empower ICE to gain…",83,15,58,4.5K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1767959199470784939,tweet_id:1767959199470784939,@SenThomTillis +Carolina Journal,@CarolinaJournal,2024-03-13T16:15:00.000Z,True,"NC's US introduced the ""Justice for Victims of Sanctuary Cities Act"" and ""Immigration Detainer Enforcement Act"" yesterday.#ncga #ncpol",21,10,24,2.1K,"['#ncga', '#ncpol']",['@SenThomTillis'],[],https://pbs.twimg.com/profile_images/1504820031422615556/bM3v6jC5_x96.jpg,https://twitter.com/CarolinaJournal/status/1767947478228250860,tweet_id:1767947478228250860,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-12T21:11:10.000Z,True,Thank you for hosting today's roundtable with Nick Saban and ACC Commissioner Jim Phillips to shine a light on this important issue.,28,6,15,4.3K,[],['@SenTedCruz'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1767659622800756803,tweet_id:1767659622800756803,@SenThomTillis +Julia Johnson,@juliaajohnson_,2024-03-12T18:35:50.000Z,False,"FIRST ON FOX: North Carolina Republican will introduce two bills Tuesday aimed at holding sanctuary cities accountable for what he calls lax policies toward illegal immigration and refusal to cooperate with ICE. + https://foxnews.com/politics/senate-gop-bills-target-sanctuary-cities-after-laken-rileys-death… #FoxNews",11,8,22,2.6K,['#FoxNews'],['@SenThomTillis'],[],https://pbs.twimg.com/profile_images/1753119856596070400/K76Kyfj7_x96.jpg,https://twitter.com/juliaajohnson_/status/1767620531799355749,tweet_id:1767620531799355749,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-12T18:02:27.000Z,True,.: Tillis bills target sanctuary cities after Laken Riley's death,14,4,13,1.8K,[],['@FoxNews'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1767612130163859713,tweet_id:1767612130163859713,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-12T13:18:37.000Z,True,"Under Biden, there have been over 7 million illegal border crossings, and his administration still has no plan to fix the crisis of their own doing.",120,17,42,9.4K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1767540701707842012,tweet_id:1767540701707842012,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-11T21:16:15.000Z,True,"Biden’s anti-energy policies have weakened America’s energy independence and are benefiting enemies like Russia, China, and Iran at the expense of the American people.",108,17,55,7.2K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1767298513321291995,tweet_id:1767298513321291995,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-11T01:39:03.000Z,True,The media has been tougher on for a story highlighting the tragic consequences of human trafficking than they are on Biden for allowing 7 million illegals into our country.,775,124,463,32K,[],['@SenKatieBritt'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1767002263023681646,tweet_id:1767002263023681646,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-08T20:30:14.000Z,True,"We are not better off with the crippling inflation we see every time we go to the grocery store. +We are not better off with a raging crisis at the border that was caused by this administration’s failed policies. +We are not better off with a commander-in-chief who abandoned our…",345,63,205,49K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1766199769930543603,tweet_id:1766199769930543603,@SenThomTillis +Rep. Brian Mast,@RepBrianMast,2024-03-08T18:01:34.000Z,True,"Hey , do you know where we stand with terrorists? We stand on their throats.",4.9K,7.9K,33K,2.6M,[],['@CodePink'],[],https://pbs.twimg.com/profile_images/1080531843907244032/XLrsVXa5_x96.jpg,https://twitter.com/RepBrianMast/status/1766162360035590217,tweet_id:1766162360035590217,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-08T16:44:52.000Z,True,"Phenomenal job by last night. And she is exactly right, the American people know we can do better. With a change in direction, we will do better.",121,8,50,6.8K,[],['@SenKatieBritt'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1766143057567572045,tweet_id:1766143057567572045,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-08T03:55:57.000Z,True,"Tonight, we saw Joe Biden fail to take accountability for his failed policies. +Americans know that our great nation can do better. And with a change in direction, we will do better.",215,33,156,11K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1765949550261645384,tweet_id:1765949550261645384,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-07T21:13:22.000Z,True,He was indeed taking a nap.,16,6,26,4K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1765848236189773892,tweet_id:1765848236189773892,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-07T20:17:49.000Z,True,"Because of the hard work of North Carolina’s farmers, North Carolina is the #1 producer of sweetpotatoes in the U.S.! I was glad to join this morning to welcome commission members to our nation’s capital.",21,5,41,3.4K,[],"['@SenTedBuddNC', '@sweet_tater']",[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1765834258621272483,tweet_id:1765834258621272483,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-07T14:09:15.000Z,True,High prices and burdensome regulations are crushing small businesses and raising costs for working families.,115,21,60,8.3K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1765741506655113540,tweet_id:1765741506655113540,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-06T21:49:51.000Z,True,It was an honor to catch up with Senator Elizabeth Dole today. She continues to tirelessly advocate for our nation’s veterans.,23,12,220,11K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1765495029814997069,tweet_id:1765495029814997069,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-05T20:16:22.000Z,True,The Senate will greatly miss Senator Sinema’s strong bipartisan leadership. It has been an honor to work with her to address some of the most pressing challenges facing our nation over the last several years. I admire the remarkable courage she has demonstrated by standing up to…,84,31,110,15K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1765109119042630105,tweet_id:1765109119042630105,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-04T20:44:23.000Z,True,The Supreme Court has unanimously decided that the American people—not political activists—should decide which presidential candidates are on the ballot. I introduced the Constitutional Election Integrity Act to protect ballot integrity from partisan officials and I applaud the…,66,7,58,5.9K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1764753779725918597,tweet_id:1764753779725918597,@SenThomTillis +The Wall Street Journal,@WSJ,2024-03-03T16:15:56.000Z,True,"From : The American people deserve more tax relief, not more welfare. We can and must do better than the Wyden-Smith bill, writes .",45,12,43,66K,[],"['@WSJopinion', '@SenThomTillis']",[],https://pbs.twimg.com/profile_images/971415515754266624/zCX0q9d5_x96.jpg,https://twitter.com/WSJ/status/1764323836588126294,tweet_id:1764323836588126294,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-02T16:26:35.000Z,True,Biden could’ve fixed this border crisis years ago through his executive authority.,365,55,119,34K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1763964127511277737,tweet_id:1763964127511277737,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-03-01T17:14:42.000Z,True,"Starting today, any student interested in submitting a nomination application to a U.S. Military Service Academy can do so with my office. My office will be accepting nomination applications until October 15. + +Click the link below to apply!",17,3,24,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1763613850014765154,tweet_id:1763613850014765154,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-29T20:45:57.000Z,True,"Great choice! is a rising star in the GOP, proud to call her a friend and colleague.",27,8,39,6.1K,[],['@SenKatieBritt'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1763304622406381926,tweet_id:1763304622406381926,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-29T18:08:14.000Z,True,"Biden’s trip to Texas is nothing more than a photo-op. Under Biden’s watch, nearly 7.3 million illegal immigrants have entered our country. More will continue to come into our country illegally until he uses his authority to fix the problem.",109,21,50,6.7K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1763264931086934341,tweet_id:1763264931086934341,@SenThomTillis +Wall Street Journal Opinion,@WSJopinion,2024-02-29T02:00:05.000Z,True,"The American people deserve more tax relief, not more welfare. We can and must do better than the Wyden-Smith bill, writes ",12,4,13,3.2K,[],['@SenThomTillis'],[],https://pbs.twimg.com/profile_images/1522643223230963715/JYkirmo4_x96.jpg,https://twitter.com/WSJopinion/status/1763021290233815444,tweet_id:1763021290233815444,@SenThomTillis +ElectriCities of NC,@ElectriCitiesNC,2024-02-28T16:00:26.000Z,False,"Thank you to the office of for meeting with us during ’s 2024 Legislative Rally! +We appreciated speaking about concerns in the #NCPublicPower industry like #SupplyChain issues, #CyberSecurity standards, & reporting.#CommunityPowered #PublicPower",9,2,9,1.6K,"['#NCPublicPower', '#SupplyChain', '#CyberSecurity', '#CommunityPowered', '#PublicPower']","['@SenThomTillis', '@PublicPowerOrg']",['\\u26a1'],https://pbs.twimg.com/profile_images/1562779733523419136/fQlILYLs_x96.jpg,https://twitter.com/ElectriCitiesNC/status/1762870383013683347,tweet_id:1762870383013683347,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-28T17:41:26.000Z,True,". is a true legend of the U.S. Senate. Under his historic leadership, the Senate secured a conservative majority on the Supreme Court, passed historic tax reform, and enacted bipartisan legislation to save our economy from the brink at the start of the pandemic.…",649,87,419,42K,[],['@LeaderMcConnell'],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1762895798935671255,tweet_id:1762895798935671255,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-27T22:00:01.000Z,True,"As President, Biden decided to: +-Halt border wall construction +-Cancel Remain in Mexico +-Allow Title 42 to expire +-Rely on failed policies like catch & release +And because of all this, we’ve seen the worst border crisis ever unfold at our Southern border.",203,39,161,11K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1762598487022243884,tweet_id:1762598487022243884,@SenThomTillis +National Fraternal Order of Police (FOP),@GLFOP,2024-02-27T17:18:17.000Z,True,". on violent criminals who target America’s brave men and women of law enforcement: +“I see a dangerous future if we don’t find ways to stand up for law enforcement, to increase penalties for someone who intends to do harm to them — which is why I think it should be…",13,22,46,2.9K,[],['@SenThomTillis'],[],https://pbs.twimg.com/profile_images/1618219511336796161/eWpO-UuV_x96.jpg,https://twitter.com/GLFOP/status/1762527586200985802,tweet_id:1762527586200985802,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-26T17:01:46.000Z,True,"Bad policies can have tragic consequences. Instead of deporting this illegal immigrant, Biden gave him parole. When this same illegal was arrested for harming a child, the sanctuary jurisdiction of NYC released him back on the streets instead of handing him over to ICE.",115,25,61,13K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1762161042224767481,tweet_id:1762161042224767481,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-24T15:41:45.000Z,True,"This is a tragedy that could have been avoided. It is a failure at every level of government. Biden repealed all of Trump’s executive actions that secured the border, and has mass released illegals (including potentially this suspect) instead of detaining and deporting them.…",255,68,178,26K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1761416128578920730,tweet_id:1761416128578920730,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-24T13:59:09.000Z,True,"During Biden’s first 100 days in office, he took 94 executive actions to weaken our border security. + +This crisis could’ve been addressed long ago. Instead, Biden has been playing political games and appeasing leftists.",230,54,172,14K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1761390308875473113,tweet_id:1761390308875473113,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-23T00:07:28.000Z,True,"After 52 years, America is back on the moon! + +Congratulations to all the men and women of , , and who contributed to Odysseus’ historic moon landing. ",34,9,50,7.1K,[],"['@Int_Machines', '@spacex', '@nasa']",['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1760818620005822845,tweet_id:1760818620005822845,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-22T14:02:09.000Z,True,"Liberal protestors are deploying new tactics by blocking roads and stopping traffic. This reckless and dangerous behavior must be stopped. That is why I have introduced legislation to make blocking roads, highways, and bridges a federal crime.",158,48,142,10K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1760666288739729534,tweet_id:1760666288739729534,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-21T20:28:54.000Z,True,"Another disastrous decision from Biden that will leave the American taxpayer footing the bill. + +Student loan forgiveness is nothing more than a redistribution of wealth at the expense of hardworking taxpayers.",248,78,223,19K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1760401228872167621,tweet_id:1760401228872167621,@SenThomTillis +Senator Thom Tillis,@SenThomTillis,2024-02-20T19:22:12.000Z,True,"Far too many murder cases go unsolved, leaving families of victims without justice. I’m proud to introduce the bipartisan VICTIM Act, to provide the necessary resources to law enforcement agencies to reduce the number of unsolved homicide cases and make our communities safer.",78,5,52,7.1K,[],[],[],https://pbs.twimg.com/profile_images/1501284630695194627/WJmQ4wTR_x96.jpg,https://twitter.com/SenThomTillis/status/1760022057243357444,tweet_id:1760022057243357444,@SenThomTillis +David Perdue,@DavidPerdueGA,2022-06-24T17:11:21.000Z,True,"This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years. +As we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer.",59,31,110,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1540382081334878209,tweet_id:1540382081334878209,@DavidPerdueGA +Claire Simms Chaffins,@ClaireSChaffins,2022-05-25T00:44:08.000Z,False,WATCH: concedes the governor's race to . Perdue says he will support Kemp to make sure is not governor of Georgia. #gapol,327,94,334,0,['#gapol'],"['@DavidPerdueGA', '@BrianKempGA', '@staceyabrams', '@FOX5Atlanta']",[],https://pbs.twimg.com/profile_images/1735004883990786048/QYu5_V_m_x96.jpg,https://twitter.com/ClaireSChaffins/status/1529262004556414976,tweet_id:1529262004556414976,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T22:21:01.000Z,False,Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families.,1.2K,144,320,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529225988626087936,tweet_id:1529225988626087936,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T20:34:26.000Z,False,"The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!",182,117,587,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529199162604015619,tweet_id:1529199162604015619,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T13:26:48.000Z,False,Up next on !,112,19,98,0,[],['@AmericaNewsroom'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529091546070622215,tweet_id:1529091546070622215,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-06-24T17:11:21.000Z,True,"This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years. +As we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer.",59,31,110,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1540382081334878209,tweet_id:1540382081334878209,@DavidPerdueGA +Claire Simms Chaffins,@ClaireSChaffins,2022-05-25T00:44:08.000Z,False,WATCH: concedes the governor's race to . Perdue says he will support Kemp to make sure is not governor of Georgia. #gapol,327,94,334,0,['#gapol'],"['@DavidPerdueGA', '@BrianKempGA', '@staceyabrams', '@FOX5Atlanta']",[],https://pbs.twimg.com/profile_images/1735004883990786048/QYu5_V_m_x96.jpg,https://twitter.com/ClaireSChaffins/status/1529262004556414976,tweet_id:1529262004556414976,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T13:05:11.000Z,False,Joining and live on Fox News around 9:30 AM ET. Hope you’ll tune in!,55,8,47,0,[],"['@marthamaccallum', '@DanaPerino']",[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529086104586035201,tweet_id:1529086104586035201,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T11:20:18.000Z,False,"The polls are OPEN! +I’d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud.",488,226,748,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529059711387049984,tweet_id:1529059711387049984,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T23:38:20.000Z,False,"Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. +Please make a plan to vote tomorrow if you haven't already!",297,80,335,0,[],['@seanhannity'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528883057876692993,tweet_id:1528883057876692993,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T12:54:33.000Z,False,Abrams doesn’t care about Georgia. She wants to live in the White House. It’s up to us to make sure that NEVER happens.,307,80,206,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528721043623395329,tweet_id:1528721043623395329,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T12:48:11.000Z,False,Join us TONIGHT for a tele-rally with President Donald J. Trump!,213,163,539,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528719439327375360,tweet_id:1528719439327375360,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T23:41:02.000Z,False,President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!,130,172,458,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528158959676309509,tweet_id:1528158959676309509,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T19:17:42.000Z,False,"Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us. +Get out and vote on Tuesday, May 24th if you haven’t already!",43,55,133,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528092690893643777,tweet_id:1528092690893643777,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T00:50:05.000Z,False,Great to be with Bikers for Trump on a beautiful night in Plainville!,43,48,178,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527813947151331328,tweet_id:1527813947151331328,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T21:29:06.000Z,False,"Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th.",40,51,145,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527763369834561536,tweet_id:1527763369834561536,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T21:26:17.000Z,False,"Thank you, Mr. President! We’re pushing for a big WIN on Tuesday!",127,201,562,0,[],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527762659990544384,tweet_id:1527762659990544384,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T20:58:15.000Z,False,"Great to have my friend with us on the campaign trail in Savannah! +Sarah is an America First warrior, and I’m proud to have her support and endorsement. +Get out and vote, Georgia! Together, we will take back our state and country.",69,50,163,0,[],['@SarahPalinUSA'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527755605452144641,tweet_id:1527755605452144641,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T14:28:13.000Z,False,Started the morning with a press conference in Columbus. Next stop: Macon!,47,24,86,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527657450450694145,tweet_id:1527657450450694145,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T00:49:02.000Z,False,Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!,44,31,103,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527451297686904843,tweet_id:1527451297686904843,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-19T22:33:42.000Z,False,Couldn’t pass up the hot sign between campaign stops!,324,462,796,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527417240672423946,tweet_id:1527417240672423946,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-19T17:31:30.000Z,False,"Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th.",53,87,249,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527341187975172096,tweet_id:1527341187975172096,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T19:14:18.000Z,False,Proud to have ’s endorsement and looking forward to having her join us in Savannah on Friday!,82,70,203,0,[],['@SarahPalinUSA'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527004669536616449,tweet_id:1527004669536616449,@DavidPerdueGA +Newt Gingrich,@newtgingrich,2022-05-18T11:41:43.000Z,True,Not a good look for Gov. Kemp to have a relationship with a Soros-funded project. ,85,259,514,0,[],['@Aaron_Kliegman'],[],https://pbs.twimg.com/profile_images/722099116654923777/S7O3vYVT_x96.jpg,https://twitter.com/newtgingrich/status/1526890772724953093,tweet_id:1526890772724953093,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T13:13:05.000Z,False,Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory.,30,18,71,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526913766989996032,tweet_id:1526913766989996032,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T00:23:41.000Z,False,"Enjoyed being in Madison with the Morgan County GOP tonight! +The primary election is just ONE WEEK away. Make a plan to vote if you haven’t already!",16,16,74,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526720142423506945,tweet_id:1526720142423506945,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-17T14:35:53.000Z,False,Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!,18,21,84,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526572215931744260,tweet_id:1526572215931744260,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-17T11:35:48.000Z,False,"Great to be with the Barrow County GOP last night. +Make a plan to vote if you haven’t already! Find your early voting location at http://voteperdue.com.",3,27,58,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526526897240301568,tweet_id:1526526897240301568,@DavidPerdueGA +Just the News,@JustTheNews,2022-05-16T23:40:31.000Z,False,Georgia Gubernatorial Candidate talks about the state of the governor’s race and what issues are really driving Georgia voters this election. #Election2022Watch more #JustTheNewsNotNoise with and here https://bit.ly/3LkWTxp,7,26,60,0,"['#Election2022', '#JustTheNewsNotNoise']","['@DavidPerdueGA', '@jsolomonReports', '@AmandaHead']",['\\u27a1\\ufe0f'],https://pbs.twimg.com/profile_images/1717656521511714816/aXEveb1x_x96.jpg,https://twitter.com/JustTheNews/status/1526346889120997380,tweet_id:1526346889120997380,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-13T13:08:43.000Z,False,"Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! +When I’m Governor, we will enforce the law and deport criminal illegals.",53,63,156,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1525100729911877634,tweet_id:1525100729911877634,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-12T15:36:19.000Z,False,We need a Governor who will stand up and FIGHT!,64,57,171,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524775487012319232,tweet_id:1524775487012319232,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-12T15:03:27.000Z,False,Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!,23,18,99,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524767213609230336,tweet_id:1524767213609230336,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T19:52:37.000Z,False,Proud to have the support and endorsement of Bikers for Trump!,62,55,260,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524477599556198408,tweet_id:1524477599556198408,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:51:45.000Z,False,"Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. +Shelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that’s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html…",26,39,74,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524371683557183488,tweet_id:1524371683557183488,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:53:43.000Z,False,We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros.,10,21,45,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524372178816360448,tweet_id:1524372178816360448,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:40:55.000Z,False,"Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!",20,28,97,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524368955560894465,tweet_id:1524368955560894465,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-10T19:07:37.000Z,False,"Threatening justices, vandalizing churches — this behavior is unacceptable and has to stop now. +As Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. +Intimidation and harassment will not be tolerated.",36,39,82,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524103887107641346,tweet_id:1524103887107641346,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-10T14:28:00.000Z,False,"Head to http://VotePerdue.com to find your polling location. +Don’t wait until Election Day. Go ahead and vote early!",42,67,240,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524033516798832640,tweet_id:1524033516798832640,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-09T22:42:54.000Z,False,"If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia. +I've called on Brian Kemp to commit to doing the same. +People deserve to know where their Governor stands on this issue.",272,246,893,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523795676307546113,tweet_id:1523795676307546113,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-09T20:29:13.000Z,False,Great crowd at our meet and greet in Norcross this weekend!,36,24,125,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523762034130653184,tweet_id:1523762034130653184,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-08T12:55:11.000Z,False,"Wishing a Happy Mother’s Day to all moms, especially my beautiful wife Bonnie.",25,13,131,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523285385530339328,tweet_id:1523285385530339328,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T18:28:00.000Z,False,Great morning with the Fulton County GOP. Thank you for having me!,38,39,158,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523006754254368769,tweet_id:1523006754254368769,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T13:46:41.000Z,False,"Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections.",41,37,122,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522935956461998085,tweet_id:1522935956461998085,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T00:32:17.000Z,False,Joining live on Fox News around 9:25 PM. Tune in if you can!,59,6,63,0,[],['@seanhannity'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522736039009431552,tweet_id:1522736039009431552,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-06T19:32:25.000Z,False,"Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. + +We’re encouraging everybody across the state to get out and VOTE!",35,9,59,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522660574466822145,tweet_id:1522660574466822145,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T22:14:20.000Z,False,Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!,36,24,103,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522338937099984901,tweet_id:1522338937099984901,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T20:18:09.000Z,False,"Matthew 18:20 tells us, “For where two or three gather in my name, there am I with them.” + +Today & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer",35,18,69,0,['#NationalDayOfPrayer'],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522309697554071558,tweet_id:1522309697554071558,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T18:41:41.000Z,False,"Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!",36,31,127,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522285422008807424,tweet_id:1522285422008807424,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T13:34:20.000Z,False,"I was extremely disappointed by the Governor’s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. + +Georgia voters deserve to know where their Governor stands on this issue. (1/2)",33,32,108,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522208071421943809,tweet_id:1522208071421943809,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T13:34:20.000Z,False,"I’m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. + +You are either going to fight for the sanctity of life or you’re not. (2/2)",39,31,91,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522208072739049474,tweet_id:1522208072739049474,@DavidPerdueGA +David Perdue,@sendavidperdue,2021-01-03T16:13:50.000Z,False,"From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I’ve been focused on getting results for ALL Georgians.",3.1K,325,960,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1345765322519949315,tweet_id:1345765322519949315,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-27T21:56:21.000Z,False,". & I sent a letter on behalf of Skylar Mack, an 18-year-old student detained in the Cayman Islands, to ensure a safe return to Georgia. +We’re working alongside the U.S. Embassy & Mack’s family in calling for leniency for this young woman.",1.5K,185,621,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1343314801888530432,tweet_id:1343314801888530432,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-25T13:16:47.000Z,False,Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year.,1K,66,482,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1342459275285848064,tweet_id:1342459275285848064,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-22T05:29:31.000Z,False,"In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts. + +Today we delivered: +→ More PPP for small biz +→ 2nd round of relief checks +→ Funding for hospitals & schools +→ Efficient vaccine distribution +→ Support for farmers",2.4K,323,556,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1341254520949665798,tweet_id:1341254520949665798,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-21T17:45:25.000Z,False,"Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed. + +Chuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago. + +Statement w/ :",1.1K,186,316,0,[],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1341077326940016640,tweet_id:1341077326940016640,@sendavidperdue +David Perdue,@sendavidperdue,2021-01-03T16:13:50.000Z,False,"From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I’ve been focused on getting results for ALL Georgians.",3.1K,325,960,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1345765322519949315,tweet_id:1345765322519949315,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-27T21:56:21.000Z,False,". & I sent a letter on behalf of Skylar Mack, an 18-year-old student detained in the Cayman Islands, to ensure a safe return to Georgia. +We’re working alongside the U.S. Embassy & Mack’s family in calling for leniency for this young woman.",1.5K,185,621,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1343314801888530432,tweet_id:1343314801888530432,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-25T13:16:47.000Z,False,Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year.,1K,66,482,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1342459275285848064,tweet_id:1342459275285848064,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-19T02:42:31.000Z,True,GREAT NEWS: Two #COVID19 vaccines are now authorized for use!,515,32,164,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1340125330116374534,tweet_id:1340125330116374534,@sendavidperdue +Emory University,@EmoryUniversity,2020-12-17T20:57:22.000Z,False,"The first #COVID19 vaccine was administered at today - Thanks to everyone, including Emory researchers and healthcare professionals and vaccine trial volunteers, who helped make this amazing accomplishment possible!",123,69,280,0,['#COVID19'],['@emoryhealthcare'],[],https://pbs.twimg.com/profile_images/1148259851593801728/4b116t7M_x96.png,https://twitter.com/EmoryUniversity/status/1339676081088061443,tweet_id:1339676081088061443,@sendavidperdue +Children's,@childrensatl,2020-12-17T01:14:27.000Z,False,"Today, we received our first delivery of #COVID19 vaccines released for healthcare workers. Tomorrow, we’ll begin administering them to patient-facing employees. This is a moment of change, and we're grateful to the many teams who made this milestone delivery possible!",78,39,182,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1290709498722758661/OmApnEGd_x96.jpg,https://twitter.com/childrensatl/status/1339378390877560832,tweet_id:1339378390877560832,@sendavidperdue +GaDeptPublicHealth,@GaDPH,2020-12-16T15:30:29.000Z,False,"#GAHaveYouHeard +FACT: Vaccine testing was thorough and successful. More than 70,000 people participated in clinical trials for two vaccines. To date, the vaccines are nearly 95% effective in preventing COVID-19 with no safety concerns.https://dph.georgia.gov/covid-vaccine",78,17,35,0,['#GAHaveYouHeard'],[],[],https://pbs.twimg.com/profile_images/1358945720477364224/z0eo2lEN_x96.jpg,https://twitter.com/GaDPH/status/1339231431441190913,tweet_id:1339231431441190913,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-17T20:01:39.000Z,False,Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area.,229,21,43,0,['#Columbus'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1339662062176362497,tweet_id:1339662062176362497,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-16T00:11:40.000Z,False,Great opportunity for high school students interested in #STEM to work with researchers.,264,16,57,0,['#STEM'],['@GeorgiaTech'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1339000205014921220,tweet_id:1339000205014921220,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-14T21:26:25.000Z,False,The first shipments of #COVID19 vaccine have arrived in Georgia!,403,42,234,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1338596226883858435,tweet_id:1338596226883858435,@sendavidperdue +U.S. FDA,@US_FDA,2020-12-12T02:40:16.000Z,True,"Today, FDA issued the first emergency use authorization (EUA) for a vaccine for the prevention of #COVID19 caused by SARS-CoV-2 in individuals 16 years of age and older. The emergency use authorization allows the vaccine to be distributed in the U.S. https://fda.gov/news-events/press-announcements/fda-takes-key-action-fight-against-covid-19-issuing-emergency-use-authorization-first-covid-19…",505,2.8K,5.1K,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/773141404860162061/WK4RgHMx_x96.jpg,https://twitter.com/US_FDA/status/1337588046674489346,tweet_id:1337588046674489346,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-12T03:09:25.000Z,False,"Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year. +This is nothing short of extraordinary and a testament to the power of American ingenuity.",626,105,402,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337595385565638657,tweet_id:1337595385565638657,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-12T03:09:26.000Z,False,"As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials. +While we are one step closer to getting back to normal, our work is not done and we must all remain vigilant.",214,21,87,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337595387796983809,tweet_id:1337595387796983809,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-11T19:13:56.000Z,False,"A strong America requires a strong military. This defense bill: +→ Fully funds our military +→ Gives troops significant pay raise +→ Supports military families +→ Strengthens cybersecurity +→ Holds China accountable",379,55,173,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337475725625090050,tweet_id:1337475725625090050,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-11T18:44:36.000Z,False,"A strong America requires a strong military. +Full statement with ↓",329,48,211,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1337468343499059201,tweet_id:1337468343499059201,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-11T18:52:54.000Z,False,Statement from & me on passage of the #NDAA:,265,75,98,0,['#NDAA'],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337470431247409153,tweet_id:1337470431247409153,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-10T22:17:10.000Z,False,Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world.,218,35,259,0,['#Hanukkah'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337159448809398272,tweet_id:1337159448809398272,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-09T21:22:27.000Z,False,"Thanks to ’s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide.",219,17,56,0,[],['@FCC'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1336783289756094466,tweet_id:1336783289756094466,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T16:15:33.000Z,False,"We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay",453,41,178,0,['#PearlHarborRemembranceDay'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335981283160313867,tweet_id:1335981283160313867,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:32.000Z,False,"When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now.",1.3K,148,411,0,['#COVID19'],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955860183506945,tweet_id:1335955860183506945,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:32.000Z,False,"While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let’s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago.",260,19,79,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955861810900993,tweet_id:1335955861810900993,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:33.000Z,False,"It’s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality. + +Full statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians…",360,35,69,0,[],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955862641373185,tweet_id:1335955862641373185,@sendavidperdue +The Hill,@thehill,2020-12-04T19:04:02.000Z,True,"Sen. David Perdue praises Operation Warp Speed: ""This is remarkable what you guys did.""",779,99,287,0,[],[],[],https://pbs.twimg.com/profile_images/1649413483685871621/V_wwjDu2_x96.png,https://twitter.com/thehill/status/1334936519421865985,tweet_id:1334936519421865985,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-04T19:54:22.000Z,False,Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !,975,154,491,0,[],"['@POTUS', '@VP']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334949186605903872,tweet_id:1334949186605903872,@sendavidperdue +Mike Pence,@Mike_Pence,2020-12-04T18:25:19.000Z,True,"Honored to be at today with , , , and . Under President ’s leadership, we will have a vaccine before the end of the year!",495,254,2K,0,[],"['@CDCgov', '@CDCDirector', '@SenatorLoeffler', '@sendavidperdue', '@RepDougCollins', '@realDonaldTrump']",[],https://pbs.twimg.com/profile_images/1372291427833683972/sCIeF9RC_x96.jpg,https://twitter.com/Mike_Pence/status/1334926773251788800,tweet_id:1334926773251788800,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-04T16:36:46.000Z,True,"Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at .",521,189,1.6K,0,[],"['@VP', '@CDCgov']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334899456228159489,tweet_id:1334899456228159489,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-03T17:22:05.000Z,False,The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses.,618,80,280,0,['#RESTARTAct'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334548475187515397,tweet_id:1334548475187515397,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-03T14:49:13.000Z,False,"Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery…",212,20,65,0,['#STEM'],"['@GeorgiaTech', '@GeorgiaStateU', '@MercerYou', '@DeptofDefense']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334510003143778309,tweet_id:1334510003143778309,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-01T18:33:55.000Z,False,". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record.",454,37,68,0,['#Georgia'],['@GAPorts'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1333841777418260485,tweet_id:1333841777418260485,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-28T18:59:42.000Z,False,Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday,599,62,152,0,"['#ShopSmall', '#SmallBusinessSaturday']",[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1332761102313254916,tweet_id:1332761102313254916,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-26T14:02:34.000Z,False,"This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country.",420,44,173,0,['#Thanksgiving'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331961550169632772,tweet_id:1331961550169632772,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-26T14:01:19.000Z,False,"Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving.",411,52,446,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331961232421773319,tweet_id:1331961232421773319,@sendavidperdue +TAGofGA,@TAGofGA,2020-11-25T00:45:53.000Z,False,Congratulations to the 165th Airlift Wing and the Georgia Air National Guard on being selected to field the new C-130J Super Hercules! #SharedPurpose #SharedVictory,118,20,91,0,"['#SharedPurpose', '#SharedVictory']",[],[],https://pbs.twimg.com/profile_images/1148697161275772928/WX8yOg_W_x96.jpg,https://twitter.com/TAGofGA/status/1331398668897968129,tweet_id:1331398668897968129,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-25T17:30:22.000Z,False,"On Monday, 11/30, will host a virtual Q&A for #veterans and their families. +RSVP on Facebook:",229,18,36,0,['#veterans'],"['@DeptVetAffairs', '@SecWilkie']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331651454491381764,tweet_id:1331651454491381764,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-24T22:48:31.000Z,False,Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America’s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing…,302,42,131,0,['#Savannah'],"['@165thAW', '@GeorgiaGuard']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331369133116690434,tweet_id:1331369133116690434,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-23T21:51:09.000Z,False,"When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus.",591,107,251,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1330992308452515841,tweet_id:1330992308452515841,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-18T23:09:02.000Z,False,"Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy.",635,47,89,0,['#Georgia'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1329199968960323584,tweet_id:1329199968960323584,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T18:14:05.000Z,True,"Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible.",660,49,121,0,"['#COVID19', '#CARESAct']",[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328400966845128704,tweet_id:1328400966845128704,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T16:41:08.000Z,False,Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for .,265,39,104,0,[],['@GeorgiaGuard'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328377573655638020,tweet_id:1328377573655638020,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T14:59:14.000Z,False,"Georgia veterans: VA’s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 – 6:00 p.m. + +Call 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf…",263,38,85,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328351932537253888,tweet_id:1328351932537253888,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T19:58:00.000Z,False,"#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War.",700,80,177,0,"['#TeamPerdue', '#veterans']",['@USNavy'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326615177224052736,tweet_id:1326615177224052736,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T17:30:03.000Z,False,America remains a nation worthy of envy because of our veterans and their families.,747,145,591,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326577945612328961,tweet_id:1326577945612328961,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T17:04:43.000Z,False,"The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html…",1.8K,3.1K,18K,0,['#COVID19'],['@HHSgov'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326571572237373445,tweet_id:1326571572237373445,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T14:58:59.000Z,False,Georgia’s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. ,298,64,324,0,['#VeteransDay'],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326539927811616776,tweet_id:1326539927811616776,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T00:05:43.000Z,False,"Georgia’s business-friendly climate continues to attract new jobs and investments, even during #COVID19.",276,42,149,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326315129345019911,tweet_id:1326315129345019911,@sendavidperdue +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",68,90,281,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:37:54.000Z,True,"No matter what the Obama judge says, illegal immigrants don’t have the right to own a firearm. +Foreign nationals who are in our country illegally are not Americans. Duh.",346,1.2K,4.6K,54K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770897644514095378,tweet_id:1770897644514095378,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:12:24.000Z,True,"The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies. +I’ll keep working to get Louisianians the help they need when disaster strikes.",48,23,176,10K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770891225031131487,tweet_id:1770891225031131487,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",68,90,281,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T17:30:15.000Z,True,"For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain.",114,93,442,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770865517311525371,tweet_id:1770865517311525371,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T15:11:07.000Z,True,"Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why. +Dem witness: Carbon dioxide is ""a huge part of our atmosphere."" +Me: ""It’s actually a very small part of our atmosphere."" (0.035%) +Dem witness: ""Well, okay. But, yeah. I don’t know.""",1.7K,5.1K,14K,528K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770830505417576612,tweet_id:1770830505417576612,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T14:25:13.000Z,True,Democrats' witnesses support abortion up until the moment a child is born.,382,511,1.3K,36K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770818953322869031,tweet_id:1770818953322869031,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T21:38:58.000Z,True,"Many Louisianians are still recovering from Hurricane Ida’s damage. +This $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital’s continued recovery.",53,16,134,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770565724446052422,tweet_id:1770565724446052422,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:25:09.000Z,True,Small businesses create good jobs. Big Biden government shouldn’t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them.,47,32,199,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770532046416294076,tweet_id:1770532046416294076,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:04:59.000Z,True,"Biden judge: “Assault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.” +The same Biden judge: “I am not a gun expert.”",314,1K,4K,93K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770526972122108061,tweet_id:1770526972122108061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T15:17:43.000Z,True,"Razor wire won't hurt you unless you try to go over it or through it. +So I've never understood politically why Pres. Biden wants to oppose barriers at the southern border—other than the fact that he really does believe in open borders.",203,449,2.2K,38K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770469779813331147,tweet_id:1770469779813331147,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T13:22:21.000Z,True,"Some of my Democratic colleagues call folks who are in our country illegally “undocumented Americans.” +They're not undocumented Americans. +They're foreign nationals, and they're in our country illegally.",743,1.5K,6.2K,62K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770440745930867061,tweet_id:1770440745930867061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T22:07:58.000Z,True,"Last year’s drought hammered Louisiana’s crawfish producers. + +I joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need.",102,25,231,18K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770210634321260689,tweet_id:1770210634321260689,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T21:24:50.000Z,True,"Louisiana’s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. +Here’s one thing I’m doing to make that happen:",59,9,126,15K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770199778787262538,tweet_id:1770199778787262538,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T17:40:21.000Z,True,"The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms.",104,83,317,17K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770143284020519408,tweet_id:1770143284020519408,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T19:52:19.000Z,True,"Real wages just can’t keep up with #Bidenflation. +So, hardworking Louisianians feel like they’re running a race they can’t win.",228,133,548,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769814107291537838,tweet_id:1769814107291537838,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T13:57:58.000Z,True,"It’s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. +So why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?",160,270,1.2K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769724933238628653,tweet_id:1769724933238628653,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-17T15:13:39.000Z,True,Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!,94,40,506,26K,['#StPatricksDay'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769381590163980380,tweet_id:1769381590163980380,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-15T16:20:04.000Z,True,"Sometimes I think that the Biden White House would lower the average IQ of an entire city. +You can't borrow and spend the kind of money that Pres. Biden has without causing inflation. +This is basic ECON 101.",1K,798,3.2K,72K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768673531213009330,tweet_id:1768673531213009330,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T17:41:49.000Z,True,"Why are energy costs up almost 35% under Pres. Biden? +He’s spent 3 years bowing to neo-socialists who think America has no right to be energy independent.",386,333,1.3K,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768331714156269648,tweet_id:1768331714156269648,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T15:19:08.000Z,True,TikTok hasn’t proven that the Communist Party of China doesn't have access to our data.,391,150,662,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768295805536932128,tweet_id:1768295805536932128,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T13:22:52.000Z,True,"Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can’t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4…",266,123,546,19K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768266549243035656,tweet_id:1768266549243035656,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T19:55:17.000Z,True,"Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't. +The Laken Riley Act would get criminal aliens out of our country before they victimize more Americans.",274,206,1K,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768002913798922481,tweet_id:1768002913798922481,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T18:13:01.000Z,True,"Hurricane Ida left many in southeast Louisiana without a safe place to work. +I’m grateful this $1.6M will help cover the costs of temporary offices in Houma.",48,12,115,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767977177792819370,tweet_id:1767977177792819370,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T17:03:12.000Z,True,"When waterways overflow, Louisianians’ homes and businesses are at risk of serious damage. +I’m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish.",80,15,99,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767959606997774406,tweet_id:1767959606997774406,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T15:18:17.000Z,True,"The Biden admin wants to limit Americans’ freedom to get affordable, short-term health insurance plans that fit their needs. +My Patients Choice Act would make sure bureaucrats can’t force Louisianians to pay more for insurance through Obamacare.",85,50,223,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767933204722315472,tweet_id:1767933204722315472,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T13:20:07.000Z,True,#Bidenflation is literally eating Louisianians out of house and home.,310,133,529,22K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767903468751056960,tweet_id:1767903468751056960,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T19:47:11.000Z,True,The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial.,310,696,3.1K,46K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767638487157612958,tweet_id:1767638487157612958,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:54:28.000Z,True,"Louisiana families don’t have an extra $867 to burn every month. +But that’s what #Bidenflation now costs them.",370,307,925,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767595023510405442,tweet_id:1767595023510405442,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:28:48.000Z,True,Left-of-Lenin wokers can’t wake up to reality fast enough.,29,48,220,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767588563443417263,tweet_id:1767588563443417263,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T19:09:05.000Z,True,"The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children. +Other countries are proving themselves wiser than America.",328,1.7K,6.2K,85K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767266510752407613,tweet_id:1767266510752407613,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T17:42:43.000Z,True,"Unelected bureaucrats shouldn’t be able to strip veterans of their Second Amendment rights unilaterally. +Because my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom.",151,87,533,15K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767244778054324407,tweet_id:1767244778054324407,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T16:33:04.000Z,True,"The majority of Americans support building the WALL. +Meanwhile, the Biden admin remains addicted to its open border.",467,218,1.2K,26K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767227251421016129,tweet_id:1767227251421016129,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T15:29:22.000Z,True,"Any fair-minded American knows that Pres. Biden’s guiding principle has been, “Let's do the dumbest thing possible that won't work.” + +And it’s now costing Louisiana families $9,912 every year.",394,323,1.1K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767211219310563823,tweet_id:1767211219310563823,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T18:25:56.000Z,True,"If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent.",765,1.7K,6.7K,89K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766168491407659288,tweet_id:1766168491407659288,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T15:21:28.000Z,True,Pres. Biden’s pretty words can’t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement.,345,351,1.3K,28K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766122069543018961,tweet_id:1766122069543018961,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,4/5 Pres. Biden seems to have more respect for the ‘rights’ of illegal immigrants than for those of loving parents and of unborn children.,19,25,175,5.6K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884152413299101,tweet_id:1765884152413299101,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,"5/5 The president’s policies fail because his priorities are backwards. + +Insanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course.",19,18,164,5.7K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884153860427875,tweet_id:1765884153860427875,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet.",26,20,152,5.2K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884149741617433,tweet_id:1765884149741617433,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it. + +His admin let the border wall languish and paroled MILLIONS of aliens into the country illegally.",15,22,147,5.2K,['#BidenBorderCrisis'],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884150953758727,tweet_id:1765884150953758727,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"1/5 Tonight, Louisianians will be thinking, ‘Nice try, President Biden’ because they know that he’s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime.",149,156,792,30K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884148437139802,tweet_id:1765884148437139802,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T19:08:33.000Z,True,"Any fair-minded person can see that the House’s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial.",394,502,2.8K,45K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765816825965637990,tweet_id:1765816825965637990,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T15:40:48.000Z,True,"Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers’ businesses. + +My CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables.",128,44,278,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765764545467883537,tweet_id:1765764545467883537,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-06T18:19:48.000Z,True,Kids change their minds. That’s why God gave them parents.,214,614,3.5K,49K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765442168754200620,tweet_id:1765442168754200620,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-05T18:49:50.000Z,True,"No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she’s fat. + +But gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them—all in the quest to “affirm” gender confusion.",497,2K,7.2K,112K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765087341696405867,tweet_id:1765087341696405867,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-04T21:22:15.000Z,True,"The SEC’s CAT could put the personal data of 158M Americans at risk. + +That’s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT’s privacy risks.",472,136,335,77K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1764763310199541894,tweet_id:1764763310199541894,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",68,90,280,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:37:54.000Z,True,"No matter what the Obama judge says, illegal immigrants don’t have the right to own a firearm. +Foreign nationals who are in our country illegally are not Americans. Duh.",347,1.2K,4.6K,54K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770897644514095378,tweet_id:1770897644514095378,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:12:24.000Z,True,"The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies. +I’ll keep working to get Louisianians the help they need when disaster strikes.",48,23,175,10K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770891225031131487,tweet_id:1770891225031131487,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",68,90,280,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T17:30:15.000Z,True,"For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain.",114,93,443,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770865517311525371,tweet_id:1770865517311525371,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T15:11:07.000Z,True,"Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why. +Dem witness: Carbon dioxide is ""a huge part of our atmosphere."" +Me: ""It’s actually a very small part of our atmosphere."" (0.035%) +Dem witness: ""Well, okay. But, yeah. I don’t know.""",1.7K,5.1K,14K,528K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770830505417576612,tweet_id:1770830505417576612,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T14:25:13.000Z,True,Democrats' witnesses support abortion up until the moment a child is born.,383,511,1.3K,36K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770818953322869031,tweet_id:1770818953322869031,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T21:38:58.000Z,True,"Many Louisianians are still recovering from Hurricane Ida’s damage. +This $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital’s continued recovery.",53,16,134,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770565724446052422,tweet_id:1770565724446052422,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:25:09.000Z,True,Small businesses create good jobs. Big Biden government shouldn’t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them.,47,32,199,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770532046416294076,tweet_id:1770532046416294076,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:04:59.000Z,True,"Biden judge: “Assault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.” +The same Biden judge: “I am not a gun expert.”",314,1K,4K,93K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770526972122108061,tweet_id:1770526972122108061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T15:17:43.000Z,True,"Razor wire won't hurt you unless you try to go over it or through it. +So I've never understood politically why Pres. Biden wants to oppose barriers at the southern border—other than the fact that he really does believe in open borders.",203,449,2.2K,38K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770469779813331147,tweet_id:1770469779813331147,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T13:22:21.000Z,True,"Some of my Democratic colleagues call folks who are in our country illegally “undocumented Americans.” +They're not undocumented Americans. +They're foreign nationals, and they're in our country illegally.",743,1.5K,6.2K,62K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770440745930867061,tweet_id:1770440745930867061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T22:07:58.000Z,True,"Last year’s drought hammered Louisiana’s crawfish producers. + +I joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need.",102,25,231,18K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770210634321260689,tweet_id:1770210634321260689,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T21:24:50.000Z,True,"Louisiana’s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. +Here’s one thing I’m doing to make that happen:",59,9,126,15K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770199778787262538,tweet_id:1770199778787262538,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T17:40:21.000Z,True,"The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms.",104,83,317,17K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770143284020519408,tweet_id:1770143284020519408,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T19:52:19.000Z,True,"Real wages just can’t keep up with #Bidenflation. +So, hardworking Louisianians feel like they’re running a race they can’t win.",228,133,548,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769814107291537838,tweet_id:1769814107291537838,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T13:57:58.000Z,True,"It’s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. +So why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?",160,270,1.2K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769724933238628653,tweet_id:1769724933238628653,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-17T15:13:39.000Z,True,Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!,94,40,505,26K,['#StPatricksDay'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769381590163980380,tweet_id:1769381590163980380,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-15T16:20:04.000Z,True,"Sometimes I think that the Biden White House would lower the average IQ of an entire city. +You can't borrow and spend the kind of money that Pres. Biden has without causing inflation. +This is basic ECON 101.",1K,798,3.2K,72K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768673531213009330,tweet_id:1768673531213009330,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T17:41:49.000Z,True,"Why are energy costs up almost 35% under Pres. Biden? +He’s spent 3 years bowing to neo-socialists who think America has no right to be energy independent.",386,333,1.3K,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768331714156269648,tweet_id:1768331714156269648,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T15:19:08.000Z,True,TikTok hasn’t proven that the Communist Party of China doesn't have access to our data.,391,150,662,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768295805536932128,tweet_id:1768295805536932128,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T13:22:52.000Z,True,"Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can’t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4…",266,123,546,19K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768266549243035656,tweet_id:1768266549243035656,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T19:55:17.000Z,True,"Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't. +The Laken Riley Act would get criminal aliens out of our country before they victimize more Americans.",274,206,1K,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768002913798922481,tweet_id:1768002913798922481,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T18:13:01.000Z,True,"Hurricane Ida left many in southeast Louisiana without a safe place to work. +I’m grateful this $1.6M will help cover the costs of temporary offices in Houma.",48,12,115,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767977177792819370,tweet_id:1767977177792819370,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T17:03:12.000Z,True,"When waterways overflow, Louisianians’ homes and businesses are at risk of serious damage. +I’m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish.",80,15,99,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767959606997774406,tweet_id:1767959606997774406,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T15:18:17.000Z,True,"The Biden admin wants to limit Americans’ freedom to get affordable, short-term health insurance plans that fit their needs. +My Patients Choice Act would make sure bureaucrats can’t force Louisianians to pay more for insurance through Obamacare.",85,50,223,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767933204722315472,tweet_id:1767933204722315472,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T13:20:07.000Z,True,#Bidenflation is literally eating Louisianians out of house and home.,310,133,529,22K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767903468751056960,tweet_id:1767903468751056960,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T19:47:11.000Z,True,The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial.,310,696,3.1K,46K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767638487157612958,tweet_id:1767638487157612958,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:54:28.000Z,True,"Louisiana families don’t have an extra $867 to burn every month. +But that’s what #Bidenflation now costs them.",370,307,925,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767595023510405442,tweet_id:1767595023510405442,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:28:48.000Z,True,Left-of-Lenin wokers can’t wake up to reality fast enough.,29,48,220,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767588563443417263,tweet_id:1767588563443417263,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T19:09:05.000Z,True,"The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children. +Other countries are proving themselves wiser than America.",328,1.7K,6.2K,85K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767266510752407613,tweet_id:1767266510752407613,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T17:42:43.000Z,True,"Unelected bureaucrats shouldn’t be able to strip veterans of their Second Amendment rights unilaterally. +Because my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom.",151,87,533,15K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767244778054324407,tweet_id:1767244778054324407,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T16:33:04.000Z,True,"The majority of Americans support building the WALL. +Meanwhile, the Biden admin remains addicted to its open border.",467,218,1.2K,26K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767227251421016129,tweet_id:1767227251421016129,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T15:29:22.000Z,True,"Any fair-minded American knows that Pres. Biden’s guiding principle has been, “Let's do the dumbest thing possible that won't work.” + +And it’s now costing Louisiana families $9,912 every year.",394,323,1.1K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767211219310563823,tweet_id:1767211219310563823,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T18:25:56.000Z,True,"If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent.",765,1.7K,6.7K,89K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766168491407659288,tweet_id:1766168491407659288,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T15:21:28.000Z,True,Pres. Biden’s pretty words can’t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement.,345,351,1.3K,28K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766122069543018961,tweet_id:1766122069543018961,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,4/5 Pres. Biden seems to have more respect for the ‘rights’ of illegal immigrants than for those of loving parents and of unborn children.,19,25,175,5.6K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884152413299101,tweet_id:1765884152413299101,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,"5/5 The president’s policies fail because his priorities are backwards. + +Insanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course.",19,18,164,5.7K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884153860427875,tweet_id:1765884153860427875,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet.",26,20,152,5.2K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884149741617433,tweet_id:1765884149741617433,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it. + +His admin let the border wall languish and paroled MILLIONS of aliens into the country illegally.",15,22,147,5.2K,['#BidenBorderCrisis'],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884150953758727,tweet_id:1765884150953758727,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"1/5 Tonight, Louisianians will be thinking, ‘Nice try, President Biden’ because they know that he’s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime.",149,156,792,30K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884148437139802,tweet_id:1765884148437139802,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T19:08:33.000Z,True,"Any fair-minded person can see that the House’s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial.",394,502,2.8K,45K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765816825965637990,tweet_id:1765816825965637990,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T15:40:48.000Z,True,"Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers’ businesses. + +My CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables.",128,44,278,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765764545467883537,tweet_id:1765764545467883537,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-06T18:19:48.000Z,True,Kids change their minds. That’s why God gave them parents.,214,614,3.5K,49K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765442168754200620,tweet_id:1765442168754200620,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-05T18:49:50.000Z,True,"No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she’s fat. + +But gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them—all in the quest to “affirm” gender confusion.",497,2K,7.2K,112K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765087341696405867,tweet_id:1765087341696405867,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-04T21:22:15.000Z,True,"The SEC’s CAT could put the personal data of 158M Americans at risk. + +That’s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT’s privacy risks.",472,136,335,77K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1764763310199541894,tweet_id:1764763310199541894,@SenJohnKennedy +David Perdue,@DavidPerdueGA,2022-06-24T17:11:21.000Z,True,"This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years. +As we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer.",59,31,110,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1540382081334878209,tweet_id:1540382081334878209,@DavidPerdueGA +Claire Simms Chaffins,@ClaireSChaffins,2022-05-25T00:44:08.000Z,False,WATCH: concedes the governor's race to . Perdue says he will support Kemp to make sure is not governor of Georgia. #gapol,327,94,334,0,['#gapol'],"['@DavidPerdueGA', '@BrianKempGA', '@staceyabrams', '@FOX5Atlanta']",[],https://pbs.twimg.com/profile_images/1735004883990786048/QYu5_V_m_x96.jpg,https://twitter.com/ClaireSChaffins/status/1529262004556414976,tweet_id:1529262004556414976,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T22:21:01.000Z,False,Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families.,1.2K,144,320,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529225988626087936,tweet_id:1529225988626087936,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T20:34:26.000Z,False,"The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!",182,117,587,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529199162604015619,tweet_id:1529199162604015619,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T13:26:48.000Z,False,Up next on !,112,19,98,0,[],['@AmericaNewsroom'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529091546070622215,tweet_id:1529091546070622215,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-06-24T17:11:21.000Z,True,"This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years. +As we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer.",59,31,110,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1540382081334878209,tweet_id:1540382081334878209,@DavidPerdueGA +Claire Simms Chaffins,@ClaireSChaffins,2022-05-25T00:44:08.000Z,False,WATCH: concedes the governor's race to . Perdue says he will support Kemp to make sure is not governor of Georgia. #gapol,327,94,334,0,['#gapol'],"['@DavidPerdueGA', '@BrianKempGA', '@staceyabrams', '@FOX5Atlanta']",[],https://pbs.twimg.com/profile_images/1735004883990786048/QYu5_V_m_x96.jpg,https://twitter.com/ClaireSChaffins/status/1529262004556414976,tweet_id:1529262004556414976,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T13:05:11.000Z,False,Joining and live on Fox News around 9:30 AM ET. Hope you’ll tune in!,55,8,47,0,[],"['@marthamaccallum', '@DanaPerino']",[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529086104586035201,tweet_id:1529086104586035201,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T11:20:18.000Z,False,"The polls are OPEN! +I’d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud.",488,226,748,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529059711387049984,tweet_id:1529059711387049984,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T23:38:20.000Z,False,"Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. +Please make a plan to vote tomorrow if you haven't already!",297,80,335,0,[],['@seanhannity'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528883057876692993,tweet_id:1528883057876692993,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T12:54:33.000Z,False,Abrams doesn’t care about Georgia. She wants to live in the White House. It’s up to us to make sure that NEVER happens.,307,80,206,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528721043623395329,tweet_id:1528721043623395329,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T12:48:11.000Z,False,Join us TONIGHT for a tele-rally with President Donald J. Trump!,213,163,539,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528719439327375360,tweet_id:1528719439327375360,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T23:41:02.000Z,False,President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!,130,172,458,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528158959676309509,tweet_id:1528158959676309509,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T19:17:42.000Z,False,"Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us. +Get out and vote on Tuesday, May 24th if you haven’t already!",43,55,133,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528092690893643777,tweet_id:1528092690893643777,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T00:50:05.000Z,False,Great to be with Bikers for Trump on a beautiful night in Plainville!,43,48,178,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527813947151331328,tweet_id:1527813947151331328,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T21:29:06.000Z,False,"Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th.",40,51,145,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527763369834561536,tweet_id:1527763369834561536,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T21:26:17.000Z,False,"Thank you, Mr. President! We’re pushing for a big WIN on Tuesday!",127,201,562,0,[],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527762659990544384,tweet_id:1527762659990544384,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T20:58:15.000Z,False,"Great to have my friend with us on the campaign trail in Savannah! +Sarah is an America First warrior, and I’m proud to have her support and endorsement. +Get out and vote, Georgia! Together, we will take back our state and country.",69,50,163,0,[],['@SarahPalinUSA'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527755605452144641,tweet_id:1527755605452144641,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T14:28:13.000Z,False,Started the morning with a press conference in Columbus. Next stop: Macon!,47,24,86,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527657450450694145,tweet_id:1527657450450694145,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T00:49:02.000Z,False,Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!,44,31,103,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527451297686904843,tweet_id:1527451297686904843,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-19T22:33:42.000Z,False,Couldn’t pass up the hot sign between campaign stops!,324,462,796,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527417240672423946,tweet_id:1527417240672423946,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-19T17:31:30.000Z,False,"Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th.",53,87,249,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527341187975172096,tweet_id:1527341187975172096,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T19:14:18.000Z,False,Proud to have ’s endorsement and looking forward to having her join us in Savannah on Friday!,82,70,203,0,[],['@SarahPalinUSA'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527004669536616449,tweet_id:1527004669536616449,@DavidPerdueGA +Newt Gingrich,@newtgingrich,2022-05-18T11:41:43.000Z,True,Not a good look for Gov. Kemp to have a relationship with a Soros-funded project. ,85,259,514,0,[],['@Aaron_Kliegman'],[],https://pbs.twimg.com/profile_images/722099116654923777/S7O3vYVT_x96.jpg,https://twitter.com/newtgingrich/status/1526890772724953093,tweet_id:1526890772724953093,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T13:13:05.000Z,False,Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory.,30,18,71,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526913766989996032,tweet_id:1526913766989996032,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T00:23:41.000Z,False,"Enjoyed being in Madison with the Morgan County GOP tonight! +The primary election is just ONE WEEK away. Make a plan to vote if you haven’t already!",16,16,74,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526720142423506945,tweet_id:1526720142423506945,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-17T14:35:53.000Z,False,Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!,18,21,84,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526572215931744260,tweet_id:1526572215931744260,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-17T11:35:48.000Z,False,"Great to be with the Barrow County GOP last night. +Make a plan to vote if you haven’t already! Find your early voting location at http://voteperdue.com.",3,27,58,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526526897240301568,tweet_id:1526526897240301568,@DavidPerdueGA +Just the News,@JustTheNews,2022-05-16T23:40:31.000Z,False,Georgia Gubernatorial Candidate talks about the state of the governor’s race and what issues are really driving Georgia voters this election. #Election2022Watch more #JustTheNewsNotNoise with and here https://bit.ly/3LkWTxp,7,26,60,0,"['#Election2022', '#JustTheNewsNotNoise']","['@DavidPerdueGA', '@jsolomonReports', '@AmandaHead']",['\\u27a1\\ufe0f'],https://pbs.twimg.com/profile_images/1717656521511714816/aXEveb1x_x96.jpg,https://twitter.com/JustTheNews/status/1526346889120997380,tweet_id:1526346889120997380,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-13T13:08:43.000Z,False,"Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! +When I’m Governor, we will enforce the law and deport criminal illegals.",53,63,156,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1525100729911877634,tweet_id:1525100729911877634,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-12T15:36:19.000Z,False,We need a Governor who will stand up and FIGHT!,64,57,171,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524775487012319232,tweet_id:1524775487012319232,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-12T15:03:27.000Z,False,Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!,23,18,99,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524767213609230336,tweet_id:1524767213609230336,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T19:52:37.000Z,False,Proud to have the support and endorsement of Bikers for Trump!,62,55,260,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524477599556198408,tweet_id:1524477599556198408,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:51:45.000Z,False,"Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. +Shelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that’s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html…",26,39,74,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524371683557183488,tweet_id:1524371683557183488,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:53:43.000Z,False,We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros.,10,21,45,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524372178816360448,tweet_id:1524372178816360448,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:40:55.000Z,False,"Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!",20,28,97,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524368955560894465,tweet_id:1524368955560894465,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-10T19:07:37.000Z,False,"Threatening justices, vandalizing churches — this behavior is unacceptable and has to stop now. +As Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. +Intimidation and harassment will not be tolerated.",36,39,82,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524103887107641346,tweet_id:1524103887107641346,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-10T14:28:00.000Z,False,"Head to http://VotePerdue.com to find your polling location. +Don’t wait until Election Day. Go ahead and vote early!",42,67,240,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524033516798832640,tweet_id:1524033516798832640,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-09T22:42:54.000Z,False,"If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia. +I've called on Brian Kemp to commit to doing the same. +People deserve to know where their Governor stands on this issue.",272,246,893,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523795676307546113,tweet_id:1523795676307546113,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-09T20:29:13.000Z,False,Great crowd at our meet and greet in Norcross this weekend!,36,24,125,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523762034130653184,tweet_id:1523762034130653184,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-08T12:55:11.000Z,False,"Wishing a Happy Mother’s Day to all moms, especially my beautiful wife Bonnie.",25,13,131,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523285385530339328,tweet_id:1523285385530339328,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T18:28:00.000Z,False,Great morning with the Fulton County GOP. Thank you for having me!,38,39,158,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523006754254368769,tweet_id:1523006754254368769,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T13:46:41.000Z,False,"Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections.",41,37,122,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522935956461998085,tweet_id:1522935956461998085,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T00:32:17.000Z,False,Joining live on Fox News around 9:25 PM. Tune in if you can!,59,6,63,0,[],['@seanhannity'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522736039009431552,tweet_id:1522736039009431552,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-06T19:32:25.000Z,False,"Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. + +We’re encouraging everybody across the state to get out and VOTE!",35,9,59,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522660574466822145,tweet_id:1522660574466822145,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T22:14:20.000Z,False,Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!,36,24,103,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522338937099984901,tweet_id:1522338937099984901,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T20:18:09.000Z,False,"Matthew 18:20 tells us, “For where two or three gather in my name, there am I with them.” + +Today & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer",35,18,69,0,['#NationalDayOfPrayer'],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522309697554071558,tweet_id:1522309697554071558,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T18:41:41.000Z,False,"Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!",36,31,127,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522285422008807424,tweet_id:1522285422008807424,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T13:34:20.000Z,False,"I was extremely disappointed by the Governor’s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. + +Georgia voters deserve to know where their Governor stands on this issue. (1/2)",33,32,108,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522208071421943809,tweet_id:1522208071421943809,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T13:34:20.000Z,False,"I’m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. + +You are either going to fight for the sanctity of life or you’re not. (2/2)",39,31,91,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522208072739049474,tweet_id:1522208072739049474,@DavidPerdueGA +David Perdue,@sendavidperdue,2021-01-03T16:13:50.000Z,False,"From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I’ve been focused on getting results for ALL Georgians.",3.1K,325,960,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1345765322519949315,tweet_id:1345765322519949315,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-27T21:56:21.000Z,False,". & I sent a letter on behalf of Skylar Mack, an 18-year-old student detained in the Cayman Islands, to ensure a safe return to Georgia. +We’re working alongside the U.S. Embassy & Mack’s family in calling for leniency for this young woman.",1.5K,185,621,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1343314801888530432,tweet_id:1343314801888530432,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-25T13:16:47.000Z,False,Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year.,1K,66,482,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1342459275285848064,tweet_id:1342459275285848064,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-22T05:29:31.000Z,False,"In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts. + +Today we delivered: +→ More PPP for small biz +→ 2nd round of relief checks +→ Funding for hospitals & schools +→ Efficient vaccine distribution +→ Support for farmers",2.4K,323,556,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1341254520949665798,tweet_id:1341254520949665798,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-21T17:45:25.000Z,False,"Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed. + +Chuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago. + +Statement w/ :",1.1K,186,316,0,[],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1341077326940016640,tweet_id:1341077326940016640,@sendavidperdue +David Perdue,@sendavidperdue,2021-01-03T16:13:50.000Z,False,"From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I’ve been focused on getting results for ALL Georgians.",3.1K,325,960,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1345765322519949315,tweet_id:1345765322519949315,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-27T21:56:21.000Z,False,". & I sent a letter on behalf of Skylar Mack, an 18-year-old student detained in the Cayman Islands, to ensure a safe return to Georgia. +We’re working alongside the U.S. Embassy & Mack’s family in calling for leniency for this young woman.",1.5K,185,621,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1343314801888530432,tweet_id:1343314801888530432,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-25T13:16:47.000Z,False,Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year.,1K,66,482,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1342459275285848064,tweet_id:1342459275285848064,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-19T02:42:31.000Z,True,GREAT NEWS: Two #COVID19 vaccines are now authorized for use!,515,32,164,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1340125330116374534,tweet_id:1340125330116374534,@sendavidperdue +Emory University,@EmoryUniversity,2020-12-17T20:57:22.000Z,False,"The first #COVID19 vaccine was administered at today - Thanks to everyone, including Emory researchers and healthcare professionals and vaccine trial volunteers, who helped make this amazing accomplishment possible!",123,69,280,0,['#COVID19'],['@emoryhealthcare'],[],https://pbs.twimg.com/profile_images/1148259851593801728/4b116t7M_x96.png,https://twitter.com/EmoryUniversity/status/1339676081088061443,tweet_id:1339676081088061443,@sendavidperdue +Children's,@childrensatl,2020-12-17T01:14:27.000Z,False,"Today, we received our first delivery of #COVID19 vaccines released for healthcare workers. Tomorrow, we’ll begin administering them to patient-facing employees. This is a moment of change, and we're grateful to the many teams who made this milestone delivery possible!",78,39,182,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1290709498722758661/OmApnEGd_x96.jpg,https://twitter.com/childrensatl/status/1339378390877560832,tweet_id:1339378390877560832,@sendavidperdue +GaDeptPublicHealth,@GaDPH,2020-12-16T15:30:29.000Z,False,"#GAHaveYouHeard +FACT: Vaccine testing was thorough and successful. More than 70,000 people participated in clinical trials for two vaccines. To date, the vaccines are nearly 95% effective in preventing COVID-19 with no safety concerns.https://dph.georgia.gov/covid-vaccine",78,17,35,0,['#GAHaveYouHeard'],[],[],https://pbs.twimg.com/profile_images/1358945720477364224/z0eo2lEN_x96.jpg,https://twitter.com/GaDPH/status/1339231431441190913,tweet_id:1339231431441190913,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-17T20:01:39.000Z,False,Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area.,229,21,43,0,['#Columbus'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1339662062176362497,tweet_id:1339662062176362497,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-16T00:11:40.000Z,False,Great opportunity for high school students interested in #STEM to work with researchers.,264,16,57,0,['#STEM'],['@GeorgiaTech'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1339000205014921220,tweet_id:1339000205014921220,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-14T21:26:25.000Z,False,The first shipments of #COVID19 vaccine have arrived in Georgia!,403,42,234,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1338596226883858435,tweet_id:1338596226883858435,@sendavidperdue +U.S. FDA,@US_FDA,2020-12-12T02:40:16.000Z,True,"Today, FDA issued the first emergency use authorization (EUA) for a vaccine for the prevention of #COVID19 caused by SARS-CoV-2 in individuals 16 years of age and older. The emergency use authorization allows the vaccine to be distributed in the U.S. https://fda.gov/news-events/press-announcements/fda-takes-key-action-fight-against-covid-19-issuing-emergency-use-authorization-first-covid-19…",505,2.8K,5.1K,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/773141404860162061/WK4RgHMx_x96.jpg,https://twitter.com/US_FDA/status/1337588046674489346,tweet_id:1337588046674489346,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-12T03:09:25.000Z,False,"Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year. +This is nothing short of extraordinary and a testament to the power of American ingenuity.",626,105,402,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337595385565638657,tweet_id:1337595385565638657,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-12T03:09:26.000Z,False,"As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials. +While we are one step closer to getting back to normal, our work is not done and we must all remain vigilant.",214,21,87,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337595387796983809,tweet_id:1337595387796983809,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-11T19:13:56.000Z,False,"A strong America requires a strong military. This defense bill: +→ Fully funds our military +→ Gives troops significant pay raise +→ Supports military families +→ Strengthens cybersecurity +→ Holds China accountable",379,55,173,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337475725625090050,tweet_id:1337475725625090050,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-11T18:44:36.000Z,False,"A strong America requires a strong military. +Full statement with ↓",329,48,211,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1337468343499059201,tweet_id:1337468343499059201,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-11T18:52:54.000Z,False,Statement from & me on passage of the #NDAA:,265,75,98,0,['#NDAA'],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337470431247409153,tweet_id:1337470431247409153,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-10T22:17:10.000Z,False,Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world.,218,35,259,0,['#Hanukkah'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337159448809398272,tweet_id:1337159448809398272,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-09T21:22:27.000Z,False,"Thanks to ’s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide.",219,17,56,0,[],['@FCC'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1336783289756094466,tweet_id:1336783289756094466,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T16:15:33.000Z,False,"We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay",453,41,178,0,['#PearlHarborRemembranceDay'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335981283160313867,tweet_id:1335981283160313867,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:32.000Z,False,"When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now.",1.3K,148,411,0,['#COVID19'],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955860183506945,tweet_id:1335955860183506945,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:32.000Z,False,"While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let’s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago.",260,19,79,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955861810900993,tweet_id:1335955861810900993,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:33.000Z,False,"It’s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality. + +Full statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians…",360,35,69,0,[],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955862641373185,tweet_id:1335955862641373185,@sendavidperdue +The Hill,@thehill,2020-12-04T19:04:02.000Z,True,"Sen. David Perdue praises Operation Warp Speed: ""This is remarkable what you guys did.""",779,99,287,0,[],[],[],https://pbs.twimg.com/profile_images/1649413483685871621/V_wwjDu2_x96.png,https://twitter.com/thehill/status/1334936519421865985,tweet_id:1334936519421865985,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-04T19:54:22.000Z,False,Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !,975,154,491,0,[],"['@POTUS', '@VP']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334949186605903872,tweet_id:1334949186605903872,@sendavidperdue +Mike Pence,@Mike_Pence,2020-12-04T18:25:19.000Z,True,"Honored to be at today with , , , and . Under President ’s leadership, we will have a vaccine before the end of the year!",495,254,2K,0,[],"['@CDCgov', '@CDCDirector', '@SenatorLoeffler', '@sendavidperdue', '@RepDougCollins', '@realDonaldTrump']",[],https://pbs.twimg.com/profile_images/1372291427833683972/sCIeF9RC_x96.jpg,https://twitter.com/Mike_Pence/status/1334926773251788800,tweet_id:1334926773251788800,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-04T16:36:46.000Z,True,"Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at .",521,189,1.6K,0,[],"['@VP', '@CDCgov']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334899456228159489,tweet_id:1334899456228159489,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-03T17:22:05.000Z,False,The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses.,618,80,280,0,['#RESTARTAct'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334548475187515397,tweet_id:1334548475187515397,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-03T14:49:13.000Z,False,"Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery…",212,20,65,0,['#STEM'],"['@GeorgiaTech', '@GeorgiaStateU', '@MercerYou', '@DeptofDefense']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334510003143778309,tweet_id:1334510003143778309,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-01T18:33:55.000Z,False,". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record.",454,37,68,0,['#Georgia'],['@GAPorts'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1333841777418260485,tweet_id:1333841777418260485,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-28T18:59:42.000Z,False,Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday,599,62,152,0,"['#ShopSmall', '#SmallBusinessSaturday']",[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1332761102313254916,tweet_id:1332761102313254916,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-26T14:02:34.000Z,False,"This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country.",420,44,173,0,['#Thanksgiving'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331961550169632772,tweet_id:1331961550169632772,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-26T14:01:19.000Z,False,"Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving.",411,52,446,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331961232421773319,tweet_id:1331961232421773319,@sendavidperdue +TAGofGA,@TAGofGA,2020-11-25T00:45:53.000Z,False,Congratulations to the 165th Airlift Wing and the Georgia Air National Guard on being selected to field the new C-130J Super Hercules! #SharedPurpose #SharedVictory,118,20,91,0,"['#SharedPurpose', '#SharedVictory']",[],[],https://pbs.twimg.com/profile_images/1148697161275772928/WX8yOg_W_x96.jpg,https://twitter.com/TAGofGA/status/1331398668897968129,tweet_id:1331398668897968129,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-25T17:30:22.000Z,False,"On Monday, 11/30, will host a virtual Q&A for #veterans and their families. +RSVP on Facebook:",229,18,36,0,['#veterans'],"['@DeptVetAffairs', '@SecWilkie']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331651454491381764,tweet_id:1331651454491381764,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-24T22:48:31.000Z,False,Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America’s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing…,302,42,131,0,['#Savannah'],"['@165thAW', '@GeorgiaGuard']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331369133116690434,tweet_id:1331369133116690434,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-23T21:51:09.000Z,False,"When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus.",591,107,251,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1330992308452515841,tweet_id:1330992308452515841,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-18T23:09:02.000Z,False,"Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy.",635,47,89,0,['#Georgia'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1329199968960323584,tweet_id:1329199968960323584,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T18:14:05.000Z,True,"Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible.",660,49,121,0,"['#COVID19', '#CARESAct']",[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328400966845128704,tweet_id:1328400966845128704,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T16:41:08.000Z,False,Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for .,265,39,104,0,[],['@GeorgiaGuard'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328377573655638020,tweet_id:1328377573655638020,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T14:59:14.000Z,False,"Georgia veterans: VA’s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 – 6:00 p.m. + +Call 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf…",263,38,85,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328351932537253888,tweet_id:1328351932537253888,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T19:58:00.000Z,False,"#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War.",700,80,177,0,"['#TeamPerdue', '#veterans']",['@USNavy'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326615177224052736,tweet_id:1326615177224052736,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T17:30:03.000Z,False,America remains a nation worthy of envy because of our veterans and their families.,747,145,591,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326577945612328961,tweet_id:1326577945612328961,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T17:04:43.000Z,False,"The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html…",1.8K,3.1K,18K,0,['#COVID19'],['@HHSgov'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326571572237373445,tweet_id:1326571572237373445,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T14:58:59.000Z,False,Georgia’s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. ,298,64,324,0,['#VeteransDay'],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326539927811616776,tweet_id:1326539927811616776,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T00:05:43.000Z,False,"Georgia’s business-friendly climate continues to attract new jobs and investments, even during #COVID19.",276,42,149,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326315129345019911,tweet_id:1326315129345019911,@sendavidperdue +Joni Ernst,@SenJoniErnst,2024-03-21T22:06:59.000Z,True,"EVs are a road to nowhere. + +Biden knows it, but still doubles down on his out-of-touch mandates.",42,12,53,3.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770935163309973702,tweet_id:1770935163309973702,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T21:24:29.000Z,True,"Regulations and red tape are crushing America’s #smallbiz. + +I’m working to ensure entrepreneurs get a fair shake — glad to see my Prove It Act gain momentum in !",13,2,12,1.7K,['#smallbiz'],['@JudiciaryGOP'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770924464865226783,tweet_id:1770924464865226783,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T21:07:25.000Z,True,"The location of the COFA nations in the Indo-Pacific is critical to combatting China. +By increasing our partnership with these islands through my CONVENE Act, the U.S. can better deter CCP aggression and keep Americans safe.",4,2,11,1.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770920171093307562,tweet_id:1770920171093307562,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T20:23:11.000Z,True,"President Biden has created this invasion on our southern border. +But walls work — let’s build it and finish it!",60,28,91,5.2K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770909039523750150,tweet_id:1770909039523750150,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T19:17:49.000Z,True,"No more abuse of taxpayer dollars at USAID. + +My bipartisan bill will bolster local partnerships, so developing countries reduce their dependence on U.S. dollars.",10,3,24,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770892587970310318,tweet_id:1770892587970310318,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T22:06:59.000Z,True,"EVs are a road to nowhere. + +Biden knows it, but still doubles down on his out-of-touch mandates.",42,12,53,3.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770935163309973702,tweet_id:1770935163309973702,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T21:24:29.000Z,True,"Regulations and red tape are crushing America’s #smallbiz. + +I’m working to ensure entrepreneurs get a fair shake — glad to see my Prove It Act gain momentum in !",13,2,12,1.7K,['#smallbiz'],['@JudiciaryGOP'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770924464865226783,tweet_id:1770924464865226783,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T21:07:25.000Z,True,"The location of the COFA nations in the Indo-Pacific is critical to combatting China. +By increasing our partnership with these islands through my CONVENE Act, the U.S. can better deter CCP aggression and keep Americans safe.",4,2,11,1.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770920171093307562,tweet_id:1770920171093307562,@SenJoniErnst +Tim Scott,@SenatorTimScott,2024-03-21T18:09:43.000Z,True,"Thank you for your support for the bill I’m leading with to protect lenders while saving taxpayer dollars. + +We don’t need more bad ideas from Washington. We need commonsense that works for Americans.",26,15,110,11K,[],"['@SenJoniErnst', '@SenJohnKennedy']",[],https://pbs.twimg.com/profile_images/1559198679084449792/Ct9DQdw1_x96.jpg,https://twitter.com/SenatorTimScott/status/1770875452673995019,tweet_id:1770875452673995019,@SenJoniErnst +Chuck Grassley,@ChuckGrassley,2024-03-21T16:38:58.000Z,True,HAPPY Natl Women in Ag Day Iowa has over 50K female producers & added over 1K since 2017 That’s gr8 news Women play an essential role in ag + I was proud 2 support Sen Ernst’s bipart effort to recognize their achievements & success,29,9,45,9.7K,[],[],[],https://pbs.twimg.com/profile_images/1758154158736105472/YkmwaqKG_x96.jpg,https://twitter.com/ChuckGrassley/status/1770852611593297996,tweet_id:1770852611593297996,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T16:27:40.000Z,True,"Energy security is national security. + +That’s why I’m safeguarding our strategic supply of oil from benefitting our adversaries or CCP-controlled businesses.",4,0,5,966,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770849768236810460,tweet_id:1770849768236810460,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T15:10:01.000Z,True,"Growing up on my family farm in southwest Iowa, I understand the triumphs and challenges that come with being a woman in agriculture. + +I’m proud to designate today as National Women in Ag Day – and have all the women of the Senate join me! ",17,6,25,1.9K,[],[],['\\U0001f469\\U0001f3fb\\u200d\\U0001f33e'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770830226177622399,tweet_id:1770830226177622399,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T13:36:26.000Z,True,"Growing up, hunting was ingrained in me at an early age. +As I work to support #2A rights, preserve shooting sports for the next generation, and stop the Biden admin targeting the gun industry with my #FIREARMAct, I am proud to be recognized by !",58,41,196,13K,"['#2A', '#FIREARMAct']",['@NSSF'],['\\U0001f3af'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770806675286417881,tweet_id:1770806675286417881,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T20:29:04.000Z,True,"Biden’s ATF must stop bending the law to fit their gun-grabbing policies. + +It’s time to end “knock and talk” without a warrant. #2A",40,10,37,2.7K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770548131920261394,tweet_id:1770548131920261394,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T18:35:53.000Z,True,"Today, I’ll be standing up for #smallbiz and demanding answers directly from . + +TUNE IN TO ",2,2,7,1.3K,['#smallbiz'],"['@SBAIsabel', '@SmallBizCmteGOP']",['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770519647034474841,tweet_id:1770519647034474841,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T17:16:48.000Z,True,"Great to have in DC during #IowaAgWeek! +Thankful for all they do to invest in the people, progress, and pride of Iowa.",10,1,24,1.8K,['#IowaAgWeek'],['@IowaFarmBureau'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770499747305922837,tweet_id:1770499747305922837,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T15:49:53.000Z,True,"Biden’s EV mandate is a road to nowhere. +His new rule forces Iowans to comply with his green agenda, wastes more taxpayer dollars, and makes us more reliant on China and slave labor.",20,4,19,3.3K,[],[],['\\U0001f6a8'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770477874908168579,tweet_id:1770477874908168579,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T15:02:53.000Z,True,"Enforcing the laws at our border keeps our country safe. + +I wish we had a President that agreed.",32,5,33,3.7K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770466047222493235,tweet_id:1770466047222493235,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T12:47:22.000Z,True,Love to see Iowans supporting our communities this #IowaAgWeek!,10,1,9,3.3K,['#IowaAgWeek'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770431941738688828,tweet_id:1770431941738688828,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T21:31:17.000Z,True,Happy #NationalAgricultureDay to all of Iowa’s farmers and producers. ,10,2,18,1.8K,['#NationalAgricultureDay'],[],"['\\U0001f33e', '\\U0001f437', '\\U0001f33d', '\\U0001f69c', '\\U0001f413']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770201399978053701,tweet_id:1770201399978053701,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T19:27:09.000Z,True,"After Ecohealth funneled tax $ to the Wuhan Lab, it’s clear they can’t be trusted — with dollars or dangerous diseases. +We must stop more taxpayer funds from being sent to Ecohealth before they are used to make the world a less safe place. #makeemsqueal",16,24,63,2.6K,['#makeemsqueal'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770170164287324601,tweet_id:1770170164287324601,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T17:48:24.000Z,True,"As the top egg producing state in the nation, it’s always #PoultryDay in Iowa! + +I’ll always:Support the integrity of real eggsImprove resources for animal disease preparedness to combat avian flu",12,3,15,1.9K,['#PoultryDay'],[],"['\\U0001f373', '\\U0001f95a', '\\U0001f413', '\\U0001f423', '\\U0001f414', '\\U0001f357']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770145312474046643,tweet_id:1770145312474046643,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T16:04:39.000Z,True,What’s hiding in Biden’s budget?New taxes on traditional energy sourcesMore funding for ATF to advance a gun-grabbing agendaTax hikes for #smallbiz,16,6,21,2K,['#smallbiz'],[],"['\\u274c', '\\u274c', '\\u274c']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770119200305995862,tweet_id:1770119200305995862,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T14:14:10.000Z,True,"Biden’s trade strategy is failing Iowa farmers. +I’m calling on the Biden admin to reverse their trend of decline and increase #ag exports ",19,10,34,3.3K,['#ag'],[],['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770091395983798557,tweet_id:1770091395983798557,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T13:02:53.000Z,True,"Biden’s ATF has had it out for gun owners since day one, even preventing small businesses from making a living. + +My FIREARM Act supports law-abiding Iowa gun dealers, so they don’t have to live in fear of their #2A rights being stripped.",53,15,68,3.1K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770073456752619665,tweet_id:1770073456752619665,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T22:56:31.000Z,True,"We must bring American hostages home immediately. + +Qatar should come to the table and hold Hamas accountable. + +Every second counts.",38,32,92,3.4K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769860462219293167,tweet_id:1769860462219293167,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T21:34:46.000Z,True,"We need more FARM in the Farm Bill! + +Pass it on. #AgWeek",20,10,39,3.3K,['#AgWeek'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769839889523085531,tweet_id:1769839889523085531,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T19:49:25.000Z,True,"China is on our shores, spying on critical military installations. + +They’re in our backyard, buying up U.S. farmland. + +And the CCP has infiltrated millions of American lives through TikTok. + +We must take action to counter our adversary’s influence in our homeland.",59,13,39,10K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769813379256865219,tweet_id:1769813379256865219,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T18:17:43.000Z,True,"Biden’s budget proposal would add over $16 trillion to the debt. + +Americans are already suffering from #Bidenflation, we shouldn’t throw gas on the fire!",14,7,30,2.3K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769790301156053470,tweet_id:1769790301156053470,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T15:22:02.000Z,True,"I’m proud to support the Laken Riley Act. + +There should be no more delay in the Senate. + +We must protect Americans from illegal immigrants – before we lose another life.",94,27,119,5.2K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769746088087736736,tweet_id:1769746088087736736,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T01:02:15.000Z,True,"Agriculture shapes our way of life in Iowa. +This #AgWeek, I’m grateful for all the farmers, ranchers, and producers who contribute so much to our economy and the world! ",10,2,37,3.7K,['#AgWeek'],[],"['\\U0001f437', '\\U0001f69c', '\\U0001f33e', '\\U0001f413', '\\U0001f33d']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769529717269422112,tweet_id:1769529717269422112,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-17T22:21:02.000Z,True,Hamas needs to release American hostages immediately.,246,105,420,21K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769489144332353715,tweet_id:1769489144332353715,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-17T17:44:35.000Z,True,"Biden's open border is an open invitation for Iran-backed terrorists to infiltrate our homeland. +This will only get worse until Biden secures the border.",136,40,109,20K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769419576058544352,tweet_id:1769419576058544352,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-16T18:44:15.000Z,True,"While unions fight tooth and nail to prevent bureaucrats from returning to the office, I’m protecting taxpayer dollars from funding inefficient agency practices.",34,5,25,2.7K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769072204325490707,tweet_id:1769072204325490707,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T21:52:00.000Z,True,"Schumer should be focused on supporting Israel to defeat Hamas, instead of speaking words that play into the terrorists’ hands.",137,35,155,6.4K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768757064262639748,tweet_id:1768757064262639748,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T19:18:13.000Z,True,"This #SunshineWeek, I shined a light on government waste by:Exposing the Biden admin’s secret spendingExpanding my oversight of inefficient teleworkHolding agencies accountable for bureaucrats’ union activities on the clock +And I’m just getting started! #makeemsqueal",14,3,20,2K,"['#SunshineWeek', '#makeemsqueal']",[],"['\\u2600\\ufe0f', '\\u2600\\ufe0f', '\\u2600\\ufe0f']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768718364354990143,tweet_id:1768718364354990143,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T17:30:05.000Z,True,"No matter how he tries to spin it — Leader Schumer is dictating how and when another country’s elections should be. + +He has turned his back on fully supporting Israel after one of the worst attacks in its history.",136,21,108,16K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768691148267168236,tweet_id:1768691148267168236,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T16:18:24.000Z,True,"As winter is coming to an end, it’s #SunshineWeek! +I’m shining the light on government waste to save taxpayer $.",19,5,26,1.9K,['#SunshineWeek'],[],['\\u2600\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768673109345796357,tweet_id:1768673109345796357,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T15:37:43.000Z,True,Agreed – Biden’s EV fantasy is a road to nowhere.,18,2,21,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768662871947329716,tweet_id:1768662871947329716,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T21:25:35.000Z,True,Bureaucrats when they find out wants to double the number of hours they have to work every week.,21,4,33,6.2K,[],['@SenSanders'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768388027963920840,tweet_id:1768388027963920840,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T20:24:43.000Z,True,"Biden’s bureaucrats are working on behalf of themselves while secretly billing taxpayers for union activities. + +Every cent of Iowans' hard-earned tax dollars should be serving Iowans.",27,9,32,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768372710285902219,tweet_id:1768372710285902219,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T19:20:13.000Z,True,"Schumer should be ashamed for turning his back on our greatest ally in the Middle East. +While he gives lip service to Israel, his statements today show he will follow in lockstep with terrorist sympathizers while American lives are on the line. +Words have consequences.",92,60,227,5.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768356476018471029,tweet_id:1768356476018471029,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T17:12:24.000Z,True,"Chuck Schumer is more concerned with dictating Israel’s elections than supporting our ally. +So much for standing with the Jewish Community!",217,58,238,15K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768324310463045988,tweet_id:1768324310463045988,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T16:48:52.000Z,True,"This #SunshineWeek, I’m shining a light on the Biden admin’s secret spending. ",14,11,28,2.2K,['#SunshineWeek'],[],['\\u2600\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768318389649383596,tweet_id:1768318389649383596,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T15:40:28.000Z,True,"Unbelievable — the Biden admin is doubling down on putting billions into the hands of Iran and its terrorist proxies. + +Our Commander-in-Chief is continuing to prioritize our adversaries over American lives.",43,65,132,7.8K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768301175231635841,tweet_id:1768301175231635841,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T15:27:09.000Z,True,"#Bidenflation is no joke. + +Since Biden took office, prices are skyrocketing across the board:Food is up over 20%Energy is up over 34%Rent is up over 19%",46,10,42,3.8K,['#Bidenflation'],[],"['\\U0001f4c8', '\\U0001f4c8', '\\U0001f4c8']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768297825886970119,tweet_id:1768297825886970119,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T15:06:56.000Z,True,"Chinese migrants are using CCP-backed TikTok to take advantage of Biden’s open border and infiltrate the U.S. illegally. + +Our national security cannot be undermined any longer.",49,34,70,4.2K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768292736229134824,tweet_id:1768292736229134824,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T22:15:00.000Z,True,"It’s a sorry state of affairs when most Americans fail to realize Hamas is holding our own citizens hostage. + +They need to get their facts straight and condemn Hamas.",103,38,134,6.6K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768038075332956385,tweet_id:1768038075332956385,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T21:38:53.000Z,True,"USAID tried to hide from me what it was doing with taxpayer dollars for months. + +Samantha Power should take a look in the mirror before pointing the finger at Israel.",23,11,44,4.6K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768028985227710664,tweet_id:1768028985227710664,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T21:16:25.000Z,True,"I’m rooting for all the young Iowans participating in the upcoming Eastern Iowa Science and Engineering Fair. + +Their futures are bright! ",4,1,16,1.8K,[],[],"['\\U0001f52c', '\\U0001f9ea']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768023332664832098,tweet_id:1768023332664832098,@SenJoniErnst +Danielle Handlogten,@Handlog10,2024-03-18T14:51:24.000Z,False,"Our entire family is overcome with gratitude for Micah’s coaching staff, his teammates, UF and UF athletics, Gator Nation, the Auburn program/fan base, the SEC family who has rallied around us, and the and the incredible medical staff at Vanderbilt University.",5,18,323,18K,[],[],[],https://pbs.twimg.com/profile_images/1612987450132930560/YFb4UHl3_x96.jpg,https://twitter.com/Handlog10/status/1769738379292254442,tweet_id:1769738379292254442,@BenSasse +Ben Sasse,@BenSasse,2024-03-16T04:17:58.000Z,True,a good night in Nashville,3,4,101,50K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1768854194239189373,tweet_id:1768854194239189373,@BenSasse +Ben Sasse,@BenSasse,2024-03-10T20:38:31.000Z,True,"Amazing, again (and again)",6,1,49,27K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1766926631115829561,tweet_id:1766926631115829561,@BenSasse +Ben Sasse,@BenSasse,2024-03-05T23:32:34.000Z,False," our exchange students. +Three today have called their time in G’ville +“the best year of their lives”",10,11,266,44K,[],[],['\\u2764\\ufe0f'],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1765158494775255356,tweet_id:1765158494775255356,@BenSasse +Ben Sasse,@BenSasse,2024-03-16T04:17:58.000Z,True,a good night in Nashville,3,4,101,50K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1768854194239189373,tweet_id:1768854194239189373,@BenSasse +Ben Sasse,@BenSasse,2024-03-03T01:58:37.000Z,True,Same.,6,6,153,80K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764108083700064557,tweet_id:1764108083700064557,@BenSasse +Ben Sasse,@BenSasse,2024-03-03T00:01:57.000Z,True,checks out…,5,5,82,42K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764078722485760189,tweet_id:1764078722485760189,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:56:01.000Z,False,#LoveYourPassion,16,5,267,49K,['#LoveYourPassion'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764077231498723412,tweet_id:1764077231498723412,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:53:17.000Z,True,Dude is special,1,1,42,24K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764076542735392938,tweet_id:1764076542735392938,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:51:12.000Z,False,Moly….,4,1,50,32K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764076018564784159,tweet_id:1764076018564784159,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:42:51.000Z,True,Go Gators!,7,0,30,23K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764073915444293967,tweet_id:1764073915444293967,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:39:40.000Z,False,(This isn’t the only reason),2,2,23,55K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764073114890117136,tweet_id:1764073114890117136,@BenSasse +Ben Sasse,@BenSasse,2024-02-25T18:55:37.000Z,False,12-5. #GatorsSweep,9,2,52,14K,['#GatorsSweep'],[],['\\U0001f40a'],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761827304559255780,tweet_id:1761827304559255780,@BenSasse +Historic Vids,@historyinmemes,2024-02-24T19:56:00.000Z,True,"This MIT student surfs the entire internet using his mind, silently Googling questions and receiving answers through skull vibrations",856,6.5K,43K,14M,[],[],[],https://pbs.twimg.com/profile_images/1648334723725361152/ev7V1230_x96.jpg,https://twitter.com/historyinmemes/status/1761480112560812285,tweet_id:1761480112560812285,@BenSasse +Ben Sasse,@BenSasse,2024-02-24T20:08:35.000Z,False, ,13,5,255,25K,[],[],"['\\U0001f40a', '\\U0001f40a', '\\U0001f40a']",https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761483280312893803,tweet_id:1761483280312893803,@BenSasse +Ben Sasse,@BenSasse,2024-02-24T19:11:09.000Z,False,At the tape…we have a best baby—>,1,2,21,15K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761468825315205374,tweet_id:1761468825315205374,@BenSasse +Ben Sasse,@BenSasse,2024-02-24T18:51:30.000Z,False,Let’s Gooooo!,8,3,70,17K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761463883569447136,tweet_id:1761463883569447136,@BenSasse +Ben Sasse,@BenSasse,2024-02-23T02:37:35.000Z,True,#Merica,10,24,249,37K,['#Merica'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1760856401264455995,tweet_id:1760856401264455995,@BenSasse +Tom's Old Days,@sigg20,2024-02-22T14:57:57.000Z,False,"#OTD 1980 A game that will never be forgotten,Al Michaels Classic Call,at the end of the Unbelievable USA vs USSR Upset at the 1980 Olympics.#USA #Olympics #LakePlacid #Hockey #1980s #MiracleonIce",35,105,549,42K,"['#OTD', '#USA', '#Olympics', '#LakePlacid', '#Hockey', '#1980s', '#MiracleonIce']",[],[],https://pbs.twimg.com/profile_images/1553829740846452736/hL4SfqHR_x96.jpg,https://twitter.com/sigg20/status/1760680329654997084,tweet_id:1760680329654997084,@BenSasse +Barstool Florida,@UFBarstool,2024-02-22T00:17:03.000Z,False,If you ain’t doing this are you a real Gator,10,45,600,42K,[],[],[],https://pbs.twimg.com/profile_images/893119650984189953/bmVhEz3I_x96.jpg,https://twitter.com/UFBarstool/status/1760458645148446993,tweet_id:1760458645148446993,@BenSasse +Ben Sasse,@BenSasse,2024-02-21T00:02:55.000Z,False,"Am in a barbershop… +old dude customer: “I’m getting married on March 30.” +old dude barber: “Why?” +customer, earnestly trying to answer… +barber, interrupting: “Does she have a boat?”",10,16,290,45K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1760092701628801263,tweet_id:1760092701628801263,@BenSasse +Barstool Florida,@UFBarstool,2024-02-17T12:17:16.000Z,True,GRANT HOLLOWAY BREAKS HIS OWN WORLD RECORD ,7,109,1.1K,53K,[],[],"['\\U0001f40a', '\\U0001f410']",https://pbs.twimg.com/profile_images/893119650984189953/bmVhEz3I_x96.jpg,https://twitter.com/UFBarstool/status/1758827955306791049,tweet_id:1758827955306791049,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T13:08:22.000Z,False,"(Note to self: +gotta teach him about the leprosy stuff)",5,0,34,30K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1757028875169669509,tweet_id:1757028875169669509,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T13:07:35.000Z,False,$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester,2,2,23,42K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1757028677592695138,tweet_id:1757028677592695138,@BenSasse +Mary Katharine Ham,@mkhammer,2024-02-12T02:39:21.000Z,True,I KNOW YOU THINK ‘YELLING FIRE IN A CROWDED THEATER’ IS AN EXCEPTION TO FREE SPEECH BUT IT’S ACTUALLY NOT & WHEN YOU REFERENCE IT APPROVINGLY YOU’RE INADVERTENTLY SIDING W/ A HOLMES COURT THAT THOUGHT SOCIALISTS DISTRIBUTING FLYERS OPPOSING THE DRAFT FOR WWI WAS ILLEGAL.,31,158,874,60K,[],[],[],https://pbs.twimg.com/profile_images/1690975848/MK_Dancing_x96.jpg,https://twitter.com/mkhammer/status/1756870579146072534,tweet_id:1756870579146072534,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T04:08:46.000Z,False,"one of my college daughters: +“Is Travis Kelce literally a golden retriever?”",7,9,177,33K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756893078370021495,tweet_id:1756893078370021495,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T03:16:15.000Z,False,Bonus football!,7,2,91,23K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756879863170953369,tweet_id:1756879863170953369,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T03:08:36.000Z,True,(well played),1,0,86,37K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756877937016557956,tweet_id:1756877937016557956,@BenSasse +Super 70s Sports,@Super70sSports,2024-02-12T01:38:26.000Z,True,J.J. Watt looks like he’s about to give a toast at a wedding and go completely off-script with at least one story that will contribute to the eventual divorce.,397,1.2K,15K,1.1M,[],[],[],https://pbs.twimg.com/profile_images/1051617372489035776/EbLsBBhc_x96.jpg,https://twitter.com/Super70sSports/status/1756855247970922517,tweet_id:1756855247970922517,@BenSasse +Ben Sasse,@BenSasse,2024-02-10T22:06:52.000Z,False,“…ravaging people's ingesting and causing many to defecate bodily”??,16,6,31,30K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756439615366406241,tweet_id:1756439615366406241,@BenSasse +Ben Sasse,@BenSasse,2024-02-10T22:02:49.000Z,False,"‘Merican innovation is alive and well +—>",4,7,60,53K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756438597421383945,tweet_id:1756438597421383945,@BenSasse +Ben Sasse,@BenSasse,2024-02-10T21:54:39.000Z,False,anyone hear him call glass?,6,0,52,30K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756436541675557182,tweet_id:1756436541675557182,@BenSasse +Ben Sasse,@BenSasse,2024-02-03T07:17:22.000Z,False,,7,1,21,13K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1753679053033296206,tweet_id:1753679053033296206,@BenSasse +Ben Sasse,@BenSasse,2024-02-02T19:25:38.000Z,False,,4,3,49,13K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1753499939441709509,tweet_id:1753499939441709509,@BenSasse +Ben Sasse,@BenSasse,2024-02-02T18:25:45.000Z,False,,8,0,13,16K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1753484870192697515,tweet_id:1753484870192697515,@BenSasse +Barstool Florida,@UFBarstool,2024-02-01T03:27:51.000Z,False,STROLLED INTO RUPP AND LEFT VICTORIOUS. BIGGEST WIN OF THE SEASON. RANK US.,9,135,1.3K,42K,[],[],[],https://pbs.twimg.com/profile_images/893119650984189953/bmVhEz3I_x96.jpg,https://twitter.com/UFBarstool/status/1752896515687805423,tweet_id:1752896515687805423,@BenSasse +OnlyGators.com: Florida Gators news,@onlygators,2024-02-01T03:23:01.000Z,False,"FINAL: Florida #Gators battle back to win 94-91 in overtime at No. 10 Kentucky.First road win over an AP top 10 team in 7,694 days (Jan. 7, 2003).First road win over top-10 UK inside Rupp Arena in 26 years (Feb. 1, 1998).",11,104,806,37K,['#Gators'],[],"['\\U0001f6a8', '\\U0001f40a', '\\U0001f3c0', '\\U0001f538', '\\U0001f538']",https://pbs.twimg.com/profile_images/1706485241437687808/9WvwGyvB_x96.jpg,https://twitter.com/onlygators/status/1752895300836925451,tweet_id:1752895300836925451,@BenSasse +Ole Miss Men’s Basketball,@OleMissMBB,2024-01-31T03:07:31.000Z,False,Like/RT if you love Kyle #HottyToddy x #BuildTheCulture,33,456,1.9K,343K,"['#HottyToddy', '#BuildTheCulture']",[],['\\U0001faf6'],https://pbs.twimg.com/profile_images/1762142069429272576/FRHPE2Qh_x96.jpg,https://twitter.com/OleMissMBB/status/1752529013623435335,tweet_id:1752529013623435335,@BenSasse +Ben Sasse,@BenSasse,2024-01-30T20:38:21.000Z,False,"Thanks for the ride, + +SpaceX launches UF/IFAS microbiology experiment to ISS today - News",7,8,110,16K,[],['@elonmusk'],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1752431075807101217,tweet_id:1752431075807101217,@BenSasse +Super 70s Sports,@Super70sSports,2024-01-29T20:02:16.000Z,True,Presenting the worst answer in the history of Jeopardy …,127,213,1.7K,268K,[],[],[],https://pbs.twimg.com/profile_images/1051617372489035776/EbLsBBhc_x96.jpg,https://twitter.com/Super70sSports/status/1752059607915045285,tweet_id:1752059607915045285,@BenSasse +Ben Sasse,@BenSasse,2024-01-30T03:31:03.000Z,False,"Come to Florida, they said… +Woman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago – NBC 6",17,9,106,31K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1752172545929863476,tweet_id:1752172545929863476,@BenSasse +Ben Sasse,@BenSasse,2024-01-28T03:09:32.000Z,False,#LoveYourPassion,14,0,72,45K,['#LoveYourPassion'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1751442355050189141,tweet_id:1751442355050189141,@BenSasse +Ben Sasse,@BenSasse,2024-01-27T18:38:01.000Z,False,there’s more where that came from —>,2,0,24,16K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1751313629377417341,tweet_id:1751313629377417341,@BenSasse +Ben Sasse,@BenSasse,2024-01-27T18:00:12.000Z,False,#FloridaMan rocks,23,7,95,23K,['#FloridaMan'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1751304112031838656,tweet_id:1751304112031838656,@BenSasse +Ben Sasse,@BenSasse,2024-01-25T02:33:50.000Z,False,#LoveYourPassion,16,5,216,60K,['#LoveYourPassion'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1750346209904980113,tweet_id:1750346209904980113,@BenSasse +Ben Sasse,@BenSasse,2024-01-25T01:44:25.000Z,True,10-1 odds this is florida,23,5,206,73K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1750333770584961065,tweet_id:1750333770584961065,@BenSasse +Ben Sasse,@BenSasse,2024-01-23T02:20:51.000Z,False,"Yes. +Thank you for the question, karen",9,2,44,44K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1749618162960662889,tweet_id:1749618162960662889,@BenSasse +Ben Sasse,@BenSasse,2024-01-23T02:09:33.000Z,True,six days with no football is wrong,17,3,77,47K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1749615319247675428,tweet_id:1749615319247675428,@BenSasse +Barstool Sports,@barstoolsports,2024-01-22T23:37:01.000Z,True,The Korean call of the Tyler Bass miss fucking ROCKS,834,9.3K,81K,7.6M,[],[],[],https://pbs.twimg.com/profile_images/1222128514624892935/zC0ABl3m_x96.jpg,https://twitter.com/barstoolsports/status/1749576935519265005,tweet_id:1749576935519265005,@BenSasse +Ben Sasse,@BenSasse,2024-01-23T02:04:39.000Z,False,"that’s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries…)",4,1,19,36K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1749614088190083151,tweet_id:1749614088190083151,@BenSasse +Senator Brian Schatz,@SenBrianSchatz,2024-03-22T14:19:47.000Z,True,"This week’s National Women’s History Month highlight is Rell Sunn, the “Queen of Mākaha” and a legend in the world of surfing. (1/x)",1,2,18,875,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1771179976030671007,tweet_id:1771179976030671007,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-22T14:22:07.000Z,True,"Even after receiving a serious cancer diagnosis, Rell continued to surf and give back to Hawai‘i for another 15 years until her passing. In her final years, she spearheaded a counseling program for breast cancer patients in the state. (6/x)",1,0,3,352,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1771180561261846761,tweet_id:1771180561261846761,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-22T14:24:30.000Z,True,Rell wasn’t just an elite surfer and a pioneer in the sport for women—she was a champion of her community who embodied the spirit of aloha in every aspect of her life. Her legacy will continue to inspire us for generations. (7/7),0,1,5,272,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1771181160762102101,tweet_id:1771181160762102101,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T22:16:33.000Z,True,"I got to meet with students from ‘Iolani School, Maui High School, and Kaua‘i High School today. Our future is bright with these students—they had lots of insightful questions about what we're working on in Congress and issues in Hawai‘i. +Mahalo for making the trip to DC!",6,3,19,874,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770575182521897279,tweet_id:1770575182521897279,@SenBrianSchatz +Senate Democrats,@SenateDems,2024-03-20T18:00:27.000Z,True,"Now Happening: Senate Democrats are speaking with the press. + +Live remarks from , , , and here:",29,55,117,16K,[],"['@SenSchumer', '@PattyMurray', '@SenStabenow', '@SenBrianSchatz']",[],https://pbs.twimg.com/profile_images/1518618855458971649/EAp2b8sB_x96.jpg,https://twitter.com/SenateDems/status/1770510730648793478,tweet_id:1770510730648793478,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T17:29:54.000Z,True,The historic funding we secured for Native housing and transportation is going to make a huge difference in Native communities—but we can't fix generations of injustice in one bill.,2,7,16,951,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770503044985200674,tweet_id:1770503044985200674,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T17:30:04.000Z,True,"We have a trust responsibility to Native communities, and we're working in the Senate to bring us closer to fulfilling it.",1,0,5,398,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770503084877226059,tweet_id:1770503084877226059,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T00:43:30.000Z,True,"Had a productive meeting with President of the Federated States of Micronesia, Wesley Simina +We discussed how we can work together on key issues in our vital partnership, like implementing the COFA agreement & ensuring US military vets in Micronesia get the benefits they deserve",1,3,18,1.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770249774966436058,tweet_id:1770249774966436058,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T00:43:55.000Z,True,The US has a unique and important relationship with FSM—it's one of our closest allies. Mahalo to President Simina for making the trip to Washington and working to help us keep our partnership strong.,0,0,4,593,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770249880071553331,tweet_id:1770249880071553331,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-19T21:09:01.000Z,True,It was great to meet with students from Mililani Mauka and Ka‘elepulu Elementary Schools today during their trip to the Capitol. They had good questions about what it's like to be a US Senator and how we work together in Congress to get things done. Mahalo for visiting!,1,3,22,1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770195796937318423,tweet_id:1770195796937318423,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-18T23:05:18.000Z,True,"The $1.3B in funding we secured for Native housing is historic. It's a 30% increase that will greatly improve access to affordable homes for Native families—but it's still not enough + +We're working every day in to deliver Native communities the funding they need",6,5,23,1.4K,[],['@IndianCommittee'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1769862672651046927,tweet_id:1769862672651046927,@SenBrianSchatz +"The.Ink, from Anand Giridharadas",@AnandWrites,2024-03-16T15:21:55.000Z,False,“It is hard to defend sending bombs and then sending food aid to follow up.”,0,21,58,8.4K,[],[],[],https://pbs.twimg.com/profile_images/1305938381382316034/HYM4tc5X_x96.jpg,https://twitter.com/AnandWrites/status/1769021285537849611,tweet_id:1769021285537849611,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T18:33:40.000Z,True,". is obstructing the fight against climate change. +For years they've quietly propped up Big Oil, even after making a big show of creating a climate task force—which turned out to be a sham. +It's textbook greenwashing. They're not fooling anyone.",12,4,23,1K,[],['@USChamber'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768707150870679899,tweet_id:1768707150870679899,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:24:44.000Z,True,"This week’s National Women’s History Month highlight is Jean King, the first woman to be elected Lieutenant Governor in Hawai‘i history. (1/x)",2,3,19,1.2K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768629404622606807,tweet_id:1768629404622606807,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:26:42.000Z,True,"She was pivotal in passing the first versions of the Shoreline Protection Act and the State Sunshine Law, statutes now viewed as foundational to improving environmental conservation and increasing governmental transparency. (3/x)",1,1,4,521,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768629898799624623,tweet_id:1768629898799624623,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:27:15.000Z,True,"Jean King’s legacy continues to serve as an inspiration for those in public service, and the impact of her work will continue to be felt for generations to come. (4/4)",1,0,4,487,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768630039489225023,tweet_id:1768630039489225023,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:26:05.000Z,True,"After her historic election, Jean King used her position to make critical progress on a number of issues in Hawai‘i. She left her mark as a fearless trailblazer for women in Hawai‘i politics, a compassionate leader, & a champion for affordable housing & environmental policy (2/x)",1,0,2,121,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768629747095888197,tweet_id:1768629747095888197,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-14T23:57:57.000Z,True,"I hosted a meeting with leaders from the Pacific Islands Forum today. +We had productive talks about how the Senate can support their efforts to improve climate resiliency and disaster preparedness in the Pacific—which is always top of mind in Hawai‘i.",2,6,20,1.3K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768426370042847388,tweet_id:1768426370042847388,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-14T23:58:57.000Z,True,"Conversations like these aren't just important for fighting climate change & protecting the safety of island states and nations, but also to continue growing these vital partnerships +Our relationships with Pacific Island nations are indispensable—mahalo for making the trip to DC",3,1,6,684,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768426624884613229,tweet_id:1768426624884613229,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-12T22:10:00.000Z,True,"Women make 84 cents for every dollar that men make in our country. +The gender pay gap robs women of hundreds of thousands of dollars over their careers, with women of color losing out on even more. +On Equal Pay Day and every day, let's fight to secure equal pay for equal work.",3,2,16,945,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767674428656349437,tweet_id:1767674428656349437,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-12T21:54:38.000Z,True,"3 years ago we secured more than $31B for Native communities in 's American Rescue Plan—the largest investment in Native programs in US history at the time. +We're working every day at to give Native people the support they need.",4,5,15,1K,[],"['@POTUS', '@IndianCommittee']",[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767670561927246238,tweet_id:1767670561927246238,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-12T17:36:27.000Z,True,"AI has lots of potential, including helping us better predict and prepare for extreme weather events. +That's why last week I introduced the TAME Extreme Weather Act, which requires federal agencies to use these crucial AI tools.",4,0,10,829,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767605588538638493,tweet_id:1767605588538638493,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-11T21:21:24.000Z,True,"Republican extremism on abortion has left families across the country facing impossible decisions. +It's a more than 50-year project to take away women's ability to control their own bodies, and it's not going to stop anytime soon. +We need to codify Roe into federal law.",8,9,35,1.4K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767299811009552624,tweet_id:1767299811009552624,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-11T20:42:59.000Z,True,"READ: We secured $7.1 billion for COFA nations in the new appropriations deal, which includes provisions from our bill that will allow veterans living in COFA nations to receive health care from the VA. +Our partnership with COFA nations is crucial.",1,2,15,892,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767290143453364418,tweet_id:1767290143453364418,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-08T14:10:31.000Z,True,"On International Women's Day, we honor the achievements of women and girls across the globe and reflect on the many ways they continue to advance necessary progress in our society. +Although we’ve come a long way, we need to keep up the fight for FULL gender equality.",5,7,22,1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1766104211257729396,tweet_id:1766104211257729396,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-08T03:50:12.000Z,True,My statement on ’s State of the Union address.,8,7,41,1.8K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765948103234883658,tweet_id:1765948103234883658,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-08T00:49:29.000Z,True,"Honored to speak alongside Dr. Manayan, my colleagues and their #SOTU guests about the urgent need to restore reproductive freedom in America. + +Far-right Republicans are coming after it all. Abortion care, IVF, birth control—you name it. We can't let them succeed.",2,9,33,4.9K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765902624761483266,tweet_id:1765902624761483266,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-07T19:28:25.000Z,True,"My guest to the #SOTU address will be Dr. Olivia Manayan, OB-GYN chief resident at . + +With reproductive freedom under attack by the far-right, doctors like Olivia practicing in Republican-controlled states are working overtime to provide vital health care services.",1,12,34,1.6K,['#SOTU'],['@uhmanoa'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765821825584341439,tweet_id:1765821825584341439,@SenBrianSchatz +Tammy Duckworth,@SenDuckworth,2024-03-06T22:17:00.000Z,True,"They said they wouldn't overturn Roe. +They said they wouldn't come for IVF. +But they did. +It's never been about being pro-life—it's been about controlling women's bodies. +We cannot allow the rights of embryos to be prioritized over the rights of women. Full stop.",140,937,3.5K,73K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765501862617248173,tweet_id:1765501862617248173,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T21:40:53.000Z,True,Met with postal supervisors from Hawai‘i yesterday to talk about how we can continue supporting the hardworking postal employees who we rely on every day to deliver our mail.,4,2,17,1.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765492772994445809,tweet_id:1765492772994445809,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T21:41:38.000Z,True,It’s important we do all we can to ensure they have the resources they need to do their jobs and receive the benefits they rightfully deserve after a career of hard work.,0,0,5,503,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765492962333499854,tweet_id:1765492962333499854,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T20:12:35.000Z,True,"Hawai‘i credit unions are vital to maintaining economic stability in our communities, and they offer important financial services to our residents. +Great to meet with to talk about West Maui's recovery progress and other issues facing Hawai‘i families.",4,0,9,693,[],['@HawaiiCULeague'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765470552431436239,tweet_id:1765470552431436239,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T18:17:28.000Z,True,"Great news for Indian Country: is sending $72M to Tribes & Alaska Native communities for home electrification projects +We fought hard to include this funding in the Inflation Reduction Act. Far too many Tribal homes still lack electricity—this money will help fix that",4,10,65,1.8K,[],['@Interior'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765441582885371916,tweet_id:1765441582885371916,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T18:18:44.000Z,True,"For more info on how this electrification funding will help provide power for homes in Tribal and Alaska Native communities, click here.",0,0,4,482,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765441902982398202,tweet_id:1765441902982398202,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T23:41:48.000Z,True,"NEWS: We're bringing home nearly $400M in earmark funding for projects and non-profits in Hawai‘i, with more on the way in the next funding bill. + +This money will help these organizations grow and support key projects across the state.",3,18,44,2.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765160818843291751,tweet_id:1765160818843291751,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T22:21:56.000Z,True,"No health care provider should have to be afraid of going to jail or losing their license for providing abortion care or helping people start a family. +I'm doing all I can in Congress to protect reproductive freedom and support our OB-GYNs.",4,9,27,1.7K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765140716244685228,tweet_id:1765140716244685228,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T22:20:12.000Z,True,"Had the pleasure of meeting with physicians from Hawai‘i today. While the far-right assaults reproductive freedom across the country, OB-GYNs are on the frontlines providing critical reproductive health care. +It was inspiring to hear their stories.",2,1,11,927,[],['@acog'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765140283224674684,tweet_id:1765140283224674684,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T01:50:03.000Z,True,"NEWS: We protected critical investments for Hawai‘i in this year’s appropriations bill. +Billions of federal dollars will help fund projects across the state to improve our roads, increase access to food and housing, and strengthen benefits for veterans.",1,6,16,1.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1764830705618489768,tweet_id:1764830705618489768,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T01:29:45.000Z,True,"Today I had the chance to speak at the Legislative Conference and later sit down with reps. +There are few people more heroic than firefighters—we saw that firsthand last August in Lāhainā. We're doing all we can in Congress to support them & their needs.",2,2,23,2K,[],"['@IAFFofficial', '@HFFA1463']",[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1764825595072876563,tweet_id:1764825595072876563,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T23:05:00.000Z,True,"Important read—rising PRC influence in the Indo-Pacific is troubling. +Pacific Island nations are close friends & critical partners. More PRC control in the region means more corruption & security threats. Our COFA agreement promotes democratic principles.",4,9,23,1.7K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763702003371217398,tweet_id:1763702003371217398,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T23:06:15.000Z,True,"Renewing COFA will recommit the US to our vital partnership with these island nations and help fight the PRC playbook of using financial aid to sow instability in the Indo-Pacific. +We've had this agreement for so long because it's a no-brainer. We must renew it ASAP.",0,1,7,633,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763702320305500517,tweet_id:1763702320305500517,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T22:25:00.000Z,True,"For too long, it's been unfairly difficult for wheelchair users to travel by plane. It's especially problematic in Hawai‘i, where air travel is essential to get around the state. +I've been working with my colleagues to tackle this issue, and it's great to see take action.",0,16,87,5.5K,[],['@USDOT'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763691936920297969,tweet_id:1763691936920297969,@SenBrianSchatz +Senate Democrats,@SenateDems,2024-03-01T19:01:52.000Z,True,"Watch : + +Republicans will try to on the one hand say they are for IVF—but on the Senate floor block legislation to protect IVF. + +No one is fooled. + +Their record is theirs to own.",48,403,625,15K,[],['@SenBrianSchatz'],[],https://pbs.twimg.com/profile_images/1518618855458971649/EAp2b8sB_x96.jpg,https://twitter.com/SenateDems/status/1763640819251081392,tweet_id:1763640819251081392,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T21:37:04.000Z,True,"Great news—the first EV charging station in Hawai‘i funded by the Infrastructure Law is now open for business + +Building charging stations makes EVs more accessible to Hawai‘i families. We're working hard to secure more federal dollars to help us build toward a clean energy future",28,78,358,20K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763679873950679406,tweet_id:1763679873950679406,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T21:37:25.000Z,True,"For more info on the new charging stations, check out this link.",0,2,5,663,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763679962983206948,tweet_id:1763679962983206948,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T14:38:49.000Z,True,"National Women's History Month is a time for us to lift up and celebrate the legacies of women who have made our country a better place. Each week, I'll be highlighting a different woman from Hawai‘i who had such an impact on our state. + +First up: Mary Kawena Pukui. (1/x)",6,14,55,1.9K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763574618206392832,tweet_id:1763574618206392832,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T14:41:00.000Z,True,"As we continue working in the Senate to expand resources for ʻŌlelo Hawaiʻi to be taught in schools, we look back on the legacy and example Mary Kawena Pukui left behind. (4/x)",1,2,6,466,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763575169874788734,tweet_id:1763575169874788734,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T14:41:34.000Z,True,"Her passion and determination have inspired generations to continue fighting to not just preserve, but to amplify and celebrate Native Hawaiian culture at every opportunity. (5/5)",0,2,8,434,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763575311185174947,tweet_id:1763575311185174947,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-02-29T23:15:00.000Z,True,"Today & I reintro'd the John R. Lewis Voting Rights Advancement Act. + +The right to vote is a cornerstone of our democracy, but the far-right keeps launching attacks to limit people's ability to cast ballots. + +Passing this law is crucial.",2,7,39,1.2K,[],"['@SenatorDurbin', '@SenSchumer', '@SenatorWarnock']",[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763342131840593967,tweet_id:1763342131840593967,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-02-29T22:43:33.000Z,True,"Gutting Roe was never going to be enough for Republicans. It was a gateway to an all-out war. + +Now they’re attacking IVF, denying people the freedom to decide to have a family. Wanting to start a family is not a crime + +This isn't about protecting life—it's about punishing women",24,137,331,14K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763334217130508590,tweet_id:1763334217130508590,@SenBrianSchatz +Rachel Scott,@rachelvscott,2024-03-21T18:20:26.000Z,False,"We traveled to Mississippi to meet that 13 yr old rape victim & her mother. +She gave birth to a baby boy. +She's only in the 7th grade. +Her doctor said even though the state has exception for reported rape cases— few doctors are willing to provide an abortion.",97,1.3K,2.1K,196K,[],[],[],https://pbs.twimg.com/profile_images/1515701615512203265/VBhTSjlO_x96.jpg,https://twitter.com/rachelvscott/status/1770878146247631265,tweet_id:1770878146247631265,@brianschatz +Brian Schatz,@brianschatz,2024-03-22T00:55:57.000Z,True,One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity.,1.2K,580,4.8K,126K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1770977685197533492,tweet_id:1770977685197533492,@brianschatz +Brian Schatz,@brianschatz,2024-03-22T00:54:49.000Z,True,"1) Campaigns are about winning arguments, and our argument is that these last four years have been an improvement on the previous four. +2) The more people think seriously about the choice, the better Biden performs. +3) We should compare their records. It’s fair and compelling.",25,57,330,28K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1770977398051233797,tweet_id:1770977398051233797,@brianschatz +Sahil Kapur,@sahilkapur,2024-03-21T22:07:41.000Z,False,"Four House Republicans (Rosendale, Miller, Brecheen, Good) write to the Biden admin: “IVF is morally dubious and should not be subsidized by the American taxpayer. It is well known that IVF treatments result in a surplus of embryos after the best ones are tested and selected.…",99,338,449,206K,[],[],[],https://pbs.twimg.com/profile_images/1758313523795447808/2OHDnSJz_x96.jpg,https://twitter.com/sahilkapur/status/1770935336014622759,tweet_id:1770935336014622759,@brianschatz +Brian Schatz,@brianschatz,2024-03-22T00:55:57.000Z,True,One thing I like about Joe Biden is that he is not in a ton of debt and urgently seeking liquidity.,1.2K,580,4.8K,126K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1770977685197533492,tweet_id:1770977685197533492,@brianschatz +Data for Progress,@DataProgress,2024-03-21T14:50:58.000Z,True,Raising the retirement age is among the most unpopular policies we have tested — supported by only 8% of likely voters and 9% of Republicans. https://dataforprogress.org/blog/2023/4/17/voters-strongly-oppose-raising-the-retirement-age…,5,81,187,51K,[],[],[],https://pbs.twimg.com/profile_images/1677336916037861377/8jwRVdCf_x96.png,https://twitter.com/DataProgress/status/1770825434919264441,tweet_id:1770825434919264441,@brianschatz +Jon Favreau,@jonfavs,2024-03-20T23:25:31.000Z,True,"MAGA House releases plan to prevent you from: +1) retiring at 65 +2) staying on your parents' health insurance until 26 +3) obtaining health insurance if you have pre-existing conditions +4) getting an abortion +5) using IVF",538,6.2K,13K,830K,[],[],[],https://pbs.twimg.com/profile_images/1680269260231438336/_4HWegpd_x96.jpg,https://twitter.com/jonfavs/status/1770592537281167632,tweet_id:1770592537281167632,@brianschatz +Brian Schatz,@brianschatz,2024-03-21T01:16:51.000Z,True,Very easy to just say “no we are not taking foreign money” that’s not at all what she said.,139,1.2K,5.3K,339K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1770620555562979667,tweet_id:1770620555562979667,@brianschatz +Sahil Kapur,@sahilkapur,2024-03-20T23:04:31.000Z,False,"On Social Security, RSC budget endorses ""modest adjustments to the retirement age for future retirees to account for increases in life expectancy."" Calls for lowering benefits for the highest-earning beneficiaries. No changes for current/imminent retirees.",87,346,656,131K,[],[],[],https://pbs.twimg.com/profile_images/1758313523795447808/2OHDnSJz_x96.jpg,https://twitter.com/sahilkapur/status/1770587254106272140,tweet_id:1770587254106272140,@brianschatz +Sahil Kapur,@sahilkapur,2024-03-20T23:02:59.000Z,False,"NEW: Republican Study Committee releases a sweeping budget plan +RSC chair is HERN; 170+ members incl Speaker and his full leadership team. +Highlights: +• Raises Social Security retirement age for future retirees +• Converts Medicare to ""premium support"" a la Paul Ryan plan +•…",429,2.8K,3K,2.4M,[],[],[],https://pbs.twimg.com/profile_images/1758313523795447808/2OHDnSJz_x96.jpg,https://twitter.com/sahilkapur/status/1770586868205175030,tweet_id:1770586868205175030,@brianschatz +Brian Schatz,@brianschatz,2024-03-21T00:49:02.000Z,True,"If you want to help Democrats win, memorize this list, and repeat it everywhere. It is fair and true because these are their actual policy positions, and it is politically effective because you could literally not find less popular positions. Pass it on.",27,435,1.2K,68K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1770613554615300523,tweet_id:1770613554615300523,@brianschatz +Brian Schatz,@brianschatz,2024-03-20T00:41:06.000Z,True,Hey this race is gonna be expensive https://secure.actblue.com/donate/sbhomepage…,26,157,565,63K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1770249170395279427,tweet_id:1770249170395279427,@brianschatz +Brian Schatz,@brianschatz,2024-03-19T01:55:17.000Z,True,Jewish families all across America are arguing about Israel policy. But one thing we can all agree upon is that Donald Trump is not the arbiter of anyone’s Jewishness.,75,328,2.2K,74K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1769905453008327096,tweet_id:1769905453008327096,@brianschatz +Jonathan Greenblatt,@JGreenblattADL,2024-03-19T00:41:12.000Z,True,"Accusing Jews of hating their religion because they might vote for a particular party is defamatory & patently false. Serious leaders who care about the historic US-Israel alliance should focus on strengthening, rather than unraveling, bipartisan support for the State of Israel.",0,70,165,30K,[],[],[],https://pbs.twimg.com/profile_images/1390022480572698632/ZRJKgcCE_x96.jpg,https://twitter.com/JGreenblattADL/status/1769886805619265847,tweet_id:1769886805619265847,@brianschatz +Jonathan Martin,@jmart,2024-03-17T14:22:40.000Z,False,"A bit hard for Bibi to make the ‘how dare you intervene in our democracy, sir, case’ when the guy spends more time on US air than Israeli TV +“Today on CNN’s State of the Union, Benjamin Netanyahu, Israeli Prime Minister, joined anchor, Dana Bash, to discuss the…”",70,272,1K,139K,[],[],[],https://pbs.twimg.com/profile_images/1748349890642522112/UMpt3XP8_x96.jpg,https://twitter.com/jmart/status/1769368762371723288,tweet_id:1769368762371723288,@brianschatz +Brian Schatz,@brianschatz,2024-03-17T03:30:54.000Z,True,Democrats have a lot of work to do in shoring up our base and reaching independents and making the case for Biden against Trump. But victory also depends on patriots like Kinzinger and Cheney and Pence and Romney being joined by millions of voters. All hands on deck.,286,528,2.8K,154K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1769204737260265500,tweet_id:1769204737260265500,@brianschatz +Jon Favreau,@jonfavs,2024-03-17T03:21:48.000Z,True,"Trump’s promising to release people from prison who were convicted of violently assaulting police officers. And they’re only getting pardons because they were trying to help him steal an election. +You either want that to happen here or you don’t. Not a complicated choice.",113,671,2.3K,123K,[],[],[],https://pbs.twimg.com/profile_images/1680269260231438336/_4HWegpd_x96.jpg,https://twitter.com/jonfavs/status/1769202449691320678,tweet_id:1769202449691320678,@brianschatz +Jon Favreau,@jonfavs,2024-03-17T03:21:00.000Z,True,This is his general election message,75,450,2.3K,232K,[],[],[],https://pbs.twimg.com/profile_images/1680269260231438336/_4HWegpd_x96.jpg,https://twitter.com/jonfavs/status/1769202248691994876,tweet_id:1769202248691994876,@brianschatz +Brian Schatz,@brianschatz,2024-03-17T03:10:01.000Z,True,Headline writers: Don’t outsmart yourself. Just do “Trump Promises Bloodbath if he Doesn’t Win Election.”,2.4K,3K,11K,1M,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1769199484573995066,tweet_id:1769199484573995066,@brianschatz +Brian Schatz,@brianschatz,2024-03-17T01:24:23.000Z,True,Promising a bloodbath is disqualifying. I don’t care what you think about other issues. This guy is promising a bloodbath. He needs to lose. Stand up for America. Please.,6.1K,5.2K,20K,757K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1769172900764913938,tweet_id:1769172900764913938,@brianschatz +John Bresnahan,@bresreports,2024-03-17T01:11:35.000Z,True,Trump says country faces ‘bloodbath’ if Biden wins in November - POLITICO,1.6K,187,273,123K,[],[],[],https://pbs.twimg.com/profile_images/1604353030064934913/Kzc_eumo_x96.jpg,https://twitter.com/bresreports/status/1769169679812063628,tweet_id:1769169679812063628,@brianschatz +Biden-Harris HQ,@BidenHQ,2024-03-17T00:46:05.000Z,False,Biden-Harris campaign statement on Trump tonight promising a “bloodbath” if he loses,7.9K,14K,31K,2.9M,[],[],[],https://pbs.twimg.com/profile_images/1706852205892960256/tk1C73_B_x96.png,https://twitter.com/BidenHQ/status/1769163262283706801,tweet_id:1769163262283706801,@brianschatz +Brian Schatz,@brianschatz,2024-03-17T01:00:13.000Z,True,Trump promising violence again and I believe that plenty of people don’t know that.,1.1K,358,1.5K,58K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1769166817673589091,tweet_id:1769166817673589091,@brianschatz +"The.Ink, from Anand Giridharadas",@AnandWrites,2024-03-16T13:36:03.000Z,False,"“What makes us Jews is not pure fidelity to Israel, but rather our core values about what it means to live in this world and be humane, and to try to make things better in whatever way we can. And I don't think we want all of this suffering in our name.”",0,36,174,18K,[],[],[],https://pbs.twimg.com/profile_images/1305938381382316034/HYM4tc5X_x96.jpg,https://twitter.com/AnandWrites/status/1768994640097628435,tweet_id:1768994640097628435,@brianschatz +"The.Ink, from Anand Giridharadas",@AnandWrites,2024-03-16T14:14:39.000Z,False,Senator with trenchant words for extremely online nihilists in American politics.https://the.ink/p/senator-brian-schatz-democracy-israel-gaza…,0,91,312,49K,[],['@brianschatz'],[],https://pbs.twimg.com/profile_images/1305938381382316034/HYM4tc5X_x96.jpg,https://twitter.com/AnandWrites/status/1769004354088952028,tweet_id:1769004354088952028,@brianschatz +S Sebag Montefiore,@simonmontefiore,2024-03-16T13:06:23.000Z,True,"An extraordinary moment. Fatah's devastating attack on the disaster that Hamas has brought on the Palestinian people. It does not spare Israel blame either but this is damning: +""Those who caused the reoccupation of Gaza by Israel, and caused the catastrophe that the…",58,410,1.1K,361K,[],[],[],https://pbs.twimg.com/profile_images/1250164053588180998/GW6lZ5nM_x96.jpg,https://twitter.com/simonmontefiore/status/1768987175473815722,tweet_id:1768987175473815722,@brianschatz +Jennifer Bendery,@jbendery,2024-03-15T22:26:54.000Z,False,"! Sen. Brian Schatz (D-Hawaii) just led senators on a letter to Attorney General Merrick Garland ""urging the compassionate release of Native American rights activist Leonard Peltier."" https://indian.senate.gov/wp-content/uploads/Letter-re-Peltier-compassionate-release_2024.03.15.pdf…",8,63,271,17K,[],[],[],https://pbs.twimg.com/profile_images/1621193006488473601/k6bIPUIJ_x96.jpg,https://twitter.com/jbendery/status/1768765844798992889,tweet_id:1768765844798992889,@brianschatz +Liberal Hegemony Enjoyer,@Danofran,2024-03-14T20:59:11.000Z,True,"I get ""Biden old"" but seriously, he is kind and brave. No other president in history has been better on Trans issues, and in doing so he has opened himself up to the Right's biggest social bogeyman. A lesser man would have just dodged the issue by remaining silent.",94,381,2.3K,141K,[],[],[],https://pbs.twimg.com/profile_images/1725409745203494912/9FWxMaPs_x96.jpg,https://twitter.com/Danofran/status/1768381383318421591,tweet_id:1768381383318421591,@brianschatz +President Biden,@POTUS,2024-03-14T19:20:01.000Z,True,"In memory of Nex, we must all recommit to our work to end discrimination and address the suicide crisis impacting too many nonbinary and transgender children.",11K,10K,35K,11M,[],[],[],https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_x96.jpg,https://twitter.com/POTUS/status/1768356426336866602,tweet_id:1768356426336866602,@brianschatz +Political Polls,@Politics_Polls,2024-03-15T03:20:31.000Z,True,"2024 National GE: +Biden 50% (+2) +Trump 48% +./, 3,356 RV, 3/7-13https://reuters.com/world/us/biden-has-marginal-1-point-lead-over-trump-reutersipsos-poll-shows-2024-03-14/…",47,159,579,93K,[],"['@Reuters', '@Ipsos']",[],https://pbs.twimg.com/profile_images/879203541289717760/qw0an2wG_x96.jpg,https://twitter.com/Politics_Polls/status/1768477351182999939,tweet_id:1768477351182999939,@brianschatz +Brian Schatz,@brianschatz,2024-03-14T14:44:29.000Z,True,"This is a gutsy, historic speech from Leader Schumer. I know he didn’t arrive at this conclusion casually or painlessly.",285,410,2.9K,203K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1768287086291943856,tweet_id:1768287086291943856,@brianschatz +Drew Linzer,@DrewLinzer,2024-03-13T20:42:56.000Z,False,"We're out with a new national poll today , all interviewing post-Super Tuesday and SOTU: +- Topline presidential Biden +1 +- Biden job approval at 37% (+2 since late Jan) +- Trump's legal issues +- Attitudes towards IVF +Full report & xtabs: https://civiqs.com/reports/2024/3/13/report-most-americans-accept-biden/trump-2024-is-happening…",5,15,83,83K,[],['@Civiqs'],[],https://pbs.twimg.com/profile_images/1615188411933163521/yMoHxO9T_x96.jpg,https://twitter.com/DrewLinzer/status/1768014905100435898,tweet_id:1768014905100435898,@brianschatz +Civiqs,@Civiqs,2024-03-13T18:50:55.000Z,False,"New Civiqs Poll: President 2024 +○ Joe Biden: 45% +○ Donald Trump: 44% +March 9-12: 1324 RV https://civiqs.com/reports/2024/3/13/report-most-americans-accept-biden/trump-2024-is-happening…",8,24,80,22K,[],[],[],https://pbs.twimg.com/profile_images/973366176905494528/9PAID_pY_x96.jpg,https://twitter.com/Civiqs/status/1767986714981839287,tweet_id:1767986714981839287,@brianschatz +Brian Schatz,@brianschatz,2024-03-13T00:15:36.000Z,True,Never gets old.,19,40,1K,29K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767706037467910599,tweet_id:1767706037467910599,@brianschatz +Brian Schatz,@brianschatz,2024-03-12T22:37:09.000Z,True,NEWS: We secured a record $1.3B in federal funds for Native housing in the funding deal—a more than $300M increase from last year,14,112,944,28K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767681262641127634,tweet_id:1767681262641127634,@brianschatz +Brian Schatz,@brianschatz,2024-03-12T22:38:00.000Z,True,"Native housing has historically—and unacceptably—been underfunded by the federal government + +Because of the federal government’s failure over time to provide adequate housing support, Native communities are dealing with urgent and unique housing needs",4,8,89,9.2K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767681477251047902,tweet_id:1767681477251047902,@brianschatz +Brian Schatz,@brianschatz,2024-03-12T22:38:50.000Z,True,"We fought hard to secure this record investment. It helps bring us one step closer to upholding our crucial trust responsibility to Native communities. + +For more info on the funding, check out this link. (4/4)",1,3,47,9K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767681685510852975,tweet_id:1767681685510852975,@brianschatz +Brian Schatz,@brianschatz,2024-03-12T22:38:26.000Z,True,"This historic NAHASDA funding will help families in Native communities move into affordable homes, make renovations, & receive services vital to addressing their urgent housing needs + +Increased Tribal transportation funding will also improve Tribal access to programs",3,6,59,4.3K,[],['@USDOT'],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767681584478540018,tweet_id:1767681584478540018,@brianschatz +Acyn,@Acyn,2024-03-12T17:17:50.000Z,False,Hur is given a chance to correct the record on the claim he made about President Biden’s memory of the date of his son’s death. Hur claims that it’s not correct that Biden remembered the date and has to be reminded that Biden did remember from the transcript,756,3.7K,11K,1.7M,[],[],[],https://pbs.twimg.com/profile_images/1332231334761119745/wMzlpuHi_x96.jpg,https://twitter.com/Acyn/status/1767600903325208654,tweet_id:1767600903325208654,@brianschatz +Brian Schatz,@brianschatz,2024-03-12T18:32:00.000Z,True,"This whole thing is so ghoulish and cruel and the facts don’t support it. If you reported this bullshit like it was some tough but fair shot, I’m just begging you personally to do some self reflection on whether you want to be this kind of professional.",114,989,3.9K,203K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767619568355156140,tweet_id:1767619568355156140,@brianschatz +farhad manjoo (former bluecheck),@fmanjoo,2024-03-11T18:52:55.000Z,False,"the CNBC interview is just a disaster. He has trouble saying a single thing without creating a Biden ad — flirting with cutting social security, unable to explain his position on tiktok, lapsing into gibberish. He’s becoming the inept aged caricature they painted of Biden",54,443,2.6K,158K,[],[],[],https://pbs.twimg.com/profile_images/1533189002676686848/0r5ZHkfV_x96.jpg,https://twitter.com/fmanjoo/status/1767262445297688681,tweet_id:1767262445297688681,@brianschatz +Mike Inacay,@MikeInacay,2024-03-10T15:21:58.000Z,False,Congress Restores Federal Benefits To COFA Migrants As Part Of $7.1 Billion Aid Deal,1,6,24,11K,[],[],[],https://pbs.twimg.com/profile_images/1411342661873811463/z4aCESz8_x96.jpg,https://twitter.com/MikeInacay/status/1766846968989470767,tweet_id:1766846968989470767,@brianschatz +Mike Inacay,@MikeInacay,2024-03-11T14:36:22.000Z,False,"Yes, has a bill for that -- the TAME Extreme Weather Act",0,6,21,11K,[],['@brianschatz'],[],https://pbs.twimg.com/profile_images/1411342661873811463/z4aCESz8_x96.jpg,https://twitter.com/MikeInacay/status/1767197883328004373,tweet_id:1767197883328004373,@brianschatz +Josh Kraushaar,@JoshKraushaar,2024-03-11T11:28:00.000Z,True,CNN scoop: “Russia producing three times more artillery shells than US and Europe for Ukraine” https://cnn.com/2024/03/10/politics/russia-artillery-shell-production-us-europe-ukraine?cid=ios_app…,6,33,40,17K,[],[],[],https://pbs.twimg.com/profile_images/923616463897931777/A5rzMcn4_x96.jpg,https://twitter.com/JoshKraushaar/status/1767150478188482776,tweet_id:1767150478188482776,@brianschatz +Biden-Harris HQ,@BidenHQ,2024-03-11T12:01:10.000Z,False,Trump: There is a lot you can do in terms of cutting Social Security and Medicare,1.2K,3.1K,4.5K,5.1M,[],[],[],https://pbs.twimg.com/profile_images/1706852205892960256/tk1C73_B_x96.png,https://twitter.com/BidenHQ/status/1767158825063153721,tweet_id:1767158825063153721,@brianschatz +Brian Schatz,@brianschatz,2024-03-11T03:35:44.000Z,True,There’s so much real antisemitism in the world you don’t have to make anything up to make your point.,44,198,2.3K,352K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1767031626876277014,tweet_id:1767031626876277014,@brianschatz +Armand Domalewski,@ArmandDoma,2024-03-11T03:13:31.000Z,False,"You can disagree with what Jonathan Glazer said, but lying that he said he “refuted his Jewishness” rather than that he “refuted his Jewishness being hijacked” is so dishonest",100,834,8.3K,268K,[],[],[],https://pbs.twimg.com/profile_images/1766604880318541824/6WOU7ofY_x96.jpg,https://twitter.com/ArmandDoma/status/1767026037848961492,tweet_id:1767026037848961492,@brianschatz +Brian Riedl,@Brian_Riedl,2024-03-10T20:33:06.000Z,False,The kids are not alright. https://x.com/BruinGOP/statu/BruinGOP/status/1766644852606021724…,22,45,421,82K,[],[],[],https://pbs.twimg.com/profile_images/1613678263024377857/F2SqzO_J_x96.jpg,https://twitter.com/Brian_Riedl/status/1766925268201947404,tweet_id:1766925268201947404,@brianschatz +Brian Schatz,@brianschatz,2024-03-10T17:35:46.000Z,True,Hey get me on this bill!,19,17,182,40K,[],"['@reemadodin', '@MikeInacay']",[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1766880642950742208,tweet_id:1766880642950742208,@brianschatz +Brian Schatz,@brianschatz,2024-03-10T15:36:17.000Z,True,Hahahahhahahhahahhahahahhahahhahahahhahahahah aaaaaarrrrrrrrgggggh,47,314,3.9K,185K,[],[],[],https://pbs.twimg.com/profile_images/1524214492116176897/8UXbX6gQ_x96.jpg,https://twitter.com/brianschatz/status/1766850570877292991,tweet_id:1766850570877292991,@brianschatz +Leader McConnell,@LeaderMcConnell,2024-03-21T18:57:05.000Z,True,"Today, I was proud to join Congressional leaders in honoring veterans of the Ghost Army with the Congressional Gold Medal. WW2 demanded the best America had to offer, and our nation will never forget how these talented men deceived the enemy to save American lives.",56,22,87,11K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770887369845092478,tweet_id:1770887369845092478,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-20T17:13:43.000Z,True,"Israel’s government and unity war cabinet report to the Israeli people, not the U.S. Senate. America rightly rejects foreign interference in our own democratic politics. And we owe it to our friends and allies to stay out of theirs.",586,263,1.2K,63K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770498969904287829,tweet_id:1770498969904287829,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-20T16:21:29.000Z,True,".’ climate agenda puts activists ahead of American workers: Freezing new export permits, micromanaging home appliances, and now trying to rig the auto market for expensive EVs. Democrats are willing to trade working families’ livelihoods for kudos from their radical base.",152,37,161,18K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770485826092146754,tweet_id:1770485826092146754,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-19T13:08:35.000Z,True,"The remainder of government funding for FY 2024 is on a path to becoming law. As bill text is finalized, I’m grateful to Senator Collins for pushing tirelessly for Republican priorities, including urgent resources for national defense. It's time for Congress to complete our work.",201,60,83,37K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770074893490557196,tweet_id:1770074893490557196,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-14T15:45:52.000Z,True,The primary “obstacles to peace” in Israel’s region are genocidal terrorists and corrupt PA leaders who repeatedly reject peace deals. Foreign observers who cannot keep this straight ought to refrain from interfering in the democracy of a sovereign ally.,769,930,3.5K,233K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1768302535431901402,tweet_id:1768302535431901402,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-21T18:57:05.000Z,True,"Today, I was proud to join Congressional leaders in honoring veterans of the Ghost Army with the Congressional Gold Medal. WW2 demanded the best America had to offer, and our nation will never forget how these talented men deceived the enemy to save American lives.",56,22,87,11K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770887369845092478,tweet_id:1770887369845092478,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-20T17:13:43.000Z,True,"Israel’s government and unity war cabinet report to the Israeli people, not the U.S. Senate. America rightly rejects foreign interference in our own democratic politics. And we owe it to our friends and allies to stay out of theirs.",586,263,1.2K,63K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770498969904287829,tweet_id:1770498969904287829,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-12T23:00:28.000Z,True,"I was proud to welcome Polish President to the U.S. Capitol. Poland's generous support for Ukraine is a model for allies. In the face of historic threats, America is proud to stand shoulder to shoulder with such a stalwart member of the trans-Atlantic alliance.",131,83,341,28K,[],"['@AndrzejDuda', '@NATO']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767687128983441541,tweet_id:1767687128983441541,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-12T20:19:00.000Z,True,Law enforcement and Jewish groups nationwide are sounding the alarm on ’ attempt to give life tenure on the federal bench to a nominee with ties to terrorist sympathizers and cop-killers. The Senate must reject Adeel Mangi’s nomination.,169,105,302,31K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767646494520402011,tweet_id:1767646494520402011,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-12T19:08:39.000Z,True,".’ latest budget request would raise taxes as a share of GDP to their highest level since WWII. Meanwhile, the same measure of spending on national defense is near historic lows. It’s a dangerous world, and a Commander-in-Chief who’s proposed net cuts to defense funding…",299,57,202,43K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767628791289974907,tweet_id:1767628791289974907,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-11T21:49:49.000Z,True,"Last week, the Senate’s action on government funding delivered on Kentucky’s top priorities – from military construction to overhauling aging roads and bridges and empowering law enforcement to combat the opioid crisis. I’m proud we took action on issues near and dear to my…",257,22,65,35K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767306961270235173,tweet_id:1767306961270235173,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-08T13:06:02.000Z,True,"Last night, spoke directly to the American people and presented a stark contrast. After three years of ’ failures, she showed how Republicans are ready to turn the page and preserve the American Dream for the next generation.",1.9K,207,596,119K,[],"['@SenKatieBritt', '@POTUS']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1766087983071948887,tweet_id:1766087983071948887,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-07T23:05:25.000Z,True,"Proud to welcome Kristersson to the U.S. Capitol and his nation to the most successful military alliance in history. Like Finland, Sweden's capable forces and modern defense industrial base will enhance and strengthen America's own national security from Day One.",154,84,700,35K,[],"['@SwedishPM', '@NATO']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1765876438278807663,tweet_id:1765876438278807663,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-29T20:00:16.000Z,True,Glad to announce with that will deliver the Republican address to the nation next Thursday. The American people will hear from an unapologetic optimist fighting to secure a stronger future and leave Washington Democrats’ failures behind.,1.5K,198,699,113K,[],"['@SpeakerJohnson', '@SenKatieBritt']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1763293125630435452,tweet_id:1763293125630435452,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-28T18:48:50.000Z,True,"As I said on the Senate floor, one of life’s most underappreciated talents is to know when it’s time to move on. It’s been the honor of my life to serve as Republican leader.",4.1K,781,2.3K,491K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1762912762437521534,tweet_id:1762912762437521534,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-26T20:04:58.000Z,True,"Strengthening NATO means strengthening U.S. national security and the collective security of the West. The United States and the entire alliance will be proud to formally welcome Sweden to our ranks this year. +My full statement:",949,169,639,73K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1762207146882576575,tweet_id:1762207146882576575,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-13T16:17:29.000Z,True,"The Senate understands the responsibilities of America’s national security and will not neglect them. And today, on the value of American leadership and strength, history will record that the Senate did not blink. +My full statement:",9.8K,1.3K,3.6K,1.7M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1757438855756632552,tweet_id:1757438855756632552,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-11T17:50:31.000Z,True,"The choice facing the Senate is simple: Will we recommit to the American strength our allies crave and our adversaries fear? Or will we give those who wish us harm one more reason to question our resolve? We cannot afford to get this wrong. +Read my full remarks:…",8.3K,1.7K,5K,1.7M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1756737493167145345,tweet_id:1756737493167145345,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-04T23:57:33.000Z,True,My statement on the supplemental national security legislation:,7.4K,682,496,1.4M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1754293146429653114,tweet_id:1754293146429653114,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-02T20:27:41.000Z,True,"My thoughts remain with Kentucky’s 138th Field Artillery Brigade, and with the Kentuckian injured in Saturday’s deadly attack on U.S. personnel in Jordan. It is time for the President to meet threats to American servicemembers with overwhelming force and re-establish credible…",649,56,185,74K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1753515553833066829,tweet_id:1753515553833066829,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-01T19:17:42.000Z,True,".’ de facto ban on new LNG exports permits is bad news – at home and abroad. Democrats’ war on affordable American energy already has working families paying more to heat and light homes. Now, squeezing U.S. exports could force our allies to rely more on our adversaries'…",374,59,172,112K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1753135552478482651,tweet_id:1753135552478482651,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-25T16:48:40.000Z,True,"Elaine and I are heartbroken to learn of the passing of Bobbi Barrasso. Bobbi’s home state is better for her decades of devoted advocacy for a host of worthy causes. Today, the Senate holds John, her daughter Hadley, and the entire Barrasso and Brown families in our prayers. +My…",520,35,163,54K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1750561332225515709,tweet_id:1750561332225515709,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-24T20:43:05.000Z,True,.’ deference to climate extremists continues to sell out American consumers and U.S. allies. Greater reliance on dirty energy from Russia or Iran is never in the national interest.,676,40,70,43K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1750257938944454657,tweet_id:1750257938944454657,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-24T18:37:08.000Z,True,"When our allies and partners face aggression, America is not inoculated from the effects. When authoritarians think they can redraw maps by force, American national security is challenged. The Senate must be ready to invest in American leadership and American strength.",1.2K,240,698,84K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1750226241448284183,tweet_id:1750226241448284183,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-23T16:16:30.000Z,True,"The goals of supplemental national security legislation are straightforward: secure our southern border, help fight Putin’s aggression in Europe, invest seriously in competition with China, and stand with Israel and restore real deterrence against Iran. +Keeping America safe.…",986,135,315,69K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1749828465166045661,tweet_id:1749828465166045661,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-19T14:10:00.000Z,True,"Today, tens of thousands of supporters will take to Washington to celebrate the sanctity of human life. I am proud of the Kentuckians and all Americans who are standing for human dignity at this year’s #MarchForLife.",376,36,192,42K,['#MarchForLife'],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1748347075715268679,tweet_id:1748347075715268679,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-18T20:00:01.000Z,True,"The Biden Administration still thinks it can convince working families to ignore their shrinking paychecks and believe that Bidenomics is working. But just 14% of Americans think ' policies are actually helping them. Truth is, Bidenomics is a dud.",695,109,282,55K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1748072771656245512,tweet_id:1748072771656245512,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-18T18:59:43.000Z,True,Iran and its proxies don't believe America has the resolve to impose serious costs for their increasing terrorist violence. We can’t hope to deter aggression with weakness. Our adversaries speak the language of strength. And America can’t afford not to be fluent.,260,50,168,37K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1748057598786515084,tweet_id:1748057598786515084,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-16T23:13:00.000Z,True,"From day one, the Biden Administration met Iranian aggression with accommodation and squandered the credibility of American deterrence. It’s time for to explain how exactly he intends to compel Iran and its proxies to change their behavior.",399,81,289,44K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1747396562677080492,tweet_id:1747396562677080492,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-16T22:12:41.000Z,True,Israel takes extraordinary risks to minimize civilian casualties. Hamas and Palestinian Islamic Jihad go to extraordinary lengths to maximize senseless death. We must not confuse one for the other. The Senate should reject the Sanders resolution.,1.4K,682,3.5K,234K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1747381384115564734,tweet_id:1747381384115564734,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-15T13:22:00.000Z,True,"Today we celebrate the life and legacy of a monumental American, Dr. Martin Luther King, Jr. Dr. King’s simple and powerful message still echoes across our country, inspiring Americans of all walks of life to keep striving towards a more perfect union.",414,140,203,1.2M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1746885444493791469,tweet_id:1746885444493791469,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-12T01:08:37.000Z,True,"I welcome U.S. and coalition operations against the Iran-backed Houthi terrorists responsible for disrupting international commerce and attacking American vessels. +My full statement:",502,166,527,74K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745613721110479345,tweet_id:1745613721110479345,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-11T18:21:46.000Z,True,"From the border crisis to the Red Sea, none of the national security challenges we face will get any easier the longer we wait to address them. We’re facing a clear test of America’s credibility as a global superpower. The Senate must not fail. +Read my full remarks:…",536,64,155,41K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745511331975807005,tweet_id:1745511331975807005,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-10T16:53:13.000Z,True,"America is facing the most serious array of national security challenges since the fall of the Soviet Union – border crisis, rampant terrorism, strategic competition, and land war in Europe. The Biden Administration’s playbook has been hesitation and self-deterrence. But the…",478,65,163,48K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745126661635346879,tweet_id:1745126661635346879,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-10T16:09:09.000Z,True,"For too long, the Ivy League let leftist dogmas replace the free exchange of ideas. But across the country, places like Kentucky's leading universities continue to champion integrity and academic rigor. It’s time for the Ivy League to start pursuing truth again.…",216,26,122,34K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745115570297536881,tweet_id:1745115570297536881,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-09T21:43:10.000Z,True,Three years of American retreat have left the world’s most active state sponsor of terror undeterred. The best way America can help allies like Israel is to lead with strength and restore credible deterrence against Iranian aggression.,286,35,107,24K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1744837240394498363,tweet_id:1744837240394498363,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-07T21:16:51.000Z,True,"I’m encouraged that the Speaker and Democratic Leaders have identified a path toward completing FY 2024 appropriations. America faces serious national security challenges, and Congress must act quickly to deliver the full-year resources this moment requires.",2K,274,342,1M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1744105843518235022,tweet_id:1744105843518235022,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-25T14:00:02.000Z,True,"Today, I want to wish my fellow Kentuckians and all Americans a very Merry Christmas. As a weary world rejoices, I’m especially grateful to our nation’s brave servicemembers who are serving away from home and loved ones to keep America safe.",529,49,477,66K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1739284870944182333,tweet_id:1739284870944182333,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-13T18:48:11.000Z,True,"Yesterday, I was honored to join Rabbi Levi Shemtov for the inaugural Capitol Menorah Lighting. This year, the Hanukkah message of light in darkness is especially needed. I am proud to celebrate the Jewish people’s resilience, and will continue to stand up for their right to…",353,72,308,44K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1735008732067528835,tweet_id:1735008732067528835,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-13T17:48:44.000Z,True,".’ latest judicial nominee, Adeel Mangi, served on the board of a law school organization that amplifies anti-Semitic terrorist propaganda. As Jews face an historic wave of anti-Semitic hate, this is the kind of nominee the Biden Administration wants us to confirm?",254,80,160,71K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1734993770574135576,tweet_id:1734993770574135576,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-11T22:36:00.000Z,True,"The choice facing elite universities today is clear: enforce existing speech restrictions evenly, or protect speech across the board – not just for anti-Semitic radicals. In the meantime, donors will continue to vote with their checkbooks, and students may vote with their feet.",265,48,152,34K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1734341287908970873,tweet_id:1734341287908970873,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-11T21:35:58.000Z,True,"When it comes to keeping America safe, border security is not a side show. It’s a main event. More and more Democrats are recognizing this reality. It’s time for their leaders to act on it.",1.4K,164,594,94K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1734326179908260096,tweet_id:1734326179908260096,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-07T19:00:01.000Z,True,"Tonight, Jews around the world will light the first candle of Hanukkah. Let us join in celebrating the resiliency and strength of the Jewish people and stand up for their right to live free from fear.",209,37,226,29K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732837384033579052,tweet_id:1732837384033579052,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-07T17:04:51.000Z,True,"The Biden Administration’s southern border crisis is out of control. America’s national security begins with securing our nation’s borders. And supplemental legislation must begin there, too.",631,80,231,158K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732808402693185956,tweet_id:1732808402693185956,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-07T16:23:00.000Z,True,"The Senate is about to vote on a resolution that would withdraw U.S. troops from Syria, reward Iran, and wreck America’s credibility in the Middle East. A vote for this resolution would be a vote for retreat in the face of terror. + +Read my full remarks:",289,56,87,43K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732797871181705718,tweet_id:1732797871181705718,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-06T17:45:00.000Z,True,Border security is national security. Supplemental national security legislation must include meaningful policy changes to get the Biden Administration’s border crisis under control. Not enough Senate Democrats recognize this fundamental and urgent reality.,369,72,178,41K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732456116070572529,tweet_id:1732456116070572529,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-06T16:54:25.000Z,True,".’s neighbors in Bakersfield were fortunate to have such an optimistic doer represent them for 17 years. I am proud of the work we accomplished together in the Capitol, and I wish him the very best as he writes a new chapter.",54,15,48,24K,[],['@SpeakerMcCarthy'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732443387888848949,tweet_id:1732443387888848949,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-05T16:17:44.000Z,True,"Senate Republicans have been crystal clear: national security starts with border security. The sooner Democrats realize this, the sooner we can deliver on urgent national security priorities.",2.9K,410,1.4K,536K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732071768297197963,tweet_id:1732071768297197963,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-04T21:18:46.000Z,True,National security begins with border security. That’s why Senate Republicans are still hard at work on policy changes to fix our broken asylum and parole system and get the Biden Administration’s border crisis under control. It’s time for Democrats to get back to work producing…,687,90,265,82K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1731785136847368337,tweet_id:1731785136847368337,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-01T16:55:42.000Z,True,"Today, our nation mourns the passing of a towering figure in the history of American law. Justice Sandra Day O’Connor led with brilliance and conviction. Elaine and I send our deepest condolences to the entire O’Connor family.",75,28,103,19K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1730631771081839051,tweet_id:1730631771081839051,@LeaderMcConnell +Jim Risch,@SenatorRisch,2024-03-21T14:08:00.000Z,True,"On #NationalWomeninAgDay, I’m proud to recognize the women whose strength and leadership help Idaho’s ag industry thrive. I’m fortunate to have spent the last 56 years with my favorite woman in ag by my side.",30,4,18,1.4K,['#NationalWomeninAgDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770814620476870768,tweet_id:1770814620476870768,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T21:35:26.000Z,True,"Idahoans don't want the government in the driver's seat when it comes to operating or buying a vehicle, yet the president is set on taking the wheel, setting unrealistic emissions standards, and diminishing purchasing power with this de facto EV mandate.",26,8,25,2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770564835161374757,tweet_id:1770564835161374757,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-21T14:08:00.000Z,True,"On #NationalWomeninAgDay, I’m proud to recognize the women whose strength and leadership help Idaho’s ag industry thrive. I’m fortunate to have spent the last 56 years with my favorite woman in ag by my side.",30,4,18,1.4K,['#NationalWomeninAgDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770814620476870768,tweet_id:1770814620476870768,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T21:03:26.000Z,True,Good luck to and in today’s game against Colorado! I know you’ll make Idaho proud! #GoBroncos,8,1,8,1.8K,['#GoBroncos'],"['@CoachLeonRice', '@BroncoSportsMBB']",[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770556779165823421,tweet_id:1770556779165823421,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T15:40:14.000Z,True,"The US cannot embrace the full potential of our domestic mining industry when projects are tied up in red tape for nearly a decade. To ensure not just our economic success but our national security, Congress must revamp our mining laws and substantially reduce irrelevant…",15,7,19,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770475443654717667,tweet_id:1770475443654717667,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T16:34:01.000Z,True,"Idahoans are great wildlife managers, and we know these populations best. This agreement between the state and is a step in the right direction for managing grizzly populations, but Congress must expand upon this success by passing my Grrr Act.",20,3,8,1.1K,[],['@USFWS'],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770126591135215854,tweet_id:1770126591135215854,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T15:41:00.000Z,True,"Idaho’s farmers and ranchers work day in and day out to provide for our families and feed the world. +From this rancher, happy #NationalAgDay to Idaho’s ag community!",12,4,16,1.4K,['#NationalAgDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770113250538946828,tweet_id:1770113250538946828,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T13:52:26.000Z,True,"Idaho has long utilized the abundant natural geothermal resources just below its surface. With breakthrough technologies underway, there is great potential to scale up production of this clean, reliable energy. The GEO Act will streamline leasing and permitting processes,…",8,3,8,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770085929199309214,tweet_id:1770085929199309214,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T13:51:31.000Z,True,"The Biden administration’s radical green agenda contradicts science— U.S. air quality standards are the highest they’ve ever been. The president believes they need to be higher still, much to the detriment of American-owned manufacturing. The president’s unnecessary rule must be…",16,6,14,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770085697459814601,tweet_id:1770085697459814601,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-18T19:01:40.000Z,True,"Excited to see the Broncos back in for the third straight year! Dance on, ! Idaho is rooting for you!",16,1,5,2.5K,[],"['@MarchMadnessMBB', '@BroncoSportsMBB']",[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1769801361623810355,tweet_id:1769801361623810355,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-18T16:00:23.000Z,True,"Over the weekend, Idaho received the great honor of having the newest member of the Navy's warships named after it. The ships’ christening was truly done the Idaho way with water from Lake Pend Oreille, Payette Lake, Henrys Lake, and Redfish Lake.",23,7,37,3.7K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1769755738526601397,tweet_id:1769755738526601397,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-14T20:27:03.000Z,True,My interns are celebrating #NationalPotatoChipDay! Are you?,52,10,48,6.9K,['#NationalPotatoChipDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1768373298897821761,tweet_id:1768373298897821761,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-13T18:58:26.000Z,True,"Laken Riley should be with us today. The least we can do is ensure another American life isn't stolen like hers by requiring ICE to arrest, detain, and remove any illegal alien who commits theft in this country.",53,8,34,1.8K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767988606616949003,tweet_id:1767988606616949003,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-13T15:55:53.000Z,True,"More than $6 trillion over the next four years. That’s the additional debt President Biden would add to the already massive national debt the American people must pay back. At a time when Idahoans are struggling to pay for inflation, this is not just tone-deaf—it’s dangerous and…",76,12,55,3.5K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767942668728865032,tweet_id:1767942668728865032,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-13T14:22:25.000Z,True,"Under President Biden, Idahoans are paying $1,021 more each month just to keep up with the rising prices of everyday goods. +Groceries cost more. Rent costs more. Gas costs more. Idahoans are tired of pinching pennies to make it by. +It’s beyond time to end the reckless spending.",138,29,141,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767919146254127386,tweet_id:1767919146254127386,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-12T20:58:12.000Z,True,"The president’s inflated $7.3 trillion budget proposal is chock-full of billions of dollars in unnecessary spending, including billions for the EPA to address a “climate crisis.” In simple terms, this budget would give the Biden administration funds to establish even more…",49,5,30,2.7K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767656362295570737,tweet_id:1767656362295570737,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-12T20:09:01.000Z,True,Even the left-leaning New York Times is acknowledging the burden Bidenflation has imposed on Americans. These “inflation-friendly recipes” are proof that the president and democrats’ spending habits are too much to bear.,26,3,9,861,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767643984099209504,tweet_id:1767643984099209504,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-12T18:29:27.000Z,True,"Inflation is up 18.6% since President Biden took office. Yesterday, he unveiled a $7.3 trillion budget proposal with a $1.8 trillion deficit. Excess spending isn’t the answer to inflation, it’s the catalyst. Americans cannot afford Biden’s agenda.",119,39,137,11K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767618924479127752,tweet_id:1767618924479127752,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-11T21:23:48.000Z,True,I will not vote for any bill that allows any illegals to cross into this country. My red line is not one illegal entrant. We need to enforce the laws we have.,139,84,429,13K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767300415274541564,tweet_id:1767300415274541564,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-11T17:02:04.000Z,True,"The President tried to pass the buck for rising food costs by blaming companies for “shrinkflation.” In reality, he’s trying to cover up that his anti-agriculture and business policies have led to the highest food price inflation in over 4 decades and shrinkflation is to blame…",58,15,37,6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767234547169579154,tweet_id:1767234547169579154,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-09T01:03:30.000Z,True,"This spending package is disappointing—it comes more than five months into the fiscal year, is jammed full of earmarks and the left’s political priorities, and it fails to move towards reducing our national debt. This is not fiscal conservatism, and, as such, I cannot vote for…",94,12,93,5.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766268540888170619,tweet_id:1766268540888170619,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T18:07:05.000Z,True,"Loans are a pretty simple concept. The borrower agrees to pay back the full amount borrowed with interest. +That isn’t President Biden’s definition however, and last night he bragged about his unfair student loan forgiveness scheme.",50,7,22,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766163746789962146,tweet_id:1766163746789962146,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T18:07:06.000Z,True,"I’ve fought every illegal forgiveness effort by the president because it is just wrong to force Idahoans to cover these costs. +You borrow it, you pay it. +It’s that simple.",44,2,16,967,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766163749243658633,tweet_id:1766163749243658633,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T16:53:38.000Z,True,"President Biden doubled down on his radical green agenda last night. That means more regulations, more red tape, and more jobs lost. America could be energy independent, but the president would rather appease environmental extremists.",57,9,25,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766145262601245047,tweet_id:1766145262601245047,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T15:18:00.000Z,True,"International women’s day is about celebrating women around the globe for all they do. The women serving on my staff and leading my family are some of the strongest, most talented women I know. I am proud to celebrate their achievements today and every day.",54,7,9,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766121194041073709,tweet_id:1766121194041073709,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T14:38:11.000Z,True,"Immigration is one of the biggest issues facing America today, yet President Biden waited ~40 minutes to even touch it. +Ridiculous. +But remember, President Biden has the same laws President Trump had to address the crisis.",49,6,34,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766111176503509382,tweet_id:1766111176503509382,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T14:38:12.000Z,True,"Trump enforced them. Biden doesn’t. +Trump eliminated a crisis and constantly reminds us of how to combat the crisis. Biden plays the blame game and waits to bring it up.",40,3,13,811,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766111178336415955,tweet_id:1766111178336415955,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:57:10.000Z,True,"In tonight’s #SOTU speech, President Biden doubled down on his open border policy and again tried to blame Congress.",62,12,43,2.7K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765949855854113008,tweet_id:1765949855854113008,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:57:11.000Z,True,"Biden’s predecessor, with the current law, reduced illegal immigration to zero with executive orders requiring the border patrol to enforce the laws. President Biden rescinded those orders, and the result is 10,000 illegal entrants invading our country every day.",33,5,13,1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765949860086153230,tweet_id:1765949860086153230,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:57:11.000Z,True,"President Biden can reinstate President Trump’s orders and reduce the flow of illegal migrants to zero—if not, Trump will do so when he is elected. I will continue to fight for a zero number of illegals entering America.",32,6,16,1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765949862539837736,tweet_id:1765949862539837736,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:11:31.000Z,True,"President Biden claimed in his speech that his administration is keeping the family farm going, but his aggressive regulatory agenda is threatening the existence of Idaho’s farmers and ranchers.",72,21,83,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765938368276296169,tweet_id:1765938368276296169,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:02:30.000Z,True,"When the president talked about his Buy America bill, he conveniently forgot that his Secretary of the VA is allowing that very bill to be the reason veterans housing facilities across the country, including three in Idaho, won’t see the updates they need.…",44,13,26,3.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765936102366429601,tweet_id:1765936102366429601,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T15:43:07.000Z,True,"With President Biden's SOTU tonight, I'm preparing to hear a lot of falsities, exaggerations, and a big effort to play the blame game. +I'm sure we'll hear about the economy, immigration, and guns. And, I am certain he'll spin the realities of those issues...",63,17,51,10K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765765127473627456,tweet_id:1765765127473627456,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T15:43:07.000Z,True,"Just to set the record straight: +- Liberal spending has worsened inflation & Idahoans pay more and more for goods today than they did when he took office. +- The border crisis is worse because of the president's open border policies and refusal to use his statutory powers to…",55,6,14,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765765129826631986,tweet_id:1765765129826631986,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T15:25:05.000Z,True,"China is seeking every opportunity to diminish American national security, and here is yet another example. +China is America’s biggest threat. +We must stop the CCP from harming us on our own soil.",38,3,7,805,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765760587760296445,tweet_id:1765760587760296445,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T14:51:54.000Z,True,Joining Neal Larson and Julie Mason this morning on NewsTalk at 8:05am (mt). Tune in here: https://newstalk1079.net/listen-live/ !,27,0,1,831,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765752239430209779,tweet_id:1765752239430209779,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-06T15:51:09.000Z,True,"America’s veterans have waited far too long for updated facilities in Idaho & around the country. Due to choosing to selectively apply requirements, veterans will wait longer, & it will cost taxpayers more money for needed facility updates.",46,6,11,1.4K,[],['@SecVetAffairs'],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765404762755698777,tweet_id:1765404762755698777,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-05T19:21:57.000Z,True,"7,000 illegal immigrants a day is 7,000 too many.",73,16,65,5.5K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765095424610701483,tweet_id:1765095424610701483,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-05T17:40:21.000Z,True,The Biden admin’s attack on Idaho law is more than jeopardizing the lives of future generations; it is also threatening the balance of power between federal and state governments.,32,3,7,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765069854925819948,tweet_id:1765069854925819948,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-04T19:05:27.000Z,True,The ATF wants to hold federal firearm license dealers to impossible clerical standards to make it harder to legally sell and buy firearms. This is the latest in the Biden administration’s war on your constitutional rights.,48,5,12,1.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1764728883192930721,tweet_id:1764728883192930721,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-04T17:22:23.000Z,True,"Happy Idaho Day! On this day in 1863, President Abraham Lincoln created the Idaho Territory. I’m thankful each and every day to call the Gem State home. #IdahoDay2024",22,8,34,1.8K,['#IdahoDay2024'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1764702947676410115,tweet_id:1764702947676410115,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-03T14:35:00.000Z,True,"On National Anthem Day, we memorialize the sacrifices made by our brave men and women and the accomplishments of our great nation. The land of the free and the home of the brave!",31,4,26,2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1764298433291031009,tweet_id:1764298433291031009,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-02T14:00:00.000Z,True,"Whether you pick up a newspaper, a good book, or the back of the cereal box, I encourage everyone to spend a little time reading on National Read Across America Day!",26,1,12,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763927240260125034,tweet_id:1763927240260125034,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-01T16:30:31.000Z,True,"On National Speech and Debate Education Day, I commend the students, teachers, and coaches across Idaho competing in speech and debate. These activities are essential for developing important critical thinking and communication skills that will propel the next generation into the…",22,2,6,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763602729669173413,tweet_id:1763602729669173413,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-29T20:24:08.000Z,True,Improvements to soil health have long-lasting and significant economic benefits to Idaho’s agriculture industry. I’m glad to see Idaho’s own Tim Cornie reap the benefits of successful soil management.,17,0,5,2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763299132679070027,tweet_id:1763299132679070027,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-29T17:13:19.000Z,True,"President Biden continues to hide from his border crisis by going to the crossing with the lowest illegal encounters. +This trip is proof he’s not able to face the magnitude of the crisis, which includes more than 9 million illegal migrant crossings during his time in office. +He…",52,11,31,3.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763251113376034947,tweet_id:1763251113376034947,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-28T21:29:08.000Z,True,"Idahoans believe in the right-to-life & the 10th Amendment. + +Since President Biden took office, both of these principles have been under attack. His HHS wrongfully interpreted EMTALA to allow ER doctors to provide abortions. This blatantly contradicts EMTALA’s lifesaving purpose.",28,3,12,1.3K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762953102531940785,tweet_id:1762953102531940785,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-28T16:29:22.000Z,True,"I know it. Idaho knows it. America knows it. + +The millions of immigrants entering the US illegally is the elephant in the room the president cannot keep ignoring.",94,19,54,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762877662752584006,tweet_id:1762877662752584006,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-27T21:10:02.000Z,True,"Biden needs a reality check on EMTALA. + +EMTALA protects life. So does Idaho’s law. + +The president is wrong.",28,5,14,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762585908031692898,tweet_id:1762585908031692898,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-27T19:05:51.000Z,True,"Biden’s HHS is ignoring the fact there’s no federal right to an abortion, misrepresenting federal law, attacking state laws, and pushing for abortion on-demand. + +To counteract this federal abuse of power, I submitted an amicus brief to SCOTUS.",29,5,20,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762554655706390985,tweet_id:1762554655706390985,@SenatorRisch +Martin Heinrich,@SenatorHeinrich,2024-03-22T13:40:15.000Z,True,"Delivering investments that put communities first: +I secured $1,150,000 for the Office of the New Mexico Attorney General's Crime Gun Intelligence Center. #NMbold",4,2,13,1K,['#NMbold'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1771170026189406245,tweet_id:1771170026189406245,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-22T13:40:15.000Z,True,"This investment will aid officers in collecting accurate, essential evidence keeping our communities safe with new ballistics testing machines in Farmington, Gallup, Las Cruces, and Roswell.",0,1,5,579,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1771170027380551885,tweet_id:1771170027380551885,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-21T21:03:28.000Z,True,#GoLobos,16,2,18,1K,['#GoLobos'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770919175889764369,tweet_id:1770919175889764369,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-21T20:52:50.000Z,True,Floor Remarks Honoring the Legacy of Dr. Joseph Suina.,9,2,28,1.7K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770916499458318637,tweet_id:1770916499458318637,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-21T19:42:24.000Z,True,"New Mexicans deserve career pathways in their home communities. My Pro-HEAL Act will deliver on that, while also making it easier for rural communities to access the health care they need.",8,1,14,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770898773952053293,tweet_id:1770898773952053293,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-21T19:42:24.000Z,True,"This was inspired by the success of the BA/MD program. Over 65% of these program graduates go on to practice medicine in NM. +In the next decade, we know there could be a significant shortage of medical providers. This work aims to change that. More:",1,0,5,692,[],['@UNM'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770898775403376701,tweet_id:1770898775403376701,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-21T16:05:42.000Z,True,"In order to grow our economy, keep communities safe during extreme weather events, combat climate change, & lower energy costs, a robust & well-planned grid is essential. +FERC leadership must be fully engaged and in place to deliver on this mission.",6,1,4,963,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770844241641476303,tweet_id:1770844241641476303,@SenatorHeinrich +The White House,@WhiteHouse,2024-03-20T23:00:30.000Z,True,"Big News: Because of President Biden’s CHIPS and Science Act, Intel will build and expand semiconductor facilities in four states. +This investment will create nearly 30,000 direct jobs and support tens of thousands of indirect jobs.",478,1.5K,3.4K,1.2M,[],[],[],https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_x96.jpg,https://twitter.com/WhiteHouse/status/1770586240909295773,tweet_id:1770586240909295773,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-21T13:03:00.000Z,True,"Delivering investments that put community first: +I secured $1 million for the Mescalero Apache Tribe to construct a new Head Start Center. +The best way to invest in our future is to invest in our youth. #NMbold",19,4,47,2.1K,['#NMbold'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770798263030952035,tweet_id:1770798263030952035,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T21:59:00.000Z,True,"One of my first votes in Congress was for the Affordable Care Act, to make health care accessible to working families, including 40,000 New Mexicans benefitting from it this year. +14 years later, I’m still committed to this program & lowering health care costs for all. #ACA14",58,18,115,7.8K,['#ACA14'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770570763164426511,tweet_id:1770570763164426511,@SenatorHeinrich +U.S. EPA,@EPA,2024-03-20T15:38:25.000Z,True,EPA’s final car standards are a win for the environmental and public health! They will slash greenhouse gas and other harmful air pollution #emissions from passenger cars and trucks.https://epa.gov/newsreleases/biden-harris-administration-finalizes-strongest-ever-pollution-standards-cars-position…,61,162,246,150K,['#emissions'],[],[],https://pbs.twimg.com/profile_images/632228259879628800/-gvVhzPn_x96.png,https://twitter.com/EPA/status/1770474989063413784,tweet_id:1770474989063413784,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T20:50:46.000Z,True,"Had a great visit with the today, talking about our continuing work to conserve the waterways and places that will become our children’s inheritance.",4,4,23,1.6K,[],['@wildgilariver'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770553594615300359,tweet_id:1770553594615300359,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T20:43:01.000Z,True,"Every New Mexican deserves an equal opportunity to succeed. +That's why I'm introducing the Postsecondary Student Success Act, legislation that will remove barriers to completing an education & give every person the opportunity to thrive.",1,3,15,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770551643693613100,tweet_id:1770551643693613100,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T15:29:00.000Z,True,"Investing in border security is a priority, but it cannot be the only tool in our toolkit. +We need to pass legislation that also fixes our immigration system, shoring up and creating pathways to documented immigration that make sense.",66,19,47,4.8K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770472616492450226,tweet_id:1770472616492450226,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T15:25:25.000Z,True,"I fought for the CHIPS & Science Act because I knew it would have a transformative impact. +Now it’s funding an expansion at ’s Rio Rancho facility that supports 700 manufacturing jobs & 1,000 construction jobs.",20,31,91,9.3K,[],['@Intel'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770471716524806380,tweet_id:1770471716524806380,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T13:28:59.000Z,True,"Delivering investments that put community first: +I secured $200,000 for to update equipment & provide technical assistance to communities for agricultural emergency planning. #NMbold",9,5,40,2K,['#NMbold'],['@NMDeptAg'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770442414731256099,tweet_id:1770442414731256099,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T13:29:00.000Z,True,"This funding will provide farmers & producers with tools needed stay resilient in a changing climate, while helping families keep food on the table and growing our economy for the future.",1,0,8,699,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770442416736055692,tweet_id:1770442416736055692,@SenatorHeinrich +Bruce Lesley,@BruceLesley,2024-03-11T15:57:00.000Z,True,"As always, thanks to for his outstanding work on the Child Tax Credit and other issues of importance to children and babies, such as WIC.",2,2,13,1.7K,[],['@SenatorHeinrich'],[],https://pbs.twimg.com/profile_images/1595016349121712128/aXrPoCRY_x96.jpg,https://twitter.com/BruceLesley/status/1767218172346659213,tweet_id:1767218172346659213,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T00:27:53.000Z,True,The will have a solid fan base on Friday. All Southwest flights from ABQ to MEM are sold out.,7,5,26,4.7K,[],['@UNMLOBOS'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770245843745903006,tweet_id:1770245843745903006,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-20T00:03:53.000Z,True,"Happy National Ag Day to the farmers & producers across New Mexico who power our economy & help families put food on the table. +As Chair of the Ag Subcommittee, I hope our FY24 investments help support your work in the months ahead.",3,2,21,1.5K,[],['@SenateApprops'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770239806435369047,tweet_id:1770239806435369047,@SenatorHeinrich +Rep. Gabe Vasquez,@RepGabeVasquez,2024-03-19T16:07:12.000Z,True,"I'm closely monitoring the power outages in Quemado and Fence Lake areas of Catron and Cibola Counties, affecting 2600 residents. +To support the community, the Quemado Gym is now open until 3pm, offering bottled waters, showers and a hot lunch from 12-12pm. +Please call my…",12,9,20,2.5K,[],[],[],https://pbs.twimg.com/profile_images/1610534536286441473/88MWAV-X_x96.jpg,https://twitter.com/RepGabeVasquez/status/1770119841891991723,tweet_id:1770119841891991723,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-19T19:05:00.000Z,True,"I fought hard to pass the American Rescue Plan & Infrastructure Law because I knew it would make a real difference in the lives of working families in NM. +Check out this new interactive tool that shows how & where this funding is making a difference:http://nm.gov/federal-funding/…",31,8,58,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770164587272302878,tweet_id:1770164587272302878,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-19T17:12:43.000Z,True,"Congratulations to for earning a ‘silver turnip’ in the Turnip the Beet awards from . +This program recognizes schools that go above and beyond providing access to high quality meals for families during the summer months.https://fns.usda.gov/sfsp/turnip-the-beet…",2,1,9,1K,[],"['@bernalillops', '@USDAgov']",[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770136329055048116,tweet_id:1770136329055048116,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-19T17:12:43.000Z,True,"I’m proud to fight for legislation that builds on their efforts to end child hunger in schools. +Read more: https://heinrich.senate.gov/newsroom/press-releases/heinrich-sanders-gillibrand-and-omar-seek-to-expand-and-make-permanent-universal-school-meals….",0,0,5,736,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770136330195841088,tweet_id:1770136330195841088,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-19T14:42:00.000Z,True,"The USPS should be improving services for rural communities in New Mexico, not cutting them off. +Last week, I joined a letter to Postmaster General DeJoy to call for improvements & protect jobs.https://rb.gy/tce0o2",41,18,80,3.2K,[],['@USPS'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770098400870175194,tweet_id:1770098400870175194,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-19T13:37:59.000Z,True,"Delivering investments that put community first: +I secured $1.5 million for the Town of Springer to design and construct a new fire department substation. +Because when we invest in public safety infrastructure, we invest in a better future for all working families. #NMbold",7,3,26,1.9K,['#NMbold'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1770082291953414587,tweet_id:1770082291953414587,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T20:44:00.000Z,True,"Cementing New Mexico’s role as a leader in national security is a responsibility I take very seriously. +I am proud to have secured over $1.5 billion for our state’s military installations — an investment that will strengthen our economy and defense assets for decades to come.",46,10,62,2.9K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769827113073569867,tweet_id:1769827113073569867,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T20:04:02.000Z,True,I joined & in urging & to take immediate action to lower prescription drug costs. We must drive down costs of life-saving drugs & hold big corps accountable for price gouging working families.https://rb.gy/h7bqxr,15,5,37,1.5K,[],"['@SenatorLankford', '@SenatorTester', '@SenSchumer', '@LeaderMcConnell']",[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769817054507421773,tweet_id:1769817054507421773,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T18:03:41.000Z,True,,104,34,141,7.4K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769786768839098694,tweet_id:1769786768839098694,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T16:53:25.000Z,True,"For a decade, I’ve worked to strengthen & expand the Santa Teresa Port of Entry. +Last week, the funding I secured for a modernization feasibility study delivered big. Now I’m urging & to implement its results. +More:",2,2,14,1.1K,[],"['@CBP', '@USGSA']",[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769769087251497419,tweet_id:1769769087251497419,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T16:53:26.000Z,True,This would cement Santa Teresa among the largest commercial land ports of entry on the entire southern border.,0,1,5,810,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769769088832696381,tweet_id:1769769088832696381,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T15:55:42.000Z,True,Democrats are focused on policies that give you more economic security. Republicans are putting in the wrong type of effort - working to undermine the economic security for our entire government with more shutdown talk. Enough is enough.,50,19,60,8K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769754562057977901,tweet_id:1769754562057977901,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T14:07:57.000Z,True,Haven't Republicans had enough of this?,78,27,100,9.4K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769727442996842535,tweet_id:1769727442996842535,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-18T13:51:02.000Z,True,"Delivering investments that put community first: +I secured $2.1 million for the Town of Red River to construct an operations & maintenance facility for the Fire Dept & Town transit busses. This will better equip our first responders w/ the tools needed to keep us safe. #NMbold",1,2,13,1.2K,['#NMbold'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769723189502882206,tweet_id:1769723189502882206,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-17T15:05:00.000Z,True,"Last week, the Senate passed our legislation to reauthorize & expand RECA, to finally deliver justice for Trinity Downwinders & all Americans exposed to radioactive nuclear materials. +It’s time House Republicans take this up & pass it into law.",10,25,60,2.5K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769379413810974907,tweet_id:1769379413810974907,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-17T12:30:42.000Z,True,This says so much more about Trump than it says about immigrants. I’m grateful for my grandparents who left Nazi Germany for the promise of America. Are they so different?,13,5,15,1.4K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769340584995541011,tweet_id:1769340584995541011,@SenatorHeinrich +NCAA March Madness,@MarchMadnessMBB,2024-03-17T00:20:51.000Z,True,NEW MEXICO WINS THE MOUNTAIN WEST The Lobos are dancing for the first time since 2014 #MarchMadness,39,406,2.5K,244K,['#MarchMadness'],[],"['\\U0001f3c6', '\\U0001f44f']",https://pbs.twimg.com/profile_images/1636206525201956868/WTCwhTUN_x96.jpg,https://twitter.com/MarchMadnessMBB/status/1769156910119317792,tweet_id:1769156910119317792,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-16T20:54:00.000Z,True,"My PATH Act will create more pathways to in-demand careers in our communities — addressing workforce shortages while growing our middle class. +It's a critical and necessary step to investing in the jobs working people in our state can build their families around.",7,0,14,1.7K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769104853895430527,tweet_id:1769104853895430527,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-16T17:26:09.000Z,True,"On the 26th, the Supreme Court will hear arguments to decide if they will block the FDA’s science-based decision to make Mifepristone available at pharmacies. +That should be easy: NO. What’s a stake is both your ability to access an FDA-approved medication and the FDA’s...",23,42,102,4.1K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769052547417784503,tweet_id:1769052547417784503,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-16T17:26:09.000Z,True,"...ability to approve medications. No federal judge should be getting involved in either, and the impacts could go way beyond abortion, birth control, and IVF — impacting cancer treatment and our search for countless medical cures.",2,5,26,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1769052549003231580,tweet_id:1769052549003231580,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-16T00:53:51.000Z,True,"My sincerest condolences to NMSP Officer Justin Hare’s family, friends, & fellow law enforcement. I’ll closely monitor as authorities work to find the person who did this & bring him to justice. If you have any information, report it to Crime Stoppers at 505-843-7867 or call 911.",3,1,15,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768802827705491497,tweet_id:1768802827705491497,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-15T21:38:00.000Z,True,".' budget plan for Fiscal Year 2025 invests in working families by: +- Lowering costs + +- Growing the economy + +- Strengthening Social Security & Medicare + +- Prioritizing border security + +I look forward to working with the Administration to deliver on these priorities.",9,12,27,2.9K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768753539181072584,tweet_id:1768753539181072584,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-15T20:44:00.000Z,True,"From new fire trucks to a new ambulance, the Rural Development Appropriations bill I negotiated will deliver for first responders and the communities they serve. + +Read more:",5,2,25,1.3K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768739949443227959,tweet_id:1768739949443227959,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-15T17:04:00.000Z,True,"Your online data should never be used to target and punish you for seeking health care. Unfortunately, that’s not the reality anymore. + +I’m proud to support the My Body, My Data Act to protect personal health data.",15,5,22,2.6K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768684585142112365,tweet_id:1768684585142112365,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-15T15:02:00.000Z,True,"While families are struggling with rapidly rising prices, mega corporations are raking in record profits. I will continue to work to lower prices and increase competition to give New Mexicans more economic freedom.",58,14,34,5.8K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768653882979410301,tweet_id:1768653882979410301,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-15T14:40:00.000Z,True,"Yesterday was #PiDay. For those looking for something more satiating than the numbers, Pie Town, NM, is a must stop.",7,5,73,2.5K,['#PiDay'],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768648346179133495,tweet_id:1768648346179133495,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-15T13:22:16.000Z,True,"Over $42 million is on its way to support New Mexico’s service members, veterans, & military installations. + +These dollars will help provide veterans the care they deserve, while ensuring those defending our freedoms have the resources needed to carry out their missions.",15,10,51,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768628786000506884,tweet_id:1768628786000506884,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-14T19:02:00.000Z,True,"New Mexico’s law enforcement and first responders keep our communities safe. That’s why it’s crucial they have the best tools & resources available to carry out their jobs. + +The investments I secured in our Appropriations bills do just that.",18,0,19,1.3K,[],[],[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768351893003370819,tweet_id:1768351893003370819,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-14T17:00:53.000Z,True,"I’m urging & to finalize a proposal that would catapult Santa Teresa Port of Entry, making it one of the largest commercial land ports of entry on the entire southern border and boosting its economic impact.",1,1,11,1K,[],"['@USGSA', '@CBP']",[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768321415214674322,tweet_id:1768321415214674322,@SenatorHeinrich +Martin Heinrich,@SenatorHeinrich,2024-03-14T17:00:54.000Z,True,"In the last decade, I’ve secured millions to revitalize this rapidly growing center of New Mexico’s trade economy. + +Including $500,000 to fund & ’s feasibility study to dramatically expand the Port. Final findings were presented in NM last week.",0,0,7,784,[],"['@USGSA', '@CBP']",[],https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_x96.jpg,https://twitter.com/SenatorHeinrich/status/1768321417840595026,tweet_id:1768321417840595026,@SenatorHeinrich +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-21T23:07:51.000Z,True,"We launched an investigation into big drug companies jacking up inhaler costs. +Within weeks, three out of the four of them came clean and capped their costs at $35/month. +I will not stop fighting to lower health care costs and keep Wisconsinites healthy.",123,84,228,9.1K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770950478261588161,tweet_id:1770950478261588161,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-21T21:32:10.000Z,True,Unfair trade practices by China in the shipbuilding industry jeopardize our national security & undermine American jobs. I called on President Biden to investigate China for rigging the game & met with today to fight for a level playing field for American workers.,68,26,55,5.2K,[],['@AmbassadorTai'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770926400070877313,tweet_id:1770926400070877313,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-21T18:31:40.000Z,True,I’m glad to see major drug companies cap their inhaler prices to $35/month after my investigation into their price-gouging tactics. I’ll take on anyone to lower health care costs for Wisconsinites.,106,25,94,6.7K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770880976018637203,tweet_id:1770880976018637203,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-21T16:32:02.000Z,True,"Wisconsinites who want to pursue a career in farming should be able to do so without being locked out because of the cost. +I’m teaming up with to break down barriers to agricultural land ownership and make it easier for more Americans to enter the field.",126,38,88,7.2K,[],['@SenatorBraun'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770850869036163314,tweet_id:1770850869036163314,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-20T21:09:50.000Z,True,The opioid epidemic isn’t a political issue. It’s a moral one. That’s why I’m committed to working with everyone who wants to be a part of the solution to end this crisis and save Wisconsin lives.,152,38,87,11K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770558391934464163,tweet_id:1770558391934464163,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-21T21:32:10.000Z,True,Unfair trade practices by China in the shipbuilding industry jeopardize our national security & undermine American jobs. I called on President Biden to investigate China for rigging the game & met with today to fight for a level playing field for American workers.,68,26,55,5.2K,[],['@AmbassadorTai'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770926400070877313,tweet_id:1770926400070877313,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-21T18:31:40.000Z,True,I’m glad to see major drug companies cap their inhaler prices to $35/month after my investigation into their price-gouging tactics. I’ll take on anyone to lower health care costs for Wisconsinites.,106,25,94,6.7K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770880976018637203,tweet_id:1770880976018637203,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-20T15:49:31.000Z,True,"Our farmers and producers are the engine that keeps our Wisconsin economy moving forward. This National Agriculture Week, I’m thanking the hardworking Wisconsinites who work day in and day out to feed our nation’s families.",36,11,42,3.9K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770477779433193679,tweet_id:1770477779433193679,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-19T23:43:51.000Z,True,"If you’ve noticed grocery products getting smaller but the price remaining the same, it’s not you that’s crazy. It’s big corporations and their price-gouging tactics. and I have a bill to change that.",334,262,678,88K,[],['@SenBobCasey'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770234762839380479,tweet_id:1770234762839380479,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-19T21:05:31.000Z,True,"Happy National Agriculture Day! +I’m grateful for our Wisconsin farmers, producers, and ranchers who work hard to keep our agriculture economy moving forward and feed the world. Today and every day, I’m proud to support their critical work.",22,22,52,3.1K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770194914938065194,tweet_id:1770194914938065194,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-19T19:05:26.000Z,True,"Wisconsin makes things. We make the ships that defend our country and the engines that propel them. is part of that legacy, and it was great to have them in to discuss how I can support their work defending our country and the Wisconsin shipbuilding economy.",29,18,74,3.2K,[],['@FincantieriUS'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770164698698179003,tweet_id:1770164698698179003,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-19T16:55:45.000Z,True,Wisconsinites have been at the mercy of big drug companies jacking up the cost of their lifesaving inhalers and it’s just plain wrong. I'm proud of my work to hold these companies accountable for ripping off our families who rely on inhalers to breathe easier.,38,38,106,5.1K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1770132060415394048,tweet_id:1770132060415394048,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-18T22:08:47.000Z,True,"Today, I heard firsthand from Milwaukee patients & providers about how the high price of inhalers is impacting our families. Wisconsinites should not be ripped off to get these lifesaving devices & I won’t stop fighting to hold big drug companies accountable.",87,61,155,5K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769848449137037799,tweet_id:1769848449137037799,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-18T20:17:43.000Z,True,"Wisconsin families deserve to be safe in their communities, and I’m proud to bring home the resources our law enforcement and public safety leaders need to keep our neighborhoods safe.",86,76,202,8.7K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769820501138940267,tweet_id:1769820501138940267,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-18T15:01:31.000Z,True,"News Glad to see yet another big drug company cap their inhaler prices to $35/month after I led an investigation into their price gouging tactics. +I’ll be in Milwaukee today to talk with Wisconsinites about how this will be a big win in lowering their health care costs.",25,8,40,5.2K,[],[],"['\\U0001f6a8', '\\U0001f6a8']",https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769740926425948281,tweet_id:1769740926425948281,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-17T19:31:35.000Z,True,"Women should have the freedom to control their bodies and health care — without having to travel across state lines. +I am fighting for families, just like Megan’s, to make sure that they have the right to decide their futures.",121,183,448,10K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769446503502737549,tweet_id:1769446503502737549,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-17T15:31:24.000Z,True,I hope everyone celebrating in Wisconsin and across the world has a happy and safe St. Patrick’s Day! ,34,25,167,8.6K,[],[],['\\U0001f340'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769386057596797311,tweet_id:1769386057596797311,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-17T00:09:47.000Z,True,"I had a great discussion with Wisconsin law enforcement and public safety leaders who are committed to being part of the solution to ending the fentanyl epidemic. We can do this, but it will take all of us – working together.",85,50,149,13K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769154127567729036,tweet_id:1769154127567729036,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-16T14:25:44.000Z,True,"In case you missed it, the 6th Street corridor in Milwaukee is getting a makeover thanks to the funding I helped deliver! +These improvements will reconnect communities that have been divided by past highway construction & make it easier to access work, school, & opportunity.",94,94,413,15K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1769007143242400187,tweet_id:1769007143242400187,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-15T21:20:09.000Z,True,Collaboration with government & local leaders is key to tackling the fentanyl crisis. I joined Wisconsin law enforcement & public safety leaders today in Milwaukee to discuss our work to fight this crisis & keep Wisconsin safe.,71,37,126,5K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1768749046577926324,tweet_id:1768749046577926324,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-15T15:10:01.000Z,True,"Protecting Social Security & Medicare, making the wealthy pay their fair share in taxes, and lowering prescription drug costs are all things I’m proud to be fighting for.",105,76,240,10K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1768655901156602268,tweet_id:1768655901156602268,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-14T18:59:53.000Z,True,"Wisconsin’s shipbuilding industry has a strong history of supporting our economy and national security, but countries like China are rigging the system and hurting our workers. That’s why I’m fighting to bring shipbuilding back to America.",54,25,72,3.3K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1768351360146190545,tweet_id:1768351360146190545,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-14T15:29:22.000Z,True,"My heart breaks for Nex’s loved ones & the Owasso community. Nex, like too many LGBTQ+ kids, was bullied just for being their authentic selves. All kids deserve the freedom to live free from harassment. We must stand up to this hate & ensure those who are struggling can get help.",82,87,374,20K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1768298380847878608,tweet_id:1768298380847878608,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-13T21:58:07.000Z,True,"Local leaders know best what their communities need, and I’m proud to support them. Had a great meeting with members to talk about our work to expand affordable housing and ensure law enforcement has the resources they need to keep our communities safe.",43,10,38,2.2K,[],['@MKE_CC'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1768033825769058371,tweet_id:1768033825769058371,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-13T18:32:59.000Z,True,"For too long, China has tried to rig the system with unfair trade practices that hurt American workers & our national security. I was proud to stand with American workers in calling on to investigate China’s anti-competitive practices & level the playing field.",28,10,24,2.2K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767982201440796895,tweet_id:1767982201440796895,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-13T14:42:31.000Z,True,I fought hard for these investments because they will make a real difference for Wisconsin families and businesses! Read more here https://baldwin.senate.gov/news/press-releases/baldwin-brings-home-over-39-million-in-infrastructure-upgrades-to-reconnect-wisconsin-communities…,73,111,269,19K,[],[],['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767924204396024009,tweet_id:1767924204396024009,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-12T20:06:49.000Z,True,"When we make things in America, we support American jobs, American businesses, and the American economy. ",84,61,225,6.9K,[],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767643428291010920,tweet_id:1767643428291010920,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-12T18:33:06.000Z,True,"HAPPENING NOW: I’m with and to call on the Biden administration to crack down on China’s unfair trade practices and stand with American workers. +Don’t miss it! Tune in here ",28,39,91,7.4K,[],"['@SenBobCasey', '@steelworkers']",['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767619846705996029,tweet_id:1767619846705996029,@SenatorBaldwin +United Steelworkers #EverybodysUnion,@steelworkers,2024-03-12T14:03:02.000Z,False," Tune in today at 2:30p for an announcement about American Shipbuilding with and . +Stream here: http://usw.to/ships",22,23,31,5.5K,[],"['@SenBobCasey', '@SenatorBaldwin']",['\\U0001f6a8'],https://pbs.twimg.com/profile_images/1611393600578850819/CpmjFitj_x96.png,https://twitter.com/steelworkers/status/1767551879397958102,tweet_id:1767551879397958102,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-11T22:34:31.000Z,True,"It was a pleasure to have Waukesha Police Chief Thompson join me for the State of the Union and highlight the need for all of us – from down – to work together to tackle the fentanyl crisis, keep our communities safe, and turn this crisis around.",114,51,171,4.8K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767318209584070772,tweet_id:1767318209584070772,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-11T16:28:05.000Z,True,"I’m proud to deliver for Wisconsin. These investments will give our communities the resources they need to keep our state safe, service members supported, and our businesses and economy moving forward! +Take a look at a few of the projects I delivered for ",96,307,673,18K,[],[],['\\U0001f447\\U0001f3fb'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767225993981259926,tweet_id:1767225993981259926,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-11T16:28:31.000Z,True,Check out the rest of these community-driven projects below to learn more! ,4,8,20,1.5K,[],[],['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1767226104215957576,tweet_id:1767226104215957576,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-11T00:32:39.000Z,True,"As we mark the first day of #Ramadan, I am wishing our Muslim communities celebrating in Wisconsin and across the country a safe holiday with family and friends.",59,33,151,10K,['#Ramadan'],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1766985552769831029,tweet_id:1766985552769831029,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-10T17:02:51.000Z,True,"Wisconsin lost over 1,400 people to an opioid overdose in 2022. We can and must do more to stop this epidemic and save lives. Chief Thompson and I were proud to represent those committed to being part of the solution at this year's State of the Union.",45,16,42,3.2K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1766872356432048445,tweet_id:1766872356432048445,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-09T18:18:48.000Z,True,"I’ve said it before, and I’ll say it again: No American should go broke just to get the medication they need to stay healthy. +I led the investigation into big drug companies’ price gouging on inhalers and am glad to see them respond and lower costs for families.",67,88,218,6.9K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1766529082387202297,tweet_id:1766529082387202297,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-09T00:32:32.000Z,True,"Incredibly saddened to hear of the heartbreaking news coming out of Clark County. My heart goes out to the loved ones of the nine lives tragically lost today. I am keeping their friends, families, and communities in my thoughts as we mourn this devastating loss.",28,14,65,6.6K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1766260749930774768,tweet_id:1766260749930774768,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-08T23:10:41.000Z,True,"If we are investing taxpayer dollars, we better be using American workers, American materials, and American companies. I’m proud to have successfully pushed the President to ensure we do this when we rebuild our highways and bridges.",27,22,66,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1766240148511977619,tweet_id:1766240148511977619,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-08T17:38:34.000Z,True,"From expanding civil rights to growing our Made in Wisconsin economy, some incredible women have shaped the Badger State. On International Women’s Day, I’m celebrating all the women who have made our state and country stronger!",31,17,50,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1766156569056538926,tweet_id:1766156569056538926,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-08T02:13:02.000Z,True,"The fentanyl epidemic doesn’t know county or party lines. This impacts us all, which means it’s going to take all of us to fight this crisis. I’m grateful to have Waukesha Police Chief Thompson with me at the #SOTU as we push toward our shared goal of ending this deadly epidemic.",67,30,116,7.4K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765923653139501232,tweet_id:1765923653139501232,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-07T19:49:18.000Z,True,"With thousands of jobs and billions of dollars relying on our Great Lakes icebreaking capacity, it’s crucial that we have the resources to get the job done. I’m working to bring a new icebreaker to our waters so that our Great Lakes economy can keep sailing forward.",30,12,29,2.5K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765827082045514051,tweet_id:1765827082045514051,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-07T17:16:26.000Z,True,"We launched an investigation into big drug companies because the prices they were charging for inhalers just didn’t add up. + +And looks like we were right. + +I’m glad to see some of the price gouging end and proud to help lower costs for Wisconsin families.",48,87,277,11K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765788611268563325,tweet_id:1765788611268563325,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-07T00:31:17.000Z,True,Wisconsin Veterans of Foreign Wars served our country bravely and put their lives on the line for our freedom. I was happy to have Wisconsin VFW members in today to thank them for their service and discuss the ways we can keep supporting them here at home.,53,27,108,3.6K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765535657710026765,tweet_id:1765535657710026765,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-06T18:30:25.000Z,True,We had a bipartisan border deal to give law enforcement new tech to stop fentanyl from crossing our border. Republicans blocked it because of political games & now those tools are collecting dust. It's wrong & we need to pass our bipartisan compromise.,136,423,836,26K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765444841440268441,tweet_id:1765444841440268441,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-06T15:01:31.000Z,True,"Our police officers are on the front lines fighting the fentanyl crisis in Wisconsin. Tomorrow, I’m bringing Waukesha Police Chief Thompson as my guest to the State of the Union address to highlight our push to end this deadly epidemic and save lives.",42,13,32,8.5K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765392271896191184,tweet_id:1765392271896191184,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-05T23:07:48.000Z,True,"Our firefighters dedicate their lives to serving our communities, & it’s my job to ensure they have the resources and tools they need to keep Wisconsin safe. + +Thanks for stopping in , always thankful for your work in the Badger State!",59,21,76,3K,[],['@PFFW'],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765152261385134165,tweet_id:1765152261385134165,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-05T18:56:18.000Z,True,"Thanks to our PACT Act, millions of toxic-exposed veterans who served our country can get the health care they earned through the VA. + +Direct enrollment starts TODAY! http://VA.gov/PACT",21,22,49,6.1K,[],[],['\\u27a1\\ufe0f'],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765088967836188989,tweet_id:1765088967836188989,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-05T16:33:19.000Z,True,Apprenticeship programs at UA Local 400 are giving Wisconsinites the skills they need to meet our economy's demands and secure a comfortable middle class life. I’m proud to advocate for expanding these programs and it was great to be in Kaukauna to see this hard work in action!,17,12,32,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1765052985573330949,tweet_id:1765052985573330949,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-04T23:40:00.000Z,True,"Charging consumers the same price for less product isn’t inflation, it’s shrinkflation. Big corporations have been using this deceptive tactic to boost their bottom lines and it’s wrong. Americans deserve transparency and I’m determined to get it.",84,65,168,8.8K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1764797975341998295,tweet_id:1764797975341998295,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-04T21:00:33.000Z,True,Apprenticeships are a time-tested way of growing our economy and expanding our middle class. It was good to be at UA Local 400 Pipe Trades Training Center in Kaukauna today to meet with apprentices who are getting the training and skills they need to land family-supporting jobs.,38,50,170,6.5K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1764757849752645942,tweet_id:1764757849752645942,@SenatorBaldwin +Sen. Tammy Baldwin,@SenatorBaldwin,2024-03-04T16:56:16.000Z,True,Icebreaking on our Great Lakes supports thousands of jobs and ensures our shelves stay stocked with goods. That’s why I’m working to increase icebreaking capacity because our Wisconsin economy depends on it.,32,29,95,5.3K,[],[],[],https://pbs.twimg.com/profile_images/1557799702690676737/2nPy1xUY_x96.jpg,https://twitter.com/SenatorBaldwin/status/1764696373683695847,tweet_id:1764696373683695847,@SenatorBaldwin +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",70,91,284,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:37:54.000Z,True,"No matter what the Obama judge says, illegal immigrants don’t have the right to own a firearm. +Foreign nationals who are in our country illegally are not Americans. Duh.",356,1.2K,4.7K,55K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770897644514095378,tweet_id:1770897644514095378,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:12:24.000Z,True,"The Senate just unanimously passed my common-sense solution to help the private sector & federal officials work together to better respond to hurricanes and other emergencies. +I’ll keep working to get Louisianians the help they need when disaster strikes.",48,23,175,10K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770891225031131487,tweet_id:1770891225031131487,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2021-05-21T21:29:51.000Z,True,"Louisianians fall down 7 times and get up 8—even when floods come on the heels of hurricanes. +I saw that firsthand today when I caught up with heroes like Ms. Geraldine in Carencro.",6.2K,1.2K,7.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1395854377278218242,tweet_id:1395854377278218242,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T19:43:20.000Z,True,"The Biden admin is again weaponizing the tax code against American energy producers. +The president’s plan would raise energy prices for Louisiana families even higher.",70,91,284,12K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770899009579696214,tweet_id:1770899009579696214,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T17:30:15.000Z,True,"For a state with a median household income around $58,000, losing $19,000 to Biden-flation is a world of pain.",115,93,444,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770865517311525371,tweet_id:1770865517311525371,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T15:11:07.000Z,True,"Democrats want to spend $50 TRILLION to become carbon neutral & held a hearing to tell us why. +Dem witness: Carbon dioxide is ""a huge part of our atmosphere."" +Me: ""It’s actually a very small part of our atmosphere."" (0.035%) +Dem witness: ""Well, okay. But, yeah. I don’t know.""",1.7K,5.2K,14K,534K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770830505417576612,tweet_id:1770830505417576612,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-21T14:25:13.000Z,True,Democrats' witnesses support abortion up until the moment a child is born.,382,512,1.3K,36K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770818953322869031,tweet_id:1770818953322869031,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T21:38:58.000Z,True,"Many Louisianians are still recovering from Hurricane Ida’s damage. +This $9.4M will help repair electric lines in south Louisiana and support Lafourche Parish Hospital’s continued recovery.",53,16,135,14K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770565724446052422,tweet_id:1770565724446052422,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:25:09.000Z,True,Small businesses create good jobs. Big Biden government shouldn’t crowd out private lenders that are already doing a good job getting funds to the small businesses that need them.,47,32,200,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770532046416294076,tweet_id:1770532046416294076,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T19:04:59.000Z,True,"Biden judge: “Assault weapons may be banned because they're extraordinary dangers and are not appropriate for legitimate self-defense purposes.” +The same Biden judge: “I am not a gun expert.”",314,1K,4K,93K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770526972122108061,tweet_id:1770526972122108061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T15:17:43.000Z,True,"Razor wire won't hurt you unless you try to go over it or through it. +So I've never understood politically why Pres. Biden wants to oppose barriers at the southern border—other than the fact that he really does believe in open borders.",203,449,2.2K,38K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770469779813331147,tweet_id:1770469779813331147,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-20T13:22:21.000Z,True,"Some of my Democratic colleagues call folks who are in our country illegally “undocumented Americans.” +They're not undocumented Americans. +They're foreign nationals, and they're in our country illegally.",743,1.5K,6.2K,62K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770440745930867061,tweet_id:1770440745930867061,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T22:07:58.000Z,True,"Last year’s drought hammered Louisiana’s crawfish producers. + +I joined the Louisiana delegation in urging the SBA to help our crawfish producers get the help they need.",102,25,230,18K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770210634321260689,tweet_id:1770210634321260689,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T21:24:50.000Z,True,"Louisiana’s small businesses are the backbone of our economy, and they deserve a fair shot at working with the federal government. +Here’s one thing I’m doing to make that happen:",59,9,126,15K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770199778787262538,tweet_id:1770199778787262538,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-19T17:40:21.000Z,True,"The Biden admin is punishing non-union employers, and that makes it harder for Louisianians to find jobs and build careers on their own terms.",104,83,318,17K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1770143284020519408,tweet_id:1770143284020519408,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T19:52:19.000Z,True,"Real wages just can’t keep up with #Bidenflation. +So, hardworking Louisianians feel like they’re running a race they can’t win.",228,133,549,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769814107291537838,tweet_id:1769814107291537838,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-18T13:57:58.000Z,True,"It’s impossible to fully undo the effects of cross-sex hormones or heal the scars of mastectomies or genital surgeries. +So why do some activists insist that parents rush kids into sex-change surgeries and inject them with sterilizing drugs?",160,270,1.2K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769724933238628653,tweet_id:1769724933238628653,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-17T15:13:39.000Z,True,Becky and I wish Louisiana all the Luck of the Irish we can muster this #StPatricksDay!,94,40,505,26K,['#StPatricksDay'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1769381590163980380,tweet_id:1769381590163980380,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-15T16:20:04.000Z,True,"Sometimes I think that the Biden White House would lower the average IQ of an entire city. +You can't borrow and spend the kind of money that Pres. Biden has without causing inflation. +This is basic ECON 101.",1K,798,3.2K,72K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768673531213009330,tweet_id:1768673531213009330,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T17:41:49.000Z,True,"Why are energy costs up almost 35% under Pres. Biden? +He’s spent 3 years bowing to neo-socialists who think America has no right to be energy independent.",386,333,1.3K,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768331714156269648,tweet_id:1768331714156269648,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T15:19:08.000Z,True,TikTok hasn’t proven that the Communist Party of China doesn't have access to our data.,391,150,663,31K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768295805536932128,tweet_id:1768295805536932128,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-14T13:22:52.000Z,True,"Leftist leaders put wokeness above learning, and Americans are facing a real crisis: 2/3 of fourth graders can’t read effectively.https://nationsreportcard.gov/reading/nation/achievement/?grade=4…",266,123,546,19K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768266549243035656,tweet_id:1768266549243035656,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T19:55:17.000Z,True,"Pres. Biden and Sec. Mayorkas may want to let dangerous lawbreakers come roam America illegally, but Congress doesn't. +The Laken Riley Act would get criminal aliens out of our country before they victimize more Americans.",274,206,1K,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1768002913798922481,tweet_id:1768002913798922481,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T18:13:01.000Z,True,"Hurricane Ida left many in southeast Louisiana without a safe place to work. +I’m grateful this $1.6M will help cover the costs of temporary offices in Houma.",48,12,115,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767977177792819370,tweet_id:1767977177792819370,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T17:03:12.000Z,True,"When waterways overflow, Louisianians’ homes and businesses are at risk of serious damage. +I’m grateful to see that this $4.3M will reduce the risk of flooding in Concordia Parish.",80,15,99,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767959606997774406,tweet_id:1767959606997774406,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T15:18:17.000Z,True,"The Biden admin wants to limit Americans’ freedom to get affordable, short-term health insurance plans that fit their needs. +My Patients Choice Act would make sure bureaucrats can’t force Louisianians to pay more for insurance through Obamacare.",85,50,223,13K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767933204722315472,tweet_id:1767933204722315472,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-13T13:20:07.000Z,True,#Bidenflation is literally eating Louisianians out of house and home.,310,133,529,22K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767903468751056960,tweet_id:1767903468751056960,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T19:47:11.000Z,True,The Senate cannot and should not turn a deaf ear to the democratically elected members of the House by dismissing their charges against Secretary Mayorkas without a full and fair trial.,310,696,3.1K,46K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767638487157612958,tweet_id:1767638487157612958,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:54:28.000Z,True,"Louisiana families don’t have an extra $867 to burn every month. +But that’s what #Bidenflation now costs them.",370,307,925,23K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767595023510405442,tweet_id:1767595023510405442,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-12T16:28:48.000Z,True,Left-of-Lenin wokers can’t wake up to reality fast enough.,29,48,221,11K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767588563443417263,tweet_id:1767588563443417263,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T19:09:05.000Z,True,"The United Kingdom, Sweden, Luxembourg, Finland, Denmark, and Belgium have all prohibited sex reassignment surgeries for children. +Other countries are proving themselves wiser than America.",328,1.7K,6.2K,85K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767266510752407613,tweet_id:1767266510752407613,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T17:42:43.000Z,True,"Unelected bureaucrats shouldn’t be able to strip veterans of their Second Amendment rights unilaterally. +Because my legislation is now law, veterans will get the due process they deserve to protect their #2A freedom.",151,87,533,15K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767244778054324407,tweet_id:1767244778054324407,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T16:33:04.000Z,True,"The majority of Americans support building the WALL. +Meanwhile, the Biden admin remains addicted to its open border.",467,218,1.2K,26K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767227251421016129,tweet_id:1767227251421016129,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-11T15:29:22.000Z,True,"Any fair-minded American knows that Pres. Biden’s guiding principle has been, “Let's do the dumbest thing possible that won't work.” + +And it’s now costing Louisiana families $9,912 every year.",394,323,1.1K,25K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1767211219310563823,tweet_id:1767211219310563823,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T18:25:56.000Z,True,"If the Senate dismisses the impeachment charges against Sec. Mayorkas without a trial, it will set a new and boldly anti-democratic precedent.",765,1.7K,6.7K,89K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766168491407659288,tweet_id:1766168491407659288,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T15:21:28.000Z,True,Pres. Biden’s pretty words can’t hide his price hikes: Grocery store staples cost Americans 21% more under his economic mismanagement.,345,351,1.3K,28K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1766122069543018961,tweet_id:1766122069543018961,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,4/5 Pres. Biden seems to have more respect for the ‘rights’ of illegal immigrants than for those of loving parents and of unborn children.,19,25,175,5.7K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884152413299101,tweet_id:1765884152413299101,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:05.000Z,True,"5/5 The president’s policies fail because his priorities are backwards. + +Insanity has consequences, and Pres. Biden would rather allow those consequences to hamstring American families than admit his mistakes and change course.",19,18,164,5.7K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884153860427875,tweet_id:1765884153860427875,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"2/5 Thanks to Bidenomics, Louisiana families are paying an extra $826 every month just to make ends meet.",26,20,152,5.2K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884149741617433,tweet_id:1765884149741617433,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"3/5 Pres. Biden created the border #BidenBorderCrisis and then ignored it. + +His admin let the border wall languish and paroled MILLIONS of aliens into the country illegally.",15,22,147,5.2K,['#BidenBorderCrisis'],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884150953758727,tweet_id:1765884150953758727,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T23:36:04.000Z,True,"1/5 Tonight, Louisianians will be thinking, ‘Nice try, President Biden’ because they know that he’s replaced the American Dream with high prices, open borders, energy dependence AND rampant crime.",149,156,792,30K,[],[],['\\U0001f9f5'],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765884148437139802,tweet_id:1765884148437139802,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-08T04:14:41.000Z,True,The Biden admin has been breathtakingly awful.#SOTU,1.4K,2.7K,11K,170K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765954267649634467,tweet_id:1765954267649634467,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T19:08:33.000Z,True,"Any fair-minded person can see that the House’s impeachment charges against Sec. Mayorkas are serious and demand a full, fair trial.",394,501,2.8K,45K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765816825965637990,tweet_id:1765816825965637990,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-07T15:40:48.000Z,True,"Crawfish are a big part of Louisiana culture, but a bad drought has devastated local farmers’ businesses. + +My CRAWDAD Act would help give our farmers the emergency relief they need to keep putting crawfish on our tables.",128,44,277,24K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765764545467883537,tweet_id:1765764545467883537,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-06T18:19:48.000Z,True,Kids change their minds. That’s why God gave them parents.,214,614,3.5K,49K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765442168754200620,tweet_id:1765442168754200620,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-05T18:49:50.000Z,True,"No sane person would give an anorexic teenager Ozempic or staple her stomach because she thinks she’s fat. + +But gender activists rush to inject girls with irreversible cross-sex hormones and inflict double mastectomies on them—all in the quest to “affirm” gender confusion.",497,2K,7.2K,112K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1765087341696405867,tweet_id:1765087341696405867,@SenJohnKennedy +John Kennedy,@SenJohnKennedy,2024-03-04T21:22:15.000Z,True,"The SEC’s CAT could put the personal data of 158M Americans at risk. + +That’s why I introduced a bill to protect Americans from this prying database and demanded the SEC investigate the CAT’s privacy risks.",472,136,335,77K,[],[],[],https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_x96.jpg,https://twitter.com/SenJohnKennedy/status/1764763310199541894,tweet_id:1764763310199541894,@SenJohnKennedy +Senator Cortez Masto,@SenCortezMasto,2024-03-22T14:13:00.000Z,True,"Our kids deserve every opportunity to succeed. That's why I introduced the AFTER SCHOOL Act, to deliver federal investments to schools for after school programs that prevent crime and connect young Nevadans with support, education, and the resources they need for a better future.",5,7,20,659,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1771178266432524610,tweet_id:1771178266432524610,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T23:30:59.000Z,True,"I'm always grateful for the and their advocacy for our union workers, especially women members. + +Whether it's affordable child care, housing for workers, or equal pay for equal work - I'm proud to fight every day for our union women literally building Nevada's future.",14,10,35,1.6K,[],['@NVAFLCIO'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770956300773425402,tweet_id:1770956300773425402,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T19:10:00.000Z,True,"Geothermal energy is a key part of our growing clean energy economy, and I'm working to support new projects that will power our communities and create good-paying jobs right here in Nevada.",1,4,10,904,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770890620820689090,tweet_id:1770890620820689090,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T16:26:05.000Z,True,"Congrats, ! Madi is precious.",4,1,29,2.1K,[],['@Sheriff_LVMPD'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770849369090121757,tweet_id:1770849369090121757,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T14:00:26.000Z,True,"I know how challenging it can be for first-generation college students, my sister and I were the first in our own family to graduate. + +That's why I fight for programs like TRIO, to make sure every student in Nevada has the support and resources they need to succeed.",9,14,38,1.3K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770812716770361704,tweet_id:1770812716770361704,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T23:30:59.000Z,True,"I'm always grateful for the and their advocacy for our union workers, especially women members. + +Whether it's affordable child care, housing for workers, or equal pay for equal work - I'm proud to fight every day for our union women literally building Nevada's future.",14,10,35,1.6K,[],['@NVAFLCIO'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770956300773425402,tweet_id:1770956300773425402,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T19:10:00.000Z,True,"Geothermal energy is a key part of our growing clean energy economy, and I'm working to support new projects that will power our communities and create good-paying jobs right here in Nevada.",1,4,10,904,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770890620820689090,tweet_id:1770890620820689090,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-21T01:25:16.000Z,True,"My dad used to pack our family into the car and drive us up from Las Vegas to Lake Tahoe. And every time I'm back, I still think of those great memories together. + +Lake Tahoe is special - not just to me, but to families all over Nevada. And I will always stand up to protect it.",22,16,119,2.9K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770622674454155647,tweet_id:1770622674454155647,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T21:50:51.000Z,True,"I just finished meeting with Nevadans from the Association about the work I'm doing to boost our tourism and hospitality economy. + +Nevada is a world-class destination, and I'm fighting to support our workers and businesses that count on tourism for their livelihoods.",9,4,14,2.5K,[],['@USTravel'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770568713047064631,tweet_id:1770568713047064631,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T18:04:08.000Z,True,". and I had a great time welcoming Nevada TRIO students and faculty to the Senate today. We hope you all enjoy your time in our nation's capital, and safe travels back home!",19,14,48,2.2K,[],['@SenJackyRosen'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770511656738558258,tweet_id:1770511656738558258,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T14:46:16.000Z,True,"In 2017, Donald Trump tried to repeal the Affordable Care Act and strip away Nevadans' essential health care. + +In 2021, Pres. Biden and expanded the ACA and helped even more Nevadans get health coverage - that's what actually fighting for working families means.",13,28,71,5.6K,[],['@SenateDems'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770461864251490515,tweet_id:1770461864251490515,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T14:46:17.000Z,True,"Defending the ACA was one of my very first votes in the Senate, and I will always be proud of it. But the fight isn't over. + +I will always stand up for our hardworking Nevada families to ensure they can access the quality, affordable health care they need.",2,2,8,834,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770461865870578071,tweet_id:1770461865870578071,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-20T01:27:03.000Z,True,"Career and technical education is critical for Nevadans to get the skills training they need for booming industries like clean energy and health care. + +I'm proud to work alongside partners like to push for more investments to expand education opportunities in this state.",11,3,17,1.8K,[],['@NvActe'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770260735622320589,tweet_id:1770260735622320589,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T22:18:07.000Z,True,"Ready to cheer on our soon-to-be #MarchMadness champions, and ! +I'm from Las Vegas, don't tell me the odds.",20,22,137,7.4K,['#MarchMadness'],"['@NevadaHoops', '@UNLVLadyRebels']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770213186580418933,tweet_id:1770213186580418933,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T19:07:00.000Z,True,"I'm strongly opposed to any move by that would threaten Nevada jobs and put our seniors' essential medication deliveries at risk of delay. +Moving operations from Reno to California is unacceptable, and I'm fighting to stop it and protect Nevadans' mail service.",8,10,29,2K,[],['@USPS'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770165090538680419,tweet_id:1770165090538680419,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T16:53:00.000Z,True,"It's time to stop relying on imports for the critical minerals we need to build our clean energy future. +I'm glad to see this federal investment will help bring that supply chain back home and create good-paying, clean energy jobs right here in Nevada.",5,2,11,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770131368019689945,tweet_id:1770131368019689945,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T14:15:00.000Z,True,"It's not a secret: anti-choice extremists have already pushed for a national abortion ban and restrictions on women's basic rights and freedoms. +That's why I'm continuing to fight to protect access to reproductive health care in this country.",24,35,82,5.5K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1770091606420455581,tweet_id:1770091606420455581,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-19T01:00:01.000Z,True,"This funding I secured will help local and Tribal police upgrade their equipment and improve their ability to keep our families and communities safe. +Nevada law enforcement can always count on me to deliver the resources they need to serve our state.",27,30,87,2.6K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769891542901366975,tweet_id:1769891542901366975,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T22:17:00.000Z,True,"Women in Tribal communities are more than twice as likely to experience violence, stalking, or assault, but declines to prosecute more than half of their cases. That's unacceptable, and I'm calling on the Attorney General to take action now to address this crisis.",2,8,32,1.4K,[],['@TheJusticeDept'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769850517352599577,tweet_id:1769850517352599577,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T20:15:00.000Z,True,"Nuestras carreteras deben ser seguras para todos los que las usan - conductores, ciclistas, y peatones. Por eso luché para brindar estas nuevas inversiones para hacer nuestras carreteras en Las Vegas más seguras por medio de mi programa SMART. ",6,3,9,993,[],[],['\\U0001f53d'],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769819815470825753,tweet_id:1769819815470825753,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T16:39:00.000Z,True,"I fought to expand the Earned Income Tax Credit to help working families in our state get the tax relief they deserve. But right now, nearly 25% of eligible Nevadans don't claim it. +Don't wait, go to http://irs.gov/eitc to see if you qualify for this tax relief.",7,14,22,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769765456913862657,tweet_id:1769765456913862657,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T14:35:00.000Z,True,"For so many families like mine in our Latino community, homeownership is a stepping stone on the path to the American Dream. knows it, and I'm proud to have partners like them as I fight to bring more middle-class housing to Nevada and combat the housing crisis.",8,5,15,1.3K,[],['@NAHREP'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769734251476603330,tweet_id:1769734251476603330,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-18T01:56:12.000Z,True,"Thank you to Latino Media Network for having me for a tour of their Las Vegas office and radio station! + +Their work is keeping our Latino community informed about the issues that matter, and I look forward to seeing them continue to serve our state for years to come.",6,13,49,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769543295330402735,tweet_id:1769543295330402735,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-17T21:52:59.000Z,True,"Daniel Dominguez's family came to America to build a better life. Now, they're small business owners here in Las Vegas and serving our community. + +It's my honor to recognize their hard work operating Dulce Michoacan. This is what the American Dream is all about.",12,9,38,1.8K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769482084924461313,tweet_id:1769482084924461313,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-17T15:16:56.000Z,True,Wishing everyone celebrating today a happy and safe #StPatricksDay!,2,3,18,1.5K,['#StPatricksDay'],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769382417943441505,tweet_id:1769382417943441505,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-16T22:45:00.000Z,True,"Anti-choice extremists are pushing for national restrictions on abortion that would block women in Nevada from getting essential health care. +But Nevada is a proud pro-choice state, and I'm fighting to protect women's rights and freedoms that we've fought to secure.",49,44,104,3.3K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769132787993604531,tweet_id:1769132787993604531,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-16T15:12:22.000Z,True,"Tribal communities in Nevada face too many barriers to accessing mental health care resources. + +That's why and I are pushing to improve support for mental health programs for Tribes so they can deliver the care families need.",17,17,59,1.6K,[],"['@SenJackyRosen', '@SecBecerra']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1769018879089553824,tweet_id:1769018879089553824,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-16T02:20:09.000Z,True,"Let me be clear: I will never stop fighting for our Dreamers. + +Dreamers were brought to America as children, and now they're doctors, teachers, and so much more to their communities. They deserve a pathway to citizenship, and that's what I'm fighting for.",81,46,131,4K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768824547489218686,tweet_id:1768824547489218686,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T22:29:25.000Z,True,"Stopped by MILPA Mexican Cafe this afternoon to recognize DJ Flores for all of his hard work serving our community as a Latino-owned small business in Southwest Las Vegas. +Thank you DJ for having me today - lunch was delicious!",16,16,84,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768766477643997238,tweet_id:1768766477643997238,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T19:23:00.000Z,True,"I've heard serious concerns from so many families, seniors, and veterans in Northern Nevada that are worried about attempting to move operations out of Reno and into California. +I'm strongly opposed to this and am demanding not move forward with this plan.",12,19,61,2K,[],"['@USPS', '@USPS']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768719565125755048,tweet_id:1768719565125755048,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T16:52:00.000Z,True,"To combat the climate crisis we need to move quickly to responsibly develop the critical minerals we need for our clean energy transition. +I'm glad to see has approved an investment in lithium processing in Nevada, and I'll keep fighting to grow our clean energy economy.",7,6,12,2.6K,[],['@ENERGY'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768681564832211006,tweet_id:1768681564832211006,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T14:18:52.000Z,True,"President Biden's budget treats our working families with dignity by protecting and strengthening Social Security and Medicare. + +Donald Trump's budgets made horrific cuts to Social Security and Medicare every year he was in office, and he's promised to do it again.",144,68,139,8.2K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768643028036542818,tweet_id:1768643028036542818,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-15T00:00:19.000Z,True,"I hear it all the time when I'm home with my Latino community in Nevada - we're facing a housing crisis, and we need everyone at the table to take action. + +That's why, like I told , I'm fighting for legislation to give our families the break they deserve.",12,15,42,3.3K,[],['@NAHREP'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768426967903216010,tweet_id:1768426967903216010,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T20:13:00.000Z,True,"Big Oil companies are doing everything they can to make more profits off the backs of hardworking Americans. +I'm standing up to fight back for our families by calling on the to take action against any illegal, anti-competitive actions.",9,5,20,2.1K,[],['@FTC'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768369760129978767,tweet_id:1768369760129978767,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T17:18:00.000Z,True,"Thank you to the for your advocacy for our Cystic Fibrosis community in Nevada. It's inspiring to hear about the real progress made in treatment and care, and I'm proud to support all of you in your continued work to find a cure.",0,10,28,1.7K,[],['@CF_Foundation'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768325720067957083,tweet_id:1768325720067957083,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T14:12:00.000Z,True,"The HOME program has helped build thousands of homes in Nevada, and it's made a real difference for middle-class families. +Now, I'm working on legislation to update and expand the program so it can continue to help make homeownership possible for hardworking Nevadans.",1,2,13,983,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768278911652098477,tweet_id:1768278911652098477,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-14T02:06:04.000Z,True,"I worked with and to deliver relief small businesses and entrepreneurs could count on. + +The results are clear: in the last 3 years, Nevadans have submitted over 195,000 new business applications. And I'm going to keep fighting in the Senate to support them.",5,14,71,6.6K,[],"['@POTUS', '@SenateDems']",[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768096226111623309,tweet_id:1768096226111623309,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T22:44:30.000Z,True,"Big Pharma tried to stop the Inflation Reduction Act because they didn't want to lower drug costs. But didn't back down. + +Now, they want the courts to let them continue to hike prices on essential medications our seniors need. It's ridiculous.",3,16,33,8.1K,[],['@SenateDems'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1768045498340934046,tweet_id:1768045498340934046,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T19:36:00.000Z,True,"Expanding workforce development and providing the support businesses need to succeed is a priority for me. I’m proud to work with our partners like the Las Vegas Chamber of Commerce to put those resources to work in our community. +Thank you for joining me yesterday, !",2,3,15,1.1K,[],['@lvchamber'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767998061010366943,tweet_id:1767998061010366943,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T16:12:00.000Z,True,"Growing up in Nevada, I know how dangerous wildfires are for our families, homes, and businesses. +That's why I fought in the Senate for this funding to reduce the risk of fires and help Northern Nevada communities stay safe.",3,5,20,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767946722943152230,tweet_id:1767946722943152230,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T14:14:00.000Z,True,No.,11,11,26,1.4K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767917027224633509,tweet_id:1767917027224633509,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-13T00:53:23.000Z,True,"Thanks to the Inflation Reduction Act, critical bike and trail infrastructure is on its way to the Pyramid Lake Paiute Tribe to connect the communities of Sutcliffe, Nixon, and Wadsworth. +That's great news, and I'm going to keep fighting to deliver for Tribes in Nevada.",18,28,58,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767715546659762599,tweet_id:1767715546659762599,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T22:10:00.000Z,True,Nevada is essential to our push to end our reliance on China for the critical minerals we need. That's why I voted to bring that supply chain home. Now I'm pushing to implement the 45X credit the way Congress intended: to create jobs and protect our national security.,10,9,23,1.2K,[],['@USTreasury'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767674428538671105,tweet_id:1767674428538671105,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T20:40:20.000Z,True,"Making sure our kids have every opportunity to succeed is one of my top priorities. And this afternoon, I sat down with principals from Nevada schools to talk about the resources our students need, and what I can do at a federal level to deliver for them and our families.",11,8,28,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767651865326391757,tweet_id:1767651865326391757,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T17:32:00.000Z,True,"My heart goes out to Itay Chen's family and loved ones as we hear the terrible news that Itay was killed by Hamas terrorists in the October 7th attacks. +Hamas' actions are horrific, and we must keep pushing for the release of every hostage they've taken captive.",6,2,24,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767604467728523621,tweet_id:1767604467728523621,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T14:09:00.000Z,True,"On average, a woman has to work through Mar. 12th, on top of all of last year, to make the same amount that a man earned in that same year. That's unacceptable. + +This #EqualPayDay, I'm continuing to fight for a very simple idea: equal pay for equal work.",17,12,40,2.1K,['#EqualPayDay'],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767553381051363552,tweet_id:1767553381051363552,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-12T01:29:59.000Z,True,"I'm glad to see has included my proposal in his budget to hold the Federal Home Loan Banks accountable and push them to do more to address our housing crisis. + +Working families are counting on us to fight for lower costs, and that's what we're going to do.",13,12,55,2.1K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767362370169401504,tweet_id:1767362370169401504,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-11T22:15:13.000Z,True,"Big Oil companies want less competition and more profits - all off the backs of hardworking Nevadans just trying to get to work or take their kids to school. + +It's ridiculous, and I'm calling on the to investigate and stop anti-competitive practices.",4,7,14,1.2K,[],['@FTC'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767313353725075780,tweet_id:1767313353725075780,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-11T19:21:00.000Z,True,"I've fought to make Nevada the key to America's clean energy future, and with ' help, we've created nearly 16,000 new clean energy jobs just in the past two years, with thousands more on the way. + +That means more jobs and lower costs for working families in Nevada.",17,20,73,7.6K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767269510590115865,tweet_id:1767269510590115865,@SenCortezMasto +Senator Cortez Masto,@SenCortezMasto,2024-03-11T16:09:00.000Z,True,"Proud to have secured critical funding for our local law enforcement in Nevada that will upgrade their equipment and provide the support they need to protect our communities. + +Their work keeps Nevada families safe, and I will always stand with them.",6,6,16,1K,[],[],[],https://pbs.twimg.com/profile_images/1749524374435028993/GCWZIf81_x96.jpg,https://twitter.com/SenCortezMasto/status/1767221192291910005,tweet_id:1767221192291910005,@SenCortezMasto +Senator Mike Rounds,@SenatorRounds,2024-03-21T21:56:09.000Z,True,Good luck to in their first round of the NCAA tournament tonight! #FearTheEar #MarchMadness ,2,1,5,1.1K,"['#FearTheEar', '#MarchMadness']",['@GoJacksMBB'],['\\U0001f3c0'],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770932433405333598,tweet_id:1770932433405333598,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-21T21:33:05.000Z,True,"Our resolution to overturn the Biden Admin’s decision to allow beef imports from Paraguay passed the Senate. +We’re one step closer to protecting producers & consumers from this rule that uses outdated information allowing imports from Paraguay without appropriate oversight.",8,7,16,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770926629289672712,tweet_id:1770926629289672712,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-21T16:21:00.000Z,True,"Bidenomics is now costing the average South Dakota family nearly $1,000 more in living expenses than when President Biden took office. +Families in South Dakota are feeling the pinch.",42,14,37,6.6K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770848090913694034,tweet_id:1770848090913694034,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-21T14:07:37.000Z,True,"TikTok needs to divest from Chinese company ByteDance if they want to continue operating in the U.S. +Learn more on how this app is a threat to national security and how we are working to protect Americans' information:",29,27,111,13K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770814525232619962,tweet_id:1770814525232619962,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-19T21:14:15.000Z,True,"On #NationalAgDay, we say thank you to our farmers and ranchers from South Dakota and all across the country for their hard work to feed and fuel the world. +Always have to share this clip!",4,0,18,1.1K,['#NationalAgDay'],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770197114741551554,tweet_id:1770197114741551554,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-21T21:33:05.000Z,True,"Our resolution to overturn the Biden Admin’s decision to allow beef imports from Paraguay passed the Senate. +We’re one step closer to protecting producers & consumers from this rule that uses outdated information allowing imports from Paraguay without appropriate oversight.",8,7,16,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770926629289672712,tweet_id:1770926629289672712,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-21T16:21:00.000Z,True,"Bidenomics is now costing the average South Dakota family nearly $1,000 more in living expenses than when President Biden took office. +Families in South Dakota are feeling the pinch.",42,14,37,6.6K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770848090913694034,tweet_id:1770848090913694034,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-19T18:38:31.000Z,True,"Since President Biden took office:18% increase in overall prices35% increase in energy prices21% increase in grocery prices +Americans can’t afford Bidenomics.",11,8,18,2.3K,[],[],"['\\U0001f4c8', '\\U0001f4c8', '\\U0001f4c8']",https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1770157924473516102,tweet_id:1770157924473516102,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-18T21:13:44.000Z,True,Today we honored 36 Vietnam era veterans at the Veterans Home in Hot Springs with Vietnam Veteran Lapel Pins. Great to be there to show our appreciation for these brave men and women and their service to our country.,9,1,10,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1769834597070635190,tweet_id:1769834597070635190,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-16T15:32:02.000Z,True,"Honored to meet many Vietnam War era veterans in Sisseton and join for a pinning ceremony to recognize over 100 South Dakota veterans for their service. +Thank you for your service to our country! ",21,0,15,1.5K,[],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1769023827915247732,tweet_id:1769023827915247732,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-14T21:54:49.000Z,True,"Today we hosted a ceremony to honor the National American Indian Veterans’ charter that we got passed late last year with the FY24 NDAA. +This recognition is long overdue. Thank you to everyone who helped get it across the finish line.",4,6,16,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1768395382726242329,tweet_id:1768395382726242329,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-14T21:54:50.000Z,True,"A special thank you to Don Loudner, National Commander of NAIV. Don is a Korean War era veteran and a member of the Hunkpati Sioux Tribe located in South Dakota. He never gave up on this charter and he never gave up on his fellow veterans. We would not be here without him.",0,2,4,1.5K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1768395390007619816,tweet_id:1768395390007619816,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-13T14:30:53.000Z,True,"Not just one, but TWO Summit League championships for South Dakota State! Congratulations to and on a successful tournament.March Madness, here we come! #GoJacks",1,0,4,889,['#GoJacks'],"['@GoJacksWBB', '@GoJacksMBB']","['\\U0001f3c6', '\\U0001f3c6']",https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1767921275756753164,tweet_id:1767921275756753164,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-12T15:17:20.000Z,True,"Integrity has been restored to the ‘Product of the USA’ label. +My full statement on USDA’s rule change:",5,13,31,2.3K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1767570580360896560,tweet_id:1767570580360896560,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-11T19:22:13.000Z,True,"A print of Harvey Dunn’s Something for Supper painting hangs in my office in Washington, DC. He was a true talent and a legendary South Dakotan who captured the beauty of our great state.",5,0,6,1.7K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1767269817134805323,tweet_id:1767269817134805323,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-09T18:45:54.000Z,True,"From housing to transportation to water services, the Consolidated Appropriations Act includes several big wins for South Dakota. (1/3)",6,0,4,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766535903483228607,tweet_id:1766535903483228607,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-09T18:45:55.000Z,True,"After hearing from South Dakotans, we provided input and requests to make certain that this federal funding goes to projects that have the support of local stakeholders, not just Washington bureaucrats. (2/3)",3,0,2,605,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766535904930230765,tweet_id:1766535904930230765,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-09T18:45:55.000Z,True,I am pleased to have been able to secure $149.5 million for these projects that will benefit South Dakotans for years to come. (3/3),3,0,2,577,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766535906209468643,tweet_id:1766535906209468643,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T21:34:16.000Z,True,Good to see Black Hills Energy CEO Linn Evans and Director of Government Relations Jafar Karim in DC this week for an update on their operations.,6,1,7,1K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766215884270371013,tweet_id:1766215884270371013,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T21:15:48.000Z,True,"Leila Balsiger of Winner & Katie Schulte of Yankton are South Dakota's delegates to the 2024 US Senate Youth Program. As high school seniors, both are planning to major in biology on a pre-med track next year. Proud of these young South Dakotans and grateful for their leadership.",0,0,4,796,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766211237531000884,tweet_id:1766211237531000884,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T17:37:55.000Z,True,Members of the South Dakota VFW came to meet with us in Washington this week. They provided helpful input on the issues facing our veterans. Grateful for all they do.,3,3,11,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766156404337922180,tweet_id:1766156404337922180,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T15:50:54.000Z,True,Great to see members of SD Broadcasters Association in DC. Appreciate all they do to keep South Dakotans well-informed about what's going on in their communities and beyond. ,5,1,8,934,[],['@SDBroadcasters'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1766129472900632927,tweet_id:1766129472900632927,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T04:34:48.000Z,True,"Tonight’s State of the Union proved to be a political speech for the far left. +We need a return to conservative and common sense leadership in the White House.",54,6,43,3.4K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765959329281098037,tweet_id:1765959329281098037,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T04:34:49.000Z,True,"Under President Biden, we have a border crisis, a nearly 18% price increase in consumer goods, weak national security and no plan to get America back on track. +Disappointed, but unfortunately not at all surprised.",10,1,3,883,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765959333978800241,tweet_id:1765959333978800241,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T04:18:12.000Z,True,"Great job on your response to this year’s State of the Union. +President Biden’s policies have been hurting our country for over 3 years. Senate Republicans are ready to get this country back on track.",16,5,23,2.9K,[],['@SenKatieBritt'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765955151708197072,tweet_id:1765955151708197072,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T03:36:14.000Z,True,President Biden is calling for ‘unification’ in the most divisive way possible. His vision for America is not the path our country should be on. It’s time to return conservative values to the White House. #SOTU,8,0,19,1.8K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765944589007933547,tweet_id:1765944589007933547,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T03:28:18.000Z,True,"FACT: CBP Agents seized over 27,000 pounds of fentanyl at our southern border in 2023, and that’s only what they were able to catch. Having an open border is a pathway for fentanyl to come into the US, and ignoring this fact is harming every community in America.#MikeChecks #SOTU",5,1,12,1.1K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765942591449637342,tweet_id:1765942591449637342,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T03:11:53.000Z,True,FACT: There have been 9 million illegal crossings into the United States since President Biden took office. This is over 10 times the population of South Dakota. Contrary to what Pres. Biden says - the border is wide open. #MikeChecks #SOTU,18,1,18,2.1K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765938462962692558,tweet_id:1765938462962692558,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T03:10:38.000Z,True,FACT: Secretary Mayorkas has said that over 85% of migrants at the southern border are being released into the United States. #MikeChecks #SOTU,1,0,10,1.1K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765938148226351434,tweet_id:1765938148226351434,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T03:08:51.000Z,True,"FACT: President Biden could secure our border right now using section 212F of the INA, which allows Presidents to suspend the entry of all aliens when their entry would be detrimental to the interests of the United States. #MikeChecks #SOTU",16,3,26,2.5K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765937697661608163,tweet_id:1765937697661608163,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T03:05:18.000Z,True,Shrinkflation is not happening due to corporations. Shrinkflation is happening because nobody can afford to produce or buy anything thanks to Bidenomics. #MikeChecks #SOTU,16,4,28,2.3K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765936803352031337,tweet_id:1765936803352031337,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T02:41:21.000Z,True,FACT: Prices have risen 17.9% since President Biden took office. Americans can’t afford Bidenomics. #MikeChecks #SOTU,13,5,36,2.2K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765930778741874766,tweet_id:1765930778741874766,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T02:40:49.000Z,True,"FACT: Last year, South Dakotans spent over $900 more per month in living expenses than before President Biden took office. While Pres. Biden tries to spin this, South Dakotans know the truth. #MikeChecks #SOTU",56,13,45,8.3K,"['#MikeChecks', '#SOTU']",[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765930643106533874,tweet_id:1765930643106533874,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T01:57:42.000Z,True,"As gives his #StateOfTheUnion, follow along with #MikeChecks to fact check the information that President Biden will try to spin tonight. Americans can’t be fooled – our families are feeling the $10,000+ yearly increase in cost of living expenses.",5,0,9,1.1K,"['#StateOfTheUnion', '#MikeChecks']",['@POTUS'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765919793427718463,tweet_id:1765919793427718463,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-08T01:57:43.000Z,True,Crime and our open border probably won’t be his focus.,0,0,5,561,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765919795361263760,tweet_id:1765919795361263760,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-07T23:57:07.000Z,True,"I asked Fed Chair Jay Powell about the lasting effects of Bidenomics - including high prices becoming the new normal in our country. +Watch:",9,2,5,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765889448380621246,tweet_id:1765889448380621246,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-06T22:13:47.000Z,True,Honored to give the introductions with for Eric Schulte and Camela Theeler to serve on the U.S. District Court for the District of South Dakota at the Senate Judiciary Committee hearing this morning.,7,4,23,2.9K,[],['@SenJohnThune'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765501055188492740,tweet_id:1765501055188492740,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-06T22:14:03.000Z,True,"Both were born, raised and educated in SD, and are well-qualified attorneys who are highly respected within the South Dakota Bar Association and in their communities. I am proud to support both of these nominees.",1,0,3,589,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765501120712003847,tweet_id:1765501120712003847,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-05T23:05:02.000Z,True,"In case you missed it, I joined to talk about the latest news in the Senate: our next leadership elections. +Proud to support my friend and colleague John Thune, a strong candidate who will work to unite our party.",14,1,15,1.8K,[],['@ThisWeekABC'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1765151563394269193,tweet_id:1765151563394269193,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-01T20:23:17.000Z,True,Dr. Edward Duke of SDSMT and Dr. Mel Ustad of were in DC this week to talk about innovation and research happening in South Dakota. Thank you for coming in!,14,1,10,1.3K,[],['@SDEPSCoR'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1763661308384125203,tweet_id:1763661308384125203,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-03-01T17:54:05.000Z,True,Nice to see South Dakota members of the American Institute of Architects in DC this week to talk about policy that builds up their industry. Appreciate them taking the time to visit with us!,2,0,10,1K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1763623759649419651,tweet_id:1763623759649419651,@SenatorRounds +Axios,@axios,2024-02-29T00:41:09.000Z,True, says the U.S. “absolutely” has to incorporate AI in its national defense decision-making processes. “All of our adversaries are doing that today. We have to stay ahead of them.”#AxiosEvents,4,2,6,1.4K,['#AxiosEvents'],['@SenatorRounds'],[],https://pbs.twimg.com/profile_images/1641458976049995776/GtO-0zYe_x96.jpg,https://twitter.com/axios/status/1763001426098208817,tweet_id:1763001426098208817,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-28T20:18:34.000Z,True,"Mitch McConnell has had an incredible, decades-long career in public service, including 18 years as our Senate Republican leader. I appreciate all of the work he’s done to get our conference to where we are today.",18,4,10,2.7K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762935343248998691,tweet_id:1762935343248998691,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-28T20:18:35.000Z,True,Looking forward to working together over the next few months to regain our majority. ,0,0,4,640,[],['@LeaderMcConnell'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762935346528960559,tweet_id:1762935346528960559,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-27T22:00:22.000Z,True,"Appreciated the opportunity to visit with members of the American Legion, Department of South Dakota in DC today. Our veterans represent the best of America. Grateful for all the work these folks do to support our servicemembers, veterans and their families.",4,0,10,976,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762598576323023036,tweet_id:1762598576323023036,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-27T20:51:44.000Z,True,Great to see leaders from across South Dakota with Missouri River Energy Services in DC this morning. Appreciate all they do to power our communities.,2,1,10,1K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762581301473739087,tweet_id:1762581301473739087,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-27T19:53:24.000Z,True,I'm filing a CRA with that would overturn the Biden administration’s recent decision to lift a long-standing ban on beef imports from Paraguay:,5,4,21,3.1K,[],['@SenatorTester'],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762566621661364732,tweet_id:1762566621661364732,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-27T19:53:24.000Z,True,"South Dakota farmers and ranchers work tirelessly to produce the safest, highest quality and most affordable beef in the world. + +Paraguay, on the other hand, has historically struggled to contain outbreaks of foot and mouth disease.",1,0,6,567,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762566623418896761,tweet_id:1762566623418896761,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-27T19:53:24.000Z,True,Consumers across America should be able to confidently feed their families beef that they know has met the rigorous standards required in the United States.,0,0,6,516,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1762566625046172140,tweet_id:1762566625046172140,@SenatorRounds +Senator Mike Rounds,@SenatorRounds,2024-02-23T00:01:45.000Z,True,"“We choose to go to the moon in this decade and do other things, not because they are easy, but because they are hard.” - JFK + +Congratulations to the mission control team of Odysseus on the first U.S moon landing in over 50 years!",9,3,20,3K,[],[],[],https://pbs.twimg.com/profile_images/1622984285278928897/R5CN3Oba_x96.jpg,https://twitter.com/SenatorRounds/status/1760817183813148712,tweet_id:1760817183813148712,@SenatorRounds +Sen. Dan Sullivan,@SenDanSullivan,2024-03-08T04:50:43.000Z,True,"Tonight was a missed opportunity for to unite the country on pressing national security issues. Within minutes, his speech became one of the most partisan and divisive SOTU speeches I’ve ever heard in the Senate.",120,67,341,37K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765963334543667389,tweet_id:1765963334543667389,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-21T14:22:39.000Z,True,"President Biden thinks climate change is the existential crisis of our time. I actually think it’s the dictators on the march around the globe. + +Biden’s LNG permitting freeze is a lose-lose on both counts.",23,12,28,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1770818308788322740,tweet_id:1770818308788322740,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-08T04:50:43.000Z,True,"Tonight was a missed opportunity for to unite the country on pressing national security issues. Within minutes, his speech became one of the most partisan and divisive SOTU speeches I’ve ever heard in the Senate.",120,67,341,37K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765963334543667389,tweet_id:1765963334543667389,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-20T20:57:31.000Z,True,". and I, along with our colleagues, will be introducing Congressional Review Act resolutions to rescind these regs and ensure hard-working Americans & Alaskans continue to have access to the vehicles of their choice.",17,5,15,1.6K,[],"['@SenatorRicketts', '@EPWGOP']",[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1770555290150129754,tweet_id:1770555290150129754,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-20T17:37:24.000Z,True,"I sent a letter to John Podesta and the WH calling on them to end their ban on LNG exports immediately. +This ban is a failed policy that shows the far-left of the Democratic party is driving energy & national security policy for America. It makes no sense.",7,4,15,1.8K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1770504929850884346,tweet_id:1770504929850884346,@SenDanSullivan +Senator Pete Ricketts,@SenatorRicketts,2024-03-20T16:14:52.000Z,True,"When we first heard about Biden’s EV mandate last year, I promised to fight it with every tool I have. + +Now that Biden’s rule is finalized, I’m taking action. + & I will be introducing Congressional Review Act legislation to block this delusional rule.",28,19,63,5.6K,[],['@SenDanSullivan'],[],https://pbs.twimg.com/profile_images/1621162597302280193/UxKMKc0p_x96.jpg,https://twitter.com/SenatorRicketts/status/1770484161809088561,tweet_id:1770484161809088561,@SenDanSullivan +Squawk Box,@SquawkCNBC,2024-03-19T19:25:23.000Z,True,"""If their concern is about emissions, stopping the export of clean burning American LNG to our allies in Europe and Asia will harm global emissions. That is a fact,"" says . ""This is throwing a bone to the far left during an election season. That's the sole reason.""",17,18,62,14K,[],['@SenDanSullivan'],[],https://pbs.twimg.com/profile_images/1197996990644310018/jBN0g0AI_x96.png,https://twitter.com/SquawkCNBC/status/1770169717145153980,tweet_id:1770169717145153980,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-19T18:54:28.000Z,True,"European leaders at the Munich Security Conference were apoplectic about the Biden administration’s freeze on U.S. LNG export permitting. This decision is detrimental to American national security, driving our allies into the arms of the dictators in Russia and Iran.",4,5,17,1.7K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1770161935511650543,tweet_id:1770161935511650543,@SenDanSullivan +Liz Bowman,@MsLizBowman,2024-03-19T11:38:12.000Z,False,“Our allies are NOT ‘fine’ with the pause; this is a huge mistake” said yesterday evening in response to comments at #CeraWeek from where she claimed countries were fine with the pause and it would all be “in the rear view” mirror in a year.,1,2,9,1.2K,['#CeraWeek'],"['@SenDanSullivan', '@SecGranholm']",[],https://pbs.twimg.com/profile_images/1285630172373438464/U1wyQgJR_x96.jpg,https://twitter.com/MsLizBowman/status/1770052146227998752,tweet_id:1770052146227998752,@SenDanSullivan +Sen. John Barrasso,@SenJohnBarrasso,2024-03-18T19:21:01.000Z,True,".’s decision to halt approvals of LNG exports is a disaster — LNG exports are critical to our economy & national security. Today’s letter with , & demands the administration change course and reverse this decision.",13,8,23,3.9K,[],"['@POTUS', '@SenDanSullivan', '@SenatorRisch', '@SenatorWicker']",['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1143907394/twitter_profile_pic_x96.JPG,https://twitter.com/SenJohnBarrasso/status/1769806228912255021,tweet_id:1769806228912255021,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-18T15:26:16.000Z,True,"Today at CERAWeek, I am delivering a message to John Podesta and the White House: End the LNG export ban immediately. +Leveraging America's energy is one of our greatest strengths against authoritarian regimes.",12,14,27,7.5K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1769747155047031107,tweet_id:1769747155047031107,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-17T18:07:02.000Z,True,"Great to be back in Fairbanks with Ice Alaska President Bernie Karl at the World Ice Art Championships—one of my favorite events of the year. Come see the incredibly imaginative sculptures crafted by skilled artists from our state, across the country and around the world.",3,0,9,1K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1769425222942466085,tweet_id:1769425222942466085,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-16T00:56:44.000Z,True,"Great to be back at the March Madness high school basketball championships, bringing together incredible athletes, their families and fans from communities all across Alaska! #AKMadness",9,1,12,1.3K,['#AKMadness'],['@ASAA_org'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1768803554415067461,tweet_id:1768803554415067461,@SenDanSullivan +Jason Brodsky,@JasonMBrodsky,2024-03-15T14:47:47.000Z,True,"Good letter from to . ""Tell #Iran that the next Houthi missile or drone launched at an American ship will result in the sinking of Iran’s spy ships that target our Navy. With all due respect, that this hasn’t already happened, with so many American lives on…",11,75,143,9.3K,['#Iran'],"['@SenDanSullivan', '@POTUS']",[],https://pbs.twimg.com/profile_images/1575604118458171392/oznsy9SW_x96.jpg,https://twitter.com/JasonMBrodsky/status/1768650306651295820,tweet_id:1768650306651295820,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-15T15:01:56.000Z,True,"Today, I sent a letter to urging him: Tell Iran that the next Houthi missile / drone launched at an American ship will result in the sinking of Iran’s spy ships that target our Navy. These terrorists are trying to kill U.S. sailors, and at some point, they might succeed.…",18,20,64,5.4K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1768653866294247935,tweet_id:1768653866294247935,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-13T23:40:10.000Z,True,"The FBI and the CIA have consistently raised serious concerns about the threat TikTok poses to national security and to the American people. Under the control of the Chinese Communist Party, TikTok has the ability to spy on, influence and harm the mental health of hundreds of…",254,90,290,42K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1768059506871701624,tweet_id:1768059506871701624,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-13T20:41:33.000Z,True,"This is the pattern for two years: Ukraine’s leaders ask for weapons; Biden delays; Congress pressures Biden, who reluctantly relents after many months. HIMARS, Stingers, Patriots, Abrams tanks, F16s, now ATACMS! The list is long. +Biden is not acting like he is in it to win it.",59,10,26,4.4K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1768014556935205269,tweet_id:1768014556935205269,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-13T16:12:42.000Z,True,"Last month's inflation numbers debunk President Biden’s State of the Union claim that inflation is under control—it’s not. Even more so in Alaska, but all across the country, basic necessities like groceries and gasoline are up 20-30% since 2021.",18,3,15,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1767946901322616869,tweet_id:1767946901322616869,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-13T03:46:42.000Z,True,"History in the making! Dallas Seavey rolled into Nome this evening as the winningest musher in Iditarod history, claiming his 6th title in 9 days, 2 hours, and 16 minutes. Congratulations, Dallas, and best of luck to the remaining mushers and dog teams trekking north.",3,5,17,2.3K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1767759164439462399,tweet_id:1767759164439462399,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-12T19:31:09.000Z,True,"Since President Biden assumed office, global chaos has spread, with the dictators from Russia, China, and Iran acting with greater impunity. In each of those four years, President Biden has proposed inflation-adjusted cuts to defense spending. +The President's latest budget…",12,4,15,2.3K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1767634451889078523,tweet_id:1767634451889078523,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-11T13:32:28.000Z,True,"So much for deterring Iran and the Houthis. On Friday, the Iranian-backed Houthis once again launched a massive barrage of 28 drones and missiles in the Red Sea, trying to sink American ships. These terrorists are trying every day to kill US sailors from places like Alaska and…",18,22,37,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1767181798897819905,tweet_id:1767181798897819905,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-11T13:35:32.000Z,True,,1,1,6,754,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1767182574009344260,tweet_id:1767182574009344260,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-11T13:36:34.000Z,True,,0,1,10,668,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1767182833846509805,tweet_id:1767182833846509805,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-11T01:02:28.000Z,True,Team Alaska is in the building!! #awg2024,8,2,15,1.5K,['#awg2024'],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1766993058393133080,tweet_id:1766993058393133080,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-11T00:06:47.000Z,True,Julie and I are glad to be in the Mat-Su for the opening ceremonies of the Arctic Winter Games! Go Team Alaska!! #awg2024,6,1,18,1.7K,['#awg2024'],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1766979044724375872,tweet_id:1766979044724375872,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-08T00:38:16.000Z,True,"56. That is the number of times this administration has chosen to side with Lower 48 extremists over Alaskans. Tonight, I hope President Biden announces a cease fire in his war against Alaskan working families. Unfortunately, that appears unlikely. +Instead, I fear the President…",15,3,23,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765899803261563290,tweet_id:1765899803261563290,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-07T20:53:16.000Z,True,"If there's an Iranian spy ship providing targeting information to the Houthis to kill American sailors, why aren't we sinking those ships?",20,18,51,5.3K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765843180983836881,tweet_id:1765843180983836881,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-07T20:25:19.000Z,True,"In , I pressed Chair Jennifer Homendy to commit to continue working w/ my office and the FAA on our critically important FAA Alaska Safety Initiative—including its recommendation for robust investments in our infrastructure-poor state.",3,2,9,941,[],"['@SenateCommerce', '@NTSB']",[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765836147580649479,tweet_id:1765836147580649479,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-07T15:40:14.000Z,True,"No other state has been targeted as much as ours. President Biden, we need a ceasefire in the war against Alaska.",39,21,57,5.8K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765764401523470519,tweet_id:1765764401523470519,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-06T23:29:00.000Z,True,"Several of my Senate colleagues and I met today w/ , chief of staff to Russian opposition leader Alexei Navalny, who was just murdered by Putin’s cowardly thugs. We’re working together to carry on Alexei’s legacy, fighting for the freedom of the Russian people.",10,4,23,7.5K,[],['@leonidvolkov'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765519982736138296,tweet_id:1765519982736138296,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-06T19:56:50.000Z,True,Honored to welcome many Alaska veterans to D.C. for the VSOs’ Hill Week. I asked witnesses if they’re getting the word out to #CampLejeune Marines & their families on caps preventing law firms from charging exorbitant fees in these water contamination cases.,3,0,5,877,['#CampLejeune'],['@SVACGOP'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765466588994580504,tweet_id:1765466588994580504,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-06T17:34:07.000Z,True,"If you look around the world, you see chaos. A lot of that has been driven by the Biden administration's weakness.",53,10,54,8.8K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765430673924395469,tweet_id:1765430673924395469,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-05T17:59:42.000Z,True,"It is season again, with student groups making their way out east to see the sights, history, and museums of our nation’s capital.",9,1,14,1.1K,[],['@CloseUp_DC'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765074726333116469,tweet_id:1765074726333116469,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-05T18:05:25.000Z,True,I had a great time catching up with a big group of students from Gruening Middle School in Eagle River and Service High School in Anchorage.,1,0,4,566,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1765076161716179295,tweet_id:1765076161716179295,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-04T19:39:26.000Z,True,Today’s unanimous decision to strike down the Colorado court’s ruling to keep President Trump off the ballot is a victory for American democracy. The American people should decide who will lead our country—not four judges in Colorado. You don’t “preserve” democracy by removing…,29,2,35,3K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1764737435294978232,tweet_id:1764737435294978232,@SenDanSullivan +FOX News Radio,@foxnewsradio,2024-03-04T11:01:53.000Z,True,Will the next budget deal include more funding for Ukraine? joins on the FOX News Rundown. https://buff.ly/3z40CwO,5,2,2,1.4K,[],"['@SenDanSullivan', '@MikeEmanuelFOX']",[],https://pbs.twimg.com/profile_images/925468541666525185/GMZaXFic_x96.jpg,https://twitter.com/foxnewsradio/status/1764607189530951754,tweet_id:1764607189530951754,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-03T17:30:05.000Z,True,The national security legislation being debated in Congress is principally not about foreign aid. It’s about rebuilding America’s own capacity to produce weapons for ourselves. This bill should unite Republicans and all Americans.,43,4,18,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1764342495700230201,tweet_id:1764342495700230201,@SenDanSullivan +Face The Nation,@FaceTheNation,2024-03-03T16:46:19.000Z,True,"The Senate national security package that has stalled in the House is ""less a foreign aid package and more a package about rebuilding our own industrial capacity,"" says. +""From that perspective, it should unite Republicans, not divide them.""",72,28,75,29K,[],['@SenDanSullivan'],[],https://pbs.twimg.com/profile_images/1591191757693280256/XAVM86-A_x96.jpg,https://twitter.com/FaceTheNation/status/1764331481147548006,tweet_id:1764331481147548006,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-03-01T15:22:43.000Z,True,"Silicon Valley, for years, was more interested in working with the Chinese Communist Party than the U.S. military. That is changing. Now, we need to break down bureaucratic barriers that prevent our tech companies from supporting our defense industrial base.",23,3,12,1.4K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1763585668142248293,tweet_id:1763585668142248293,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-29T23:55:06.000Z,True,"I met w/ the Army Secretary & Army Chief of Staff in January to discuss these plans. They both assured me that Army forces in Alaska would not be decreasing and, because of our state’s strategic location, we'll actually be seeing an additional 1,469 soldiers added to our force by…",8,2,10,3.3K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1763352224363614562,tweet_id:1763352224363614562,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-29T21:18:55.000Z,True,"Mt. Edgecumbe High School in Sitka has been educating students across Alaska for over 75 years—including my late mother-in-law, Mary Jane Evans. Julie and I always love to see her beautiful portrait, which still graces the class of 1953 frame.",4,2,7,1K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1763312920522318160,tweet_id:1763312920522318160,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-29T18:37:28.000Z,True,"Xi Jinping is terrified of America’s submarine force, our greatest asymmetric advantage over China. In , I asked several defense experts what the big ideas are for ramping up production of these vessels—like new shipyards.",18,3,15,1.8K,[],['@SASCGOP'],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1763272289846518084,tweet_id:1763272289846518084,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-29T00:04:35.000Z,True,"Leader McConnell is a historic figure—the longest serving Senate leader in history—who has led the U.S. Senate with distinction. I was honored to be a part of the Senate class that got rid of Harry Reid and elected Mitch McConnell to be Majority Leader. Under his leadership, we…",25,5,31,4.2K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1762992222239064247,tweet_id:1762992222239064247,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-28T23:19:56.000Z,True,"Tomorrow, two Presidents with two very different records head to Texas to witness the national security and humanitarian catastrophe unfolding at our southern border.",22,1,16,1.8K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1762980986466250770,tweet_id:1762980986466250770,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-26T23:11:05.000Z,True,Julie and I are heartbroken to learn of the tragic loss of life in Point Hope yesterday. We join all Alaskans in praying for the families of those we’ve lost and for the community reeling from this horrific tragedy.,1,1,6,1.5K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1762253985577136375,tweet_id:1762253985577136375,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-26T22:55:54.000Z,True,"Today, the FTC moved to block the proposed merger between Kroger and Albertsons. + +As Senator Murkowski and I wrote in a letter to the FTC last September, the fact that this merger could result in grocery store closures and higher prices in Alaska—a state that already has some of…",13,12,63,22K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1762250163316256912,tweet_id:1762250163316256912,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-26T17:25:43.000Z,True,"Congrats to Cody Barber and Brett Lapham, brothers-in-law from Willow, on winning the 2024 Iron Dog! Great job to all of the fearless teams who competed in the longest, toughest snow-machine race in the world.",4,0,9,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1762167069125018062,tweet_id:1762167069125018062,@SenDanSullivan +Ocean Conservancy,@OurOcean,2024-02-23T20:07:04.000Z,False, Marine debris is one of the most visible and prolific threats to our ocean. Thank you to for your leadership in establishing the Marine Debris Foundation office in Alaska! More from our own Kristina Tirman:,2,7,25,2.4K,[],['@SenDanSullivan'],"['\\U0001f6a8', '\\U0001f30a', '\\U0001f517']",https://pbs.twimg.com/profile_images/1700641586378317824/BH8nzO--_x96.jpg,https://twitter.com/OurOcean/status/1761120509691937025,tweet_id:1761120509691937025,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-23T22:52:25.000Z,True,Great to be back in beautiful Ketchikan!,7,4,16,1.7K,[],[],[],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1761162124578144561,tweet_id:1761162124578144561,@SenDanSullivan +Sen. Dan Sullivan,@SenDanSullivan,2024-02-23T18:29:34.000Z,True,"The new, congressionally-chartered Marine Debris Foundation, a non-profit set up by my #SaveOurSeas 2.0 Act, will establish a headquarters in Juneau! https://sen.gov/L1KK",1,4,13,1K,['#SaveOurSeas'],[],['\\u27a1\\ufe0f'],https://pbs.twimg.com/profile_images/1657105160051601410/SLMyvarY_x96.jpg,https://twitter.com/SenDanSullivan/status/1761095973286101330,tweet_id:1761095973286101330,@SenDanSullivan +David Perdue,@DavidPerdueGA,2022-06-24T17:11:21.000Z,True,"This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years. +As we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer.",59,31,110,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1540382081334878209,tweet_id:1540382081334878209,@DavidPerdueGA +Claire Simms Chaffins,@ClaireSChaffins,2022-05-25T00:44:08.000Z,False,WATCH: concedes the governor's race to . Perdue says he will support Kemp to make sure is not governor of Georgia. #gapol,327,94,334,0,['#gapol'],"['@DavidPerdueGA', '@BrianKempGA', '@staceyabrams', '@FOX5Atlanta']",[],https://pbs.twimg.com/profile_images/1735004883990786048/QYu5_V_m_x96.jpg,https://twitter.com/ClaireSChaffins/status/1529262004556414976,tweet_id:1529262004556414976,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T22:21:01.000Z,False,Bonnie and I are heartbroken by the tragedy in Uvalde and are praying for the victims and their families.,1.2K,144,320,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529225988626087936,tweet_id:1529225988626087936,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T20:34:26.000Z,False,"The polls are open until 7:00 PM. As long as you're in line by 7:00, you will be allowed to vote!",182,117,587,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529199162604015619,tweet_id:1529199162604015619,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T13:26:48.000Z,False,Up next on !,112,19,99,0,[],['@AmericaNewsroom'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529091546070622215,tweet_id:1529091546070622215,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-06-24T17:11:21.000Z,True,"This historic ruling will save innocent lives and is a testament to the hard-fought efforts of the pro-life community over many years. +As we celebrate this decision, I encourage everyone to support your local crisis pregnancy center and the outstanding resources they offer.",59,31,110,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1540382081334878209,tweet_id:1540382081334878209,@DavidPerdueGA +Claire Simms Chaffins,@ClaireSChaffins,2022-05-25T00:44:08.000Z,False,WATCH: concedes the governor's race to . Perdue says he will support Kemp to make sure is not governor of Georgia. #gapol,327,94,334,0,['#gapol'],"['@DavidPerdueGA', '@BrianKempGA', '@staceyabrams', '@FOX5Atlanta']",[],https://pbs.twimg.com/profile_images/1735004883990786048/QYu5_V_m_x96.jpg,https://twitter.com/ClaireSChaffins/status/1529262004556414976,tweet_id:1529262004556414976,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T13:05:11.000Z,False,Joining and live on Fox News around 9:30 AM ET. Hope you’ll tune in!,55,8,47,0,[],"['@marthamaccallum', '@DanaPerino']",[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529086104586035201,tweet_id:1529086104586035201,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-24T11:20:18.000Z,False,"The polls are OPEN! +I’d be honored to have your vote to eliminate our state income tax, crush crime, stop the indoctrination of our kids, and prosecute voter fraud.",488,226,748,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1529059711387049984,tweet_id:1529059711387049984,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T23:38:20.000Z,False,"Just had a great tele-rally with President Trump, and I'm looking forward to joining on Fox News around 9:30 PM. +Please make a plan to vote tomorrow if you haven't already!",297,80,335,0,[],['@seanhannity'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528883057876692993,tweet_id:1528883057876692993,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T12:54:33.000Z,False,Abrams doesn’t care about Georgia. She wants to live in the White House. It’s up to us to make sure that NEVER happens.,307,80,206,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528721043623395329,tweet_id:1528721043623395329,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-23T12:48:11.000Z,False,Join us TONIGHT for a tele-rally with President Donald J. Trump!,213,163,539,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528719439327375360,tweet_id:1528719439327375360,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T23:41:02.000Z,False,President Trump is holding a special Georgia tele-rally for us on Monday night. Mark your calendars and join us!,130,172,458,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528158959676309509,tweet_id:1528158959676309509,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T19:17:42.000Z,False,"Full house in Blairsville this morning! Thanks to the Union County GOP for hosting us. +Get out and vote on Tuesday, May 24th if you haven’t already!",43,55,133,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1528092690893643777,tweet_id:1528092690893643777,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-21T00:50:05.000Z,False,Great to be with Bikers for Trump on a beautiful night in Plainville!,43,48,178,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527813947151331328,tweet_id:1527813947151331328,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T21:29:06.000Z,False,"Traveling around the state today encouraging everyone to get out and vote! Election Day is Tuesday, May 24th.",40,51,146,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527763369834561536,tweet_id:1527763369834561536,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T21:26:17.000Z,False,"Thank you, Mr. President! We’re pushing for a big WIN on Tuesday!",127,201,562,0,[],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527762659990544384,tweet_id:1527762659990544384,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T20:58:15.000Z,False,"Great to have my friend with us on the campaign trail in Savannah! +Sarah is an America First warrior, and I’m proud to have her support and endorsement. +Get out and vote, Georgia! Together, we will take back our state and country.",69,50,163,0,[],['@SarahPalinUSA'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527755605452144641,tweet_id:1527755605452144641,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T14:28:13.000Z,False,Started the morning with a press conference in Columbus. Next stop: Macon!,47,24,87,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527657450450694145,tweet_id:1527657450450694145,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-20T00:49:02.000Z,False,Great stop in Cherokee County tonight. Thanks to the Semper Fi Bar & Grille for hosting us!,44,31,103,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527451297686904843,tweet_id:1527451297686904843,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-19T22:33:42.000Z,False,Couldn’t pass up the hot sign between campaign stops!,324,462,796,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527417240672423946,tweet_id:1527417240672423946,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-19T17:31:30.000Z,False,"Checking in from the campaign trail. Head to the polls if you haven't already! You can vote today, tomorrow, or on Election Day, May 24th.",53,87,249,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527341187975172096,tweet_id:1527341187975172096,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T19:14:18.000Z,False,Proud to have ’s endorsement and looking forward to having her join us in Savannah on Friday!,82,70,203,0,[],['@SarahPalinUSA'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1527004669536616449,tweet_id:1527004669536616449,@DavidPerdueGA +Newt Gingrich,@newtgingrich,2022-05-18T11:41:43.000Z,True,Not a good look for Gov. Kemp to have a relationship with a Soros-funded project. ,85,259,514,0,[],['@Aaron_Kliegman'],[],https://pbs.twimg.com/profile_images/722099116654923777/S7O3vYVT_x96.jpg,https://twitter.com/newtgingrich/status/1526890772724953093,tweet_id:1526890772724953093,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T13:13:05.000Z,False,Our door knockers are hard at work across the state! Grateful for a strong team of volunteers who will propel us to victory.,30,18,71,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526913766989996032,tweet_id:1526913766989996032,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-18T00:23:41.000Z,False,"Enjoyed being in Madison with the Morgan County GOP tonight! +The primary election is just ONE WEEK away. Make a plan to vote if you haven’t already!",16,16,74,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526720142423506945,tweet_id:1526720142423506945,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-17T14:35:53.000Z,False,Met up with our door knockers in Holly Springs this morning. Grateful for these hard-working folks who are helping us get the vote out!,18,21,84,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526572215931744260,tweet_id:1526572215931744260,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-17T11:35:48.000Z,False,"Great to be with the Barrow County GOP last night. +Make a plan to vote if you haven’t already! Find your early voting location at http://voteperdue.com.",3,27,58,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1526526897240301568,tweet_id:1526526897240301568,@DavidPerdueGA +Just the News,@JustTheNews,2022-05-16T23:40:31.000Z,False,Georgia Gubernatorial Candidate talks about the state of the governor’s race and what issues are really driving Georgia voters this election. #Election2022Watch more #JustTheNewsNotNoise with and here https://bit.ly/3LkWTxp,7,26,60,0,"['#Election2022', '#JustTheNewsNotNoise']","['@DavidPerdueGA', '@jsolomonReports', '@AmandaHead']",['\\u27a1\\ufe0f'],https://pbs.twimg.com/profile_images/1717656521511714816/aXEveb1x_x96.jpg,https://twitter.com/JustTheNews/status/1526346889120997380,tweet_id:1526346889120997380,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-13T13:08:43.000Z,False,"Proud to have the support and endorsement of Thomas Homan, Acting Director of Immigration & Customs Enforcement under President Trump! +When I’m Governor, we will enforce the law and deport criminal illegals.",53,63,156,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1525100729911877634,tweet_id:1525100729911877634,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-12T15:36:19.000Z,False,We need a Governor who will stand up and FIGHT!,64,57,171,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524775487012319232,tweet_id:1524775487012319232,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-12T15:03:27.000Z,False,Great to be with the Republican Women of Forsyth County and Veterans for America First earlier this week. Folks are fired up to take back our state and country!,23,18,99,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524767213609230336,tweet_id:1524767213609230336,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T19:52:37.000Z,False,Proud to have the support and endorsement of Bikers for Trump!,62,55,260,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524477599556198408,tweet_id:1524477599556198408,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:51:45.000Z,False,"Kemp is spending $1.5 billion of our tax dollars on an experiment that failed before it even got off the ground. +Shelling out $200,000 per potential job for an unproven, Soros-funded start-up is downright reckless, but that’s exactly what Kemp has done. https://cnbc.com/2022/05/09/rivian-stock-plummets-as-ford-plans-to-sell-shares-of-ev-start-up.html…",26,39,74,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524371683557183488,tweet_id:1524371683557183488,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:53:43.000Z,False,We deserve a Governor who has enough common sense to steer clear of asinine deals with George Soros.,10,21,45,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524372178816360448,tweet_id:1524372178816360448,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-11T12:40:55.000Z,False,"Great time in Dalton yesterday with the Whitfield County GOP. Get out and vote, Georgia!",20,28,98,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524368955560894465,tweet_id:1524368955560894465,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-10T19:07:37.000Z,False,"Threatening justices, vandalizing churches — this behavior is unacceptable and has to stop now. +As Governor, I would ensure that our churches, synagogues, and religious institutions in GA are protected. +Intimidation and harassment will not be tolerated.",36,39,82,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524103887107641346,tweet_id:1524103887107641346,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-10T14:28:00.000Z,False,"Head to http://VotePerdue.com to find your polling location. +Don’t wait until Election Day. Go ahead and vote early!",42,67,240,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1524033516798832640,tweet_id:1524033516798832640,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-09T22:42:54.000Z,False,"If I were Governor and Roe v. Wade is overturned, I would immediately call a special session of the legislature to ban abortion in Georgia. +I've called on Brian Kemp to commit to doing the same. +People deserve to know where their Governor stands on this issue.",272,246,893,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523795676307546113,tweet_id:1523795676307546113,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-09T20:29:13.000Z,False,Great crowd at our meet and greet in Norcross this weekend!,36,24,125,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523762034130653184,tweet_id:1523762034130653184,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-08T12:55:11.000Z,False,"Wishing a Happy Mother’s Day to all moms, especially my beautiful wife Bonnie.",25,13,131,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523285385530339328,tweet_id:1523285385530339328,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T18:28:00.000Z,False,Great morning with the Fulton County GOP. Thank you for having me!,38,39,158,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1523006754254368769,tweet_id:1523006754254368769,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T13:46:41.000Z,False,"Full house in Lawrenceville this morning! Together, we will eliminate the state income tax, stop the indoctrination of our kids, crush crime, and finally secure our elections.",41,37,122,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522935956461998085,tweet_id:1522935956461998085,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-07T00:32:17.000Z,False,Joining live on Fox News around 9:25 PM. Tune in if you can!,59,6,63,0,[],['@seanhannity'],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522736039009431552,tweet_id:1522736039009431552,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-06T19:32:25.000Z,False,"Bonnie and I were delighted to be in Northeast Georgia this afternoon at the Rabun County GOP Headquarters. + +We’re encouraging everybody across the state to get out and VOTE!",35,9,60,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522660574466822145,tweet_id:1522660574466822145,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T22:14:20.000Z,False,Bonnie and I have had a great day in North Georgia encouraging everyone to get out and vote!,36,24,103,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522338937099984901,tweet_id:1522338937099984901,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T20:18:09.000Z,False,"Matthew 18:20 tells us, “For where two or three gather in my name, there am I with them.” + +Today & every day, Bonnie & I are praying for our state and country. As we travel across GA, we are humbled to hear from so many of you who are praying for us as well. #NationalDayOfPrayer",35,18,69,0,['#NationalDayOfPrayer'],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522309697554071558,tweet_id:1522309697554071558,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T18:41:41.000Z,False,"Great to be with the Republican Women of Forsyth County this afternoon. The polls are open, get out and vote!",36,31,127,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522285422008807424,tweet_id:1522285422008807424,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T13:34:20.000Z,False,"I was extremely disappointed by the Governor’s bureaucratic response to the news that the Supreme Court may soon overturn Roe v. Wade. + +Georgia voters deserve to know where their Governor stands on this issue. (1/2)",33,32,108,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522208071421943809,tweet_id:1522208071421943809,@DavidPerdueGA +David Perdue,@DavidPerdueGA,2022-05-05T13:34:20.000Z,False,"I’m calling on Brian Kemp to join me in calling for an immediate special session of the legislature to ban abortion in Georgia after Roe v. Wade is overturned. + +You are either going to fight for the sanctity of life or you’re not. (2/2)",39,31,91,0,[],[],[],https://pbs.twimg.com/profile_images/1540380553677086721/bxLgoOYc_x96.jpg,https://twitter.com/DavidPerdueGA/status/1522208072739049474,tweet_id:1522208072739049474,@DavidPerdueGA +David Perdue,@sendavidperdue,2021-01-03T16:13:50.000Z,False,"From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I’ve been focused on getting results for ALL Georgians.",3.1K,325,960,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1345765322519949315,tweet_id:1345765322519949315,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-27T21:56:21.000Z,False,". & I sent a letter on behalf of Skylar Mack, an 18-year-old student detained in the Cayman Islands, to ensure a safe return to Georgia. +We’re working alongside the U.S. Embassy & Mack’s family in calling for leniency for this young woman.",1.5K,185,621,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1343314801888530432,tweet_id:1343314801888530432,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-25T13:16:47.000Z,False,Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year.,1K,66,482,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1342459275285848064,tweet_id:1342459275285848064,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-22T05:29:31.000Z,False,"In this crisis, my #1 priority has always been to protect the people of GA and help drive recovery efforts. + +Today we delivered: +→ More PPP for small biz +→ 2nd round of relief checks +→ Funding for hospitals & schools +→ Efficient vaccine distribution +→ Support for farmers",2.4K,323,556,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1341254520949665798,tweet_id:1341254520949665798,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-21T17:45:25.000Z,False,"Today, we will deliver nearly $1 trillion in additional aid on top of the $3 trillion already disbursed. + +Chuck Schumer & Nancy Pelosi made this harder than it needed to be, purposely holding up relief that could have been delivered months ago. + +Statement w/ :",1.1K,186,316,0,[],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1341077326940016640,tweet_id:1341077326940016640,@sendavidperdue +David Perdue,@sendavidperdue,2021-01-03T16:13:50.000Z,False,"From deepening the Port of Savannah, to rebuilding the military, to delivering COVID relief, I’ve been focused on getting results for ALL Georgians.",3.1K,325,960,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1345765322519949315,tweet_id:1345765322519949315,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-27T21:56:21.000Z,False,". & I sent a letter on behalf of Skylar Mack, an 18-year-old student detained in the Cayman Islands, to ensure a safe return to Georgia. +We’re working alongside the U.S. Embassy & Mack’s family in calling for leniency for this young woman.",1.5K,185,621,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1343314801888530432,tweet_id:1343314801888530432,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-25T13:16:47.000Z,False,Bonnie and I wish each of you a Merry Christmas! We hope you are filled with joy and peace today and throughout the New Year.,1K,66,482,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1342459275285848064,tweet_id:1342459275285848064,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-19T02:42:31.000Z,True,GREAT NEWS: Two #COVID19 vaccines are now authorized for use!,515,32,164,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1340125330116374534,tweet_id:1340125330116374534,@sendavidperdue +Emory University,@EmoryUniversity,2020-12-17T20:57:22.000Z,False,"The first #COVID19 vaccine was administered at today - Thanks to everyone, including Emory researchers and healthcare professionals and vaccine trial volunteers, who helped make this amazing accomplishment possible!",123,69,280,0,['#COVID19'],['@emoryhealthcare'],[],https://pbs.twimg.com/profile_images/1148259851593801728/4b116t7M_x96.png,https://twitter.com/EmoryUniversity/status/1339676081088061443,tweet_id:1339676081088061443,@sendavidperdue +Children's,@childrensatl,2020-12-17T01:14:27.000Z,False,"Today, we received our first delivery of #COVID19 vaccines released for healthcare workers. Tomorrow, we’ll begin administering them to patient-facing employees. This is a moment of change, and we're grateful to the many teams who made this milestone delivery possible!",78,39,182,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1290709498722758661/OmApnEGd_x96.jpg,https://twitter.com/childrensatl/status/1339378390877560832,tweet_id:1339378390877560832,@sendavidperdue +GaDeptPublicHealth,@GaDPH,2020-12-16T15:30:29.000Z,False,"#GAHaveYouHeard +FACT: Vaccine testing was thorough and successful. More than 70,000 people participated in clinical trials for two vaccines. To date, the vaccines are nearly 95% effective in preventing COVID-19 with no safety concerns.https://dph.georgia.gov/covid-vaccine",78,17,35,0,['#GAHaveYouHeard'],[],[],https://pbs.twimg.com/profile_images/1358945720477364224/z0eo2lEN_x96.jpg,https://twitter.com/GaDPH/status/1339231431441190913,tweet_id:1339231431441190913,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-17T20:01:39.000Z,False,Exciting news for #Columbus! Path-Tec is expanding its operations and creating 350 new jobs in the area.,229,21,43,0,['#Columbus'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1339662062176362497,tweet_id:1339662062176362497,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-16T00:11:40.000Z,False,Great opportunity for high school students interested in #STEM to work with researchers.,264,16,57,0,['#STEM'],['@GeorgiaTech'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1339000205014921220,tweet_id:1339000205014921220,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-14T21:26:25.000Z,False,The first shipments of #COVID19 vaccine have arrived in Georgia!,403,42,234,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1338596226883858435,tweet_id:1338596226883858435,@sendavidperdue +U.S. FDA,@US_FDA,2020-12-12T02:40:16.000Z,True,"Today, FDA issued the first emergency use authorization (EUA) for a vaccine for the prevention of #COVID19 caused by SARS-CoV-2 in individuals 16 years of age and older. The emergency use authorization allows the vaccine to be distributed in the U.S. https://fda.gov/news-events/press-announcements/fda-takes-key-action-fight-against-covid-19-issuing-emergency-use-authorization-first-covid-19…",505,2.8K,5.1K,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/773141404860162061/WK4RgHMx_x96.jpg,https://twitter.com/US_FDA/status/1337588046674489346,tweet_id:1337588046674489346,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-12T03:09:25.000Z,False,"Through Operation Warp Speed, the U.S. has successfully developed a lifesaving #COVID19 vaccine in less than a year. +This is nothing short of extraordinary and a testament to the power of American ingenuity.",626,105,402,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337595385565638657,tweet_id:1337595385565638657,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-12T03:09:26.000Z,False,"As vaccine distribution begins, I encourage all Georgians to continue following the guidance of public health officials. +While we are one step closer to getting back to normal, our work is not done and we must all remain vigilant.",214,21,87,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337595387796983809,tweet_id:1337595387796983809,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-11T19:13:56.000Z,False,"A strong America requires a strong military. This defense bill: +→ Fully funds our military +→ Gives troops significant pay raise +→ Supports military families +→ Strengthens cybersecurity +→ Holds China accountable",379,55,173,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337475725625090050,tweet_id:1337475725625090050,@sendavidperdue +Senator Kelly Loeffler,@SenatorLoeffler,2020-12-11T18:44:36.000Z,False,"A strong America requires a strong military. +Full statement with ↓",329,48,211,0,[],['@sendavidperdue'],[],https://pbs.twimg.com/profile_images/1264730662470397952/Et06MH_c_x96.jpg,https://twitter.com/SenatorLoeffler/status/1337468343499059201,tweet_id:1337468343499059201,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-11T18:52:54.000Z,False,Statement from & me on passage of the #NDAA:,265,75,98,0,['#NDAA'],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337470431247409153,tweet_id:1337470431247409153,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-10T22:17:10.000Z,False,Sending warm wishes for a happy #Hanukkah to the Jewish community in Georgia and around the world.,218,35,259,0,['#Hanukkah'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1337159448809398272,tweet_id:1337159448809398272,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-09T21:22:27.000Z,False,"Thanks to ’s Rural Digital Opportunity Fund, over 373,000 rural Georgians will gain access to high-speed broadband. A critical step toward closing the digital divide.",219,17,56,0,[],['@FCC'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1336783289756094466,tweet_id:1336783289756094466,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T16:15:33.000Z,False,"We will always remember the brave patriots who fought at Pearl Harbor on December 7, 1941. No one understands the price of freedom better than those who have served and sacrificed. #PearlHarborRemembranceDay",453,41,178,0,['#PearlHarborRemembranceDay'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335981283160313867,tweet_id:1335981283160313867,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:32.000Z,False,"When #COVID19 hit, & I both supported bipartisan relief and we are fighting to get more targeted relief to the people of Georgia right now.",1.3K,148,411,0,['#COVID19'],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955860183506945,tweet_id:1335955860183506945,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:32.000Z,False,"While it's encouraging to see some of our Democrat colleagues come back to the negotiating table after their previously outlandish demands that had nothing to do with COVID, let’s not forget that every single Senate Democrat blocked this kind of additional relief just weeks ago.",260,19,79,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955861810900993,tweet_id:1335955861810900993,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-07T14:34:33.000Z,False,"It’s time to get more relief to the people of Georgia right now and Senate Democrats are the only ones standing in the way of making that a reality. + +Full statement with : https://perdue.senate.gov/news/press-releases/senators-perdue-loeffler-fight-for-more-covid-relief-for-georgians…",360,35,69,0,[],['@SenatorLoeffler'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1335955862641373185,tweet_id:1335955862641373185,@sendavidperdue +The Hill,@thehill,2020-12-04T19:04:02.000Z,True,"Sen. David Perdue praises Operation Warp Speed: ""This is remarkable what you guys did.""",779,99,287,0,[],[],[],https://pbs.twimg.com/profile_images/1649413483685871621/V_wwjDu2_x96.png,https://twitter.com/thehill/status/1334936519421865985,tweet_id:1334936519421865985,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-04T19:54:22.000Z,False,Operation Warp Speed allowed us to develop lifesaving treatments and vaccines in a fraction of the time it would normally take. Thank you for your leadership & !,975,154,491,0,[],"['@POTUS', '@VP']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334949186605903872,tweet_id:1334949186605903872,@sendavidperdue +Mike Pence,@Mike_Pence,2020-12-04T18:25:19.000Z,True,"Honored to be at today with , , , and . Under President ’s leadership, we will have a vaccine before the end of the year!",495,254,2K,0,[],"['@CDCgov', '@CDCDirector', '@SenatorLoeffler', '@sendavidperdue', '@RepDougCollins', '@realDonaldTrump']",[],https://pbs.twimg.com/profile_images/1372291427833683972/sCIeF9RC_x96.jpg,https://twitter.com/Mike_Pence/status/1334926773251788800,tweet_id:1334926773251788800,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-04T16:36:46.000Z,True,"Welcome back to Georgia, ! Looking forward to a great conversation about Operation Warp Speed at .",521,189,1.6K,0,[],"['@VP', '@CDCgov']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334899456228159489,tweet_id:1334899456228159489,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-03T17:22:05.000Z,False,The Paycheck Protection Program has been extraordinarily successful and saved over 1.5 million Georgia jobs. I sponsored the bipartisan #RESTARTAct to expand PPP and provide additional support to the hardest-hit businesses.,618,80,280,0,['#RESTARTAct'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334548475187515397,tweet_id:1334548475187515397,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-03T14:49:13.000Z,False,"Congratulations to , , and on receiving research grants from . This effort will help our military develop new capabilities and continue building the #STEM workforce. https://defense.gov/Newsroom/Releases/Release/Article/2430566/dod-awards-50-million-in-university-research-equipment-awards/?source=GovDelivery…",212,20,65,0,['#STEM'],"['@GeorgiaTech', '@GeorgiaStateU', '@MercerYou', '@DeptofDefense']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1334510003143778309,tweet_id:1334510003143778309,@sendavidperdue +David Perdue,@sendavidperdue,2020-12-01T18:33:55.000Z,False,". continue to be an economic engine for #Georgia, with the Port of Savannah achieving its busiest month on record.",454,37,68,0,['#Georgia'],['@GAPorts'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1333841777418260485,tweet_id:1333841777418260485,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-28T18:59:42.000Z,False,Small businesses are the backbone of our economy. #ShopSmall this holiday season and support your local businesses! #SmallBusinessSaturday,599,62,152,0,"['#ShopSmall', '#SmallBusinessSaturday']",[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1332761102313254916,tweet_id:1332761102313254916,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-26T14:02:34.000Z,False,"This #Thanksgiving, Bonnie and I are especially grateful for our brave military men and women, first responders, law enforcement and health care workers. Please join us in praying for them as they serve our state and country.",420,44,173,0,['#Thanksgiving'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331961550169632772,tweet_id:1331961550169632772,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-26T14:01:19.000Z,False,"Bonnie and I are blessed to serve our great state. From our family to yours, Happy Thanksgiving.",411,52,446,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331961232421773319,tweet_id:1331961232421773319,@sendavidperdue +TAGofGA,@TAGofGA,2020-11-25T00:45:53.000Z,False,Congratulations to the 165th Airlift Wing and the Georgia Air National Guard on being selected to field the new C-130J Super Hercules! #SharedPurpose #SharedVictory,118,20,91,0,"['#SharedPurpose', '#SharedVictory']",[],[],https://pbs.twimg.com/profile_images/1148697161275772928/WX8yOg_W_x96.jpg,https://twitter.com/TAGofGA/status/1331398668897968129,tweet_id:1331398668897968129,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-25T17:30:22.000Z,False,"On Monday, 11/30, will host a virtual Q&A for #veterans and their families. +RSVP on Facebook:",229,18,36,0,['#veterans'],"['@DeptVetAffairs', '@SecWilkie']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331651454491381764,tweet_id:1331651454491381764,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-24T22:48:31.000Z,False,Excited to announce that a new fleet of C-130Js will be stationed at in #Savannah. These new aircraft will equip our with state-of-the-art technology as they support America’s global security interests. https://perdue.senate.gov/news/press-releases/senator-david-perdue-secures-new-aircraft-fleet-for-165th-airlift-wing…,302,42,131,0,['#Savannah'],"['@165thAW', '@GeorgiaGuard']",[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1331369133116690434,tweet_id:1331369133116690434,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-23T21:51:09.000Z,False,"When #COVID19 hit, we got to work and brought $47 billion to Georgia to help hospitals, small businesses, communities. Together, we will defeat this virus.",591,107,251,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1330992308452515841,tweet_id:1330992308452515841,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-18T23:09:02.000Z,False,"Silicon Ranch is investing $55 million in a new solar project in Houston County. This exciting investment will support economic development in #Georgia, while powering homes with low-cost, sustainable energy.",635,47,89,0,['#Georgia'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1329199968960323584,tweet_id:1329199968960323584,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T18:14:05.000Z,True,"Extremely encouraging news in the fight against #COVID19. With critical funding from the #CARESAct, the U.S. is working to get a safe and effective vaccine to Americans as quickly as possible.",660,49,121,0,"['#COVID19', '#CARESAct']",[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328400966845128704,tweet_id:1328400966845128704,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T16:41:08.000Z,False,Congratulations to Brig. Gen. Konata Crumbly on his promotion to Director of the Joint Staff for .,265,39,104,0,[],['@GeorgiaGuard'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328377573655638020,tweet_id:1328377573655638020,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-16T14:59:14.000Z,False,"Georgia veterans: VA’s Atlanta Regional Office will host a Virtual Veterans Claims Clinic tomorrow from 4:00 – 6:00 p.m. + +Call 404-929-3100 to schedule an appointment. https://perdue.senate.gov/imo/media/doc/Flyer_VA%20Virtual%20Claims%20Clinic.pdf…",263,38,85,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1328351932537253888,tweet_id:1328351932537253888,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T19:58:00.000Z,False,"#TeamPerdue works hard every day to help our #veterans navigate the federal bureaucracy. Recently, we helped Petty Officer Craig Petraszewsky obtain medals he earned during the Vietnam War.",700,80,177,0,"['#TeamPerdue', '#veterans']",['@USNavy'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326615177224052736,tweet_id:1326615177224052736,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T17:30:03.000Z,False,America remains a nation worthy of envy because of our veterans and their families.,747,145,591,0,[],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326577945612328961,tweet_id:1326577945612328961,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T17:04:43.000Z,False,"The U.S. is continuing to work at record speed to develop effective vaccines and treatments for #COVID19. This week, announced Georgia will receive nearly 2,000 vials of a new antibody treatment for patients in our state. https://hhs.gov/about/news/2020/11/10/hhs-allocates-lilly-therapeutic-treat-patients-mild-moderate-covid-19.html…",1.8K,3.1K,18K,0,['#COVID19'],['@HHSgov'],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326571572237373445,tweet_id:1326571572237373445,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T14:58:59.000Z,False,Georgia’s veterans are truly American heroes. Happy #VeteransDay to all those who have served our great country. ,298,64,324,0,['#VeteransDay'],[],['\\U0001f1fa\\U0001f1f8'],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326539927811616776,tweet_id:1326539927811616776,@sendavidperdue +David Perdue,@sendavidperdue,2020-11-11T00:05:43.000Z,False,"Georgia’s business-friendly climate continues to attract new jobs and investments, even during #COVID19.",276,42,149,0,['#COVID19'],[],[],https://pbs.twimg.com/profile_images/1187762668641361921/NXZ7vtXE_x96.jpg,https://twitter.com/sendavidperdue/status/1326315129345019911,tweet_id:1326315129345019911,@sendavidperdue +Joni Ernst,@SenJoniErnst,2024-03-21T22:06:59.000Z,True,"EVs are a road to nowhere. + +Biden knows it, but still doubles down on his out-of-touch mandates.",42,12,53,3.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770935163309973702,tweet_id:1770935163309973702,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T21:24:29.000Z,True,"Regulations and red tape are crushing America’s #smallbiz. + +I’m working to ensure entrepreneurs get a fair shake — glad to see my Prove It Act gain momentum in !",14,2,13,1.8K,['#smallbiz'],['@JudiciaryGOP'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770924464865226783,tweet_id:1770924464865226783,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T21:07:25.000Z,True,"The location of the COFA nations in the Indo-Pacific is critical to combatting China. +By increasing our partnership with these islands through my CONVENE Act, the U.S. can better deter CCP aggression and keep Americans safe.",4,2,12,1.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770920171093307562,tweet_id:1770920171093307562,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T20:23:11.000Z,True,"President Biden has created this invasion on our southern border. +But walls work — let’s build it and finish it!",60,28,92,5.2K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770909039523750150,tweet_id:1770909039523750150,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T19:17:49.000Z,True,"No more abuse of taxpayer dollars at USAID. + +My bipartisan bill will bolster local partnerships, so developing countries reduce their dependence on U.S. dollars.",10,3,25,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770892587970310318,tweet_id:1770892587970310318,@SenJoniErnst +Tim Scott,@SenatorTimScott,2024-03-21T18:09:43.000Z,True,"Thank you for your support for the bill I’m leading with to protect lenders while saving taxpayer dollars. + +We don’t need more bad ideas from Washington. We need commonsense that works for Americans.",26,15,112,11K,[],"['@SenJoniErnst', '@SenJohnKennedy']",[],https://pbs.twimg.com/profile_images/1559198679084449792/Ct9DQdw1_x96.jpg,https://twitter.com/SenatorTimScott/status/1770875452673995019,tweet_id:1770875452673995019,@SenJoniErnst +Chuck Grassley,@ChuckGrassley,2024-03-21T16:38:58.000Z,True,HAPPY Natl Women in Ag Day Iowa has over 50K female producers & added over 1K since 2017 That’s gr8 news Women play an essential role in ag + I was proud 2 support Sen Ernst’s bipart effort to recognize their achievements & success,29,9,46,9.7K,[],[],[],https://pbs.twimg.com/profile_images/1758154158736105472/YkmwaqKG_x96.jpg,https://twitter.com/ChuckGrassley/status/1770852611593297996,tweet_id:1770852611593297996,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T16:27:40.000Z,True,"Energy security is national security. + +That’s why I’m safeguarding our strategic supply of oil from benefitting our adversaries or CCP-controlled businesses.",4,0,5,970,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770849768236810460,tweet_id:1770849768236810460,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T15:10:01.000Z,True,"Growing up on my family farm in southwest Iowa, I understand the triumphs and challenges that come with being a woman in agriculture. + +I’m proud to designate today as National Women in Ag Day – and have all the women of the Senate join me! ",17,6,25,2K,[],[],['\\U0001f469\\U0001f3fb\\u200d\\U0001f33e'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770830226177622399,tweet_id:1770830226177622399,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-21T13:36:26.000Z,True,"Growing up, hunting was ingrained in me at an early age. +As I work to support #2A rights, preserve shooting sports for the next generation, and stop the Biden admin targeting the gun industry with my #FIREARMAct, I am proud to be recognized by !",58,41,196,13K,"['#2A', '#FIREARMAct']",['@NSSF'],['\\U0001f3af'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770806675286417881,tweet_id:1770806675286417881,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T20:29:04.000Z,True,"Biden’s ATF must stop bending the law to fit their gun-grabbing policies. + +It’s time to end “knock and talk” without a warrant. #2A",40,10,37,2.7K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770548131920261394,tweet_id:1770548131920261394,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T18:35:53.000Z,True,"Today, I’ll be standing up for #smallbiz and demanding answers directly from . + +TUNE IN TO ",2,2,7,1.3K,['#smallbiz'],"['@SBAIsabel', '@SmallBizCmteGOP']",['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770519647034474841,tweet_id:1770519647034474841,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T17:16:48.000Z,True,"Great to have in DC during #IowaAgWeek! +Thankful for all they do to invest in the people, progress, and pride of Iowa.",10,1,24,1.8K,['#IowaAgWeek'],['@IowaFarmBureau'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770499747305922837,tweet_id:1770499747305922837,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T15:49:53.000Z,True,"Biden’s EV mandate is a road to nowhere. +His new rule forces Iowans to comply with his green agenda, wastes more taxpayer dollars, and makes us more reliant on China and slave labor.",20,4,19,3.3K,[],[],['\\U0001f6a8'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770477874908168579,tweet_id:1770477874908168579,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T15:02:53.000Z,True,"Enforcing the laws at our border keeps our country safe. + +I wish we had a President that agreed.",32,5,33,3.7K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770466047222493235,tweet_id:1770466047222493235,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-20T12:47:22.000Z,True,Love to see Iowans supporting our communities this #IowaAgWeek!,10,1,9,3.3K,['#IowaAgWeek'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770431941738688828,tweet_id:1770431941738688828,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T21:31:17.000Z,True,Happy #NationalAgricultureDay to all of Iowa’s farmers and producers. ,10,2,18,1.8K,['#NationalAgricultureDay'],[],"['\\U0001f33e', '\\U0001f437', '\\U0001f33d', '\\U0001f69c', '\\U0001f413']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770201399978053701,tweet_id:1770201399978053701,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T19:27:09.000Z,True,"After Ecohealth funneled tax $ to the Wuhan Lab, it’s clear they can’t be trusted — with dollars or dangerous diseases. +We must stop more taxpayer funds from being sent to Ecohealth before they are used to make the world a less safe place. #makeemsqueal",16,24,63,2.6K,['#makeemsqueal'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770170164287324601,tweet_id:1770170164287324601,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T17:48:24.000Z,True,"As the top egg producing state in the nation, it’s always #PoultryDay in Iowa! + +I’ll always:Support the integrity of real eggsImprove resources for animal disease preparedness to combat avian flu",12,3,15,1.9K,['#PoultryDay'],[],"['\\U0001f373', '\\U0001f95a', '\\U0001f413', '\\U0001f423', '\\U0001f414', '\\U0001f357']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770145312474046643,tweet_id:1770145312474046643,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T16:04:39.000Z,True,What’s hiding in Biden’s budget?New taxes on traditional energy sourcesMore funding for ATF to advance a gun-grabbing agendaTax hikes for #smallbiz,16,6,21,2K,['#smallbiz'],[],"['\\u274c', '\\u274c', '\\u274c']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770119200305995862,tweet_id:1770119200305995862,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T14:14:10.000Z,True,"Biden’s trade strategy is failing Iowa farmers. +I’m calling on the Biden admin to reverse their trend of decline and increase #ag exports ",19,10,34,3.4K,['#ag'],[],['\\u2b07\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770091395983798557,tweet_id:1770091395983798557,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-19T13:02:53.000Z,True,"Biden’s ATF has had it out for gun owners since day one, even preventing small businesses from making a living. + +My FIREARM Act supports law-abiding Iowa gun dealers, so they don’t have to live in fear of their #2A rights being stripped.",53,15,68,3.1K,['#2A'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1770073456752619665,tweet_id:1770073456752619665,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T22:56:31.000Z,True,"We must bring American hostages home immediately. + +Qatar should come to the table and hold Hamas accountable. + +Every second counts.",38,32,92,3.4K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769860462219293167,tweet_id:1769860462219293167,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T21:34:46.000Z,True,"We need more FARM in the Farm Bill! + +Pass it on. #AgWeek",20,10,39,3.3K,['#AgWeek'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769839889523085531,tweet_id:1769839889523085531,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T19:49:25.000Z,True,"China is on our shores, spying on critical military installations. + +They’re in our backyard, buying up U.S. farmland. + +And the CCP has infiltrated millions of American lives through TikTok. + +We must take action to counter our adversary’s influence in our homeland.",59,13,39,10K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769813379256865219,tweet_id:1769813379256865219,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T18:17:43.000Z,True,"Biden’s budget proposal would add over $16 trillion to the debt. + +Americans are already suffering from #Bidenflation, we shouldn’t throw gas on the fire!",14,7,30,2.3K,['#Bidenflation'],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769790301156053470,tweet_id:1769790301156053470,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T15:22:02.000Z,True,"I’m proud to support the Laken Riley Act. + +There should be no more delay in the Senate. + +We must protect Americans from illegal immigrants – before we lose another life.",94,26,119,5.2K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769746088087736736,tweet_id:1769746088087736736,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-18T01:02:15.000Z,True,"Agriculture shapes our way of life in Iowa. +This #AgWeek, I’m grateful for all the farmers, ranchers, and producers who contribute so much to our economy and the world! ",10,2,37,3.7K,['#AgWeek'],[],"['\\U0001f437', '\\U0001f69c', '\\U0001f33e', '\\U0001f413', '\\U0001f33d']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769529717269422112,tweet_id:1769529717269422112,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-17T22:21:02.000Z,True,Hamas needs to release American hostages immediately.,246,105,420,21K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769489144332353715,tweet_id:1769489144332353715,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-17T17:44:35.000Z,True,"Biden's open border is an open invitation for Iran-backed terrorists to infiltrate our homeland. +This will only get worse until Biden secures the border.",136,40,109,20K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769419576058544352,tweet_id:1769419576058544352,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-16T18:44:15.000Z,True,"While unions fight tooth and nail to prevent bureaucrats from returning to the office, I’m protecting taxpayer dollars from funding inefficient agency practices.",34,5,25,2.7K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1769072204325490707,tweet_id:1769072204325490707,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T21:52:00.000Z,True,"Schumer should be focused on supporting Israel to defeat Hamas, instead of speaking words that play into the terrorists’ hands.",137,35,155,6.4K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768757064262639748,tweet_id:1768757064262639748,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T19:18:13.000Z,True,"This #SunshineWeek, I shined a light on government waste by:Exposing the Biden admin’s secret spendingExpanding my oversight of inefficient teleworkHolding agencies accountable for bureaucrats’ union activities on the clock +And I’m just getting started! #makeemsqueal",14,3,20,2K,"['#SunshineWeek', '#makeemsqueal']",[],"['\\u2600\\ufe0f', '\\u2600\\ufe0f', '\\u2600\\ufe0f']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768718364354990143,tweet_id:1768718364354990143,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T17:30:05.000Z,True,"No matter how he tries to spin it — Leader Schumer is dictating how and when another country’s elections should be. + +He has turned his back on fully supporting Israel after one of the worst attacks in its history.",136,21,108,16K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768691148267168236,tweet_id:1768691148267168236,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T16:18:24.000Z,True,"As winter is coming to an end, it’s #SunshineWeek! +I’m shining the light on government waste to save taxpayer $.",19,5,26,1.9K,['#SunshineWeek'],[],['\\u2600\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768673109345796357,tweet_id:1768673109345796357,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-15T15:37:43.000Z,True,Agreed – Biden’s EV fantasy is a road to nowhere.,18,2,21,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768662871947329716,tweet_id:1768662871947329716,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T21:25:35.000Z,True,Bureaucrats when they find out wants to double the number of hours they have to work every week.,21,4,33,6.2K,[],['@SenSanders'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768388027963920840,tweet_id:1768388027963920840,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T20:24:43.000Z,True,"Biden’s bureaucrats are working on behalf of themselves while secretly billing taxpayers for union activities. + +Every cent of Iowans' hard-earned tax dollars should be serving Iowans.",27,9,32,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768372710285902219,tweet_id:1768372710285902219,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T19:20:13.000Z,True,"Schumer should be ashamed for turning his back on our greatest ally in the Middle East. +While he gives lip service to Israel, his statements today show he will follow in lockstep with terrorist sympathizers while American lives are on the line. +Words have consequences.",92,60,227,5.5K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768356476018471029,tweet_id:1768356476018471029,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T17:12:24.000Z,True,"Chuck Schumer is more concerned with dictating Israel’s elections than supporting our ally. +So much for standing with the Jewish Community!",217,58,238,15K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768324310463045988,tweet_id:1768324310463045988,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T16:48:52.000Z,True,"This #SunshineWeek, I’m shining a light on the Biden admin’s secret spending. ",14,11,28,2.2K,['#SunshineWeek'],[],['\\u2600\\ufe0f'],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768318389649383596,tweet_id:1768318389649383596,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T15:40:28.000Z,True,"Unbelievable — the Biden admin is doubling down on putting billions into the hands of Iran and its terrorist proxies. + +Our Commander-in-Chief is continuing to prioritize our adversaries over American lives.",43,65,132,7.8K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768301175231635841,tweet_id:1768301175231635841,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T15:27:09.000Z,True,"#Bidenflation is no joke. +Since Biden took office, prices are skyrocketing across the board:Food is up over 20%Energy is up over 34%Rent is up over 19%",46,10,42,3.8K,['#Bidenflation'],[],"['\\U0001f4c8', '\\U0001f4c8', '\\U0001f4c8']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768297825886970119,tweet_id:1768297825886970119,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-14T15:06:56.000Z,True,"Chinese migrants are using CCP-backed TikTok to take advantage of Biden’s open border and infiltrate the U.S. illegally. +Our national security cannot be undermined any longer.",49,34,70,4.2K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768292736229134824,tweet_id:1768292736229134824,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T22:15:00.000Z,True,"It’s a sorry state of affairs when most Americans fail to realize Hamas is holding our own citizens hostage. +They need to get their facts straight and condemn Hamas.",103,38,134,6.6K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768038075332956385,tweet_id:1768038075332956385,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T21:38:53.000Z,True,"USAID tried to hide from me what it was doing with taxpayer dollars for months. +Samantha Power should take a look in the mirror before pointing the finger at Israel.",23,11,44,4.6K,[],[],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768028985227710664,tweet_id:1768028985227710664,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T21:16:25.000Z,True,"I’m rooting for all the young Iowans participating in the upcoming Eastern Iowa Science and Engineering Fair. + +Their futures are bright! ",4,1,16,1.8K,[],[],"['\\U0001f52c', '\\U0001f9ea']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768023332664832098,tweet_id:1768023332664832098,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T20:31:14.000Z,True,"Biden’s bureaucrats working from home have turned Washington, D.C. into a ghost town. + +Who you gonna call? + +I want to hear your story if you’ve tried contacting a federal agency and got ghosted. #ghostbusters ",7,2,16,2K,['#ghostbusters'],[],"['\\U0001f47b', '\\U0001f6ab']",https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1768011963714400723,tweet_id:1768011963714400723,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T18:47:43.000Z,True,"No more covering up for bureaucrats not showing up to work. + +Taxpayers deserve answers. + +I’m demanding an expanded investigation into how ’s tele-“work” is actually impacting its ability to serve farmers.",11,2,36,2.2K,[],['@USDA'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1767985910170230791,tweet_id:1767985910170230791,@SenJoniErnst +Joni Ernst,@SenJoniErnst,2024-03-13T17:45:31.000Z,True,"Over 200 Iowans joined and me for our Spring Break Reception today. + +We need more Iowa nice in Washington!",6,0,15,1.8K,[],['@ChuckGrassley'],[],https://pbs.twimg.com/profile_images/1682228089164554240/Oze8QsT4_x96.jpg,https://twitter.com/SenJoniErnst/status/1767970259468746777,tweet_id:1767970259468746777,@SenJoniErnst +Danielle Handlogten,@Handlog10,2024-03-18T14:51:24.000Z,False,"Our entire family is overcome with gratitude for Micah’s coaching staff, his teammates, UF and UF athletics, Gator Nation, the Auburn program/fan base, the SEC family who has rallied around us, and the and the incredible medical staff at Vanderbilt University.",5,18,323,18K,[],[],[],https://pbs.twimg.com/profile_images/1612987450132930560/YFb4UHl3_x96.jpg,https://twitter.com/Handlog10/status/1769738379292254442,tweet_id:1769738379292254442,@BenSasse +Ben Sasse,@BenSasse,2024-03-16T04:17:58.000Z,True,a good night in Nashville,3,4,101,50K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1768854194239189373,tweet_id:1768854194239189373,@BenSasse +Ben Sasse,@BenSasse,2024-03-10T20:38:31.000Z,True,"Amazing, again (and again)",6,1,49,27K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1766926631115829561,tweet_id:1766926631115829561,@BenSasse +Ben Sasse,@BenSasse,2024-03-05T23:32:34.000Z,False," our exchange students. +Three today have called their time in G’ville +“the best year of their lives”",10,11,266,44K,[],[],['\\u2764\\ufe0f'],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1765158494775255356,tweet_id:1765158494775255356,@BenSasse +Ben Sasse,@BenSasse,2024-03-16T04:17:58.000Z,True,a good night in Nashville,3,4,101,50K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1768854194239189373,tweet_id:1768854194239189373,@BenSasse +Ben Sasse,@BenSasse,2024-03-03T01:58:37.000Z,True,Same.,6,6,153,80K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764108083700064557,tweet_id:1764108083700064557,@BenSasse +Ben Sasse,@BenSasse,2024-03-03T00:01:57.000Z,True,checks out…,5,5,82,42K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764078722485760189,tweet_id:1764078722485760189,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:56:01.000Z,False,#LoveYourPassion,16,5,267,49K,['#LoveYourPassion'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764077231498723412,tweet_id:1764077231498723412,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:53:17.000Z,True,Dude is special,1,1,42,24K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764076542735392938,tweet_id:1764076542735392938,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:51:12.000Z,False,Moly….,4,1,50,32K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764076018564784159,tweet_id:1764076018564784159,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:42:51.000Z,True,Go Gators!,7,0,30,23K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764073915444293967,tweet_id:1764073915444293967,@BenSasse +Ben Sasse,@BenSasse,2024-03-02T23:39:40.000Z,False,(This isn’t the only reason),2,2,23,55K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1764073114890117136,tweet_id:1764073114890117136,@BenSasse +Ben Sasse,@BenSasse,2024-02-25T18:55:37.000Z,False,12-5. #GatorsSweep,9,2,52,14K,['#GatorsSweep'],[],['\\U0001f40a'],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761827304559255780,tweet_id:1761827304559255780,@BenSasse +Historic Vids,@historyinmemes,2024-02-24T19:56:00.000Z,True,"This MIT student surfs the entire internet using his mind, silently Googling questions and receiving answers through skull vibrations",856,6.5K,43K,14M,[],[],[],https://pbs.twimg.com/profile_images/1648334723725361152/ev7V1230_x96.jpg,https://twitter.com/historyinmemes/status/1761480112560812285,tweet_id:1761480112560812285,@BenSasse +Ben Sasse,@BenSasse,2024-02-24T20:08:35.000Z,False, ,13,5,255,25K,[],[],"['\\U0001f40a', '\\U0001f40a', '\\U0001f40a']",https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761483280312893803,tweet_id:1761483280312893803,@BenSasse +Ben Sasse,@BenSasse,2024-02-24T19:11:09.000Z,False,At the tape…we have a best baby—>,1,2,21,15K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761468825315205374,tweet_id:1761468825315205374,@BenSasse +Ben Sasse,@BenSasse,2024-02-24T18:51:30.000Z,False,Let’s Gooooo!,8,3,70,17K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1761463883569447136,tweet_id:1761463883569447136,@BenSasse +Ben Sasse,@BenSasse,2024-02-23T02:37:35.000Z,True,#Merica,10,24,249,37K,['#Merica'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1760856401264455995,tweet_id:1760856401264455995,@BenSasse +Tom's Old Days,@sigg20,2024-02-22T14:57:57.000Z,False,"#OTD 1980 A game that will never be forgotten,Al Michaels Classic Call,at the end of the Unbelievable USA vs USSR Upset at the 1980 Olympics.#USA #Olympics #LakePlacid #Hockey #1980s #MiracleonIce",35,105,549,42K,"['#OTD', '#USA', '#Olympics', '#LakePlacid', '#Hockey', '#1980s', '#MiracleonIce']",[],[],https://pbs.twimg.com/profile_images/1553829740846452736/hL4SfqHR_x96.jpg,https://twitter.com/sigg20/status/1760680329654997084,tweet_id:1760680329654997084,@BenSasse +Barstool Florida,@UFBarstool,2024-02-22T00:17:03.000Z,False,If you ain’t doing this are you a real Gator,10,45,600,42K,[],[],[],https://pbs.twimg.com/profile_images/893119650984189953/bmVhEz3I_x96.jpg,https://twitter.com/UFBarstool/status/1760458645148446993,tweet_id:1760458645148446993,@BenSasse +Ben Sasse,@BenSasse,2024-02-21T00:02:55.000Z,False,"Am in a barbershop… +old dude customer: “I’m getting married on March 30.” +old dude barber: “Why?” +customer, earnestly trying to answer… +barber, interrupting: “Does she have a boat?”",10,16,290,45K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1760092701628801263,tweet_id:1760092701628801263,@BenSasse +Barstool Florida,@UFBarstool,2024-02-17T12:17:16.000Z,True,GRANT HOLLOWAY BREAKS HIS OWN WORLD RECORD ,7,109,1.1K,53K,[],[],"['\\U0001f40a', '\\U0001f410']",https://pbs.twimg.com/profile_images/893119650984189953/bmVhEz3I_x96.jpg,https://twitter.com/UFBarstool/status/1758827955306791049,tweet_id:1758827955306791049,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T13:08:22.000Z,False,"(Note to self: +gotta teach him about the leprosy stuff)",5,0,34,30K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1757028875169669509,tweet_id:1757028875169669509,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T13:07:35.000Z,False,$10 says Breck is wearing this guy as a motorcycle helmet by the end o semester,2,2,23,42K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1757028677592695138,tweet_id:1757028677592695138,@BenSasse +Mary Katharine Ham,@mkhammer,2024-02-12T02:39:21.000Z,True,I KNOW YOU THINK ‘YELLING FIRE IN A CROWDED THEATER’ IS AN EXCEPTION TO FREE SPEECH BUT IT’S ACTUALLY NOT & WHEN YOU REFERENCE IT APPROVINGLY YOU’RE INADVERTENTLY SIDING W/ A HOLMES COURT THAT THOUGHT SOCIALISTS DISTRIBUTING FLYERS OPPOSING THE DRAFT FOR WWI WAS ILLEGAL.,31,158,874,60K,[],[],[],https://pbs.twimg.com/profile_images/1690975848/MK_Dancing_x96.jpg,https://twitter.com/mkhammer/status/1756870579146072534,tweet_id:1756870579146072534,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T04:08:46.000Z,False,"one of my college daughters: +“Is Travis Kelce literally a golden retriever?”",7,9,177,33K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756893078370021495,tweet_id:1756893078370021495,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T03:16:15.000Z,False,Bonus football!,7,2,91,23K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756879863170953369,tweet_id:1756879863170953369,@BenSasse +Ben Sasse,@BenSasse,2024-02-12T03:08:36.000Z,True,(well played),1,0,86,37K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756877937016557956,tweet_id:1756877937016557956,@BenSasse +Super 70s Sports,@Super70sSports,2024-02-12T01:38:26.000Z,True,J.J. Watt looks like he’s about to give a toast at a wedding and go completely off-script with at least one story that will contribute to the eventual divorce.,397,1.2K,15K,1.1M,[],[],[],https://pbs.twimg.com/profile_images/1051617372489035776/EbLsBBhc_x96.jpg,https://twitter.com/Super70sSports/status/1756855247970922517,tweet_id:1756855247970922517,@BenSasse +Ben Sasse,@BenSasse,2024-02-10T22:06:52.000Z,False,“…ravaging people's ingesting and causing many to defecate bodily”??,16,6,31,30K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756439615366406241,tweet_id:1756439615366406241,@BenSasse +Ben Sasse,@BenSasse,2024-02-10T22:02:49.000Z,False,"‘Merican innovation is alive and well +—>",4,7,60,53K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756438597421383945,tweet_id:1756438597421383945,@BenSasse +Ben Sasse,@BenSasse,2024-02-10T21:54:39.000Z,False,anyone hear him call glass?,6,0,52,30K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1756436541675557182,tweet_id:1756436541675557182,@BenSasse +Ben Sasse,@BenSasse,2024-02-03T07:17:22.000Z,False,,7,1,21,13K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1753679053033296206,tweet_id:1753679053033296206,@BenSasse +Ben Sasse,@BenSasse,2024-02-02T19:25:38.000Z,False,,4,3,49,13K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1753499939441709509,tweet_id:1753499939441709509,@BenSasse +Ben Sasse,@BenSasse,2024-02-02T18:25:45.000Z,False,,8,0,13,16K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1753484870192697515,tweet_id:1753484870192697515,@BenSasse +Barstool Florida,@UFBarstool,2024-02-01T03:27:51.000Z,False,STROLLED INTO RUPP AND LEFT VICTORIOUS. BIGGEST WIN OF THE SEASON. RANK US.,9,135,1.3K,42K,[],[],[],https://pbs.twimg.com/profile_images/893119650984189953/bmVhEz3I_x96.jpg,https://twitter.com/UFBarstool/status/1752896515687805423,tweet_id:1752896515687805423,@BenSasse +OnlyGators.com: Florida Gators news,@onlygators,2024-02-01T03:23:01.000Z,False,"FINAL: Florida #Gators battle back to win 94-91 in overtime at No. 10 Kentucky.First road win over an AP top 10 team in 7,694 days (Jan. 7, 2003).First road win over top-10 UK inside Rupp Arena in 26 years (Feb. 1, 1998).",11,104,806,37K,['#Gators'],[],"['\\U0001f6a8', '\\U0001f40a', '\\U0001f3c0', '\\U0001f538', '\\U0001f538']",https://pbs.twimg.com/profile_images/1706485241437687808/9WvwGyvB_x96.jpg,https://twitter.com/onlygators/status/1752895300836925451,tweet_id:1752895300836925451,@BenSasse +Ole Miss Men’s Basketball,@OleMissMBB,2024-01-31T03:07:31.000Z,False,Like/RT if you love Kyle #HottyToddy x #BuildTheCulture,33,456,1.9K,343K,"['#HottyToddy', '#BuildTheCulture']",[],['\\U0001faf6'],https://pbs.twimg.com/profile_images/1762142069429272576/FRHPE2Qh_x96.jpg,https://twitter.com/OleMissMBB/status/1752529013623435335,tweet_id:1752529013623435335,@BenSasse +Ben Sasse,@BenSasse,2024-01-30T20:38:21.000Z,False,"Thanks for the ride, + +SpaceX launches UF/IFAS microbiology experiment to ISS today - News",7,8,110,16K,[],['@elonmusk'],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1752431075807101217,tweet_id:1752431075807101217,@BenSasse +Super 70s Sports,@Super70sSports,2024-01-29T20:02:16.000Z,True,Presenting the worst answer in the history of Jeopardy …,127,213,1.7K,268K,[],[],[],https://pbs.twimg.com/profile_images/1051617372489035776/EbLsBBhc_x96.jpg,https://twitter.com/Super70sSports/status/1752059607915045285,tweet_id:1752059607915045285,@BenSasse +Ben Sasse,@BenSasse,2024-01-30T03:31:03.000Z,False,"Come to Florida, they said… +Woman bites, attempts to kill husband after he received postcard from ex-girlfriend from 60 years ago – NBC 6",17,9,106,31K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1752172545929863476,tweet_id:1752172545929863476,@BenSasse +Ben Sasse,@BenSasse,2024-01-28T03:09:32.000Z,False,#LoveYourPassion,14,0,72,45K,['#LoveYourPassion'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1751442355050189141,tweet_id:1751442355050189141,@BenSasse +Ben Sasse,@BenSasse,2024-01-27T18:38:01.000Z,False,there’s more where that came from —>,2,0,24,16K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1751313629377417341,tweet_id:1751313629377417341,@BenSasse +Ben Sasse,@BenSasse,2024-01-27T18:00:12.000Z,False,#FloridaMan rocks,23,7,95,23K,['#FloridaMan'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1751304112031838656,tweet_id:1751304112031838656,@BenSasse +Ben Sasse,@BenSasse,2024-01-25T02:33:50.000Z,False,#LoveYourPassion,16,5,216,60K,['#LoveYourPassion'],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1750346209904980113,tweet_id:1750346209904980113,@BenSasse +Ben Sasse,@BenSasse,2024-01-25T01:44:25.000Z,True,10-1 odds this is florida,23,5,206,73K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1750333770584961065,tweet_id:1750333770584961065,@BenSasse +Ben Sasse,@BenSasse,2024-01-23T02:20:51.000Z,False,"Yes. +Thank you for the question, karen",9,2,44,44K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1749618162960662889,tweet_id:1749618162960662889,@BenSasse +Ben Sasse,@BenSasse,2024-01-23T02:09:33.000Z,True,six days with no football is wrong,17,3,77,47K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1749615319247675428,tweet_id:1749615319247675428,@BenSasse +Barstool Sports,@barstoolsports,2024-01-22T23:37:01.000Z,True,The Korean call of the Tyler Bass miss fucking ROCKS,834,9.3K,81K,7.6M,[],[],[],https://pbs.twimg.com/profile_images/1222128514624892935/zC0ABl3m_x96.jpg,https://twitter.com/barstoolsports/status/1749576935519265005,tweet_id:1749576935519265005,@BenSasse +Ben Sasse,@BenSasse,2024-01-23T02:04:39.000Z,False,"that’s how I rushed in that 0-104 game too. (If memory serves, I went for negative yards on 12 carries…)",4,1,19,36K,[],[],[],https://pbs.twimg.com/profile_images/1716496872116781056/85gTQW2u_x96.jpg,https://twitter.com/BenSasse/status/1749614088190083151,tweet_id:1749614088190083151,@BenSasse +Senator Brian Schatz,@SenBrianSchatz,2024-03-22T14:19:47.000Z,True,"This week’s National Women’s History Month highlight is Rell Sunn, the “Queen of Mākaha” and a legend in the world of surfing. (1/x)",1,3,21,1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1771179976030671007,tweet_id:1771179976030671007,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-22T14:22:07.000Z,True,"Even after receiving a serious cancer diagnosis, Rell continued to surf and give back to Hawai‘i for another 15 years until her passing. In her final years, she spearheaded a counseling program for breast cancer patients in the state. (6/x)",1,0,3,414,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1771180561261846761,tweet_id:1771180561261846761,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-22T14:24:30.000Z,True,Rell wasn’t just an elite surfer and a pioneer in the sport for women—she was a champion of her community who embodied the spirit of aloha in every aspect of her life. Her legacy will continue to inspire us for generations. (7/7),0,1,6,332,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1771181160762102101,tweet_id:1771181160762102101,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T22:16:33.000Z,True,"I got to meet with students from ‘Iolani School, Maui High School, and Kaua‘i High School today. Our future is bright with these students—they had lots of insightful questions about what we're working on in Congress and issues in Hawai‘i. +Mahalo for making the trip to DC!",6,3,19,881,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770575182521897279,tweet_id:1770575182521897279,@SenBrianSchatz +Senate Democrats,@SenateDems,2024-03-20T18:00:27.000Z,True,"Now Happening: Senate Democrats are speaking with the press. + +Live remarks from , , , and here:",29,55,118,16K,[],"['@SenSchumer', '@PattyMurray', '@SenStabenow', '@SenBrianSchatz']",[],https://pbs.twimg.com/profile_images/1518618855458971649/EAp2b8sB_x96.jpg,https://twitter.com/SenateDems/status/1770510730648793478,tweet_id:1770510730648793478,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T17:29:54.000Z,True,The historic funding we secured for Native housing and transportation is going to make a huge difference in Native communities—but we can't fix generations of injustice in one bill.,2,7,16,953,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770503044985200674,tweet_id:1770503044985200674,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T17:30:04.000Z,True,"We have a trust responsibility to Native communities, and we're working in the Senate to bring us closer to fulfilling it.",1,0,5,400,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770503084877226059,tweet_id:1770503084877226059,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T00:43:30.000Z,True,"Had a productive meeting with President of the Federated States of Micronesia, Wesley Simina +We discussed how we can work together on key issues in our vital partnership, like implementing the COFA agreement & ensuring US military vets in Micronesia get the benefits they deserve",1,3,18,1.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770249774966436058,tweet_id:1770249774966436058,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-20T00:43:55.000Z,True,The US has a unique and important relationship with FSM—it's one of our closest allies. Mahalo to President Simina for making the trip to Washington and working to help us keep our partnership strong.,0,0,4,596,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770249880071553331,tweet_id:1770249880071553331,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-19T21:09:01.000Z,True,It was great to meet with students from Mililani Mauka and Ka‘elepulu Elementary Schools today during their trip to the Capitol. They had good questions about what it's like to be a US Senator and how we work together in Congress to get things done. Mahalo for visiting!,1,3,22,1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1770195796937318423,tweet_id:1770195796937318423,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-18T23:05:18.000Z,True,"The $1.3B in funding we secured for Native housing is historic. It's a 30% increase that will greatly improve access to affordable homes for Native families—but it's still not enough + +We're working every day in to deliver Native communities the funding they need",6,5,23,1.4K,[],['@IndianCommittee'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1769862672651046927,tweet_id:1769862672651046927,@SenBrianSchatz +"The.Ink, from Anand Giridharadas",@AnandWrites,2024-03-16T15:21:55.000Z,False,“It is hard to defend sending bombs and then sending food aid to follow up.”,0,21,58,8.4K,[],[],[],https://pbs.twimg.com/profile_images/1305938381382316034/HYM4tc5X_x96.jpg,https://twitter.com/AnandWrites/status/1769021285537849611,tweet_id:1769021285537849611,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T18:33:40.000Z,True,". is obstructing the fight against climate change. +For years they've quietly propped up Big Oil, even after making a big show of creating a climate task force—which turned out to be a sham. +It's textbook greenwashing. They're not fooling anyone.",12,4,23,1K,[],['@USChamber'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768707150870679899,tweet_id:1768707150870679899,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:24:44.000Z,True,"This week’s National Women’s History Month highlight is Jean King, the first woman to be elected Lieutenant Governor in Hawai‘i history. (1/x)",2,3,19,1.2K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768629404622606807,tweet_id:1768629404622606807,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:26:42.000Z,True,"She was pivotal in passing the first versions of the Shoreline Protection Act and the State Sunshine Law, statutes now viewed as foundational to improving environmental conservation and increasing governmental transparency. (3/x)",1,1,4,522,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768629898799624623,tweet_id:1768629898799624623,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:27:15.000Z,True,"Jean King’s legacy continues to serve as an inspiration for those in public service, and the impact of her work will continue to be felt for generations to come. (4/4)",1,0,4,488,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768630039489225023,tweet_id:1768630039489225023,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-15T13:26:05.000Z,True,"After her historic election, Jean King used her position to make critical progress on a number of issues in Hawai‘i. She left her mark as a fearless trailblazer for women in Hawai‘i politics, a compassionate leader, & a champion for affordable housing & environmental policy (2/x)",1,0,2,122,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768629747095888197,tweet_id:1768629747095888197,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-14T23:57:57.000Z,True,"I hosted a meeting with leaders from the Pacific Islands Forum today. +We had productive talks about how the Senate can support their efforts to improve climate resiliency and disaster preparedness in the Pacific—which is always top of mind in Hawai‘i.",2,6,20,1.3K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768426370042847388,tweet_id:1768426370042847388,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-14T23:58:57.000Z,True,"Conversations like these aren't just important for fighting climate change & protecting the safety of island states and nations, but also to continue growing these vital partnerships +Our relationships with Pacific Island nations are indispensable—mahalo for making the trip to DC",3,1,6,685,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1768426624884613229,tweet_id:1768426624884613229,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-12T22:10:00.000Z,True,"Women make 84 cents for every dollar that men make in our country. +The gender pay gap robs women of hundreds of thousands of dollars over their careers, with women of color losing out on even more. +On Equal Pay Day and every day, let's fight to secure equal pay for equal work.",3,2,16,946,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767674428656349437,tweet_id:1767674428656349437,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-12T21:54:38.000Z,True,"3 years ago we secured more than $31B for Native communities in 's American Rescue Plan—the largest investment in Native programs in US history at the time. +We're working every day at to give Native people the support they need.",4,5,15,1K,[],"['@POTUS', '@IndianCommittee']",[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767670561927246238,tweet_id:1767670561927246238,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-12T17:36:27.000Z,True,"AI has lots of potential, including helping us better predict and prepare for extreme weather events. +That's why last week I introduced the TAME Extreme Weather Act, which requires federal agencies to use these crucial AI tools.",4,0,10,830,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767605588538638493,tweet_id:1767605588538638493,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-11T21:21:24.000Z,True,"Republican extremism on abortion has left families across the country facing impossible decisions. +It's a more than 50-year project to take away women's ability to control their own bodies, and it's not going to stop anytime soon. +We need to codify Roe into federal law.",8,9,35,1.4K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767299811009552624,tweet_id:1767299811009552624,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-11T20:42:59.000Z,True,"READ: We secured $7.1 billion for COFA nations in the new appropriations deal, which includes provisions from our bill that will allow veterans living in COFA nations to receive health care from the VA. +Our partnership with COFA nations is crucial.",1,2,15,893,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1767290143453364418,tweet_id:1767290143453364418,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-08T14:10:31.000Z,True,"On International Women's Day, we honor the achievements of women and girls across the globe and reflect on the many ways they continue to advance necessary progress in our society. +Although we’ve come a long way, we need to keep up the fight for FULL gender equality.",5,7,22,1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1766104211257729396,tweet_id:1766104211257729396,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-08T03:50:12.000Z,True,My statement on ’s State of the Union address.,8,7,41,1.8K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765948103234883658,tweet_id:1765948103234883658,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-08T00:49:29.000Z,True,"Honored to speak alongside Dr. Manayan, my colleagues and their #SOTU guests about the urgent need to restore reproductive freedom in America. + +Far-right Republicans are coming after it all. Abortion care, IVF, birth control—you name it. We can't let them succeed.",2,9,33,4.9K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765902624761483266,tweet_id:1765902624761483266,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-07T19:28:25.000Z,True,"My guest to the #SOTU address will be Dr. Olivia Manayan, OB-GYN chief resident at . + +With reproductive freedom under attack by the far-right, doctors like Olivia practicing in Republican-controlled states are working overtime to provide vital health care services.",1,12,34,1.6K,['#SOTU'],['@uhmanoa'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765821825584341439,tweet_id:1765821825584341439,@SenBrianSchatz +Tammy Duckworth,@SenDuckworth,2024-03-06T22:17:00.000Z,True,"They said they wouldn't overturn Roe. +They said they wouldn't come for IVF. +But they did. +It's never been about being pro-life—it's been about controlling women's bodies. +We cannot allow the rights of embryos to be prioritized over the rights of women. Full stop.",140,937,3.5K,73K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765501862617248173,tweet_id:1765501862617248173,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T21:40:53.000Z,True,Met with postal supervisors from Hawai‘i yesterday to talk about how we can continue supporting the hardworking postal employees who we rely on every day to deliver our mail.,4,2,17,1.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765492772994445809,tweet_id:1765492772994445809,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T21:41:38.000Z,True,It’s important we do all we can to ensure they have the resources they need to do their jobs and receive the benefits they rightfully deserve after a career of hard work.,0,0,5,504,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765492962333499854,tweet_id:1765492962333499854,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T20:12:35.000Z,True,"Hawai‘i credit unions are vital to maintaining economic stability in our communities, and they offer important financial services to our residents. +Great to meet with to talk about West Maui's recovery progress and other issues facing Hawai‘i families.",4,0,9,694,[],['@HawaiiCULeague'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765470552431436239,tweet_id:1765470552431436239,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T18:17:28.000Z,True,"Great news for Indian Country: is sending $72M to Tribes & Alaska Native communities for home electrification projects +We fought hard to include this funding in the Inflation Reduction Act. Far too many Tribal homes still lack electricity—this money will help fix that",4,10,65,1.9K,[],['@Interior'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765441582885371916,tweet_id:1765441582885371916,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-06T18:18:44.000Z,True,"For more info on how this electrification funding will help provide power for homes in Tribal and Alaska Native communities, click here.",0,0,4,483,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765441902982398202,tweet_id:1765441902982398202,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T23:41:48.000Z,True,"NEWS: We're bringing home nearly $400M in earmark funding for projects and non-profits in Hawai‘i, with more on the way in the next funding bill. + +This money will help these organizations grow and support key projects across the state.",3,18,44,2.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765160818843291751,tweet_id:1765160818843291751,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T22:21:56.000Z,True,"No health care provider should have to be afraid of going to jail or losing their license for providing abortion care or helping people start a family. +I'm doing all I can in Congress to protect reproductive freedom and support our OB-GYNs.",4,9,27,1.7K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765140716244685228,tweet_id:1765140716244685228,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T22:20:12.000Z,True,"Had the pleasure of meeting with physicians from Hawai‘i today. While the far-right assaults reproductive freedom across the country, OB-GYNs are on the frontlines providing critical reproductive health care. +It was inspiring to hear their stories.",2,1,11,928,[],['@acog'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1765140283224674684,tweet_id:1765140283224674684,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T01:50:03.000Z,True,"NEWS: We protected critical investments for Hawai‘i in this year’s appropriations bill. +Billions of federal dollars will help fund projects across the state to improve our roads, increase access to food and housing, and strengthen benefits for veterans.",1,6,16,1.1K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1764830705618489768,tweet_id:1764830705618489768,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-05T01:29:45.000Z,True,"Today I had the chance to speak at the Legislative Conference and later sit down with reps. +There are few people more heroic than firefighters—we saw that firsthand last August in Lāhainā. We're doing all we can in Congress to support them & their needs.",2,2,23,2K,[],"['@IAFFofficial', '@HFFA1463']",[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1764825595072876563,tweet_id:1764825595072876563,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T23:05:00.000Z,True,"Important read—rising PRC influence in the Indo-Pacific is troubling. +Pacific Island nations are close friends & critical partners. More PRC control in the region means more corruption & security threats. Our COFA agreement promotes democratic principles.",4,9,23,1.7K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763702003371217398,tweet_id:1763702003371217398,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T23:06:15.000Z,True,"Renewing COFA will recommit the US to our vital partnership with these island nations and help fight the PRC playbook of using financial aid to sow instability in the Indo-Pacific. +We've had this agreement for so long because it's a no-brainer. We must renew it ASAP.",0,1,7,634,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763702320305500517,tweet_id:1763702320305500517,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T22:25:00.000Z,True,"For too long, it's been unfairly difficult for wheelchair users to travel by plane. It's especially problematic in Hawai‘i, where air travel is essential to get around the state. +I've been working with my colleagues to tackle this issue, and it's great to see take action.",0,16,87,5.5K,[],['@USDOT'],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763691936920297969,tweet_id:1763691936920297969,@SenBrianSchatz +Senate Democrats,@SenateDems,2024-03-01T19:01:52.000Z,True,"Watch : + +Republicans will try to on the one hand say they are for IVF—but on the Senate floor block legislation to protect IVF. + +No one is fooled. + +Their record is theirs to own.",48,403,625,15K,[],['@SenBrianSchatz'],[],https://pbs.twimg.com/profile_images/1518618855458971649/EAp2b8sB_x96.jpg,https://twitter.com/SenateDems/status/1763640819251081392,tweet_id:1763640819251081392,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T21:37:04.000Z,True,"Great news—the first EV charging station in Hawai‘i funded by the Infrastructure Law is now open for business + +Building charging stations makes EVs more accessible to Hawai‘i families. We're working hard to secure more federal dollars to help us build toward a clean energy future",28,78,358,20K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763679873950679406,tweet_id:1763679873950679406,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T21:37:25.000Z,True,"For more info on the new charging stations, check out this link.",0,2,5,664,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763679962983206948,tweet_id:1763679962983206948,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T14:38:49.000Z,True,"National Women's History Month is a time for us to lift up and celebrate the legacies of women who have made our country a better place. Each week, I'll be highlighting a different woman from Hawai‘i who had such an impact on our state. + +First up: Mary Kawena Pukui. (1/x)",6,14,55,1.9K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763574618206392832,tweet_id:1763574618206392832,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T14:41:00.000Z,True,"As we continue working in the Senate to expand resources for ʻŌlelo Hawaiʻi to be taught in schools, we look back on the legacy and example Mary Kawena Pukui left behind. (4/x)",1,2,6,466,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763575169874788734,tweet_id:1763575169874788734,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-03-01T14:41:34.000Z,True,"Her passion and determination have inspired generations to continue fighting to not just preserve, but to amplify and celebrate Native Hawaiian culture at every opportunity. (5/5)",0,2,8,434,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763575311185174947,tweet_id:1763575311185174947,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-02-29T23:15:00.000Z,True,"Today & I reintro'd the John R. Lewis Voting Rights Advancement Act. + +The right to vote is a cornerstone of our democracy, but the far-right keeps launching attacks to limit people's ability to cast ballots. + +Passing this law is crucial.",2,7,39,1.2K,[],"['@SenatorDurbin', '@SenSchumer', '@SenatorWarnock']",[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763342131840593967,tweet_id:1763342131840593967,@SenBrianSchatz +Senator Brian Schatz,@SenBrianSchatz,2024-02-29T22:43:33.000Z,True,"Gutting Roe was never going to be enough for Republicans. It was a gateway to an all-out war. + +Now they’re attacking IVF, denying people the freedom to decide to have a family. Wanting to start a family is not a crime + +This isn't about protecting life—it's about punishing women",24,137,331,14K,[],[],[],https://pbs.twimg.com/profile_images/849770568677298176/dzXWNsOx_x96.jpg,https://twitter.com/SenBrianSchatz/status/1763334217130508590,tweet_id:1763334217130508590,@SenBrianSchatz +Leader McConnell,@LeaderMcConnell,2024-03-21T18:57:05.000Z,True,"Today, I was proud to join Congressional leaders in honoring veterans of the Ghost Army with the Congressional Gold Medal. WW2 demanded the best America had to offer, and our nation will never forget how these talented men deceived the enemy to save American lives.",56,22,87,11K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770887369845092478,tweet_id:1770887369845092478,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-20T17:13:43.000Z,True,"Israel’s government and unity war cabinet report to the Israeli people, not the U.S. Senate. America rightly rejects foreign interference in our own democratic politics. And we owe it to our friends and allies to stay out of theirs.",587,264,1.2K,63K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770498969904287829,tweet_id:1770498969904287829,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-20T16:21:29.000Z,True,".’ climate agenda puts activists ahead of American workers: Freezing new export permits, micromanaging home appliances, and now trying to rig the auto market for expensive EVs. Democrats are willing to trade working families’ livelihoods for kudos from their radical base.",152,37,161,18K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770485826092146754,tweet_id:1770485826092146754,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-19T13:08:35.000Z,True,"The remainder of government funding for FY 2024 is on a path to becoming law. As bill text is finalized, I’m grateful to Senator Collins for pushing tirelessly for Republican priorities, including urgent resources for national defense. It's time for Congress to complete our work.",201,60,83,37K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770074893490557196,tweet_id:1770074893490557196,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-14T15:45:52.000Z,True,The primary “obstacles to peace” in Israel’s region are genocidal terrorists and corrupt PA leaders who repeatedly reject peace deals. Foreign observers who cannot keep this straight ought to refrain from interfering in the democracy of a sovereign ally.,769,930,3.5K,233K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1768302535431901402,tweet_id:1768302535431901402,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-21T18:57:05.000Z,True,"Today, I was proud to join Congressional leaders in honoring veterans of the Ghost Army with the Congressional Gold Medal. WW2 demanded the best America had to offer, and our nation will never forget how these talented men deceived the enemy to save American lives.",56,22,87,11K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1770887369845092478,tweet_id:1770887369845092478,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-12T23:00:28.000Z,True,"I was proud to welcome Polish President to the U.S. Capitol. Poland's generous support for Ukraine is a model for allies. In the face of historic threats, America is proud to stand shoulder to shoulder with such a stalwart member of the trans-Atlantic alliance.",131,83,341,28K,[],"['@AndrzejDuda', '@NATO']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767687128983441541,tweet_id:1767687128983441541,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-12T20:19:00.000Z,True,Law enforcement and Jewish groups nationwide are sounding the alarm on ’ attempt to give life tenure on the federal bench to a nominee with ties to terrorist sympathizers and cop-killers. The Senate must reject Adeel Mangi’s nomination.,169,105,302,31K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767646494520402011,tweet_id:1767646494520402011,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-12T19:08:39.000Z,True,".’ latest budget request would raise taxes as a share of GDP to their highest level since WWII. Meanwhile, the same measure of spending on national defense is near historic lows. It’s a dangerous world, and a Commander-in-Chief who’s proposed net cuts to defense funding…",299,57,202,43K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767628791289974907,tweet_id:1767628791289974907,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-11T21:49:49.000Z,True,"Last week, the Senate’s action on government funding delivered on Kentucky’s top priorities – from military construction to overhauling aging roads and bridges and empowering law enforcement to combat the opioid crisis. I’m proud we took action on issues near and dear to my…",257,22,65,35K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1767306961270235173,tweet_id:1767306961270235173,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-08T13:06:02.000Z,True,"Last night, spoke directly to the American people and presented a stark contrast. After three years of ’ failures, she showed how Republicans are ready to turn the page and preserve the American Dream for the next generation.",1.9K,207,596,119K,[],"['@SenKatieBritt', '@POTUS']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1766087983071948887,tweet_id:1766087983071948887,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-03-07T23:05:25.000Z,True,"Proud to welcome Kristersson to the U.S. Capitol and his nation to the most successful military alliance in history. Like Finland, Sweden's capable forces and modern defense industrial base will enhance and strengthen America's own national security from Day One.",154,84,700,35K,[],"['@SwedishPM', '@NATO']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1765876438278807663,tweet_id:1765876438278807663,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-29T20:00:16.000Z,True,Glad to announce with that will deliver the Republican address to the nation next Thursday. The American people will hear from an unapologetic optimist fighting to secure a stronger future and leave Washington Democrats’ failures behind.,1.5K,198,699,113K,[],"['@SpeakerJohnson', '@SenKatieBritt']",[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1763293125630435452,tweet_id:1763293125630435452,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-28T18:48:50.000Z,True,"As I said on the Senate floor, one of life’s most underappreciated talents is to know when it’s time to move on. It’s been the honor of my life to serve as Republican leader.",4.1K,781,2.3K,491K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1762912762437521534,tweet_id:1762912762437521534,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-26T20:04:58.000Z,True,"Strengthening NATO means strengthening U.S. national security and the collective security of the West. The United States and the entire alliance will be proud to formally welcome Sweden to our ranks this year. +My full statement:",949,169,639,73K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1762207146882576575,tweet_id:1762207146882576575,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-13T16:17:29.000Z,True,"The Senate understands the responsibilities of America’s national security and will not neglect them. And today, on the value of American leadership and strength, history will record that the Senate did not blink. +My full statement:",9.8K,1.3K,3.6K,1.7M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1757438855756632552,tweet_id:1757438855756632552,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-11T17:50:31.000Z,True,"The choice facing the Senate is simple: Will we recommit to the American strength our allies crave and our adversaries fear? Or will we give those who wish us harm one more reason to question our resolve? We cannot afford to get this wrong. +Read my full remarks:…",8.3K,1.7K,5K,1.7M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1756737493167145345,tweet_id:1756737493167145345,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-04T23:57:33.000Z,True,My statement on the supplemental national security legislation:,7.4K,681,494,1.4M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1754293146429653114,tweet_id:1754293146429653114,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-02T20:27:41.000Z,True,"My thoughts remain with Kentucky’s 138th Field Artillery Brigade, and with the Kentuckian injured in Saturday’s deadly attack on U.S. personnel in Jordan. It is time for the President to meet threats to American servicemembers with overwhelming force and re-establish credible…",649,56,185,74K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1753515553833066829,tweet_id:1753515553833066829,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-02-01T19:17:42.000Z,True,".’ de facto ban on new LNG exports permits is bad news – at home and abroad. Democrats’ war on affordable American energy already has working families paying more to heat and light homes. Now, squeezing U.S. exports could force our allies to rely more on our adversaries'…",374,59,172,112K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1753135552478482651,tweet_id:1753135552478482651,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-25T16:48:40.000Z,True,"Elaine and I are heartbroken to learn of the passing of Bobbi Barrasso. Bobbi’s home state is better for her decades of devoted advocacy for a host of worthy causes. Today, the Senate holds John, her daughter Hadley, and the entire Barrasso and Brown families in our prayers. +My…",520,35,163,54K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1750561332225515709,tweet_id:1750561332225515709,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-24T20:43:05.000Z,True,.’ deference to climate extremists continues to sell out American consumers and U.S. allies. Greater reliance on dirty energy from Russia or Iran is never in the national interest.,676,40,69,43K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1750257938944454657,tweet_id:1750257938944454657,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-24T18:37:08.000Z,True,"When our allies and partners face aggression, America is not inoculated from the effects. When authoritarians think they can redraw maps by force, American national security is challenged. The Senate must be ready to invest in American leadership and American strength.",1.2K,240,698,84K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1750226241448284183,tweet_id:1750226241448284183,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-23T16:16:30.000Z,True,"The goals of supplemental national security legislation are straightforward: secure our southern border, help fight Putin’s aggression in Europe, invest seriously in competition with China, and stand with Israel and restore real deterrence against Iran. +Keeping America safe.…",986,135,315,69K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1749828465166045661,tweet_id:1749828465166045661,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-19T14:10:00.000Z,True,"Today, tens of thousands of supporters will take to Washington to celebrate the sanctity of human life. I am proud of the Kentuckians and all Americans who are standing for human dignity at this year’s #MarchForLife.",376,36,192,42K,['#MarchForLife'],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1748347075715268679,tweet_id:1748347075715268679,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-18T20:00:01.000Z,True,"The Biden Administration still thinks it can convince working families to ignore their shrinking paychecks and believe that Bidenomics is working. But just 14% of Americans think ' policies are actually helping them. Truth is, Bidenomics is a dud.",695,109,283,55K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1748072771656245512,tweet_id:1748072771656245512,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-18T18:59:43.000Z,True,Iran and its proxies don't believe America has the resolve to impose serious costs for their increasing terrorist violence. We can’t hope to deter aggression with weakness. Our adversaries speak the language of strength. And America can’t afford not to be fluent.,260,50,168,37K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1748057598786515084,tweet_id:1748057598786515084,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-16T23:13:00.000Z,True,"From day one, the Biden Administration met Iranian aggression with accommodation and squandered the credibility of American deterrence. It’s time for to explain how exactly he intends to compel Iran and its proxies to change their behavior.",399,81,289,44K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1747396562677080492,tweet_id:1747396562677080492,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-16T22:12:41.000Z,True,Israel takes extraordinary risks to minimize civilian casualties. Hamas and Palestinian Islamic Jihad go to extraordinary lengths to maximize senseless death. We must not confuse one for the other. The Senate should reject the Sanders resolution.,1.4K,681,3.5K,234K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1747381384115564734,tweet_id:1747381384115564734,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-15T13:22:00.000Z,True,"Today we celebrate the life and legacy of a monumental American, Dr. Martin Luther King, Jr. Dr. King’s simple and powerful message still echoes across our country, inspiring Americans of all walks of life to keep striving towards a more perfect union.",414,140,203,1.2M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1746885444493791469,tweet_id:1746885444493791469,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-12T01:08:37.000Z,True,"I welcome U.S. and coalition operations against the Iran-backed Houthi terrorists responsible for disrupting international commerce and attacking American vessels. +My full statement:",502,165,527,74K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745613721110479345,tweet_id:1745613721110479345,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-11T18:21:46.000Z,True,"From the border crisis to the Red Sea, none of the national security challenges we face will get any easier the longer we wait to address them. We’re facing a clear test of America’s credibility as a global superpower. The Senate must not fail. +Read my full remarks:…",536,64,156,41K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745511331975807005,tweet_id:1745511331975807005,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-10T16:53:13.000Z,True,"America is facing the most serious array of national security challenges since the fall of the Soviet Union – border crisis, rampant terrorism, strategic competition, and land war in Europe. The Biden Administration’s playbook has been hesitation and self-deterrence. But the…",478,65,163,48K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745126661635346879,tweet_id:1745126661635346879,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-10T16:09:09.000Z,True,"For too long, the Ivy League let leftist dogmas replace the free exchange of ideas. But across the country, places like Kentucky's leading universities continue to champion integrity and academic rigor. It’s time for the Ivy League to start pursuing truth again.…",216,26,122,34K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1745115570297536881,tweet_id:1745115570297536881,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-09T21:43:10.000Z,True,Three years of American retreat have left the world’s most active state sponsor of terror undeterred. The best way America can help allies like Israel is to lead with strength and restore credible deterrence against Iranian aggression.,286,35,107,24K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1744837240394498363,tweet_id:1744837240394498363,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2024-01-07T21:16:51.000Z,True,"I’m encouraged that the Speaker and Democratic Leaders have identified a path toward completing FY 2024 appropriations. America faces serious national security challenges, and Congress must act quickly to deliver the full-year resources this moment requires.",2K,274,342,1M,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1744105843518235022,tweet_id:1744105843518235022,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-25T14:00:02.000Z,True,"Today, I want to wish my fellow Kentuckians and all Americans a very Merry Christmas. As a weary world rejoices, I’m especially grateful to our nation’s brave servicemembers who are serving away from home and loved ones to keep America safe.",529,49,477,66K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1739284870944182333,tweet_id:1739284870944182333,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-13T18:48:11.000Z,True,"Yesterday, I was honored to join Rabbi Levi Shemtov for the inaugural Capitol Menorah Lighting. This year, the Hanukkah message of light in darkness is especially needed. I am proud to celebrate the Jewish people’s resilience, and will continue to stand up for their right to…",353,72,308,44K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1735008732067528835,tweet_id:1735008732067528835,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-13T17:48:44.000Z,True,".’ latest judicial nominee, Adeel Mangi, served on the board of a law school organization that amplifies anti-Semitic terrorist propaganda. As Jews face an historic wave of anti-Semitic hate, this is the kind of nominee the Biden Administration wants us to confirm?",254,80,160,71K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1734993770574135576,tweet_id:1734993770574135576,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-11T22:36:00.000Z,True,"The choice facing elite universities today is clear: enforce existing speech restrictions evenly, or protect speech across the board – not just for anti-Semitic radicals. In the meantime, donors will continue to vote with their checkbooks, and students may vote with their feet.",265,48,151,34K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1734341287908970873,tweet_id:1734341287908970873,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-11T21:35:58.000Z,True,"When it comes to keeping America safe, border security is not a side show. It’s a main event. More and more Democrats are recognizing this reality. It’s time for their leaders to act on it.",1.4K,164,594,94K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1734326179908260096,tweet_id:1734326179908260096,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-07T19:00:01.000Z,True,"Tonight, Jews around the world will light the first candle of Hanukkah. Let us join in celebrating the resiliency and strength of the Jewish people and stand up for their right to live free from fear.",209,37,226,29K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732837384033579052,tweet_id:1732837384033579052,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-07T17:04:51.000Z,True,"The Biden Administration’s southern border crisis is out of control. America’s national security begins with securing our nation’s borders. And supplemental legislation must begin there, too.",631,80,231,158K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732808402693185956,tweet_id:1732808402693185956,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-07T16:23:00.000Z,True,"The Senate is about to vote on a resolution that would withdraw U.S. troops from Syria, reward Iran, and wreck America’s credibility in the Middle East. A vote for this resolution would be a vote for retreat in the face of terror. +Read my full remarks:",289,56,85,43K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732797871181705718,tweet_id:1732797871181705718,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-06T17:45:00.000Z,True,Border security is national security. Supplemental national security legislation must include meaningful policy changes to get the Biden Administration’s border crisis under control. Not enough Senate Democrats recognize this fundamental and urgent reality.,369,72,178,41K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732456116070572529,tweet_id:1732456116070572529,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-06T16:54:25.000Z,True,".’s neighbors in Bakersfield were fortunate to have such an optimistic doer represent them for 17 years. I am proud of the work we accomplished together in the Capitol, and I wish him the very best as he writes a new chapter.",54,15,48,24K,[],['@SpeakerMcCarthy'],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732443387888848949,tweet_id:1732443387888848949,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-05T16:17:44.000Z,True,"Senate Republicans have been crystal clear: national security starts with border security. The sooner Democrats realize this, the sooner we can deliver on urgent national security priorities.",2.9K,410,1.4K,536K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1732071768297197963,tweet_id:1732071768297197963,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-04T21:18:46.000Z,True,National security begins with border security. That’s why Senate Republicans are still hard at work on policy changes to fix our broken asylum and parole system and get the Biden Administration’s border crisis under control. It’s time for Democrats to get back to work producing…,687,90,265,82K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1731785136847368337,tweet_id:1731785136847368337,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-12-01T16:55:42.000Z,True,"Today, our nation mourns the passing of a towering figure in the history of American law. Justice Sandra Day O’Connor led with brilliance and conviction. Elaine and I send our deepest condolences to the entire O’Connor family.",75,28,103,19K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1730631771081839051,tweet_id:1730631771081839051,@LeaderMcConnell +Leader McConnell,@LeaderMcConnell,2023-11-30T17:30:32.000Z,True,"Senate Democrats know dragging private citizens into their war on judicial independence is indefensible, so they’ve decided not to bother defending it. This is a partisan effort to smear the Supreme Court and it will not succeed.",244,44,155,38K,[],[],[],https://pbs.twimg.com/profile_images/732596482336002049/JYMrr9_4_x96.jpg,https://twitter.com/LeaderMcConnell/status/1730278148372136438,tweet_id:1730278148372136438,@LeaderMcConnell +Jim Risch,@SenatorRisch,2024-03-21T14:08:00.000Z,True,"On #NationalWomeninAgDay, I’m proud to recognize the women whose strength and leadership help Idaho’s ag industry thrive. I’m fortunate to have spent the last 56 years with my favorite woman in ag by my side.",31,4,18,1.4K,['#NationalWomeninAgDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770814620476870768,tweet_id:1770814620476870768,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T21:35:26.000Z,True,"Idahoans don't want the government in the driver's seat when it comes to operating or buying a vehicle, yet the president is set on taking the wheel, setting unrealistic emissions standards, and diminishing purchasing power with this de facto EV mandate.",27,8,26,2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770564835161374757,tweet_id:1770564835161374757,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-21T14:08:00.000Z,True,"On #NationalWomeninAgDay, I’m proud to recognize the women whose strength and leadership help Idaho’s ag industry thrive. I’m fortunate to have spent the last 56 years with my favorite woman in ag by my side.",31,4,18,1.4K,['#NationalWomeninAgDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770814620476870768,tweet_id:1770814620476870768,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T21:03:26.000Z,True,Good luck to and in today’s game against Colorado! I know you’ll make Idaho proud! #GoBroncos,9,1,9,1.8K,['#GoBroncos'],"['@CoachLeonRice', '@BroncoSportsMBB']",[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770556779165823421,tweet_id:1770556779165823421,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T15:40:14.000Z,True,"The US cannot embrace the full potential of our domestic mining industry when projects are tied up in red tape for nearly a decade. To ensure not just our economic success but our national security, Congress must revamp our mining laws and substantially reduce irrelevant…",15,7,19,2.8K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770475443654717667,tweet_id:1770475443654717667,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T16:34:01.000Z,True,"Idahoans are great wildlife managers, and we know these populations best. This agreement between the state and is a step in the right direction for managing grizzly populations, but Congress must expand upon this success by passing my Grrr Act.",20,3,8,1.1K,[],['@USFWS'],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770126591135215854,tweet_id:1770126591135215854,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-20T21:03:26.000Z,True,Good luck to and in today’s game against Colorado! I know you’ll make Idaho proud! #GoBroncos,9,1,9,1.8K,['#GoBroncos'],"['@CoachLeonRice', '@BroncoSportsMBB']",[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770556779165823421,tweet_id:1770556779165823421,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T15:41:00.000Z,True,"Idaho’s farmers and ranchers work day in and day out to provide for our families and feed the world. +From this rancher, happy #NationalAgDay to Idaho’s ag community!",12,4,16,1.4K,['#NationalAgDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770113250538946828,tweet_id:1770113250538946828,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T13:52:26.000Z,True,"Idaho has long utilized the abundant natural geothermal resources just below its surface. With breakthrough technologies underway, there is great potential to scale up production of this clean, reliable energy. The GEO Act will streamline leasing and permitting processes,…",8,3,8,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770085929199309214,tweet_id:1770085929199309214,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-19T13:51:31.000Z,True,"The Biden administration’s radical green agenda contradicts science— U.S. air quality standards are the highest they’ve ever been. The president believes they need to be higher still, much to the detriment of American-owned manufacturing. The president’s unnecessary rule must be…",16,6,14,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1770085697459814601,tweet_id:1770085697459814601,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-18T19:01:40.000Z,True,"Excited to see the Broncos back in for the third straight year! Dance on, ! Idaho is rooting for you!",16,1,5,2.5K,[],"['@MarchMadnessMBB', '@BroncoSportsMBB']",[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1769801361623810355,tweet_id:1769801361623810355,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-18T16:00:23.000Z,True,"Over the weekend, Idaho received the great honor of having the newest member of the Navy's warships named after it. The ships’ christening was truly done the Idaho way with water from Lake Pend Oreille, Payette Lake, Henrys Lake, and Redfish Lake.",23,7,37,3.7K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1769755738526601397,tweet_id:1769755738526601397,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-14T20:27:03.000Z,True,My interns are celebrating #NationalPotatoChipDay! Are you?,52,10,49,6.9K,['#NationalPotatoChipDay'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1768373298897821761,tweet_id:1768373298897821761,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-13T18:58:26.000Z,True,"Laken Riley should be with us today. The least we can do is ensure another American life isn't stolen like hers by requiring ICE to arrest, detain, and remove any illegal alien who commits theft in this country.",53,8,34,1.8K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767988606616949003,tweet_id:1767988606616949003,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-13T15:55:53.000Z,True,"More than $6 trillion over the next four years. That’s the additional debt President Biden would add to the already massive national debt the American people must pay back. At a time when Idahoans are struggling to pay for inflation, this is not just tone-deaf—it’s dangerous and…",76,12,55,3.5K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767942668728865032,tweet_id:1767942668728865032,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-13T14:22:25.000Z,True,"Under President Biden, Idahoans are paying $1,021 more each month just to keep up with the rising prices of everyday goods. +Groceries cost more. Rent costs more. Gas costs more. Idahoans are tired of pinching pennies to make it by. +It’s beyond time to end the reckless spending.",138,29,141,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767919146254127386,tweet_id:1767919146254127386,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-12T20:58:12.000Z,True,"The president’s inflated $7.3 trillion budget proposal is chock-full of billions of dollars in unnecessary spending, including billions for the EPA to address a “climate crisis.” In simple terms, this budget would give the Biden administration funds to establish even more…",49,5,30,2.7K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767656362295570737,tweet_id:1767656362295570737,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-12T20:09:01.000Z,True,Even the left-leaning New York Times is acknowledging the burden Bidenflation has imposed on Americans. These “inflation-friendly recipes” are proof that the president and democrats’ spending habits are too much to bear.,26,3,9,863,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767643984099209504,tweet_id:1767643984099209504,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-12T18:29:27.000Z,True,"Inflation is up 18.6% since President Biden took office. Yesterday, he unveiled a $7.3 trillion budget proposal with a $1.8 trillion deficit. Excess spending isn’t the answer to inflation, it’s the catalyst. Americans cannot afford Biden’s agenda.",119,39,137,11K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767618924479127752,tweet_id:1767618924479127752,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-11T21:23:48.000Z,True,I will not vote for any bill that allows any illegals to cross into this country. My red line is not one illegal entrant. We need to enforce the laws we have.,139,84,429,13K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767300415274541564,tweet_id:1767300415274541564,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-11T17:02:04.000Z,True,"The President tried to pass the buck for rising food costs by blaming companies for “shrinkflation.” In reality, he’s trying to cover up that his anti-agriculture and business policies have led to the highest food price inflation in over 4 decades and shrinkflation is to blame…",58,15,37,6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1767234547169579154,tweet_id:1767234547169579154,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-09T01:03:30.000Z,True,"This spending package is disappointing—it comes more than five months into the fiscal year, is jammed full of earmarks and the left’s political priorities, and it fails to move towards reducing our national debt. This is not fiscal conservatism, and, as such, I cannot vote for…",94,12,92,5.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766268540888170619,tweet_id:1766268540888170619,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T18:07:05.000Z,True,"Loans are a pretty simple concept. The borrower agrees to pay back the full amount borrowed with interest. +That isn’t President Biden’s definition however, and last night he bragged about his unfair student loan forgiveness scheme.",50,7,22,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766163746789962146,tweet_id:1766163746789962146,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T18:07:06.000Z,True,"I’ve fought every illegal forgiveness effort by the president because it is just wrong to force Idahoans to cover these costs. +You borrow it, you pay it. +It’s that simple.",44,2,16,969,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766163749243658633,tweet_id:1766163749243658633,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T16:53:38.000Z,True,"President Biden doubled down on his radical green agenda last night. That means more regulations, more red tape, and more jobs lost. America could be energy independent, but the president would rather appease environmental extremists.",57,9,25,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766145262601245047,tweet_id:1766145262601245047,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T15:18:00.000Z,True,"International women’s day is about celebrating women around the globe for all they do. The women serving on my staff and leading my family are some of the strongest, most talented women I know. I am proud to celebrate their achievements today and every day.",54,7,9,1.9K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766121194041073709,tweet_id:1766121194041073709,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T14:38:11.000Z,True,"Immigration is one of the biggest issues facing America today, yet President Biden waited ~40 minutes to even touch it. +Ridiculous. +But remember, President Biden has the same laws President Trump had to address the crisis.",49,6,34,2.2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766111176503509382,tweet_id:1766111176503509382,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T14:38:12.000Z,True,"Trump enforced them. Biden doesn’t. +Trump eliminated a crisis and constantly reminds us of how to combat the crisis. Biden plays the blame game and waits to bring it up.",40,3,13,812,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1766111178336415955,tweet_id:1766111178336415955,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:57:10.000Z,True,"In tonight’s #SOTU speech, President Biden doubled down on his open border policy and again tried to blame Congress.",62,12,43,2.7K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765949855854113008,tweet_id:1765949855854113008,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:57:11.000Z,True,"Biden’s predecessor, with the current law, reduced illegal immigration to zero with executive orders requiring the border patrol to enforce the laws. President Biden rescinded those orders, and the result is 10,000 illegal entrants invading our country every day.",33,5,13,1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765949860086153230,tweet_id:1765949860086153230,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:57:11.000Z,True,"President Biden can reinstate President Trump’s orders and reduce the flow of illegal migrants to zero—if not, Trump will do so when he is elected. I will continue to fight for a zero number of illegals entering America.",32,6,16,1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765949862539837736,tweet_id:1765949862539837736,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:11:31.000Z,True,"President Biden claimed in his speech that his administration is keeping the family farm going, but his aggressive regulatory agenda is threatening the existence of Idaho’s farmers and ranchers.",72,21,83,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765938368276296169,tweet_id:1765938368276296169,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-08T03:02:30.000Z,True,"When the president talked about his Buy America bill, he conveniently forgot that his Secretary of the VA is allowing that very bill to be the reason veterans housing facilities across the country, including three in Idaho, won’t see the updates they need.…",44,13,26,3.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765936102366429601,tweet_id:1765936102366429601,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T15:43:07.000Z,True,"With President Biden's SOTU tonight, I'm preparing to hear a lot of falsities, exaggerations, and a big effort to play the blame game. +I'm sure we'll hear about the economy, immigration, and guns. And, I am certain he'll spin the realities of those issues...",63,17,51,10K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765765127473627456,tweet_id:1765765127473627456,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T15:43:07.000Z,True,"Just to set the record straight: +- Liberal spending has worsened inflation & Idahoans pay more and more for goods today than they did when he took office. +- The border crisis is worse because of the president's open border policies and refusal to use his statutory powers to…",55,6,14,1.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765765129826631986,tweet_id:1765765129826631986,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T15:25:05.000Z,True,"China is seeking every opportunity to diminish American national security, and here is yet another example. +China is America’s biggest threat. +We must stop the CCP from harming us on our own soil.",38,3,7,806,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765760587760296445,tweet_id:1765760587760296445,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-07T14:51:54.000Z,True,Joining Neal Larson and Julie Mason this morning on NewsTalk at 8:05am (mt). Tune in here: https://newstalk1079.net/listen-live/ !,27,0,1,832,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765752239430209779,tweet_id:1765752239430209779,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-06T15:51:09.000Z,True,"America’s veterans have waited far too long for updated facilities in Idaho & around the country. Due to choosing to selectively apply requirements, veterans will wait longer, & it will cost taxpayers more money for needed facility updates.",46,6,11,1.4K,[],['@SecVetAffairs'],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765404762755698777,tweet_id:1765404762755698777,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-05T19:21:57.000Z,True,"7,000 illegal immigrants a day is 7,000 too many.",73,16,65,5.5K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765095424610701483,tweet_id:1765095424610701483,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-05T17:40:21.000Z,True,The Biden admin’s attack on Idaho law is more than jeopardizing the lives of future generations; it is also threatening the balance of power between federal and state governments.,32,3,7,2.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1765069854925819948,tweet_id:1765069854925819948,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-04T19:05:27.000Z,True,The ATF wants to hold federal firearm license dealers to impossible clerical standards to make it harder to legally sell and buy firearms. This is the latest in the Biden administration’s war on your constitutional rights.,48,5,12,1.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1764728883192930721,tweet_id:1764728883192930721,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-04T17:22:23.000Z,True,"Happy Idaho Day! On this day in 1863, President Abraham Lincoln created the Idaho Territory. I’m thankful each and every day to call the Gem State home. #IdahoDay2024",22,8,34,1.8K,['#IdahoDay2024'],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1764702947676410115,tweet_id:1764702947676410115,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-03T14:35:00.000Z,True,"On National Anthem Day, we memorialize the sacrifices made by our brave men and women and the accomplishments of our great nation. The land of the free and the home of the brave!",31,4,26,2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1764298433291031009,tweet_id:1764298433291031009,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-02T14:00:00.000Z,True,"Whether you pick up a newspaper, a good book, or the back of the cereal box, I encourage everyone to spend a little time reading on National Read Across America Day!",26,1,12,1.2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763927240260125034,tweet_id:1763927240260125034,@SenatorRisch +Jim Risch,@SenatorRisch,2024-03-01T16:30:31.000Z,True,"On National Speech and Debate Education Day, I commend the students, teachers, and coaches across Idaho competing in speech and debate. These activities are essential for developing important critical thinking and communication skills that will propel the next generation into the…",22,2,6,1.6K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763602729669173413,tweet_id:1763602729669173413,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-29T20:24:08.000Z,True,Improvements to soil health have long-lasting and significant economic benefits to Idaho’s agriculture industry. I’m glad to see Idaho’s own Tim Cornie reap the benefits of successful soil management.,17,0,5,2K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763299132679070027,tweet_id:1763299132679070027,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-29T17:13:19.000Z,True,"President Biden continues to hide from his border crisis by going to the crossing with the lowest illegal encounters. +This trip is proof he’s not able to face the magnitude of the crisis, which includes more than 9 million illegal migrant crossings during his time in office. + +He…",52,11,31,3.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1763251113376034947,tweet_id:1763251113376034947,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-28T21:29:08.000Z,True,"Idahoans believe in the right-to-life & the 10th Amendment. + +Since President Biden took office, both of these principles have been under attack. His HHS wrongfully interpreted EMTALA to allow ER doctors to provide abortions. This blatantly contradicts EMTALA’s lifesaving purpose.",28,3,12,1.3K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762953102531940785,tweet_id:1762953102531940785,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-28T16:29:22.000Z,True,"I know it. Idaho knows it. America knows it. + +The millions of immigrants entering the US illegally is the elephant in the room the president cannot keep ignoring.",94,19,54,6.1K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762877662752584006,tweet_id:1762877662752584006,@SenatorRisch +Jim Risch,@SenatorRisch,2024-02-27T21:10:02.000Z,True,"Biden needs a reality check on EMTALA. + +EMTALA protects life. So does Idaho’s law. + +The president is wrong.",28,5,14,2.4K,[],[],[],https://pbs.twimg.com/profile_images/1512466997719748623/PtqIAZl6_x96.jpg,https://twitter.com/SenatorRisch/status/1762585908031692898,tweet_id:1762585908031692898,@SenatorRisch +Senator Ted Cruz,@SenTedCruz,2023-12-31T21:31:34.000Z,True,"As senator for Texas, I'm proud to fight for jobs, freedom, and security for the Lone Star State. We had some incredible wins in 2023, and I look forward to building on those successes for Texans, and all Americans, in 2024!",2.3K,444,2K,220K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1741572832461463876,tweet_id:1741572832461463876,@SenTedCruz +Senate Republicans,@SenateGOP,2024-03-21T20:22:04.000Z,True, ↓,26,33,123,13K,[],['@SenTedCruz'],[],https://pbs.twimg.com/profile_images/1610319775699288066/3HJLBrxC_x96.jpg,https://twitter.com/SenateGOP/status/1770908759969153180,tweet_id:1770908759969153180,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-22T13:39:49.000Z,True,"Joe Biden’s border policies have invited this. + +Illegal and unvetted aliens are rioting at our southern border.",205,273,857,44K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1771169916055433616,tweet_id:1771169916055433616,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-22T02:15:48.000Z,True,"Today, March 21st, is World Down Syndrome Day. + +Every baby born with Trisomy 21 deserves to be cherished, loved, and treated with equal dignity. + +Earlier this Congress, I co-sponsored the Protecting Individuals with Down Syndrome Act — legislation that will protect the lives…",93,156,1.1K,81K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770997777100632128,tweet_id:1770997777100632128,@SenTedCruz +SBA Pro-Life America,@sbaprolife,2024-03-20T21:39:44.000Z,True,"""The position of today's elected Democrats in Congress on abortion is wildly out of step with the American people. It is a radical proposition."" is right: the Dems' extreme, no-limits position on abortion is not in line with the views of the majority of Americans.",39,53,219,22K,[],['@SenTedCruz'],[],https://pbs.twimg.com/profile_images/1531979352669315072/6PvNKu57_x96.jpg,https://twitter.com/sbaprolife/status/1770565914091544644,tweet_id:1770565914091544644,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-22T13:39:49.000Z,True,"Joe Biden’s border policies have invited this. + +Illegal and unvetted aliens are rioting at our southern border.",205,273,857,44K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1771169916055433616,tweet_id:1771169916055433616,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T20:00:26.000Z,True,"It was great to meet with Houston Fire Chief Samuel Peña and Corpus Christi Fire Chief Robert Rocha, members of the , to discuss the issues impacting emergency service leaders as they work to keep Texas safe. +We are so blessed to have such incredible forces within our…",67,31,251,23K,[],['@IAFC'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770903312830705827,tweet_id:1770903312830705827,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T18:37:46.000Z,True,"Laken Riley should be alive today. + +She was murdered by an illegal alien who was let into America because of Joe Biden’s open borders policy, and allowed to stay because of Democrats’ dangerous sanctuary cities policies. + +President Biden has no remorse for the horrors his open…",1.2K,1.2K,4K,78K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770882508269162893,tweet_id:1770882508269162893,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T17:29:24.000Z,True,"The Biden administration’s criteria for how to use sanctions for international corruption is very obvious. + +If the Biden administration perceives a foreign country’s government as conservative, it applies sanctions. + +However, if a country is leftist, it’ll be congratulated –…",221,276,898,55K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770865306774249973,tweet_id:1770865306774249973,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T16:06:41.000Z,True,"The Biden administration has no concrete plans to get spectrum into the marketplace. +The mid-band spectrum gap between the United States and China continues to grow. +This is a huge problem for consumers while also threatening our national security. +If the U.S. doesn’t dominate…",117,142,553,40K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770844487192826301,tweet_id:1770844487192826301,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T15:49:29.000Z,True,Senator Cruz gives remarks at the Laken Riley Act Press Conference,147,120,480,27K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770840158377501113,tweet_id:1770840158377501113,@SenTedCruz +Free State Foundation,@FSFthinktank,2024-03-21T14:01:57.000Z,True,Important Senate Commerce hearing today on #spectrum. The needs auction authority restored & the US needs a #spectrum pipeline with fixed dates for reallocation of mid-band commercial spectrum. The - bill is a good starting basis for moving forward.,2,12,50,18K,"['#spectrum', '#spectrum']","['@FCC', '@SenTedCruz', '@SenJohnThune']",[],https://pbs.twimg.com/profile_images/1246226575152070657/783a9oiQ_x96.png,https://twitter.com/FSFthinktank/status/1770813100318437591,tweet_id:1770813100318437591,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T14:07:36.000Z,True,"Saving lives isn’t a partisan issue. +I’m proud to partner with as we introduce the STOP TRANQ Act. +What is tranq? It is a non-opiate tranquilizer – meaning if you overdose on fentanyl and tranq simultaneously, Narcan won’t work. +Our bill would require the State…",82,65,331,32K,[],['@SenTimKaine'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770814519557648788,tweet_id:1770814519557648788,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-21T02:33:11.000Z,True,"I support IVF. It is protected under law, and it will remain that way. +No one is taking IVF away — but Senate Democrats know that their radical stances on abortion are far outside of the mainstream, which is why they are resorting to scaremongering regarding the availability of…",452,501,1.9K,129K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770639765412421703,tweet_id:1770639765412421703,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-20T19:53:02.000Z,True,"I am deeply concerned about the recent report released by the Commission on the State of U.S. Olympics and Paralympics, which was supposed to look at the overall effectiveness of the Olympic structure. +Perhaps unsurprisingly, this commission — which was a Democrat-led effort as…",154,149,717,54K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770539062069170507,tweet_id:1770539062069170507,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-20T17:43:14.000Z,True,"Biden’s latest ban on gas-powered vehicles and replacement with electric vehicles is another direct assault on consumer choice and the American way of life. +It ignores the needs of American families in order to appease the radical environmental lobby at the expense of millions…",256,271,1.2K,48K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770506397156774131,tweet_id:1770506397156774131,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-20T16:22:09.000Z,True,"Biden’s nominee for the Third Circuit, Adeel Mangi, is losing Democrat support. + +They know he’s associated with groups that praise cop killers. + +Democrats know their constituents will be outraged if they vote for someone with such evil views.",71,109,403,26K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770485992937361410,tweet_id:1770485992937361410,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-20T15:49:19.000Z,True,"Tranq is claiming Texan lives, and lives all across our great nation. +I was proud to collaborate with to pass the TRANQ Research Act into law last year to combat the threat of this deadly street drug, and I am grateful to for joining me in committing…",44,29,179,25K,[],"['@SenPeterWelch', '@SenTimKaine']",[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770477731710374229,tweet_id:1770477731710374229,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-20T14:18:55.000Z,True,.: Cruz Sounds Alarm Over ‘Clear And Present Danger’ To U.S. That Biden Caused,181,108,403,26K,[],['@DailyCaller'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770454980043882563,tweet_id:1770454980043882563,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-20T00:10:59.000Z,True,RELEASE: Sen. Cruz Praises Supreme Court’s Support of Texas and the Rule of Lawhttps://cruz.senate.gov/newsroom/press-releases/sen-cruz-praises-supreme-courts-support-of-texas-and-the-rule-of-law…,119,224,1.3K,51K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770241589979345295,tweet_id:1770241589979345295,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-19T21:30:57.000Z,True,".: Sen. Cruz, Rick Scott, Colleagues Send Letter Calling for Targeted Sanctions Against Nicaragua Following Religious Persecutions",68,49,273,32K,[],['@TexasInsider'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770201315823522269,tweet_id:1770201315823522269,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-19T20:19:41.000Z,True,"4 years later, the media finally admits that keeping our kids out of school and forcing them into to obviously inadequate virtual “school” was a disastrous decision. +Data has been released that show that kids who were kept out of school the longest are the furthest behind AND…",145,189,953,40K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770183380916965617,tweet_id:1770183380916965617,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-19T18:34:37.000Z,True,"4 years later, the media finally admits that keeping our kids out of school and forcing them into to obviously inadequate virtual “school” was a disastrous decision. +Data has been released that shows that kids who were kept out of school the longest are the furthest behind AND…",120,163,892,41K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770156942759194811,tweet_id:1770156942759194811,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-19T17:49:16.000Z,True,"Biden has nominated Adeel Mangi to be a judge for the Third Circuit. + +It deeply concerning that Biden would give this man a lifetime appointment. + +Mangi served as an advisory board member to a group that labeled people who killed cops as “freedom fighters.” + +How can the heroes…",144,684,1.6K,65K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770145529873543187,tweet_id:1770145529873543187,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-19T13:35:24.000Z,True,"Another day, another terrorist trying to sneak in through our southern border. + +Terrorists know that President Biden has allowed MILLIONS of illegal aliens into America.",189,251,777,34K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1770081640624066668,tweet_id:1770081640624066668,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-18T19:24:11.000Z,True,"March 17 – March 24 is National Agriculture Week in America. +We are grateful in Texas for our farmers and ranchers who work countless hours to help produce the food in our stores and the clothes on our backs. +The Texas agricultural industry brings in over $32B for the economy —…",78,48,280,35K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769807027289620753,tweet_id:1769807027289620753,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-18T15:12:55.000Z,True,"Months ago I helped force a vote on the Senate floor to immediately pass aid to Israel. The bill would have gone to the President's desk that afternoon. +Every Democrat senator voted against the legislation.",706,642,2.1K,66K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769743796139413746,tweet_id:1769743796139413746,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-18T13:25:20.000Z,True,Our men and women in blue are at the core of our communities across the Lone Star State. I am proud to stand with who have the backs of our state troopers and highway patrol that keep our communities safe.,213,86,641,37K,[],['@NatlTroopers'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769716719377944778,tweet_id:1769716719377944778,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-17T19:43:24.000Z,True,Happy St. Patrick’s Day!,162,64,733,47K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769449477138530452,tweet_id:1769449477138530452,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-17T19:10:55.000Z,True,ICYMI: Sen. Cruz Response to Schumer’s Israel Comments,88,68,356,40K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769441300644770214,tweet_id:1769441300644770214,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-17T17:49:54.000Z,True,"Big Tech’s most powerful tool is their recommendation algorithms. + +On TikTok, American users are getting fed propaganda while Chinese users are getting educational videos. + +The last thing I want is China controlling what messages Americans consume.",391,308,1.2K,73K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769420910983868613,tweet_id:1769420910983868613,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-17T11:34:18.000Z,True,"Expanding the economic benefits of trade is a common goal for and me. +It was great to welcome several members of the alliance to my office to discuss how we can advance the future Interstate 27. The next day the Senate passed my bipartisan, bicameral I-27…",111,44,360,53K,[],['@PortsToPlains'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769326388291490150,tweet_id:1769326388291490150,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-16T22:48:46.000Z,True,"I believe China is suppressing free speech on TikTok. +For example: Hashtags for Uyghurs, Tibet, and Tiananmen Square are far more prevalent on Instagram than on TikTok. +The difference between the two platforms is astonishing.",397,218,1.1K,95K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769133736736530810,tweet_id:1769133736736530810,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-16T16:43:43.000Z,True,"Read my statement on U.S. Border Patrol Agent Christopher Luna, who was laid to rest in his hometown of Edinburg, Texas this week. +Agent Luna was on board a National Guard helicopter when it went down in La Grulla, Texas, killing him and two members of the National Guard, and…",196,165,857,51K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1769041871328641352,tweet_id:1769041871328641352,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T21:38:16.000Z,True,"There are many reasons that Americans should be concerned that the CCP essentially owns TikTok. +For starters, China can easily spy on us using the data gleaned from the app. +Secondly, it’s a propaganda machine.",694,265,1.1K,80K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768753607111794806,tweet_id:1768753607111794806,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T21:14:53.000Z,True,"My recently introduced legislation, the Illegal Red Snapper Enforcement Act would develop a standard methodology for identifying the country of origin of red snapper imported into the United States. +Currently, red snapper are being poached by criminal cartels and sold back into…",197,62,494,52K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768747724315263042,tweet_id:1768747724315263042,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T20:50:12.000Z,True,Utterly horrific. This is only going to get worse.,348,243,833,69K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768741512026763700,tweet_id:1768741512026763700,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T20:18:30.000Z,True,"The Biden body bags keep stacking higher and higher. +President Biden has made a political decision to keep the border open, no matter the cost.",1.1K,1K,2.4K,158K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768733533265129967,tweet_id:1768733533265129967,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T20:09:28.000Z,True,"As a proud Houstonian, it was great to welcome Houston City Councilwoman to Washington to discuss the city’s efforts to create opportunities for Texans, build up the infrastructure in the Lone Star State’s largest city.",68,34,232,28K,[],['@TwilaDCarter'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768731259910443285,tweet_id:1768731259910443285,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T17:40:07.000Z,True,"Democrats know that Adeel Mangi’s nomination to the Third Circuit is hanging on by a string. + +The Biden administration can’t get away with appointing radical leftists who support groups calling to abolish the police.",47,62,265,24K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768693675284890109,tweet_id:1768693675284890109,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T16:37:10.000Z,True,"Biden’s new budget is a campaign wish-list. +It is totally out-of-touch with real Americans. + +The budget will raise gas prices to astronomical levels—which is what congressional Democrats and the Biden White House want.",667,525,1.7K,52K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768677834682151357,tweet_id:1768677834682151357,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T14:14:19.000Z,True,.: Cruz introduces bill to have Bastrop post office named after war hero Billy Waugh,43,33,250,28K,[],['@Statesman'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768641885495558520,tweet_id:1768641885495558520,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T13:57:31.000Z,True,"I am proud that is supportive of my legislative push to strengthen the U.S. distribution transformer supply chain and stabilize domestic manufacturing to meet the increasing demand for electricity, especially at home in the Lone Star State. + +This is a bipartisan…",115,35,297,26K,[],['@cityofdentontx'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768637656424964270,tweet_id:1768637656424964270,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-15T00:20:30.000Z,True,"Democrats know that Adeel Mangi’s nomination to the Third Circuit is hanging on by a thread. + +Why? He served on the advisory board of the radically antisemitic Rutgers Center for Security, Race, and Rights, whose director issued a statement where she said “We are in awe of the…",179,288,1K,83K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768432046269960522,tweet_id:1768432046269960522,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-14T20:13:41.000Z,True,RELEASE: Sen. Cruz Response to Schumer’s Israel Commentshttps://cruz.senate.gov/newsroom/press-releases/sen-cruz-response-to-schumers-israel-comments…,433,1.8K,4.5K,96K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768369932771758336,tweet_id:1768369932771758336,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-14T17:50:47.000Z,True,"Joe Biden apologized for calling Laken Riley’s murderer an illegal. + +He would rather be politically correct than comfort an American family who just had their daughter killed. + +This is where the Democrats’ priorities lie.",994,738,2.7K,68K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768333972222726648,tweet_id:1768333972222726648,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-14T16:01:16.000Z,True,"It was great to sit down with Dallas City Councilwoman to discuss her commitment to fighting for the top priorities facing Texans in the , as well as our shared commitment to stand unequivocally with Israel.",75,26,287,73K,[],"['@caraathome', '@CityOfDallas']",[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768306411656691958,tweet_id:1768306411656691958,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-14T14:05:51.000Z,True,“Ted Cruz says there’s a 50-50 chance of Congress passing college sports legislation this year” | ,119,19,187,27K,[],['@AP'],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768277363521933607,tweet_id:1768277363521933607,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-14T00:31:54.000Z,True,"Democrats are not interested in “election integrity” — they are interested in power. + +They are “protecting democracy” by attempting to remove President Trump from ballots.",1.6K,1.3K,4.6K,117K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768072529267085731,tweet_id:1768072529267085731,@SenTedCruz +Senator Ted Cruz,@SenTedCruz,2024-03-13T20:41:51.000Z,True,"Joe Biden, Chuck Schumer, and every other Democrat have looked the other way when it comes to securing our border. + +The pain, suffering, and death is worth it to them in exchange for political power.",1.3K,928,3.3K,76K,[],[],[],https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_x96.jpg,https://twitter.com/SenTedCruz/status/1768014634835996844,tweet_id:1768014634835996844,@SenTedCruz +Senator Deb Fischer,@SenatorFischer,2024-03-22T13:25:22.000Z,True,"In 2023, Nebraska Agriculture ranked: +-1st in beef and veal exports +-2nd in ethanol production +-3rd in corn for grain production#HappyAgWeek to Nebraska’s leading industry!",5,3,13,1.1K,['#HappyAgWeek'],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1771166281980358921,tweet_id:1771166281980358921,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-21T21:02:01.000Z,True,"Manufacturing EVs emits 60% more carbon than gas vehicles, and studies have shown electric cars heighten overall emissions compared to hybrid cars. +The EPA’s new tailpipe emissions rule is political, not environmental.",12,5,16,1.3K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770918810201010428,tweet_id:1770918810201010428,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-21T20:07:12.000Z,True,"Precision ag innovations allow producers to be more efficient, but high costs and lack of connectivity create major barriers to entry. +My Precision Ag Package helps producers adopt this technology. +I will continue my efforts to make these solutions a part of the Farm Bill.",3,2,3,903,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770905017060352121,tweet_id:1770905017060352121,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-21T17:51:16.000Z,True,"Biden’s EV pipedreams are creating nightmares for America’s trucking industry. +The EPA’s recent regulations to electrify U.S. trucking fleets could cost taxpayers nearly $1 trillion. +It’s time for the admin to put American’s best interests before its radical climate agenda.",26,7,14,4.5K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770870807910023494,tweet_id:1770870807910023494,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-21T15:17:06.000Z,True,"1 in 4 jobs in the state of Nebraska are tied to the agricultural industry. +Proud to celebrate the industry that drives our state’s economy during #NationalAgWeek!",6,1,21,1.1K,['#NationalAgWeek'],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770832012628140072,tweet_id:1770832012628140072,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-21T13:10:52.000Z,True,"The administration should come clean about the dirty truth behind electric vehicles, including the EV record on environmental problems, safety risks, and human rights abuses. +Read my op-ed:",33,17,43,2.9K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770800243027653063,tweet_id:1770800243027653063,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-21T00:18:35.000Z,True,"Mandating electric vehicles only exacerbates their serious environmental, safety, and human rights concerns. + +The EPA should take its hands off the wheel and allow the market to work its course.",28,9,42,3.3K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770605891483496832,tweet_id:1770605891483496832,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T20:48:27.000Z,True,"This admin is spearheading a reckless push toward an electric future with a host of negative consequences. +Today's tailpipe emissions rule neglects environmental, safety, and performance issues in favor of political posturing.",8,5,17,1.4K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770553008771776896,tweet_id:1770553008771776896,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T16:22:31.000Z,True,"The Biden administration’s revised standard responds to a slowdown in sales as Americans realize not just the cost and unreliability of electric vehicles, but also the dirty truth behind this supposedly ‘clean’ technology.",15,5,20,1.5K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770486085606420688,tweet_id:1770486085606420688,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T16:22:31.000Z,True,"Continuing to force EVs on automakers and the public will only exacerbate their serious environmental, safety, and human rights concerns. Instead of delaying these standards, should abandon this attempt to appease climate activists and allow the market to take its course.",1,0,5,644,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770486086931730602,tweet_id:1770486086931730602,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T16:22:32.000Z,True,"More practical, market-driven changes—like allowing the year-round sale of E15 ethanol—would help achieve environmental goals for America’s vehicle fleet.",2,0,5,639,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770486088177455298,tweet_id:1770486088177455298,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T16:02:28.000Z,True,"Today’s tailpipe emissions rule slows the original timeline for forcing EVs on America. EPA's responding to reality: Americans don’t want them. +Ford, General Motors, Mercedes, Volkswagen — they're all scaling back on EVs. EPA must follow & hit the brakes on its climate charade.",14,2,12,1.5K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770481040009621515,tweet_id:1770481040009621515,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T13:30:48.000Z,True,"California insists it's “speculative” to assume EVs will remain heavier than gas cars. + +Public policy should reflect reality, not the baseless future dream of featherweight electric cars. +What’s speculative, obviously, is assuming with no evidence that their weight will change.",27,2,26,2.6K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770442871751004288,tweet_id:1770442871751004288,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-20T00:04:04.000Z,True,"The truth is that EVs aren’t a magic bullet for the environment. + +They’re underdeveloped and pose safety risks. + +And they create more problems than they solve, both at home and abroad.",37,15,45,4.8K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770239849083044315,tweet_id:1770239849083044315,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-19T22:06:11.000Z,True,"The way the administration and their activist friends paint EVs, you’d think these cars are a time-tested environmental blessing. + +But behind the curtain of this climate crusade, there’s a host of problems — problems the admin has tried to hide.",24,10,31,2.5K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770210182993191418,tweet_id:1770210182993191418,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-19T16:14:10.000Z,True,Wishing both and men and women’s basketball teams good luck in the NCAA March Madness Tournament!,2,7,14,2.7K,[],"['@gocreighton', '@Huskers']",[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770121594389647854,tweet_id:1770121594389647854,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-19T15:05:37.000Z,True,"Every day, support for Paid Family and Medical Leave continues to grow. +Now, Congress needs to act. +My PFML tax credit is the only policy with a track record of passage in Congress, and it will deliver meaningful relief for families and caregivers.",1,2,3,829,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770104343267537103,tweet_id:1770104343267537103,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-19T13:08:25.000Z,True,"“It had to be somebody who’d plow deep and straight and not cut corners…” – God Made A Farmer, Paul Harvey +Today we celebrate Nebraska's farmers and ranchers who always go the extra mile to feed and fuel our world. +Happy National Agriculture Day!",7,10,41,2.3K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1770074848934469918,tweet_id:1770074848934469918,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-18T15:44:14.000Z,True,"Great to meet with Nebraskans from Close Up Student Foundation during their trip to Washington with . +Nebraska’s future is bright with future civic leaders like them at the helm.",9,4,18,1.8K,[],['@CloseUp_DC'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1769751673457483828,tweet_id:1769751673457483828,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-18T14:21:56.000Z,True,Enjoyed visiting with members of to talk about their priorities for the upcoming Farm Bill.,5,5,27,2.2K,[],['@NEFarmBureau'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1769730965075575086,tweet_id:1769730965075575086,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-18T13:08:00.000Z,True,"My staff will host a Local Office Hours in Sarpy County tomorrow. +Stop by if you need help navigating an issue with a federal agency or want to speak to a member of my staff in person! +Details:https://fischer.senate.gov/public/index.cfm/state-office-hours…",2,5,9,2K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1769712356852990091,tweet_id:1769712356852990091,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-15T21:13:27.000Z,True,Congratulations on the well-deserved recognition!,11,6,27,3.5K,[],['@OmahaZoo'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768747359989534848,tweet_id:1768747359989534848,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-15T18:38:19.000Z,True,"Great to join my fellow Nebraskans at another Nebraska Breakfast this week. +Honored to be a part of continuing this longstanding tradition!",21,0,23,1.8K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768708321563877886,tweet_id:1768708321563877886,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-15T17:33:28.000Z,True,"As China ramps up its military spending, President Biden is pushing to slash ours. His FY25 budget request is essentially a budget cut once you factor in the damaging impact of inflation. +It's time for the President to take our national defense seriously.",4,1,1,703,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768692002944622811,tweet_id:1768692002944622811,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-15T15:11:18.000Z,True,"Even now, with prison gang members coming into the United States, we have had no help from this administration in securing our border and protecting American citizens.",30,9,26,2.4K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768656223186846022,tweet_id:1768656223186846022,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-15T14:04:17.000Z,True,"Our border is wide open and everyone knows it, including our enemies. +Biden’s public refusal to secure the border earlier this week only encourages more illegal immigration.",27,10,18,2.5K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768639358062506045,tweet_id:1768639358062506045,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T19:55:37.000Z,True,"This project will better protect the local community from flooding like the catastrophic floods in 2019. +It will not only reduce the risk of property damage and interruptions to normal base operations, but it will also protect over $1B in recent and future investments at Offutt.",4,0,8,1.4K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768365384791372252,tweet_id:1768365384791372252,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T19:55:37.000Z,True,I will continue pushing for projects like this that support communities across our state.,0,2,2,899,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768365386066501757,tweet_id:1768365386066501757,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T19:23:12.000Z,True,Public safety is a core duty of any government—one that President Biden has abandoned at our border.,20,5,20,1.9K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768357227889348745,tweet_id:1768357227889348745,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T18:18:47.000Z,True,"TikTok negatively influences an entire generation of young Americans, affecting how they act, think, and even vote. +We would have never allowed the Soviet Union to have that sort of direct link to the American population.",124,39,114,8.7K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768341017852276974,tweet_id:1768341017852276974,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T16:48:22.000Z,True,"Met with Nebraskan members of and discussed how we can support Nebraska's firefighters. +Thank you for the work you do to keep our communities safe!",2,2,17,1.9K,[],['@IAFFofficial'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768318262075363551,tweet_id:1768318262075363551,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T15:06:50.000Z,True,"Congrats on the well-deserved accolade , good luck in the Big Ten Tournament this week! +Go Big Red!",2,4,67,10K,[],['@CoachHoiberg'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768292712392831050,tweet_id:1768292712392831050,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-14T13:57:19.000Z,True,"President Biden claims his economic policy is working. +Families facing sky high grocery bills aren’t buying it. +Every day, Bidenomics makes Americans poorer.",2,3,4,1.1K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1768275219154682162,tweet_id:1768275219154682162,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-13T16:37:14.000Z,True,"Recently met with members of to discuss their Farm Bill priorities. +Thank you for making the trip to Washington!",4,2,7,1.2K,[],['@FoodBankLincoln'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767953072808960232,tweet_id:1767953072808960232,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-13T14:28:29.000Z,True,"My staff will host Local Office Hours in Keya Paha, Boyd, Holt, and Rock Counties tomorrow. +Stop by if you need help navigating an issue with a federal agency or want to speak to a member of my staff in person! +Details:https://fischer.senate.gov/public/index.cfm/state-office-hours…",2,0,3,795,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767920673823859173,tweet_id:1767920673823859173,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-13T12:53:13.000Z,True,"Nebraskans rely on broadband to stay connected to the world around them. + +Great to meet with @USTelecom and discuss ideas to expand rural broadband access.",4,6,8,7.3K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767896697777033505,tweet_id:1767896697777033505,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T18:27:25.000Z,True,"The President’s budget calls for a new Federal Paid Family Leave Program—while I appreciate the sentiment and gesture to working families, I’m concerned that’s all it may be. A new, nationwide, one-size-fits-all entitlement program is not the answer.",26,6,28,2.7K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767618414615355633,tweet_id:1767618414615355633,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T18:27:25.000Z,True,"Such a fruitless pursuit would leave too many families where they are today: without access to Paid Family Medical Leave. As the administration works with Congress on this issue, we must consider my PFML tax credit—the only PFML policy with a track record of passage in Congress.",6,2,5,741,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767618415676571800,tweet_id:1767618415676571800,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T17:16:02.000Z,True,.'s plan follows a pattern of ignoring serious concerns from the Department of Defense about management of our federal airwaves. These spectrum airwaves are vital to highly sensitive and unique defense systems that keep Americans safe.,2,1,4,982,[],['@NTIAgov'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767600451199902040,tweet_id:1767600451199902040,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T17:16:02.000Z,True,"You simply cannot slap a price tag on relocating them. In many cases, the costs are astronomical, or the systems cannot be re-engineered to function effectively in different bands of spectrum.",1,0,2,657,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767600452424650836,tweet_id:1767600452424650836,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T17:16:03.000Z,True,"If NTIA continues to move forward on its current course, mission-critical defense operations will be at risk and taxpayer dollars will be wasted. + +NTIA is at a pivotal moment and must consider our nation's spectrum needs more holistically.",0,0,2,680,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767600453678776642,tweet_id:1767600453678776642,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-13T14:28:29.000Z,True,"My staff will host Local Office Hours in Keya Paha, Boyd, Holt, and Rock Counties tomorrow. + +Stop by if you need help navigating an issue with a federal agency or want to speak to a member of my staff in person! + +Details:https://fischer.senate.gov/public/index.cfm/state-office-hours…",2,0,3,795,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767920673823859173,tweet_id:1767920673823859173,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T16:12:16.000Z,True,I am disappointed and deeply concerned that USPS is moving forward with plans to downgrade the North Platte Post Office. Transferring some operations to Denver risks cutting jobs and increasing delivery delays for Nebraskans.,26,6,26,3.6K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767584401662136702,tweet_id:1767584401662136702,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T16:12:16.000Z,True,"It is also especially difficult to understand how sending intra-Nebraska mail out of state would improve efficiency. The best decisions impacting our communities are made by the people who live and work there, not government bureaucrats.",1,0,2,670,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767584402836533401,tweet_id:1767584402836533401,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T16:12:16.000Z,True,"I will continue to fight against this misguided decision. + +I strongly encourage North Platte citizens to make their views and voices heard on this important topic.",2,1,4,669,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767584404094804100,tweet_id:1767584404094804100,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-12T13:39:53.000Z,True,"Local broadcasters entertain, inform, and provide their communities with crucial services. + +Great meeting with to discuss ways we can continue to support broadcasters in our state.",3,0,9,947,[],['@nebroadcasters'],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767546052712767749,tweet_id:1767546052712767749,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-11T16:01:47.000Z,True,"President Biden can't have it both ways — he says no president has been a better friend to Israel, but he's still drawing ""red lines"" to cater to the far-left wing of his party. + +Where is the red line for Hamas and Iran?",5,5,12,792,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1767219377038827944,tweet_id:1767219377038827944,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-09T01:05:42.000Z,True,"This package includes several top priorities for our state — including funding towards the construction of a new Agricultural Research Service facility at UNL, an expansion of the Heartland Expressway, and increased funding for Offutt Air Force Base and for airports across NE.",10,1,16,2.9K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1766269096105042348,tweet_id:1766269096105042348,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-09T01:05:43.000Z,True,"The investments we make today will ensure that Nebraska is well positioned to seize the opportunities ahead. As a member of the Appropriations Committee, I will continue to push for the critical, high-impact investments that will support families and business across our state.",2,0,6,1K,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1766269097698836772,tweet_id:1766269097698836772,@SenatorFischer +Senator Deb Fischer,@SenatorFischer,2024-03-09T01:05:43.000Z,True,,1,0,4,958,[],[],[],https://pbs.twimg.com/profile_images/816319022182649860/pev9bNlJ_x96.jpg,https://twitter.com/SenatorFischer/status/1766269100160913650,tweet_id:1766269100160913650,@SenatorFischer +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-28T22:11:03.000Z,False,It's been an incredible 6 yrs working on behalf of the people of North Dakota in the U.S. Senate. Proud of the chance to come to work every day to get so much done for ND. Thank you for allowing me to serve our great state—I'll keep working to keep our communities strong & safe.,200,544,2.6K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1078775361142509569,tweet_id:1078775361142509569,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-26T21:27:01.000Z,False,This should not be happening. We must change bankruptcy laws now.,75,334,702,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1078039503741374466,tweet_id:1078039503741374466,@SenatorHeitkamp +InForum,@inforum,2018-12-24T01:47:10.000Z,False,Forum Editorial: We shouldn't let Savanna's Act die,15,23,36,0,[],[],[],https://pbs.twimg.com/profile_images/1151234138067873793/cEYZk_br_x96.png,https://twitter.com/inforum/status/1077017810554028033,tweet_id:1077017810554028033,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-23T15:41:55.000Z,False,"It's unfortunate for families & workers that the federal gov't shut down again - the 3rd time in the past 2 yrs. As I've done before, I'll donate my salary from the shutdown. It's the right thing to do when so many are feeling the impacts of this poor move by the administration.",230,1.5K,4.8K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1076865491464011776,tweet_id:1076865491464011776,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-23T16:55:52.000Z,False,I'm donating my salary from the government shutdown to YouthWorks in ND. It's a critical organization doing important work to combat youth homelessness and help stop human trafficking.,80,515,1.6K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1076884102152941568,tweet_id:1076884102152941568,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-21T17:30:05.000Z,False,Just landed back in DC to vote no on the CR. The Senate already passed a bipartisan bill to fund the government. Now the House needs to pass it and the President should sign it.,108,434,2.3K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1076167938430959616,tweet_id:1076167938430959616,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-21T17:31:49.000Z,False,I have already supported $5 billion once for border security and Republicans couldn't get it across the finish line.,23,66,365,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1076168376433684480,tweet_id:1076168376433684480,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-21T17:32:36.000Z,False,"For two years, I've been asking for the administration's plan for border security at the Southern Border. Crickets. No corporate board room would give a CEO money for a project without a plan.",33,177,757,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1076168573893181440,tweet_id:1076168573893181440,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-20T23:18:29.000Z,False,Some good news: Congress passed my bill to support Native American students so they can get a good education and my bill to help combat human trafficking by making sure health professionals are trained to identify trafficking and report it. Both will soon be signed into law.,127,700,3.5K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1075893228442927111,tweet_id:1075893228442927111,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-20T23:20:10.000Z,False,"And the #FarmBill - which looks very similar to the bipartisan Senate bill I helped write, negotiate, and pass - was just signed into law. This is what working and getting results up until the very end looks like.",8,39,173,0,['#FarmBill'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1075893653372051457,tweet_id:1075893653372051457,@SenatorHeitkamp +Star Tribune Opinion,@StribOpinion,2018-12-20T02:30:16.000Z,False,"Editorial: Why is #SavannasAct, which already passed the Senate unanimously, stalled in the House? Rep. Goodlatte should stop blocking a bill that would improve investigation of missing, murdered Indian women. #MMIW #MMIWG",2,44,36,0,"['#SavannasAct', '#MMIW', '#MMIWG']",[],[],https://pbs.twimg.com/profile_images/1168975513051947008/8vny_XB4_x96.jpg,https://twitter.com/StribOpinion/status/1075579104697704449,tweet_id:1075579104697704449,@SenatorHeitkamp +Jennifer Bendery,@jbendery,2018-12-20T22:06:43.000Z,False,"GOP Rep. Bob Goodlatte has been single-handedly + mysteriously blocking a badly needed bill, #SavannasAct, that would help abused Native women. It probably won't become law because of him. +I figured out his reason for doing this. Surprise: it's lame! https://huffingtonpost.com/entry/bob-goodlatte-abused-native-american-women_us_5c1bf7dbe4b0407e9078b0b7?rx…",14,163,117,0,['#SavannasAct'],[],[],https://pbs.twimg.com/profile_images/1621193006488473601/k6bIPUIJ_x96.jpg,https://twitter.com/jbendery/status/1075875168180953093,tweet_id:1075875168180953093,@SenatorHeitkamp +Leigh Ann Caldwell,@LACaldwellDC,2018-12-20T15:13:09.000Z,False,"Today might be the last day the House votes on legislation for the year. What's not included? A bill to help native women who have an appallingly high rate of murder and disappearance. +Here's why ---> https://nbcnews.com/politics/politics-news/retiring-house-republican-holding-bill-aimed-protecting-native-american-women-n949711…cc and ",1,56,62,0,[],"['@SenatorHeitkamp', '@RepGoodlatte']",[],https://pbs.twimg.com/profile_images/1518945846150184964/mFp-F_Pz_x96.jpg,https://twitter.com/LACaldwellDC/status/1075771092621389826,tweet_id:1075771092621389826,@SenatorHeitkamp +Jennifer Bendery,@jbendery,2018-12-20T13:52:28.000Z,False,"Another day has gone by with Rep. Bob Goodlatte single-handedly blocking a badly needed bill that helps abused Native women. It passed the Senate unanimously. It would easily pass the House, if it got a vote. +I think I will report on this all day. https://huffingtonpost.com/entry/native-women-abused-bill-bob-goodlatte_us_5c17eafce4b0b1ea387f584b?cnp…",83,1.9K,2.6K,0,[],[],[],https://pbs.twimg.com/profile_images/1621193006488473601/k6bIPUIJ_x96.jpg,https://twitter.com/jbendery/status/1075750784510377985,tweet_id:1075750784510377985,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-19T21:52:39.000Z,False,Ask your member of Congress to tell to stop blocking #SavannasAct & to stand up for Native women who are murdered at 10x the nat'l avg. We must stop these horrible crimes & we are so close to passing my bill in Congress. More from :,32,370,606,0,['#SavannasAct'],"['@RepGoodlatte', '@NBCNews']",[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1075509240863838208,tweet_id:1075509240863838208,@SenatorHeitkamp +Senator Patty Murray,@PattyMurray,2018-12-19T15:03:00.000Z,True,The number of murdered and missing indigenous women in Washington state and across the nation is terrifying and unacceptable—and #SavannasAct would address this crisis with the urgency that it deserves. #MMIWG,11,188,420,0,"['#SavannasAct', '#MMIWG']",[],[],https://pbs.twimg.com/profile_images/1744782190011899904/T5PPt3_m_x96.jpg,https://twitter.com/PattyMurray/status/1075406147878699009,tweet_id:1075406147878699009,@SenatorHeitkamp +Vincent Schilling,@VinceSchilling,2018-12-19T12:46:24.000Z,False,"On Savanna's Act - tells Congress: +Get to work. 'You're getting a paycheck!'#SavannasAct increases access to crime database info for #MMIW. +It's being stalled with a few days left to vote in House session. +Article: https://goo.gl/qqiAGfby ",2,53,72,0,"['#SavannasAct', '#MMIW']","['@SenatorHeitkamp', '@VinceSchilling']",[],https://pbs.twimg.com/profile_images/1372643554716176389/EaBUS9Yc_x96.jpg,https://twitter.com/VinceSchilling/status/1075371769727516672,tweet_id:1075371769727516672,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-19T17:00:01.000Z,False,"Former ND Senator Kent Conrad has been an invaluable political mentor, confidant, & friend—and I’m honored to have him join me on this episode of #TheHotdish to talk about the importance of public service & the need for bipartisanship Listen here:",3,28,37,0,['#TheHotdish'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1075435597773205504,tweet_id:1075435597773205504,@SenatorHeitkamp +Jennifer Bendery,@jbendery,2018-12-18T13:09:16.000Z,False,Good morning. A single GOP congressman is blocking a bill to help abused Native women. It sailed through the Senate + was on track to pass the House. It's on the verge of expiring if he doesn't let it go. won't say why he's doing this. https://huffingtonpost.com/entry/native-women-abused-bill-bob-goodlatte_us_5c17eafce4b0b1ea387f584b?cnp…,68,655,458,0,[],['@RepGoodlatte'],[],https://pbs.twimg.com/profile_images/1621193006488473601/k6bIPUIJ_x96.jpg,https://twitter.com/jbendery/status/1075015137269039104,tweet_id:1075015137269039104,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-18T19:00:02.000Z,False,"In a new episode of my podcast #TheHotdish, the tables were turned & former ND Senator Kent Conrad interviewed me about my time serving the people of North Dakota, my legislative accomplishments and legacy, and the future of bipartisanship. Listen here:",1,19,41,0,['#TheHotdish'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1075103411102597122,tweet_id:1075103411102597122,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-18T00:50:36.000Z,False,Please call your member of Congress TODAY to urge them to tell to stop blocking my bill #SavannasAct to help make sure Native American women & girls who experience staggering levels of violence are #NotInvisible. Find your Representative here https://house.gov/representatives/find-your-representative…,69,1.9K,3K,0,"['#SavannasAct', '#NotInvisible']",['@RepGoodlatte'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074829247229952000,tweet_id:1074829247229952000,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-18T01:22:17.000Z,False,#SavannasAct passed earlier this month with unanimous support in the Senate. We are so close to getting it across the finish line. Now the House needs to pass it.,6,107,189,0,['#SavannasAct'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074837219507081217,tweet_id:1074837219507081217,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-18T02:00:00.000Z,False,"On an episode of my podcast, #TheHotdish, I spoke w/ experts & advocates about their work to help indigenous women overcome obstacles & hardships & my bill, #SavannasAct, which aims to help. Listen & learn more here:",1,16,30,0,"['#TheHotdish', '#SavannasAct']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074846712651345921,tweet_id:1074846712651345921,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-18T01:45:00.000Z,False,"Why we need #SavannasAct: On some reservations, Native American women are murdered at a rate 10 times the national average. It’s time to address the disproportionate rate at which Native women experience violence or go missing, so they are #NotInvisible #MMIWG",5,87,110,0,"['#SavannasAct', '#NotInvisible', '#MMIWG']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074842936498475008,tweet_id:1074842936498475008,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-18T01:30:00.000Z,False,"Why we need #SavannasAct: In 2016, there were 5,712 incidents of missing & murdered Native American women. By passing my bill, we can work to address this epidemic of violence & help law enforcement crack down on these horrible crimes.",8,139,213,0,['#SavannasAct'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074839161792880640,tweet_id:1074839161792880640,@SenatorHeitkamp +HuffPost,@HuffPost,2018-12-17T20:53:56.000Z,True,"“Unlike Congressman Goodlatte, I am serious about saving lives and making sure Native American women are invisible no longer,"" Sen. Heidi Heitkamp wrote. http://huffp.st/q4XjU08",17,196,314,0,[],[],['\\U0001f525'],https://pbs.twimg.com/profile_images/1295829554225795072/_Ph3zAnF_x96.jpg,https://twitter.com/HuffPost/status/1074769689149145088,tweet_id:1074769689149145088,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-17T20:34:01.000Z,False,"This should not be happening. +The House must pass #SavannasAct now to help stop the crisis of missing & murdered Native American women. The Senate passed my bill. Now let's get it across the finish line to help make sure these women are #NotInvisible.",34,979,1.8K,0,"['#SavannasAct', '#NotInvisible']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074764674271449094,tweet_id:1074764674271449094,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-17T15:15:58.000Z,False,"In a last episode of my podcast #TheHotdish as a US senator, I sat down w/ former ND Sen. Kent Conrad & he interviewed me abt how I’ve fought for rural America, children, working families & Indian Country over the last 6 yrs in the US Senate. Listen here:",4,11,60,0,['#TheHotdish'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074684637358755840,tweet_id:1074684637358755840,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-16T19:33:50.000Z,False,Thought the Republican tax bill was supposed to pay for itself. Guess not.,270,2.1K,4.1K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1074387141306789889,tweet_id:1074387141306789889,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-13T21:56:26.000Z,False,". is blocking my bill, #SavannasAct, from moving forward. Call his office at 202-225-5431 to urge him to support this important legislation that would help address the epidemic of missing & murdered Native American women across our country. #MMIW",153,3.3K,4.7K,0,"['#SavannasAct', '#MMIW']",['@RepGoodlatte'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1073335865261387776,tweet_id:1073335865261387776,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-14T23:41:28.000Z,False,"If my bill, #SavannasAct, doesn’t pass in the next few days, it would have to be reintroduced in the next Congress, & the process would start from square one.",1,58,107,0,['#SavannasAct'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1073724683441332224,tweet_id:1073724683441332224,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-14T23:45:01.000Z,False,"We are so close to passing #SavannasAct to help address the crisis of missing & murdered Native American women, and getting it signed into law. Let’s get it across the finish line & help make sure these women are #NotInvisible.",6,132,268,0,"['#SavannasAct', '#NotInvisible']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1073725578996461568,tweet_id:1073725578996461568,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T22:30:00.000Z,False,"Thank you for being such a good friend, before I came to the U.S. Senate & during my time here working hard on behalf of folks across rural America.",3,12,104,0,[],['@SenatorTomUdall'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072981923704713216,tweet_id:1072981923704713216,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T22:15:00.000Z,True,Thank you for the kind words. It was a privilege to work alongside strong & effective women in the U.S. Senate like my friend & colleague .,7,33,268,0,[],['@SenatorHassan'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072978148969504768,tweet_id:1072978148969504768,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T22:00:00.000Z,False,"I gave my final speech on the U.S. Senate floor to highlight how I’ve been working hard on behalf of North Dakota & rural America, the work that still needs to happen on many issues & the importance of bipartisanship. Watch here:",40,76,506,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072974374590930949,tweet_id:1072974374590930949,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T21:45:00.000Z,False,"I often shared the Native American principle called 7 generations with folks in my office, which urges decision making in a way that looks at how this generation’s decisions will affect the next 7 generations, which helps guide our work toward a much broader purpose.",17,191,624,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072970599302017024,tweet_id:1072970599302017024,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T21:30:00.000Z,False,"When you take the time to rise above partisanship & rancor, I have found so much common ground with so many of my fellow members of the U.S. Senate. I am incredibly proud of what we’ve been able to accomplish, like my first bill to stand up for Native American children.",9,75,378,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072966825099456513,tweet_id:1072966825099456513,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T21:15:00.000Z,False,"Against all odds, with a prediction of only 8%, I joined the U.S. Senate. Growing up, my family struggled to get by & it’s a great American story that somebody from my background could actually become a U.S. senator.",34,122,700,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072963049693298693,tweet_id:1072963049693298693,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T20:05:47.000Z,False,In 2000 I was diagnosed with stage 3 breast cancer. My oncologists told me I had a 28% chance of living more than 10 years. I knew right away that I had a chance to use what time God gave me for good & noble purposes. I chose to come to the U.S. Senate.,975,4.9K,31K,0,[],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072945630627160064,tweet_id:1072945630627160064,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T04:38:06.000Z,False,"Thanks @senrobportman for the thoughtful gift! I'll be saving your popcorn to eat in #NorthDakota, a state that shares #Ohio’s appreciation of corn grown with pride & care.",12,22,199,0,"['#NorthDakota', '#Ohio']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072712172399222784,tweet_id:1072712172399222784,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T03:15:36.000Z,False,"Today I helped pass the final strong, bipartisan #FarmBill in the U.S. Senate which includes many provisions I fought for to support #NorthDakota agriculture. Now, it’s critical that the US House votes to push this bill across the finish line before the close of this Congress.",91,197,906,0,"['#FarmBill', '#NorthDakota']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072691408996364288,tweet_id:1072691408996364288,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-12T03:51:36.000Z,False,"Since we passed the last #FarmBill in 2014, I’ve been working hard on #FarmBill18 to make sure it addresses the needs of North Dakota farmers & ranchers. Read more on about my meetings this year to make sure their voices are heard.",6,24,108,0,"['#FarmBill', '#FarmBill18']",['@Medium'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072700469234032641,tweet_id:1072700469234032641,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-11T00:30:00.000Z,False,Had a great conversation w/ ’s about how proud I’ve been to fight for North Dakota and rural America in the U.S. Senate. Read the full interview here:,7,18,88,0,[],"['@BisTrib', '@byamydalrymple']",[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072287346869981184,tweet_id:1072287346869981184,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-11T00:15:00.000Z,False,"Last week, the US Senate unanimously passed my bill, #SavannasAct, that I introduced last year to help address the epidemic of missing & murdered Native American women across our country. Incredibly proud of this major step fwd. Read more in the ",13,74,222,0,['#SavannasAct'],['@BisTrib'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072283572180942849,tweet_id:1072283572180942849,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-11T00:00:00.000Z,False,"Last week, I sat down with to reflect on my time representing North Dakotans in the U.S. Senate & to share my proudest achievements on behalf of folks in ND & across rural America. Listen here on :",3,13,60,0,[],"['@NPRKelly', '@NPR']",[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072279799081639937,tweet_id:1072279799081639937,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-10T23:45:00.000Z,False,"From , the U.S. #trade deficit is at its highest level in a decade—$55.5 billion as of October.",4,25,37,0,['#trade'],['@axios'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072276022676996096,tweet_id:1072276022676996096,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-10T23:30:21.000Z,False,"After months of work as a member of the #FarmBill Conference Committee, today I signed our bipartisan 2018 Farm Bill conference report. We are one step closer to a final vote—and it’s my priority to make sure it happens for North Dakota’s farmers, ranchers, & rural economy.",9,52,213,0,['#FarmBill'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072272336127229956,tweet_id:1072272336127229956,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-10T23:22:31.000Z,False,This story highlights the urgent work still to do to stop domestic violence. Congress must pass a long-term reauthorization of the Violence Against Women Act to give victims of abuse resources they need to seek justice & recover from trauma,3,61,142,0,[],['@washingtonpost'],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072270366117163008,tweet_id:1072270366117163008,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-10T21:38:43.000Z,False,"Tomorrow at 12pm ET/11am CT, watch live on Facebook as I deliver my final speech on the U.S. Senate floor to share how proud I am to have gotten so much done for #NorthDakota over the last 6 yrs & how I’ll keep working to keep ND communities strong & safe. https://facebook.com/SenatorHeidiHeitkamp/videos/552771365197050…",188,465,2.5K,0,['#NorthDakota'],[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1072244243719168007,tweet_id:1072244243719168007,@SenatorHeitkamp +Archive: Sen. Heidi Heitkamp,@SenatorHeitkamp,2018-12-07T22:30:36.000Z,False,"BIG NEWS: The US Senate unanimously passed my bill, #SavannasAct, that I introduced last year to help address the epidemic of missing & murdered Native American women across our country. Incredibly proud of this major step fwd. #MMIW #MMIWG",67,459,1.9K,0,"['#SavannasAct', '#MMIW', '#MMIWG']",[],[],https://pbs.twimg.com/profile_images/1083363979706159105/fcVhZVUq_x96.jpg,https://twitter.com/SenatorHeitkamp/status/1071170135141048320,tweet_id:1071170135141048320,@SenatorHeitkamp +Tammy Duckworth,@SenDuckworth,2024-03-22T14:59:52.000Z,True,"Again and again, hardworking Americans ask us to address our student debt crisis. +President Biden is once again delivering—this time providing relief to 78,000 public service workers. +Republicans can keep trying to block these efforts, but Democrats won't back down.",14,13,57,4.6K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1771190063029785018,tweet_id:1771190063029785018,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-21T20:01:25.000Z,True,Spring blew in quite the crowd at Constituent Coffee today! Thank you to everyone who joined us. ,5,11,121,6.7K,[],[],"['\\U0001f338', '\\u2615\\ufe0f']",https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770903562672919034,tweet_id:1770903562672919034,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-21T15:18:17.000Z,True,"Not a single one of these ""IVF-loving"" Republicans have come forward to cosponsor my bill to protect IVF nationwide.",370,2.2K,7.1K,83K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770832310423744832,tweet_id:1770832310423744832,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-22T14:59:52.000Z,True,"Again and again, hardworking Americans ask us to address our student debt crisis. +President Biden is once again delivering—this time providing relief to 78,000 public service workers. +Republicans can keep trying to block these efforts, but Democrats won't back down.",14,13,57,4.6K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1771190063029785018,tweet_id:1771190063029785018,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-21T14:06:08.000Z,True,"It's been 59 years since MLK Jr., John Lewis and countless other heroes marched from Selma to Montgomery to secure the right to vote for all Americans. +We cannot allow Republicans to undo all that they worked, advocated and bled for. +We must pass the Freedom to Vote Act.",55,196,706,12K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770814151218069700,tweet_id:1770814151218069700,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-21T01:50:39.000Z,True,"Let me set the record straight: my bill DOES NOT allow wild-eyed hypotheticals like the creation of ""designer"" babies and ""human-animal chimeras."" + +It would simply protect IVF for those who rely on it. + +I can't believe I have to say this.",95,723,2.9K,34K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770629060135129477,tweet_id:1770629060135129477,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-21T00:23:13.000Z,True,"It's been 21 years since the start of the Iraq War—a war that changed countless lives, my own included. +Last year, the Senate passed a bipartisan bill to repeal the decades-old 1991 and 2002 AUMFs and formally end the Iraq War. +Now, it's time for the House to do the same.",26,90,355,24K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770607056505958636,tweet_id:1770607056505958636,@SenDuckworth +Senate Judiciary Committee,@JudiciaryDems,2024-03-20T18:31:07.000Z,True,"When Roe v. Wade was overruled, the Supreme Court’s right-wing majority revoked a constitutional right for the first time. +It’s unleashed chaos across America, and Republicans are pushing for a national abortion ban. +We must protect reproductive freedom.",3.3K,1.5K,3.6K,141K,[],[],[],https://pbs.twimg.com/profile_images/1416081066889261061/Iyl5hJQ__x96.jpg,https://twitter.com/JudiciaryDems/status/1770518449732681827,tweet_id:1770518449732681827,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-20T17:16:49.000Z,True,"Next time a Republican says they ""support IVF,"" ask them if they also believe in embryonic personhood. +Newsflash: You cannot do both.",21,62,267,8.5K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770499751168946588,tweet_id:1770499751168946588,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-20T15:39:19.000Z,True,"NEWS: After I pushed for this, I'm grateful unveiled this wide-ranging report on our infant formula industry so we can better understand the best path forward to strengthen supply chains, support families and prevent formula shortages from ever happening again.",1,33,137,11K,[],['@FTC'],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770475214335270959,tweet_id:1770475214335270959,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-19T21:39:56.000Z,True,"For too long, women have been historically and categorically left out of medical research. +After working for years to expand women’s health research, I’m grateful President Biden signed an executive order to do just that while helping improve lives.",22,153,540,21K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770203576486203780,tweet_id:1770203576486203780,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-19T19:10:00.000Z,True,"It’s Election Day, Illinois! Make your voice heard today. There's too much at stake to sit this out. +It’s not too late to find your polling place and vote. +Visit http://elections.il.gov to learn how.",14,55,141,15K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1770165847895556434,tweet_id:1770165847895556434,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-18T18:33:32.000Z,True,"Alabama was only the beginning. +With Republicans continuing to push so-called ""embryonic personhood"" bills around the country, we must pass my legislation to ensure access to IVF is protected nationwide.",116,438,1.1K,25K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1769794280283844773,tweet_id:1769794280283844773,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-17T14:00:00.000Z,True,"Wishing everyone who celebrates a happy, festive and lucky St. Patrick’s Day! ",29,17,271,14K,[],[],['\\U0001f340'],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1769363057040585188,tweet_id:1769363057040585188,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-16T19:00:01.000Z,True,"Reminder: Illinois’s Primary Election is Tuesday! Voting is your right—make sure your voice is heard. +If you haven’t yet, there’s still time to: Vote early Vote by mail or Find your polling place to vote in-person +Visit http://elections.il.gov today.",43,151,271,11K,[],[],"['\\u2611\\ufe0f', '\\u2611\\ufe0f', '\\u2611\\ufe0f']",https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1769076169930891625,tweet_id:1769076169930891625,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-16T16:57:11.000Z,True,"For the safety of the flying public, I'm relieved that Boeing committed to fixing the known safety defect on its 737 MAX 10 before trying to certify and put yet another flawed aircraft into commercial service. +When it comes to passenger safety, this fix cannot come soon enough.",37,47,197,20K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1769045258631815482,tweet_id:1769045258631815482,@SenDuckworth +Kris Van Cleave,@krisvancleave,2024-03-15T21:01:44.000Z,False,Boeing tells they expect to have a fix ready for the Max Engine anti-icing issue within a year in response to her questions about the Max7 and Max10. Responses first obtained by . Our latest ,5,14,31,27K,[],"['@SenDuckworth', '@cbsnews']",['\\U0001f447'],https://pbs.twimg.com/profile_images/1447422889246986240/pNt1LTYA_x96.jpg,https://twitter.com/krisvancleave/status/1768744414443430021,tweet_id:1768744414443430021,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-16T14:00:02.000Z,True,"Three years ago, eight people—including six Asian American women—were senselessly killed in the Atlanta spa shootings. + +Every American deserves to feel safe and live their lives free of fear of gun violence, and no one deserves to be targeting just because of their race.",249,220,895,23K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1769000678037631070,tweet_id:1769000678037631070,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T21:07:10.000Z,True,"As a member of the Senate Foreign Relations and Armed Services Committees, I’m proud I had the recent opportunity to visit the Netherlands and Sweden last month. ",12,20,70,8.3K,[],[],"['\\U0001f1f3\\U0001f1f1', '\\U0001f1f8\\U0001f1ea']",https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768745781396160858,tweet_id:1768745781396160858,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T21:07:13.000Z,True,"Illinois is a world energy leader. In every meeting, I highlighted to our partners why Illinois is the perfect place for international businesses looking to expand in the United States—which would bring more jobs and economic growth to our state.",2,3,20,5K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768745792381067645,tweet_id:1768745792381067645,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T21:07:13.000Z,True,"If we want to cut our global emissions, it is critical that we find partners with shared energy goals to learn from each other and lead by example. +And this trip made progress toward doing just that.",0,3,18,5K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768745793865892322,tweet_id:1768745793865892322,@SenDuckworth +Kris Van Cleave,@krisvancleave,2024-03-15T21:01:44.000Z,False,Boeing tells they expect to have a fix ready for the Max Engine anti-icing issue within a year in response to her questions about the Max7 and Max10. Responses first obtained by . Our latest ,5,14,31,27K,[],"['@SenDuckworth', '@cbsnews']",['\\U0001f447'],https://pbs.twimg.com/profile_images/1447422889246986240/pNt1LTYA_x96.jpg,https://twitter.com/krisvancleave/status/1768744414443430021,tweet_id:1768744414443430021,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T21:07:12.000Z,True,"The Netherlands and Sweden also have a lot to teach the world about recycling, waste management and energy production. It was a pleasure to get a first-hand look at the innovative solutions being developed there that help tackle the climate crisis.",1,0,9,80,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768745788304166989,tweet_id:1768745788304166989,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T18:30:05.000Z,True,"With growing air travel demands, President Biden's budget would help hire and train at least 2,000 air traffic controllers to help us build a safer, more efficient aviation system for all frequent flyers. ",95,82,285,17K,[],[],['\\u2708\\ufe0f'],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768706251309842538,tweet_id:1768706251309842538,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T14:43:16.000Z,True,"REMINDER: The last president tried to slash Social Security and Medicare every single year he was in office. +President Biden's budget would protect and strengthen these lifelines that working families depend on.",1K,648,1.9K,44K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768649168547897454,tweet_id:1768649168547897454,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T01:15:06.000Z,True,"If someone needs IVF to start or grow the family of their dreams, they should be able to access IVF without fear of being criminalized.",90,316,1.8K,39K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768445786742792484,tweet_id:1768445786742792484,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-15T00:31:37.000Z,True,"I’ve long pushed to take stronger actions on EtO and I’m proud this new rule will help us: Reduce these toxic, cancer-causing emissions Advance environmental justice Improve health outcomes +Every American deserves to breathe safe air.",4,18,49,12K,[],['@EPA'],"['\\U0001f637', '\\U0001f333', '\\u2764\\ufe0f\\u200d\\U0001fa79']",https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768434843405209703,tweet_id:1768434843405209703,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-14T21:52:40.000Z,True,"Wadee Alfayoumi—the 6-year-old who was murdered in a chilling act of hate against thePalestinian and Muslim communities in Illinois—should still be alive today. + +I'm proud to help introduce a resolution today honoring his life and send the message: + +Hate has no place here.",27,101,363,19K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768394842973901013,tweet_id:1768394842973901013,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-14T20:10:36.000Z,True," VETS: As of this month, all Veterans that were exposed to toxic substances during their service are now able to get the healthcare they need from the VA without applying for VA benefits first. +Visit http://VA.gov/PACT to get enrolled today!",16,312,653,23K,[],[],['\\U0001f6a8'],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768369155915599996,tweet_id:1768369155915599996,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-14T16:54:08.000Z,True,"It’s past time all of America's transit stations live up to the promises enshrined in the ADA—and that’s exactly what my ASAP Act in the Bipartisan Infrastructure Law is helping us do. +If we passed President Biden’s budget, we’d invest millions to help finish the job.",13,75,247,9.8K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768319713405178094,tweet_id:1768319713405178094,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-14T02:05:22.000Z,True,"NEWS: Democrats are reconnecting communities that have been historically displaced by transportation projects. Creating new transit routes Improving pedestrian-friendly infrastructure Advancing environmental justice Driving economic growth +No community left behind.",29,110,327,27K,[],[],"['\\U0001f68a', '\\U0001f6b8', '\\U0001f333', '\\U0001f4b0']",https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768096050101862407,tweet_id:1768096050101862407,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-14T00:01:36.000Z,True,"House Republicans, don't turn your backs on Ukraine. +If you are pro-democracy and anti-authoritarianism, then it's time to pass the Senate's bipartisan bill to deliver Ukraine aid. Now. ",804,783,1.9K,50K,[],[],['\\U0001f1fa\\U0001f1e6'],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1768064900998332881,tweet_id:1768064900998332881,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-13T18:31:52.000Z,True,"Budgets are statements of values, and President Biden’s values are clear: he wants to keep building on our progress to grow our economy, lower costs and invest in working families.",93,99,315,16K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767981923614240988,tweet_id:1767981923614240988,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-13T16:49:52.000Z,True,"Republicans might say they support IVF. +They might say they support those who serve. +But last night, Senate Republicans blocked and my bill to expand access to IVF for our servicemembers and Veterans. +Republicans' actions speak for themselves.",97,676,1.6K,25K,[],['@PattyMurray'],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767956251869085784,tweet_id:1767956251869085784,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-13T14:18:15.000Z,True,"Four years ago, Breonna Taylor was fatally shot in her own home by those sworn to protect her. +We must #SayHerName, uproot systemic racism and pass commonsense reforms to help end these racially charged tragedies.",423,172,546,22K,['#SayHerName'],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767918098030481766,tweet_id:1767918098030481766,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-13T01:22:17.000Z,True,"After pushing to expand IVF coverage, I commend VA and President Biden for taking action to do right by our Veterans seeking to start or grow their families. + +It’s easy to claim to support IVF, but as this announcement reminds us: + +Action is what matters to hopeful parents.",23,196,852,40K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767722819972981112,tweet_id:1767722819972981112,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-13T00:28:24.000Z,True,"Happy 112th Birthday, ! +Always proud to be a Girl Scout and thankful for the skills, relationships and experiences the organization taught me and countless other girls.",20,33,280,9.6K,[],['@girlscouts'],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767709260866003149,tweet_id:1767709260866003149,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-12T19:49:49.000Z,True,"34 years ago, thousands raised their voices while dozens got out of their wheelchairs to crawl up the Capitol's 83 steps to demand from Congress: +Pass the Americans with Disabilities Act. +A few months later, Congress did. +I'm forever grateful for the historic Capitol Crawl.",92,2.2K,8.5K,141K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767639152177156132,tweet_id:1767639152177156132,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-12T16:59:58.000Z,True,"Over the course of their lifetimes, women make hundreds of thousands of dollars less due to pay disparities. + +Women of color will make even less. + +The gender wage gap holds women back. +It holds our economy back. + +On Equal Pay Day, it's time to ensure equal pay for equal work.",431,335,1.2K,71K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767596405512696165,tweet_id:1767596405512696165,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-11T20:46:13.000Z,True,"The American Rescue Plan is doing what Democrats' wrote it to do—it helped rescue our economy, kickstarting one of the fastest post-pandemic recoveries in the world while supporting working families and small businesses at the same time. + +Not a single Republican voted for it.",293,297,925,25K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767290956447965198,tweet_id:1767290956447965198,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-11T01:48:17.000Z,True,"As we continue to see an alarming rise of violence against the Muslim community, it's up to each of us to reject hate in all its forms and lead with compassion toward all. Wishing a peaceful start of Ramadan to all those who celebrate across the nation. + +Ramadan Kareem!",224,158,635,23K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1767004585690886505,tweet_id:1767004585690886505,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-09T01:29:30.000Z,True,"Legislators keeping the lights on is the least Americans deserve. + +This deal includes so many critical priorities I pushed for including: + Fully funding WICNearly $13 billion for aviation safetyIncreased public safety for the DNC in Chicago",8,47,180,17K,[],[],"['\\U0001f34f', '\\u2708\\ufe0f', '\\U0001f3e2']",https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1766275084929356118,tweet_id:1766275084929356118,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-09T00:38:34.000Z,True,"When women are empowered with better opportunities, not only does it open up a world of possibilities for them—but it also makes the whole world better, too.",28,66,381,14K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1766262267731964252,tweet_id:1766262267731964252,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T16:22:33.000Z,True,"It was an honor to host Dr. Amanda Adeleye—a healthcare provider for countless hopeful parents in Illinois who rely on IVF—as my State of the Union guest. + +This International Women's Day, Dr. Adeleye and I agree: it's as important as ever that we protect IVF for all.",3,26,135,6.4K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1766137440845078891,tweet_id:1766137440845078891,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T15:30:30.000Z,True,"Talk is cheap. + +If truly wants to protect IVF, she'll help me pass my Access to Family Building Act—which simply provides patients with a federal right to receive IVF, and doctors a federal right to provide IVF if they want to nationwide.",68,794,3.2K,33K,[],['@SenKatieBritt'],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1766124340532162644,tweet_id:1766124340532162644,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T04:48:50.000Z,True,"Tonight, President Biden underscored the historic progress Democrats have made for working families with one of the fastest and strongest post-pandemic economic recoveries in the world.",22,40,285,10K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765962859089957172,tweet_id:1765962859089957172,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T04:48:51.000Z,True,"As he reminded the nation of Republican’s hypocrisy on everything from border security to reproductive rights, President Biden also reminded us that the American people can achieve anything when we are united toward common goals rather than divided by fear and anger.",5,8,103,6.7K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765962864051753140,tweet_id:1765962864051753140,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T04:48:52.000Z,True,"While we’ve made great progress, I look forward to continuing our work to help make the President’s vision for the future of our nation a reality: + +A future that improves lives, guarantees the right to IVF nationwide, restores Roe v. Wade and keeps our communities safe.",4,7,101,6.4K,[],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765962866719342698,tweet_id:1765962866719342698,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T04:35:45.000Z,True,"So let me get this straight— believes life begins at conception, which means she thinks embryos are children... + +Which means she thinks IVF involves murder... + +But she just said she supports protecting IVF… + +Make it make sense. + +Today's GOP, ladies and gentlemen.",243,1.8K,10K,110K,[],['@SenKatieBritt'],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765959568150950110,tweet_id:1765959568150950110,@SenDuckworth +Tammy Duckworth,@SenDuckworth,2024-03-08T03:37:55.000Z,True,"C'mon Republicans, it's past time you value innocent lives more than your checks from the gun lobby. #SOTU",778,234,1.1K,113K,['#SOTU'],[],[],https://pbs.twimg.com/profile_images/1420436702007644163/Ioaqdwi0_x96.jpg,https://twitter.com/SenDuckworth/status/1765945013676933609,tweet_id:1765945013676933609,@SenDuckworth +Elizabeth Warren,@SenWarren,2024-03-22T13:43:18.000Z,True,"President Biden has taken another important step forward in the fight against the climate crisis. +The ’s new rule will slash our carbon emissions, make our air cleaner, and save Americans thousands of dollars.",33,34,142,26K,[],['@EPA'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1771170795173109946,tweet_id:1771170795173109946,@SenWarren +President Biden,@POTUS,2024-03-21T18:48:41.000Z,True,"My Administration is cancelling student loans for an additional 78,000 public service workers – teachers, nurses, and more – via Public Service Loan Forgiveness. +870,000 public service workers have now had their debt cancelled. And we won't back down from delivering more relief.",5.7K,3.1K,11K,1.4M,[],[],[],https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_x96.jpg,https://twitter.com/POTUS/status/1770885255722918178,tweet_id:1770885255722918178,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-21T22:37:16.000Z,True,"Today, we lost a bright light. Sarah-Ann Shaw was a historic trailblazer and civil rights leader. + +Sarah-Ann used the power of journalism to make every voice heard, and her impact will be felt for generations. + +My thoughts are with her family & loved ones.",39,113,497,87K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770942782275805368,tweet_id:1770942782275805368,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-21T18:04:31.000Z,True,I strongly support ' nomination of Brian Murphy to serve as a judge on the US District Court in Massachusetts! Murphy started as a public defender in Worcester & has dedicated his career to upholding fundamental rights. He'll bring valuable perspective to the federal bench.,62,72,355,72K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770874142859923508,tweet_id:1770874142859923508,@SenWarren +President Biden,@POTUS,2024-03-21T18:48:41.000Z,True,"My Administration is cancelling student loans for an additional 78,000 public service workers – teachers, nurses, and more – via Public Service Loan Forgiveness. +870,000 public service workers have now had their debt cancelled. And we won't back down from delivering more relief.",5.7K,3.1K,11K,1.4M,[],[],[],https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_x96.jpg,https://twitter.com/POTUS/status/1770885255722918178,tweet_id:1770885255722918178,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-21T15:46:42.000Z,True,"It's time to break up 's monopoly. +From limiting digital wallets to raising iPhone prices, Apple has used its power to stop innovation, crush competition & harm consumers. +This a new era of antitrust enforcement. Kanter is holding Big Tech accountable.",884,346,1.2K,256K,[],"['@Apple', '@TheJusticeDept']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770839461665943828,tweet_id:1770839461665943828,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-21T14:26:57.000Z,True,"LFG! 78,000 more public service workers are getting student debt relief. +Before President Biden, this program was broken—only 7,000 borrowers got relief. +Now has cancelled student debt for over 870,000 public servants like nurses & teachers, including 19,000 folks in MA.",67,75,355,56K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770819388695785926,tweet_id:1770819388695785926,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-21T00:51:30.000Z,True,"Republicans in Congress just announced they're endorsing an extremist budget plan that would ban abortion and rip away access to IVF nationwide. +They claim they want to protect IVF, but are doing the exact opposite. + +Their agenda is extreme and dangerous.",178,1K,2.3K,179K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770614175829512540,tweet_id:1770614175829512540,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-20T19:25:59.000Z,True,"Tens of thousands of seniors who rely on Social Security aren't getting their full checks after defaulting on their student loans. It pushes many into poverty—and it's wrong. +I'm leading over 30 lawmakers calling for an end to this devastating practice.",67,71,219,35K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770532254994804863,tweet_id:1770532254994804863,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-20T13:54:00.000Z,True,"President Biden wants to tax billionaires and invest in affordable child care. +That means most families will pay less than $10 a day for child care — and they won’t keep paying higher tax rates than Jeff Bezos.",986,1.3K,4K,210K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770448708800311803,tweet_id:1770448708800311803,@SenWarren +Deputy Secretary Wally Adeyemo,@TreasuryDepSec,2024-03-19T21:29:33.000Z,False,"The new, free Direct File tool has reached a big milestone one week in—more than 50,000 taxpayers have started or filed their tax return. See if you are eligible at http://DirectFile.IRS.Gov",23,84,227,80K,[],[],[],https://pbs.twimg.com/profile_images/1408043982236622850/fJ8-yjNv_x96.jpg,https://twitter.com/TreasuryDepSec/status/1770200966672810284,tweet_id:1770200966672810284,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-19T21:27:17.000Z,True,Double woo-hoo! I joined and federal and local leaders to celebrate 142 new apartment units that will house seniors and people with disabilities in Brighton. I'll keep working hard to bring home more federal funding to grow our housing supply.,76,107,581,60K,[],['@Lifeat2Life'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770200395559629240,tweet_id:1770200395559629240,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-19T19:16:00.000Z,True,"Democrats & have pushed to lower drug prices for years & challenged drug companies after I warned about Big Pharma's sham patent claims. +Now and are reducing inhaler costs to $35/month. & should step up!",21,54,207,39K,[],"['@POTUS', '@FTC', '@Boehringer', '@AstraZeneca', '@GSK', '@TevaUSA']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770167356494413911,tweet_id:1770167356494413911,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-19T17:14:00.000Z,True,". Chair Powell's interest rate hikes are holding back clean energy projects across our country that will create new clean jobs and cut electricity costs. +It's time for the Fed to cut interest rates.",187,131,381,54K,[],['@federalreserve'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770136655866872070,tweet_id:1770136655866872070,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-19T15:55:18.000Z,True,"Today I'm re-introducing my Ultra-Millionaires Tax so that when someone makes it really big—earning over $50 million—they have to chip in 2 cents on the next dollar. +That means Jeff Bezos can’t keep paying lower tax rates than public school teachers.",81,126,526,48K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1770116847314055271,tweet_id:1770116847314055271,@SenWarren +The Boston Globe,@BostonGlobe,2024-03-19T04:14:47.000Z,False,Elizabeth Warren said she will call on the chief executive of loan servicer MOHELA to testify before the Senate subcommittee on economic policy in response to servicing failures that have made debt relief inaccessible for some eligible borrowers.,12,42,175,43K,[],[],[],https://pbs.twimg.com/profile_images/1628433409159663619/zyA36zyr_x96.jpg,https://twitter.com/BostonGlobe/status/1769940556430360951,tweet_id:1769940556430360951,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-18T21:15:50.000Z,True,"I’m calling on the CEO of , one of the nation’s largest student loan servicers, to testify at my subcommittee hearing. +Millions of borrowers have faced obstacles to repayment. Public servants haven’t gotten relief they’re owed. + +Americans deserve answers.",432,442,1.5K,195K,[],"['@MOHELA', '@SenateBanking']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1769835123615101386,tweet_id:1769835123615101386,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-17T15:35:12.000Z,True,President Biden has canceled student loan debt for nearly 4 million Americans. It’s been life-changing.,6.1K,952,2.3K,464K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1769387014367936582,tweet_id:1769387014367936582,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-16T14:07:03.000Z,True,"A lot of people think the Supreme Court is to blame for overturning Roe. And they’re right. +But who packed the court with anti-abortion extremists? The man who brags about getting Roe overturned: Donald Trump.",7.3K,1.9K,5.7K,729K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1769002441524101203,tweet_id:1769002441524101203,@SenWarren +graham steele,@steelewheelz,2024-03-15T13:49:39.000Z,False,"One year after the SVB crisis, I write in about how Wall Street is blocking sensible safeguards to make our banking system more stable & fair. +Working people & small businesses must be able to trust their money will be there when they need it.",26,46,109,46K,[],['@monthly'],[],https://pbs.twimg.com/profile_images/1134529652704157696/1ZMV9NUz_x96.png,https://twitter.com/steelewheelz/status/1768635677120552984,tweet_id:1768635677120552984,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-15T17:51:31.000Z,True,"Thanks to Democrats passing the PACT Act, if you or a veteran you know was exposed to toxins & other hazards during service, you may be eligible for VA health care! This is one of the largest-ever expansions of veteran care. +Apply to get care: http://VA.gov/PACT",164,162,475,97K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768696544558043385,tweet_id:1768696544558043385,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-15T15:38:33.000Z,True,"Are you tired of surprise costs and junk fees on your TV bills? + +Well, and the are cracking down. This is a big win for families and for competition.",1.6K,625,2K,187K,[],"['@POTUS', '@FCC']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768663082945929465,tweet_id:1768663082945929465,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-15T13:22:11.000Z,True,"The new Sentinel nuclear missile program is 2 years behind schedule and already costs billions more than expected. + +The Pentagon misled Congress and owes the American people an explanation. + and I are pressing for answers.",349,156,445,57K,[],['@RepGaramendi'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768628765645492271,tweet_id:1768628765645492271,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-14T21:52:08.000Z,True,"Roe wasn’t overturned by some accident. We’re here because Republican extremists have been waging a decades-long war to take down Roe. +But one thing they got wrong? Our motivation to fight back and restore Roe.",2.1K,933,3.6K,165K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768394709863448927,tweet_id:1768394709863448927,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-14T18:24:00.000Z,True,"After a years-long delay in investigating 4 senior Fed officials’ suspicious trades, the Fed’s internal watchdog let them all off the hook despite violations of the Fed's own policies. +I have a bipartisan bill to end the culture of corruption at the Fed.",561,341,1.2K,66K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768342330405167388,tweet_id:1768342330405167388,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-14T16:22:14.000Z,True,"Netanyahu's right-wing government is blocking humanitarian aid into Gaza. Palestinians are starving and need immediate relief. It's horrific and violates U.S. law. With these illegal restrictions, the U.S. cannot continue providing bombs to Israel.",120,149,409,36K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768311686627279174,tweet_id:1768311686627279174,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-14T13:25:07.000Z,True,It’s time to crack down on shrinkflation and corporate price gouging.,3.4K,1K,2.7K,161K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768267113699967349,tweet_id:1768267113699967349,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-13T20:51:37.000Z,True,"The IRS is cracking down on CEOs who dodge taxes while using corporate jets for private trips - that’s great, and I’m asking Treasury & IRS to also close a loophole that helps these high flying tax dodgers.",714,732,2.7K,93K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1768017092513509552,tweet_id:1768017092513509552,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-13T19:22:54.000Z,True,"Criminal records for minor marijuana offenses make it harder for people to get housing, jobs, and more.'s cannabis pardons are powerfully important to right systemic wrongs and advance racial justice. +Weed is legal is Massachusetts, and it should be nationwide.",307,299,1.1K,123K,[],['@MassGovernor'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767994765247681017,tweet_id:1767994765247681017,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-13T17:23:23.000Z,True,The majority of Americans agree: It's time to rein in corporate price gouging and shrinkflation and hold giant corporations accountable for raising costs to pad their bottom line.,1.5K,548,1.7K,170K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767964687788867841,tweet_id:1767964687788867841,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-13T14:36:57.000Z,True,"$335 million in federal funds is transformative for Allston. The Mass Pike has divided this community for too long. +It's a big win for more green space, good public transit, and new bike lanes. +Kudos to strong partnership w , , & .",147,76,321,128K,[],"['@MassGovernor', '@MayorWu', '@SenMarkey', '@RepPressley']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767922804651950299,tweet_id:1767922804651950299,@SenWarren +President Biden,@POTUS,2024-03-12T22:20:01.000Z,True,"http://DirectFile.IRS.gov is now live thanks to my Inflation Reduction Act. + +This new tool will provide millions of Americans with an option to file their taxes for free. + +Head over to the site today to see if you are eligible.",1.2K,3.2K,9K,980K,[],[],[],https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_x96.jpg,https://twitter.com/POTUS/status/1767676951924232467,tweet_id:1767676951924232467,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-12T18:39:19.000Z,True,"Rural Native communities have been hit especially hard by the housing crisis, facing hurdles to finding housing & making much-needed repairs. +Today, I introduced a bill to guarantee rural tribal communities access to federal housing funds they deserve.",270,125,473,73K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767621410518638653,tweet_id:1767621410518638653,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-12T15:51:14.000Z,True,"I stand in solidarity with workers striking for higher pay at . +Museum management should negotiate with union workers in good faith for a fair deal.",80,90,338,105K,[],"['@UAW', '@MASS_MoCA']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767579111428329963,tweet_id:1767579111428329963,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-12T13:21:45.000Z,True,"BIG NEWS: the IRS Direct File pilot has launched! +Many Americans in 12 states, including MA, have a truly free & easy option to file taxes online directly with the IRS. I fought for this program to save you time & money. + +Check your eligibility & file at http://directfile.IRS.gov",310,415,1.1K,69K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767541492636164547,tweet_id:1767541492636164547,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-12T00:03:36.000Z,True,"Wishing a blessed Ramadan to families in Massachusetts and around the world. +In the midst of profound pain in Muslim communities, I hope this holy month can be a chance for solace, renewal, and peace. Ramadan Kareem!",209,65,451,99K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767340631209206251,tweet_id:1767340631209206251,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-11T22:54:55.000Z,True,"This reversal is a win for consumers. +I warned that this giant hotel merger would lead to higher prices and fewer choices. I’m glad the deal was scrapped after scrutiny.",35,81,379,147K,[],['@FTC'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767323345903640622,tweet_id:1767323345903640622,@SenWarren +Bharat Ramamurti,@BharatRamamurti,2024-03-11T15:57:46.000Z,False,"NEW report from me and on the massive potential benefits of the new IRS Direct File free tax-filing program. +At scale, taxpayers could gain $23 billion annually from the program -- a return of more than 100-to-1 on the program cost. 1/",15,136,285,113K,[],['@ZuckerGabriel'],[],https://pbs.twimg.com/profile_images/1707927775477157888/X0lGRGSu_x96.jpg,https://twitter.com/BharatRamamurti/status/1767218366219952290,tweet_id:1767218366219952290,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-11T18:44:32.000Z,True,"After Silicon Valley Bank crashed a year ago, banking regulators told me they'd put tougher rules on big banks. +Now, I'm asking & to deliver on their commitments to protect our financial system & economy.",98,90,307,49K,[],"['@federalreserve', '@FDICgov', '@USOCC']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767260336426549323,tweet_id:1767260336426549323,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-11T16:03:28.000Z,True,"How brazen do you have to be to make over $1 million in a single year, and then not file taxes? +Rich tax cheats thought they could get away with it. No more. Thanks to IRS funding Democrats secured, the ultra-rich is being held accountable.https://cnbc.com/2024/02/29/irs-targets-wealthy-non-filers-with-new-wave-of-compliance-letters.html…",5.8K,3.2K,10K,382K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767219802140037297,tweet_id:1767219802140037297,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-11T13:25:32.000Z,True,"This law includes a big win for Mass: $350 million in federal funding to help replace the Cape Cod bridges. +I worked with to prioritize this project, the to add it into Biden’s budget, and + to secure its inclusion in this bill.",212,139,525,94K,[],"['@MassGovernor', '@WhiteHouse', '@SenMarkey', '@USRepKeating']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1767180054423875617,tweet_id:1767180054423875617,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-10T21:02:56.000Z,True,"The chaos in Haiti is gut-wrenching. The Haitian people deserve free and fair elections, and safety from violence. I’m monitoring this crisis that is deeply personal for the Haitian community in Massachusetts. Parole has been a lifeline, and we must ensure protections for asylum.",776,246,884,170K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766932774064116120,tweet_id:1766932774064116120,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-10T16:05:26.000Z,True,"Birth control is health care & by law, health insurers must cover contraception without copays or burdensome requirements. + +But not all of them do. + +That’s why , , , & I led 150+ colleagues to urge insurance companies to follow the law.",232,437,1.6K,100K,[],"['@DemWomenCaucus', '@SenCortezMasto', '@SenTinaSmith']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766857907960676484,tweet_id:1766857907960676484,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-09T23:36:30.000Z,True,"University of Phoenix has a long track record of scamming borrowers. And when students can't graduate or get jobs, their inability to pay those loans can destroy lives. + +We must do more to ensure federal dollars don't go to for-profit schools like that rip students off.",268,561,2.1K,215K,[],['@UOPX'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766609035703222758,tweet_id:1766609035703222758,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-09T19:30:41.000Z,True,"Under the Trump tax giveaway, 55 companies raked in $667 billion but paid under 5% in federal income tax. + +While Republicans want tax giveaways for the ultra-rich, Democrats will keep fighting to make sure giant corporations pay their fair share.",495,859,1.8K,178K,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766547173775220799,tweet_id:1766547173775220799,@SenWarren +President Biden,@POTUS,2024-03-08T21:30:36.000Z,True,"Special interests are suing – the folks responsible for protecting consumers – for their new rule that will lower credit card late fees from $32 to $8. + +Credit card giants have overcharged Americans for too long. + +It's time they get reined in.",1.2K,2.1K,7.4K,963K,[],['@CFPB'],[],https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_x96.jpg,https://twitter.com/POTUS/status/1766214963352252678,tweet_id:1766214963352252678,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-08T21:53:49.000Z,True,"The IRS Direct File pilot won’t try to trick you into paying junk fees or signing away your privacy like giant tax prep company does. + +See if you’re eligible to file your taxes for free directly with the IRS at: http://directfile.irs.gov",43,81,229,76K,[],['@turbotax'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766220804860043451,tweet_id:1766220804860043451,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-08T19:53:45.000Z,True,"Regulators must block 's merger with . + +If this goes through, it would create another too-big-to-fail bank that could threaten our economy & jack up prices on working people using credit & debit cards. + +I explain why in my new op-ed.",50,201,619,62K,[],"['@CapitalOne', '@Discover']",[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766190588469158262,tweet_id:1766190588469158262,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-08T15:06:27.000Z,True,"What can I say, President Biden just said let’s tax some billionaires and give public school teachers a raise!",3.7K,5.5K,41K,1.1M,[],[],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1766118286767374808,tweet_id:1766118286767374808,@SenWarren +Elizabeth Warren,@SenWarren,2024-03-08T04:15:55.000Z,True,"Canceling student debt +Taxing the rich +Protecting abortion access +Receipts. Proof. Timeline. + +This has been a life-changing presidency & isn't done yet.",3K,2.8K,12K,273K,[],['@POTUS'],[],https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_x96.jpg,https://twitter.com/SenWarren/status/1765954574748110871,tweet_id:1765954574748110871,@SenWarren diff --git a/backend/static/images/logo.png b/backend/static/images/logo.png new file mode 100644 index 000000000..28d6aec1b Binary files /dev/null and b/backend/static/images/logo.png differ diff --git a/backend/static/style.css b/backend/static/style.css index e2c6d6ed1..06098e6f5 100644 --- a/backend/static/style.css +++ b/backend/static/style.css @@ -69,6 +69,28 @@ align-items: center; } +.button-search { + padding: 20px; + text-align: center; +} + +.btn { + padding: 10px 20px; + font-size: 16px; + cursor: pointer; + border-radius: 5px; + border: none; + background-color: #3f72af; + color: white; + box-shadow: 0 2px 4px rgba(0,0,0,0.2); + transition: all 0.3s ease; +} + +.btn:hover { + background-color: #0056b3; + box-shadow: 0 4px 8px rgba(0,0,0,0.3); +} + .input-box input{ width: 100%; margin-left: 10px; diff --git a/backend/templates/base.html b/backend/templates/base.html index 59bc44a58..450462f4e 100644 --- a/backend/templates/base.html +++ b/backend/templates/base.html @@ -3,20 +3,21 @@ - + +
-
+