From 1d3eea8526edbc52efc01a73c61ffef7eb766173 Mon Sep 17 00:00:00 2001 From: jyan16 Date: Thu, 27 Apr 2017 19:58:34 -0400 Subject: [PATCH 1/8] write back --- .gitignore | 8 ++++++++ datahub/datahub.py | 33 +++++++++++++++++++++++++++++++++ frontend.py | 13 ++++++++++++- frontend/js/main.js | 12 +++++++++++- templates/index.html | 17 +++++++++++++---- 5 files changed, 77 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index ca978c9..96ae224 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,11 @@ # Ignore virtualenv sharedb/ +.idea/ + +__pycache__/ +classification/__pycache__/ +datahub/__pycache__/ +filter/__pycache__/ +pipeline/__pycache__/ + diff --git a/datahub/datahub.py b/datahub/datahub.py index 9060314..ada02bf 100644 --- a/datahub/datahub.py +++ b/datahub/datahub.py @@ -4,6 +4,8 @@ import math import random import requests +import logging + # TODO: OAuth2 support # This will most likely be rolled into the front-end rather than anything here. @@ -96,3 +98,34 @@ def get_sample(self, repo_name, table_name, n): else: has_next = False return rows + + def upload_table(self, repo_name, table_name, PIPELINE): + + schema = '(' + for column in PIPELINE.columns: + tmp = ' ' + column + ' text,' + schema += tmp + schema = schema[:-1] + ')' + try: + res = self.query_table(repo_name, 'CREATE TABLE {0}.{1}{2}'.format(repo_name, table_name, schema)) + except Exception as e: + logging.error('Uncaught exception when creating table: {e}'.format(e=e)) + num = len(PIPELINE.data[PIPELINE.columns[0]]) + test = 'INSERT INTO {0}.{1} VALUES {2}'.format(repo_name, table_name, "(NULL,214,NULL,NULL,'<2010',NULL,NULL)") + res = self.query_table(repo_name, test) + result = [] + for i in range(num): + tmp = [] + for key in PIPELINE.columns: + tmp.append('NULL' if PIPELINE.data[key][i]==None else "'" + str(PIPELINE.data[key][i]) + "'") + value = '(' + ','.join(tmp) + ')' + result.append(value) + result = ','.join(result) + try: + res = self.query_table(repo_name, 'INSERT INTO {0}.{1} VALUES {2}'.format(repo_name, table_name, result)) + except Exception as e: + logging.error('Uncaught exception when inserting table: {e}'.format(e=e)) + print(1) + + + diff --git a/frontend.py b/frontend.py index 84ca6d5..1bca37e 100644 --- a/frontend.py +++ b/frontend.py @@ -29,10 +29,12 @@ 'hipaa': HIPAABundle, 'ferpa': FERPABundle, } +# PIPELINE contains all data PIPELINE = None # DataHub connection CONN = None - +# repo_name record the table we use filter +repo_name = None # API functions # TODO: OAuth class DHHandler(tornado.web.RequestHandler): @@ -70,6 +72,7 @@ def post(self): class QueryHandler(tornado.web.RequestHandler): def post(self): + global repo_name repo_name = self.get_argument('repoName') table_name = self.get_argument('tableName') sample_size = int(self.get_argument('sampleSize')) @@ -103,6 +106,12 @@ def post(self): 'table': PIPELINE.data }) +class UploadHandler(tornado.web.RequestHandler): + def post(self): + tableName = self.get_argument('tableName') + CONN.upload_table(repo_name, tableName, PIPELINE) + + # Web handlers class IndexHandler(tornado.web.RequestHandler): def get(self): @@ -111,6 +120,7 @@ def get(self): def render(self): self.write(self.render_string('templates/index.html')) + class ShareDBService: """Registers handlers and kicks off the IOLoop""" def __init__(self, port): @@ -127,6 +137,7 @@ def __init__(self, port): (r'/api/query', QueryHandler), (r'/api/classify', ClassifyHandler), (r'/api/filter', FilterHandler), + (r'/api/upload', UploadHandler) ], xsrf_cookie=True, static_path=static_path, autoreload=True) self.server = tornado.httpserver.HTTPServer(self._app) self.sockets = tornado.netutil.bind_sockets(self.port, '0.0.0.0') diff --git a/frontend/js/main.js b/frontend/js/main.js index 0d5f0b7..be46945 100644 --- a/frontend/js/main.js +++ b/frontend/js/main.js @@ -264,7 +264,6 @@ function filter(form) { // "filters": filters, //}; let request = filters; - console.log(request); $.post("api/filter", request, function(response) { if (response["ok"]) { @@ -275,4 +274,15 @@ function filter(form) { } }); return false; +} + +function upload(form) { + var request = {"tableName" : form.uploadTable.value}; + $.post("api/upload", request, function(response) { + if (response["ok"]) { + presentAlert("alert-success", "Filtered table uploaded"); + } else { + presentAlert("alert-danger", "Unable to upload filtered table"); + } + }) } \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index bb72e09..a048b5b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -56,7 +56,7 @@

DataHub session

- +
@@ -94,15 +94,15 @@

Get data from DataHub

- +
- +
- +
@@ -134,6 +134,15 @@

Filter columns

+ +
+
+ + +
+ +
+ From b2796e47b7763661e7ba2d13607beddf8947942e Mon Sep 17 00:00:00 2001 From: jyan16 Date: Fri, 28 Apr 2017 21:52:21 -0400 Subject: [PATCH 2/8] table schema done --- datahub/datahub.py | 45 ++++++++++++++++++++++++++++++++++---------- frontend.py | 10 +++++----- frontend/js/main.js | 9 +++++++-- templates/index.html | 2 +- 4 files changed, 48 insertions(+), 18 deletions(-) diff --git a/datahub/datahub.py b/datahub/datahub.py index ada02bf..7dd50b6 100644 --- a/datahub/datahub.py +++ b/datahub/datahub.py @@ -99,20 +99,46 @@ def get_sample(self, repo_name, table_name, n): has_next = False return rows - def upload_table(self, repo_name, table_name, PIPELINE): + def get_table_schema(self, repo_name, table_name): + """ + get table schema for the repo_name.table_name + """ + params = self.__default_params() + data = {} + r = requests.get(BASE_URL + 'repos/{0}/{1}/tables/{2}'.format(self.info['username'], repo_name, table_name), + params=params, data=data) + if r.status_code != requests.codes.ok: + raise RuntimeError('Unable to get schema on table {0}.{1}'.format(repo_name, table_name)) + content = r.json() + return content["columns"] - schema = '(' + + def upload_table(self, repo_name, table_name, upload_table, PIPELINE): + """ + upload filterd table into the same repo + :param repo_name: repo to input + :param table_name: original table name + :param upload_table: filtered table name + :param PIPELINE: contains filtered data + """ + table_schema = self.get_table_schema(repo_name, table_name) + schema_dict = {} + for item in table_schema: + schema_dict[item['column_name']] = item['data_type'] + schema_list = [] for column in PIPELINE.columns: - tmp = ' ' + column + ' text,' - schema += tmp - schema = schema[:-1] + ')' + tmp = column + ' ' + schema_dict[column] + schema_list.append(tmp) + schema = '(' + ','.join(schema_list) + ')' + + # create table try: - res = self.query_table(repo_name, 'CREATE TABLE {0}.{1}{2}'.format(repo_name, table_name, schema)) + res = self.query_table(repo_name, 'CREATE TABLE {0}.{1}{2}'.format(repo_name, upload_table, schema)) except Exception as e: logging.error('Uncaught exception when creating table: {e}'.format(e=e)) + + # insert values num = len(PIPELINE.data[PIPELINE.columns[0]]) - test = 'INSERT INTO {0}.{1} VALUES {2}'.format(repo_name, table_name, "(NULL,214,NULL,NULL,'<2010',NULL,NULL)") - res = self.query_table(repo_name, test) result = [] for i in range(num): tmp = [] @@ -122,10 +148,9 @@ def upload_table(self, repo_name, table_name, PIPELINE): result.append(value) result = ','.join(result) try: - res = self.query_table(repo_name, 'INSERT INTO {0}.{1} VALUES {2}'.format(repo_name, table_name, result)) + res = self.query_table(repo_name, 'INSERT INTO {0}.{1} VALUES {2}'.format(repo_name, upload_table, result)) except Exception as e: logging.error('Uncaught exception when inserting table: {e}'.format(e=e)) - print(1) diff --git a/frontend.py b/frontend.py index 1bca37e..1437a92 100644 --- a/frontend.py +++ b/frontend.py @@ -33,8 +33,7 @@ PIPELINE = None # DataHub connection CONN = None -# repo_name record the table we use filter -repo_name = None + # API functions # TODO: OAuth class DHHandler(tornado.web.RequestHandler): @@ -72,7 +71,6 @@ def post(self): class QueryHandler(tornado.web.RequestHandler): def post(self): - global repo_name repo_name = self.get_argument('repoName') table_name = self.get_argument('tableName') sample_size = int(self.get_argument('sampleSize')) @@ -108,8 +106,10 @@ def post(self): class UploadHandler(tornado.web.RequestHandler): def post(self): - tableName = self.get_argument('tableName') - CONN.upload_table(repo_name, tableName, PIPELINE) + table_name = self.get_argument('tableName') + repo_name = self.get_argument('repoName') + upload_table = self.get_argument('uploadTable') + CONN.upload_table(repo_name, table_name, upload_table, PIPELINE) # Web handlers diff --git a/frontend/js/main.js b/frontend/js/main.js index be46945..ce1ba69 100644 --- a/frontend/js/main.js +++ b/frontend/js/main.js @@ -277,12 +277,17 @@ function filter(form) { } function upload(form) { - var request = {"tableName" : form.uploadTable.value}; + var repo_name = document.getElementById("repoName").value; + var table_name = document.getElementById("tableName").value; + var request = {"uploadTable" : form.uploadTable.value, + "repoName" : repo_name, + "tableName" : table_name}; $.post("api/upload", request, function(response) { if (response["ok"]) { presentAlert("alert-success", "Filtered table uploaded"); } else { presentAlert("alert-danger", "Unable to upload filtered table"); } - }) + }); + return false; } \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index a048b5b..9b8df48 100644 --- a/templates/index.html +++ b/templates/index.html @@ -56,7 +56,7 @@

DataHub session

- +
From 63c6c5094a369b548d1757c81bac5d955f2c28f3 Mon Sep 17 00:00:00 2001 From: jyan16 Date: Sun, 30 Apr 2017 17:41:32 -0400 Subject: [PATCH 3/8] delete --- datahub/datahub.py | 10 ++++++++++ frontend.py | 3 +++ notes.md | 2 +- templates/index.html | 2 +- 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/datahub/datahub.py b/datahub/datahub.py index 7dd50b6..f579246 100644 --- a/datahub/datahub.py +++ b/datahub/datahub.py @@ -112,6 +112,13 @@ def get_table_schema(self, repo_name, table_name): content = r.json() return content["columns"] + def delete_table(self, repo_name, table_name): + """ + Delete the table required + """ + params = self.__default_params() + r = requests.delete(BASE_URL + 'repos/{0}/{1}/tables/{2}'.format(self.info['username'], repo_name, table_name), + params=params) def upload_table(self, repo_name, table_name, upload_table, PIPELINE): """ @@ -131,6 +138,9 @@ def upload_table(self, repo_name, table_name, upload_table, PIPELINE): schema_list.append(tmp) schema = '(' + ','.join(schema_list) + ')' + # if table exist, delete it first + self.delete_table(repo_name, upload_table) + # create table try: res = self.query_table(repo_name, 'CREATE TABLE {0}.{1}{2}'.format(repo_name, upload_table, schema)) diff --git a/frontend.py b/frontend.py index 1437a92..65b16ce 100644 --- a/frontend.py +++ b/frontend.py @@ -110,6 +110,9 @@ def post(self): repo_name = self.get_argument('repoName') upload_table = self.get_argument('uploadTable') CONN.upload_table(repo_name, table_name, upload_table, PIPELINE) + self.write({ + 'ok': True + }) # Web handlers diff --git a/notes.md b/notes.md index f19a19c..fe6fabb 100644 --- a/notes.md +++ b/notes.md @@ -19,7 +19,7 @@ Specifically, we want to work off of the "Safe Harbor" method, which focuses on 1. SSNs 1. IP addresses 1. Medical record numbers -1. Biometric identifiers, including finger and voice prints (I don't think there's an easy way to automagically identify these, but I should look into standard formats.) +1. Biometric identifiers, including finger and voice prints (I don't think there's an easy way to automagically identify these, but I should look into standard formats --- maybe some CV) 1. Health plan beneficiary numbers 1. Full-face photographs and any comparable images (i.e. wounds, tattoos, etc.) 1. Account numbers diff --git a/templates/index.html b/templates/index.html index 9b8df48..1fdc171 100644 --- a/templates/index.html +++ b/templates/index.html @@ -56,7 +56,7 @@

DataHub session

- +
From 2be0ab4a74f81ad707f82fcf4c9c9560e5109b01 Mon Sep 17 00:00:00 2001 From: jyan16 Date: Mon, 1 May 2017 10:29:38 -0400 Subject: [PATCH 4/8] merge --- frontend.py | 40 +++++++++++++++++++++++++--------------- frontend/js/main.js | 7 ++++++- templates/index.html | 10 ++-------- 3 files changed, 33 insertions(+), 24 deletions(-) diff --git a/frontend.py b/frontend.py index 65b16ce..76c376e 100644 --- a/frontend.py +++ b/frontend.py @@ -126,12 +126,12 @@ def render(self): class ShareDBService: """Registers handlers and kicks off the IOLoop""" - def __init__(self, port): + def __init__(self, options): """ Args: - port (str): The port to start the server on. + options (tornado.options): Tornado server options. """ - self.port = port + self.port = options.port static_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'frontend/') self._app = tornado.web.Application([ (r'/', IndexHandler), @@ -141,7 +141,13 @@ def __init__(self, port): (r'/api/classify', ClassifyHandler), (r'/api/filter', FilterHandler), (r'/api/upload', UploadHandler) - ], xsrf_cookie=True, static_path=static_path, autoreload=True) + ], xsrf_cookie=True, + static_path=static_path, + autoreload=True, + auth_redirect=options.auth_redirect, + datahub_id=options.datahub_id, + datahub_secret=options.datahub_secret, + cookie_secret=options.secret_cookie) self.server = tornado.httpserver.HTTPServer(self._app) self.sockets = tornado.netutil.bind_sockets(self.port, '0.0.0.0') self.server.add_sockets(self.sockets) @@ -162,20 +168,24 @@ def get_socket(self): return self.sockets[0].getsockname()[:2] def main(port): - logging.info('Starting up!') - try: - service = ShareDBService(port) + from tornado.options import define, options + define('port', help='Start service on this port', type=int, default=8888) + define('auth_redirect', help='OAuth2 redirect URL') + define('datahub_id', help='DataHub client ID') + define('datahub_secret', help='DataHub secret key') + define('secret_cookie', help='Secret cookie hash') - def shutdown(): - logging.info('Shutting down!') - service.stop() - logging.info('Stopped.') - os._exit(0) + logging.info('Starting up!') + tornado.options.parse_config_file('sharedb.conf') + service = ShareDBService(options) - service.start() - except Exception as e: - logging.error('Uncaught exception: {e}'.format(e=e)) + def shutdown(): + logging.info('Shutting down!') + service.stop() + logging.info('Stopped.') + os._exit(0) + service.start() if __name__ == '__main__': parser = argparse.ArgumentParser(description='ShareDB frontend') parser.add_argument('--port', dest='port', default='8888', type=int) diff --git a/frontend/js/main.js b/frontend/js/main.js index ce1ba69..3e496f9 100644 --- a/frontend/js/main.js +++ b/frontend/js/main.js @@ -276,6 +276,11 @@ function filter(form) { return false; } +// Run on startup +$(document).ready(function(){ + showDHLogin(); +}); + function upload(form) { var repo_name = document.getElementById("repoName").value; var table_name = document.getElementById("tableName").value; @@ -290,4 +295,4 @@ function upload(form) { } }); return false; -} \ No newline at end of file +} diff --git a/templates/index.html b/templates/index.html index 1fdc171..c1c5553 100644 --- a/templates/index.html +++ b/templates/index.html @@ -52,14 +52,8 @@

DataHub session

In the meantime, please use an external service like Postman to retrieve a token.

- -
-
- - -
- -
+ +

Select pre-defined classifiers and filters

From 42074997f572772858d011d03738fa3fa2aba53b Mon Sep 17 00:00:00 2001 From: jyan16 Date: Mon, 1 May 2017 10:42:47 -0400 Subject: [PATCH 5/8] merge --- frontend.py | 93 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 75 insertions(+), 18 deletions(-) diff --git a/frontend.py b/frontend.py index 76c376e..690f2f7 100644 --- a/frontend.py +++ b/frontend.py @@ -1,9 +1,9 @@ """ Demo frontend - Currently lacks any session support, which is kinda big. """ import argparse +import functools import logging import os @@ -12,6 +12,8 @@ import tornado.ioloop import tornado.netutil import tornado.web +import tornado.auth +import urllib.parse # ShareDB from datahub import DataHub @@ -29,13 +31,80 @@ 'hipaa': HIPAABundle, 'ferpa': FERPABundle, } -# PIPELINE contains all data PIPELINE = None # DataHub connection CONN = None +# OAuth2 +class DataHubMixin(tornado.auth.OAuth2Mixin): + """DataHub authentication via OAuth2.""" + _OAUTH_AUTHORIZE_URL = 'http://datahub-local.mit.edu/oauth2/authorize/' + _OAUTH_ACCESS_TOKEN_URL = 'http://datahub-local.mit.edu/oauth2/token/' + _OAUTH_SETTINGS_KEY = 'datahub_oauth' + _OAUTH_SCOPE = 'read write' + + @tornado.auth._auth_return_future + def get_authenticated_user(self, code, callback): + """Handles the login for a DataHub user, returning a user object.""" + http = self.get_auth_http_client() + body = urllib.parse.urlencode({ + 'redirect_uri': self.settings['auth_redirect'], + 'code': code, + 'client_id': self.settings['datahub_id'], + 'client_secret': self.settings['datahub_secret'], + 'grant_type': 'authorization_code', + 'scope': self._OAUTH_SCOPE + }) + + http.fetch( + self._OAUTH_ACCESS_TOKEN_URL, + functools.partial(self._on_access_token, callback), + method='POST', + headers={'Content-Type': 'application/x-www-form-urlencoded'}, + body=body + ) + + def _on_access_token(self, future, response): + """Callback function for the exchange to the access token.""" + print(response) + if response.error: + msg = 'DataHub auth error: {}'.format(str(response)) + future.set_exception(tornado.auth.AuthError(msg)) + return + + args = tornado.escape.json_decode(response.body) + future.set_result(args) + + def get_auth_http_client(self): + return tornado.httpclient.AsyncHTTPClient() + + def authorize_redirect(self, callback=None): + kwargs = { + 'redirect_uri': self.settings['auth_redirect'], + 'client_id': self.settings['datahub_id'], + 'callback': callback, + 'extra_params': {'response_type': 'code'} + } + + return super(DataHubMixin, self).authorize_redirect(**kwargs) + +class AuthHandler(tornado.web.RequestHandler, DataHubMixin): + @tornado.web.asynchronous + @tornado.gen.coroutine + def get(self): + code = self.get_argument('code', None) + + if code is not None: + user = yield self.get_authenticated_user(code=code) + + # TODO: This must be a secure cookie + self.set_cookie('oauth_token', user.get('access_token', ''), expires_days=1) + + self.redirect('/') + else: + yield self.authorize_redirect() + # API functions -# TODO: OAuth class DHHandler(tornado.web.RequestHandler): def post(self): global CONN @@ -97,24 +166,12 @@ def post(self): filters = {} for arg in self.request.arguments: filters[arg] = self.get_argument(arg) - #filters = self.get_argument('filters') PIPELINE.filter(filters) self.write({ 'ok': True, 'table': PIPELINE.data }) -class UploadHandler(tornado.web.RequestHandler): - def post(self): - table_name = self.get_argument('tableName') - repo_name = self.get_argument('repoName') - upload_table = self.get_argument('uploadTable') - CONN.upload_table(repo_name, table_name, upload_table, PIPELINE) - self.write({ - 'ok': True - }) - - # Web handlers class IndexHandler(tornado.web.RequestHandler): def get(self): @@ -123,7 +180,6 @@ def get(self): def render(self): self.write(self.render_string('templates/index.html')) - class ShareDBService: """Registers handlers and kicks off the IOLoop""" def __init__(self, options): @@ -135,13 +191,13 @@ def __init__(self, options): static_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'frontend/') self._app = tornado.web.Application([ (r'/', IndexHandler), + (r'/auth', AuthHandler), (r'/api/login', DHHandler), (r'/api/pipeline', PipelineHandler), (r'/api/query', QueryHandler), (r'/api/classify', ClassifyHandler), - (r'/api/filter', FilterHandler), (r'/api/upload', UploadHandler) - ], xsrf_cookie=True, + ], xsrf_cookie=True, static_path=static_path, autoreload=True, auth_redirect=options.auth_redirect, @@ -186,6 +242,7 @@ def shutdown(): os._exit(0) service.start() + if __name__ == '__main__': parser = argparse.ArgumentParser(description='ShareDB frontend') parser.add_argument('--port', dest='port', default='8888', type=int) From b62921faf809b0be5f300b1a19697ac69326ef99 Mon Sep 17 00:00:00 2001 From: jyan16 Date: Thu, 25 May 2017 17:42:20 -0400 Subject: [PATCH 6/8] trans to django --- db.sqlite3 | Bin 0 -> 217088 bytes frontend.py | 251 - iid/__init__.py | 0 iid/admin.py | 3 + iid/apps.py | 5 + bundle.py => iid/bundle.py | 16 +- .../classification}/README.md | 0 .../classification}/__init__.py | 4 +- .../classification}/address.py | 0 .../classification}/classifier.py | 0 .../classification}/date.py | 0 iid/classification/face.py | 30 + .../classification}/lookup.py | 0 .../classification}/regex.py | 0 {data => iid/data}/demo.csv | 0 {data => iid/data}/extract_first_names.py | 0 {data => iid/data}/extract_last_names.py | 0 iid/data/face_demo.csv | 20001 ++++++++++++++++ {data => iid/data}/first_names.dat | 0 {data => iid/data}/gen.py | 8 +- {data => iid/data}/last_names.csv | 0 {data => iid/data}/last_names.dat | 0 {data => iid/data}/names.dat | 0 {data => iid/data}/names.txt | 0 {data => iid/data}/out.csv | 0 {data => iid/data}/pii.csv | 0 {data => iid/data}/surnames.dat | 0 {data => iid/data}/zips.csv | 0 {datahub => iid/datahub}/README.md | 0 {datahub => iid/datahub}/__init__.py | 0 {datahub => iid/datahub}/datahub.py | 32 +- {filter => iid/filter}/__init__.py | 0 {filter => iid/filter}/address.py | 0 {filter => iid/filter}/date.py | 0 {filter => iid/filter}/filter.py | 0 {filter => iid/filter}/ssn.py | 0 {filter => iid/filter}/zip_code.py | 0 iid/img/obama.jpg | Bin 0 -> 24165 bytes iid/migrations/__init__.py | 0 iid/models.py | 3 + {pipeline => iid/pipeline}/__init__.py | 0 {pipeline => iid/pipeline}/pipeline.py | 2 +- frontend/js/main.js => iid/static/iid/iid.js | 190 +- .../css/main.css => iid/static/iid/style.css | 0 iid/templates/__init__.py | 0 iid/templates/iid/__init__.py | 0 {templates => iid/templates/iid}/index.html | 43 +- iid/tests.py | 3 + iid/urls.py | 14 + iid/views.py | 117 + manage.py | 22 + notes.md | 56 - requirements.txt | 9 - setup.cfg | 3 - sharedb_django/__init__.py | 0 sharedb_django/settings.py | 120 + sharedb_django/urls.py | 22 + sharedb_django/wsgi.py | 16 + todo.md | 23 +- 59 files changed, 20563 insertions(+), 430 deletions(-) create mode 100644 db.sqlite3 delete mode 100644 frontend.py create mode 100644 iid/__init__.py create mode 100644 iid/admin.py create mode 100644 iid/apps.py rename bundle.py => iid/bundle.py (78%) rename {classification => iid/classification}/README.md (100%) rename {classification => iid/classification}/__init__.py (82%) rename {classification => iid/classification}/address.py (100%) rename {classification => iid/classification}/classifier.py (100%) rename {classification => iid/classification}/date.py (100%) create mode 100644 iid/classification/face.py rename {classification => iid/classification}/lookup.py (100%) rename {classification => iid/classification}/regex.py (100%) rename {data => iid/data}/demo.csv (100%) rename {data => iid/data}/extract_first_names.py (100%) rename {data => iid/data}/extract_last_names.py (100%) create mode 100644 iid/data/face_demo.csv rename {data => iid/data}/first_names.dat (100%) rename {data => iid/data}/gen.py (92%) rename {data => iid/data}/last_names.csv (100%) rename {data => iid/data}/last_names.dat (100%) rename {data => iid/data}/names.dat (100%) rename {data => iid/data}/names.txt (100%) rename {data => iid/data}/out.csv (100%) rename {data => iid/data}/pii.csv (100%) rename {data => iid/data}/surnames.dat (100%) rename {data => iid/data}/zips.csv (100%) rename {datahub => iid/datahub}/README.md (100%) rename {datahub => iid/datahub}/__init__.py (100%) rename {datahub => iid/datahub}/datahub.py (86%) rename {filter => iid/filter}/__init__.py (100%) rename {filter => iid/filter}/address.py (100%) rename {filter => iid/filter}/date.py (100%) rename {filter => iid/filter}/filter.py (100%) rename {filter => iid/filter}/ssn.py (100%) rename {filter => iid/filter}/zip_code.py (100%) create mode 100644 iid/img/obama.jpg create mode 100644 iid/migrations/__init__.py create mode 100644 iid/models.py rename {pipeline => iid/pipeline}/__init__.py (100%) rename {pipeline => iid/pipeline}/pipeline.py (99%) rename frontend/js/main.js => iid/static/iid/iid.js (57%) rename frontend/css/main.css => iid/static/iid/style.css (100%) create mode 100644 iid/templates/__init__.py create mode 100644 iid/templates/iid/__init__.py rename {templates => iid/templates/iid}/index.html (76%) create mode 100644 iid/tests.py create mode 100644 iid/urls.py create mode 100644 iid/views.py create mode 100755 manage.py delete mode 100644 notes.md delete mode 100644 requirements.txt delete mode 100644 setup.cfg create mode 100644 sharedb_django/__init__.py create mode 100644 sharedb_django/settings.py create mode 100644 sharedb_django/urls.py create mode 100644 sharedb_django/wsgi.py diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..1bb20ab2b8062d75c05c95b6dee8972a99095b92 GIT binary patch literal 217088 zcmeI5e{37cb;r3P#g#;nEC0H+&p))Ht+N08%K0860P=c>%+MsBQ7WpGci=Zfiq9~FA$zK-)I3Q@zq6tt02$}|I5TI#Mq%E2t zR}>A}&de^k!`&sNQ|voi_{!j#JM-R~_dYYTyYoY+bHW5MVxS~^QIPsrd+=GUu|uM~I3u)T_cA_@E1BhfoiTobwJ93ckw^;{5cO zD8ELWzueDx!xHhk5Q|5Ph1Hz9-v@T(x5L;@F1Hnkw>P9Ax#i6XTc>yBZdb5sv{*{S zQ-!G2avX%ldbb~ktkG#`ZT2Z<*Rhc%)n$eRdnQDxX1c3tIFVwl+SIE}wRv|#r%uFI zlbN)hH2SP1C%M##m8B8l?rEAK?{5556WqI+!0x@|x zzpzYPWky`Jmh#W%m+}kq`Kw%^W*HGjGjo>e(6^#(TZy!q0a2cr5w?%p@UULOK{3up zd!aD0-(>(sPu?9nCff;n`+dWrJU%YGak@L~P9qrU5$K*G+|U}0*K2jsGHz@2;&rV) z6^myho#sKRvZ6JbYNfVTu7;J8*3_Hjb)C;IH`K-^sXp3R!b+i5tMIurm3BqTej;j_ zSB!foDP^@>C&l!ZY&+6dLSNU)6|1C7$|{NIQ%9TH>Z;R8lA{%y<=ezdyZtI%U(SyU9(Gx3+^UcVL6uY#ktdHn^qcwY6YG2pY#kgDu%WZOtaJj(At-4n0x)GW#(F=X&Zf0FSqFiZ_){8z-t|f%l$61$fF{Wx88)`)>=oNLH z+_x)gCS52cN{IryX}c&4nz*{3zg-0TTQ=_5E^0Koj!$6{BXf&9gsgc*Igt>yHdz~W z(R4}jb=R$n#C@pW7>}GdY zQs(agq>~>_lfz>tgXDN1@Mj+BFQq?_O43B=yP?m9UJUtzZv{UYjF0~7=vPPYj-C(v zjELX|1V8`;KmY_l00ck)1VG?jB#=Ka=$U?Mu0}`Tado3!yIn5n^=LGjWYackJQ_2!XqhnWOtCJ{@ku~gLEOe`BsWj`Ph zGt(~K#MNk4-Q1w_O$}EsqOn9SaXv)UCtcKIYPni&mbHqTZYq_EC*z6Wpy%Y|TthdO zjtBv#QbLI(&&N{dles6e*;F(YeSUP%bL8qAg+~;!s#a-|bv-sq+@9xC*R?xpMX#$eNBE`pL&3>xY&58w-cZ2YZrJorh zHeP7kAkE2zO>LuTRVQyDktJn#;}(5D-MeXsi7dQpso{ zmk~(3llFM~D<)EjWG*P>Jj0vWqO392SRUqq<@$GM*5!g zb?J{nZ%Y@Yn^H^~lYaA;f)8a7009sH0T2KI5C8!X009sH0T6hP2^{mC9v6yav&MB@ zBU@-1^eg*CiGbppo)l~|2KC^Tc%^K?ux#rWI`No8Tc-VLH zxX|9yV*c+x;hQ{7JY~Ph%C<3Z-v@)fBgW{TZea0+d`Dz97r=g-$9u?kWP+VqgZ+U6 zKKbM@n-Xa6Vxar~1EHULq<@qCUixe4P3aG%&qz0C4jRq)$m3(raV};3+90$&wKIm(aIEUk`mL^n0OC zgi4`{p;YKZ$Q%4w@Q1;_4Sp^7`QTQt8hnMAzz+z300@8p2!H?xfB*=900``B0+0EG z86iO4{HK$bXLgp6CyZqBO48~Ym#iG}31@`>eL+A+bo`i4NC+dQ1%9ddl#yc^;d4$h z^CQ#_pM2t=PnZ;jO;c=8dfZ4dZLp-rC7&=ZkX7Ikc|SAR=zi>|PlyRarWQ9~J!)i_ zx?F~Q#3xJ(L(~G7`WO=z+jgvh?GYoRZO6(u%G4jo;O8Y!j$ni2^4gp-1g zYSPmYM%rttup#)ck!0!^@7QGUy;O;vi?UCc6$VT#YozWs(oIz>eUNb&p!!y#@33!p zS}<+27xuj@(KOIb92oNrPqM0Sr_l9(^3s3&fB*=900@8p2!H?xfB*=900@8p2<&45 zbp0RW|9xD+2n_^400ck)1V8`;KmY_l00ck)1PB4F|Dzdz00@8p2!H?xfB*=900@8p z2!O!;CxG$){;y+12m&Ag0w4eaAOHd&00JNY0w4ea-2Q*|6+}P)1V8`;KmY_l00ck) z1V8`;KmY{x9|5fY@4q@lL?8eHAOHd&00JNY0w4eaAOHd&U?+g_znuuqK>!3m00ck) z1V8`;KmY_l00cl_{}G^@{wJgldZb@S|0VrY`ib;o>4(zyr0+=IlKx71OL|lKn)GGq zPo+PWz94;0`d#U_q&K8bNgtD%QdPPx6{HVKACg{{UXq?8Ch!9SAOHd&00JNY0w4ea zAOHd&00R4zz@S$U0u$`0u;VyAj+|o0lk9kc9*2*!^Me`gAzN2*fB_tzEO4zu;U0ldWYF@h#f_G9PqQ_AUpbe-eJK@4+CEB z@G#c@_i58aSReobAOHd&00JNY0w4eaAOHd&z!Biy|Hq}`D+qu92!H?xfB*=900@8p z2!H?xfWUqtfbsu+s!hZK0w4eaAOHd&00JNY0w4eaAOHgH1Tg-0=Ymua009sH0T2KI z5C8!X009sH0T9?v1Tg;JPqm3yKmY_l00ck)1V8`;KmY_l00cn5odCxF?p%-x0w4ea zAOHd&00JNY0w4eaAOHgUi2%m``>8e&3kZM!2!H?xfB*=900@8p2!H?xxD%j%|L>3x z_ef_#e;0Z>G&1`0!2gc?vsXuGQ3Ht=iP9O|^MUTg~erMVdc^#<>jRdm**5&-d@;N1}ZEUC&t)N%J%5AM) zysp)!V$o=%qfA8BYo(sqk=EErQC^%8TCsAqq~9^!(n{;)s#>Y7shbVGu9iz`F_lj0 z1ubnCIAMl$Vd1&_tDUfV>xY%a1*aGd-7F~_X-%CFWtF&e#oZ+yG;=LkDC$|gV0Z2K z4zBgG)7wRxMmVy4_P8j|%m{A?d`sv=Z};ewYa8f@@2LUQ3ODp(lW+(tP5n-jwHQ+A zW^!HMs9P-~ZfhA@v01KF)zyl&7FHVTTBSnTp0ZhOl-H_yiEl%sVO7_3bzN^Xv^Bk5 zl-WQ@adt9RBc=^_DgS(aDZenEzuKvKUcrnzLhQ5~fu-N>1iTGxvw5AhOit5`rCDAl z?v=ErPQP_Rh_qgkMY%R7v~ICR)v;hS@D07bUT!o9jD~7`r;RJNS}3Gev|c|l zB)5j=gss`#`rZ}18cS;FLOKywH>>4ay~B~sa8?#BTv^F0=H;okeCI;fr?htxC~3=G zmPn-?IxNap$Ym{M3w*6!+uUfV>_6J%a+y>rmr5orXAOxXy=thJ0lUA39BohSvWQn> zhxqHiz03}lv=)o&r7YKg3~PsXaH`!{+WNhHvYN=#2SxcN0o8B^)i&7+Q%*Az90}kPX zE|?ucwhK(#BImqA#qHuUJtoSp5$7-WbKbB-T5BN|j}{B7Id{Jg?8j60NT}}#Zn@kDnzZ8;~+HFyZtz1tv=kRm|e%_yo79>7!~EYIbnOA zJ#JW?m30ZL%tr5=pc#(&7}{IVytO)S#QmN|+kM!nwbSj}a-KcPIG%wW`j&#}X(ZBW z2H4Zs_Hi2?R#6-j<9xIi3M2bn24FNM*XMsn>`b;3_SV56QO@Or?We7<4Qm!7BX~#Z zunPi*(4IgTR`w8%qt)-CEm?7Ppd>`U{KACbVHbtQtxCD6tE92l*g5@n-R!I}>-$h^ z%rD9l6GH2zjiez7!NLymk0dv^t5n|Ib_Ds&~I(()uL`Y z^>(>t%bcP`og^ijoCEEDC_05x<*F>4M)O2m)-Wr)l%3~X zM@ojuL3Q*u0zVqbjQEBx4u^(b_rEFJGyVlWJMt|exVGnb{V6}w-TGuwl;`J#dxLB$ zrADWT;_61dcDr06%jQ~<%+WNOwVQgiPuA(~>6Jc`&WV=ogDFwYWQ2Rhgs@$gOzBjc zu8C**7s?c!#qDB0La|obj-*97pBL_}xKgR>t989`-4zR;H`(7sUUW~MG6#CkK^c{& zGAZ{dX>)0jpPjX{=30R1BVFWX6Iewy+vaY$uSq)lWhiqd_c-w$@puNGf9M(zHzjJH z`_u1ilu7GxnfoJL>w1Y~lFbmC^>XiuZ4_%8E;|?=s!H*Gd%O(Q!=ggqYNTk_@0!W+Y#Yvgv8Ts9XMg?nlziNBff*E?2< zy$pxIJGg){gSd+B^(xvr924cM5uuf1%S+}8N`u_|>Gmq4FQ|02Le)~mbUd9-bc-nF zt*(0$T|a$e5xLt6tv{};aOA0|UtWy#YQ^2kYOMP_&`QsWawH;bon_6jJGc96r29_Y zok_iFM{-lYYh9O<{Aw4ss7x;8ZFz!BbM7_cV{};qiaqI<^W(juW-EEDo{fb+`gMGJ zYDSdD$Ave>S*#tI&KIdW!cO|0y3B^wXuMvllLf5y!e1<&?OOk;XpJV_eOa#ZH#)MD zj<6{=)W#-R@T881l|rpn>1=W%xvS+mQSDwoOK_lx2s7SSLSNU)+q_DbroMQ>^9Ru1&af zgGYQdnMvzOW80D?7c%RU-xg-&_O!xn-LRx-8{l^{(nq>T>*{GyzB?^!N!G3uOT|$D zd1}^a@M<)s6%v`0W^G8ZwEU*iE?e3xpm9jvaIVtpVnBh*vU8r4QkqsH|RS+a2588oQoEBdr%F$ad0%(E2!k#pjDs z$pfXaGh1aFu+>buP)d{%1y;2#zWH3M*F~_u<*qve?+}f><5QRrF!qH<_S0^5tpD$M zP6LV{00JNY0w4eaAOHd&00JNY0wD0n5Wx8Vk*O*;3IZSi0w4eaAOHd&00JNY0w4ea zdnSPK|DMr75d=U01V8`;KmY_l00ck)1V8`;9vK1{|35NS1xG;u1V8`;KmY_l00ck) z1V8`;Kw!@V===XBM*iF*eP8+u>C@6jrMTn^{W$bi=nJ8(&__cb3>^yoDEO7&ZwJ?c zPX~{T{?q7JM?W)qZFFjMB=Fp^<+eCh!9SAOHd&00JNY0w4ea_nE-- z#Gpr*$ppxsXV%HPA&a$ogT0e$UaKlbnnKeQmN=~#!scJ%?GiT9IN`~0B78O$&`RVl zH}hsm0w)$bMZ^*x7%?5--yq8QU?wZ`{^%duqrmg?mji zSC)}#ggq-83TBZu1+!pYA@Ueem`)AR@@>-83tsfeBh+?IY&&DUO_q1YN`3OMA>a1J z%AxXYU#!%rL)4Xo$Xv0KsW5ZJN_yfTk&MLrrYGiWI5{uOlqU`ta;68IoLRb=qKpx_ z)6;%hGABe!HBVUmg7u>RhR2szQ@zLxzG`v`xV*o>zzjiNbVhkosVg zrhf3E$|!T!XF5aQNXdCYPnCcnVV2&OFpH(9kB<enKQN<7d6JjE(>;gq@u8libvuT^NRq+9^#N}{00ck)1V8`;KmY_l00ck)1VG?H5Wx8VK~RNF5C8!X009sH z0T2KI5C8!X009tqxCmhU|8Ug@ya53a009sH0T2KI5C8!X009sHfd@eVxbgpc?Fz~V z0T2KI5C8!X009sH0T2KI5C8!Xct8Y#!LyzNo_SB;#gYFUQHC|~`{F(SR|bFT`;af- zT^#t5XMSK&cw3qZ>B8H>+pbP*M}Jk6^LgQ3v8fd*dQIDGUXQCA_1f)nNw2GQeYLJP zt~YBp^=iMoC+C;)bIW;UdG6Uuc_rLWG^|X8%cZbVt~T{Gy{;@QE-MQwmo6zUFI~7i zw{%Upn7^jXtt>BISRh6(=NFdGDPgTx)Eflmr z$Otj=%4>f4W?t}=t0nzT<5s2I)Ky}u#?IA#=+$_?+|(-{-m~FYKf|-FGruCr*D^vY z&wRAYuGO__laV0MR6V~1bw1Y~7D)rDm&1x{ z&mmHcVr@eYD^2}QlUKH3bh^cNSbNZ%GS`LM&8fdFx6WUzm57V35h!NgZ@vFRqO8vg zt=C+eD0hYH^ry6*EatRy%Hch`q_PW6q<=f@XVtx#avI$|?8=HLH;DUpcXXeFORoxr zcs!d;>y9SNm2`UdQS>mrt6;iy!;zI`zg(W*ZO`NURr>`qwLNfEl;`J#djZ#8$l2*r zv1j}DNY2Rp@0agokE4$he9v|3ZM(VEw%)(gx4T()|4w(yMCCYgT4*`@@T@uf6fKdtb9e9evHpI=4e#vn2P_*Gv-hsj_{Ch()80 zr$gHfk=!%ww>;BO^Dey~woN7CmL>X3Odd^Z_43Dzr()x2p|3)BJ$1}>J--sWRc)Os z)Slb8S>B*evR2VyrBJI?_#3wK?z&@Nk9a)72j#Uzp>@->8}MVCPB$)T*+gcw*mppr zsRTpU47c)85or}7lkcx=U}+*O7EfZQmmMW#R~RD>?knC$JBa8 zB~QiqUQfkc%4Y4TyP@|4Ux@SZyszDz!F4fft$ak3H%SPecp%Is-$5ijs$_Qobt{J> z`2By^ISnL&00@8p2!H?xfB*=900@8p2!O!8B7pJ#zN$_H0|Fob0w4eaAOHd&00JNY z0w4eat_1M=|E^e&2m&Ag0w4eaAOHd&00JNY0w4ea`-%Y8|MyjOA{Y<=0T2KI5C8!X z009sH0T2KI5O5{Ht^Yqs1ZK$RjH@6LK>!3m00ck)1V8`;KmY_l00ck)1Rhxe-1z^I zjRB5>00@8p2!H?xfB*=900@8p2!H?x^e2Gve}6v61pyEM0T2KI5C8!X009sH0T2Lz zeMDe@#1bQ)DET}=K9l5w9}oZm5C8!X009sH0T2KI5C8!X0D*l%fLs5cCLu-0=kz`a z4Pk%)2!H?xfB*=900@8p2!H?xfB*=X1i114Ig*4q0JIDc009sH0T2KI5C8!X009sH o0T9@S1i114K8y|_fdB}A00@8p2!H?xfB*=900@8p2v7q54~OrQeE 0: + score += 1 + except OSError: + continue + return score / len(column) + diff --git a/classification/lookup.py b/iid/classification/lookup.py similarity index 100% rename from classification/lookup.py rename to iid/classification/lookup.py diff --git a/classification/regex.py b/iid/classification/regex.py similarity index 100% rename from classification/regex.py rename to iid/classification/regex.py diff --git a/data/demo.csv b/iid/data/demo.csv similarity index 100% rename from data/demo.csv rename to iid/data/demo.csv diff --git a/data/extract_first_names.py b/iid/data/extract_first_names.py similarity index 100% rename from data/extract_first_names.py rename to iid/data/extract_first_names.py diff --git a/data/extract_last_names.py b/iid/data/extract_last_names.py similarity index 100% rename from data/extract_last_names.py rename to iid/data/extract_last_names.py diff --git a/iid/data/face_demo.csv b/iid/data/face_demo.csv new file mode 100644 index 0000000..4434522 --- /dev/null +++ b/iid/data/face_demo.csv @@ -0,0 +1,20001 @@ +name,ssn,zip,address,date,device_id,email,face +Jeffrey Taylor,086-73-1012,21371,"3425 Raymond Lakes +Desireeberg, GA 14978-8481",2003-08-29 16:32:36,ea:98:ee:f6:4e:b8,hwilliams@duncan.biz,img/obama.jpg +James Mullen,344-66-5322,43759,"29532 Sean Island +Samanthabury, MO 67479-0414",1973-04-14 00:13:11,4b:b0:df:59:da:f7,ashley70@montgomery-cunningham.com,img/obama.jpg +Renee Peterson,348-54-0125,85852,"50113 Ana Centers Apt. 825 +Adamsstad, DC 86092-7936",1940-02-16 07:53:26,18:52:2b:cd:24:e6,gonzalezjeremy@thomas.org,img/obama.jpg +Sylvia Chung,017-43-3388,36507,"978 Mack Street Apt. 018 +Lake Annaport, AR 10387",1961-09-10 04:11:36,c7:20:36:ab:b3:a4,estradasteven@hotmail.com,img/obama.jpg +Matthew Forbes,250-53-0884,72297,"4305 Curry Ports Apt. 961 +Guerrerobury, GU 48151-9140",1977-05-24 11:10:36,de:a2:3c:fd:d7:d1,michaelgonzales@yahoo.com,img/obama.jpg +Ashley Wade,640-85-8403,79567,"8934 Torres Avenue +Keithhaven, IL 75130",1973-07-11 05:49:05,94:2a:6e:75:6c:4a,isaiah74@ortiz.com,img/obama.jpg +Patrick Rogers,342-18-7774,24255,"USCGC Flores +FPO AP 66110-0058",1981-02-11 01:14:13,7f:96:57:d0:21:a8,mary91@gmail.com,img/obama.jpg +Gary Morris,717-23-6358,55488,"572 Delacruz Via Suite 807 +Ryanland, WI 83743-7986",1929-09-08 17:00:49,ac:e7:7a:ae:0f:25,kristenbates@washington.com,img/obama.jpg +Colton Chen,490-60-1543,76629,"302 Jones Rest +Lyonsland, PR 43233",1959-12-22 22:47:58,fe:5e:21:cb:75:4e,amanda60@pope.com,img/obama.jpg +Christopher Black,047-52-5999,69659,"USNS Murphy +FPO AE 19985",1965-08-22 23:35:51,46:33:cb:a6:7d:cc,chasestephanie@sanchez-hall.biz,img/obama.jpg +Monica Grant,786-37-9687,14363,"853 Melanie Viaduct +Carrolltown, CO 47552-8403",1993-11-24 13:36:18,99:71:ed:9a:74:13,kaylareed@yahoo.com,img/obama.jpg +Paul Bell,189-24-4333,55047,"30743 Powers Field +New Brandonmouth, CT 60162-7678",1925-11-16 04:52:20,da:95:fc:bc:40:f4,garciadarryl@gonzalez.com,img/obama.jpg +Aaron Brown,525-48-5672,90324,"2911 Daniel Harbor +New Leslie, KY 86836",1993-04-20 11:40:33,b7:ac:31:a6:3f:1e,jenniferwang@anderson-berger.net,img/obama.jpg +Jasmin Collier,510-02-1462,21523,"398 Jones Motorway +Woodardland, VT 87055",1967-01-28 12:45:19,74:8c:80:32:80:32,michellehill@williams.com,img/obama.jpg +Eric Case,585-74-8365,81819,"5506 Davis Groves Apt. 053 +Dixonton, NH 80937",1926-05-23 02:31:44,21:1a:67:e9:cf:bf,mariahburton@owens-dudley.com,img/obama.jpg +Hunter Wilson,378-79-0073,07495,"6660 Peterson Junctions +North Luke, LA 69707-3101",1951-08-26 20:54:41,60:84:88:90:07:6c,denise10@gmail.com,img/obama.jpg +Edward Nelson,244-72-6100,33632,"02470 Anna Vista +Lake Franciscostad, IL 10118-5755",1974-01-25 19:48:57,84:23:d3:c4:81:9d,balvarado@tran.com,img/obama.jpg +Mr. Adrian Holt,822-71-9941,30281,"7522 Brooks Forks Apt. 324 +West Pam, NM 09368-5327",2004-09-04 12:34:59,40:48:8a:6e:6c:c6,clarkjose@yahoo.com,img/obama.jpg +Jeremy Ford,664-97-8680,70852,"974 Dwayne Parkways Apt. 224 +Port Karenside, IN 47634",1963-08-25 12:27:19,38:ed:3e:ad:71:32,romerorobert@collins.com,img/obama.jpg +Michael Cruz,562-71-5615,86129,"8418 William Drive +East Nicole, IN 57422",1977-11-27 22:52:04,2b:51:db:9e:dd:65,ahamilton@clayton-gonzalez.com,img/obama.jpg +Brittany Carney,332-39-9899,19308,"10261 Gray Plains +Mackmouth, SC 89161",1962-06-20 01:05:28,95:1b:ee:c9:e5:66,krista18@valencia.com,img/obama.jpg +Cynthia Dean,593-34-0351,56249,"037 Fleming Highway +West Amandaville, OH 16124-6364",1940-07-05 22:41:06,c1:3e:e8:bd:19:c2,crussell@thompson.com,img/obama.jpg +Mary Mejia,556-35-7359,33607,"501 Rose Grove Suite 713 +Ronaldborough, KS 21449-0027",1930-02-03 01:05:41,8b:55:6a:99:3d:dc,zsmith@ford-webb.com,img/obama.jpg +Scott Newton,364-51-3319,72681,"053 Chelsey Well Apt. 762 +New Anthonymouth, DE 91381",1966-04-19 16:27:16,2e:d4:8c:c4:b5:e4,donaldburnett@yahoo.com,img/obama.jpg +Elizabeth Horton,656-12-1804,70391,"02720 Juan Isle +East Nathanielstad, MD 55026-2250",1932-07-08 12:32:52,fb:b1:4f:f0:78:a1,annette60@gmail.com,img/obama.jpg +Matthew Gonzalez,012-46-1278,24769,"95281 Joyce Forest +Port Teresa, MH 57650",1935-07-17 10:43:59,1c:fd:38:ee:43:d9,greenjames@reed.com,img/obama.jpg +Jasmin Rice,148-42-6444,29116,"8339 Jeremy Crossroad +Rollinsland, AS 57160-7775",1928-06-17 17:21:57,dc:24:2e:60:55:6d,bryanmichael@owen.com,img/obama.jpg +Zachary Ortega,298-88-2144,07833,"77044 Sandra Viaduct +Philliptown, NY 77594-8416",1960-12-24 10:17:29,c1:ed:2b:2d:b5:38,dustinhanna@yahoo.com,img/obama.jpg +Stephanie Moore,684-13-3153,25363,"51170 Davies Loaf +West Rebecca, RI 61224",2005-08-21 14:19:40,63:cd:df:d1:d3:7f,jacobjacobs@williams.com,img/obama.jpg +Stephanie Little,317-12-8943,39418,"Unit 7844 Box 7262 +DPO AA 47191",1937-02-13 01:46:21,13:82:01:62:f5:c0,mharris@shah.info,img/obama.jpg +Samantha Jackson,015-77-1426,75153,"8392 Baker Ferry Suite 023 +Thompsonbury, NE 39086-6224",1937-07-05 13:29:45,29:ca:bd:9a:0b:74,ronaldjohnson@yahoo.com,img/obama.jpg +Mark Wallace,382-65-7935,77746,"907 Jones Junction Apt. 522 +Lake Melindastad, LA 63735-6699",1993-06-12 08:58:33,c4:c4:d5:49:04:4f,gmarsh@kelley-moran.com,img/obama.jpg +Marissa Lewis,501-24-3995,45260,"9855 Monica Trail Suite 198 +Angelaburgh, KS 47847-3621",1976-07-21 17:37:52,19:9c:19:7c:92:e0,nphillips@hotmail.com,img/obama.jpg +Dennis Conner,699-39-6874,49979,"USNS White +FPO AP 13941-3467",1924-09-06 23:19:03,26:78:44:9b:df:5a,bradquinn@yahoo.com,img/obama.jpg +Joe Doyle,457-77-2606,46958,"72433 Graham Spring +Davisport, WA 28527-9532",1997-07-26 16:49:38,0b:19:b3:fe:24:6a,ronaldthomas@hotmail.com,img/obama.jpg +Anthony Perkins,566-94-1697,25934,"0794 Barker Parks +Jonathanton, KY 80277-6730",1956-11-03 11:48:08,87:c7:c5:82:e1:4c,jonathangoodwin@powers.com,img/obama.jpg +Nicholas Gonzalez,420-73-2443,58856,"PSC 4201, Box 0280 +APO AP 90599",1929-06-26 01:33:05,0c:95:3b:c6:a7:55,anthonyguzman@maynard.net,img/obama.jpg +Christopher Wallace,015-15-7814,82602,"74423 Gutierrez Locks +East Adamberg, HI 05096",1997-01-11 05:46:48,81:82:1a:e2:83:e5,brownsteven@gmail.com,img/obama.jpg +Linda Smith,377-59-1106,15076,"93795 Larry Ports Apt. 577 +Lake David, AS 72187",1980-03-19 08:54:27,c3:8e:50:60:0b:e5,opearson@hotmail.com,img/obama.jpg +Lisa Walker,019-96-7067,71233,"5534 Nelson Field Suite 112 +Mirandabury, AL 27719-4771",1918-08-24 10:42:07,57:a0:9c:0b:c7:fc,lisa97@marshall-carter.biz,img/obama.jpg +Troy Morales,076-22-3043,52141,"708 Knight Club Suite 696 +Danielshire, MN 29381",1917-08-13 01:59:42,a6:bc:af:77:8a:d9,kaylee01@gmail.com,img/obama.jpg +Carrie Wright,793-55-1275,11490,"845 Eric Plain +Michaelburgh, NJ 51922-9800",1938-02-23 12:30:54,ed:0d:02:c4:65:9d,agordon@hotmail.com,img/obama.jpg +Ruben Jackson,396-85-3021,88299,"441 Robert Ridge +Williamfort, MS 39012",1995-06-11 18:13:03,86:fe:c2:73:38:a5,ddawson@yahoo.com,img/obama.jpg +Caroline Tyler,213-92-0018,03012,"404 Miller Pines +North Nina, VT 38039-6998",1942-11-07 08:25:31,9b:44:1a:d9:30:65,franksean@neal-castaneda.net,img/obama.jpg +Jody Roberts MD,058-96-7411,06795,"624 Hensley Square Apt. 100 +Lake Timothy, NJ 38131-0866",1923-10-30 17:55:56,bf:d9:35:18:e4:0e,crawfordoscar@hotmail.com,img/obama.jpg +Mr. Dominic Williams,589-87-4609,91120,"587 Chang Turnpike Suite 387 +Turnerville, IN 75637-3359",1975-07-03 08:54:55,ca:03:e4:6c:ed:a3,tbennett@yahoo.com,img/obama.jpg +Chase Phillips,800-04-2381,77539,"789 Rogers Manors Apt. 156 +Robinshire, NE 76464",1922-12-14 04:53:01,29:a7:fc:cf:64:db,nlewis@yahoo.com,img/obama.jpg +Theresa Navarro,700-99-9353,66620,"93778 Weber Flats +South Jeremiah, FL 15254",1986-08-07 03:34:20,1c:20:54:59:5a:17,rmarks@gmail.com,img/obama.jpg +James Bell,763-48-1495,33132,"14706 Brown Meadow +South Carrie, VT 45008",1983-04-25 23:25:30,2e:cf:6b:80:4e:07,susan39@hotmail.com,img/obama.jpg +Martha Silva,484-30-6998,14307,"43050 Dakota Road Apt. 551 +Jeffreymouth, UT 30659",1991-10-13 12:33:35,0e:63:92:4e:56:a1,zdecker@yahoo.com,img/obama.jpg +Nicholas Meza,885-89-6838,26736,"3988 David Way +Rayhaven, NM 23691-6546",2009-07-23 16:25:09,40:c1:f9:c7:c1:77,angela45@sutton-beck.com,img/obama.jpg +Jeffrey Paul,191-58-6440,34950,"90221 Donna Circle +Lake Patriciashire, CO 20149-3463",1999-06-11 16:56:03,ef:d5:db:7e:38:cc,tracysantos@glass-flores.com,img/obama.jpg +Sean Clarke,500-93-5985,28603,"75749 Christy Hollow +West Julie, PA 19754",1923-05-01 15:56:47,72:65:7f:3a:88:12,oatkinson@yahoo.com,img/obama.jpg +Michael Herrera,444-89-8325,51981,"54163 Walsh Keys Suite 989 +North Matthewtown, MA 56155",1981-08-26 19:07:54,af:e7:c5:88:6b:a0,jonesadam@hotmail.com,img/obama.jpg +Ricky Martin,848-60-4170,67846,"53699 Mendez Vista +Michaelfurt, PR 72756-8547",2006-03-31 19:53:32,92:4b:ba:d5:a7:31,angelahall@logan-rhodes.com,img/obama.jpg +James Jones,227-52-6600,50625,"625 Garrison Lane +Michaelhaven, MT 55556-5385",1985-08-09 12:25:36,7f:da:d1:e7:0f:14,linjulie@walker.com,img/obama.jpg +Dwayne Baxter,775-37-9696,59063,"63810 Wright Freeway Suite 651 +Harrisonmouth, NE 50364",2007-09-19 14:34:12,59:7a:a9:c8:0a:1a,lhunter@hotmail.com,img/obama.jpg +Ashley Nguyen,389-73-7969,70881,"USCGC Bolton +FPO AA 83729-9022",1953-07-31 04:58:46,d7:ab:10:c3:4c:e5,vjones@smith-washington.com,img/obama.jpg +Mitchell Meyer,166-50-1995,16879,"0328 Leslie Mission Apt. 564 +North Williammouth, VA 91487",1970-01-20 17:44:04,da:0d:d7:84:94:a5,tylerpetersen@cox.net,img/obama.jpg +Penny Robinson,263-28-7544,19526,"18154 Amanda Cove +Mcculloughville, HI 88510",1943-05-15 00:21:27,81:8f:40:92:15:30,yblevins@jones.net,img/obama.jpg +Erik Peterson,196-85-2612,46594,"4949 Brown Forest +North Anitaton, GA 35202",1993-02-06 04:47:37,76:b5:6e:f5:9f:3f,julie47@hotmail.com,img/obama.jpg +Amy Johnson,531-13-8649,60304,"17504 Jennifer Groves Apt. 351 +Williamston, LA 65924-8757",1958-04-20 02:09:36,da:8b:d4:70:bb:bb,davidle@martin.org,img/obama.jpg +James Martin,877-57-6638,74076,"23504 Garza Ranch Apt. 327 +Josephhaven, TX 67829-3223",1963-12-24 01:03:54,1d:81:4c:9d:61:0e,woodskeith@hotmail.com,img/obama.jpg +James Smith,701-28-9767,31923,"433 Bryan View +Port Matthewbury, UT 40633",1954-11-21 14:05:59,07:d6:4d:d5:5b:9f,davidbrooks@lee.org,img/obama.jpg +Mrs. Christine Arias,225-11-1264,93738,"048 Green Shores Apt. 872 +Walkerborough, TX 33723-6183",1988-08-04 05:51:39,fc:0b:ca:74:48:4c,osilva@yahoo.com,img/obama.jpg +Brenda Mason,639-48-5587,92978,"78934 Jessica Estate +Smithfort, NH 19720",1971-10-23 15:59:04,b9:40:34:08:f3:4b,jasondyer@johnson.com,img/obama.jpg +Amanda Fisher,783-31-4611,69076,"61414 Seth Village Apt. 954 +New Carlos, IA 37327",1964-07-16 18:24:16,07:79:f8:3c:be:85,davidmurphy@yahoo.com,img/obama.jpg +Brittany Gonzalez,031-64-2721,59273,"906 Elizabeth Pike Apt. 764 +Perezmouth, KY 54687-7766",1924-11-25 13:45:25,b9:51:bc:eb:e2:e4,nathan76@yahoo.com,img/obama.jpg +Nicole Brown,857-23-2761,51299,"95767 David Throughway Suite 094 +Whitemouth, AL 16826-2727",2004-07-10 16:42:13,21:c5:3a:eb:4b:d4,rgonzalez@harrison.com,img/obama.jpg +John Stanley,809-04-5224,15194,"145 Patrick Points Apt. 725 +Jamesland, HI 41211",2011-02-04 13:40:43,79:ba:1c:fb:d2:03,lauren62@jones-dorsey.biz,img/obama.jpg +Andrea Phillips,809-35-4917,63273,"439 Suzanne Mount Suite 890 +West Richardchester, CT 80784-7406",1993-10-28 18:44:54,24:5a:9d:31:fa:a6,charlesbrewer@hotmail.com,img/obama.jpg +Gabrielle Madden,073-55-9820,02926,"4522 Christopher View +Port Donnafort, TN 09824-6335",1960-02-11 20:12:02,83:c7:d3:88:ae:9c,rowens@mcdonald.com,img/obama.jpg +Tracy Reyes,596-07-2501,35244,"48679 Garza Tunnel +South Kyle, AL 92943",1970-11-27 20:50:57,73:5e:85:b5:9e:83,cluna@nicholson-lopez.net,img/obama.jpg +John Clark,817-85-8572,96796,"8631 Brian Row Apt. 539 +West Alexandraborough, PR 57519",1987-04-25 04:40:51,07:1a:96:2b:55:19,pricesean@yahoo.com,img/obama.jpg +Frank Estes,744-82-6493,18956,"PSC 9457, Box 6086 +APO AP 81395",1931-03-08 06:51:38,c9:77:9f:44:76:98,johnwashington@long.info,img/obama.jpg +Michael Lee,730-93-6243,89271,"1901 Troy Station Apt. 104 +Stevensonborough, DC 76051-7506",1956-01-11 03:00:15,41:2a:6c:95:e3:f1,qwiggins@hotmail.com,img/obama.jpg +Zachary Fisher,416-21-5289,74318,"5712 Andrea Wall +South Monicaview, PR 23758",1928-09-27 03:19:17,47:87:9a:63:38:47,bheath@brown.net,img/obama.jpg +Rhonda Obrien,877-75-6729,64544,"58029 Harrison Inlet Apt. 389 +Brianshire, MH 97434",1927-04-03 03:25:22,c8:df:01:4a:f4:17,kellersusan@zamora-johnson.com,img/obama.jpg +James Richardson,886-83-9966,74208,"30229 Melissa Skyway +East Robert, NH 44367",1986-12-08 23:29:57,24:ae:ac:cb:06:68,taylormichele@newman.com,img/obama.jpg +Joann Mcmillan MD,311-84-1875,25694,"011 Jennifer Extension +Lake Alishaside, OK 91747",1973-12-29 05:35:39,47:9c:4b:82:71:1f,bruiz@gmail.com,img/obama.jpg +Darrell Munoz,708-21-9828,49993,"515 Hayes Tunnel Apt. 353 +South Jessicachester, DC 33516-1319",1966-08-03 15:23:41,ad:ba:ca:b7:92:86,angelajones@hotmail.com,img/obama.jpg +Jillian Smith,580-63-1556,97803,"36078 Patrick Springs Apt. 258 +Perezview, VI 77639-7896",1922-10-09 22:21:40,56:87:5b:7b:71:b4,matthewbailey@baker-freeman.org,img/obama.jpg +Dylan Jordan,103-15-2481,65412,"9477 Brianna Fields +West Erictown, FM 25163-7594",1920-12-14 02:16:43,a2:3a:b4:b3:46:19,steven11@yahoo.com,img/obama.jpg +Deanna Fuentes,894-82-7450,54245,"5219 Moore Trace +Tyroneport, AS 34741-9758",1918-05-03 16:18:23,42:ae:aa:89:cb:3f,jennifer05@gmail.com,img/obama.jpg +Kevin Holder,550-90-2591,53665,"Unit 8189 Box 2281 +DPO AP 79688-7001",1979-05-25 23:16:03,4b:15:e6:65:2c:d7,lcarpenter@gmail.com,img/obama.jpg +Kristina Russell,656-46-5177,76019,"0382 Nelson Spurs +New Andretown, CO 08213",1970-02-21 20:43:17,b4:3f:a2:e4:c0:b8,shawnreed@merritt.com,img/obama.jpg +Christine Mason,036-73-8581,32192,"USNS Richard +FPO AP 51491",1940-07-08 10:52:19,1e:64:c2:57:22:06,amcneil@yahoo.com,img/obama.jpg +Joseph Adams,672-38-3324,36599,"6587 Spears Park Apt. 982 +South Danny, TN 90385",1998-12-08 16:13:56,6f:2a:eb:b0:d7:00,breannalawrence@yahoo.com,img/obama.jpg +Joy Fletcher,567-91-4268,66834,"4313 Watson Light +Jennaton, VI 58967",1961-09-14 01:06:54,77:b4:62:c2:45:12,reedalyssa@hall.com,img/obama.jpg +Erica Smith,661-98-5645,00691,"432 Tina Center +North Paul, PR 76088-8473",1998-01-08 00:34:17,e6:3a:dc:be:e4:54,jennifer47@sanders.info,img/obama.jpg +Crystal Peterson,748-03-9353,15047,"2740 Brown Hills +Annettetown, PA 09595",2013-01-10 12:55:42,3d:e2:8a:e2:43:6c,jessicasmith@moore.com,img/obama.jpg +Scott Turner,570-93-2774,89454,"387 Anderson Port Apt. 521 +Thompsontown, IN 03468",1942-10-20 07:13:40,28:fb:74:7a:ba:2c,williamsdouglas@hotmail.com,img/obama.jpg +James Johnson,427-82-9637,62927,"PSC 5266, Box 2141 +APO AP 30792-5719",1977-05-01 22:56:49,85:70:82:08:a0:12,bsingleton@yahoo.com,img/obama.jpg +Alicia Johnson,843-20-6207,15894,"USCGC Miller +FPO AA 08398-0348",1979-01-24 15:49:20,9a:24:6f:a4:d0:47,lauriekeller@gmail.com,img/obama.jpg +Jonathan Alexander,397-09-1001,70099,"5586 Walton Ford Apt. 085 +Ortizhaven, UT 06929",1999-04-15 00:31:28,2d:e5:27:f5:25:6d,cody49@gmail.com,img/obama.jpg +Carl Brown,604-74-3763,86830,"8463 Danny Tunnel Suite 314 +Jeromefurt, TX 98834",1934-02-14 15:00:52,0e:85:d9:e2:86:b9,tspencer@yahoo.com,img/obama.jpg +Ashley Ferguson,373-40-2918,38505,"444 Anthony Road +Thompsonmouth, NM 78567-8133",1954-09-06 14:46:08,6d:d1:db:64:dc:04,bobbybrown@ramos.biz,img/obama.jpg +Elizabeth Hinton,846-77-5633,02739,"Unit 5280 Box 7964 +DPO AP 54709-0751",1923-12-04 13:59:26,55:71:3d:a9:01:57,zfuller@gmail.com,img/obama.jpg +Sharon Roberts,275-99-5413,68977,"623 Taylor Grove +Deborahchester, GA 64829",1986-08-08 19:19:15,b0:17:a5:74:b9:11,kennedymichael@yahoo.com,img/obama.jpg +Austin Stokes,326-51-5462,60173,"9363 Cox Club Suite 280 +Sanchezborough, UT 66588-6952",2008-02-11 22:39:33,9d:32:71:f1:d6:40,sullivancaleb@white.com,img/obama.jpg +Michaela Woods,685-54-8832,38676,"66391 Katie Wall Suite 003 +East Heather, DC 02977",2016-11-19 19:06:16,bb:07:dc:d3:53:be,schmidtjesus@mcconnell.net,img/obama.jpg +Jennifer Mack,444-90-2512,03828,"1530 Ann Prairie Suite 197 +New Theresamouth, WI 46715",1968-11-22 09:31:00,c7:c4:fe:72:95:69,owensrenee@yahoo.com,img/obama.jpg +Adam Strickland,032-61-7225,64358,"821 Cervantes Gateway Suite 664 +North Robert, IL 15845-5487",1985-11-27 21:34:36,9c:bf:d0:51:b0:bc,epatterson@gmail.com,img/obama.jpg +Chad Acosta,381-48-3179,81421,"66326 Holland Plaza +East Jessica, MI 28754",1935-10-24 11:38:12,2d:73:57:75:9c:5a,katherine77@roberts.com,img/obama.jpg +Timothy Ho,463-14-6648,82622,"PSC 4275, Box 6548 +APO AA 66655",1937-06-08 09:25:20,dc:28:05:83:f0:14,kimlivingston@atkinson.com,img/obama.jpg +Kathryn Walters,164-54-4424,76330,"049 Gina Well +Daniellemouth, WA 40259",1929-05-08 08:49:10,de:84:f2:d1:59:bf,allisonandrade@nelson.com,img/obama.jpg +Monica Herrera,848-81-1481,26654,"2516 Brown Fall Suite 885 +South Samantha, ME 39907",1985-02-04 14:21:21,d3:cb:39:2e:9a:84,cassietran@weaver.net,img/obama.jpg +Walter Johnson,483-53-9260,82622,"USNV Wilson +FPO AE 63163",1988-03-25 17:57:58,0f:56:5d:0b:91:85,jenniferjohnson@yahoo.com,img/obama.jpg +Joseph Gutierrez,711-63-1273,55740,"427 Jacqueline Wells Suite 335 +East Jessicaton, TX 95627-9291",1952-12-02 10:39:46,0a:66:f8:69:e4:a9,sherigeorge@hotmail.com,img/obama.jpg +Tracie Fuller,837-69-8701,91126,"90352 Edwards Fork Suite 366 +South Jesse, NE 25003",1972-01-19 06:26:29,37:64:56:2b:49:41,amanda21@yahoo.com,img/obama.jpg +Daniel Kennedy,665-16-3534,69096,"84493 Alicia Walks +Cantumouth, UT 82758",1958-11-21 01:56:41,ab:19:d9:c3:72:f9,alvaradodaniel@gmail.com,img/obama.jpg +Jasmine Butler,167-17-1715,83886,"22578 Kayla Path Apt. 188 +Lake Tracey, IN 38624",1969-08-15 21:23:49,57:8d:ca:f5:0d:6c,ievans@gmail.com,img/obama.jpg +Stephen Hanson,319-28-5382,91579,"74512 Angela Valley Suite 167 +Port Scottfort, KS 58069",1955-12-13 01:14:58,0c:5b:06:c6:b9:7d,milesrebecca@matthews.com,img/obama.jpg +Casey Ortiz,667-97-1901,57288,"754 Kimberly Mountain +South Brandonport, RI 33433",1923-03-04 18:31:05,b0:1a:0a:70:18:0b,martingibson@hotmail.com,img/obama.jpg +Sarah Vasquez,888-01-2376,23596,"USNV Peterson +FPO AE 65845-1755",1952-01-22 13:11:17,0f:43:34:fc:f2:e4,jacksonalexandra@fuentes-lynch.com,img/obama.jpg +Gabriela Nichols,133-55-8433,97653,"089 Turner Dam Suite 171 +South Rodneyburgh, PR 92844",1970-09-28 02:16:01,2a:c1:d0:b5:cb:52,joneschad@stevens.com,img/obama.jpg +Walter Barr,567-47-8521,37245,"5429 Dixon Drive +North Brandon, ID 27392",1943-02-28 08:14:40,20:c3:a4:ef:7f:d8,kristyhenderson@glover.org,img/obama.jpg +Molly Walker,297-85-4555,42945,"68421 Rodriguez Burg Apt. 913 +West Robert, AS 78012",1966-02-23 12:14:11,a3:ba:c5:f1:8c:49,brookswalter@bradley.com,img/obama.jpg +Christopher Rodriguez,642-67-5223,55814,"586 Holland Summit +Stephaniefurt, CO 30942-7747",2001-10-24 19:28:14,fa:96:10:09:e6:1f,michelleharrell@avila-webb.biz,img/obama.jpg +Joshua Yates,681-01-8534,02443,"65089 Turner Lakes Suite 159 +Sierrashire, ID 46690",1922-07-01 16:54:42,2f:33:47:05:13:db,buckjoe@young-guzman.com,img/obama.jpg +Andrew Terrell,741-64-1248,74349,"432 Schroeder Freeway Apt. 568 +Julieberg, NC 81425",1940-01-27 21:53:23,15:29:db:0b:8c:86,kaitlynmartinez@hotmail.com,img/obama.jpg +Brittany Buchanan,183-48-6884,10181,"316 Brian Lakes +Aprilville, NC 77358",1942-05-10 11:20:01,b8:bf:d3:08:9e:df,bradleyrobert@hotmail.com,img/obama.jpg +Jessica Marquez,860-21-9571,14644,"03805 Anita Turnpike Apt. 411 +Lake Danielleberg, AS 59210-8539",1959-07-13 08:24:38,70:87:46:3a:1b:1b,amy75@hotmail.com,img/obama.jpg +Mark Martinez,142-50-1080,04058,"50020 Adams Green +North Zachary, AZ 90757-9367",1976-03-30 14:57:19,49:74:28:12:7a:d8,joshua73@yahoo.com,img/obama.jpg +Erika Turner,330-33-8028,49464,"5461 Maria Mills +South Christopherland, IA 97046",1947-05-31 12:55:47,ab:8e:a8:13:ea:f9,hjohnson@gmail.com,img/obama.jpg +David Watson,071-24-9511,62004,"19206 Wagner Loaf Suite 444 +Stephensonton, KY 81807",1999-11-29 09:00:28,15:03:31:40:6d:df,nixontimothy@marshall.com,img/obama.jpg +Julia King,406-23-0630,40291,"293 Crane Meadow +Cherylmouth, VA 62752",1959-11-10 09:03:29,c5:97:3e:d9:9a:0e,bowersdestiny@kelley-duncan.com,img/obama.jpg +Michelle Perez,359-17-7349,97809,"760 Salazar Causeway Apt. 850 +North Coryville, NH 01608-7175",1948-04-23 05:36:59,b5:54:e5:66:67:42,wdavis@gmail.com,img/obama.jpg +Anthony Sullivan Jr.,316-90-1412,53227,"056 Villegas Cliffs Suite 048 +Benjaminmouth, KY 99693-5512",1956-05-22 01:32:08,33:7b:41:3b:4a:3a,holly75@gmail.com,img/obama.jpg +Luke Suarez,784-09-7907,89308,"014 Gonzalez Rapid +East Nicole, IN 72016",1939-03-06 16:52:17,67:eb:ac:c0:d1:88,lukechen@warner.com,img/obama.jpg +Calvin Thomas,548-13-9931,78140,"784 Oconnor Glen Apt. 532 +East Charlesberg, MT 88068",1918-10-29 00:43:08,4e:38:12:a3:82:30,phyllis40@roberts.com,img/obama.jpg +Anthony Dodson,636-36-4222,27612,"Unit 0130 Box 8084 +DPO AA 81777",1938-12-22 10:09:52,31:5f:8c:42:72:0b,williamsontina@snyder-smith.com,img/obama.jpg +Lisa Doyle,069-62-6362,29889,"22294 Valdez Wall Apt. 449 +Kennethport, IA 79075",1979-01-18 01:28:43,c4:4a:72:db:6c:c9,sfrey@gmail.com,img/obama.jpg +Colin Lopez,232-72-5901,40598,"7845 Theresa Isle Suite 702 +Josephfurt, TX 60865-1243",1955-12-19 18:19:06,fb:e6:da:cc:ca:9a,patricia82@anderson.net,img/obama.jpg +Matthew Mcintosh,377-60-6929,50961,"258 Ryan Divide Apt. 150 +Austinview, IN 85538-0494",2016-04-21 07:50:40,be:df:aa:52:b0:7b,thomas22@hotmail.com,img/obama.jpg +Tammy Green,387-13-2786,66504,"5841 Ellis Light Apt. 552 +Wardstad, FM 98364-4854",1991-06-10 07:01:02,87:f9:b8:89:f3:ca,james40@barnett.biz,img/obama.jpg +Elizabeth Anderson,394-45-7953,58297,"75077 Charles Burgs Suite 492 +Chrisside, NJ 09048",1987-06-08 16:54:23,f8:62:09:67:e3:b1,justin52@harris.com,img/obama.jpg +Mrs. Danielle Church,139-29-3923,35653,"06542 Andrea Forge +South James, MH 94016",1968-06-04 02:40:47,84:9c:c5:27:ec:bd,kevinwilliams@orr-walton.com,img/obama.jpg +Kenneth Patton,055-83-7396,68939,"78019 Andrew Brook Suite 695 +Faithport, NH 60942-2910",2004-01-05 16:12:52,70:c9:2d:17:21:b9,wrivera@neal-carter.net,img/obama.jpg +Sandra Grant,774-32-6351,17117,"6858 Jeffrey Terrace Apt. 875 +East Jessica, CA 28892",1995-09-29 23:56:07,c0:ca:d5:a9:a3:79,xsmith@jones-williams.com,img/obama.jpg +Antonio Wilcox,264-72-8751,17080,"0276 Price Garden +New Nancyberg, LA 31030",1943-09-07 13:40:16,04:f5:1a:30:33:84,donna55@yahoo.com,img/obama.jpg +Danielle Neal,899-84-2010,61362,"66450 Sanchez Prairie +South Zacharyberg, TN 67744-9996",1979-05-13 22:44:14,a2:ab:fd:a7:7e:19,matthewhudson@brown.com,img/obama.jpg +Brian Rodriguez,169-12-1022,62911,"6301 Lee Squares Apt. 076 +Bassside, RI 09467",1961-04-23 18:10:49,05:7d:fc:1c:29:65,housegina@hotmail.com,img/obama.jpg +Michelle King,882-12-8185,85305,"537 Patricia Lock +Port Emily, HI 49031",1962-01-18 10:02:18,a7:91:e8:be:3b:1a,pierceteresa@hotmail.com,img/obama.jpg +Carla Fisher,347-51-1489,57232,"07663 Campbell Ports Apt. 735 +North Albert, ND 65430-5015",1921-08-04 10:05:00,d3:40:c4:37:23:ba,alvareztimothy@yahoo.com,img/obama.jpg +Stanley Miles,284-39-6651,94620,"5668 Mcbride Pines +Gabrielleshire, UT 84565",1921-10-08 18:27:50,1b:b5:2c:b9:2d:fb,hreed@yahoo.com,img/obama.jpg +Mitchell Thomas,357-23-4915,36881,"USNS Moore +FPO AE 78780-5407",2012-04-02 11:14:14,dd:3d:81:8b:a4:0f,richardjames@yahoo.com,img/obama.jpg +Tyler Rivera,728-52-7437,75896,"394 William Inlet +Christophermouth, SC 06839",1940-10-21 05:19:16,2f:b9:1d:fa:91:55,sharirose@taylor.com,img/obama.jpg +Roberta Hill,725-05-9099,32864,"425 Garrison Route Suite 586 +Josephshire, ID 18031-9660",1948-05-18 07:17:38,6e:89:94:33:ce:ce,matthewferguson@hotmail.com,img/obama.jpg +Kimberly Lawson,823-18-9130,13750,"PSC 4232, Box 2334 +APO AE 69225",1948-02-17 07:52:10,e4:29:6f:27:bc:31,christopher61@brown.com,img/obama.jpg +Jonathan Coleman,056-33-8645,04519,"249 Peterson Forges Apt. 011 +North Michele, GA 51849",1923-11-12 18:09:26,eb:74:68:c6:20:4a,ashley15@yahoo.com,img/obama.jpg +Jennifer Griffin,209-42-3890,49220,"777 Travis Views Apt. 540 +Andrewfurt, PW 39228",1950-04-01 06:11:12,2b:df:7d:7a:87:e9,margaretwilson@rodriguez-le.info,img/obama.jpg +Jacqueline Reed,693-61-2020,76083,"83705 Valerie Overpass Suite 535 +New Xavierton, SD 52870",1986-07-02 02:30:19,16:27:ad:89:c1:3b,smithsara@yahoo.com,img/obama.jpg +Tiffany Brewer,467-32-3642,34453,"801 Carrie Isle Apt. 308 +South Tiffanyfurt, CO 64165-4147",1936-08-29 17:26:00,ca:f3:bf:11:9a:07,milescraig@garner.org,img/obama.jpg +Gabriela Sanchez,190-24-2852,92092,"929 Bradley Alley Apt. 656 +North Alexandrashire, NV 78109",1927-02-13 07:18:02,22:c3:7b:b2:f7:1a,nsmith@yahoo.com,img/obama.jpg +John Singleton,523-69-1836,53063,"654 Clayton Track +Perezland, ND 01519-4905",2014-12-01 16:03:20,3c:29:ca:85:81:b4,marcus87@yahoo.com,img/obama.jpg +Kevin Spencer,431-88-4744,75151,"8418 Moore Knoll +Smallville, AZ 37050",1972-06-23 10:55:14,1c:a4:b8:a1:31:3c,samuel81@wilson.com,img/obama.jpg +Tanner Rodriguez,410-60-2885,77788,"USCGC Gonzalez +FPO AE 57438-2144",1937-08-27 00:24:21,9f:6a:2b:fc:33:29,angela52@yahoo.com,img/obama.jpg +Katrina Mendoza,143-36-9071,39131,"9318 Dixon Plains +New Lacey, MA 65133",1977-04-08 21:18:24,0f:05:e5:43:a4:9f,valerie19@white.com,img/obama.jpg +Gary Lee,560-81-2482,45691,"0490 Haley Mission Apt. 072 +Youngville, PA 81251",1997-12-14 10:06:19,74:3c:34:52:9a:02,taylor93@mccullough-mccoy.com,img/obama.jpg +Anna Ford,150-54-7649,05146,"71485 Ingram Stream +West Meghan, PW 10252-3207",1938-12-02 12:27:17,eb:6d:e9:54:01:73,rojasstephen@gmail.com,img/obama.jpg +Michael Lopez,879-93-4534,14755,"529 Jamie Street +Thompsonhaven, FM 00201",1934-01-06 10:10:13,da:a6:86:6d:70:62,tammythompson@ortiz.com,img/obama.jpg +Roy Martinez,108-35-8293,02230,"0956 Stephanie Trace Suite 882 +Port Benjamintown, WY 37113-8186",1986-10-07 23:13:20,9a:07:c7:8f:cb:e0,patricia52@yahoo.com,img/obama.jpg +Nicholas Coleman,318-88-0098,09301,"USCGC Petty +FPO AP 26232",1934-12-25 09:53:23,eb:34:eb:bd:e8:da,ewhite@knapp.net,img/obama.jpg +Matthew Turner DDS,868-93-6637,39995,"10909 Mark Divide Suite 591 +Tuckerborough, IA 87279-0065",2000-05-06 02:03:03,5c:95:2d:35:5d:a9,gregoryanthony@yahoo.com,img/obama.jpg +Frank Hayden,849-96-2673,80909,"753 Rodriguez Stravenue Apt. 955 +South Kimberly, AZ 96027-1184",1971-09-05 07:57:43,19:68:78:c1:05:a8,martinezjames@yahoo.com,img/obama.jpg +Rebecca Buck,169-32-6127,26100,"0742 Steven Wall Apt. 465 +Brianview, KY 14078",1948-04-22 13:05:07,cb:53:06:68:f4:9a,victoriaclark@hotmail.com,img/obama.jpg +Ashley Turner,199-72-0623,04792,"205 Laura Wells +Hayleymouth, WI 87659-8249",2004-08-10 07:38:38,02:ae:d8:a1:bc:88,dtorres@gmail.com,img/obama.jpg +David Nelson,753-04-3490,08564,"912 Heather Overpass Apt. 590 +Pierceland, PA 06589-8740",1948-09-01 23:30:37,3c:71:17:e2:55:d6,ssullivan@barrett.biz,img/obama.jpg +Mark Rice,081-28-3227,66154,"33148 Harold Islands +Nealfort, OR 57596",1983-11-01 05:05:45,1d:40:c1:ff:61:42,zduncan@gentry.com,img/obama.jpg +Meredith Davidson,643-96-2625,11766,"74042 Karen Ford Apt. 881 +Amandaside, MD 63784",2007-09-04 05:52:12,11:4c:df:d7:6c:3b,aprilroberts@gmail.com,img/obama.jpg +Yvonne Bond,183-57-4779,20499,"0769 Brittany Port +North Stevenstad, CT 93000",2001-08-01 10:20:06,2e:90:fa:97:58:5e,carlosjacobs@summers.com,img/obama.jpg +Taylor Spencer,242-37-3840,09219,"7950 Garcia Loaf Suite 387 +South Rebecca, OH 23381-5409",2005-09-28 13:42:21,a7:32:eb:1e:52:cf,david89@parker-king.com,img/obama.jpg +Justin Ewing,169-41-6775,86521,"PSC 7928, Box 6835 +APO AE 71785",2007-08-27 07:20:53,ea:57:b1:a8:9a:db,imcgee@burns-garcia.biz,img/obama.jpg +Amber Powers,713-60-3687,91448,"PSC 1451, Box 0261 +APO AP 72554-2426",1983-10-31 14:39:58,b7:ce:d2:2e:2d:41,patriciawade@yahoo.com,img/obama.jpg +Kenneth Harvey,256-13-7129,26707,"5047 Carlos Valleys +Lake Michaelport, CT 72479",1932-09-13 07:49:09,9f:cd:0b:7a:75:4f,melissa65@yahoo.com,img/obama.jpg +Bradley Hernandez,547-26-2025,55385,"0988 Herrera Prairie Suite 620 +New Barbara, NE 14489-2156",1995-01-06 06:10:24,17:d7:bf:a1:d4:fe,kayla10@hotmail.com,img/obama.jpg +Timothy Brown,001-30-0844,97942,"584 Romero Orchard +New Curtis, IA 25489",1956-07-16 06:46:21,f2:2f:eb:72:e2:bd,jonathan87@hotmail.com,img/obama.jpg +Jeffrey Curry,556-77-4322,97340,"414 Elizabeth Viaduct Suite 316 +Lake Abigailport, MA 67922-7100",1924-01-23 16:38:31,bb:20:e8:96:42:77,wilsonmary@gmail.com,img/obama.jpg +Julia Perkins,191-99-9548,63283,"Unit 9122 Box 8872 +DPO AE 15341-9310",1968-10-18 12:41:06,a9:94:0d:a7:36:be,powellsally@hotmail.com,img/obama.jpg +Daniel Humphrey,051-77-2268,96187,"651 Kenneth Flat Suite 435 +Port Jason, TX 99954-1083",1942-04-21 10:56:40,ec:25:5a:d6:9a:58,timothyrios@yahoo.com,img/obama.jpg +Megan Moore,813-18-6145,57544,"15030 Kimberly Underpass +Larsonville, MS 59382-7431",1946-06-01 17:32:41,28:04:27:44:10:c7,katherine78@nichols.com,img/obama.jpg +Stephen Caldwell MD,120-90-1290,22281,"54315 Jones Forks Apt. 508 +Emilyberg, MI 82073",1919-10-05 07:10:12,80:1e:25:97:8a:fb,james65@gmail.com,img/obama.jpg +Thomas Phillips,667-91-9632,12990,"4743 Wilson Well Suite 520 +East Joseph, SC 55872-3986",1962-02-01 06:09:43,19:ed:82:1d:93:09,brian49@gmail.com,img/obama.jpg +Teresa Wolfe,857-92-8288,81389,"416 Fields Meadows +West Felicia, MA 88964-4890",1974-12-29 10:34:17,8e:79:e1:12:27:d5,tuckermichael@thompson-martinez.com,img/obama.jpg +Joseph Brooks,712-04-7039,00767,"2928 Jimmy Prairie +North Stanley, LA 19099-9374",1924-02-18 11:27:11,90:b1:bc:70:ed:6b,philipjohnson@williams-christensen.com,img/obama.jpg +Kristen Sharp,387-22-4019,72820,"9041 Price Burg +Kathleenmouth, KY 30945-4407",2017-03-19 05:44:29,9e:9e:19:89:4f:2f,tashatran@gmail.com,img/obama.jpg +William Fisher,805-55-8941,47584,"2198 Victor Hills Apt. 571 +Taylorfurt, GA 60789",1991-03-26 02:52:03,76:95:41:7f:2e:db,caseydawson@mejia-paul.com,img/obama.jpg +Damon Banks,441-33-7173,32497,"694 Katrina Turnpike +Taylorburgh, WY 14076",1931-03-06 21:18:34,f1:23:ef:2e:72:03,shawnharrell@sanchez-rose.org,img/obama.jpg +Julie Anderson,114-15-1509,73546,"2562 Cook Brooks Suite 116 +Port Rachel, MI 06814-4567",2015-04-24 07:04:01,5c:7a:1a:3d:6b:d7,kimberlyhoward@hotmail.com,img/obama.jpg +Cynthia Perry,002-85-0141,46977,"5959 Walker Causeway +Carolberg, HI 56371-2258",1936-02-12 03:56:15,db:a0:fd:0a:64:b4,swagner@hotmail.com,img/obama.jpg +Mrs. Brittany Wilson DDS,003-62-1778,19025,"794 Paige Glens Suite 280 +Miguelstad, OK 86939-7748",1955-03-17 21:54:38,d6:74:e9:3b:dc:20,cjames@hernandez.com,img/obama.jpg +Richard Richardson,232-34-1387,30759,"310 Erin Haven +Olsenville, NY 68689",2001-01-07 00:30:25,db:3a:e3:dd:84:0b,pollarddrew@fernandez.net,img/obama.jpg +Mark Hall,361-54-1592,24511,"86125 Kevin Isle Suite 571 +Claystad, ND 61925-2267",1927-10-21 07:19:39,40:34:0d:bd:23:f6,xramirez@yahoo.com,img/obama.jpg +Nicole Mccoy,078-63-8649,14406,"38649 Garcia Knolls +North Jennytown, MP 45168-8574",1942-10-02 08:21:30,ea:99:89:3e:0e:b8,emarks@richardson.com,img/obama.jpg +Monica Davis,630-67-9285,97570,"26180 Combs Village Apt. 046 +North Sonia, FM 86997",2010-12-07 04:00:47,00:6c:f7:cb:28:03,hallkimberly@davis.biz,img/obama.jpg +Debra Tapia,371-33-4923,31439,"371 Morales Freeway +East Jessefurt, NY 24139",1966-02-08 22:44:06,18:17:ae:a4:15:cf,timothy04@calhoun-pratt.info,img/obama.jpg +Cheryl Garcia,422-40-6779,08495,"512 Kaylee Dam +New Josephstad, IN 73403-1386",1984-09-30 19:42:46,f7:9f:03:d1:29:64,matthew01@case-ball.info,img/obama.jpg +Felicia Carpenter,432-26-8764,59609,"27203 Browning Cliffs +Heatherburgh, NH 15897-9452",1992-05-30 07:11:52,f1:a3:bc:97:b8:0f,janicehess@harvey.biz,img/obama.jpg +Andrew Page,665-72-7601,89643,"Unit 9450 Box 3308 +DPO AE 26036-1694",1966-01-13 02:22:19,b2:b8:d4:d9:f5:ac,davidlang@yahoo.com,img/obama.jpg +Victoria Martin,166-09-4753,34332,"1736 David Isle Suite 903 +South Patricia, NJ 43505",1944-01-13 08:42:49,48:d7:1a:33:93:30,gordonanthony@holland-taylor.org,img/obama.jpg +Lindsey Wong,758-47-2680,80622,"16413 Matthew Knoll +Tracyfurt, NE 55731-9440",1994-01-17 21:40:55,ab:1e:b4:fc:a3:7f,gbarker@ross.com,img/obama.jpg +Justin Velazquez,538-18-3533,85405,"23646 Gillespie Cape Apt. 727 +Christinaside, OR 25487",2006-12-20 12:43:56,45:da:14:c9:c2:14,brownstephanie@watkins.com,img/obama.jpg +Stacey White,818-76-1081,64024,"7401 Guerra Ford +Cassidyview, AS 68951-9142",1917-06-25 10:15:57,99:30:32:9f:33:76,knguyen@yahoo.com,img/obama.jpg +Danny Ward,520-49-9054,61488,"61927 Welch Turnpike +Jonestown, NE 60604-2604",1967-02-26 06:32:39,dc:09:4a:27:12:a9,susandiaz@alvarez-gillespie.com,img/obama.jpg +Madeline Martin,156-76-9801,46283,"05650 Amy Courts Suite 236 +Stephaniemouth, AL 72592-3462",1975-11-12 08:38:26,49:a7:b3:7c:2d:d4,lisaharper@reynolds.com,img/obama.jpg +Sarah Beck,100-02-4012,90269,"528 Sean Plaza Suite 289 +Beasleyberg, NE 80650",1919-08-26 12:46:00,35:4a:e6:bc:a7:fd,michaelbenson@gmail.com,img/obama.jpg +Melanie Johnson,533-91-2995,19909,"51754 Morgan Valleys +West Andrew, MO 39197-5514",1923-10-20 04:56:29,0a:1b:36:35:55:5a,pgrant@yahoo.com,img/obama.jpg +Valerie Mitchell,201-97-7262,63149,"206 Keith Forks Suite 659 +Ashleychester, NC 42181",1950-03-10 19:02:52,81:f8:48:4e:37:96,briantorres@gmail.com,img/obama.jpg +Maria Larson,305-49-0407,94174,"8249 Timothy Plains Suite 792 +South Gregorystad, NC 50313",1947-11-29 12:21:35,3a:b0:f7:22:09:45,ugrant@gmail.com,img/obama.jpg +Bonnie Walker,886-72-5825,91521,"3565 Andrew Orchard +West Kylie, MT 17437-0829",1965-10-30 01:37:29,b8:db:8c:b5:12:62,michaelgreen@orr.com,img/obama.jpg +Jordan Mcgrath,107-82-2124,22568,"Unit 6067 Box 2530 +DPO AP 50533-1269",1971-07-19 12:29:54,15:d4:ab:bf:6b:3d,carolynsmith@gmail.com,img/obama.jpg +Courtney Garcia,834-96-0515,23622,"62961 Mathews Mountain +Youngland, AZ 02410-8010",1960-12-11 19:57:22,28:4f:f0:1b:9c:8d,ogriffith@hunt.com,img/obama.jpg +Jeffrey Mason,198-72-2019,33974,"4462 Houston Loop +South Jennifermouth, LA 93128",1937-07-21 00:28:20,69:93:31:e0:0d:a9,jonesgary@yahoo.com,img/obama.jpg +Mary Lee,509-76-7744,09074,"5617 Scott Corners +Morriston, NJ 27991-5431",2006-09-14 09:53:21,93:da:e3:cd:0a:61,julie18@gmail.com,img/obama.jpg +Brittany Smith,761-98-4774,18300,"859 Jackson Square +Garretthaven, MT 59231-2380",1967-03-12 02:12:28,eb:40:1e:a5:85:f5,anthonysolomon@gmail.com,img/obama.jpg +Ryan Rodriguez,346-07-5176,39538,"476 Rice Ridge +Hollandburgh, VT 11357-8043",1972-02-01 22:51:05,ca:82:49:4a:a2:81,jgalvan@gibson-church.info,img/obama.jpg +Eugene Beck,809-68-0518,60877,"1778 Jackson Parkways +Benjaminchester, WV 80096",1919-12-10 09:41:24,b1:bb:30:4c:77:8a,erinlane@gmail.com,img/obama.jpg +Gina Hoffman,709-25-1790,04059,"3891 Gary Park +North Brenda, DC 19069-3978",1959-06-19 23:38:55,0c:16:63:2c:35:0b,luis02@yahoo.com,img/obama.jpg +Laura Maynard,229-64-4649,37465,"7504 Michael Circle Suite 944 +Lake William, IL 37264",1968-10-16 10:27:39,64:47:d5:a1:49:52,fergusonvictoria@hotmail.com,img/obama.jpg +Tony Jennings,862-68-3392,10054,"75268 Sean Passage Suite 489 +Simmonsberg, MT 45861-0189",1989-10-17 19:32:28,ec:f0:2a:b7:38:f0,meyersjason@sullivan-smith.info,img/obama.jpg +Antonio Shea,577-02-7823,20623,"0882 Young Lakes +Gaytown, PW 03866-2981",1997-03-05 12:12:16,50:1f:a0:12:c4:cc,nancy46@joseph.com,img/obama.jpg +Kimberly Lee,351-68-4263,32337,"7002 Davidson Route +Schmidtfurt, MO 45440-8786",1949-01-29 16:03:27,8b:09:cf:a5:17:fe,qmckee@gmail.com,img/obama.jpg +Stephen Russell,672-10-7160,52120,"9379 Macias Canyon Apt. 095 +Jeremychester, DC 74026",1981-03-12 23:03:02,01:31:61:1e:6e:9a,samanthalee@fitzpatrick.info,img/obama.jpg +Leslie Ortiz,277-37-9701,94638,"6697 Lisa View Suite 789 +Lake Briannaville, OH 27532",1936-04-29 20:34:43,bb:30:cb:c3:44:91,kingbrooke@hopkins-griffin.com,img/obama.jpg +Charles Hansen,009-93-9011,60289,"604 Moore Loop Apt. 641 +North Jason, AR 60724",2006-08-02 14:58:36,9f:a3:bb:c9:10:98,michellestevens@yahoo.com,img/obama.jpg +Anna Savage,663-37-4991,21750,"2688 Erica Station Suite 349 +Simmonsville, DC 42274-4948",1925-12-15 15:28:30,11:e0:ff:08:88:43,tinahoward@berger.com,img/obama.jpg +Michael Knight,046-56-3885,83869,"142 Schultz Route +Wellstown, OR 46998",1921-03-20 17:36:02,8c:b0:ef:95:8e:50,morenodavid@gmail.com,img/obama.jpg +Heather Vasquez,884-74-9476,30565,"8524 Rita River +Robertsport, CA 08663-6259",1972-09-09 03:25:58,25:e0:54:d6:24:0f,alexisjackson@griffith.com,img/obama.jpg +James Villarreal,121-04-4588,41323,"953 Phillip Fall Suite 255 +Stephaniebury, KY 73002-1137",2014-06-18 10:39:54,1e:4e:75:c4:0b:84,holly63@young.com,img/obama.jpg +Carla Davis,120-33-5441,91408,"804 Moreno Shore Apt. 210 +Port Franktown, ND 74384",1970-03-07 07:50:06,09:44:53:40:53:ad,mathisapril@white.com,img/obama.jpg +Michael Ortiz,568-40-1311,24417,"8905 Jessica Streets Suite 954 +North Ellenbury, TX 30088-3849",1931-10-06 22:18:59,ca:a2:ef:83:4f:cc,morrismichael@lloyd-burch.com,img/obama.jpg +April Little,715-92-5346,97228,"883 Petty Brooks Apt. 919 +South Amyland, TN 02829-9872",2001-10-04 23:00:54,b9:f2:cf:ad:69:e0,uburns@thompson.org,img/obama.jpg +Elijah Garcia,800-04-3168,58205,"4615 Marcus Avenue +Lake Christinachester, IA 78796",1942-08-22 03:59:33,0e:98:49:1e:73:ec,meyerjoseph@hotmail.com,img/obama.jpg +Luis Hicks,485-21-4515,14119,"1984 Burch Circles Apt. 836 +Katherinechester, NV 52143",2007-09-29 08:22:31,2c:5c:85:cc:d5:a4,barnettpatricia@yahoo.com,img/obama.jpg +Bryan Thomas,889-32-7623,48723,"975 Megan Squares +Andersonside, IL 48817-2495",1999-01-15 02:47:05,24:f1:70:9c:60:7b,robrien@boone-cunningham.net,img/obama.jpg +Tracy Mcdonald,292-38-9425,79983,"31062 Aaron Ports Suite 285 +Olsonstad, GU 08938-4296",1983-04-05 02:39:42,d1:fe:9e:1e:0d:ea,kimberlyknight@yahoo.com,img/obama.jpg +Jessica Bailey,895-72-9272,36400,"59352 Murray Lake Apt. 255 +Roytown, MD 97109",2015-09-03 21:24:19,27:bf:ca:67:8c:f4,karenliu@yahoo.com,img/obama.jpg +Martin Jackson,855-63-1096,58377,"55829 Kemp Vista Apt. 702 +Port Mariah, NJ 84313",2003-12-13 23:10:35,8b:e2:39:be:16:78,ericajoseph@mathis-watson.org,img/obama.jpg +Christy Schroeder,574-25-0490,84283,"52563 Sharon Station Suite 466 +Jeffreyfurt, AZ 25223",1973-09-03 22:01:47,3e:9e:d4:58:f2:d3,belljessica@rogers-graves.com,img/obama.jpg +Theodore Chang,016-03-4455,01736,"129 Kyle Club +East Alexander, SD 39611",2010-06-09 11:56:15,81:de:7b:54:05:44,wlambert@mejia.info,img/obama.jpg +Sara Howe,116-34-9235,10419,"76030 Bartlett Crescent +Port Roystad, AK 64069-9831",1990-04-30 06:55:07,c9:d9:91:76:f7:dc,moralesgregory@gmail.com,img/obama.jpg +Carol Young,614-93-7979,27874,"62199 Hickman Shoal Apt. 725 +Swansonborough, WY 78024-4164",1921-10-31 10:57:16,b4:d0:de:4d:53:b8,james49@gmail.com,img/obama.jpg +Wesley Sosa,838-88-9505,31498,"5887 Alejandra Stream Suite 858 +North Timothy, FL 37476-2079",1989-12-14 09:12:01,ac:97:06:c3:34:6a,opatel@jackson-cowan.com,img/obama.jpg +Pamela Cole,168-61-0740,27241,"8934 Howe Hill +South Jeremiah, OK 23507-5810",1919-08-31 17:28:32,17:80:b9:4a:c4:4e,tiffanymorse@young-chaney.org,img/obama.jpg +Kenneth Kelly,038-38-9598,98182,"538 Eric Turnpike Apt. 047 +West Katherineside, AL 07569",1925-07-27 10:07:56,ea:c1:27:5d:bd:10,kimberlyvelazquez@yahoo.com,img/obama.jpg +Brandon Smith DVM,178-28-0612,67137,"0667 Webb Vista Apt. 186 +Jamesmouth, MI 37905",1994-09-05 07:10:07,c4:a9:0d:24:45:55,sharonjenkins@hotmail.com,img/obama.jpg +Rebecca Sheppard,335-18-8872,70390,"95730 Ramirez Common +Austinfort, MD 50386-3474",1988-01-12 05:47:05,ac:59:4c:d5:59:02,averytaylor@russell-murphy.com,img/obama.jpg +James Dorsey,558-76-1329,99664,"594 Lisa Expressway Suite 278 +Josephville, MI 77823",2017-04-13 02:39:03,ba:fd:b6:bd:2c:35,sfrench@yahoo.com,img/obama.jpg +Jennifer Hawkins,789-17-6286,15445,"95173 Hunter Centers Apt. 197 +Tiffanyhaven, SC 16324-8312",1946-11-17 03:28:28,5d:7e:29:40:6c:51,robin95@gmail.com,img/obama.jpg +Stephen Ray,572-78-0908,22249,"28906 Garcia Freeway Apt. 101 +Williamsside, KS 24764",2005-03-28 21:03:46,d7:35:81:83:f8:dc,vhughes@freeman-fisher.com,img/obama.jpg +Dr. Terri Pugh,542-46-4760,98072,"17864 Craig Extensions +Wrighttown, ME 13546-8498",1968-05-25 10:34:10,04:1d:44:ab:3c:ae,williammeyer@patton-mann.com,img/obama.jpg +Ronald Farley,208-35-5705,32148,"97060 Martinez Run Suite 244 +Victorbury, AK 72415-6777",2012-05-18 06:35:50,73:77:f5:7b:e2:7c,njordan@webb.com,img/obama.jpg +Paula Fuentes,711-54-9382,19320,"3390 Bailey Falls Apt. 445 +North Mary, MN 84985-7489",1934-07-01 17:14:43,86:29:bd:5c:8a:c4,marcus84@cox-jones.com,img/obama.jpg +Glenn Lambert,339-92-9647,30736,"880 Williams Locks Suite 766 +Port Gina, NC 70857-6356",1943-12-22 02:25:02,74:3b:78:80:c8:51,pinedasusan@parsons-bryant.com,img/obama.jpg +John Wells,415-37-0975,62004,"3371 Holmes Shoals +Kimberlyburgh, TX 13497",1940-06-16 18:30:15,21:c0:45:b1:0c:3c,hartwilliam@thompson-raymond.com,img/obama.jpg +Deborah Franco,382-25-1562,20392,"Unit 1941 Box 0726 +DPO AA 62705-7133",1972-08-13 04:21:21,3f:11:13:73:1c:a5,john40@yahoo.com,img/obama.jpg +Caitlyn Bryant,827-64-4766,20029,"4212 Amanda Throughway Apt. 033 +New John, VA 46408",1959-10-27 18:37:58,e1:98:89:78:64:dd,john25@yahoo.com,img/obama.jpg +Harold Allen,771-61-5701,87830,"42783 Tammy Villages +Christineland, KY 12960-6965",1964-02-19 16:09:50,96:58:a1:a1:36:f3,james37@gmail.com,img/obama.jpg +Charles Wolf,533-97-5653,97995,"616 Nancy Village Apt. 594 +Smithville, SD 61831-7529",1946-03-28 14:28:23,aa:7b:39:31:31:e5,jasonwalton@yahoo.com,img/obama.jpg +Stefanie Gordon,631-18-6252,36676,"92954 King Knoll Apt. 962 +Port Ronaldtown, OR 08970",1975-02-12 22:31:16,eb:b1:89:90:23:d6,williamsheather@mclean.biz,img/obama.jpg +Christopher Allen,370-59-4937,43119,"701 White Park Apt. 130 +Victorialand, AR 50839-5178",1943-12-11 05:27:21,ba:a8:a0:80:e5:74,chavezscott@gmail.com,img/obama.jpg +Ashley Porter,397-47-6593,36597,"5080 Ellis Views Suite 883 +South Melissaborough, LA 52087-6370",1983-10-03 20:13:01,9f:76:d7:dd:f6:8d,benjamin47@jones-cook.com,img/obama.jpg +Kelly Robinson,674-83-9211,99668,"75104 Mary Branch Apt. 030 +West Cynthia, FL 32368-0347",1981-10-12 16:36:26,91:81:2d:b7:e0:1d,fryjohn@gmail.com,img/obama.jpg +Gary Bradley,315-21-5160,95811,"69920 Daniel Lakes Suite 880 +Lake Nicole, MO 97240-3405",1976-07-24 08:59:26,4f:2e:df:f9:40:a9,washingtonmary@hotmail.com,img/obama.jpg +Susan Rodriguez,349-26-5655,01903,"PSC 4368, Box 8732 +APO AP 47749-9523",1983-09-13 19:29:01,33:49:56:be:2c:f4,cgraham@henry.com,img/obama.jpg +Jonathan Cook,698-99-7288,86067,"0600 Brian Crossroad +Heatherland, ME 07342-6968",2013-07-03 22:46:17,81:61:cd:4a:1c:3b,timothy11@horne-davidson.com,img/obama.jpg +Gregory Williams,147-65-1569,36724,"4006 Myers Squares +Lawsonbury, MA 15962",1984-10-21 13:58:52,08:5d:90:88:13:8f,welchmary@clark.com,img/obama.jpg +Mark Macias,465-80-9265,06475,"2934 Cindy Junction Apt. 223 +West Steveton, CO 40558",2009-04-28 20:46:29,37:53:bf:00:58:a0,grantrobertson@ballard-kelley.com,img/obama.jpg +Kristine Smith,833-60-7754,95825,"7914 Paula Circles Suite 582 +Jonchester, AL 47768",2002-10-14 15:42:45,f1:bf:67:f5:08:5d,tylerboyle@hotmail.com,img/obama.jpg +Natalie Stanton,503-49-4345,49037,"44763 Vasquez Rapid Apt. 779 +West Donald, MO 61045",1942-08-05 17:43:22,b8:0b:51:ba:7b:9a,hammondchristine@yahoo.com,img/obama.jpg +Michael Miller,056-34-0095,74567,"038 Jermaine Forest +Baileybury, OK 77763",1964-09-06 15:01:42,5d:39:88:53:0e:9e,evan26@cruz.com,img/obama.jpg +Paul Richardson,633-56-0788,77929,"07196 Watkins Pine +Annefort, KS 71039-9292",2016-10-28 05:53:54,a9:71:7a:0d:0f:89,smithsylvia@hotmail.com,img/obama.jpg +Jamie Solomon,208-99-9446,43122,"2114 Barr Lights +East Sharontown, NE 33558-8905",1958-01-25 07:22:53,82:bf:88:68:f0:c8,masondonald@hotmail.com,img/obama.jpg +Lorraine Coleman,210-99-4701,65685,"PSC 5877, Box 8088 +APO AE 97400-5201",1939-05-09 19:34:21,69:d6:a5:f3:58:96,campbelljessica@castro.biz,img/obama.jpg +Christopher Anderson,149-84-8771,35683,"768 Benson Radial Suite 777 +Stevensport, SD 85083-9114",1939-12-19 23:40:00,56:30:d5:2f:d7:76,kristenmorris@gmail.com,img/obama.jpg +Claire Marshall,288-03-5866,30439,"USNS Lopez +FPO AA 59587-6466",1988-12-20 20:50:19,b7:86:d2:72:c8:62,foleyhunter@gmail.com,img/obama.jpg +Christopher Thompson,403-10-5121,31951,"2346 Jensen Green Apt. 535 +West Jenniferland, MI 98052-5269",1926-10-06 19:46:49,97:35:6e:d8:ed:ea,natalie30@thompson.net,img/obama.jpg +Catherine Henry,094-84-8317,71003,"PSC 9505, Box 5799 +APO AA 54993-1167",1998-02-05 03:47:24,29:d2:47:b6:34:fe,obrown@hotmail.com,img/obama.jpg +Peter Rivera,718-51-1387,04882,"025 Griffith Falls +Hollowaystad, KY 71832-3954",1928-01-14 00:54:42,4c:e0:d7:4b:0b:fa,james13@white.com,img/obama.jpg +Luis Rodriguez MD,251-27-5140,06268,"18018 Nichole Wells +Port Matthew, WY 94169-1375",2012-07-23 22:44:38,35:a5:11:8a:e4:25,claydana@thompson.biz,img/obama.jpg +Jacob Meyers,326-30-1624,82219,"81064 Espinoza Lock Apt. 338 +West Rachel, NJ 73824-2704",1949-07-07 13:25:19,22:cc:0b:23:e1:ad,hbutler@harris.net,img/obama.jpg +Jimmy King,216-78-0234,98653,"21116 Stephen Shoals Suite 157 +New Ashleyside, MP 58674",1956-01-29 22:16:12,c7:b0:00:73:d4:12,diane26@gmail.com,img/obama.jpg +Denise Ellis,447-84-2442,16698,"2874 Timothy Pines Suite 835 +Lake Bethfort, VI 98922",1973-04-06 17:51:20,18:a3:1c:98:5d:32,james87@bass.biz,img/obama.jpg +Jessica Tran,202-69-7504,80220,"15323 Harrison Crescent Apt. 777 +Eileenchester, DC 83317-1399",1940-09-03 17:55:45,b8:1b:6c:a5:af:1f,hclements@flores.info,img/obama.jpg +Frederick Rodriguez,680-17-6875,49646,"USNV Hall +FPO AA 58459",1982-10-25 07:17:34,85:37:8c:30:71:ea,richardford@bush.biz,img/obama.jpg +Elizabeth Tate,233-14-9122,56459,"4150 Ryan Brook Apt. 721 +South Felicia, CO 92543",1989-01-24 14:07:26,0b:5b:a9:13:19:7e,kristencollins@yahoo.com,img/obama.jpg +Steven George,576-72-8508,53808,"981 Wilson Locks +North Jessica, WY 10853",1987-07-17 13:22:18,3d:e0:67:a7:ea:a4,nross@yahoo.com,img/obama.jpg +Brian Adams,422-81-0757,52205,"4374 Jones Garden +Lake Angelaburgh, PW 65361-4265",2012-12-13 22:35:56,5c:6b:b7:09:48:af,timothy90@yahoo.com,img/obama.jpg +Kristen Williams,649-59-9097,71392,"199 Mark Mission Suite 858 +New Melissafort, MD 72521",2006-02-23 13:47:56,da:bf:af:0a:c0:d7,angela51@hotmail.com,img/obama.jpg +Kelly Harper,834-19-8347,69176,"19929 Robinson Drive +West Josephshire, NM 54422-4253",1919-11-11 01:23:51,3d:95:44:49:9e:c3,jeffrey84@gmail.com,img/obama.jpg +Richard Adkins,208-38-0390,31377,"6197 Shelton Ways +Leonberg, DE 27447",1972-02-26 19:43:03,ec:f5:c4:f5:d4:e2,ycharles@duke-becker.com,img/obama.jpg +Shawn Brock,496-27-2558,18355,"281 Michaela Unions Apt. 687 +Jamesstad, MS 40769-2783",1948-07-09 15:25:36,68:47:8e:af:0c:c7,cunderwood@rasmussen.com,img/obama.jpg +William Jackson,675-58-8416,10980,"6957 Sarah Key Suite 936 +North Richard, MO 62514-7408",1979-04-09 19:43:43,f9:97:64:15:cb:fe,zdurham@parker-blevins.com,img/obama.jpg +Michelle Lee,170-03-4190,14869,"26304 Adrian Circles Apt. 195 +Gonzalezport, KS 17286-8524",2011-08-18 23:25:54,52:f1:53:91:07:ba,tcameron@gmail.com,img/obama.jpg +Albert Raymond,752-10-2371,88956,"382 Hunter Wells +East Kristaport, ME 46112",1980-11-03 19:09:22,a6:2f:a5:b0:e6:e4,riveradavid@ward.net,img/obama.jpg +Zoe Howard,047-56-7282,09850,"112 Carla Hills Apt. 355 +Klineborough, NM 25721",1977-11-28 17:44:09,e7:68:13:ff:d1:89,eric83@baker.org,img/obama.jpg +Samantha Taylor,068-61-4030,21296,"9129 Isaac Via Suite 930 +Andrewhaven, LA 48019-6360",1984-10-04 06:48:43,34:e0:20:2e:c7:ab,terri83@freeman.com,img/obama.jpg +Donald Reyes,310-06-4303,12976,"560 Wilson Mount Suite 008 +Curtischester, MI 31261-5953",1962-06-26 22:50:00,b2:a0:9e:98:9b:08,lindsaypotter@yahoo.com,img/obama.jpg +Mrs. Hannah Thomas MD,221-68-2468,43510,"7152 Carr Heights Apt. 004 +Doyleshire, MS 71970-4323",1976-06-19 10:08:53,92:b6:96:ae:88:e9,churchshannon@mcclain-dixon.com,img/obama.jpg +Sheena Reyes,633-20-5701,61094,"50734 Greene Track Suite 924 +West Michaelfort, MA 00892-0955",1941-01-12 05:37:26,58:44:05:4a:c9:ba,sloanjames@rose.com,img/obama.jpg +Roberto Banks,574-53-2392,55524,"5798 Jones Junctions +Floydhaven, MH 49235-1169",1946-07-04 15:35:06,43:4b:49:8c:bd:d2,ywalker@gmail.com,img/obama.jpg +Kristy Welch,641-97-9860,67005,"398 Gomez Route +Martinezmouth, MH 67943-3236",1976-12-21 05:28:18,ad:10:fa:2e:99:e8,stevencantu@cole.biz,img/obama.jpg +Patricia Miller,828-29-7292,72476,"9033 Dennis Orchard +West Stacy, WY 62969-2416",1959-02-09 15:52:04,f6:49:80:44:c6:b0,wuallen@yahoo.com,img/obama.jpg +Sandra Bailey DDS,364-55-9255,66941,"0732 Drake Inlet Suite 391 +North Randy, RI 66883-7191",2007-08-04 10:43:20,58:14:d6:39:1d:98,coconnor@gmail.com,img/obama.jpg +Adam Baker,762-94-7416,79754,"PSC 0965, Box 9312 +APO AE 11962-7824",1976-03-30 08:55:21,d1:0b:42:d4:d6:83,estradajodi@moore.com,img/obama.jpg +Joshua Rangel,596-58-7846,01438,"12029 Michael Parkway +Port Alexis, PA 25706-4433",2013-11-10 06:30:43,bc:39:89:02:b4:96,vjones@white.com,img/obama.jpg +Steven Flynn,010-42-6807,22718,"7996 Rangel Cliff +Port Jason, NJ 76331",1948-04-19 09:57:56,1f:fe:63:08:f9:0d,karengriffin@gmail.com,img/obama.jpg +Ralph Martinez,543-02-0490,15566,"91973 Sonya Stream +New Kirktown, PA 64285",1926-12-08 16:25:00,3b:90:16:fe:04:05,oscar45@mejia-payne.org,img/obama.jpg +Michael Trevino,129-13-3464,02695,"658 Francis Squares Suite 298 +East Davidborough, MT 17464",1932-02-05 05:00:43,52:4e:cb:7b:0c:18,hollandkatherine@yahoo.com,img/obama.jpg +Edward Berg,883-04-9720,58309,"28564 Walls Highway Suite 395 +Adamtown, AR 85568",2017-04-01 14:29:43,68:77:ab:1e:b3:b2,paul65@brown-mcfarland.com,img/obama.jpg +Leslie Davis,168-78-7503,83496,"5674 Valdez Ville +Adamfort, DC 12783",1940-04-15 22:01:42,12:a6:cb:16:78:0b,mball@peck-neal.biz,img/obama.jpg +Daniel Jacobson,579-65-3780,97901,"860 Linda Drive Suite 688 +Port Robert, GA 35956",2003-04-29 11:14:23,54:ae:a7:5c:59:fb,thomaschristopher@molina.biz,img/obama.jpg +Rebecca Wallace,770-90-5916,14583,"Unit 4504 Box 5981 +DPO AA 36851",1953-10-27 15:24:24,56:5b:85:0a:fe:08,nathaniel13@gmail.com,img/obama.jpg +Peter Johnson,555-57-1318,27520,"0662 Leach Rue Apt. 612 +Robinsonmouth, GU 06605-3415",1968-12-27 05:58:16,ae:de:30:e9:f3:07,erica17@hotmail.com,img/obama.jpg +Elizabeth Branch,859-90-3124,10248,"093 Jackson Summit +Ryanburgh, WY 98121-2923",2011-04-14 08:05:28,5f:06:7f:2b:ac:11,mbean@williams-palmer.com,img/obama.jpg +James Carter,785-78-3543,70222,"673 Steven Station +Lake Debra, UT 03605",2008-04-14 12:26:22,13:b9:5f:8f:dc:da,vwolfe@hotmail.com,img/obama.jpg +Richard Bullock,261-57-3452,99917,"3472 James Ridges Apt. 603 +New Trevor, OR 37859",1927-05-09 11:45:17,a9:e5:32:62:20:99,bparks@yahoo.com,img/obama.jpg +Mike Parker,243-72-6428,84056,"566 Steven Ville Suite 282 +Leefort, OK 66380",1922-07-10 05:53:44,b1:55:f7:93:50:74,wrightelizabeth@thomas-mason.org,img/obama.jpg +David Taylor,547-07-0593,36511,"Unit 7178 Box 2580 +DPO AE 53000-6473",1952-09-13 14:27:06,8e:39:97:d1:c0:ba,robertsshelley@hotmail.com,img/obama.jpg +Francisco Branch,135-13-3549,52106,"339 Rios Lock Apt. 706 +Thompsonland, DC 46728-3271",1920-02-04 19:23:20,de:7e:cd:07:ce:3e,villarrealmegan@gmail.com,img/obama.jpg +Sharon Garrison,789-30-3608,75571,"80196 Julia Vista +Melissaburgh, MT 91130-3428",1982-07-23 06:35:15,40:a1:59:57:59:87,john22@yahoo.com,img/obama.jpg +Linda Smith,143-15-3828,41534,"133 Campbell Overpass Suite 609 +Davidfurt, MO 26839",1953-10-10 23:31:54,a0:aa:4c:bf:93:81,brett07@banks.com,img/obama.jpg +Sandra Hess,251-62-0958,33905,"47621 Jason Summit +Williamton, ND 81585",1942-11-22 06:06:47,9b:56:42:b7:59:d9,jasmine26@gmail.com,img/obama.jpg +Alyssa Owens,629-80-1108,90344,"29548 Horn Knoll +Davilamouth, IA 52391-1803",1983-06-29 02:09:04,5f:7f:9a:93:19:79,zward@newton.com,img/obama.jpg +Danny Stanley,758-48-3409,68383,"79384 Ponce Crossing Apt. 735 +Duncanhaven, KS 35010-5225",2015-09-21 00:22:44,9f:ec:50:8c:64:de,ireynolds@lamb-stokes.org,img/obama.jpg +Edward Lee,225-02-3575,31007,"0889 Dana Creek Apt. 125 +Justintown, GA 20027-5071",1993-11-20 15:23:56,a4:f4:f3:0c:47:de,uwright@mora-lambert.biz,img/obama.jpg +Megan Hendrix,342-71-7144,60117,"185 Jeremy Ramp Apt. 541 +West Catherinemouth, FM 65284-2580",1948-08-11 06:51:49,87:16:20:eb:57:9e,xgonzales@gmail.com,img/obama.jpg +Kyle Vasquez,770-22-8643,96708,"41070 Jody Plains Suite 247 +Jamesland, VI 24877",1918-08-23 07:34:52,bf:0a:09:2e:e4:aa,victoria18@jackson-house.com,img/obama.jpg +Joshua Chambers,144-34-7352,41938,"999 Michael Street Apt. 146 +North Craigberg, MH 22156",1962-02-05 08:13:25,ca:0f:e6:47:e8:36,ninamiller@hale.org,img/obama.jpg +Nicholas Henry,480-97-8639,52977,"5677 Jessica Fork Apt. 705 +East Juliefort, OH 86663-6061",1984-08-21 07:36:39,cb:6d:43:4f:62:dd,flucas@yahoo.com,img/obama.jpg +Lisa Cross MD,826-97-3490,10509,"8535 Austin Run +West Kevin, AZ 01526-3111",1928-10-18 20:03:55,35:49:e1:10:b3:c6,erogers@brown.com,img/obama.jpg +Jennifer Williams,552-83-3032,78117,"80711 Tucker Curve +East Jeffreyport, MA 59254-8558",1933-12-26 21:11:58,6f:34:55:c7:78:16,pcollins@yahoo.com,img/obama.jpg +Elizabeth Buchanan,161-75-7446,71873,"13615 Cochran River Apt. 593 +Christopherbury, NC 92043-4097",1971-05-03 22:51:39,da:ea:ac:ca:eb:e3,hesterkaitlyn@yahoo.com,img/obama.jpg +David Adkins,877-43-2601,63290,"02698 Jacqueline Valley +West Nicole, GA 26314",2001-02-13 12:57:20,2c:15:ba:99:03:bb,edillon@hicks.com,img/obama.jpg +Gina Rush,673-47-7412,35961,"69380 Snow Extension Suite 724 +Marthaborough, HI 28159",1939-03-07 13:30:18,84:ea:ac:e7:29:77,johnbraun@yahoo.com,img/obama.jpg +Luis Ramos,657-52-2403,70558,"4095 Ryan Forks Suite 708 +East Megantown, DE 31628",1968-04-16 22:22:34,98:e0:7c:2c:b0:cd,kenneth84@yahoo.com,img/obama.jpg +Jessica English,851-65-1456,58245,"61351 Dana Hollow +Jenniferville, DE 99823-9332",1977-11-19 17:01:02,9a:f7:fd:3a:91:cf,lisa95@king.com,img/obama.jpg +Nicolas Bennett,685-56-2027,72388,"52232 Alan Lodge +East James, VT 04211",1921-10-30 02:00:15,9e:9b:17:6e:3e:fc,julie85@hotmail.com,img/obama.jpg +Tiffany Holt,090-52-8625,40590,"874 Wheeler Key Suite 151 +Rodriguezburgh, NE 70391",1995-12-10 16:16:58,4d:ad:55:e0:08:9b,conniejohnston@hotmail.com,img/obama.jpg +Shannon Davila,610-17-0207,32529,"182 Stephen Mountain Suite 911 +New Robin, MS 03837",1944-02-07 19:12:43,7c:8d:fd:5f:91:04,msmith@mcneil.net,img/obama.jpg +Brian Scott,330-01-5273,28505,"1661 Raymond Pine +Ashleychester, FM 16520",1964-12-07 02:30:59,f3:b8:ac:8c:b0:8f,nicole72@gmail.com,img/obama.jpg +Jordan Owens,586-20-8865,24422,"356 Amber Fords Apt. 117 +North Richard, NH 10326",1971-05-30 11:38:00,19:8a:a6:02:38:96,leroy46@hotmail.com,img/obama.jpg +Melanie Tucker,808-91-4430,00898,"78347 Robinson Prairie +Barronstad, TX 14686",1942-08-12 22:49:59,17:17:35:6a:b3:7a,amandablair@odom.com,img/obama.jpg +Brian Freeman,043-14-1214,46524,"001 Michelle Hills +Melissatown, WY 01258",1942-01-14 10:29:25,00:35:ee:84:c0:9f,kdeleon@long-blair.com,img/obama.jpg +Jonathan Gibson,162-40-2200,82076,"2764 Steele Crest Suite 805 +Port Danny, NJ 69950-9160",1991-10-23 04:45:23,82:c0:e9:0e:0d:8d,anthonysmith@keller.org,img/obama.jpg +Deborah Taylor,462-78-3846,08783,"170 Hester Trafficway Apt. 661 +Port Adam, VT 39764",1970-05-14 21:12:10,91:71:bb:3f:11:62,robertsimmons@gmail.com,img/obama.jpg +Christina Barnes,120-66-3049,85080,"242 Franklin Fall Suite 306 +Wallaceville, NJ 42339-3865",1954-03-11 05:57:54,40:d0:c7:e0:77:eb,william96@ruiz-johnson.com,img/obama.jpg +James Lawson,520-95-0184,14576,"667 Green Point Suite 922 +Stephenfort, NM 97334-0437",1980-12-06 04:38:26,5f:1c:99:8a:26:3d,chadhernandez@wall.com,img/obama.jpg +John Anderson,774-51-8621,84786,"Unit 0667 Box 9983 +DPO AA 90573",1958-05-09 15:23:25,29:17:d2:14:c4:6f,jennifer56@santiago-garcia.com,img/obama.jpg +Bryan Turner,890-90-7427,53357,"868 Sarah Stravenue +Daniellemouth, WI 40057-5587",1994-01-19 15:25:10,5c:14:46:ac:5f:64,daltonbrandon@yahoo.com,img/obama.jpg +Henry Adams,131-01-0024,71238,"5874 Nicholas Valleys +Lopezchester, MO 22919-8612",1995-12-19 03:10:08,0e:f5:e7:94:04:98,janderson@gmail.com,img/obama.jpg +Michele Reid,005-31-4781,18368,"506 Jennifer Court +Aguilarland, SD 40120-5265",1950-03-08 02:42:12,6b:0a:b8:ef:7c:8d,marissapetersen@gmail.com,img/obama.jpg +Stacey Coleman,430-39-8493,16556,"8227 Wells Locks +East Zachary, FL 22940-7653",1991-04-14 17:44:00,a4:61:b1:09:97:dd,sotoashley@cooper.com,img/obama.jpg +Grant Wheeler,145-40-6620,54377,"957 Erin Divide +New Gabrielbury, WV 25873",1953-10-26 06:55:23,4b:4c:82:12:1d:66,kirkjose@anderson.biz,img/obama.jpg +Lindsey Higgins,836-15-0503,49734,"289 Hubbard Summit Apt. 130 +West Courtneyside, UT 96227-4549",1919-05-14 12:49:47,0a:ae:1f:10:fd:e3,larry10@mueller.biz,img/obama.jpg +Jacob Matthews,138-65-7955,71938,"Unit 3764 Box 3059 +DPO AA 46165-3944",2005-12-08 11:37:32,01:63:f3:b4:d4:fa,vargaskathleen@hotmail.com,img/obama.jpg +Christopher Rodriguez,430-22-8370,46218,"6820 Estrada Drives Suite 017 +East Craigland, OK 02321-5103",1956-02-02 04:38:54,8b:c8:85:a3:73:cd,dylan39@gmail.com,img/obama.jpg +Vincent Mason,569-57-3203,33116,"370 Tonya Brooks Apt. 508 +Maldonadoburgh, KS 26538-8125",1989-06-06 06:11:11,2e:f1:a9:43:c4:30,william93@brown.biz,img/obama.jpg +Michael Zhang,698-67-5502,89951,"USS Lambert +FPO AA 11361-8088",1948-02-18 14:12:56,cd:33:22:c5:2f:f1,russelljones@hotmail.com,img/obama.jpg +Pamela Molina,087-70-2898,62980,"96577 Ryan Highway +Lozanochester, GU 53498-8083",1961-12-07 06:09:09,e8:7f:13:e6:64:89,davidsaunders@hotmail.com,img/obama.jpg +James Pierce,748-54-1540,91021,"6875 Lynch Loaf Apt. 203 +West Matthewmouth, CT 87256",1934-02-20 17:04:10,99:ad:b2:00:53:d3,leecourtney@hotmail.com,img/obama.jpg +Kimberly Ashley,672-89-7695,82319,"8025 Mcintyre Dam Apt. 004 +Woodsview, MD 73575",1988-03-02 20:08:07,8b:d5:6a:01:ca:94,rsmith@stone-hooper.com,img/obama.jpg +Shannon Perez,750-75-2399,95335,"2329 Jones Landing Apt. 906 +North Juanstad, WV 07204",1959-04-23 21:23:50,ba:00:ad:d2:36:ed,mjacobs@gmail.com,img/obama.jpg +Shannon Ford,056-69-2118,72934,"274 Nguyen Via Apt. 095 +Robertsland, IA 61002",2001-08-01 19:11:32,bf:4a:b4:7b:6e:1a,velazquezlatoya@yahoo.com,img/obama.jpg +Richard Montgomery,561-55-8494,88547,"323 Samantha Forge Suite 156 +Port Jasontown, MI 35600-1045",1922-10-10 12:38:26,bf:fa:84:83:8e:48,hamiltonlisa@gmail.com,img/obama.jpg +Lynn Richardson,161-41-9483,55659,"689 Patel Wall Apt. 617 +Greenberg, CA 14039-8713",2007-09-07 06:15:29,2a:44:06:4a:d8:8c,tammy74@gmail.com,img/obama.jpg +Pamela Morris,051-40-4674,20571,"5124 Benjamin Motorway +New Maryside, AL 18388-8106",2017-01-13 07:46:02,1c:58:06:10:58:88,ebyrd@moody.net,img/obama.jpg +Craig Moore,836-86-3009,58754,"79375 Beard Groves +Lake Ryan, KY 88862-7271",2014-02-19 21:10:08,77:8a:4a:00:c6:50,weeksvictoria@mcgee.com,img/obama.jpg +Jennifer Davis,074-10-5954,13115,"192 Steven Manors +Drewton, CO 71574",1949-03-28 04:57:40,22:7c:05:d8:fe:cd,jordanamanda@lopez.net,img/obama.jpg +Debbie Johnson,584-69-6319,82942,"2024 Jenkins Point +Reginaldborough, LA 32211-0229",1978-11-25 14:15:54,fc:01:4c:88:22:6c,benjaminsingleton@espinoza-james.com,img/obama.jpg +Mary Brown,150-27-2637,48887,"3884 Campbell Roads Apt. 147 +Guerrerobury, WY 39791-9461",1935-10-03 01:35:31,29:10:cb:58:6d:66,amanda99@johnson.net,img/obama.jpg +Nathan Jenkins,288-30-0883,90024,"2092 Giles Knoll +Port Paula, GU 55941-5291",1939-02-13 07:11:19,79:a5:3e:26:29:7b,qtorres@hotmail.com,img/obama.jpg +Crystal Shields,760-46-2874,56381,"6678 Gamble Mills Suite 273 +Campbellview, SC 79550-0583",1980-12-31 16:33:21,60:3a:46:36:c0:51,swilliams@gmail.com,img/obama.jpg +Lauren Robinson,508-75-8055,78970,"53179 Karen Road +New Barbara, ID 24430-6548",1933-08-06 04:52:52,85:2c:8c:7c:a2:eb,rthompson@hotmail.com,img/obama.jpg +Joshua Black,556-76-2102,11788,"51440 Hill Skyway +North Nancymouth, GU 80703-2544",1942-01-10 08:27:41,96:ec:bc:cd:81:6d,heatherroberts@franklin.info,img/obama.jpg +Michael Clark,121-81-9036,94662,"22491 Roberto Neck Apt. 323 +West Kristenfurt, AZ 49787",2004-12-03 02:50:34,fe:cf:90:06:07:06,mcclainbrandon@hotmail.com,img/obama.jpg +Patrick Thomas,466-67-2909,95549,"645 Williams Fall Apt. 957 +South Tyler, DE 44138",1937-12-20 07:34:00,ea:7a:32:87:a8:25,bowersjohnny@hotmail.com,img/obama.jpg +Brittany Lowe,143-38-8113,19602,"8803 Alexis Throughway +Dickersonborough, NH 06304-4757",1928-05-18 00:04:43,75:d9:41:23:cc:75,samantha41@yahoo.com,img/obama.jpg +Katie White,338-39-1470,35849,"777 Johnson Loop Apt. 512 +South Brandon, AL 55786-4863",1953-04-10 13:18:36,e6:95:a0:93:d8:70,djohnson@hotmail.com,img/obama.jpg +Anthony Beltran,848-14-0754,88193,"1164 Boyd Isle Suite 056 +East Dalefort, NJ 57647-3814",2008-07-12 21:41:16,9d:ec:6d:f9:dd:27,laustin@walter-gonzalez.com,img/obama.jpg +Peter Wright,835-27-6425,67351,"292 Nicholas Plaza +New Jeanette, MP 21154-1658",1985-10-01 22:19:53,d0:2a:62:b6:5e:ca,huffmanchad@johnson-may.com,img/obama.jpg +Christina Harper,143-15-6178,59645,"08564 Kevin Burg +Rebeccastad, RI 11432",1919-02-22 21:26:24,03:ac:8b:07:70:8a,olsonkenneth@wilson.com,img/obama.jpg +Melvin Blake,260-95-3220,75879,"PSC 6143, Box 6240 +APO AE 16896",2007-03-30 16:04:03,c8:b4:1b:7f:5a:f4,webbtina@medina.com,img/obama.jpg +Timothy Smith,554-07-4906,35505,"63615 Bennett Pike Suite 174 +Angelafurt, AS 77939-6258",2006-03-31 09:06:18,8f:e1:b2:db:b5:5d,oroberson@gmail.com,img/obama.jpg +Julie Jackson,701-31-2707,67137,"80450 Flores Vista Apt. 790 +New Erica, LA 88172-9850",1986-12-03 09:33:39,a0:97:5a:1f:47:c0,charleslogan@garcia.com,img/obama.jpg +Annette Bennett,011-67-4494,20868,"706 John Parks +Amyborough, MD 75467-8342",1985-07-03 23:39:42,0b:c5:6e:2e:b6:be,nathan99@leon.com,img/obama.jpg +Candice Greer,859-71-4812,85184,"342 Martinez Drive Apt. 700 +North Kara, FM 10432",1977-03-13 05:05:17,69:b8:57:0f:5e:c4,vanessa03@long.biz,img/obama.jpg +Brenda Stark,052-46-5415,12467,"57784 Emma Parkways +Loveland, VA 89570-7650",2007-01-06 03:12:54,9c:61:7c:ed:35:f7,julie45@fletcher-hernandez.com,img/obama.jpg +Mary Richardson,319-69-3428,66505,"56409 Short Road +New Genestad, KY 03180",1977-10-25 07:40:22,a4:39:29:be:58:01,roberto25@henry.com,img/obama.jpg +Rodney Leach,055-38-3656,16903,"6974 Orr Turnpike +Davidmouth, PA 73271-9418",1977-09-20 08:15:48,fe:b5:90:28:d5:81,andrew58@crawford-martin.org,img/obama.jpg +Natalie Myers,378-56-0818,71419,"546 Andres Glens +West Brian, NM 80366",2013-08-31 11:00:55,bb:7c:85:43:a3:85,ashley84@harrington-thompson.com,img/obama.jpg +Bruce Wilson,465-42-1648,76636,"1130 Amy Villages Suite 060 +Jasonstad, VI 00618-0940",1983-02-13 09:05:33,31:3d:ba:9d:47:05,margaretcarter@brown-long.net,img/obama.jpg +Francis Green,066-26-7860,87471,"678 Hanson Stream Apt. 918 +Loriville, OR 59404",1929-03-12 21:10:11,32:a0:a6:34:cd:c0,danielle15@yahoo.com,img/obama.jpg +Patricia Barton,379-89-7971,08192,"8181 Walsh Ford Suite 349 +New Paul, CA 96396-3407",1918-02-19 19:12:55,b7:76:82:12:07:7b,josephlozano@yahoo.com,img/obama.jpg +Jonathan West,468-17-5474,43907,"9455 Bennett View +Stevestad, MH 97993-9658",1945-02-27 23:44:40,38:18:6e:bd:01:99,johnsonkimberly@hotmail.com,img/obama.jpg +James Ross,799-50-2705,76414,"55844 Morrison Curve +Lake Michael, CA 44882",1927-11-07 14:59:50,be:c5:23:21:6a:f3,ehayden@hotmail.com,img/obama.jpg +Brandon Schneider,429-74-5724,19629,"78396 Shannon Tunnel Apt. 117 +East Antonio, CT 49867",1953-02-02 02:40:53,a7:d5:24:41:64:f6,justinhoward@hotmail.com,img/obama.jpg +Jamie Serrano,109-71-6742,02128,"21011 Johnson Groves Apt. 753 +Romerofort, UT 20715-0173",1985-01-25 08:50:30,dc:31:5e:3b:19:f3,contrerasjoseph@wood.com,img/obama.jpg +Tiffany Warren,196-99-9116,30782,"1991 Clark Corner +Hughesshire, AS 16457",1949-01-11 22:44:35,9f:c0:ac:0f:71:a4,katie18@herrera.com,img/obama.jpg +Timothy Robinson,661-19-1344,32074,"65807 Mccann Islands +Gonzalezfort, OH 52924",1945-10-23 01:10:19,17:1b:a1:85:f8:b5,powellkatrina@jordan.info,img/obama.jpg +Kelsey Bentley,072-89-5844,20010,"0289 Blankenship Track +Millerport, OR 58221",1925-10-08 07:54:58,6c:57:e5:00:1f:d5,williamsmonica@hotmail.com,img/obama.jpg +Adam Coleman,814-87-2435,82440,"62625 Donald Springs Apt. 622 +Jacksonside, HI 46315-5306",1953-05-20 10:23:08,c9:97:07:2b:64:74,wgreer@evans.com,img/obama.jpg +Anne Holmes,595-83-3962,66047,"498 Richards Stravenue Apt. 895 +Lake Mariamouth, VI 72148",1991-06-23 07:43:22,36:e3:1b:45:c6:ba,yjackson@garcia.com,img/obama.jpg +Shawn Stewart,216-97-8861,14690,"07847 Trevor Flats +Villabury, NH 87212",1983-02-21 10:54:14,97:b2:72:cc:05:c6,ilopez@hotmail.com,img/obama.jpg +Frederick Mathews,832-65-5634,29640,"0407 Rivera Drive +Parkerchester, OK 00211",1954-05-15 07:46:42,5d:d1:57:84:6b:86,riverastephanie@andrade.net,img/obama.jpg +John Foster,206-10-6059,21174,"0824 Maddox Camp Suite 013 +Robertmouth, FL 29344",1937-11-29 03:23:17,54:0f:6d:04:04:cd,kevingonzalez@hotmail.com,img/obama.jpg +Veronica Johnson,168-04-0824,67381,"35058 Patricia Forge +Alexandraville, NV 46670",1973-12-28 10:23:04,69:37:af:5b:ee:c2,jbranch@lewis-wright.biz,img/obama.jpg +Denise Martin,621-48-0929,76418,"1191 Jo Walk +South Caitlyn, NJ 76981",1961-03-16 11:03:35,06:a1:a3:bd:68:2e,bbenton@carter-long.biz,img/obama.jpg +Lisa Kirby,302-57-3183,48362,"85288 Savage Extension +Port Mary, FM 18207-6751",1979-12-05 13:49:04,15:7e:e4:3a:11:9d,rduncan@schmidt.com,img/obama.jpg +Ms. Heidi Mendez,524-01-8165,59127,"1456 Jensen Springs Apt. 071 +Josephville, SC 20266-7183",1998-01-28 23:26:24,40:ba:53:c6:e3:87,benjaminfields@hotmail.com,img/obama.jpg +Shannon Douglas DDS,848-03-5133,57762,"69588 Perez Road Apt. 785 +Alisonport, MN 44754-1039",1922-07-16 13:55:17,e6:9f:2c:a5:3d:a7,jonesjerry@evans.com,img/obama.jpg +Austin Gray,066-25-3608,01358,"7238 Deleon Mill +South Veronica, NC 24548",1925-01-03 17:51:11,a2:c1:7a:33:c3:67,andersonann@hotmail.com,img/obama.jpg +Max Ferguson,453-12-8345,56113,"75668 Martha Shore Suite 746 +Lake Autumn, WY 31864",1973-03-05 20:00:01,01:2b:90:a1:4c:7c,michael97@martinez-watkins.biz,img/obama.jpg +Kathleen Weber,202-28-3016,43496,"036 Donald Forge Apt. 240 +Ruizland, NJ 47778-1600",2005-06-28 11:48:35,d7:b9:e5:f1:fa:0a,autumn90@norman.com,img/obama.jpg +Deanna Welch,063-43-9698,23986,"PSC 3314, Box 5871 +APO AP 35040",1958-10-21 08:16:27,70:25:1c:c8:b8:b0,brandonlee@hotmail.com,img/obama.jpg +Carol Patterson,680-98-1260,35193,"8931 Bailey Glen +Jasonshire, KS 33583",1981-08-12 19:12:16,70:d3:8e:b1:e0:7f,frederickroberson@ortiz-knight.com,img/obama.jpg +Adam Robinson,396-08-4779,17394,"7952 Alexander Dam Suite 224 +Port Amber, MD 26739-8786",1985-02-26 05:52:51,cf:7d:85:5a:be:d6,murphyholly@miller.com,img/obama.jpg +Michelle Bell,688-17-0160,02335,"753 Bryan Rue +West Rachel, IA 47960",1974-01-23 23:00:15,37:e2:db:a1:38:b3,davidsonsarah@hotmail.com,img/obama.jpg +Dr. Brandi Brown,483-80-3371,07040,"608 Brown Expressway +New Deborah, AL 90149-0339",1931-03-10 11:02:08,ce:12:66:a1:49:ec,cindy17@yahoo.com,img/obama.jpg +Austin Odom,087-28-9203,92355,"049 Gregory Meadows Apt. 083 +East Marissa, KS 36469",1944-03-12 19:51:33,de:f6:bd:5d:59:fd,tyler62@diaz.com,img/obama.jpg +Sarah Sparks,098-87-2050,86001,"74959 Jones Corner +New Teresa, IN 23481",1931-05-12 10:23:58,9c:ce:2b:d7:b9:28,lbarnett@wade-oconnor.com,img/obama.jpg +Mark Gregory,138-98-4068,86153,"558 Mullen Cliff Apt. 386 +East Lisa, SC 29399-3950",1953-11-01 12:01:11,79:67:80:1b:6f:be,staffordjulie@watkins.com,img/obama.jpg +Deanna Bennett DDS,406-76-6983,27574,"904 Sexton Pass Suite 912 +Lake Tamaramouth, DE 55207",2005-04-22 14:53:13,03:2b:94:d8:8a:d2,fisherregina@silva-hull.com,img/obama.jpg +Patrick Wood,457-23-1173,91310,"64857 Hendrix Pass +Lake Williamshire, VT 07552-0856",1979-04-05 15:20:41,72:0c:1d:77:c7:d5,jessicabrown@hotmail.com,img/obama.jpg +Dr. Carrie Jackson MD,262-78-0832,07075,"189 Weaver Ferry Apt. 849 +East Arthur, MS 69196",2008-07-21 06:36:50,6d:37:ad:62:ae:71,wcarrillo@hotmail.com,img/obama.jpg +Deborah Dyer,248-49-4086,80582,"103 Brown Grove Suite 575 +New Jesus, PR 68384",1980-01-09 05:58:24,78:0a:53:a1:42:4a,dennisjones@hotmail.com,img/obama.jpg +Russell Hoffman DDS,526-01-9222,35558,"260 Lane Route +New Vickie, NM 59352",1941-04-23 10:18:06,01:e4:2b:05:8b:3c,ingramanthony@smith.com,img/obama.jpg +Megan Pierce,813-37-4995,20970,"USNV Patel +FPO AE 67730-8913",1995-03-16 02:24:24,f8:c7:77:a0:07:11,mscott@hotmail.com,img/obama.jpg +Ashley Andersen,454-73-2860,01836,"885 Herman Plaza +Oconnellborough, CT 11491",1969-07-03 08:15:50,88:e7:82:d5:4c:38,loweryangel@hotmail.com,img/obama.jpg +Ernest Smith,750-05-0358,21989,"463 Taylor Stravenue +Ericshire, GU 10765-3590",1938-08-12 06:32:02,66:14:2e:1e:e6:48,walkerbrittany@mcintyre.com,img/obama.jpg +Tony Summers,257-80-3989,28063,"231 Scott Mills +Lake Michael, VA 93667",1927-08-12 12:16:12,ee:f5:ae:94:e4:4c,benderbeth@long.net,img/obama.jpg +Emily Ortiz,891-71-2550,10628,"31463 Alan Alley Suite 896 +Salinasland, OR 75628",1920-04-07 18:28:14,98:46:14:52:4e:14,vbrown@stewart.com,img/obama.jpg +Gerald Mccullough,479-36-1767,47996,"PSC 2320, Box 5801 +APO AA 95022-8750",1932-12-22 01:35:12,34:a4:2b:85:d5:d6,michellemyers@perez.com,img/obama.jpg +Nancy Jensen,740-18-8610,74332,"80865 Holt Village Suite 114 +Thomasfurt, AR 10104",1946-01-11 02:53:09,82:b9:23:a3:ce:30,hmoses@fleming-fox.com,img/obama.jpg +Alex Garrett,073-59-3042,81013,"6261 Michael Spurs Suite 890 +Valdezborough, GU 76916-9221",1948-12-18 13:27:08,20:df:72:ff:cd:3f,thomasjennifer@dennis-burnett.com,img/obama.jpg +Logan Craig,708-29-4586,35885,"130 Donald Island +Durhamfurt, KY 86108",2014-08-03 20:47:30,b5:90:ae:04:19:ef,sheliawilliams@hotmail.com,img/obama.jpg +Matthew Howard,074-65-0781,39286,"USCGC Young +FPO AE 74772-2152",1953-03-24 05:09:25,e5:93:f4:e3:88:0c,andrea58@rivera-garrett.com,img/obama.jpg +Laura Madden,019-30-4008,81866,"6910 Taylor Avenue +Port Justinport, WI 07508-7166",1992-12-14 01:10:35,ad:c1:8a:56:dc:fa,smiddleton@yahoo.com,img/obama.jpg +Matthew Blevins,845-96-6187,48403,"28705 Flores Villages +West Catherine, NE 66965-0991",1919-05-26 02:19:50,a0:12:83:67:02:de,jeanlindsey@hotmail.com,img/obama.jpg +Matthew Stephens,774-29-1429,70489,"162 John Square Suite 851 +Bryantown, NE 26590",1941-10-30 17:14:08,87:64:82:07:f2:d3,rodgersstephanie@thomas-meyer.info,img/obama.jpg +Daniel Williams,100-90-6178,96164,"1320 Amy Ford +East Karachester, MH 38996",1921-08-24 18:46:54,da:23:17:28:02:61,celliott@hotmail.com,img/obama.jpg +Shannon Long,797-65-3111,09142,"6044 Johnson Mews Apt. 918 +Peterport, PA 53701-4538",1952-04-18 13:56:08,d5:40:fc:5b:33:f4,bmiller@waller.com,img/obama.jpg +Megan Lee,412-41-3763,45582,"741 Jennifer Hills +East Heatherberg, MP 47191",1933-07-08 15:18:02,3e:b1:cc:77:9b:ff,allenandrea@rodriguez-munoz.biz,img/obama.jpg +Diane Boyd,804-14-4455,81525,"519 Brendan Ways Suite 666 +North Shane, MD 75737-2014",1986-03-22 06:04:00,9b:53:f2:13:e1:1b,stevenbrown@michael.com,img/obama.jpg +Henry Walker,693-04-4459,52975,"7656 Thomas Plains Apt. 903 +East Rebeccafort, OK 82446-6676",1981-07-06 04:47:23,3c:87:c0:0d:07:04,kimbaker@king.com,img/obama.jpg +Richard Hughes,731-80-2642,71949,"4295 Tiffany Cove Suite 138 +South Vanessa, MH 61685-3602",1985-08-15 04:12:03,39:fb:9e:75:78:fb,smoyer@yahoo.com,img/obama.jpg +Lori Davidson,246-05-8885,24388,"USNV Nelson +FPO AP 70973",1946-05-21 01:53:35,c9:f9:5a:08:fc:d9,gillespiebrent@gmail.com,img/obama.jpg +Joshua Bryan,715-83-5683,03910,"403 Eugene Key +Steveland, IA 69173",2014-11-30 16:19:47,af:b1:2b:32:53:d8,bmclaughlin@gmail.com,img/obama.jpg +Toni Washington,348-89-2044,77225,"982 David Summit Suite 118 +West Ianport, CA 85264",1941-07-10 17:24:23,1e:7f:b8:47:b8:62,kellywilliams@hotmail.com,img/obama.jpg +Amy Warren,376-94-6178,95158,"9111 Christian Corners Apt. 977 +Port Samanthamouth, HI 04094-2881",2017-04-25 18:56:49,ae:2f:cd:f5:18:97,caitlin29@lopez-jones.biz,img/obama.jpg +Nicholas Walker,224-72-5575,72716,"05435 Perry Summit +Mandyberg, NH 59371-3958",1940-06-29 12:11:50,b4:02:d4:21:d1:58,hayesmichael@berry.com,img/obama.jpg +Michael Adams,698-24-5324,16938,"664 Krueger Rapids Suite 423 +Beckerside, NC 49987",2004-01-13 22:23:50,36:42:27:d9:70:56,kimdean@gmail.com,img/obama.jpg +Melanie Reynolds,480-95-6446,24895,"179 Williams Tunnel +Fitzpatrickland, IA 07045",1945-05-03 00:26:46,7d:23:87:be:82:8e,pwhitaker@ramirez.org,img/obama.jpg +Casey Guerrero,420-41-3689,36429,"1104 Vargas Spur +Greenmouth, GU 70995-6551",1935-09-12 17:13:11,bc:c6:86:c6:04:3e,william09@yahoo.com,img/obama.jpg +Amy Perez,439-15-3059,97159,"9750 David Place Apt. 014 +Port Breanna, PW 13158",1971-07-22 14:11:02,0c:76:14:5e:63:c9,xmoore@hotmail.com,img/obama.jpg +Mariah Randall,139-88-9536,77855,"30801 Gibson Flat +Martinezburgh, GA 84126-8816",1959-11-29 15:18:11,66:0b:95:4e:f3:5c,stevenmeyer@gmail.com,img/obama.jpg +Jose Bennett,294-69-6606,46331,"9133 Graham Lodge Apt. 761 +New Michael, NE 61708-2119",1976-01-20 03:48:28,9e:f8:d7:cc:ac:91,timothy39@gmail.com,img/obama.jpg +Kathryn Warren,442-80-7308,84667,"88742 Brown Mills Suite 546 +West Barbaramouth, NJ 44244",1946-10-06 09:38:30,33:e0:a6:73:11:38,margaretboone@lee-harris.com,img/obama.jpg +Scott Rowe,066-12-8517,01972,"21884 Ramirez Inlet +East Shelley, WA 52245",2001-05-09 07:16:13,81:e7:c1:78:ff:8d,ynguyen@leon.com,img/obama.jpg +Kimberly Dean,685-35-7830,94919,"960 Phyllis Cape +North Carolynburgh, SC 03835",1995-10-05 07:18:37,4d:9b:21:71:47:25,colelori@aguilar.biz,img/obama.jpg +Omar Willis MD,678-76-5418,15155,"5430 Rodriguez Road +Port Michael, PW 01604",1952-07-05 04:38:15,18:76:b0:1f:53:8f,marypadilla@hotmail.com,img/obama.jpg +Nathan Hall,690-71-5982,46910,"417 Danielle Land Apt. 043 +Lake Jenniferfurt, RI 77178-4390",2004-10-09 10:40:06,ba:72:c1:b0:66:8a,bethedwards@baxter-hernandez.com,img/obama.jpg +Isaiah Walker,266-81-5744,50714,"1251 Stephanie Alley +West Stephenton, TN 31712-7434",1919-01-18 09:52:56,6e:65:d2:30:3b:c0,hernandezjudy@gmail.com,img/obama.jpg +Jermaine Reyes,863-21-6762,56640,"23764 Craig Junction Suite 721 +Cameronborough, NJ 80896-7204",1971-10-05 15:32:36,6b:bc:98:22:87:c9,qsanford@yahoo.com,img/obama.jpg +Johnny Santiago,213-81-1423,64859,"93661 Robbins Course +Port John, DC 89993-2785",2013-12-20 08:29:27,d7:76:f3:ed:2c:79,danielwhitney@miller.com,img/obama.jpg +Vanessa Blevins,187-88-1327,10610,"102 Hall Forges Suite 806 +Catherinemouth, NY 63662-5562",1936-03-02 20:33:26,1c:e1:86:68:9a:df,leejennifer@yahoo.com,img/obama.jpg +Richard Greene,577-46-0087,10704,"49228 Lee Fords +East Donald, VT 16361",1944-04-18 01:38:52,23:d2:7a:a1:33:bf,ijackson@gmail.com,img/obama.jpg +Marie Jensen,343-57-9644,38496,"21501 Byrd Forest +Butlerhaven, NJ 71551",1944-01-31 11:38:56,81:53:53:7f:0b:12,jeffreyayala@wade-hardy.com,img/obama.jpg +Evelyn Brock,357-12-1523,61695,"0861 Andrew Radial +East Jennifer, AL 79262",2001-08-20 22:06:22,14:cd:1a:83:81:56,jessica24@gmail.com,img/obama.jpg +Ruth Leonard,239-03-9055,36378,"9438 Fields Plaza Apt. 749 +Brownshire, RI 76413",1993-05-08 19:08:07,84:6e:f8:6d:00:2d,hwatts@black.org,img/obama.jpg +Gary Taylor,260-58-6256,67366,"USNS Lam +FPO AE 74373",1968-08-15 20:58:36,d4:be:02:71:d3:da,jhayes@gmail.com,img/obama.jpg +Kimberly Rodriguez,216-40-4186,12508,"9351 Hicks Overpass Suite 648 +South Sandra, AZ 55565-5194",1936-02-14 11:34:19,7a:9c:8f:63:27:86,dharrington@reynolds-burns.com,img/obama.jpg +Thomas Gonzalez,121-27-8864,42260,"0975 Mosley Common +Jessefort, MP 94896-4285",2015-11-12 11:31:08,3c:65:63:ba:0f:bc,fmartinez@gmail.com,img/obama.jpg +Daryl Martinez,514-78-2735,37327,"410 Fisher Station +North Susan, MA 22116",1926-05-16 01:55:39,84:5a:0f:3b:93:ac,vanessawoods@hotmail.com,img/obama.jpg +Darrell Long,405-13-3617,19372,"828 Adams Plain +Osbornport, PR 51275",2009-05-29 07:56:08,62:b5:da:b4:ab:bf,thomassavage@murphy-morales.info,img/obama.jpg +Susan Becker,460-39-9686,89145,"09805 Tim Circle Suite 732 +Moorebury, TX 95153",2011-11-05 09:40:10,59:13:aa:30:a9:4f,natalie72@young.biz,img/obama.jpg +Joseph Stewart,076-14-0855,86546,"099 Taylor Valleys +South Jonathan, IA 42058",1964-08-02 01:04:18,69:d2:cc:ee:a1:72,lauranovak@garcia.com,img/obama.jpg +Stacy Ochoa,632-92-2632,72621,"991 Emily Path +Justinhaven, WV 26179-2956",1971-02-12 15:51:45,a1:80:b7:90:84:08,orodriguez@craig.info,img/obama.jpg +Keith Huff,701-81-2656,86789,"362 Cody Avenue +South Carla, FM 27866",1999-09-08 10:08:49,ea:16:4d:29:c8:d2,simpsonrandy@olson.com,img/obama.jpg +Charles Johnson,444-70-5206,17636,"5127 White Station Apt. 267 +Hudsonberg, MT 72493",1933-05-27 05:49:03,1d:3b:14:86:f3:0c,qrowe@woods-guzman.info,img/obama.jpg +Debra Gray,282-13-4281,18159,"94825 Davis Stravenue +North Lisahaven, ND 35328",1998-07-17 21:44:58,55:e9:63:af:c7:e8,gallowaybenjamin@gmail.com,img/obama.jpg +Kayla Williams,321-29-7918,63495,"520 Emma Crossroad Suite 257 +Lake John, OR 18240-1231",2001-09-17 20:48:20,20:2a:d1:27:eb:da,james27@harris-aguirre.com,img/obama.jpg +Ruth Henderson,159-83-1671,67935,"69042 Daniel Knolls +Nguyenborough, NH 93980",1955-09-12 17:14:31,f2:7b:bb:6a:d4:ad,hayleybishop@allen.biz,img/obama.jpg +Edward Davenport,698-23-5104,50737,"23719 Yolanda Islands Apt. 728 +Rodriguezfurt, MH 70594",1945-10-10 21:23:59,98:83:d7:38:ef:5c,ypham@french.org,img/obama.jpg +April Rice,004-74-2599,74890,"148 Boyd Meadows +Peterstad, GU 90177",1960-01-01 02:24:01,e7:01:b4:be:ce:d2,lewisgabrielle@yahoo.com,img/obama.jpg +Bonnie Swanson,108-65-3109,64572,"89933 Catherine Divide Apt. 720 +North Steven, VA 83079",1957-04-28 20:58:19,d0:7c:a6:fc:b3:9e,michelleandrews@gmail.com,img/obama.jpg +Christian Lawrence,258-54-8765,82618,"3800 Brandon Burg +New Jenna, VI 17995",1991-06-20 07:31:17,3c:dc:e8:4c:08:b8,calderonadam@green-harris.com,img/obama.jpg +Jessica Larsen,538-38-3899,01847,"863 Miller Islands Apt. 925 +Jacksonberg, VA 82785",1957-08-11 20:02:19,24:0c:ec:fe:3f:7e,burtonlaura@gmail.com,img/obama.jpg +Lauren Graham,566-56-8964,13902,"450 Billy Orchard Apt. 516 +South Joshua, WI 33924",1954-11-08 19:49:47,7a:e0:86:f3:5e:11,jason45@jacobs.biz,img/obama.jpg +Jessica Hernandez,338-12-3731,14133,"6853 Martinez Street Apt. 709 +New Jennifer, NM 40594-5865",1987-01-31 04:02:52,a2:20:5f:5e:8e:0f,sabrina65@payne.info,img/obama.jpg +Joshua Valdez,727-66-3713,28477,"195 Waters Turnpike +New Ronaldshire, VI 21633-8310",1983-04-02 15:38:27,0a:bb:96:cd:11:d2,perrychristopher@chavez-berry.com,img/obama.jpg +Lisa Miller,031-42-1208,52587,"200 Bradford Views Apt. 499 +Timothyberg, AR 58973",1925-08-09 12:55:00,ef:b1:4d:b7:f6:36,sherritaylor@massey.com,img/obama.jpg +Allen Ware,418-85-1364,28376,"823 Jonathan Extensions +South Vickiport, NJ 20381",1961-05-02 07:54:23,65:6a:9a:ee:40:f9,nancysanchez@blackwell.com,img/obama.jpg +Mckenzie Torres,378-54-8965,65992,"993 Quinn Fort Suite 828 +Theresamouth, AR 13515",2002-06-21 19:33:50,1e:37:b1:77:e1:99,jaredlewis@buchanan.com,img/obama.jpg +Amy Ortega,867-54-9262,05581,"56022 Martinez Brook Apt. 749 +Melanieborough, TN 37741-6179",1946-08-24 06:37:16,b3:b5:66:04:5a:c6,teresa41@hotmail.com,img/obama.jpg +Patrick Owens,180-71-3617,39135,"1333 Wilson Mission +East Ronnie, RI 03918",1973-01-05 16:49:36,f9:10:e9:bf:b0:94,john48@owens.net,img/obama.jpg +Stephanie Jones,468-57-8891,96923,"17694 Nelson Harbors +Samanthafort, CT 83032",1969-09-12 10:46:38,46:69:c9:84:6d:f6,madisonmarshall@yahoo.com,img/obama.jpg +Michelle Valencia,668-49-9316,19097,"3110 Floyd Squares Apt. 125 +New Peggy, FL 72264",1954-06-04 23:44:31,c6:ce:b2:f1:4a:02,rogersjames@gmail.com,img/obama.jpg +Frank Moody,143-35-0423,38535,"93124 Roberts Freeway +Port Amandaborough, CA 28551",1983-08-17 11:54:43,a9:c6:d1:d3:9c:e1,karina47@hotmail.com,img/obama.jpg +Lisa Hall,565-56-5419,49428,"USNS Moore +FPO AP 69536",1932-08-02 18:29:11,1e:13:b8:e8:c5:f7,denisedunn@gmail.com,img/obama.jpg +Jeremy Brewer,421-71-8266,07454,"7672 Nathan Pine Apt. 037 +Port Christineshire, CO 97722-4147",1949-03-10 23:19:05,95:af:09:9a:04:e0,andrea65@gmail.com,img/obama.jpg +Michael Guerrero,807-04-4465,57465,"246 Theresa Row Apt. 431 +Lake Lisa, VA 10071",1937-06-12 18:46:40,1e:91:b9:1f:66:fa,mtaylor@yahoo.com,img/obama.jpg +Jennifer Clark,290-31-3306,94902,"51293 Fox Trail +Lake Malik, WI 15855-4370",1990-07-29 13:00:11,7e:bd:ad:41:a4:d2,randy19@burnett.com,img/obama.jpg +Brenda Ramirez,388-62-7465,10800,"881 Harris Curve +Lake John, AS 23560-6933",1947-01-15 10:58:42,75:83:f9:12:8a:c7,bjohnson@yahoo.com,img/obama.jpg +Brittany Morse,371-05-5994,33469,"11193 Simpson Ports Apt. 415 +North Malik, MO 08825-5568",1975-04-15 13:35:19,0c:38:47:b3:40:87,gsmith@evans-hendrix.com,img/obama.jpg +Robert Crawford,080-87-2818,08501,"528 Warner Coves +North Brittanybury, WI 41934",2001-06-25 17:57:14,c1:1d:d0:1a:e0:b3,maria21@gmail.com,img/obama.jpg +Brandy Price,694-87-7104,69666,"805 Candace Trail Suite 549 +East Jameston, KS 99648-9899",1962-07-21 02:54:55,2a:1e:4b:03:1d:9a,qdavis@faulkner.biz,img/obama.jpg +Dominique Carr,704-88-4608,93338,"4978 Courtney Viaduct +Grayshire, MN 14118",1946-01-17 15:26:30,3d:90:f3:f7:8a:11,allengregory@yahoo.com,img/obama.jpg +Wendy Harrison,658-07-8161,39339,"0995 Sandra Port Apt. 795 +East Seanborough, ID 22334-0320",1945-01-01 17:15:50,8d:7d:2a:aa:5e:58,burnseric@hotmail.com,img/obama.jpg +Tammy Kaiser,856-49-7962,98309,"676 Lopez Curve +West Jamesview, IL 82276-7058",1970-04-03 20:16:16,00:b8:05:21:6b:14,matthewscarly@hotmail.com,img/obama.jpg +Jason Chang,188-43-1174,09704,"362 Copeland Port +Briannashire, MI 12347",1964-09-27 19:40:20,bf:a7:f5:66:4f:29,courtney78@nelson.com,img/obama.jpg +Jermaine Hensley,364-54-5711,65911,"63350 Warren Locks Apt. 700 +Harrisborough, IL 41879",1946-04-02 02:06:06,38:db:0d:8e:12:2c,michael34@garcia-lewis.com,img/obama.jpg +Alice Jones,185-75-0756,42195,"2087 Mitchell Heights +South Sherry, DE 30924",1917-10-08 07:25:14,ab:f9:fa:47:b3:b2,qnichols@gmail.com,img/obama.jpg +Cynthia Roberson,063-22-7553,98053,"858 Bennett Island Apt. 631 +Colemanfort, CO 83576-3897",1980-06-09 19:31:33,9e:0c:ea:0c:2d:4e,turnerlisa@hart.com,img/obama.jpg +Matthew Murray,329-69-2582,63867,"094 White Shores Suite 147 +Cindyshire, SD 79398",1924-11-27 07:18:09,3b:c3:42:b8:88:12,karen69@gmail.com,img/obama.jpg +Albert Cruz,433-24-5235,57643,"805 Noah Gardens +Dyerberg, MO 18501-7122",1986-05-08 08:48:17,a8:2e:c3:ad:99:f5,srobinson@williams-jackson.com,img/obama.jpg +Jodi Ward,644-21-8769,55369,"290 May Turnpike Apt. 138 +Lindseyhaven, FM 24915-6598",1975-10-05 08:19:29,b6:b0:30:ef:db:04,denise32@roach.com,img/obama.jpg +Christopher Carter,608-66-0703,39193,"878 Marvin Via Suite 250 +South Melissa, FM 65689-1440",1994-11-17 10:33:51,af:27:75:a5:50:29,ijackson@gmail.com,img/obama.jpg +Peter Krueger,467-57-3286,39128,"2159 Tucker Canyon Suite 402 +North Kathryn, NH 99293",1949-04-16 16:43:29,c1:d6:04:6c:b6:20,qhernandez@gross.com,img/obama.jpg +Krista Gonzalez,803-99-1581,74227,"293 Greer Junction Suite 147 +East Brenda, SC 04876-2010",1997-01-20 18:10:22,f2:c7:0f:19:58:05,frodgers@gmail.com,img/obama.jpg +Raymond Cook,030-99-0182,40335,"9126 Michelle Gateway Suite 281 +West Melissaland, GA 31991-6870",2012-10-04 01:00:59,b9:2b:c5:de:e7:05,vdeleon@gallegos.com,img/obama.jpg +Cassie Miller,851-73-1521,88897,"2927 Vanessa Village Suite 541 +Ruizburgh, NE 95100-0828",1958-11-23 01:57:21,3d:55:48:c8:19:4a,austinhughes@donaldson-moore.net,img/obama.jpg +Tina Coleman,877-24-3844,19383,"82629 Yates Lock +Carrieview, CA 27733",1918-04-18 20:18:06,ae:f9:47:e4:9d:e0,williambailey@gmail.com,img/obama.jpg +Travis Moran,600-25-1562,24863,"PSC 4850, Box 6613 +APO AE 45331",1931-04-10 12:15:49,d7:e0:b1:77:e5:9e,catherinechavez@yahoo.com,img/obama.jpg +Troy Lee,429-48-9386,91062,"PSC 9870, Box 1248 +APO AP 39768-3764",1937-12-29 11:31:42,64:86:37:b9:b7:6d,bakermegan@gmail.com,img/obama.jpg +Stephanie Norris,734-61-4033,39847,"422 Justin Road +Port Jason, MA 43499",1944-10-16 03:56:54,46:29:ee:24:bd:19,nancy05@gmail.com,img/obama.jpg +Melissa Sullivan,101-64-2098,91343,"36968 Kathleen Cliff +Larsonhaven, DC 63194",1954-03-12 01:40:16,ec:2b:05:48:b7:46,garrett72@boyer.org,img/obama.jpg +Edgar Palmer,020-47-2554,46703,"7071 Nelson Groves +Jamesshire, UT 40259",1930-02-01 17:47:39,dd:ee:2a:03:a1:e7,stephanie46@hotmail.com,img/obama.jpg +Kevin Boyd,701-21-9315,61969,"7373 Kimberly Station +Walkerport, MS 26350-5354",1959-06-05 06:40:08,be:86:e0:06:d7:fa,michael34@silva.org,img/obama.jpg +Joseph Herrera,506-34-8602,87404,"41484 Adams Ford +Myersland, RI 89492",1964-12-25 01:08:17,7f:fb:16:e4:dd:20,johnsonjulie@yahoo.com,img/obama.jpg +Jodi Garcia,459-98-2371,97585,"1458 Smith Passage Apt. 743 +New Randyburgh, AR 06162-2988",2013-08-08 05:14:33,73:64:38:d0:fd:4a,deborah29@fowler.com,img/obama.jpg +Samuel Martin,433-01-3073,04602,"886 Cynthia Pines +West Johnview, FM 71320-1165",2009-10-26 04:38:14,67:6c:07:0f:ff:cb,allensonya@norton-campbell.biz,img/obama.jpg +Tyler Fuentes,612-61-2671,23337,"121 Evan Lights Suite 957 +North Reneefurt, MS 51738",1937-04-19 22:58:34,c3:50:a6:20:d9:ef,gordonkevin@sanchez-prince.com,img/obama.jpg +Brooke Holmes,517-94-3447,90403,"2667 Brian Fords Suite 112 +East Christina, NM 53765",2013-07-28 21:08:56,b1:3b:e1:e1:b7:87,allison57@hotmail.com,img/obama.jpg +Caitlin Gibbs,864-03-4009,48886,"16494 Dean Well Suite 242 +Mollyfurt, LA 63473",1983-02-19 04:36:20,07:26:73:c4:71:31,efisher@hotmail.com,img/obama.jpg +Emily Berry,630-83-5880,30934,"54635 Monroe Isle +South Andres, PW 98834-9197",1948-05-12 04:54:44,98:34:37:ee:86:3c,xbentley@davis-brown.biz,img/obama.jpg +Alejandro Lopez,407-45-3260,33752,"84218 Moore Alley +Lake Brian, IL 58902-8825",1972-01-19 01:52:17,40:80:21:18:96:52,erictorres@hotmail.com,img/obama.jpg +Shane Heath,535-12-0065,34890,"3142 David Squares Suite 902 +Stevenborough, MN 49413",1942-07-30 14:09:00,f7:3b:8d:af:24:5d,alexandra05@garcia.net,img/obama.jpg +Ashlee Davis,265-16-7945,00838,"577 Ellis Corners +South Brianview, OR 14371",1932-04-07 16:02:03,72:af:6c:71:01:d8,rogercalhoun@jones.biz,img/obama.jpg +Benjamin Ewing,436-61-2559,14481,"9400 David Rapid Suite 348 +Knoxstad, RI 97728",1935-03-12 16:21:24,96:bd:47:62:87:5e,victorialang@perez-stone.com,img/obama.jpg +Ryan Mclean,567-25-8200,47753,"374 George Pine +Lake Donaldview, UT 33810",1931-12-02 07:27:23,21:0c:fc:27:6c:5d,sgeorge@newton.info,img/obama.jpg +Melissa Cruz,271-40-6367,19409,"52804 Kristin Shore Apt. 461 +Andrewfurt, DC 98783",1983-07-27 00:21:33,4f:dd:f6:a2:57:3a,johnsonjennifer@ramirez.com,img/obama.jpg +Eric Obrien,234-62-7385,82420,"270 James Brooks Suite 912 +West Catherineburgh, ME 78231-7085",2003-11-13 23:34:19,03:ee:36:2b:fb:c8,shawn66@alexander.info,img/obama.jpg +Vanessa Chandler,029-74-1542,15403,"63573 Olivia Points Apt. 456 +West Stacyberg, ND 40141",1939-11-15 21:08:46,05:a7:00:73:de:f5,hmatthews@hotmail.com,img/obama.jpg +Jennifer Mills,695-91-1152,24495,"Unit 0122 Box 9885 +DPO AE 75650",1975-08-28 16:41:34,62:0a:d2:0f:e5:75,john99@gmail.com,img/obama.jpg +Michael Willis,192-55-7466,85187,"81618 Joe Knolls +East Mary, HI 25463",1920-07-20 07:34:26,98:f0:84:b6:ce:90,andrewpowell@gmail.com,img/obama.jpg +Brian Barber,830-24-1628,19343,"1738 Stevens Mall +East Juliefurt, AR 80168",1958-11-10 04:39:45,87:55:66:4d:11:7e,tammythompson@gmail.com,img/obama.jpg +Christopher Munoz,868-89-3674,21634,"93110 Katie Junctions +Port Bryce, ND 21315",1999-04-13 19:05:31,6e:cd:50:4c:3f:8f,dwallace@hotmail.com,img/obama.jpg +Michelle Medina,397-37-0640,79679,"1964 Jose Landing Apt. 511 +West Lawrence, DE 94083",2017-01-05 15:16:58,e3:b6:3c:e5:d4:91,nicholas13@hotmail.com,img/obama.jpg +Bobby Wolfe,524-31-8339,33355,"7981 Amy Throughway Suite 321 +New Barbara, IL 07724-9599",1992-02-02 14:36:58,75:38:25:b7:4c:03,ginamiller@morris.info,img/obama.jpg +Natasha Scott,339-42-8842,15285,"38048 Jamie Crescent +Port Darleneshire, NV 49331-1601",1960-03-27 18:43:14,0a:51:db:b2:86:e9,stephanie48@kaufman.com,img/obama.jpg +Mrs. Julia Freeman,054-58-1743,06729,"PSC 5603, Box 3334 +APO AA 08318-5563",1942-05-15 00:40:51,98:dc:f3:90:01:ac,lisa02@gmail.com,img/obama.jpg +Mr. Frank Arnold Jr.,878-04-1796,03877,"7098 Russell Turnpike Suite 981 +North Roger, WA 15804-0224",1964-10-12 17:44:35,77:76:73:94:c7:dd,davischristopher@yahoo.com,img/obama.jpg +Tiffany Lowery,040-44-9116,63523,"0369 Timothy Stream +Alexanderchester, AZ 45347-9658",1918-01-25 15:58:33,f7:c5:e1:5b:6f:c2,harrisdennis@murphy.com,img/obama.jpg +Amber Hall,132-80-2087,51344,"40156 Mathew Forks +West Dustinport, DC 20220",1931-05-18 00:13:20,00:c7:d2:cc:f0:4b,kbowers@hudson-williams.org,img/obama.jpg +Adrian Allen,090-25-8071,13806,"5193 Smith Valley Suite 219 +New Bethanyton, MP 49736-8306",1991-05-26 03:16:25,11:e8:8b:66:0c:bd,stevecastillo@hotmail.com,img/obama.jpg +Walter Robertson,888-04-1856,83198,"066 Paul Harbors Apt. 652 +Kevinshire, WA 76047",1968-10-26 22:56:33,2f:ca:55:fe:a3:bf,imurray@kim.net,img/obama.jpg +Jessica Hickman,079-35-7259,76125,"26277 Paul Center +Delgadoton, GA 52146-4725",1961-11-02 23:22:35,9a:a9:ae:09:bd:57,johndillon@hotmail.com,img/obama.jpg +Dennis Lamb,306-59-9321,24863,"USNS Reynolds +FPO AP 36710-9989",1982-08-08 16:16:32,e8:f3:93:73:87:a3,simmonsjoshua@hotmail.com,img/obama.jpg +Maria Daniels,809-53-8706,45938,"7837 Donna Expressway +Lake Melaniemouth, LA 46260-5848",1981-03-21 17:14:23,97:68:33:8a:1d:17,peterskristen@gmail.com,img/obama.jpg +Andrew Pope,120-46-1616,60174,"9202 Daniel Mountain +Elizabethmouth, NM 46345-5130",1947-05-21 10:47:00,65:47:fa:ab:c9:92,julia80@gmail.com,img/obama.jpg +Rachel Foster,060-44-6587,44283,"0365 William Curve +North Davidchester, DC 19351",1973-07-08 10:01:25,43:16:11:e0:be:0a,jerome21@yahoo.com,img/obama.jpg +Vanessa Griffin,315-83-4074,14657,"67222 David Knolls +Warnerchester, MA 32331",1954-01-07 14:53:29,e3:88:6f:75:2e:2f,nashandrew@wood.com,img/obama.jpg +Kim Smith,735-24-6542,32309,"USNV Stevens +FPO AP 17802",1985-03-02 10:57:01,45:10:12:47:3d:2f,angelaproctor@johnson.com,img/obama.jpg +Michael Rodriguez,122-01-9958,00709,"84203 Courtney Courts Suite 211 +South Sharon, CT 69757-6242",1990-03-14 04:08:39,be:9a:e4:f7:95:5a,david32@yahoo.com,img/obama.jpg +Deborah Hernandez,450-87-4884,69571,"6161 Mariah Lodge Suite 358 +Port Joshua, MN 96518-6361",1942-04-15 00:12:46,1f:2c:eb:d7:3c:59,richardjacobs@knox-beck.com,img/obama.jpg +Donna Garrett,268-73-7128,81886,"PSC 4038, Box 8188 +APO AA 73784-4521",1997-11-19 14:10:07,af:40:3a:56:14:89,huffmanwesley@gmail.com,img/obama.jpg +Dr. Brian Taylor,385-51-1335,78482,"7057 Donald Crescent +Lauraborough, IN 91133-8159",1925-02-01 21:04:35,82:b2:4c:a3:af:aa,josephsmith@gmail.com,img/obama.jpg +John Holt,398-68-6575,12915,"713 Stephens Knolls +Gardnerville, MP 79383-3473",1945-03-06 15:26:49,ac:91:18:6e:46:7e,lauren22@petersen.com,img/obama.jpg +Sharon Brady,839-34-4490,49425,"4469 Janet Summit +Brandiport, UT 50356",1935-01-07 04:53:34,08:15:21:76:44:33,joangrant@hotmail.com,img/obama.jpg +Andrew Johnson,240-82-2866,77194,"5204 Davis Isle +Macdonaldshire, CT 24730",1994-09-05 17:36:21,21:e9:bb:ed:5e:79,adam36@gmail.com,img/obama.jpg +Benjamin Schneider,630-19-9592,04538,"6675 Philip Crossroad +Nathanton, WY 38116-6786",1943-03-12 09:10:01,72:24:79:62:32:68,justinfitzgerald@barrett.com,img/obama.jpg +Michael Stevenson,425-29-3113,95918,"376 Walter Plaza +Owenschester, PW 88927",1978-04-04 12:31:59,c6:20:4b:a6:1f:dd,vgarcia@hotmail.com,img/obama.jpg +Rebecca Fletcher,394-11-3424,47363,"871 Kevin Square Apt. 102 +East Jennifer, NC 94012",1984-04-25 00:50:30,a2:4d:9d:71:a6:f7,david10@fletcher-mitchell.com,img/obama.jpg +Ronald Russell,319-83-8287,97641,"744 Larson Loaf +North Crystal, NV 38294-0614",1932-08-08 05:17:54,cf:cf:e8:b4:e1:01,kbright@hoffman-williams.com,img/obama.jpg +Luis Cruz,125-58-0241,22268,"236 Wilson Haven +East Oscarfurt, NE 73915",1952-09-06 17:30:56,bf:ad:27:f3:ba:74,jason57@gmail.com,img/obama.jpg +Lori Sanders,562-49-6803,39223,"43172 Mark Forges Apt. 903 +Popestad, IN 76405-6391",1943-08-16 21:25:38,cf:a8:ab:07:89:ab,elliscurtis@yahoo.com,img/obama.jpg +Kevin Thomas,651-36-6569,97240,"586 Armstrong Dale Suite 722 +South Samuelton, AL 33408-0251",1947-06-26 17:59:42,46:2f:3f:ae:b3:59,ayoung@gmail.com,img/obama.jpg +Corey Hansen,794-13-1592,58962,"83743 Eddie Gateway Apt. 811 +Lonnieborough, NM 02870-6671",1945-12-18 07:11:35,a0:1f:4b:89:96:f8,rowebailey@hotmail.com,img/obama.jpg +Renee Sanchez,494-03-2806,21930,"3960 Cindy Key +Derrickside, NM 90121",2007-10-03 03:32:55,37:f0:47:2d:8c:83,bartonpaul@gmail.com,img/obama.jpg +Matthew Green,028-64-9097,69186,"177 Marshall Route +New Kristinchester, SC 79234-1370",1925-04-15 11:01:58,66:13:e3:4c:06:9d,cindy08@case.com,img/obama.jpg +Karen Jordan,014-07-1332,20147,"87490 Stephanie Springs +Port Emilychester, OH 89436-2453",2016-01-07 17:18:17,ae:af:d8:0c:cc:b4,christina69@farley.com,img/obama.jpg +Lori White,727-89-1322,39146,"1781 Carol Highway Suite 741 +Stewartbury, KY 25666",1917-08-13 21:55:35,84:2a:90:c1:05:e0,darius35@taylor.com,img/obama.jpg +Blake Blair,416-26-1310,97904,"1438 Smith Via Suite 439 +West Courtney, TN 41288-0574",1961-09-23 07:50:10,31:3d:cf:91:10:e9,robinsontina@ramos.com,img/obama.jpg +George Mills,418-51-4382,76514,"24876 White Groves +South Christopherland, AK 44411-4372",1919-09-13 03:23:31,47:78:8c:ee:c9:34,brian42@hernandez.com,img/obama.jpg +Charles Gonzalez,003-12-6320,91057,"1125 Patrick Curve +Wesleyfurt, MD 63524",1930-06-21 16:59:52,72:4e:6a:34:63:81,sroberts@jacobs.com,img/obama.jpg +Benjamin Mcgee,514-93-2421,30225,"25683 Sharon Mountains +Brandonside, NE 01197-1353",1948-07-03 07:29:33,b6:ab:89:99:ad:bc,fuentessusan@gmail.com,img/obama.jpg +David Barrett PhD,409-32-5151,54306,"USCGC Parker +FPO AE 93571-2297",1956-05-17 01:16:50,d7:d0:66:84:fa:17,michael66@bailey-shannon.net,img/obama.jpg +Vanessa Rojas,895-23-9156,42553,"8185 Jessica Harbor +Lake Jillfort, HI 66042-9920",1923-12-12 22:38:38,fa:a7:a8:79:d8:34,efreeman@gmail.com,img/obama.jpg +Jennifer Williams,646-23-0370,40819,"3134 Patrick Hollow +Gayborough, NJ 17036-5255",1943-03-12 01:50:53,59:72:01:ec:6d:bb,mdavis@yahoo.com,img/obama.jpg +Dustin Meyer,404-57-2184,48879,"54672 Bradley Stravenue +Carrollmouth, MI 08857",1944-06-15 22:12:44,71:54:1a:ba:df:52,jmoore@johnson.com,img/obama.jpg +Natalie Jimenez,106-98-0887,50456,"530 Lawrence Mills Suite 162 +Wheelerside, MN 81323-0451",1936-02-28 04:03:30,a7:13:4c:81:65:7c,erinlopez@gmail.com,img/obama.jpg +Nathan Salazar,448-73-8401,62961,"03117 Crawford Springs Apt. 379 +Tinaside, NE 73023",2003-10-30 03:58:51,06:8b:4a:a4:fe:5d,nwong@oliver.com,img/obama.jpg +Shawn Lewis,451-76-5606,01121,"1302 Tristan Spurs Suite 595 +North Matthew, OK 00409",1989-11-19 05:58:08,21:89:4b:6d:9b:5b,wilsoncollin@yahoo.com,img/obama.jpg +Anthony Garza,005-80-2468,07157,"2710 Davis Turnpike Suite 655 +South Mercedes, NH 31214-3163",1965-10-24 19:51:04,cf:dd:0d:ed:22:ea,tranangelica@chan-lopez.org,img/obama.jpg +Nicole Roman,010-01-8632,42649,"1320 Caleb Divide Suite 602 +South Charlesview, MI 59420",1965-05-08 11:04:36,7a:1d:c4:b4:23:25,bowersmatthew@hotmail.com,img/obama.jpg +Lisa Matthews,372-24-5693,60171,"14112 Kline Road +New Jason, MN 46768-2008",1992-12-01 04:20:37,94:82:4e:08:44:d2,douglasjason@yahoo.com,img/obama.jpg +Julie Hernandez,124-36-2131,56048,"7333 Smith Roads Apt. 227 +North Sonyaberg, WV 20907-3943",1997-01-24 03:21:35,d4:2e:77:1a:79:2b,tyler99@yahoo.com,img/obama.jpg +Kim Trujillo,595-39-4971,76427,"9438 Weber Vista +Herringhaven, MD 35492-0851",1933-11-22 12:49:12,a2:9c:c1:cf:4a:a6,davisjodi@hotmail.com,img/obama.jpg +Stephen Wilson,523-82-2744,19675,"485 Kelly Plaza +Baileyville, ND 43616-8627",1929-07-20 08:06:50,9b:d3:eb:1b:dc:f6,johnsonpatrick@moreno.com,img/obama.jpg +Andrew Mccoy,637-63-7011,39670,"0899 Smith Lake +Frostmouth, NC 06543",2004-08-20 01:18:55,5f:74:6a:19:5f:1a,sarah34@gmail.com,img/obama.jpg +William Parker,145-53-2636,67174,"0982 Adams Branch +Rodriguezbury, NV 72137",2005-01-11 07:47:22,94:39:d7:67:b4:d3,blackburnbryan@hotmail.com,img/obama.jpg +Daniel Mccarthy,778-24-6526,43761,"66929 Morales Manors Apt. 158 +Lake Teresa, AR 05043",1931-10-18 00:55:59,e9:40:1a:1e:9e:ff,hdavis@martinez-palmer.biz,img/obama.jpg +Kelly Wise DVM,737-53-7563,97615,"49868 Vanessa Mountains Suite 529 +South Vanessashire, WA 64853",1947-06-23 11:46:35,bc:ca:35:fc:63:b6,francosuzanne@yahoo.com,img/obama.jpg +Lorraine Lee,870-62-0223,37298,"045 Morrison Knoll +South Brittany, IL 44116-8131",1999-07-20 20:27:05,92:d7:c6:1c:e0:c7,sarahbailey@gmail.com,img/obama.jpg +Ashley Byrd,329-69-3760,03719,"2369 Ariel Creek +Smithfort, PW 21684-5740",1924-10-02 17:28:59,5b:39:9e:66:71:f2,shawangel@hotmail.com,img/obama.jpg +Joseph Phillips,804-83-3393,04690,"28268 Atkinson Track +Dyerfort, NH 81082-1000",1929-12-01 11:58:28,8f:8f:fc:d5:2f:68,debbiecruz@hayden-rogers.net,img/obama.jpg +Kayla Bradford,188-29-4800,64003,"3705 George Extensions +Jamiefurt, ID 08528",1967-02-04 05:54:38,b6:bb:78:e9:dc:72,vcaldwell@hotmail.com,img/obama.jpg +Dr. Michelle Cunningham,334-45-2577,78070,"199 Francisco Roads Apt. 006 +North Barryberg, VA 66973-8517",2011-11-15 03:56:00,4c:7f:c9:33:2d:7a,stephen95@gmail.com,img/obama.jpg +Alexis Steele,384-39-6904,72900,"626 Riddle Dam Apt. 979 +New Michaelside, ID 36696-1142",1931-12-13 17:51:44,14:b9:f7:76:6a:b6,laura71@gmail.com,img/obama.jpg +Sara Arnold,644-01-3445,05788,"7680 Sharon Ports Suite 722 +Robertsonberg, HI 10543-0558",1949-05-21 12:45:00,99:bd:a1:29:25:41,wstuart@gmail.com,img/obama.jpg +Samantha Trevino,744-54-2541,81816,"95116 Mclean Mount Suite 663 +Christopherville, CO 80856",2013-09-22 21:31:20,d2:c8:98:da:82:73,ajohnson@diaz.biz,img/obama.jpg +Carol Mcconnell,329-69-7841,32110,"71255 Patrick Haven +West Kimberly, FL 98106",1971-12-20 23:16:26,cb:f8:4c:0a:33:2f,jose28@castro.info,img/obama.jpg +Stephanie Riggs,207-94-5516,33471,"PSC 8218, Box 2514 +APO AE 04945-4505",2005-08-07 06:09:58,10:3e:7a:ac:78:d1,huntjason@robinson.com,img/obama.jpg +Sarah Cruz,227-84-6599,96336,"309 Herrera Drive +South Troymouth, VI 42490",1928-09-14 17:01:08,dd:70:d3:e1:98:f3,ricardo31@white.com,img/obama.jpg +Paul Flores,228-21-1809,24504,"28247 Bethany Cove +Lake Brookeport, VI 57535",1999-01-21 03:48:24,f9:f8:c4:09:55:b3,elizabethhancock@lopez-powell.com,img/obama.jpg +Theresa Hodge,035-58-5397,08814,"60416 Michael Extension Apt. 859 +Williammouth, TN 26248-2070",1993-10-06 11:00:10,c0:c0:ad:98:7e:83,bryanmartin@yahoo.com,img/obama.jpg +Matthew Green,682-79-8975,41761,"057 Lopez Burgs Suite 260 +Dixonhaven, MA 95534",1975-06-12 16:36:55,21:eb:eb:dd:2a:c7,xcampbell@hotmail.com,img/obama.jpg +Jeffrey Hart,510-21-4221,37182,"0805 Matthew Glens Suite 181 +Davisbury, GA 37253",1995-10-24 15:37:37,03:62:ab:a9:d1:80,laurentaylor@hotmail.com,img/obama.jpg +Brian Blackwell,084-09-4188,90439,"9416 Walker Cliffs Apt. 531 +Jeremymouth, VA 77876",1946-03-10 13:44:45,c4:61:be:74:9e:92,mariastewart@dixon.com,img/obama.jpg +Alyssa Tapia,137-72-5063,02383,"9994 Miller Ridges Apt. 070 +Nelsonchester, VT 64240-4942",1972-12-31 21:52:53,c8:08:94:15:5f:d6,robertobrown@martinez.com,img/obama.jpg +Stephanie Pope,615-53-6764,59944,"4328 Thompson Club +Johnville, ND 78320-7325",1938-08-30 08:40:51,4a:e3:bf:89:30:6a,dorothymacias@yahoo.com,img/obama.jpg +Kyle Edwards,041-64-6917,05694,"USNS Fernandez +FPO AE 33437-3960",1987-11-05 21:33:26,8b:c8:47:44:e3:cb,nhudson@roberts.com,img/obama.jpg +Jill Jones,772-86-8258,12882,"809 Lynn Stream Suite 609 +West Brooke, TX 44005",2015-03-11 09:19:52,cc:4e:98:d3:59:9e,shawnerickson@carlson.net,img/obama.jpg +Anna Brown,827-44-3465,99062,"USNV Lara +FPO AE 66261",1987-08-19 10:31:43,b2:41:55:e6:7d:13,jamesrussell@gmail.com,img/obama.jpg +Joshua Cisneros,747-94-8424,04052,"2900 Carol Curve +West Kevinberg, OR 03951-4982",1993-05-27 03:58:12,17:c5:f7:e8:89:4a,bruiz@hotmail.com,img/obama.jpg +Robert Mcdaniel,019-77-5807,08958,"03800 Nathan Brooks +Robertsonberg, PW 62165-7339",1920-04-24 07:47:48,44:05:3d:00:15:fc,bakerbob@pacheco.info,img/obama.jpg +Laura Davis,620-99-2004,91695,"397 Aguirre Spur Apt. 333 +Hopkinsfurt, WI 74909",1935-10-20 02:30:27,19:50:d9:0e:d3:18,adamadams@stewart.org,img/obama.jpg +Daryl Gonzalez,677-75-0241,25609,"3980 Wilson Pike Suite 536 +Michaelchester, ME 33562-6711",1950-01-05 16:46:38,b4:2e:8e:2a:88:fa,paula31@gmail.com,img/obama.jpg +Justin Frey,069-62-6805,43416,"200 Cohen Plaza +Lake Johnnyton, GU 57214",1953-10-30 11:48:39,26:e5:3a:6c:2e:a7,mberry@gmail.com,img/obama.jpg +Alexander Jackson,098-11-9335,48346,"1761 Renee Lake Suite 560 +Annborough, MD 92379",1971-05-04 10:28:26,57:07:4c:78:53:86,steinkenneth@yahoo.com,img/obama.jpg +Christine Golden,120-75-8947,80443,"3424 Nicole Inlet +South Dawnport, DE 60192",2010-09-17 01:23:56,d3:1c:74:16:b9:c3,meyerjustin@yahoo.com,img/obama.jpg +William Swanson,177-03-3294,71763,"235 Scott Dam Apt. 150 +Blacktown, NC 91936-5748",2015-03-08 04:40:28,f0:a9:75:e5:3b:c1,davidluna@gmail.com,img/obama.jpg +Heather Byrd,054-41-6422,72031,"4191 Atkins Village Apt. 494 +Goodwinton, VT 92352",1999-08-17 19:54:06,b5:51:c8:e6:bc:28,brandi36@hotmail.com,img/obama.jpg +Gregory Sims,704-37-4530,53462,"00452 Miranda Forge +West William, AS 88690",1919-05-31 09:53:45,d2:4f:62:01:bf:6f,olsonerica@yahoo.com,img/obama.jpg +Jacob Wallace,649-73-7204,14284,"75706 Scott Shoal +Port Patricia, WA 58829",2017-04-08 11:29:06,ac:cd:04:61:83:0a,xtaylor@decker.com,img/obama.jpg +Anthony Collins,475-12-8981,01964,"154 Robert Walks Apt. 945 +Alexandrafort, ND 16193-9162",1922-04-20 09:44:14,47:5e:c0:b9:9a:f3,zmurphy@hotmail.com,img/obama.jpg +Phillip Clark,744-17-1960,60387,"1241 Natalie Mount +Smithtown, GA 19194",1978-06-01 00:57:54,7d:ea:98:de:af:3f,davidjohnson@hotmail.com,img/obama.jpg +Robert Anderson,589-40-7941,95432,"524 Carroll Landing +Amyview, MI 71670",1963-01-23 03:01:43,67:d2:ba:b6:92:a8,toni30@hotmail.com,img/obama.jpg +Sarah Hull,663-61-6446,32334,"90734 John Ways +Arnoldport, DC 02548-6537",1978-08-08 10:07:00,92:e4:58:b0:a3:84,bryan79@hendricks.info,img/obama.jpg +Andrew Gonzalez,709-63-5439,36163,"658 Jessica Port +East Stevenfort, TN 35683",1963-07-18 21:18:03,6e:c1:48:1e:69:d4,donnawebb@gmail.com,img/obama.jpg +Elizabeth Barker,197-75-0899,72850,"48805 Michael Alley +Whiteville, DC 29960-5149",1958-07-19 18:26:18,39:94:dd:e7:ae:74,parkerphillip@robinson.net,img/obama.jpg +Scott Pierce,030-98-2596,12145,"6992 Lisa Lane +Davidfort, PA 34476",1955-06-27 10:47:40,76:25:7a:97:f6:d5,brittany84@lozano.com,img/obama.jpg +Keith Golden,383-22-3193,51755,"32371 Holt Hollow +East Jameston, IN 02940",1960-07-14 12:29:26,ae:ff:d0:a1:ba:bb,radams@davis-velez.com,img/obama.jpg +Mark Bryant,846-96-5571,07441,"475 William Stravenue Apt. 009 +West Richardhaven, KS 12491",2013-02-14 00:15:14,95:2a:e9:95:29:3b,troy30@hotmail.com,img/obama.jpg +Yvonne Evans,027-95-0151,84099,"473 Lance View Apt. 641 +East Elizabethberg, WV 54076-5181",1969-04-23 16:15:10,92:c5:03:33:46:e6,combsmichael@hotmail.com,img/obama.jpg +Madeline Arellano,603-26-9810,27992,"943 Larson Well Suite 077 +East Joseburgh, GU 00704",1964-09-27 10:25:49,cc:98:ba:57:bf:8b,vgolden@hotmail.com,img/obama.jpg +Michael Boyle,454-27-8338,64366,"897 Miller Curve +South Leeton, VT 73689",1921-12-12 17:31:47,4a:b9:da:49:b3:7a,whitejacqueline@hotmail.com,img/obama.jpg +Steven Roberson,784-70-2798,31899,"0061 Johnston Trafficway Suite 637 +Lake Reginachester, WY 48114-2383",1924-05-11 11:39:10,47:fe:ac:fe:37:09,omartinez@hotmail.com,img/obama.jpg +Crystal Long,535-93-5094,17248,"06225 Rachel Mews Apt. 535 +Mitchellchester, LA 87348",1969-01-06 23:48:46,60:fd:7e:7e:2c:65,vkoch@meza-martin.org,img/obama.jpg +Kevin Wilson,325-21-2106,79159,"9193 Williams Fall Suite 486 +Carrollton, ID 21170-9488",1928-08-17 22:03:21,9f:e5:66:24:24:62,zwalsh@meyer.biz,img/obama.jpg +Matthew Wilson,121-40-2702,37374,"6229 Young Square Suite 016 +West Laura, MP 51945-3508",2013-10-30 19:44:08,46:6a:b5:82:21:ee,ericwalker@french.biz,img/obama.jpg +Andrew Black,660-66-5404,16971,"5351 Delacruz Trace Apt. 399 +Wardview, NV 21383",1923-03-25 07:35:12,4f:08:ed:96:3e:4e,lsmith@yahoo.com,img/obama.jpg +Emily Mcpherson,593-02-2481,47467,"0919 Gregory Grove +Port Glennborough, NM 80124",1928-07-04 19:57:00,97:d5:16:d6:23:a3,christophersanchez@brock.com,img/obama.jpg +Courtney Fox,473-98-5785,22492,"9047 Tate Path +South James, MO 85477-4564",1931-03-08 01:48:05,54:d4:61:af:d5:20,sheilaschwartz@garcia.net,img/obama.jpg +Dawn Hawkins,319-18-6224,70367,"042 Sanchez Squares Suite 422 +South Christinafort, MN 28004-3524",1931-10-08 15:42:17,82:9e:15:aa:c8:cb,renee89@pratt.com,img/obama.jpg +Richard Freeman,333-56-4123,67979,"326 Browning Ferry Apt. 417 +Lake Christopherfort, NV 85061-0646",1928-06-13 16:34:33,aa:72:d9:57:f1:70,perezbrittney@hotmail.com,img/obama.jpg +John Wilson,230-92-8003,27556,"828 Walker Field Apt. 723 +North Tammyborough, RI 23354-5666",1947-01-23 13:33:23,3d:cb:97:16:c9:0d,patricia03@yahoo.com,img/obama.jpg +Alexander Owen,516-22-0531,28870,"3848 Jimmy Mission +West Robert, MN 79694-8981",1988-03-14 10:15:45,f3:e8:52:29:d7:64,melindajackson@fritz-wilcox.com,img/obama.jpg +Kristie Ramos,546-15-4479,76646,"658 Stacy Harbors Apt. 869 +Stanleyport, FM 22976",1978-03-15 08:43:09,7c:5a:4e:9b:79:b3,fsavage@kennedy.com,img/obama.jpg +Shirley Miller,648-72-4513,06288,"15611 Eddie Rapids Apt. 704 +West Laurenport, ID 73753",1975-08-04 18:28:38,68:68:96:3e:e8:a8,adavis@yahoo.com,img/obama.jpg +Krystal Rodriguez,409-38-6607,67607,"621 Allison Union Suite 573 +New Kathrynberg, IN 89254-9667",2011-12-18 15:13:40,4d:1b:ef:ea:fa:ca,spenceramber@gmail.com,img/obama.jpg +Sandra Lee,246-45-3758,39174,"USNS Brown +FPO AE 91020",1952-11-14 17:56:28,8b:fb:49:28:58:df,brownkendra@hotmail.com,img/obama.jpg +Kylie Callahan,641-27-7168,69263,"18828 Peterson Prairie +Shaunport, MD 72683-0218",1979-10-21 09:12:45,5d:ee:d3:da:e6:b5,williamwilliams@gmail.com,img/obama.jpg +Bradley Roy,057-10-5413,83712,"483 Cox Row Suite 546 +Kingbury, NV 81016-4938",1928-11-06 05:21:56,29:e2:76:38:91:9d,stephaniewilliams@graham-flores.com,img/obama.jpg +Teresa Reyes,523-45-5164,57687,"49781 Taylor Dale +Allisonshire, VT 02286-7050",1919-05-25 00:38:53,24:1b:bb:40:e8:e0,kevin93@gmail.com,img/obama.jpg +Kelsey Pearson,149-17-7149,72653,"29524 Valerie Square +New Andreaville, VI 02297-1721",1978-04-02 03:48:14,f6:bb:98:c6:48:b0,plambert@hahn.com,img/obama.jpg +Catherine Williams,710-78-3768,02260,"064 Joshua Key +Nicoletown, ND 55560-9469",1944-07-22 02:46:37,1b:d8:17:ee:57:6f,melissa84@hotmail.com,img/obama.jpg +Jeanette Murphy,181-53-4432,62212,"Unit 4013 Box 8231 +DPO AP 71777-8862",2004-11-12 05:24:05,1c:ad:ab:c2:81:a0,brandon87@yahoo.com,img/obama.jpg +Jacob Castro,821-47-9757,16220,"PSC 0255, Box 6941 +APO AP 90985-7929",1969-10-13 22:00:44,86:c4:c7:72:c8:63,williamsnatalie@taylor-solis.com,img/obama.jpg +Charles Jimenez,314-31-0230,74615,"721 Randy Fort +Hansonmouth, AL 83179",1947-02-16 18:52:34,9c:1f:97:9d:78:29,thomashall@gmail.com,img/obama.jpg +Melanie Jensen,107-09-1061,08368,"5389 Kathy Radial Suite 309 +Stonestad, TN 66465-0808",1926-09-19 13:43:13,c1:fa:4f:71:6b:4c,iparker@johnson-jackson.biz,img/obama.jpg +Christina Thomas,697-77-4536,41901,"60897 Gonzalez Parkways +Jamesburgh, MN 89877-2303",1950-05-21 10:42:22,e3:10:17:6b:ae:6e,dannywong@camacho-graham.org,img/obama.jpg +Julie Anderson,153-73-3130,84824,"54987 Gina Shore +Codyberg, PA 02149-4955",1929-07-01 09:14:11,db:c7:95:fb:37:1f,jeromebailey@yahoo.com,img/obama.jpg +Justin Brown,253-44-1505,06117,"041 Cheryl Turnpike Suite 126 +New Andrewton, MA 05974",1980-10-23 04:42:21,f3:4f:1f:be:a6:e1,ygould@curry-mccoy.org,img/obama.jpg +Tracy Bell,691-01-8512,82692,"91925 Erika Junctions +Jessicafort, WY 19305",1922-12-21 15:23:15,20:d0:86:48:19:34,angela99@riley.com,img/obama.jpg +Antonio Adkins,311-65-1970,56500,"08822 Scott Villages Suite 427 +Smithhaven, MA 47536-5105",2007-11-04 18:56:12,7b:0c:47:53:1d:91,gpeters@rich.com,img/obama.jpg +Jo Espinoza,449-92-9387,57351,"48534 Mccoy Manors +Edwardsborough, WV 58433-2346",1972-04-14 07:21:49,b2:b7:7c:9f:c9:70,howardmichael@hopkins-johnson.com,img/obama.jpg +Anthony Walker,233-02-2914,49577,"17414 Daniels Pike +Thompsonland, TX 14431",1921-04-09 00:48:54,04:27:94:61:23:37,hendersonsamuel@mullen-rodriguez.com,img/obama.jpg +Mackenzie Reyes,470-69-0428,20281,"4515 Erickson Ports Suite 175 +Davidville, NE 76885-3123",2005-10-25 00:11:02,4e:66:19:0c:0c:ea,brandi92@george-weiss.info,img/obama.jpg +Amber Lopez,225-60-4000,50280,"21356 Jordan Heights Apt. 730 +East Aprilbury, WI 84499-5009",1940-03-21 23:02:10,d2:95:a6:9b:9d:62,shuynh@romero-webster.info,img/obama.jpg +Derek Pearson,694-46-8969,58898,"49230 Michelle Route Apt. 138 +Daltonhaven, TX 78220-5207",1974-12-19 07:46:48,bd:6c:c5:75:df:b6,blackwellchristina@sandoval.biz,img/obama.jpg +Joseph Johnson,432-97-4262,62608,"278 Olivia Knolls +East Deannastad, VA 97840",2011-10-13 09:39:03,64:60:49:68:0c:81,antonioreid@yahoo.com,img/obama.jpg +Anita Cochran,174-50-8236,70440,"983 Lisa Pine Suite 136 +Aguirrefort, GU 70746-3444",1947-07-02 22:54:24,29:91:5f:75:f1:0f,jonesdevin@gibbs.com,img/obama.jpg +Stephanie Ryan,254-23-4977,37785,"PSC 7365, Box 7229 +APO AP 64065-4823",1934-03-21 10:38:31,1d:f5:54:a3:19:06,jennifergates@escobar.info,img/obama.jpg +Michele Bass,030-34-6231,11042,"0712 Stephanie Plain +East Michael, NC 61538-0743",1948-12-21 22:08:35,4b:42:7c:6d:85:f2,vbishop@turner.org,img/obama.jpg +Andrew Park,033-39-2291,50008,"2249 White Road +West Gerald, CT 92503-3211",1950-03-05 12:34:58,f7:68:3b:44:cf:d0,patricia62@hotmail.com,img/obama.jpg +Kyle Blankenship,328-74-2361,74545,"250 Williams Groves Apt. 559 +West Adam, OH 30265",1977-08-09 04:17:09,48:6d:5e:8d:56:6b,greid@gmail.com,img/obama.jpg +Theodore Baker,849-63-9774,21398,"790 Parker Keys Suite 468 +West Jenniferborough, WI 87295-0760",1965-05-20 10:43:30,af:9e:2c:f2:e9:18,ricechristine@hotmail.com,img/obama.jpg +Sarah Young,450-21-1524,99195,"49332 Paul Stravenue +Paulton, GA 21418-3316",1962-03-09 09:00:50,83:ac:bf:bd:b4:fd,joy60@manning.info,img/obama.jpg +Christopher Page,846-20-4082,68535,"724 Howard Grove +Donaldchester, MA 76854-4603",1920-03-19 22:51:21,14:86:e8:3e:46:d2,stokesricky@webb-smith.info,img/obama.jpg +Joe Brewer,547-61-2025,18597,"997 Michael Parks +Santosshire, NH 81737",1965-11-03 15:15:12,c7:4d:30:a3:af:80,laurievelez@silva-wright.com,img/obama.jpg +Bradley Campbell,564-59-0410,55792,"716 Tracy Run Apt. 723 +Adamsview, MD 09153-0537",1961-07-03 18:31:19,fb:46:bc:a4:9f:36,robinsonjeremy@villanueva.com,img/obama.jpg +Andrew Woods,274-45-5675,21023,"95311 Sandra Heights +North Stephenbury, AL 05602",1995-07-08 23:53:52,2c:ac:22:fd:ec:30,jonathanmoore@larson-garcia.net,img/obama.jpg +Jeffrey Cooper,188-40-8236,60500,"PSC 8028, Box 7926 +APO AA 00428-3305",1975-11-11 10:15:56,f7:2f:c1:8d:c5:1c,kimberlyadkins@santiago-simmons.com,img/obama.jpg +Kaitlin Gomez,280-44-7278,27129,"PSC 6099, Box 0012 +APO AE 07106",1999-06-24 16:15:31,0f:73:b3:16:01:67,qjames@sanchez-garcia.com,img/obama.jpg +Joe Elliott,491-27-2412,70187,"5892 Rodriguez Trail Apt. 068 +Port Taylor, ID 17533-9844",1935-11-29 16:01:41,ac:30:f1:88:ab:a2,ftownsend@hotmail.com,img/obama.jpg +Ethan Stewart,338-04-7973,13935,"98547 Ricky Trail Apt. 167 +Brianville, CO 17806",1971-01-30 17:55:08,a7:a9:c6:6e:80:1b,chase19@hotmail.com,img/obama.jpg +Jennifer Pearson,170-20-7579,24250,"PSC 8813, Box 5706 +APO AA 08397-7652",1941-05-25 21:54:05,f8:24:43:81:09:13,ldiaz@gmail.com,img/obama.jpg +Miguel Sanchez,695-89-5798,33640,"083 James Lane Apt. 331 +Daltonview, DE 05836",1921-07-14 17:00:35,0c:58:03:c4:d9:e2,tyler80@perez.biz,img/obama.jpg +Erin Watts,614-93-3241,49976,"USNS Chandler +FPO AE 07887",1987-03-19 21:09:22,b7:08:2f:33:a3:e5,michaelzimmerman@reyes.com,img/obama.jpg +Brad King,447-69-0847,61266,"61312 Reilly Land +Fowlerhaven, CA 85360-6166",1965-10-20 13:41:52,8e:e1:a7:6d:df:bc,jstewart@sosa.com,img/obama.jpg +Patricia Hamilton,788-68-7839,61529,"763 Benjamin Square Suite 791 +Hollowayville, VI 00466",1983-12-31 16:01:13,ed:76:19:ae:a0:d5,gloriabaird@gmail.com,img/obama.jpg +Justin Smith,045-70-1410,60446,"59068 Kelly Skyway +New Davidport, CT 95940-6671",1981-07-14 04:54:43,76:84:c5:bb:56:70,stonejoseph@simmons-howard.com,img/obama.jpg +Christopher Wise,692-92-8899,56655,"5277 Bridges Junction +Sloanhaven, NH 89358",1994-01-19 03:48:10,b8:ca:4d:39:8a:10,sstanley@hotmail.com,img/obama.jpg +Sarah Wells,843-84-9278,12727,"404 Beard Spurs Suite 634 +Port Heatherside, UT 35275-2521",1941-05-24 14:41:22,5d:d2:ed:37:1e:8f,ygreen@gmail.com,img/obama.jpg +Christopher Richardson,595-50-0145,04434,"USCGC Flores +FPO AA 20280",1930-04-18 17:38:35,31:95:91:fa:44:49,qjackson@yahoo.com,img/obama.jpg +Stacy Spencer,078-02-7242,08961,"1190 Kyle Burg Apt. 740 +New Heathermouth, KY 57905",1926-02-13 10:25:52,79:6e:d5:1b:43:33,caldwellthomas@hotmail.com,img/obama.jpg +Megan Lewis,471-22-1816,46382,"5577 Jennifer Pike Suite 487 +East Nathan, AS 73900",1937-07-16 03:10:04,9d:bd:83:e0:ad:b8,donaldarnold@lara.com,img/obama.jpg +Joshua Flynn,760-44-1655,46432,"65711 Hernandez Burg +West Kimberly, AR 73854-9611",1959-10-17 07:48:31,93:b8:46:35:0f:11,julie87@gmail.com,img/obama.jpg +Monique Pham,874-05-5522,71407,"166 Castro Shoal Apt. 346 +Anatown, MP 87520",1928-06-17 13:51:36,e7:f9:45:17:d4:cd,courtneythompson@hotmail.com,img/obama.jpg +Eric Ross,306-24-1971,39089,"1927 Samuel Inlet Apt. 669 +Lake Donald, MD 28000-7477",2006-06-26 21:11:26,03:bb:6b:bf:ff:54,wrightjennifer@harrell-brown.info,img/obama.jpg +Robert Lee,478-90-1346,71477,"3290 Gregory Drive Suite 623 +Meganshire, NC 34039",1927-01-04 17:54:45,a6:04:93:0d:0e:21,scottsmith@hotmail.com,img/obama.jpg +Mr. Joshua Hill,333-91-4227,32680,"PSC 9583, Box 1782 +APO AA 31600",2002-09-04 01:59:50,f9:97:d4:41:89:2b,sherrycoleman@mcneil-daniels.net,img/obama.jpg +Daniel Griffin,776-74-2357,75664,"588 Stephanie Crest +South Carlos, TN 30676-7093",1971-09-10 01:48:32,d7:14:b3:44:76:92,christine70@rivera.com,img/obama.jpg +Rhonda Perry,132-31-7823,93559,"66405 English Streets +Lake Paul, TN 66532",1940-07-23 20:14:22,9f:0f:77:bd:a1:d7,kayla52@ross.com,img/obama.jpg +Charles Williams,804-94-3208,71575,"6395 Kathryn Walks +Sototon, WY 83719-1389",1985-04-29 14:01:34,47:b6:93:5c:78:da,paul50@sutton-banks.com,img/obama.jpg +Douglas Warner,634-85-4206,99009,"620 Michael Dale Apt. 522 +West Jonathon, OK 28450-9334",1968-09-06 09:40:39,a4:9f:74:ba:ed:89,cameronbooth@gmail.com,img/obama.jpg +Christina Mclean,518-12-0056,40756,"911 Vincent Way Suite 599 +West Donnafurt, VA 13534-6909",1961-06-13 05:57:35,35:11:ee:d5:ec:3c,danasmith@kirby.net,img/obama.jpg +Thomas Barnes,832-20-7765,63482,"622 Weiss Lane +West Richardtown, PA 01986-3929",1951-06-13 01:51:20,3b:e3:ec:f9:b3:91,warrenkyle@berry.com,img/obama.jpg +Jamie Taylor,274-66-7748,78578,"3393 Wilson Isle Suite 186 +Port Lisa, AL 58955",1979-04-09 04:30:26,84:b4:e3:2d:ba:de,lynnjoseph@roberts.org,img/obama.jpg +Mike Mccall,502-21-8471,42809,"8793 Anderson Manors Suite 248 +Dawnhaven, AR 94778",1920-10-12 12:25:16,7a:50:a2:85:16:c9,bryanwilliams@gmail.com,img/obama.jpg +Mark Scott,696-52-6714,47377,"49521 Allen Valley Apt. 284 +East Kristinport, WA 82459-0982",1957-11-14 22:52:15,47:66:59:ad:a4:be,christine21@thompson.com,img/obama.jpg +Brandon Wilson,788-52-0183,67733,"2845 Kimberly Island +Castanedafort, AL 72292",1917-06-10 06:20:56,04:09:af:39:d2:46,rwilliams@yahoo.com,img/obama.jpg +Olivia Freeman,440-39-8985,84881,"47098 Ian Course Apt. 667 +Sharonburgh, MA 82751-6934",1977-02-14 19:43:21,68:23:50:93:a3:31,jennifer06@evans-gonzales.biz,img/obama.jpg +Haley Nichols,527-67-7833,75341,"8136 Matthew Shoals Suite 687 +Phillipsmouth, AK 72414-3417",2011-09-12 09:50:21,e6:c1:cc:32:4e:e0,emilyweaver@hotmail.com,img/obama.jpg +Steven Holloway,258-99-6901,47438,"46422 Taylor Gateway Suite 041 +Port David, GU 35355-7231",1981-04-25 14:20:25,cd:07:a0:0e:85:81,erik07@hotmail.com,img/obama.jpg +Brian Nelson,123-55-3411,50163,"10319 Lopez Parkways Suite 297 +North Joanneshire, RI 46444",1936-10-22 19:51:34,e0:e3:d8:bf:50:56,nicholasjenkins@yahoo.com,img/obama.jpg +Christopher Barber,870-85-6649,61705,"54198 John Center +Sampsonville, NM 60959",1952-04-17 11:38:39,0d:35:f0:23:99:37,elizabethtodd@lopez-jones.com,img/obama.jpg +Sheri Wells,181-76-4577,60635,"93014 Lori Square Suite 936 +Bakerview, LA 16318-6312",1920-11-24 08:22:51,6d:bd:4d:53:5b:d7,priscillaboone@hotmail.com,img/obama.jpg +William Zimmerman,757-76-9167,27306,"PSC 5244, Box 2500 +APO AP 03117-6029",1982-08-25 19:25:06,a9:5c:37:c3:21:80,stevenkirby@gmail.com,img/obama.jpg +David Ward,096-24-7945,76460,"724 Angela Motorway +Justintown, TX 78970-6941",1943-05-27 21:34:54,9d:62:bc:d9:18:37,uharvey@yahoo.com,img/obama.jpg +Jose Jones,595-46-3380,31317,"1701 Jennifer Terrace Suite 112 +Lake Sarahville, DC 12660",1952-11-29 18:13:31,c4:4c:67:a8:50:1f,hrobinson@hotmail.com,img/obama.jpg +Jerome Wilson,086-49-1226,22213,"600 Turner Port +East Meredithland, IA 88393",1966-03-19 12:17:42,71:a5:ea:0e:4e:3a,jillwillis@hotmail.com,img/obama.jpg +Latoya Barker,684-78-9265,10625,"USCGC Greene +FPO AP 00863",1964-05-06 00:32:16,b2:b7:ee:a2:60:75,tvaughn@peck.com,img/obama.jpg +Joseph Gonzalez,191-06-1865,62798,"623 Buchanan Spurs +Port Rhonda, OR 92084",1995-10-23 20:37:48,58:bf:68:20:f5:e8,jodi32@hotmail.com,img/obama.jpg +Ricky Gonzalez,129-09-7904,71272,"7251 Carter Cliff Apt. 925 +Bradyville, OH 29571",1985-09-26 16:48:30,56:3f:db:92:fb:c3,vtownsend@green-gates.com,img/obama.jpg +Javier Austin,602-26-6205,65346,"8726 Jacob Rapids +Millerberg, GA 50176",1988-05-16 14:51:45,02:85:7a:e3:7f:46,ralph85@nichols.com,img/obama.jpg +Joseph Garcia,560-78-3430,83385,"155 Barnett Cape +Olsonmouth, ID 27234-7041",1927-04-08 15:30:33,10:09:24:27:10:d3,schmidtdon@mccoy-brooks.com,img/obama.jpg +Johnathan Spencer,065-41-1767,12761,"PSC 4527, Box 2781 +APO AE 77507-7966",1987-11-22 23:34:11,63:a5:00:9a:17:7e,danagutierrez@murray.com,img/obama.jpg +Michael Johnson,861-54-5374,09225,"836 Christopher Mews +East John, RI 35868",1978-04-30 13:38:53,ab:95:36:13:0b:1f,lynnalexander@gmail.com,img/obama.jpg +Kelli Peters,671-18-1660,66071,"745 Peter Shores +Port Michaelton, PR 67218-9491",1981-06-27 10:19:51,a7:4b:07:1e:e2:b6,sstephens@hicks-goodman.com,img/obama.jpg +Arthur Miller,035-88-6012,09228,"9797 Hodges Heights +South Charleschester, GU 04995-8584",2012-04-11 22:14:09,63:ac:53:88:85:d9,tbean@gmail.com,img/obama.jpg +Michael Nelson,300-70-9303,94073,"97796 Estrada Views Suite 916 +Port Nicholasmouth, SC 45143",1952-01-19 04:08:30,59:ab:32:62:5c:3b,sfields@gmail.com,img/obama.jpg +Lance Rogers,042-26-5471,56368,"660 Mark Rest +South Kimberlyshire, SC 28575-3376",1970-11-02 22:42:12,63:1a:38:1c:b0:ba,ruth69@hotmail.com,img/obama.jpg +Paul Nelson,848-28-2648,88843,"71844 Linda Inlet +Lake Jon, NM 44572-4694",1967-05-25 22:48:39,b3:6d:97:98:c5:cb,becklauren@morris.com,img/obama.jpg +Eric Cox,579-10-3792,61488,"7923 Kayla Club +Pamelaville, TN 83226-1156",1922-11-24 12:00:55,e2:fd:5c:ea:1b:b2,jordan80@yahoo.com,img/obama.jpg +Joseph Harrell,817-01-9100,06940,"47089 Mccormick Meadow +East Yolandafurt, CO 33653",1960-07-03 11:14:05,2e:77:4b:84:e6:83,ahoffman@sanchez.org,img/obama.jpg +Michelle Sanchez,841-09-9391,11139,"30394 Torres Shoal +Royburgh, VI 03214-1741",2014-11-17 05:14:50,e8:2e:cf:f9:7d:80,duncankatelyn@yahoo.com,img/obama.jpg +Cheryl Matthews,689-91-7671,21911,"97152 Ortiz Shoal +Mackmouth, NM 53722",1952-12-10 21:59:37,09:31:cf:b8:fd:c1,tracey04@gardner-gallegos.net,img/obama.jpg +Sarah Young,271-59-4431,15327,"0383 Kristin Trafficway +South Amandaburgh, IN 30005-6648",1979-02-06 22:11:12,24:ee:b6:fe:16:01,edwardnelson@gmail.com,img/obama.jpg +Kathy Parsons,319-06-0418,30561,"82302 Justin Locks +Josephville, WA 51071-1185",1932-07-01 10:21:52,a3:3e:26:25:73:3b,michael95@yahoo.com,img/obama.jpg +Lee Thomas,015-68-5585,04410,"88948 Susan Ports +West John, MP 83190-9239",1948-02-10 06:55:13,3b:f6:35:1b:a8:90,mlee@jackson.com,img/obama.jpg +Lori Jenkins,341-28-4825,79868,"9075 Gibson Run +Davisland, MA 26837",1985-03-08 12:31:52,ef:39:1f:2e:51:86,andersonrobin@steele.com,img/obama.jpg +Julie Conley,620-59-3342,07595,"138 Hall Curve +Banksview, VI 16236",1963-10-10 11:48:44,b2:97:36:2c:45:ac,vasquezbrian@gmail.com,img/obama.jpg +Heather Watson,291-72-7796,69474,"26521 Jeffrey Plaza Apt. 124 +Traceyport, UT 54484",1962-03-31 22:31:32,2f:0b:6b:ca:31:26,changyvonne@gmail.com,img/obama.jpg +William Edwards,583-81-5781,79053,"795 Crawford Forest Suite 690 +Bergmouth, AK 61931",2014-05-26 21:17:14,a0:88:3a:c3:2f:d1,kathleen13@yahoo.com,img/obama.jpg +Michelle Sanchez,705-14-0246,10661,"24836 William Creek +Johnsonburgh, WV 86638",1941-09-15 23:32:51,f9:f0:83:86:e1:41,simmonsjohn@alvarado-cochran.com,img/obama.jpg +Drew Peters,753-82-6683,30228,"Unit 3460 Box 3402 +DPO AA 13956-3836",1920-03-03 02:38:48,c3:4d:30:a8:19:7b,qjohnson@gmail.com,img/obama.jpg +Stacey King,418-12-5026,27747,"2507 Lewis Lake Suite 821 +Sarahmouth, HI 08616",1955-08-08 15:02:05,78:d5:d7:bd:d3:95,stanleyamanda@johnson.biz,img/obama.jpg +Samuel Wright,427-04-6525,54511,"2622 Rich Tunnel Suite 491 +Pattonchester, KS 87493",2004-11-25 17:36:41,29:7f:e8:5c:a6:2a,christophernavarro@jordan.com,img/obama.jpg +Jodi Rogers,346-07-2662,45956,"9050 Morgan Ridges +South John, DC 22584",1954-05-30 18:05:08,20:76:b1:88:4a:d1,ryan33@alvarez.com,img/obama.jpg +Brett Gonzalez,580-09-7096,58963,"2774 Kevin Valley +East Kyle, WI 09659-4453",1945-09-07 13:45:50,73:dc:84:ce:77:e9,ghart@gmail.com,img/obama.jpg +Christopher Ferguson,348-82-1623,78874,"9645 King Run +Simpsonside, UT 76594",1937-02-05 16:34:57,11:e5:fb:26:ba:dd,dickersonjerry@yahoo.com,img/obama.jpg +Pamela Peterson,197-48-3778,13985,"227 Tony Springs Apt. 386 +Kellyberg, NV 29021",1944-10-09 09:24:01,ac:c0:16:58:a7:e8,fuenteschristopher@yahoo.com,img/obama.jpg +Lauren Brewer,530-08-4060,79814,"82421 Brandon Springs +East Donald, MA 13675-8925",1985-06-10 09:23:17,8c:e1:d6:0c:ad:12,obarnes@yahoo.com,img/obama.jpg +April Williams,190-13-0768,02822,"7875 Erin Alley Suite 787 +Port Garrett, PA 26269",1923-12-18 08:56:16,45:41:a4:86:25:fc,kurtsalinas@hotmail.com,img/obama.jpg +Jeffrey Ford,644-53-8262,81016,"PSC 0157, Box 4206 +APO AP 77703-2320",1980-05-25 20:06:17,86:90:73:c9:57:5c,anthonysanders@yahoo.com,img/obama.jpg +Troy Erickson,404-97-8516,21609,"5789 Mandy Plains +Danielburgh, ME 62830-3914",1944-06-01 18:23:11,c7:8b:c5:9e:5b:14,sortiz@gmail.com,img/obama.jpg +David White,025-90-0942,18430,"6747 Jennifer Forks +Andersonton, CT 82134",1993-02-20 03:37:30,19:61:c2:66:a7:f9,sosarebecca@byrd-pena.com,img/obama.jpg +Jill Miller,160-87-3750,98197,"58741 George Club Suite 169 +South Jerome, NM 84665",1929-12-28 19:57:17,40:05:64:78:79:85,vyates@hotmail.com,img/obama.jpg +Nicole Henson,111-29-2514,45039,"009 John Islands +Kimshire, CO 79883",1993-08-20 05:33:50,25:da:2a:7d:7e:7c,kristie98@owen-campos.com,img/obama.jpg +Shannon Byrd,762-46-6181,37523,"101 Michael Branch Suite 876 +Ericton, NM 91145",1982-04-05 23:02:12,f4:f6:56:bb:80:a1,phillipslori@gmail.com,img/obama.jpg +Ashley Oneill,350-24-7672,96795,"031 Clay Trail Apt. 933 +West Samanthaside, ND 23430",2009-02-12 20:05:08,12:f5:c8:8f:6b:91,milesdawn@gmail.com,img/obama.jpg +Linda Vega,086-64-4537,32205,"99800 Catherine Common +North William, NV 08311",1964-03-18 03:56:25,24:7d:8d:07:d5:06,brycewright@yahoo.com,img/obama.jpg +Katrina Herrera,735-11-7375,86135,"323 Elijah Junction Suite 631 +Grahamburgh, UT 65077-4554",1929-09-16 21:03:53,f1:69:c7:e1:4e:5e,cynthiabarnes@yahoo.com,img/obama.jpg +Marvin Briggs,212-27-2708,81568,"9563 Cook Mountain +Gatesfort, FL 35703-6693",1958-02-12 18:56:52,c8:31:9a:07:1f:89,mallory62@lewis.net,img/obama.jpg +Daniel Campbell,828-33-1719,54779,"4964 Randy Wall Suite 986 +Leonstad, MO 54665-2610",1964-10-24 22:48:09,d3:55:99:1a:5b:b6,pauljessica@murphy-lane.net,img/obama.jpg +Melissa Schmidt,232-13-4815,19072,"581 Stacy Crescent +Angelashire, WY 85982-5054",1972-07-18 23:56:50,85:5b:ba:0e:0d:fe,dukedawn@yahoo.com,img/obama.jpg +Calvin Duncan,538-78-1154,73332,"993 Howard Stravenue Suite 951 +Nathanmouth, WV 33956",1958-07-18 06:00:46,31:66:75:eb:8c:21,joshuacline@yahoo.com,img/obama.jpg +Rachael Harrison,736-02-8592,16051,"PSC 0462, Box 4279 +APO AP 01375",1972-01-30 21:39:56,0b:4c:d7:33:21:92,daviscarol@hotmail.com,img/obama.jpg +Joshua Richardson,534-78-6458,28716,"65393 Jared Village +Rogersville, ME 74282-8658",1961-05-14 03:45:12,e7:17:8f:c8:cc:58,ejones@lynch.biz,img/obama.jpg +Pamela Martinez PhD,053-97-9521,79792,"925 Odom Falls +South Stephentown, MI 68495-0369",1925-07-02 02:43:54,4c:fb:2b:ad:8c:e8,ujoseph@gay.com,img/obama.jpg +Jessica Johnson,272-28-0032,54785,"09577 Karen Burg Apt. 764 +New John, WA 49141-0926",1972-04-14 16:45:23,67:99:87:53:c9:e1,mosleyvincent@yahoo.com,img/obama.jpg +Luis Wright,694-11-8320,73739,"24722 Petersen Trail Apt. 110 +Port Nicolestad, GU 21620-4140",1960-09-30 03:27:47,59:2d:e2:66:07:15,thansen@gmail.com,img/obama.jpg +Miranda Clements,751-20-9964,78126,"7212 Caitlyn Point +Jayshire, PA 99860-5652",1954-10-10 15:12:30,59:fe:98:9c:58:ed,sara43@smith.org,img/obama.jpg +Jody Murphy,565-66-9572,85842,"8391 Antonio Motorway Apt. 666 +East Jamesstad, NC 26448-9593",1951-02-12 12:10:08,d8:24:82:c1:a5:94,kaylasmith@yahoo.com,img/obama.jpg +Justin Taylor,331-44-1993,92529,"133 Cruz Unions +North Natalie, ND 38556",1960-07-14 16:39:29,dd:bc:37:c5:cb:d8,wolfejacob@ball.com,img/obama.jpg +Daniel Sanchez,388-12-1054,87200,"46682 Andrea Springs +South Jacquelinemouth, MO 91331",1937-02-01 06:06:21,63:c1:ec:29:30:a1,andersonnicole@vazquez.com,img/obama.jpg +Jennifer Rios,852-54-3490,85645,"725 Colleen Common +Danielmouth, OR 54658-7747",1947-03-30 09:09:04,a5:6e:81:a4:33:c0,sschultz@gmail.com,img/obama.jpg +Daniel Goodwin,643-47-2428,99498,"4181 Alexander Station Suite 049 +East Michael, NE 09740",1972-08-16 01:42:48,26:e2:19:8a:bc:89,njohnson@murray.com,img/obama.jpg +Allison Freeman,546-07-8688,43076,"56364 Pennington Harbors Suite 303 +Griffithhaven, KS 20101",1946-11-08 05:44:29,fe:db:6b:52:6e:cd,bjones@mayo-roberts.net,img/obama.jpg +Dr. Mark Anderson,727-54-0796,55028,"77368 Kayla Orchard +Lindabury, WV 21300",2001-12-14 14:50:53,28:34:c0:ae:5a:1b,christopherriley@gmail.com,img/obama.jpg +Tracy Harris,422-04-7929,92046,"57094 Anne Creek +Erinmouth, MT 47387-0602",1958-01-05 09:33:39,fa:2d:5a:f1:c7:c9,annamartinez@sparks.com,img/obama.jpg +Tanya Jenkins,563-58-4585,68655,"USNS Downs +FPO AE 27708-0063",2010-03-11 02:33:21,dc:a1:23:52:40:fc,miranda40@hotmail.com,img/obama.jpg +Kim Cruz,142-05-0389,72608,"672 Rich Square Apt. 074 +Martinport, GA 61276",1959-05-19 16:41:09,5a:7b:35:ee:c5:ea,angelicamartinez@gmail.com,img/obama.jpg +Alexander Massey,475-19-1396,29634,"PSC 6031, Box 9592 +APO AP 77925",1980-01-28 03:26:22,ce:b4:ac:03:4a:f1,medinajoseph@gmail.com,img/obama.jpg +Steven Rogers,593-25-9721,63878,"936 Douglas Court Apt. 850 +Lake Elizabeth, CA 22806",1982-10-05 21:12:44,95:17:de:22:bc:cd,lonnie93@rose.com,img/obama.jpg +Patrick Martin,552-59-7836,48467,"16895 Levy Way Suite 477 +Amandahaven, ID 26145-9643",1952-07-15 13:26:16,2d:61:97:88:7d:9e,xhoffman@yahoo.com,img/obama.jpg +Sara Mason,091-53-5256,99784,"55126 Hampton Grove +South Jaimetown, PW 59454",1989-06-26 12:17:48,65:4b:18:d4:c3:0b,amymclaughlin@rose.biz,img/obama.jpg +Andrea Spencer,867-12-6204,63291,"USCGC Dougherty +FPO AP 69165-2900",1953-01-21 19:39:23,d2:ba:8b:90:a8:98,zmcgee@martinez.biz,img/obama.jpg +Richard Webster,634-50-1404,94027,"687 Sims Villages Apt. 152 +Carrbury, PA 22118",1975-03-19 14:17:39,8f:e8:f7:12:b4:82,cardenaschelsea@gray-brown.com,img/obama.jpg +Steven Shaw,204-23-3530,68130,"079 Richmond Isle Suite 464 +Port Wesleyfurt, GU 34466",1965-05-11 19:50:46,09:17:55:a3:f1:f9,joyce50@yahoo.com,img/obama.jpg +Margaret Duncan,354-65-1588,98510,"4006 Eric Stream +Port April, TN 08840-5237",1954-09-24 17:10:05,5f:8f:e2:9d:9a:ee,nhayes@gmail.com,img/obama.jpg +Thomas Martinez,864-21-8032,76636,"Unit 2928 Box 7025 +DPO AE 05280",1999-04-04 18:37:52,f7:e3:44:22:a7:40,stephanie02@yahoo.com,img/obama.jpg +Rebecca Myers,209-11-7962,52192,"50585 Andrew Ramp +Lake Christopherland, VT 74237-8603",1976-06-21 17:33:09,63:5f:ec:a2:21:06,robertperry@phillips-hill.org,img/obama.jpg +Shaun Brown,114-46-8464,31487,"91065 Christensen Flats +Jenniferville, TX 58298-6538",1987-09-18 10:45:01,93:8d:14:7c:16:0b,ktorres@gmail.com,img/obama.jpg +Nicole Stone,597-65-5659,16460,"92721 Fuentes Rapids Apt. 864 +Oliviabury, OK 95765",1926-10-04 11:51:18,20:b2:4f:55:a5:cc,ucampbell@hotmail.com,img/obama.jpg +Tamara Gonzalez,264-30-1464,59700,"850 Franco Inlet +South Tammyport, MI 87279",1972-11-25 18:03:55,b6:a7:3f:eb:ee:91,mathewsgregory@smith-perez.com,img/obama.jpg +Bruce Cruz,837-58-3886,86292,"9040 Hurst Greens +Wrighthaven, WV 45346-2203",1981-05-19 00:13:27,ae:ce:02:00:9e:d2,sarah46@yahoo.com,img/obama.jpg +James Johnson,594-60-8733,36284,"6466 Amber Flats Suite 751 +Vangland, DC 17687-6016",1929-03-18 04:30:53,f6:d2:44:17:d0:1a,karenjohnston@hotmail.com,img/obama.jpg +Dustin Beltran,635-46-1167,88960,"94515 David Landing +East Brianfurt, WV 57246",1956-07-05 08:54:23,c2:f7:38:7c:52:39,chaneyangela@gmail.com,img/obama.jpg +Sherry Stokes,205-02-2098,55949,"USNS Moran +FPO AA 90256",1983-11-17 03:32:35,5b:16:cc:27:8f:ea,fernandezlisa@davis.com,img/obama.jpg +Dr. Julie Bailey,092-88-4127,48744,"572 Daniel Lock +South Derekfort, NM 31110-1299",2010-12-18 12:57:13,cc:28:58:84:0d:95,davidsantiago@jordan.com,img/obama.jpg +John Collins,676-31-3138,25411,"2409 David Ferry +North Stephenborough, IN 45317",1972-11-18 12:13:59,05:a2:6b:97:ed:d4,teresazuniga@yahoo.com,img/obama.jpg +Brittany Mcbride,435-37-6136,97712,"PSC 3499, Box 5338 +APO AA 17964",1978-11-13 22:15:52,cb:db:6f:d1:52:ef,gilldarrell@gmail.com,img/obama.jpg +Christian Mendez,700-10-6114,20264,"08356 Elizabeth Lodge Suite 138 +North Nathaniel, OR 32218-4911",1938-04-12 08:50:14,10:e2:fd:97:52:9c,lfrye@yahoo.com,img/obama.jpg +Charles Elliott,858-93-5620,37331,"543 Hernandez Forks +Darlenemouth, FL 34468-8690",1969-09-21 04:47:24,43:7d:ee:20:02:c7,badams@bird.org,img/obama.jpg +Jennifer White,621-46-4459,80432,"Unit 4444 Box 9162 +DPO AE 11528-5467",2007-06-22 00:56:39,fd:67:68:23:c2:54,amanda75@hotmail.com,img/obama.jpg +Charles Pope,074-98-3443,73724,"83380 Johnson Shoals Suite 681 +Autumnside, MN 04034-1404",1969-07-18 15:12:55,aa:d4:a4:c1:29:f2,michaelnavarro@alexander.com,img/obama.jpg +Katherine Patel,422-46-8448,93031,"0587 Williams Union +Robinsonfort, DC 64891",2006-10-04 10:44:26,be:4e:27:7b:6b:33,cdean@mckinney.com,img/obama.jpg +Brandon Ross DDS,204-94-0675,82639,"614 Dean Row Suite 359 +Robertbury, TX 69637",1925-11-13 06:17:17,a1:5f:1f:37:23:17,ywilson@gmail.com,img/obama.jpg +Nathan Tran,794-96-5682,06430,"3066 Pamela Points Apt. 725 +West Ericfurt, VA 44909-7425",2011-11-22 06:42:08,b2:7c:a2:fa:b8:89,richardolivia@hotmail.com,img/obama.jpg +Sarah Bates,180-89-5692,55803,"USS Lloyd +FPO AP 58355",1923-06-17 17:43:58,af:2d:7e:4e:be:0f,hannah73@gmail.com,img/obama.jpg +Jeremy Kelly,429-39-0521,36972,"74422 Chloe Islands +Scottmouth, NM 13624",1933-09-01 07:17:59,5b:27:ec:f9:0c:4a,richardgallagher@orr.com,img/obama.jpg +Casey Powers,513-05-6810,57403,"USNS Thomas +FPO AP 32682-5095",1978-09-11 11:54:32,63:d1:5f:f1:0f:a3,brodriguez@yahoo.com,img/obama.jpg +Robert Ayala,788-74-3298,02691,"USNS Malone +FPO AP 94013",1991-11-13 17:41:45,86:9b:21:38:b7:76,wmoore@delacruz.com,img/obama.jpg +Terri Holland,816-23-2442,89700,"33498 Tina Ports Apt. 161 +South Codybury, AZ 38644",1936-08-06 03:35:20,58:47:2a:0a:dc:bf,ylopez@walker.net,img/obama.jpg +James Peters,605-28-8467,57668,"5584 Gilbert Locks +Port Cory, MI 93748",1942-02-14 18:08:07,3b:66:3d:95:c7:b9,laurenhernandez@yahoo.com,img/obama.jpg +David Dean,510-42-2195,13534,"70899 Mercedes Squares Apt. 916 +South Amanda, OH 05004-1813",2003-12-17 01:48:28,0d:e4:96:c6:74:38,rbell@weber.com,img/obama.jpg +Ana Levy,581-30-0316,26127,"521 Brown Hill Suite 345 +Michaeltown, AL 18575",2016-06-06 11:20:38,b6:11:f4:d5:fe:fb,bbishop@jordan.biz,img/obama.jpg +Alyssa Richmond,335-46-9357,14350,"8419 Wilson Skyway +Vincentport, ID 46215-1273",1919-12-13 14:25:53,02:01:e2:cb:b5:a4,erica75@hotmail.com,img/obama.jpg +Jessica Baxter,193-35-7723,16177,"9923 Dale Orchard Apt. 323 +Laurenhaven, SD 42612",1949-06-10 01:36:38,bb:5c:6b:3a:8a:a3,spowell@lyons-martinez.biz,img/obama.jpg +John Frazier,352-59-6969,47862,"Unit 8597 Box 6664 +DPO AE 58925-6678",1988-03-20 08:02:03,ed:65:ea:1e:0f:cb,vickietran@mcguire-marshall.com,img/obama.jpg +Kayla Gutierrez,319-70-3372,08282,"43250 Omar Mall Suite 410 +North Eric, MP 64490-3967",1924-10-05 17:21:59,73:e5:9f:0f:88:e6,glennphillip@smith.info,img/obama.jpg +Joshua Murray,702-83-1032,46924,"5755 Robert Mount Suite 881 +South Glenntown, WY 49218",2010-06-21 10:48:15,0a:6c:70:12:e1:75,shawkatrina@anderson-johnson.biz,img/obama.jpg +Robert Villegas,809-33-4690,94107,"336 Turner Orchard Suite 584 +Kleinstad, GU 36874",1935-03-20 09:39:37,67:37:c5:d4:ec:09,gstuart@clarke.com,img/obama.jpg +Alicia Perez,716-52-1456,69311,"0044 Richard Freeway Suite 153 +Jessicahaven, CA 25320",1922-05-08 13:12:37,23:ea:fe:6b:2c:cb,toddmills@gmail.com,img/obama.jpg +John Ramirez,164-89-8498,22733,"PSC 9815, Box 9010 +APO AE 04073-2961",1966-08-05 10:25:44,3f:e0:6e:4f:7f:4a,huntergreen@rice-herrera.info,img/obama.jpg +Thomas Cobb,147-27-1671,82882,"0079 Ryan Inlet +Pearsonfurt, NE 67477",1958-07-21 00:09:20,72:1e:eb:90:e4:da,oanderson@yahoo.com,img/obama.jpg +Lindsay Moore,262-19-0271,10687,"031 Sarah Junctions +South Michaelbury, TX 16297",2000-09-27 16:19:17,68:1d:8e:6e:b6:99,alexanderbennett@hotmail.com,img/obama.jpg +Austin Benton,851-42-7833,81591,"401 Preston Center Suite 371 +North Hannah, NY 54189",1936-06-29 05:14:05,41:43:07:7d:da:b1,monicamcclain@anderson.com,img/obama.jpg +Matthew Weaver,155-82-2805,91344,"6953 Theresa Green +North Keith, TN 82233-9564",1968-12-10 19:18:45,b1:b1:95:63:c5:e2,wendy24@bush-jordan.com,img/obama.jpg +Clayton Booker,829-41-9460,95725,"944 Cynthia Mountain +Tashaview, MO 47490",1939-10-29 23:08:10,09:08:cc:c4:c3:a2,lauren23@gmail.com,img/obama.jpg +Ryan Berry DDS,531-17-4597,31753,"87810 Thornton Vista Apt. 410 +New Rachelfurt, VI 87568-7261",1932-01-11 18:42:22,5f:75:0a:95:7d:28,vchambers@yahoo.com,img/obama.jpg +Jennifer Ross,371-74-4557,23762,"40701 Mccall Expressway Apt. 067 +Port Douglasborough, IL 89420",2011-04-23 07:34:21,b1:7f:56:6a:6b:bb,peterjames@avery.info,img/obama.jpg +Erik Mills,773-38-3570,43113,"Unit 7333 Box 8877 +DPO AA 10410",1935-05-11 21:38:31,39:0c:86:f9:cc:0d,christinechavez@yahoo.com,img/obama.jpg +Lori Fields,444-41-6345,07407,"197 Laurie Gateway +Christianside, WI 68030-0950",1961-04-07 13:28:41,44:4e:2c:7f:32:fb,richardreed@hotmail.com,img/obama.jpg +Denise Barnes,299-55-7962,20955,"890 Johnson Ferry Suite 298 +Lake Sheila, LA 73466-9080",1922-10-27 11:28:59,65:a7:32:8a:36:54,christophermorris@hotmail.com,img/obama.jpg +Kevin Fisher,412-06-8065,35219,"77137 Martin Knoll Apt. 013 +Deannaberg, CA 87904-9409",1978-05-04 13:27:13,59:92:b1:7e:91:54,christina81@gmail.com,img/obama.jpg +Sean Gardner,028-05-0193,47007,"0810 Barry Tunnel Suite 030 +Starkside, AZ 79311-1705",2009-05-11 11:07:21,66:f9:1c:87:1b:54,connierobertson@cervantes-russell.com,img/obama.jpg +Anthony Hernandez,046-90-9085,21413,"06328 Gaines Track Suite 270 +Jaredshire, CO 99481-3367",1980-05-25 09:09:17,62:18:57:63:b0:ba,donnawagner@stewart.com,img/obama.jpg +Jacob Jones,435-38-5998,09085,"5266 Daniel Rapid Apt. 308 +Hamiltonview, OR 37527",2008-04-29 13:10:09,94:0e:c8:92:db:e0,wellsjennifer@gmail.com,img/obama.jpg +Adrian Jacobs,121-13-0957,79477,"3307 Roberts Motorway +Karenstad, MN 84419-6125",1983-11-19 21:13:33,6a:e2:3b:10:fa:17,john02@cook.org,img/obama.jpg +Kimberly Duffy,707-29-9092,91769,"03227 Sharon Ford +South Allenmouth, AZ 15637-5660",1991-03-24 22:23:56,47:ed:d0:d9:e2:48,xwright@callahan.com,img/obama.jpg +Courtney Williams,756-77-3599,58583,"19243 Tran Ville Apt. 512 +Andreaberg, IL 12259-1429",1954-08-05 01:23:17,18:c4:be:a8:73:1c,tonyatorres@moses.com,img/obama.jpg +Nicholas Richardson,031-27-1043,14073,"01559 Marie Prairie Suite 548 +Port Kelsey, NC 85156",2003-05-12 17:22:17,99:34:95:18:a0:d1,melissawong@yahoo.com,img/obama.jpg +Kathy Lane,783-04-9169,43563,"PSC 8522, Box 6828 +APO AP 56459",1953-10-27 09:29:52,09:90:fb:cb:66:1f,joshua89@hotmail.com,img/obama.jpg +Travis Rogers,779-82-9523,55911,"6763 Kelley Islands Suite 555 +Davidport, MD 03489-5394",1923-04-04 11:11:02,f4:14:3d:38:48:9a,morrisrebekah@hotmail.com,img/obama.jpg +Brian Francis,718-55-3127,90839,"Unit 7916 Box 4537 +DPO AE 46825",1992-03-25 03:38:03,f2:4d:80:43:2d:a6,martinezmichael@anthony-hunter.biz,img/obama.jpg +Gerald Haas,216-23-0042,64876,"627 Larry Ridge Apt. 952 +Randyfort, RI 75384",1938-10-26 18:03:49,75:7b:87:97:31:69,wallacematthew@gmail.com,img/obama.jpg +Raymond Jones,528-75-8861,14679,"3575 Noah Inlet Suite 128 +Port Deniseton, NJ 56680-2817",1968-09-21 10:30:40,00:a2:77:90:6a:aa,torresrobert@lloyd-martin.com,img/obama.jpg +Susan Cummings,892-18-4212,01403,"1847 Taylor Pines Apt. 832 +Mccartyburgh, CA 61153-8282",1938-12-24 20:56:17,fd:d2:73:9f:2c:bd,hhall@castillo.com,img/obama.jpg +Xavier Reed,854-31-5157,65053,"51173 Arthur Square Suite 761 +Santanaburgh, AZ 67458",2010-08-21 00:10:45,65:3a:da:d1:6a:83,allenisabella@gmail.com,img/obama.jpg +Jonathan Wolfe,535-62-7416,48764,"USNV Cook +FPO AE 48504",2015-12-15 06:06:47,12:e0:35:90:0f:49,leonjudith@yahoo.com,img/obama.jpg +John Anderson,400-71-9996,31925,"25423 Smith Lodge +North Jerrytown, MO 07928-3761",1961-01-10 23:02:14,42:e1:b0:a5:b4:a5,ishaw@gmail.com,img/obama.jpg +Grant Jones,132-75-4287,54482,"4577 Alexander Keys +North Timothy, NJ 99720",1922-06-26 03:06:12,c2:a1:52:8e:f7:df,lee89@ayala.info,img/obama.jpg +Emily Joseph,347-78-1712,95622,"6224 Jason Cape Suite 970 +New Troyview, IA 91961",1993-03-20 15:27:26,d1:ec:47:1a:1f:29,david85@yu-patterson.com,img/obama.jpg +Craig Johnson,871-53-8437,93719,"02170 Denise Green +Jaredchester, MT 29977",1985-11-05 05:43:44,eb:28:2c:4d:9b:d9,jeanthomas@gmail.com,img/obama.jpg +Matthew Mccormick,293-05-8570,22248,"0491 Jacob Haven +Jacobton, CO 39234",1992-03-19 14:16:08,d1:b3:03:27:76:20,melissa06@randall.com,img/obama.jpg +Karen Carlson,574-06-9490,10600,"475 Mindy Trace +Johnsonborough, AR 69045-8248",1999-05-16 22:31:27,ef:a5:17:07:8d:52,rcrawford@hotmail.com,img/obama.jpg +Tony Bailey,382-50-5962,07099,"4301 Jennifer Rest Apt. 926 +West Jenniferfurt, MA 44193-4165",1990-08-29 05:24:34,66:08:9d:6d:f8:b4,harperkathryn@gmail.com,img/obama.jpg +Joshua Turner,340-61-8839,90254,"86330 Chad Avenue +Holmesville, CT 77866-4639",1942-02-19 08:05:45,42:76:cb:98:94:9d,heather81@booth-lucas.com,img/obama.jpg +John Shaffer Jr.,176-88-3201,64894,"6885 Kevin Station Suite 446 +Clarkestad, UT 56766-9657",1960-09-03 21:04:03,5b:ba:3f:49:8b:14,krice@gmail.com,img/obama.jpg +James Roberts,822-35-8545,26718,"56264 Joan Common Suite 573 +South Frank, NH 86309",2011-07-20 20:30:08,f6:cd:5d:e8:ee:39,yescobar@hotmail.com,img/obama.jpg +Alexander Jones,453-14-5716,82503,"916 Laura Spring +North Steven, NE 67857",1978-09-11 12:20:14,07:6d:c6:81:cd:71,garciaeugene@dean-kim.com,img/obama.jpg +Maria Ruiz,692-09-5770,83186,"745 Stephanie Mews Apt. 664 +East Patriciaton, MS 59216",1953-10-25 11:11:40,64:a2:b9:a1:4c:9c,daniellerogers@bradley.com,img/obama.jpg +Christine Black,019-61-9997,08056,"58958 Bishop Mountains +Carpenterville, SC 74660",1933-09-20 12:31:31,00:e2:31:55:b6:0b,mholland@jones.net,img/obama.jpg +Alex Williams,347-07-8907,63065,"6337 Allen Mill Apt. 315 +Lake Tristanport, VT 22861-0495",2001-08-16 12:44:19,9e:9a:79:91:fe:84,choigeorge@kennedy.net,img/obama.jpg +Steven Pittman,448-32-9140,28586,"149 Wayne Stream Suite 048 +Lake Sheliafurt, SC 86880-4060",1979-02-26 22:25:55,78:29:e8:4f:ad:22,connorneal@yahoo.com,img/obama.jpg +Sandy Gonzalez,337-80-1558,92775,"432 Michael Radial +Elizabethside, CT 20052-1130",1984-08-05 08:14:48,57:77:63:0e:77:70,jasmine25@gmail.com,img/obama.jpg +Stacy Williams,171-18-2063,66047,"391 Chaney Glen +South Michelle, FM 32773",2012-07-15 20:52:12,16:cd:3e:43:74:ce,zmorrison@franklin.net,img/obama.jpg +Katherine Villegas,445-71-7458,56420,"98389 Julie Islands +Port Brianville, AR 83117",1966-10-29 21:58:04,41:59:58:4e:8e:f5,barnettryan@martinez.net,img/obama.jpg +Terry Wiley,044-97-4673,10857,"2586 Randy Shores +Scottton, WA 61962-9523",1945-11-07 05:53:44,a6:c7:c8:e6:20:96,gcastillo@yahoo.com,img/obama.jpg +Ruth Baker,329-83-2386,01111,"65740 Tonya Way +South Julie, AZ 75211",1952-05-05 13:50:55,7f:75:d7:38:5d:46,abrandt@yahoo.com,img/obama.jpg +John Nash,045-29-6530,90786,"08179 Lucas Extensions +North Angela, NJ 21259-8201",2013-08-08 22:20:25,be:0e:07:f7:d8:c1,charleshanna@valdez.com,img/obama.jpg +Alex Martinez DDS,814-80-0933,41556,"686 Kline Haven Suite 226 +East Stevenfurt, KS 79293",1992-12-24 10:02:23,33:65:6a:f6:10:88,rwhite@hotmail.com,img/obama.jpg +Melvin Skinner,379-10-6314,00714,"32210 Jennings Fort +Alexside, AS 80130-9131",1946-07-20 06:05:18,bb:1e:35:ff:b5:bb,sshah@gmail.com,img/obama.jpg +Gabriel French,184-81-2898,46618,"4513 Jamie Centers Apt. 219 +New Jeremiahfurt, PW 88861-6775",1998-07-08 00:54:50,87:20:ec:e7:f9:30,kristina16@white-moore.org,img/obama.jpg +James Smith,400-62-6026,96553,"1610 Samantha Cape Suite 823 +West Sean, PW 24462-3487",1952-05-19 22:42:08,fc:8e:83:01:2a:da,melissanichols@young.com,img/obama.jpg +Ricky Martin,260-09-2177,94034,"137 Barnes Parks +Lake Brandonbury, PW 94830-3601",1946-03-24 22:45:06,e6:b3:48:e1:23:0c,sandra29@walters.com,img/obama.jpg +Lisa Hicks,543-40-6071,07863,"23205 Beth Ways Apt. 893 +Hollowayberg, FL 76422",2009-08-25 08:33:06,81:56:b8:00:9d:47,mrivera@hendrix-howard.net,img/obama.jpg +Michael Perez,190-48-1684,17831,"17511 Jones Gardens Apt. 509 +Wayneton, HI 79565",1947-05-03 04:10:29,31:87:ca:90:45:e9,nwhite@clarke.info,img/obama.jpg +Crystal Wu,229-49-9850,89354,"64103 Mills Run Apt. 467 +Clarkborough, AK 28199-7809",1993-09-24 00:13:04,d7:31:03:11:04:59,fullerkara@marshall.org,img/obama.jpg +Miranda Johnson,484-89-1883,36933,"941 Steven Drive +Stephenton, PR 41801-4046",1984-01-20 18:40:01,b8:f4:b4:59:1e:88,wbutler@west-cummings.com,img/obama.jpg +John Hays,287-64-4867,54330,"98531 Brown Freeway Suite 937 +Ortegaburgh, GA 79102",1921-01-07 14:29:53,b7:36:8f:13:30:a1,davidlee@fowler-cook.com,img/obama.jpg +Lisa Miles,011-59-9249,67900,"9074 Harris Harbor Suite 942 +Gilbertview, OK 86801-2897",2016-05-16 19:23:57,53:20:c8:9a:c1:20,zbowman@yahoo.com,img/obama.jpg +Eddie Rodriguez,621-31-9594,42566,"30293 Sullivan Mission Apt. 447 +Butlermouth, NH 93955",1977-12-29 17:42:45,28:d9:d7:60:8b:36,ericpoole@hotmail.com,img/obama.jpg +Anna Smith,572-59-5378,10109,"Unit 1835 Box 2380 +DPO AA 37860",1993-06-17 22:45:55,b9:c1:94:0a:85:7f,bryanarellano@gmail.com,img/obama.jpg +Amy Brown,275-36-0555,75562,"5685 Kari River +West Austin, NC 61302",1956-06-17 04:50:50,15:1a:25:2c:7b:14,herrerajermaine@hotmail.com,img/obama.jpg +Kelly Hall,101-83-7189,08173,"688 Kirby Valley Suite 620 +New Joy, VA 05232-1290",1970-10-22 04:55:56,fb:c1:05:28:04:87,nanderson@hotmail.com,img/obama.jpg +Courtney Holmes,717-21-2612,28353,"6265 Janet Points Apt. 551 +Richardsonborough, MD 01364",1934-10-31 05:13:34,fb:fc:75:91:42:06,jroberts@gomez.org,img/obama.jpg +Natalie Wilson MD,437-48-0129,60340,"9079 Galvan Loaf +New Danielstad, VA 53797",1980-05-29 02:20:32,b1:f5:7c:73:4d:9e,heatherowens@barrett.com,img/obama.jpg +Mark Baker,794-39-6647,12091,"300 Hall Park Apt. 211 +Lake Thomas, UT 94019",1976-09-13 01:11:09,02:53:2c:46:eb:9e,stephanie00@king.biz,img/obama.jpg +Brian Davis,763-39-9125,77420,"744 Richardson Circles Suite 073 +Deborahport, VI 11536-2949",2001-08-18 10:17:15,05:e1:2b:ad:d0:01,qanderson@hotmail.com,img/obama.jpg +Isaac Morgan,396-36-2456,02587,"731 Eric Inlet +Lake Stevenshire, CA 45161-2563",1978-01-30 14:23:26,99:45:de:ee:c7:a8,jlong@nelson-roberson.com,img/obama.jpg +William Copeland,462-50-1449,30786,"89606 Lopez Corner Suite 710 +Port Jacob, CA 13378-7763",1968-10-15 23:08:34,72:5e:20:b4:4f:4d,meganyoung@gmail.com,img/obama.jpg +Nathaniel Hale,503-43-6006,08025,"473 Mullins Stream +Thomasview, CT 96368-3308",1922-01-14 10:05:56,62:19:68:a9:f4:51,rgrant@hotmail.com,img/obama.jpg +Jeffery Morales,384-24-7473,68288,"53993 Colin Junctions +Brianton, NV 50314-8050",1986-11-24 08:31:07,45:99:3e:6d:ae:15,huntmelissa@cabrera.com,img/obama.jpg +Kayla Parker,751-26-9256,28730,"38529 Marissa Pass Apt. 384 +Leeberg, PR 14870-0717",1930-05-13 21:28:14,df:11:14:7f:70:c8,usummers@mcmillan.com,img/obama.jpg +Tina Atkinson DDS,230-58-2860,84160,"8452 Katie Freeway Apt. 972 +North Tiffanyburgh, ID 92193-6738",1947-01-19 19:13:30,df:ae:ae:20:e1:81,hardingjose@ware.com,img/obama.jpg +Michael Dawson,076-24-2014,67528,"95397 Robertson Bridge Apt. 433 +West Evelynview, NM 67183-0522",1958-05-20 13:07:59,7a:9a:58:09:54:40,philipcooke@white-carroll.com,img/obama.jpg +Daniel Carpenter,604-03-3713,40883,"16640 Brenda Plains +New Kevinborough, IA 69814",1981-02-24 09:12:22,d2:2d:60:e4:6a:3b,emilyhurst@yahoo.com,img/obama.jpg +Philip Bryant,572-63-0619,05965,"4371 Hubbard Branch Apt. 119 +Chambersburgh, ID 23071-5545",1944-09-06 10:39:50,58:9a:e9:3c:79:e7,spowell@young.org,img/obama.jpg +Maria Wyatt,650-31-8000,06689,"331 Cohen Freeway +Rossville, RI 91266",1971-06-02 01:44:40,49:8c:1a:4f:6f:bd,sanchezdiana@rojas.com,img/obama.jpg +Cindy Anderson,498-10-3206,74539,"USNS Jennings +FPO AP 15028",1975-07-21 08:22:31,f4:0c:ad:a8:18:e7,nancy52@zhang.net,img/obama.jpg +Jennifer Russell,381-36-4025,48030,"88427 Ware Centers +Lewiston, MI 12277-2937",1994-04-06 08:40:01,be:f6:02:61:59:84,michellesmith@hotmail.com,img/obama.jpg +Angela Christian,646-30-2674,80527,"PSC 4094, Box 9530 +APO AA 85543",1978-02-02 01:58:00,35:fe:4a:26:fe:cf,frederick48@hotmail.com,img/obama.jpg +Lori Jordan,265-28-4254,24950,"PSC 8943, Box 7582 +APO AE 71768-6484",2015-05-08 16:25:49,08:59:d0:78:d9:66,jacob91@chavez.com,img/obama.jpg +Christine Mcfarland,267-04-0620,68924,"11375 Davis Avenue +New Jennifer, MI 23843",1969-09-27 05:39:51,90:08:da:57:00:2e,ostokes@harris.com,img/obama.jpg +Stephanie Fisher,895-38-5423,28965,"385 Stephanie Islands +Baileyland, GU 83818",2014-10-18 07:14:00,a9:c4:46:6b:a2:66,andrew33@lewis.com,img/obama.jpg +Patrick Odom,545-13-1151,32009,"1943 Mitchell Rapid +Kristaborough, WY 16732-4145",1929-12-21 16:38:00,c8:41:a6:95:d9:c3,kennethgarcia@hotmail.com,img/obama.jpg +Richard Walker,465-49-7204,57823,"1894 Patricia Overpass Apt. 006 +Velazquezton, KS 43934-3379",1978-04-16 02:14:06,c6:3b:35:f5:89:0a,umata@stanley-holt.com,img/obama.jpg +Lori King,517-83-5475,24693,"433 Amanda Trace +Alexandratown, PA 56731",1950-04-26 11:43:35,7c:05:f6:89:0b:e5,jeremy54@martin.info,img/obama.jpg +William Russell,347-21-3020,72500,"4760 Prince Ways Apt. 062 +Port Sarah, NE 83939-1953",1975-07-05 04:39:47,ce:43:9c:72:42:83,williamslauren@hotmail.com,img/obama.jpg +Brianna Cummings,143-69-7755,08303,"39797 Jesse Bridge +Port Eric, NC 41555-4548",1965-01-24 14:30:23,86:5d:b0:ab:ad:c2,richardsonpaul@gonzalez.com,img/obama.jpg +Mr. Victor Clay PhD,385-47-8798,60568,"804 Paul Mews +New Johnny, NH 58894-2530",1994-06-26 20:30:23,a6:8e:8d:76:cf:0e,hayesangela@french.com,img/obama.jpg +Jennifer Schmidt,667-82-0848,20935,"2641 Ware Loaf Suite 613 +Victoriaport, ME 00405",1926-07-04 00:37:42,14:3b:b1:ae:ed:81,hartmanmolly@yahoo.com,img/obama.jpg +Ashley Smith,271-23-0612,35880,"26246 Natalie Port Apt. 096 +West Ryan, LA 96955",1932-01-12 08:33:09,20:03:87:5f:ef:f1,elizabethphillips@yahoo.com,img/obama.jpg +Michael Burke,463-77-5627,17962,"18847 Shannon Fork Suite 465 +Bentleymouth, FM 51388",1926-11-04 23:13:47,ab:f2:e5:e4:13:84,mariaparker@scott.com,img/obama.jpg +Dennis Dalton,315-88-8149,86610,"742 Harris Course +Mercedestown, DE 81136",1972-12-25 21:57:45,07:b9:ff:f4:33:27,mturner@kennedy.info,img/obama.jpg +Christy Walker,835-72-5500,80681,"41047 Melissa Course +Ariasland, OH 06787",1930-12-11 18:07:07,b2:9f:3b:3d:2c:f0,jamessmith@chang-mason.com,img/obama.jpg +Ronald Lewis,830-62-1053,51276,"25725 Paul Trail +Jimenezside, LA 91084-9644",1969-05-15 01:16:21,39:ba:20:a2:40:84,maurice54@thomas-miller.com,img/obama.jpg +Amanda Landry,240-32-5014,16687,"669 Linda Terrace +Kingshire, IA 97076",1991-02-12 18:40:27,64:f1:28:02:2a:c7,nbutler@martinez.com,img/obama.jpg +Vanessa Moody,485-56-2039,48766,"1804 Felicia Terrace +Emilyville, OH 49065-8762",1940-08-28 10:42:43,95:3a:02:c5:25:c3,monicawarren@miller-butler.net,img/obama.jpg +Maria Ayers,226-51-9726,06892,"5072 Taylor Prairie +Carrillofort, NV 26472-1188",1920-11-18 13:05:17,c4:b0:ab:ac:0e:51,anncharles@gmail.com,img/obama.jpg +Daniel Wagner,263-76-6384,22185,"01295 Stephanie Squares Apt. 424 +Danielchester, CA 79616",1938-05-08 23:53:35,d8:60:4d:eb:ad:18,franceslopez@yahoo.com,img/obama.jpg +Austin Reid,202-72-7699,81324,"1249 Hood Springs Suite 901 +Codyport, AK 76454-5711",1984-06-02 10:58:38,ac:bd:87:3a:19:b4,terrirose@gmail.com,img/obama.jpg +James Donovan,151-24-9101,35377,"1159 Francis Trace Apt. 648 +Palmerburgh, NY 14590",2002-07-04 15:12:38,17:67:9e:aa:6d:f4,brian58@gmail.com,img/obama.jpg +Linda Garcia,553-80-4851,02998,"22672 Mccarty Manors Suite 306 +Martinview, RI 40964-3053",1969-08-06 00:10:39,8c:08:2f:b2:52:61,amyfoster@roach.biz,img/obama.jpg +Robert Santos,445-74-2282,89099,"46127 Church Mills Suite 876 +New Jasonland, MN 40626-6848",1927-06-21 07:52:57,3c:e7:26:df:13:8d,kimberly72@hotmail.com,img/obama.jpg +Rita Cole,356-84-1490,03633,"302 Ashlee Mission +Marcusville, MH 86696",1970-09-03 09:41:04,25:e9:c5:71:1c:f8,pbanks@hotmail.com,img/obama.jpg +Kim King,199-73-0680,91892,"67184 Richard Bridge Suite 182 +Mitchellburgh, KS 52772-4737",1971-09-14 23:45:42,6e:af:10:4d:3c:48,thomasjose@jones.biz,img/obama.jpg +Steven Todd,529-89-2213,61330,"04103 Santos Key +Michaelville, FM 47338-2611",1995-12-11 10:17:46,29:69:e5:2b:e6:57,shernandez@dawson.net,img/obama.jpg +Michael Gonzalez,766-38-8127,49799,"687 Michael Union Suite 083 +Kristenberg, NM 74416",1928-10-04 18:37:51,8e:54:ed:4a:09:45,holly36@hotmail.com,img/obama.jpg +Christopher Lopez,790-31-4403,45189,"66408 Steven Stream +New Sherriburgh, MN 38158-2907",2014-10-30 16:10:10,17:63:29:30:d5:cc,cking@white.org,img/obama.jpg +Tina Howell,839-02-5218,27905,"00296 Powell Key +Dominiqueside, WA 60448",2006-06-24 09:17:37,bb:34:8d:eb:1c:9d,rosenancy@torres.com,img/obama.jpg +Monica Powell,395-75-6700,59210,"13902 Kathleen Passage Suite 703 +Port Eric, CO 47139",2004-03-09 04:45:08,e8:4a:e9:f6:e2:1d,alan80@yahoo.com,img/obama.jpg +Stephen Ryan,411-76-8329,12594,"3032 Rosario Alley Suite 826 +East Bill, PR 35193",1988-06-05 12:06:25,ab:1f:2f:4a:83:24,markzuniga@yahoo.com,img/obama.jpg +James Johnson,703-07-8105,74233,"836 Ernest Estate Suite 428 +North Steventown, IL 12992",1971-09-06 13:05:52,90:67:45:a1:47:84,owilliams@gmail.com,img/obama.jpg +Angela Perez,266-79-9849,68362,"Unit 7864 Box 8308 +DPO AA 48306-1960",1960-02-14 21:34:38,d9:35:f8:f3:cb:eb,rchavez@gmail.com,img/obama.jpg +Ariel Lane,227-04-8127,11625,"51813 Kristen Stream Suite 219 +Johnsonchester, GU 76260-0205",1982-04-29 02:57:44,f2:ed:f7:85:b5:9f,alison44@huerta.com,img/obama.jpg +Madeline Johnson,550-52-4340,72914,"2244 Hernandez Ridges Suite 450 +Port Annette, FL 47020",1946-04-01 09:53:50,52:41:69:5a:e0:eb,spencerabigail@mcintyre-mcdaniel.com,img/obama.jpg +Andrew English,381-02-3004,70206,"905 Emily Avenue Apt. 467 +Hamiltontown, VA 51759",1919-09-30 23:31:03,19:05:37:4f:9b:b2,james70@hotmail.com,img/obama.jpg +Cindy Villegas,538-63-2400,54037,"26275 Megan Inlet +Webbhaven, WA 64879-0030",1948-11-26 03:29:42,a2:91:d1:6e:7d:a5,brittany93@coffey-graham.biz,img/obama.jpg +Edward Ingram,087-10-9934,92187,"318 Melissa Circles Suite 503 +Jennifertown, MH 20776-2805",1931-11-26 14:34:03,68:f9:98:ce:35:84,james44@hines.com,img/obama.jpg +John Whitaker,154-83-5054,04368,"330 Robinson Flats Suite 632 +New Scott, KY 79023",1972-06-14 12:28:18,fd:ed:9d:f3:c8:34,velazquezcynthia@hotmail.com,img/obama.jpg +Danny Chang,053-48-1516,04419,"242 Collins Throughway Suite 079 +East Michaelville, NE 60124",1989-03-31 09:08:08,bd:b3:96:04:53:ee,royobrien@gmail.com,img/obama.jpg +Jenny Freeman,597-42-8615,79480,"9294 Emily Union +East Isaactown, PA 15389",1999-04-10 15:09:38,37:c3:b8:6f:8e:3d,kristinajackson@hotmail.com,img/obama.jpg +Patricia Lawrence,872-14-6993,66840,"6596 Lindsey Lock Apt. 731 +Chloehaven, TX 28037",1949-11-02 17:07:58,2d:2d:80:4f:39:b4,baileyrice@gmail.com,img/obama.jpg +Maurice Garza,169-06-7396,86125,"954 Henson Extensions +Michaelfurt, ID 36427",1999-01-26 15:47:44,2c:cd:9b:76:c9:a7,longwilliam@gmail.com,img/obama.jpg +Michael Pope,373-14-1981,38437,"8275 Garcia Hills Apt. 474 +Lamberthaven, WA 59473-8997",1963-09-28 14:43:25,c3:ad:fe:ea:9f:1f,wagnernicole@sullivan.com,img/obama.jpg +Daniel Brown,589-30-3936,69874,"093 Reese Ford +Johnfort, CO 21714",1963-11-14 13:59:57,03:65:2f:01:69:26,jenniferwilliams@hotmail.com,img/obama.jpg +Ashley Berger,603-10-6566,77765,"USNS Robinson +FPO AA 32232",2014-05-20 23:30:27,5c:fa:b3:17:9c:c5,breanna23@scott-herrera.com,img/obama.jpg +Justin Hudson,245-78-8692,34865,"9831 Brady Motorway Suite 231 +Port Samanthaborough, HI 69716-7075",1985-06-28 14:32:42,7a:0e:1b:02:3e:1f,rosepaula@casey.com,img/obama.jpg +Jeff Powell,661-21-8403,58395,"01356 Michael Fall +Bishopton, CT 77873",1941-10-06 09:12:45,c2:4f:52:1f:ed:d6,sarah74@hotmail.com,img/obama.jpg +Amy Lucas,732-03-2499,21032,"73587 Jeffrey Rapid Suite 896 +Blakeside, AK 25060",1969-10-13 16:00:49,b2:60:4d:6f:66:5c,nmorgan@diaz.org,img/obama.jpg +Brittany Kerr,008-36-4119,92233,"200 Short Heights +Parkerchester, VA 89288",1971-12-19 10:37:51,e3:81:93:21:3d:e6,rothtristan@joseph-watkins.com,img/obama.jpg +Catherine Hicks,382-42-6007,42152,"7001 Wall Harbor +New Meganfurt, WA 42788-8737",1970-07-21 19:01:50,ba:d4:af:75:01:e9,blackburnlaurie@yahoo.com,img/obama.jpg +Kathy Chavez,361-61-5171,49305,"432 Crystal Gateway +New Jenniferville, NH 87707-1920",2010-12-10 22:13:50,a1:70:7d:84:b6:f2,nicholaschase@hotmail.com,img/obama.jpg +Jordan Perkins,788-56-1982,96404,"48033 Sarah Alley Apt. 789 +Lake Zachary, NC 66040",1929-05-27 19:26:59,82:f9:95:f6:82:e1,valeriehanson@chen-bowman.info,img/obama.jpg +Jennifer Taylor,058-44-5852,51451,"1251 Maria Place Apt. 588 +Michealchester, WI 57591-6694",1965-04-14 03:32:33,c6:01:db:8d:69:33,jesusarmstrong@williams.com,img/obama.jpg +Tina Taylor,790-48-5794,04506,"546 Lacey Brooks +New Stevenburgh, NH 42832",1941-05-10 10:37:22,57:1a:03:91:ef:57,crystal73@gonzalez-osborn.info,img/obama.jpg +Ashley Montgomery,692-48-9941,81495,"20461 Wood Ville Apt. 631 +South Jessicaberg, RI 74894-5803",1994-11-16 05:16:56,d0:3e:bd:81:61:e6,newtonheather@chan.com,img/obama.jpg +Paul Sherman,623-68-8156,50788,"Unit 6172 Box 6692 +DPO AE 33068-2155",2013-03-26 05:52:33,f3:bb:ef:7d:8c:6c,qdavidson@walker.com,img/obama.jpg +Luis Castro,494-31-6899,44449,"71171 Daniel Junctions +Burnsville, OK 32810",1982-10-08 08:04:09,43:cf:6d:40:ee:69,samuelsalazar@williams-mitchell.com,img/obama.jpg +Emily Wells,048-65-9277,91320,"4029 Tonya Trail Apt. 355 +Port Susanburgh, CT 35383",1947-08-29 16:17:00,12:15:30:0b:10:bc,jessica32@hotmail.com,img/obama.jpg +Mr. Rodney Nixon DVM,396-25-1550,88509,"5808 Jackson Inlet Apt. 505 +Lake Jacob, NY 33887",2004-06-17 09:23:57,72:23:56:ba:3b:5d,cory90@garcia.net,img/obama.jpg +Sandra Mcdaniel,654-27-9797,32183,"PSC 4803, Box 5279 +APO AE 22539-1821",1939-12-04 00:10:45,f8:28:90:22:22:ff,nashangela@gmail.com,img/obama.jpg +Lindsay Abbott,574-97-2757,48652,"3603 Tammy Highway +Murrayborough, ND 97141",1936-01-12 00:18:38,ea:aa:ba:6c:5f:20,michaelkhan@sutton-vance.com,img/obama.jpg +Trevor Mercer,845-64-2674,97022,"4004 Crystal Motorway +New Seanhaven, SC 85716-7662",1932-02-01 22:52:31,e7:c0:b8:ec:6a:9a,davisbrittany@davis.com,img/obama.jpg +Jeffery Andrews,564-25-2350,24994,"PSC 3835, Box 6193 +APO AP 61083-7703",2005-10-21 21:14:27,f4:46:71:ce:af:09,oliverdiane@yahoo.com,img/obama.jpg +Carolyn Taylor,595-78-1544,17741,"185 Jeremiah Land Suite 513 +New Randy, MP 67249-2361",1962-06-09 19:00:41,31:ef:7d:e5:86:5f,kylerussell@hotmail.com,img/obama.jpg +Darren Keller,602-97-3036,98873,"999 Nicholas Mountains Suite 424 +West Williamside, VA 10268",1976-02-18 04:41:52,09:cc:5f:6e:e9:6f,iwilliams@hotmail.com,img/obama.jpg +Dr. Jeffrey Ryan MD,064-84-2933,44103,"439 Barker Summit +Kaufmanside, ID 77206-7895",1944-10-15 17:57:23,66:82:5f:ea:36:9f,jamesroberson@valdez-bell.com,img/obama.jpg +Kayla Diaz,338-32-1993,71583,"713 Wolf Spur +Smithchester, WI 62507-7586",2002-07-15 06:48:36,fc:a0:7f:7c:cb:38,sandersryan@woods.com,img/obama.jpg +William Ochoa,271-19-9169,35303,"080 Natalie Island Apt. 463 +Joechester, IL 28885",2005-05-04 13:13:19,eb:00:61:9e:6e:d3,rwalters@hotmail.com,img/obama.jpg +Jennifer Taylor,527-68-3507,25445,"3992 Tyler Islands Suite 584 +Port Wendy, PW 83215",1968-11-08 21:06:22,57:20:66:f7:d3:45,robertsonsteven@clark.com,img/obama.jpg +Eric Ramirez,872-38-3664,38817,"826 Gates Loaf +Annton, IN 38499",1922-01-03 15:52:22,a1:f8:00:c7:4f:96,sanchezcheryl@woodard.biz,img/obama.jpg +Marc Hughes,112-49-9523,94919,"088 John Loaf Suite 382 +East Ryan, NE 09752-9712",2007-04-16 23:52:40,e2:26:35:1f:a3:94,moorelori@owens-mccoy.net,img/obama.jpg +Annette Mclean,290-30-1308,71974,"706 Nicholas Fork Suite 286 +New Michaelbury, DC 17479",1929-08-15 05:52:29,3a:ed:e1:ae:8e:6f,tammy69@shields.com,img/obama.jpg +Derek Flynn,889-60-2388,17976,"73042 White Alley +Port Jillshire, KS 48400",1921-03-21 10:14:09,e0:04:50:14:1e:c6,anthony29@hotmail.com,img/obama.jpg +Anita Cardenas,243-63-8563,06844,"666 Rodriguez Road +Sharonborough, WV 52412",1924-10-01 09:19:17,be:64:53:8e:06:92,joann85@gmail.com,img/obama.jpg +Omar Chavez,880-24-6139,79013,"739 Martin Knolls +Justinfort, TN 55170-3462",1978-01-03 14:53:53,cf:0b:be:7d:fe:04,emartin@hotmail.com,img/obama.jpg +Christina Kaufman,455-22-4517,78092,"Unit 8652 Box 0380 +DPO AP 93689",1955-10-23 07:58:49,09:c5:7c:97:97:24,russell30@hotmail.com,img/obama.jpg +Adam Michael,747-07-8302,70039,"965 William Field +Tylerside, WY 31442-7514",1941-01-30 00:56:44,15:8c:1a:0a:de:9c,kristinwarner@hotmail.com,img/obama.jpg +Michael Flowers,426-04-3177,42999,"6726 Brian Divide Apt. 241 +Lake Brandon, AK 48349-1738",1980-01-26 08:28:06,98:72:b1:2f:0c:0d,todd66@gmail.com,img/obama.jpg +Hunter Finley,759-67-0283,15420,"24708 Tom Lodge Suite 979 +East Jennifer, WI 33238",1994-09-15 09:00:37,48:0c:b0:5e:c8:0a,clarkantonio@meyers.com,img/obama.jpg +Amber Gibbs,194-27-4676,48125,"685 Gonzalez Greens Apt. 684 +East Stevenport, WV 40853-1493",2009-12-12 11:05:34,3a:01:e9:6b:86:9c,charlesdelacruz@petersen.com,img/obama.jpg +Brian Johnson,386-65-5792,20448,"71426 Todd Forest +Robertport, AR 00905-0699",1939-01-29 15:58:25,b9:f8:6f:97:97:15,kenneth67@schmidt.com,img/obama.jpg +Wayne Wilson,081-38-6477,28976,"Unit 5987 Box 9821 +DPO AP 45274",1944-05-11 11:39:30,07:84:c6:b1:01:f8,jessica96@meyers.com,img/obama.jpg +Spencer Allen,218-44-7186,40060,"41869 Martinez Court +Kellyborough, TN 61463",1956-08-29 12:53:12,62:bb:43:72:c7:35,vicki86@hotmail.com,img/obama.jpg +Samantha Calderon,836-20-5139,25727,"748 Hardy Lakes +Lake Danieltown, NY 24776",1936-08-21 22:42:33,1d:18:5c:65:47:33,johnsonbruce@davis-merritt.info,img/obama.jpg +Derek Jones,390-79-9581,92562,"40795 Aguirre Ramp +Port Natalie, AL 63162",1972-01-05 11:38:44,a6:1e:7d:95:4e:72,pamelaholloway@watson-sanchez.biz,img/obama.jpg +Jacob Sandoval,303-71-4449,32587,"15298 Johnston Islands +North Johnview, OR 56412",1937-10-12 15:57:25,af:63:ea:fd:92:37,curtisjackie@hotmail.com,img/obama.jpg +Michael Weaver,406-29-9008,23739,"627 Bishop Drive Apt. 952 +New Stephen, AR 41033-0094",1944-07-21 15:38:21,7f:15:6a:41:a9:b8,ashleyharrison@gmail.com,img/obama.jpg +Madison Gonzalez,405-19-3407,01977,"0177 Chase Orchard Apt. 189 +Lake Erin, WA 66964-2980",1994-02-21 15:54:56,6a:d0:0c:8b:8b:c1,karenhunter@williams-robinson.com,img/obama.jpg +Deborah Farmer,765-86-1736,03522,"39388 Patterson Ville +South Triciaport, IA 02259",2011-06-13 10:34:53,39:d3:06:34:11:5d,freemanryan@yahoo.com,img/obama.jpg +Judy Hale,130-01-8809,42572,"0035 Nicholson Freeway Suite 290 +Jacksonburgh, RI 77443-8571",1935-01-18 16:41:49,89:a7:d8:e5:5b:9d,tdunn@ford-cook.com,img/obama.jpg +Jose Matthews,351-09-8221,39201,"9588 Delacruz Stream +West Crystalland, MT 76191",1949-06-19 04:23:55,a3:4b:d5:d3:12:2f,kendra91@waters.info,img/obama.jpg +Colton Yu,259-06-1220,76746,"82489 Dominique Square Suite 970 +West Brettton, MS 90800-1511",1970-06-15 07:14:40,15:85:8a:45:21:e4,owensmichelle@yahoo.com,img/obama.jpg +Rebecca Collins,474-56-6315,77223,"85362 Hill Creek +Amandahaven, WV 88705",2000-02-11 20:21:40,a3:7a:16:dc:14:d6,millerjohnny@gmail.com,img/obama.jpg +Richard Aguilar,506-05-2846,20280,"402 Fernandez Stravenue Apt. 028 +Bakerbury, PW 87465-0563",1954-11-20 02:35:36,3d:73:62:0c:86:ac,mollybrown@jackson.com,img/obama.jpg +David Cook,153-99-9902,80028,"PSC 1771, Box 9918 +APO AA 55915",1958-10-11 10:35:46,14:bf:93:6d:ca:42,montgomerymaria@gmail.com,img/obama.jpg +Candace Johnson,497-47-3747,14173,"76553 Lamb Mountain +South Jennifer, GU 90774-4070",1975-08-04 21:01:41,ed:10:09:e3:f2:83,ljacobson@gmail.com,img/obama.jpg +Michelle Hawkins,535-22-7823,50822,"USCGC Cross +FPO AA 31676-9454",1924-03-25 23:55:04,e2:5e:23:e7:bb:d8,lmyers@gmail.com,img/obama.jpg +Terry Smith MD,575-89-4741,31227,"9554 Roberts Island Apt. 971 +Peterberg, MN 88574-0389",1960-04-25 13:42:02,c7:ca:b4:64:f2:d7,woodardjane@hotmail.com,img/obama.jpg +John Anderson,638-11-2600,06187,"86955 Patel Cape +East Julia, AS 47117",2008-08-03 06:08:19,7f:7c:f8:f7:31:41,ericajohnson@gmail.com,img/obama.jpg +Christopher Clark,181-66-0844,92790,"0728 Kyle Cliffs +Parkertown, FL 28270",2011-01-03 13:29:47,1b:d2:4d:1a:23:25,mthompson@gmail.com,img/obama.jpg +Lisa Singh,290-12-6436,48698,"58618 Devon Forks Apt. 874 +North Jasonchester, PA 77762",1943-02-14 09:20:37,fc:33:25:91:9d:67,acostarichard@gmail.com,img/obama.jpg +Joseph Walker,511-40-1441,00637,"9352 Hensley Lock +West Danielhaven, VA 27877-8365",2012-07-01 04:00:38,f1:5d:7b:08:8d:0a,cdyer@yahoo.com,img/obama.jpg +Eric Huang,895-74-2227,39404,"802 Shaffer Common Suite 803 +Lake Christopherfurt, MP 61693",1950-05-16 16:31:20,68:41:c9:3f:bc:9a,abrown@yahoo.com,img/obama.jpg +April Garcia,032-23-1253,47587,"9599 Shelby Circle +South Matthewborough, AR 48394",1917-11-11 08:16:15,03:db:04:41:b3:2f,afowler@gmail.com,img/obama.jpg +Chad Bonilla,778-84-2935,29471,"77288 Lopez Extension Suite 883 +Sherryport, ND 01451",1927-06-08 12:44:33,ce:b0:f6:04:33:4d,nedwards@hotmail.com,img/obama.jpg +Beverly Carter,424-41-6060,38263,"48433 Kristina Heights +Manninghaven, VT 69174-9064",2016-01-12 18:06:50,37:fa:6f:ef:47:8c,leahfoster@gmail.com,img/obama.jpg +Carol Cox,168-27-6641,43765,"118 Perry Burg +South Robert, CO 14944-6400",1930-03-30 17:01:10,ae:b9:58:b6:19:f4,briangordon@yahoo.com,img/obama.jpg +Danielle Peterson,304-11-9001,79692,"135 Dominique Extension +Kellyhaven, TX 93632-0821",1990-09-13 18:07:25,5c:70:52:c2:f8:bb,julianunez@hotmail.com,img/obama.jpg +Robert Kirk,175-98-7863,43563,"70278 Esparza Rapid +East Pamela, SD 23905-6269",1926-01-01 18:34:48,c2:54:ad:be:84:6d,milleranthony@hopkins-johnson.com,img/obama.jpg +Rachel Brown,818-99-0218,48917,"5570 Allen Trail +Lake Adam, IA 20379-8338",1928-05-02 08:51:50,db:14:b6:07:7e:3f,madelinebailey@jackson-hill.com,img/obama.jpg +Brian Osborne,577-65-8796,33570,"1287 Anthony Knoll Apt. 353 +Baileybury, MH 19222",1956-08-05 05:10:26,08:b6:c2:f3:ff:66,fkaiser@brewer-clark.net,img/obama.jpg +Susan Murray,153-94-2754,14399,"Unit 1039 Box 3224 +DPO AP 78446",1974-11-25 05:31:31,27:a3:54:2e:c1:3b,rthomas@lucas.info,img/obama.jpg +James Clarke,040-06-8609,98229,"PSC 0557, Box 4040 +APO AE 38415",1997-07-19 22:09:53,c4:0f:cc:aa:23:7b,jrobertson@gmail.com,img/obama.jpg +Donald Hernandez,540-31-6360,11856,"8125 Morrow Corners Suite 806 +Clarkshire, NM 84297",2013-07-14 23:47:34,e4:24:68:f4:f4:10,jamesmcdonald@yahoo.com,img/obama.jpg +Terri Alexander,394-71-7521,26821,"48728 Sarah Lights +Tammymouth, NJ 15547",1965-01-17 18:00:46,33:3d:99:a0:22:24,melanie72@taylor.com,img/obama.jpg +Mark King,468-92-3373,26766,"877 Stephen Mission Apt. 662 +Johnsonmouth, MA 42489-2162",1976-05-11 20:39:46,1d:45:8f:bb:b2:4f,ruizashley@andrews.com,img/obama.jpg +Jesse Ross,682-27-0893,49374,"56952 Mora Rapid +West Samanthaberg, IA 25410-0028",1938-03-13 03:25:30,71:9c:ab:70:38:f6,fgalvan@lin.info,img/obama.jpg +Justin Wright Jr.,488-07-0410,96470,"USS Smith +FPO AE 82674-2183",1992-08-13 10:15:54,a7:ca:25:6e:ed:e5,johnvasquez@davis.com,img/obama.jpg +Amanda Wilson MD,423-56-8476,71482,"785 Maria Gardens Suite 058 +Fernandezmouth, MD 19063",1961-09-16 20:35:09,3c:79:fe:2c:6f:5e,youngamanda@owens.com,img/obama.jpg +Kevin Miller,512-52-8358,15564,"09185 Thompson Cape +Huntville, MH 74452",1980-12-27 13:41:04,3a:ce:c1:95:6a:2c,steven89@reyes.org,img/obama.jpg +Brian Lane,757-56-0175,81911,"5371 Nancy Lakes Apt. 154 +South Barbaramouth, AL 72401-0686",2014-10-16 23:37:17,90:36:d0:83:ac:bd,oberry@sosa-chaney.com,img/obama.jpg +Meghan Hunt,731-85-4425,99898,"764 Brian Village +Joymouth, GU 43352-1466",2005-03-11 15:49:37,04:ed:81:7d:08:23,jamesmanning@hernandez.com,img/obama.jpg +John Brown,655-78-1167,77611,"06976 Ryan Point +Olsenfurt, OR 29845-7192",1985-12-01 07:59:55,9e:b3:56:71:24:e2,john84@washington.biz,img/obama.jpg +Melissa Medina,689-60-7091,96093,"USNS Bowman +FPO AA 13110",1956-04-05 06:02:03,2c:0a:6f:a2:82:2e,clintonhayes@cox.com,img/obama.jpg +Mr. Paul Simmons,789-87-0295,33074,"684 Barbara Squares +Rothhaven, NM 50706",1970-10-05 08:48:41,6c:e3:17:03:89:20,kendra14@gutierrez-robinson.info,img/obama.jpg +Sergio James,898-89-1912,54088,"615 Dustin Fords Apt. 219 +Seanshire, ID 93133",1994-12-03 00:05:29,a9:20:d6:cf:8e:18,carrillokyle@yahoo.com,img/obama.jpg +Betty Bentley,754-34-7661,80974,"165 Houston Harbor +Lake Chris, OR 03932-1326",1968-03-19 03:10:57,08:73:50:41:72:da,jdominguez@yahoo.com,img/obama.jpg +Brian Mitchell,636-77-3833,11357,"977 Vanessa Mews Apt. 207 +Port Mark, KY 15988",1929-03-30 15:55:31,24:86:23:ab:63:f8,jameschristopher@hotmail.com,img/obama.jpg +Theresa Montgomery,192-30-2048,94044,"3010 Lewis Dam Apt. 428 +Port Michael, TN 55561",2001-12-11 05:12:00,8d:21:62:12:f9:f1,aarnold@lee.com,img/obama.jpg +Joann Cannon,529-88-5860,48449,"USNS Garcia +FPO AP 51112",1988-04-23 02:55:51,9f:7a:34:3a:f4:34,simpsonaaron@yahoo.com,img/obama.jpg +Stephanie Griffin,584-67-3664,98775,"72732 Jennifer Field Suite 363 +Sanchezport, DE 57076-5678",1950-04-03 00:48:26,98:12:a2:98:ec:f4,elainerobbins@walker.com,img/obama.jpg +Justin Parks,304-40-4348,04990,"9819 Wyatt Mount +North Rhonda, VA 47407-1207",1975-09-30 20:11:29,17:5e:4c:01:4b:9d,lewisjacob@richardson-jones.org,img/obama.jpg +Robert Patterson,189-23-0373,53260,"PSC 4236, Box 3652 +APO AA 85947",1973-05-03 23:13:56,80:9d:ec:b1:57:86,nicole54@farmer-smith.com,img/obama.jpg +Michael Donaldson,112-37-0263,66758,"USCGC Hill +FPO AP 81316",1929-07-07 08:49:35,56:fe:b3:62:82:2d,boyerrobert@hotmail.com,img/obama.jpg +Kevin Martinez,402-50-7820,18622,"2100 White Lane Apt. 967 +Kingside, AL 61216-2414",1934-03-05 04:42:12,9f:a6:85:55:b2:d1,phillip64@ross.net,img/obama.jpg +Sandra Williams,390-18-5893,16090,"24348 Elizabeth Bypass +Lake Antonio, LA 06805-8843",1967-07-12 19:15:49,0b:95:d1:a3:7b:99,qjohnson@bowers-thompson.com,img/obama.jpg +Cynthia Edwards,376-72-3605,37666,"67214 Ponce Overpass Apt. 477 +Shanemouth, AR 55625",1939-04-17 00:02:27,9d:f6:27:6a:a9:3e,kristawilson@yahoo.com,img/obama.jpg +David Glover,466-30-7658,72185,"8906 Kristen Heights Apt. 457 +Hoffmanport, WY 29029",2011-07-10 01:39:34,5d:e5:84:4c:e1:c3,cynthia62@yahoo.com,img/obama.jpg +Amanda Mccormick,073-38-9255,65230,"32418 Sandra Tunnel Apt. 690 +East Cindyburgh, MT 24824-2680",1996-05-18 08:36:29,39:6b:96:9c:4e:d0,uflores@hotmail.com,img/obama.jpg +Jonathan Pitts,240-28-0139,10890,"6497 Joseph Well +Brownmouth, RI 30843-2610",2016-12-03 01:31:13,70:6b:59:51:e0:c6,xmartin@yahoo.com,img/obama.jpg +Willie Norman,801-38-2433,41155,"453 Charles Haven +Powellfurt, NH 11704-7168",2015-06-14 21:22:29,65:9f:26:0a:aa:28,barnesjennifer@gmail.com,img/obama.jpg +Lydia Wilson,183-29-6782,18075,"8741 Vargas Corners Apt. 678 +Port Amberburgh, MO 35507",1989-06-08 07:35:31,25:00:3e:55:b0:c7,jasminegarrett@williams.net,img/obama.jpg +Paul Lozano,218-21-9535,99508,"7340 Michael Walks +Jasontown, MN 63209",1917-08-30 01:20:02,07:39:a9:47:93:c3,ljohnson@powers-kennedy.com,img/obama.jpg +William Sanchez,182-49-4143,72122,"12277 Julie Circles +North Scottburgh, MT 25705-9532",1994-12-28 01:21:30,79:c4:b0:dc:8c:5c,ftran@erickson.com,img/obama.jpg +Zachary Jones,508-55-0818,67187,"700 Watson Light Apt. 698 +Sarahborough, CO 67319-0091",1938-08-12 04:10:38,b1:a3:fb:12:ba:9d,antonioday@anderson-smith.biz,img/obama.jpg +Charles Flores,244-46-5222,53699,"1296 Russell Overpass Apt. 628 +Barbarahaven, WY 97725",1919-02-07 00:10:12,51:6a:bb:92:55:dc,eugenenavarro@hotmail.com,img/obama.jpg +Kristen Taylor,009-61-8641,76102,"61976 Craig Meadow Suite 866 +East Seth, OR 52285-0816",1965-10-14 22:30:18,9e:29:fc:fc:63:e9,joseph38@hotmail.com,img/obama.jpg +Ryan Robinson,669-18-1283,86413,"91611 Weaver Stravenue Suite 522 +Lake Benjamin, WI 46019",2008-12-20 00:13:28,83:46:08:f0:ac:ab,rnorton@powell.com,img/obama.jpg +Ashley Wells,850-74-7062,20931,"4507 Dawn Crossing Apt. 292 +Davidbury, IA 39028-4236",1934-07-21 06:38:59,d9:f3:b8:06:c9:f8,hernandezdavid@gmail.com,img/obama.jpg +Jennifer Cruz,566-56-9242,29500,"72368 Phillip Lodge +Lopezville, CT 13319-0052",1942-11-25 12:29:02,64:5c:d3:14:bd:8b,qanderson@yahoo.com,img/obama.jpg +Karen Middleton,211-01-9297,34361,"63191 Patterson Place Suite 929 +Sarahburgh, NH 71475",1963-09-28 17:25:16,40:4a:c4:6e:8e:95,randallkeller@yahoo.com,img/obama.jpg +Miguel Hurley,472-66-8012,50254,"51750 Bruce Spurs Apt. 235 +Port Joyceland, LA 71438-2946",1933-01-15 05:54:08,ce:23:17:b6:ed:b5,mariahgonzalez@gmail.com,img/obama.jpg +Stacy Allen,035-82-7007,40710,"386 Ward Lodge Apt. 182 +Thompsonstad, OH 27811-8123",1957-12-04 21:06:42,88:76:7c:72:27:36,yorkdavid@hammond-vega.com,img/obama.jpg +James Hill,104-28-2722,27542,"250 Krueger Glens +New Christopher, NH 92491",1945-12-17 01:07:06,8f:3e:70:9e:4c:bd,vhughes@yahoo.com,img/obama.jpg +Jeffrey Chambers,061-89-6535,85060,"464 Cody Mills Apt. 218 +North Mary, AS 49688-0193",1940-10-24 00:14:14,c8:2e:13:54:b1:c7,vsullivan@gmail.com,img/obama.jpg +Kimberly Schultz,262-84-1883,73817,"2461 Nicole Ridges Suite 520 +Ramirezland, TX 91876-2280",1942-11-19 23:44:29,90:f5:1e:1e:53:d2,jessica69@olson-miller.net,img/obama.jpg +Jessica Curry,025-11-6073,15202,"01713 Barbara Locks Suite 298 +Gabrielleborough, AZ 88316",2006-08-06 14:18:38,b4:70:12:20:1e:e3,jbautista@dunn.com,img/obama.jpg +Bryan Rodriguez,575-36-3352,77164,"14704 Nathaniel Neck +West Rhondamouth, NY 75129",1997-05-29 19:58:11,b9:a9:35:6f:c0:a8,jdunn@gmail.com,img/obama.jpg +George Moore,841-01-1070,32512,"18450 Conley Viaduct Apt. 208 +Lake Eric, GU 85044",1937-09-03 13:41:18,f8:a2:e8:14:5d:44,melanie89@gmail.com,img/obama.jpg +Ryan Garcia,585-92-0653,94645,"350 James Mews Suite 976 +Margaretmouth, MD 37016-9471",1938-10-03 16:11:14,5a:1a:d4:e1:ef:57,vvaughn@gmail.com,img/obama.jpg +Mr. Seth Flores,397-42-9350,41689,"462 Higgins Brooks Apt. 015 +Jenkinsland, IN 54742",1923-10-21 13:52:05,ba:fe:4d:d2:60:c6,amber48@yahoo.com,img/obama.jpg +Christopher Cabrera,058-46-3640,17472,"4468 Williams Shore +Hobbsfort, UT 23207",1944-08-27 07:49:57,a9:d5:2d:a3:6a:d7,robersonlori@gmail.com,img/obama.jpg +Robert Ford,662-82-7738,21099,"560 Baird Creek +Vasquezburgh, AS 85396",2012-12-09 20:58:47,08:4a:30:ce:a0:5a,russell58@wells-davis.net,img/obama.jpg +Craig Sanders,463-16-1699,51141,"USNV Terry +FPO AA 01947",1982-04-02 11:44:08,f9:72:3c:b6:70:f7,breanna17@odonnell-hensley.biz,img/obama.jpg +Bradley Love,704-07-1213,69735,"051 Joseph Manors Suite 800 +Jonesport, PA 30591",1917-08-19 03:34:27,1a:a4:91:18:4d:bd,keithware@anderson.com,img/obama.jpg +Mckenzie Anderson MD,692-09-7362,20825,"2194 Janet Shores Apt. 435 +Martinborough, MO 72462",1944-05-27 05:47:43,ac:5f:ce:0a:36:d5,welchcynthia@gmail.com,img/obama.jpg +Michael Doyle,100-64-3857,08687,"PSC 1848, Box 9946 +APO AP 71058",1979-03-22 15:35:34,37:58:8a:af:22:cb,kevinmoore@tucker.com,img/obama.jpg +Dylan Kirk,476-99-2726,45682,"854 Crawford Haven +Williamsberg, MO 21782",1957-04-04 07:17:06,1f:48:5b:0d:54:0f,mhogan@rhodes.biz,img/obama.jpg +Frank Nash,337-46-6130,02924,"2611 Gomez Courts Apt. 444 +Port Joseph, MS 93056",1960-10-30 17:32:30,74:0a:fd:17:d1:27,rlee@durham.com,img/obama.jpg +Adam Roberts,609-19-3216,59375,"7104 Andre Island +Kathleenside, ME 64953",1943-11-08 06:31:00,20:e3:87:0f:62:3e,tmurray@gmail.com,img/obama.jpg +Mr. Glen Rice,603-61-9584,77725,"601 Holder Summit +Tracyburgh, AL 74415-0120",1920-09-09 09:08:18,4a:3d:c8:4e:5e:35,ymiller@simon.com,img/obama.jpg +Matthew Jones,011-15-9976,39398,"222 Kevin Port +North Michael, MT 04323-3330",1938-05-10 07:07:11,49:80:3c:eb:19:fe,callahanandrea@little-wallace.com,img/obama.jpg +Clifford Davis,082-90-8263,42595,"35912 Jennifer Isle +Port Kennethland, MD 13071-9454",1995-09-08 00:47:22,61:6b:ab:e3:ea:0b,floresjohn@henry.biz,img/obama.jpg +Christopher Patrick,191-11-5630,64549,"12544 Weaver Ramp +Lake Jason, ND 61359-1682",1992-03-12 10:45:47,70:dd:5f:01:26:93,patricia00@townsend-pitts.com,img/obama.jpg +Ronald Oneill,580-60-1059,55185,"26210 Paul Oval +Andersonshire, TN 68232",1953-10-03 08:06:52,04:00:e3:df:a2:ae,hollandchristopher@cervantes.org,img/obama.jpg +Mark Murphy,376-50-3670,85542,"249 Mcconnell Plains +New Tyronechester, GA 03398",1992-11-19 22:15:51,4d:0f:3c:aa:cf:2d,greggallen@gmail.com,img/obama.jpg +Ashley Vargas,756-40-8773,84802,"68910 Leonard Fort +East Craig, LA 19291-5645",1938-08-21 20:09:47,7a:02:5a:d0:d4:2b,ross53@choi.com,img/obama.jpg +Dawn Mcdonald,434-87-1840,09139,"917 Hodges Islands Suite 427 +Port Theodoreburgh, NV 59430",1923-10-18 10:21:58,fc:6a:d4:c9:36:59,matthew37@hotmail.com,img/obama.jpg +Amy Boyer,297-62-1731,74596,"5391 Steven Freeway Suite 535 +Connieview, WY 17127-8200",1923-05-27 00:47:01,0f:da:94:11:9a:69,harrissean@gmail.com,img/obama.jpg +Tiffany Simpson,564-38-2386,50869,"936 West Inlet Suite 574 +Turnerton, OK 16466-6699",1973-09-16 23:08:14,08:31:9b:df:d0:e0,randy88@tran.com,img/obama.jpg +Cheryl Hawkins,033-41-5948,13962,"839 Howard Locks Apt. 341 +Carterland, CO 23889-8278",1944-01-27 18:40:35,66:29:c0:9e:92:73,vcox@ramos.com,img/obama.jpg +Sarah Thompson,474-89-5505,96061,"7774 Sullivan Ferry Suite 723 +North Charlesland, CA 30999-5997",1934-08-12 11:43:25,f0:c3:47:39:d6:da,nancy12@chen.com,img/obama.jpg +Kristin Lloyd,306-86-9127,57433,"47560 Jessica Inlet +East Luisburgh, KS 95563",1975-11-19 23:06:34,b1:1d:f7:31:f0:e0,mark88@williams.com,img/obama.jpg +Jimmy Mitchell,580-67-4776,11630,"81740 Anderson Village +Reedhaven, OK 33281-3387",1965-01-12 23:33:10,15:bc:d9:f2:b4:65,jeremy74@reed.com,img/obama.jpg +Catherine Larson,295-46-5311,19124,"PSC 1402, Box 7553 +APO AP 29352-5385",1948-11-16 08:48:19,1b:ac:d0:0e:b6:5f,bunderwood@morse-ferrell.com,img/obama.jpg +Misty Johnson,665-39-4396,69737,"Unit 7200 Box 1579 +DPO AP 84766-8046",1944-04-05 04:05:04,ff:40:97:79:97:e6,uwilliams@hotmail.com,img/obama.jpg +Stephanie Nelson,147-68-6415,32614,"5377 Ball Station Apt. 063 +West Monica, ME 98503-0828",2012-05-25 22:16:15,8b:95:34:70:f4:18,wendyrivera@yahoo.com,img/obama.jpg +Jennifer Kramer,384-80-8827,25492,"801 Garcia Parkways Apt. 224 +Donaldton, TN 32645-8085",1924-09-03 23:42:02,69:f0:be:0c:79:8e,ambercannon@yahoo.com,img/obama.jpg +Claire Hammond,260-06-8147,59914,"USNV Walsh +FPO AE 95048",1944-04-23 13:23:19,e3:c2:c0:55:15:eb,crystalbrown@smith.info,img/obama.jpg +Amanda Frazier,561-68-4451,03116,"3411 Garrett Village Suite 444 +Glennbury, MO 80100",1918-06-06 05:14:34,e1:ec:77:24:cc:40,nguyenjordan@cooper.com,img/obama.jpg +Patricia Jones,830-18-8743,65418,"220 Williams Mills +South John, HI 81804",1926-08-02 02:02:05,cf:bc:1b:41:75:1b,pam38@rose-knight.com,img/obama.jpg +Robert Moody,054-40-6161,68938,"USNS Miller +FPO AE 23833-0187",1986-04-02 22:47:23,0d:1b:88:32:18:df,coletaylor@brown.biz,img/obama.jpg +Kristie Martinez,271-40-8725,15426,"9968 Evans Canyon +Farmerberg, LA 30710-1392",1992-04-14 02:09:33,1d:67:9e:34:7a:a1,webbgeorge@gmail.com,img/obama.jpg +Kimberly Ramirez,518-42-2812,96497,"60595 Washington Unions +East Sethmouth, PW 18501-5034",1920-05-23 15:53:42,4c:84:4c:d7:91:a6,ginaserrano@gmail.com,img/obama.jpg +Tammy Smith,457-25-0738,51491,"7798 Kimberly Parkway Suite 581 +Adamborough, SC 42934",1929-06-23 20:01:46,e6:81:7c:01:8e:f6,jenniferfloyd@pearson-walker.org,img/obama.jpg +Cory Black,316-40-5233,92939,"492 Brandon Fields +New Christopherland, RI 32668-6474",1954-01-12 20:18:09,1b:93:22:9d:21:06,pereztara@hotmail.com,img/obama.jpg +Scott Peterson,336-22-2894,69400,"68732 Palmer Via Suite 099 +West Steven, MN 89910",1928-06-05 12:21:53,33:b2:7e:74:16:94,kevinphillips@griffin-swanson.com,img/obama.jpg +Tiffany Clark,290-85-3881,96269,"23070 Horton Bridge +Santanafurt, AR 59257-2751",1994-04-29 10:44:00,79:18:1f:c2:3f:06,powerswilliam@yahoo.com,img/obama.jpg +Brent Perez,896-59-8090,79770,"75764 Smith Spur +Garciamouth, AK 43322",2010-05-13 15:47:34,91:14:07:c3:a2:9b,olivia45@cervantes-irwin.com,img/obama.jpg +Juan Smith,333-17-1744,91754,"15762 Katherine Grove Suite 654 +South Jenniferborough, NY 11729-6340",1933-08-28 14:09:13,88:db:37:a6:3e:c5,wdavidson@hotmail.com,img/obama.jpg +Brian Conrad,729-41-1425,19916,"76385 Le Lights +North Alex, OH 09294",1929-05-12 20:15:43,3f:6c:33:d4:83:0d,christina33@solis.com,img/obama.jpg +Rebecca Turner,495-05-3063,44483,"83365 Jennifer Oval +Lake Briannaport, CA 38349-2633",1981-02-16 01:03:22,d4:54:c3:51:f3:04,josehouston@yahoo.com,img/obama.jpg +David Little,318-10-3112,71351,"3907 Moore Prairie +New Johnland, TX 02753-5266",1991-03-08 18:29:46,79:f5:fb:82:79:a7,steven07@hotmail.com,img/obama.jpg +Elizabeth Scott,441-93-8512,78742,"5493 Ramirez Trace Apt. 215 +Lewisfort, IA 32174-8453",1925-12-08 03:51:18,b4:17:e2:95:88:fc,rebecca98@york-lee.biz,img/obama.jpg +Cynthia Simpson,653-49-1332,43588,"60768 Mark Roads +East Cindy, GA 31377-0919",1963-11-20 00:42:32,3b:db:ee:2f:b5:43,nramirez@gmail.com,img/obama.jpg +Meghan Sullivan,626-37-2556,43492,"60640 Reed Brooks +Port Darlenestad, MD 24053-0439",1980-03-01 04:32:31,0b:9f:01:32:95:ad,roberta58@hotmail.com,img/obama.jpg +Emily Johnson,876-56-4618,43926,"098 Blair Landing +Rowlandport, UT 31109",1970-04-10 04:06:44,62:68:1f:78:bb:7d,vmurphy@yahoo.com,img/obama.jpg +Stacy Turner,223-39-3530,78884,"129 Phillips Union Suite 961 +West Melaniefurt, GA 28789-7300",2016-07-28 09:36:06,f9:79:9e:ad:2e:d0,johnsonandrea@yahoo.com,img/obama.jpg +Danielle Foster,474-53-4357,12165,"949 Johnson Pines Suite 760 +Ericside, OH 38951",2004-01-09 12:59:08,1c:58:f4:6d:4f:f5,mduran@gmail.com,img/obama.jpg +Cassandra Franco,102-44-7022,88450,"6712 Morton Freeway Apt. 188 +Lake James, PW 75306",1918-02-01 11:31:15,86:35:9b:59:3a:3c,acoleman@yahoo.com,img/obama.jpg +Michael Maldonado,061-68-9176,23751,"1410 Tonya Underpass Suite 658 +North Coreytown, WI 60172-1048",1928-08-25 14:45:14,00:bb:8d:7b:03:52,kenneth16@brown-johns.com,img/obama.jpg +Ronald Velez,875-62-2440,33201,"09163 Rebecca Stream +Hugheston, CT 76784",1986-02-12 03:15:16,c9:0f:10:ff:a6:0d,daniel47@yahoo.com,img/obama.jpg +Jennifer Bennett,214-61-4680,83728,"59772 Sandra Crossroad +East Sandra, NH 62194-0905",1931-06-01 14:26:11,f2:48:77:84:df:43,harristodd@gmail.com,img/obama.jpg +Curtis Fox,389-11-9254,37876,"44912 Shaw Locks Apt. 246 +Alexanderville, PR 53403",1947-10-25 11:53:41,b5:af:3a:c7:6f:47,billyjohnson@reyes.com,img/obama.jpg +Gary Huff,851-20-6552,72795,"631 Clark Roads Apt. 244 +Reesemouth, WV 70772-7872",1963-04-27 14:03:29,9f:e2:95:df:bf:23,virginia30@miller.net,img/obama.jpg +James Allen,298-74-9432,58911,"76644 Kathy Locks Apt. 652 +Christineview, NV 36550",1987-12-26 13:31:17,90:f2:df:72:a9:e3,solson@yahoo.com,img/obama.jpg +Joan Navarro,789-08-7379,83300,"11107 Brian Station +New Johnberg, ND 65241",1940-03-31 21:24:41,08:a4:de:c4:ac:79,karlmcpherson@hotmail.com,img/obama.jpg +Jessica Jordan,641-99-0278,64267,"801 Isaac Roads +West Cheryl, KY 34911-4088",1938-11-24 04:55:09,6a:0d:56:a1:b2:5c,melissawood@turner.com,img/obama.jpg +Christina Green,007-56-5693,64514,"183 Joseph Street Suite 238 +South Danielle, SD 40567-2453",1958-04-22 08:22:01,6c:bd:e4:45:66:b9,kennethtravis@jackson.org,img/obama.jpg +Victoria Garcia,219-75-5084,44019,"2028 Anthony Creek +Lake Jennamouth, PR 76077-1837",1927-03-28 02:17:37,14:b3:4f:a2:75:b5,emily71@hotmail.com,img/obama.jpg +Shaun Price,103-25-7483,15479,"282 Jones Pike Suite 802 +Jamesstad, MP 81918",1939-08-13 23:50:51,54:f3:8d:6e:de:0f,hobbskimberly@brown.net,img/obama.jpg +Joshua Levine,719-79-4591,70669,"767 Perry Loaf Apt. 051 +South Christina, GA 77209",1963-04-03 11:35:03,ed:63:09:d6:68:97,dwallace@duke.biz,img/obama.jpg +Stacey Mccormick,562-48-6879,81615,"Unit 5190 Box 5888 +DPO AA 71904",1999-04-06 13:45:34,90:5a:01:e7:0d:6e,jaime32@gould.com,img/obama.jpg +Melanie Hawkins,037-69-7931,41621,"7138 Taylor Ways Suite 039 +Griffinland, SD 74483-7999",2017-03-24 12:12:02,52:a0:d6:43:5d:99,matthew61@hotmail.com,img/obama.jpg +Michelle Roberson,071-32-2878,56638,"30195 Joseph Mountain +Ellisburgh, AR 67600-8467",1997-03-22 20:38:53,6c:c4:3c:7c:9b:5c,charlescastro@hotmail.com,img/obama.jpg +Robert Barker,334-45-4063,29043,"539 Joseph Passage +South Shannonville, KS 42533-9935",2009-04-06 05:36:05,7f:70:1f:9d:18:cb,awilliams@howard.com,img/obama.jpg +Dylan Fowler,724-10-3540,28870,"23297 Booker Pine +Nicholasville, MS 61196-1247",1935-03-06 02:14:57,51:dc:3c:a1:7e:2b,tsmall@wright.com,img/obama.jpg +Micheal Clark,354-86-9812,20806,"601 Mary Light Suite 033 +Port Desiree, MA 41325",2006-11-16 12:56:08,61:aa:60:9d:d8:f2,dellis@scott.biz,img/obama.jpg +Blake Marks,153-17-8800,95903,"8249 Hunt Glen Suite 051 +New Brianna, NH 66707-9426",1926-07-12 17:02:42,69:16:5a:12:01:a9,qsantana@garza-smith.net,img/obama.jpg +Jack Cook,396-45-8320,24109,"782 Paula Ports +Port Kelly, DC 09965",1931-12-17 21:04:23,1c:0d:6d:ea:60:27,annacraig@bishop-brown.com,img/obama.jpg +John Perez,633-79-1733,69389,"Unit 7316 Box 8528 +DPO AA 14494-1195",2016-06-29 23:07:43,62:ab:28:b0:3b:ec,boyledeanna@yahoo.com,img/obama.jpg +Heather Melendez,134-78-0682,49016,"6735 Oneill Radial Suite 788 +Briggshaven, AZ 84855",2001-07-03 11:00:17,db:ba:74:50:52:73,nathaniel69@gmail.com,img/obama.jpg +Lynn Brock,628-11-1753,91852,"6226 Kristy Trafficway Apt. 853 +South Williamton, MH 66526",2012-06-26 23:46:17,5c:14:78:8f:b6:12,elizabeth05@gmail.com,img/obama.jpg +Richard Rowland,485-11-1540,74158,"00115 Karen Square Apt. 291 +Lake Joseshire, MI 67753",1978-07-03 02:58:44,15:e9:f3:c3:4e:df,charles54@tyler.com,img/obama.jpg +Kenneth Strong,027-46-5245,35607,"673 Jones Stravenue +Martinezhaven, NM 78030-3520",1970-10-13 09:55:14,3d:da:37:12:76:2c,william60@nguyen-young.com,img/obama.jpg +Thomas Mora,637-11-5540,26872,"6491 Jeffrey Stream Apt. 182 +West Williambury, OR 44884",1982-07-13 20:51:11,c3:fc:1d:aa:e1:e5,jordanjames@schaefer-rogers.com,img/obama.jpg +Diane Benjamin,376-59-5636,03668,"2593 Amy Crossing Apt. 822 +Brendaton, GU 07298",1975-05-17 23:36:21,cc:06:e9:1e:36:4e,jjordan@simpson.com,img/obama.jpg +Brandi Campbell,326-58-4773,62834,"633 Yoder Square +Smithmouth, VA 96111-7832",1998-06-01 09:43:17,9d:34:7e:35:01:06,randolphkathleen@ellis.com,img/obama.jpg +Carlos Walker,721-84-8759,03347,"5572 Jay Well +Julieborough, NE 97539",1994-08-02 17:53:30,9c:11:df:25:51:a5,jhamilton@hernandez.net,img/obama.jpg +Judith White,682-11-3355,26951,"41036 Shelley Crossing Suite 237 +Peterview, OK 17421-4277",1948-02-11 13:46:38,ff:c7:41:de:66:f4,kylekelly@russell.info,img/obama.jpg +Kevin Roberts,335-27-6087,50621,"9956 Ashley Falls +Brandtfort, FL 34931-1703",1964-03-17 17:57:25,3a:92:62:d2:3d:23,tphillips@mann.com,img/obama.jpg +Elizabeth Harris,685-10-9376,92833,"727 Austin Land +East Robert, NY 53660-4028",1938-03-15 22:49:21,dd:5c:47:a3:76:87,ctodd@gmail.com,img/obama.jpg +Kara Kim,444-25-7226,21179,"55112 Nicholas Ports +Joshuahaven, OK 81936",1970-05-02 07:52:20,5f:bd:d9:76:a1:26,qbrown@gmail.com,img/obama.jpg +Terry Baker,085-33-3719,20547,"75883 Jordan Overpass +Brownburgh, CA 76919-2622",1986-12-03 12:36:08,cf:5d:38:a1:24:8f,williamsblake@hotmail.com,img/obama.jpg +Richard Stewart,687-99-2855,32365,"9548 Jonathan Union +Andrewstad, WY 53506",1955-01-13 11:15:08,4f:21:01:67:4b:dc,juarezsamantha@anderson.net,img/obama.jpg +Kelly Castillo,331-93-0346,32062,"44535 Jennifer Loop Apt. 478 +Douglasport, VI 84257",2010-11-03 09:54:42,75:e2:03:fe:91:2c,james53@gmail.com,img/obama.jpg +Sharon Ayala,685-60-2888,34792,"9621 Todd Spurs Apt. 891 +Deborahton, NJ 21079",1922-10-11 01:45:30,b2:e7:98:e2:a0:12,joshuaburton@newman.com,img/obama.jpg +Jessica Cooper,007-14-4489,85702,"549 Danielle Pass Suite 859 +West Arthurberg, MN 48158",2005-02-04 04:35:25,5e:c3:b9:34:f0:8e,lori68@gmail.com,img/obama.jpg +Keith Wong,053-59-2107,00931,"453 Manuel Light +Campbellshire, NY 86929",2011-01-19 20:25:22,2c:08:64:43:d5:e4,dcaldwell@gmail.com,img/obama.jpg +Amanda Phillips,819-61-0574,53814,"467 William Radial Suite 641 +Burgessmouth, MI 73371-7604",2010-06-14 19:41:54,42:e8:74:2e:84:fb,hilljeffrey@gmail.com,img/obama.jpg +Ricky Pennington,076-57-3570,54242,"4216 Haas Ramp Apt. 712 +Lake Brianfort, DE 04047-8404",1974-01-29 22:33:05,a0:08:a9:37:68:42,qsnyder@yahoo.com,img/obama.jpg +Valerie Cochran,168-73-1106,21635,"PSC 9869, Box 5426 +APO AP 94461",1991-10-29 05:37:43,de:0f:e3:6a:c4:b8,bbrown@arroyo.com,img/obama.jpg +Dr. Joseph Smith,665-22-2759,31556,"79030 Horne Wall Suite 995 +East Virginiaview, FL 53649",1982-02-15 16:17:19,11:24:c7:a4:40:d7,hesspatricia@whitney.com,img/obama.jpg +Kyle Douglas,726-45-4162,02096,"03114 Brown Stravenue +Margaretfurt, IA 71281",1985-11-06 05:52:49,a1:0f:6f:e3:39:56,newtongary@hotmail.com,img/obama.jpg +Kristen Hamilton,581-46-0160,95758,"28509 Sutton Cove Suite 401 +New Michele, OK 00657",1939-08-19 23:55:20,e2:1b:8f:c2:81:0b,cordovaamy@hotmail.com,img/obama.jpg +Mitchell Wells,564-62-6075,72656,"350 Derek Islands +Smithview, SC 38256-5185",1919-09-04 16:24:08,6a:89:56:9b:5d:f7,kthompson@hotmail.com,img/obama.jpg +Charles Krueger,095-07-7259,24038,"6633 Robinson Lock Suite 234 +Johnsonfort, MT 86762",1951-06-10 06:50:53,cf:3e:78:40:50:bf,julie53@gonzalez-chavez.net,img/obama.jpg +Richard Cunningham,506-39-6633,73576,"804 Danielle Crest Suite 851 +Bethview, AZ 57589",1942-07-04 22:00:14,4d:9d:ad:45:79:94,millscynthia@hotmail.com,img/obama.jpg +Ashley Bell,515-71-3054,73356,"5599 Jonathan Parks Suite 039 +East Marymouth, RI 87645-9645",1942-01-03 08:10:08,42:1b:1a:37:e2:40,lisa61@perez-smith.com,img/obama.jpg +Julie Baker,498-57-4172,43100,"6062 Evelyn Ports +New Dana, IA 37649-1612",1986-07-20 00:04:32,b3:b7:18:90:be:49,ambercross@yahoo.com,img/obama.jpg +Richard Banks,189-97-2320,10463,"7602 Richard Squares Apt. 931 +Taylorfort, IN 83803",1948-09-09 07:31:33,e2:49:82:32:65:2b,medinakelly@turner-walker.com,img/obama.jpg +Casey Avila,240-79-0274,72485,"02746 Kelley Throughway +Kyliemouth, SC 39626",1920-03-11 05:42:45,b0:af:a0:9d:e8:95,stewartdonald@gmail.com,img/obama.jpg +Leslie Benson,834-40-2865,41573,"38790 Pham Locks +East Jasonmouth, WY 50721-5877",1933-09-28 00:35:08,bd:5a:95:25:5a:1e,tarahamilton@henderson.net,img/obama.jpg +Billy Beck,682-47-1304,64243,"PSC 1415, Box 0599 +APO AE 45060",2005-12-20 00:47:53,2e:01:88:f6:19:20,berrymichael@zhang.biz,img/obama.jpg +Denise Holland,815-22-8139,73825,"321 Brooke Way +New Gabriel, MI 87382",2008-01-15 13:50:03,05:04:4a:96:6e:86,jennifer90@hurst.com,img/obama.jpg +Janice Thompson,631-06-5761,26684,"3540 Michael Mission Apt. 443 +Angelicafort, GU 94601-1182",1951-04-19 13:05:14,f4:98:02:2a:b4:c5,mendozatiffany@garcia-brown.info,img/obama.jpg +Tara Ruiz,503-37-3202,31337,"PSC 5120, Box 1991 +APO AE 38250",1980-12-29 18:06:50,15:b8:7a:e7:34:57,gdiaz@stone-roberson.com,img/obama.jpg +Amanda Garcia,532-47-7028,82373,"392 Wendy Haven +Martineztown, WI 04232",1920-12-31 07:33:51,ca:88:96:08:90:85,erika72@yahoo.com,img/obama.jpg +Jennifer Ortega,875-11-9011,39252,"3713 Evans Street Suite 542 +Lake Anthonyville, IL 87989",1973-12-26 17:54:25,ef:fe:73:b8:d6:72,jessica58@riley.com,img/obama.jpg +Alexandria Garcia,673-99-8652,03455,"42075 Walker Brook Apt. 347 +North Molly, FL 47531-7098",1952-11-14 12:00:25,9d:f6:d8:2d:03:ec,lambertrobyn@hotmail.com,img/obama.jpg +Jessica Peters,845-34-8355,89230,"719 Shane Street +Thomasbury, NJ 83569",1924-07-31 19:45:20,b1:b6:a0:aa:76:f1,znorton@lin.info,img/obama.jpg +Adam Flynn,599-39-8538,80762,"15683 House Valley Suite 938 +Petersonport, WA 61285-3833",1920-07-02 06:40:06,4b:b4:36:f7:fc:c0,dianamiller@weber.org,img/obama.jpg +Rhonda Anderson,610-43-0785,20583,"PSC 6105, Box 5509 +APO AE 53312",2007-01-08 19:13:58,2f:2b:5c:d9:d6:cc,brookssonya@gmail.com,img/obama.jpg +Jamie Foster,605-83-0082,54277,"0002 Hanna Circles +Matthewton, SC 73604-5809",1975-02-27 13:10:49,4e:70:97:68:27:a1,amytorres@gmail.com,img/obama.jpg +Daniel Carter,860-13-9880,11319,"34545 Meyer Forge +East Tylerside, FL 42454-2799",1925-02-09 01:46:44,03:82:d3:99:eb:cf,jonathanholmes@yahoo.com,img/obama.jpg +Nicholas Porter,327-62-5259,45019,"06545 Serrano Court Apt. 259 +Erikchester, IN 52737-8525",1943-10-10 21:52:39,5a:f0:ec:96:4e:9d,alexander24@phillips.com,img/obama.jpg +Richard Sanchez,572-51-4404,02487,"427 Joel Ramp Apt. 937 +West Candice, SD 28570-5036",1922-06-25 06:43:53,09:e1:54:d4:98:93,carmen24@riley-rodriguez.com,img/obama.jpg +Kathleen Reed MD,095-82-0342,17090,"8855 Mayo Via Suite 115 +Arroyoside, OR 90364-2729",1996-09-22 01:49:52,c0:62:d7:0b:08:9d,pkrause@brown.org,img/obama.jpg +Jordan Sutton,518-30-1134,20149,"0899 Nancy Turnpike +Jonesville, NM 26838",1944-10-01 00:31:18,ba:fb:aa:ad:37:0e,medwards@hotmail.com,img/obama.jpg +Jennifer Salas,274-58-7733,66095,"30563 Mills Valley +New Jonathanbury, SC 18018",1955-08-16 10:16:51,87:22:e8:ad:d8:8d,twallace@newman.com,img/obama.jpg +Stanley Martinez,110-40-4373,37355,"PSC 9247, Box 0226 +APO AP 14233-9378",1964-05-03 17:09:03,b1:4d:46:0c:85:96,kellycantrell@yahoo.com,img/obama.jpg +Michael Snyder,142-93-5646,35838,"5551 Davila Forges +Howellmouth, SC 85009",1956-10-15 18:37:52,fe:1e:19:db:bd:ca,fmartin@gmail.com,img/obama.jpg +Lisa Jimenez,034-38-8094,64975,"19264 Howard Port Apt. 546 +South Christieburgh, ME 20316-5734",1920-10-08 00:29:24,8e:a0:b9:7b:08:34,james49@yahoo.com,img/obama.jpg +Jason Turner,037-75-3448,18603,"321 Grimes Tunnel +Martinezport, AS 21869",1922-12-12 17:04:36,2d:74:b2:0f:77:de,vmiller@gonzales-davis.com,img/obama.jpg +Samantha Barker,319-38-7181,14967,"4286 Kenneth Neck +Waltonstad, AS 59503-8424",1940-01-03 11:37:12,e8:2b:24:6b:ee:56,christopherallen@lynch-marshall.com,img/obama.jpg +Sarah Mccullough,006-05-9724,97405,"236 Alvarado Ville Apt. 480 +New Michael, AZ 93674",1955-08-02 03:22:52,64:45:61:c1:ae:ef,johnjames@hotmail.com,img/obama.jpg +Larry Robles,535-71-6080,47903,"798 James Drive Apt. 027 +East Keith, WY 79456",1992-08-26 22:19:45,d3:14:a4:2e:d9:24,cherylhooper@hotmail.com,img/obama.jpg +Nicholas Sanchez,384-84-6113,56860,"0211 Johnson Fords Apt. 632 +West Hector, MA 20902-4902",1977-05-15 16:01:44,77:21:f7:7d:2d:ae,josethompson@gmail.com,img/obama.jpg +Donald Ford,671-65-7490,98474,"81946 Vanessa Harbors +Kimville, NV 95643-6054",1949-03-23 06:05:28,a4:c2:66:a0:8b:48,michelle95@hotmail.com,img/obama.jpg +Carly Rodriguez,165-92-9169,80431,"5071 Flores Harbors +West Billymouth, IA 21668-7241",1990-04-29 13:26:59,c2:0f:a5:eb:da:22,brian07@yahoo.com,img/obama.jpg +Todd Paul,850-40-0462,19972,"667 Caleb Spur Apt. 784 +East Jonathan, GU 74773-9611",2004-10-13 11:57:31,e0:b7:4c:02:9a:6f,mary33@henderson.biz,img/obama.jpg +Carolyn Carter,096-69-4794,94760,"3485 Hernandez Ports +Port Nicoleshire, ID 59656",2014-12-19 17:26:14,11:9e:da:f7:f7:18,jward@bautista.info,img/obama.jpg +James Miller,078-27-8886,72254,"80903 John Cliffs Apt. 283 +Kimborough, GA 62917",1934-07-01 08:12:18,dd:c2:68:f3:70:dd,owenana@knight.com,img/obama.jpg +Lauren Case,645-18-2028,87104,"976 Charles Garden Apt. 411 +Dorothyfurt, AL 09104-3410",1983-07-04 21:05:30,05:40:88:23:f7:92,kpena@hernandez-henderson.com,img/obama.jpg +Rebecca Daniels,600-63-5075,69331,"7290 Hannah Grove +East Jameston, NJ 60097",1974-07-03 19:16:36,e9:be:da:f1:c4:ed,danny62@jones-smith.com,img/obama.jpg +Jessica Hensley,187-82-4299,14017,"48199 Norma Divide +Danielport, TX 64759-4488",1943-01-11 14:43:34,bc:5f:09:95:df:67,norriswayne@garrett-anderson.info,img/obama.jpg +Jared Wilkinson,322-74-8243,52502,"6005 Nicholson Highway +Robinsonside, AK 13941",1941-06-30 11:31:16,01:39:75:27:66:0b,diazamanda@gmail.com,img/obama.jpg +Leroy Thomas,805-51-2081,04829,"560 Michael Square Suite 489 +South Kathleentown, IN 14931-6200",1970-12-01 16:40:52,15:81:78:f5:e4:51,nathaniellopez@hotmail.com,img/obama.jpg +Gary Brown,110-14-6255,58366,"733 Mitchell Meadows Apt. 205 +Robinside, WI 26204",1926-10-10 15:02:37,a7:8f:5c:47:ad:04,vturner@gmail.com,img/obama.jpg +Robert Choi,542-23-3957,65828,"635 Nancy Parkway Apt. 851 +Port Lisaview, NH 32111",1959-07-18 20:44:18,d1:17:8c:2b:8f:fc,dannyjohnson@yahoo.com,img/obama.jpg +Michelle Patton,265-78-3495,84183,"05473 Smith Mission +West Edwardstad, GU 61666-1643",1920-05-17 07:39:25,c7:d1:27:d7:97:7b,mpeterson@carroll.com,img/obama.jpg +Steven Reeves,256-16-8846,91287,"4148 Gina Walks Apt. 759 +North Janet, WY 22909-1745",1986-12-15 05:02:17,cc:60:cd:ba:c2:58,cheryl26@yahoo.com,img/obama.jpg +Michael Blake,877-77-0149,57727,"89487 Swanson Flat +Leonardfort, VI 89812",1951-07-02 06:46:11,1e:79:25:00:17:59,gregory79@yahoo.com,img/obama.jpg +Anthony Williamson,457-41-7708,90074,"1638 Fleming Crest +East Thomasfurt, MO 30172-8621",2006-06-17 13:27:35,46:83:7d:5d:5a:91,nathan18@king.info,img/obama.jpg +Jennifer Shelton,447-80-5724,94180,"PSC 1061, Box 6212 +APO AA 46105-3329",1932-11-12 04:22:29,f4:68:44:8b:55:5f,garzabeth@hotmail.com,img/obama.jpg +Maria Lee,310-92-0062,78161,"PSC 1708, Box 9416 +APO AA 49915",1970-08-21 00:08:52,82:cf:f2:82:ae:39,audreymanning@bell.com,img/obama.jpg +Alexander Wood DDS,725-62-1314,58345,"57560 Brooke Haven Apt. 241 +Fletcherville, NE 06679-8636",1919-10-06 21:51:17,08:30:68:82:33:9c,jasoncortez@murphy-smith.com,img/obama.jpg +Frank Richards,624-51-5734,48285,"379 Silva Tunnel Apt. 469 +Stefaniehaven, ME 82342-8463",1939-12-19 14:20:38,30:b9:98:a8:34:94,igibson@hotmail.com,img/obama.jpg +Frederick Walters,603-15-5187,21579,"252 Anna Lodge Apt. 390 +New Kevin, VT 28440-9342",1972-02-09 05:49:46,80:a3:50:3a:b1:4b,rthompson@summers-peterson.com,img/obama.jpg +Christine Tapia,381-08-7099,82217,"72085 Ball Inlet Apt. 877 +East Samanthaborough, VA 38237",2009-12-18 08:49:20,e5:1d:74:39:00:41,dmcmillan@yahoo.com,img/obama.jpg +Michael Newman,486-49-2892,63466,"894 Rachel Isle Apt. 552 +Hernandezmouth, GA 29020",1999-04-03 07:22:32,a0:83:03:ba:e9:8c,megantran@yahoo.com,img/obama.jpg +Alexandra Burns,286-20-8668,54542,"813 Maria Islands +Donnaburgh, DC 51702-3579",1964-05-28 17:46:44,87:7d:13:2b:62:fe,wilsonlisa@yahoo.com,img/obama.jpg +Kristin Crawford,524-80-5637,55266,"7488 Mckinney Fort Suite 651 +Jillmouth, MN 34345",1978-11-15 15:43:04,99:db:93:e2:bd:51,jennaarellano@graves.biz,img/obama.jpg +John Dodson,145-30-2180,75357,"14337 Mark Spurs +Susanbury, NJ 97084",1974-03-10 17:33:24,00:66:49:aa:d0:13,jamespadilla@hull.org,img/obama.jpg +James Rodriguez,482-09-8365,52677,"31333 Thomas Port +East Javier, AS 33333-2587",1986-09-01 06:47:32,c8:24:46:b2:44:c0,traceyperez@hall.com,img/obama.jpg +Timothy Jimenez,230-80-1678,88523,"11180 John Tunnel +Alisonstad, NH 98766",1941-06-04 16:28:33,0e:c0:11:37:3d:f3,pnguyen@marshall-wang.com,img/obama.jpg +Troy Young,200-26-7681,14012,"781 Smith Camp +New Kelly, DE 90798-5056",1953-02-05 11:15:34,0e:57:97:1f:91:18,lfarmer@yahoo.com,img/obama.jpg +Peggy Williams,542-82-1769,50739,"510 Rachel Plains +Marvinview, MO 25029-7522",1958-04-03 19:25:01,ab:9f:1a:f9:c4:24,zhall@gmail.com,img/obama.jpg +Justin Pace,177-16-5050,49289,"9181 Wright Ville Suite 901 +North Barbaraport, NC 86227-4783",1987-12-08 18:48:06,6d:0b:c8:35:a4:c5,olsontammy@anderson.biz,img/obama.jpg +Katherine Moss,858-55-0579,62178,"1090 Anderson Forges Apt. 900 +Kevinland, SC 78654",1932-07-22 16:54:19,84:fb:e6:0b:49:14,kimberly22@gould.com,img/obama.jpg +Deborah Farrell,204-51-1888,16661,"03511 Stephanie Hill +Josephville, IN 76208-4299",1990-11-02 18:30:55,99:45:cc:c4:4f:af,miranda02@donaldson-white.com,img/obama.jpg +Robert Contreras,359-80-8267,35860,"7592 Albert Lane Apt. 378 +Port Coryfurt, GU 45066-5294",1966-05-09 15:00:35,8a:2b:34:9f:e4:d0,christina93@johnson.com,img/obama.jpg +Jacob Hayes,563-67-3003,39099,"7291 Gonzalez Causeway +East Emmafurt, NJ 74889-9320",1999-07-22 15:08:48,35:a1:ae:d7:09:a5,kathrynnelson@love-gonzalez.com,img/obama.jpg +Thomas Williams,191-21-4145,40089,"801 Young Stravenue +Christopherburgh, AR 57367-8834",1930-09-26 02:03:42,fa:0c:36:37:5f:cd,underwoodjanet@bryan.biz,img/obama.jpg +Diana Sanchez,048-01-0297,01958,"7367 Edward Crossing +New Theresa, TN 14182-4755",1966-10-17 23:44:00,3a:82:29:a1:84:5a,lmcdonald@gmail.com,img/obama.jpg +Bailey Vargas,212-51-7000,30614,"59670 Andrea Knolls +Katieburgh, WY 88857",1927-11-05 13:34:28,82:26:5d:05:72:a3,levinejoseph@montes.org,img/obama.jpg +Evelyn Becker,753-16-7475,92172,"305 Denise Pines Apt. 277 +Lawrenceview, AZ 71301",1952-09-23 14:45:12,43:e9:6f:99:68:2e,gregoryrodriguez@gmail.com,img/obama.jpg +Joshua Nash,699-09-3698,89850,"23840 Ferguson Circle +East Tinamouth, GU 73639-8962",2002-09-15 22:52:45,5d:06:9c:1a:5e:e8,hartmanmichele@ross.com,img/obama.jpg +Ashley Powell,331-69-6200,84275,"66536 Huerta Plaza Apt. 886 +Franciscoview, MS 58564",1966-10-20 15:26:18,12:94:68:22:8b:46,richard86@hotmail.com,img/obama.jpg +Justin Johnson,689-94-5738,70256,"78279 Richmond Avenue +Youngland, WA 46728",1978-10-09 18:51:36,4c:3f:d3:eb:63:4b,steven71@johnson-rowland.com,img/obama.jpg +Donald Hinton,592-81-3071,13455,"Unit 2132 Box 3683 +DPO AP 91706",1958-12-18 22:24:35,11:34:53:6d:6e:22,twebster@chase-lucas.info,img/obama.jpg +Kayla Stanley,892-87-0655,01970,"3229 Gray Lakes +South Williechester, AK 42270",1989-04-04 02:35:32,1b:73:d2:1a:af:b1,tarahooper@gmail.com,img/obama.jpg +Lacey Brown,037-25-2719,72269,"68283 Alicia Islands +Adamfurt, ME 79993-1149",1923-05-21 06:48:03,b7:f8:91:e8:c2:15,csmith@yahoo.com,img/obama.jpg +Stacey Sanchez,436-88-5080,47863,"9500 Kramer Port +Amandatown, ND 25882",1957-10-20 14:28:52,a1:77:da:d8:96:74,jwalker@hotmail.com,img/obama.jpg +Jesse Castillo,888-61-3516,70652,"USS Parsons +FPO AE 03827",2008-09-05 05:52:53,a3:35:ca:46:c6:fb,ryancraig@jones.com,img/obama.jpg +Kristin Hernandez,007-02-1686,45979,"56848 Joseph Lock +East Leslie, VA 43126-5867",2000-06-27 03:31:28,41:6b:c1:b0:1c:75,fisherdarren@andrade.com,img/obama.jpg +Alex Mcmahon,604-62-6843,27629,"90824 Long Flat +Kirkberg, AK 29670-8407",1952-01-31 19:32:57,ad:7b:77:b8:6b:a9,jwilkins@gmail.com,img/obama.jpg +Amy Rodriguez,488-93-0679,31054,"9415 Kemp Haven +Wrightland, HI 63333",1983-10-15 20:14:02,95:15:f6:8d:50:89,wallacerussell@yahoo.com,img/obama.jpg +Hailey Mora,122-69-0584,29205,"89495 Torres Groves +East Michelefort, IN 03487-3028",1964-11-25 10:00:54,0a:57:28:f7:00:f2,contrerasjessica@meyer.com,img/obama.jpg +Jill Flynn,836-90-6216,92189,"32091 Catherine Meadow +Saraton, KS 87940-0740",1920-05-10 17:15:44,1b:2a:76:cf:3d:0e,mcintoshcarrie@gmail.com,img/obama.jpg +Beth Booker,208-22-9757,21440,"12335 Richard Expressway Apt. 837 +Conleytown, AR 19342",1986-01-29 21:49:25,d3:2b:d3:67:c8:b9,paullowery@montgomery-goodwin.com,img/obama.jpg +Randy Aguilar,867-75-8866,90035,"38740 Brandon View +South Brandi, DE 45810",1985-04-09 16:28:50,e1:bd:25:51:08:3f,lanedeanna@gmail.com,img/obama.jpg +Brad Brown,603-89-9710,86444,"951 Jones Falls Apt. 247 +East Ericland, MI 04123-8041",1983-10-22 04:44:02,e5:52:53:0b:1e:90,maycynthia@gmail.com,img/obama.jpg +Stephanie Brooks,157-23-6583,95507,"6651 Walker Spring +Melaniemouth, NV 19470-4686",1942-05-22 22:07:01,49:7d:e4:9b:2d:3e,afox@johnson.com,img/obama.jpg +Mrs. Heather Gonzalez,163-45-4671,54540,"825 Daniel Radial Apt. 738 +Port Brianside, IA 22080",2017-01-09 06:28:49,14:62:a0:f4:af:00,james27@hotmail.com,img/obama.jpg +Lori Figueroa,200-22-1692,18671,"4238 Max Heights +East Robert, VT 69356-7238",1980-06-18 18:23:35,34:57:5b:05:4e:6d,murphydavid@hogan.com,img/obama.jpg +Christopher Smith,521-66-3981,46971,"7216 Ortiz Lakes +Moorechester, HI 68131",1984-07-11 04:17:46,aa:f5:95:bd:29:ae,nwalker@yahoo.com,img/obama.jpg +Steve Mejia,787-96-5320,71036,"PSC 1846, Box 1755 +APO AA 50264",2007-12-27 22:46:16,56:39:79:32:7a:d0,monica33@massey-dorsey.net,img/obama.jpg +Elijah Hayes,419-51-0794,83842,"2399 Melissa Crossroad Suite 470 +Williamhaven, MH 92774-7521",1947-11-18 08:57:42,86:c7:70:00:6d:22,iferguson@hood.com,img/obama.jpg +Michael Rasmussen,805-28-3683,75171,"Unit 2710 Box 6240 +DPO AE 90347",1965-06-25 11:17:51,d6:2f:47:7f:4d:0a,jessicachambers@hammond.info,img/obama.jpg +Julie Woods,220-40-8521,86322,"832 Amanda Streets +Hickmanborough, OK 79646",2012-12-15 12:11:17,af:e7:8b:c0:bf:c4,chenrichard@yahoo.com,img/obama.jpg +Victor Elliott,142-42-3206,73571,"99387 Orozco Forest Suite 198 +Heathermouth, PR 94739",2004-10-25 16:45:55,38:ef:1d:ee:93:5a,aliu@gmail.com,img/obama.jpg +Samantha Beasley,495-91-0016,79507,"4022 Conrad Greens +Traceychester, CO 08299",1963-12-03 09:11:25,5a:59:08:44:1f:d3,jenniferjenkins@johns.com,img/obama.jpg +Jenna Maddox,003-50-6035,97145,"13203 Benjamin Route +North Jamesport, GA 73900-3960",2001-02-07 14:21:06,4b:e7:29:18:23:2e,scottsylvia@gmail.com,img/obama.jpg +Justin Fischer,892-80-1552,53140,"88401 Davis Ranch +Michellefurt, IL 47258",1939-06-21 00:29:53,71:7a:66:38:a4:3a,jeffrey77@gmail.com,img/obama.jpg +Steven Mathews,068-66-3123,07876,"566 Theresa Shoal Suite 220 +West Williamberg, SC 33939-7266",1987-02-28 19:25:26,5d:71:7c:5b:12:35,philip55@jones.com,img/obama.jpg +Jesse Bryant,007-49-6591,38447,"6660 Wilson Trafficway Suite 317 +Andrewview, WA 82235-2213",1989-01-05 05:42:21,75:fc:20:f3:07:4b,mark75@cobb.com,img/obama.jpg +Robert Horton,004-52-1857,44894,"152 Lutz Orchard +West Davidchester, IA 78274-3967",1964-09-20 20:38:53,35:08:3c:89:9c:01,michaelmoreno@gmail.com,img/obama.jpg +Kayla Hopkins,307-19-3462,01759,"8601 Megan Springs +Jamieland, GU 95094",1986-12-09 21:36:52,c8:6c:9f:99:64:68,joshuakrause@stephens.com,img/obama.jpg +Eric Oliver,498-87-5783,06262,"82804 Sweeney Oval Apt. 573 +Millerhaven, OR 12637-7257",1928-01-28 13:18:37,17:7d:3b:b4:b6:7f,nashnicholas@white-terrell.com,img/obama.jpg +Karen Powell,265-05-8382,02820,"83863 Todd Crescent Suite 823 +Port Tanyaborough, NM 07524",1965-02-06 08:33:10,77:ef:00:55:89:ae,nguyenjoseph@wright.com,img/obama.jpg +Melissa Walker,460-80-8942,17126,"0206 Frazier View Apt. 370 +East Paulaport, NM 21797-0839",1971-07-15 23:54:53,8b:e9:88:dc:8b:95,melanie31@gmail.com,img/obama.jpg +Ashley Strickland DVM,594-61-6060,57761,"494 Miller Greens Apt. 957 +New Gabrielleshire, IA 93382",2015-09-20 01:06:55,28:b8:12:87:f3:44,jquinn@williams-sanford.com,img/obama.jpg +Nicole White,816-97-0602,84305,"207 Edward Plaza +North William, DC 24110",1932-06-06 13:00:34,13:77:71:c0:dc:84,andrew38@elliott.biz,img/obama.jpg +David Rich,368-15-0070,63658,"04340 Renee Mountain Suite 648 +South Michael, PW 72991",1994-05-08 07:51:59,11:ac:c0:35:26:39,jeffrey88@gmail.com,img/obama.jpg +Jane Hart,759-97-0904,11503,"76723 Linda Via Apt. 661 +Allisonside, AL 15132",1977-10-10 03:34:44,41:0d:17:c7:56:3c,melissa02@hotmail.com,img/obama.jpg +Mr. Michael Thompson,375-52-2499,46057,"0335 James Lodge Suite 733 +Brooksstad, MI 23549",1933-08-17 18:14:50,85:5c:e6:22:20:d3,gregory58@yahoo.com,img/obama.jpg +Justin Valencia,089-61-1171,20171,"8813 Kim Locks +Turnermouth, TN 53606-6864",1993-01-12 13:51:34,04:44:55:dc:0a:52,thompsonkevin@hotmail.com,img/obama.jpg +Katherine Hill,692-37-1326,22108,"Unit 9520 Box 4503 +DPO AA 05131",2003-11-24 02:28:20,83:80:dd:d7:fd:2f,matthewpetersen@lee.net,img/obama.jpg +Taylor Henderson,575-96-2563,49549,"7167 Henson Hollow Apt. 752 +Port Zacharychester, NY 37182-6865",1954-07-21 09:48:26,ce:a7:ae:80:f5:4c,bryanwilliam@benitez.com,img/obama.jpg +Jessica Love,219-58-4368,24523,"4404 Cristina Manor Apt. 338 +North Linda, MS 48202-2366",2014-01-27 13:56:34,a7:9c:0f:ce:fa:a2,jennifersmith@alvarez.org,img/obama.jpg +Luis Brooks,385-38-5363,98669,"87155 Amber Greens +West Kayla, AS 18528-8726",1975-08-23 23:10:20,40:68:8e:07:cb:51,amoran@gmail.com,img/obama.jpg +David Murphy,891-57-5896,97898,"843 Murray Underpass +Farmerberg, CA 81678-7853",1949-05-05 11:20:53,6a:a5:c1:3c:df:c7,jessicawilliams@gmail.com,img/obama.jpg +Madison Cook,325-06-5091,74433,"67790 King Stravenue Apt. 628 +West Troyview, VI 96831",1960-10-03 20:46:27,bc:ef:b5:39:78:d6,millerkim@yahoo.com,img/obama.jpg +Marcus Banks,543-82-9794,16875,"59095 Richard Path Apt. 677 +Port Dakota, AS 11270-8100",1950-05-31 18:52:33,90:4d:66:f4:4e:37,stevenking@henderson.biz,img/obama.jpg +Jack Arnold,811-77-6405,72037,"106 Ashley Valley Suite 675 +Karimouth, GA 64157",2006-08-13 05:29:37,fe:c0:c8:99:a9:fb,harrisryan@hughes.org,img/obama.jpg +Diane Foster,211-22-0728,67752,"76174 Michael Heights +Stephenport, AZ 29048-4854",1971-05-23 21:56:53,05:1d:2d:8c:2a:b8,fherrera@mills.org,img/obama.jpg +Susan Hoffman MD,809-02-6092,69161,"13119 Weber Forges Suite 092 +Bethanyberg, MS 56550",1938-10-19 21:20:08,bc:fa:32:4e:71:64,tmoreno@yahoo.com,img/obama.jpg +Laura Williams,885-88-5017,89444,"574 Elizabeth Point +North James, MS 36106",1962-12-29 05:20:22,f1:56:76:36:25:38,eric10@hotmail.com,img/obama.jpg +Lisa Robinson,059-18-8824,04484,"2083 Emily Summit Suite 502 +New Marvinmouth, MI 12166",1925-07-12 03:40:45,a9:21:2e:3d:90:a6,umurphy@gmail.com,img/obama.jpg +Heather Monroe,509-76-7014,74226,"6632 Marvin Throughway Apt. 910 +South Michaelland, MP 89687",1955-02-16 05:57:08,a9:38:9d:e4:d2:56,zmullins@hotmail.com,img/obama.jpg +Jill Cannon,185-49-6110,75593,"PSC 4562, Box 0260 +APO AE 44671-7911",2007-12-03 06:09:23,84:01:b9:c0:e2:15,taylorthompson@hotmail.com,img/obama.jpg +Shane Lynch,260-49-9274,09056,"10976 Savannah Vista +North Christian, KY 75759",1963-03-15 02:55:53,38:2d:c5:09:46:3c,wwalker@ross.com,img/obama.jpg +Michelle Jones,692-88-9707,02540,"55532 Murphy Mills +Barbaraton, AK 72779",1927-04-25 15:42:23,4c:9e:bc:bb:6e:75,nicholasbaker@hotmail.com,img/obama.jpg +Haley Singleton,238-21-0251,13414,"607 Judith Mountain Suite 079 +West Tony, VI 13507",1990-01-02 06:23:34,87:02:31:5c:7d:a1,phillipschristina@williams.com,img/obama.jpg +Brooke Soto,081-54-2063,76039,"023 Davis Hills Suite 731 +Lake Danielville, WI 02026-9945",1987-11-26 16:21:28,71:3c:03:37:83:4f,uhudson@gmail.com,img/obama.jpg +Zachary Caldwell,239-40-5249,57905,"8971 Martinez Trafficway +Higginsmouth, IN 43289",1930-05-03 02:44:48,1f:08:46:64:a7:d1,deanna69@morales.com,img/obama.jpg +Jack Bell,511-05-3675,37261,"2124 Merritt Fall +Stephaniemouth, AS 82810",1972-08-07 18:11:08,05:77:74:c6:51:d0,chelseajennings@ross-graves.biz,img/obama.jpg +Logan Holden,578-88-9276,13746,"PSC 3650, Box 5487 +APO AA 42001-9193",1932-06-05 20:18:27,51:12:33:53:ae:58,perezamber@smith-ross.org,img/obama.jpg +Jasmine Scott,202-23-9961,93546,"79024 Schneider Cove +New Reginamouth, NY 65638",1944-03-14 17:11:15,38:ce:ef:37:dd:b4,chill@hotmail.com,img/obama.jpg +Heather Tran,198-01-3475,73653,"81273 Wagner Isle Apt. 304 +West Matthew, WV 24825",1946-05-25 05:42:29,a0:f3:f7:bc:c2:47,michelle69@reilly-simon.com,img/obama.jpg +Michael Alexander,117-42-1948,89962,"16910 Paula Burgs Apt. 345 +Audreyside, LA 57873",1918-07-25 23:26:50,94:cf:9b:52:9a:0f,jmitchell@yahoo.com,img/obama.jpg +Christopher Bennett,185-04-4187,08769,"35854 Alison Falls +Benjaminville, CT 23577",1976-10-30 00:10:39,74:a2:f5:63:45:10,clarkrebecca@gmail.com,img/obama.jpg +Jason Smith,560-57-7217,23072,"2803 Webster Forges +Mercadoville, VA 12297-3836",1936-07-25 01:50:21,fc:dd:e7:28:1f:d1,yphillips@yahoo.com,img/obama.jpg +Stacey White,394-43-7381,03941,"448 Gordon Tunnel Apt. 700 +New Vickiberg, OR 63713-0095",2012-11-27 14:57:54,2b:f6:fd:ea:ea:b7,jennifer60@hotmail.com,img/obama.jpg +Christopher Garrison,130-05-2672,10440,"40221 Dominic Fields Suite 408 +Williamsport, NH 90538",1998-01-23 03:40:31,21:90:e0:29:90:5e,leehuerta@hotmail.com,img/obama.jpg +Jenna Peterson,628-82-2701,76225,"209 Smith Flat +East Dana, HI 73684-3531",1995-04-18 13:37:15,b3:23:cd:5a:f4:df,perrytammy@gmail.com,img/obama.jpg +Stephanie Adams,100-63-4617,36362,"787 Christine Courts +Walkertown, NH 10109",1922-02-11 22:10:03,b5:a4:2f:92:0d:f7,alicia77@park.info,img/obama.jpg +Keith Clarke,090-42-9744,27939,"08871 William Drive +Jenniferfurt, NE 48633",1955-10-01 20:45:37,cc:18:b9:f3:0b:e4,rdiaz@yahoo.com,img/obama.jpg +Brian Martin,205-29-2589,03915,"7154 Martinez Hill +Lake Shari, WI 93054-4985",1983-12-22 12:14:41,7b:2c:27:d5:55:13,dustinhines@gmail.com,img/obama.jpg +Lisa Daugherty,860-53-9736,39868,"350 Jennifer Shore Apt. 935 +Lake Kendra, MO 01988-3693",1951-03-06 17:42:54,28:32:ef:e6:52:cf,morenojay@harvey-gray.com,img/obama.jpg +Tracy Webb,337-68-0389,52382,"0200 Priscilla Spurs +Lake Tylershire, WV 77022",1944-10-08 20:31:35,d3:87:45:23:57:84,robertanderson@gmail.com,img/obama.jpg +Katherine Hood,272-37-0655,32832,"31985 Glover Run Apt. 472 +Port Mitchellport, DC 80756-3626",1977-07-21 10:46:07,6b:1d:4c:d3:bb:2c,brandonmiller@williams-solomon.org,img/obama.jpg +Jason Briggs,217-71-5893,31628,"758 Rodriguez Field +Port Anthony, NV 06315",1971-04-26 14:32:03,72:da:77:4a:b0:bf,bradley51@collins.net,img/obama.jpg +Margaret Warner,126-70-0241,70485,"155 Brandi Islands Suite 814 +New Tammy, CT 32574-3372",1931-01-05 00:50:56,47:00:8f:ca:cf:8a,sonyareeves@yahoo.com,img/obama.jpg +Oscar Adams,383-82-2371,96286,"656 Sims Trafficway +South Brendanland, FM 49194-1418",1925-01-13 05:21:10,95:65:b8:7f:fe:73,qlozano@gmail.com,img/obama.jpg +Joan Moon,882-53-6113,89755,"4371 Reyes Rest Suite 346 +Port Kevinfort, ID 27540",2010-05-30 04:57:23,ad:c6:30:49:7e:23,taylorchad@hotmail.com,img/obama.jpg +Ian Lambert,224-23-1960,04694,"3027 Kevin Island Apt. 258 +Hoodmouth, NE 16177-1248",1983-09-03 16:41:38,15:8d:80:e7:73:6d,ssmith@yahoo.com,img/obama.jpg +Carrie Frye,308-11-8799,10889,"PSC 6434, Box 8101 +APO AE 46145-6008",1987-02-03 09:05:34,1f:13:cd:3b:78:c7,nbryan@gmail.com,img/obama.jpg +Maria Morgan,367-61-6069,08290,"2956 Hines Freeway +Murrayport, PA 35144",1930-03-10 10:46:03,c8:7d:c1:55:71:a2,mruiz@myers-nichols.com,img/obama.jpg +Diane Wang,073-31-7181,01690,"5413 Jessica Curve Apt. 038 +Sextonstad, GU 09981",1931-07-16 06:20:19,ab:1e:30:a1:75:be,charles92@anderson.com,img/obama.jpg +Ana Figueroa,568-06-2893,48795,"861 Cardenas Trace Suite 326 +East Johnny, MO 43339",1973-03-31 10:22:07,9a:77:9d:a4:79:e3,ppittman@hotmail.com,img/obama.jpg +Daniel Edwards,440-20-1177,37384,"472 Haley Streets Suite 892 +Jonathanside, NY 44379-9095",2014-12-04 13:55:15,fe:76:17:00:f9:9c,tuckergrant@yahoo.com,img/obama.jpg +Michael Hayden,213-32-1906,48126,"03680 Matthew Harbors +North Larryview, AL 60778",1997-03-03 23:35:51,e0:81:ac:8f:30:68,lynn61@gmail.com,img/obama.jpg +Amber Diaz,829-11-5513,64698,"75528 Jessica Roads +Lake Teresafort, TN 42947-7430",1918-11-15 21:42:41,89:f9:eb:7b:dd:1e,brianscott@gibson.com,img/obama.jpg +William Hernandez,095-85-0351,50955,"490 Tammy Ranch Suite 104 +Williamsonton, AK 92450",2013-07-16 19:38:50,2f:bb:29:b2:cf:bb,lopezjoseph@le.com,img/obama.jpg +Brett Kelly,590-31-2494,30465,"653 Deborah Flat +Vincentshire, GU 38860-7815",2013-01-12 01:05:38,2b:45:99:1c:c5:16,jacqueline48@peterson-murphy.com,img/obama.jpg +Tina Mitchell,516-25-3733,92047,"5433 Kevin Pine +Edwardsport, OH 16371-5493",2012-04-04 08:54:57,4d:bd:73:85:00:22,sherrysalinas@taylor.net,img/obama.jpg +Patrick Brooks,409-98-8472,75391,"682 Wood Parkway +South Mathew, TN 92411",1923-06-19 12:25:51,a0:84:46:63:8c:84,thomasjoseph@gmail.com,img/obama.jpg +Brian Montes,215-38-0006,09668,"21555 Kyle Ville +Port Leonard, VT 02886",1953-11-07 22:58:18,9a:3e:1c:c4:16:1c,qcherry@hernandez.net,img/obama.jpg +Mrs. Erika Williams,326-25-8858,39516,"84201 Nelson Brooks Apt. 829 +Bellside, MI 25354",2005-10-24 23:07:42,0c:7f:d3:fe:12:fa,amyharris@yahoo.com,img/obama.jpg +Gabriella Wright,195-83-4884,99474,"0119 John Heights +Johnburgh, IL 68459-8632",1967-03-03 09:47:20,dd:09:73:0d:35:03,grant90@yahoo.com,img/obama.jpg +Angela Ewing,005-65-9145,38300,"26339 Linda Place +Briantown, LA 48492-4187",1931-03-03 05:22:11,2b:81:42:c1:96:da,nicholasmathews@peterson.com,img/obama.jpg +Elaine Watson,048-14-0773,29413,"997 Stephanie Center +East Ryan, SC 96507",1974-01-28 02:20:31,19:e8:38:3d:7b:bc,vgray@bishop-gonzalez.com,img/obama.jpg +Teresa Lane,280-40-6431,91893,"USS Wood +FPO AE 97866-8115",1949-05-01 09:57:19,0a:6e:76:6e:60:7c,kingdwayne@klein-mendoza.org,img/obama.jpg +Holly Henderson,872-96-9282,17956,"PSC 1911, Box 1619 +APO AA 61402-6115",1975-12-08 17:23:59,0c:de:c3:2e:22:ba,stephanie58@randolph-lee.com,img/obama.jpg +John Smith,384-94-7935,59502,"54017 Hernandez Highway Apt. 504 +Jeffreystad, AK 70463",1954-08-10 07:43:22,a0:b6:3a:65:4b:e5,jacquelinelara@nelson.com,img/obama.jpg +Cassie Stokes,128-45-1514,91493,"PSC 7812, Box 5649 +APO AE 10233",1973-09-20 23:25:57,48:4d:3b:ed:15:fa,brian16@andrews.com,img/obama.jpg +John Bell,312-01-1696,21310,"40868 Angela Forest Suite 060 +Kevinbury, UT 68284",1992-06-05 10:37:18,d2:18:8e:80:34:a0,katherine60@fisher.com,img/obama.jpg +John Flores Jr.,016-15-6537,42516,"669 Christian Cape +South James, WY 06451",1941-12-21 16:08:44,d0:24:01:f2:e2:a2,iwagner@gmail.com,img/obama.jpg +Emily Estrada,127-69-5533,11175,"0360 Gray Course Apt. 495 +South Johnathan, CO 63502",1980-06-15 08:22:01,1a:5d:8e:68:10:3c,kelleyangela@gmail.com,img/obama.jpg +Kayla Acosta DVM,087-92-5766,26892,"77656 Norman Keys +Nguyenborough, AS 27054",1934-02-02 23:12:31,05:b3:33:38:4e:5f,christian45@yahoo.com,img/obama.jpg +Mary Stafford,185-01-9768,40234,"5285 Joanna Freeway +New Kellie, WA 31553",1945-06-20 22:03:49,ce:b9:ee:9d:fa:3b,thomas12@hotmail.com,img/obama.jpg +Yolanda Clark,530-95-6976,93282,"1844 White Fork Suite 881 +Virginiaborough, ND 69366-9915",1993-01-27 13:34:07,cf:0f:0f:6b:36:a4,christopher48@hotmail.com,img/obama.jpg +Kelly Kline,733-89-2839,73200,"USCGC Wagner +FPO AP 51793-7729",1917-10-01 09:47:13,af:a3:7b:3a:72:db,sarah79@gmail.com,img/obama.jpg +Brandon Ford,627-79-2204,07549,"PSC 0681, Box 8263 +APO AA 63097-0338",1932-03-31 19:59:50,39:8c:df:49:60:ee,david24@yahoo.com,img/obama.jpg +Philip Robinson,328-40-9524,43475,"26227 Jessica Gardens Suite 004 +Laurenchester, PA 76340",1945-11-14 13:10:29,27:f2:95:21:9a:4e,todd02@yoder.org,img/obama.jpg +Adam Gilbert Jr.,377-42-8060,52356,"777 Crawford Gardens +Williamsonborough, VA 05949",1928-08-03 12:24:08,ca:31:3c:1e:4e:19,patricia21@carr-page.com,img/obama.jpg +Dana Williams,499-62-9295,91133,"PSC 5635, Box 9109 +APO AP 44087",1993-05-29 10:48:51,cb:fb:5a:db:cd:59,ypoole@wilkinson.com,img/obama.jpg +James Johnson,327-27-4894,34844,"8834 Evans Highway +Rogerland, KS 30724",1925-06-13 18:20:12,10:49:4e:71:4e:dd,wilsonwanda@yahoo.com,img/obama.jpg +Carlos Perry,704-10-3125,87712,"943 Michael Squares Suite 447 +Lake Brandon, SD 93936",1941-05-18 22:19:19,81:bc:d6:64:53:77,lisa61@gmail.com,img/obama.jpg +Dustin Vargas,691-77-7398,28905,"1235 Mark Hills Apt. 785 +Simpsontown, FL 23695",1941-07-01 13:35:00,f1:1a:fe:b8:77:51,powersjustin@jones.com,img/obama.jpg +Darlene Rivers,815-13-2550,01320,"Unit 3526 Box 9434 +DPO AE 79633-2608",1971-10-12 10:50:29,a4:21:de:9e:e8:2a,davisdonna@hotmail.com,img/obama.jpg +Ryan Butler,496-41-2046,16101,"93064 Judy Springs Apt. 843 +North Thomas, SC 39999-5972",1969-12-09 10:07:16,35:3f:27:c1:89:4a,shelly20@hotmail.com,img/obama.jpg +Justin Morrison Jr.,886-48-5748,15459,"07440 Michael Roads Suite 201 +Jenkinsshire, NJ 59850",1942-03-23 04:57:03,46:69:20:88:4a:c6,hoffmanpatricia@hotmail.com,img/obama.jpg +Danielle Merritt,385-62-5665,92173,"5366 Moyer Throughway Suite 595 +Sellersstad, GA 44230-9829",2013-08-11 23:52:33,69:80:cd:c1:b5:39,victoria24@gmail.com,img/obama.jpg +Carrie Matthews,625-97-7141,49570,"918 Simon Green Apt. 154 +Heidistad, KY 43453-4434",1995-04-05 02:31:34,25:95:cd:85:c8:10,gadams@hotmail.com,img/obama.jpg +Jennifer Williams,735-68-3149,68552,"96570 Molina Point +Rochachester, OR 93000",1920-09-07 07:35:52,16:e4:fc:71:fe:25,hdavis@yahoo.com,img/obama.jpg +Jennifer Anderson,147-01-9746,35997,"933 Desiree Field Apt. 955 +North Christopher, DC 41813",1984-07-22 23:32:20,91:85:05:03:4f:e2,sean04@hotmail.com,img/obama.jpg +Lisa Rivas,320-95-2951,77860,"5614 Reyes Trace +East Angela, DC 80531",1957-08-30 20:23:18,5f:76:a9:8e:0f:c8,susancunningham@stokes.com,img/obama.jpg +Debra Knight,515-81-5508,69243,"58439 Dennis Unions +Simmonsmouth, SC 19612-1181",1954-11-23 06:44:40,07:3c:ac:de:5f:4d,amber72@johnson.com,img/obama.jpg +Paul Brown,248-30-7871,62845,"83553 Michelle Lake +North Donnaland, GU 94202-7692",2005-02-27 22:25:52,db:b1:2e:aa:20:0e,vbooker@yahoo.com,img/obama.jpg +Mathew Allen,037-03-2100,37145,"82955 Taylor Cape +North Ronald, NY 56600",1933-08-14 05:13:10,c0:2c:be:97:15:7b,daniel34@yahoo.com,img/obama.jpg +Thomas Miller,559-62-9856,81033,"3062 Sanchez Unions +North Amyville, AS 19768",2000-10-21 15:46:11,e3:62:c2:ec:d8:56,hornjack@russell.biz,img/obama.jpg +Michael Wu,724-54-3975,58898,"Unit 3631 Box 6746 +DPO AP 30466",2004-09-28 00:00:08,a3:43:3f:a7:68:7c,emilysellers@caldwell.info,img/obama.jpg +Ana Mora,838-97-3946,43172,"51995 Mary Square +Lake Taylorside, IA 92972",1991-09-18 15:48:16,c7:35:89:e9:2a:75,christopher41@walker-rogers.com,img/obama.jpg +Kyle Mora,130-09-4690,60800,"40188 Patricia Junction Suite 025 +North Matthew, VA 33242",1925-06-04 19:28:16,ee:4e:35:f2:87:a3,harold00@gmail.com,img/obama.jpg +Heidi Smith,772-47-8725,31720,"0681 Mary Dam Suite 915 +Port Elizabeth, VI 90627-4363",1952-06-28 03:02:29,d3:d0:ca:2b:c2:8e,colemanrobert@parker.org,img/obama.jpg +April Harvey,317-78-4948,02617,"99799 Robert Mountain Apt. 165 +New Lauraport, DC 61311-6810",2002-02-02 06:32:29,db:24:bc:ad:4d:8d,johnmartin@deleon.org,img/obama.jpg +Erica Anderson,300-90-2935,64868,"717 Julie Port +Michaelshire, ID 02387",1930-01-31 18:44:31,8c:a2:39:24:39:05,lwallace@smith.info,img/obama.jpg +Jennifer Davis,481-33-2072,57794,"97311 Moran Circles Apt. 523 +Pughtown, MP 94382-6499",1963-06-03 14:10:16,c0:8f:1a:a3:13:e4,ymercado@hotmail.com,img/obama.jpg +Joshua Hooper,744-69-3664,76502,"7088 Gregory Route +New Kevinbury, AR 59857-3301",1946-03-14 21:30:56,80:10:fc:74:d1:85,morrowlisa@jones-lewis.com,img/obama.jpg +Daryl Moore,758-81-2328,28646,"9217 Sarah Locks Apt. 285 +Garytown, RI 19382-4714",1954-11-09 22:03:27,41:4e:b6:8e:f4:bd,lisa43@hotmail.com,img/obama.jpg +Amy Bender,370-09-8321,73336,"512 Porter Inlet +Kurtside, AK 99285",2008-09-21 23:39:06,54:78:16:b0:8e:38,xsmith@hotmail.com,img/obama.jpg +Mrs. Courtney Johnson MD,475-18-7849,09308,"05757 Alexandra Skyway Apt. 957 +Calvinhaven, PR 48537",2007-11-22 17:11:33,7b:5c:53:c5:5c:31,palmertyler@gmail.com,img/obama.jpg +James Thomas,095-03-9889,39491,"PSC 8809, Box 9047 +APO AE 12658",1938-09-04 12:54:05,e3:3b:ca:7c:04:7f,justin89@gmail.com,img/obama.jpg +Nicholas Boyd,291-87-5101,79818,"739 Taylor Knoll Apt. 528 +Snowbury, KY 97140-1047",1927-09-04 10:41:23,31:72:71:f2:85:bd,nbeard@white.info,img/obama.jpg +Caleb Casey,724-58-4098,84325,"973 Mathis Rapids Apt. 310 +Loriland, KS 59420-5232",1961-09-10 09:57:11,d8:34:43:7b:50:e4,uporter@flynn.org,img/obama.jpg +Erik Jones,588-54-3107,00536,"750 Jennifer Creek Suite 785 +Gailton, MD 65640-3435",1975-04-25 06:36:48,04:ba:03:cb:fe:93,stoneterri@barrett.com,img/obama.jpg +Melissa Francis,154-93-3520,09983,"440 Glenn Corner +South Douglasland, AL 16607",1920-11-07 14:28:47,1f:c1:0d:64:9b:ff,drakelaura@hotmail.com,img/obama.jpg +Robert Pacheco,211-85-5264,17244,"26160 Stephanie Street +New Jennifer, WV 91541-0129",1949-07-26 11:23:12,48:21:92:ea:02:34,drewgriffin@hotmail.com,img/obama.jpg +Robert Bowman,657-84-3705,41390,"3597 Black River Suite 513 +South Shanemouth, GA 75310-4249",1977-06-27 16:18:58,fe:58:07:c4:1e:9b,kleinamanda@jimenez.com,img/obama.jpg +Veronica Collins,700-65-7889,53892,"95534 Kimberly Bypass +West Andrea, AR 90104-8204",1943-10-10 20:22:23,93:a4:41:15:1a:da,severett@hotmail.com,img/obama.jpg +Jeffery Massey,122-33-6814,77836,"96701 Miles Stravenue +Joneston, NE 27455",1949-09-16 06:06:26,ac:da:e7:37:82:b9,dduran@carr-walker.com,img/obama.jpg +Kevin Schultz,585-54-3008,22047,"5958 James Junction +North Sharon, IL 07511",1942-05-02 15:52:15,a2:72:ab:2d:3b:ab,ronaldmccormick@fritz-jones.net,img/obama.jpg +Jennifer King,115-38-6464,55211,"641 Sanchez Neck Apt. 147 +Mcdonaldchester, OK 12947",1930-10-21 05:07:57,38:4c:6b:76:54:3d,riceanthony@cain.net,img/obama.jpg +Kyle Ryan,418-38-1459,55491,"321 Walsh Lane +Port Tylermouth, FM 27730-6713",1987-07-10 19:27:20,b3:15:4b:c5:8f:64,lscott@gmail.com,img/obama.jpg +Valerie Osborn,829-53-3473,06852,"5739 Bennett Village +Brownport, DC 54176",1981-09-08 16:18:49,ac:34:94:87:38:f2,zacharyyoung@edwards.info,img/obama.jpg +Jason Scott,728-35-7523,74250,"1863 Mccarty Union Apt. 321 +Burnston, OH 58575-7126",2010-10-07 20:17:22,76:ab:f9:fe:10:3b,amberrasmussen@adams.com,img/obama.jpg +Angela Daniels,212-29-2272,98617,"5910 Morgan Locks +Juarezside, AR 25532",1961-02-27 18:19:03,a4:70:8d:00:2e:2b,benjaminkristina@martin.biz,img/obama.jpg +Jacob Hall,583-82-2883,75894,"329 Gilbert Glens +Lake Lindsey, IL 88326-8763",2015-01-21 05:51:51,0d:21:8f:94:47:f6,acarpenter@yahoo.com,img/obama.jpg +Jason Vance,276-43-7935,90484,"368 Mendoza Center Apt. 917 +Samuelport, MA 05281",1933-07-29 13:08:30,42:bc:ee:f4:e7:d5,tiffany90@moreno.com,img/obama.jpg +Mr. Calvin Burns Jr.,385-77-4531,50614,"7891 Hall Oval Suite 350 +North Shane, NH 98840-4654",2003-10-25 22:37:12,95:89:ff:3c:93:b2,qsmith@gray-french.org,img/obama.jpg +Raymond Day,842-98-2190,60086,"374 Sandra Station +East Travis, AR 23903-3089",1977-03-27 06:42:15,0d:58:54:39:63:08,margaret69@mitchell.net,img/obama.jpg +William Robinson,147-54-7695,49337,"92742 Eric Ridge Apt. 326 +West Ashleybury, MO 50574",1935-03-17 09:24:24,34:fd:e4:b9:37:e2,franklincheryl@alvarado.com,img/obama.jpg +Todd Hull,464-60-6433,04321,"235 Sarah Causeway +Lake Sarahville, FM 20716",1934-03-27 06:27:56,15:ca:c2:a5:7e:3c,joshua96@nichols.net,img/obama.jpg +Shannon Villarreal,213-37-2743,44933,"43962 Joel Tunnel +North Angelicamouth, NE 36785-5108",1992-09-30 09:34:58,44:ed:2d:61:49:6d,rcampbell@hester.net,img/obama.jpg +Scott Estes,218-75-2062,71790,"2242 Lynn Drives Suite 549 +South Valerie, OH 17458-5611",2003-07-14 06:05:32,7b:78:f4:01:0d:7f,jmartinez@cantu.com,img/obama.jpg +Toni Barr,429-45-4053,39305,"5665 Mary Vista Suite 479 +Brownland, PR 34014",1940-07-01 04:39:46,f1:40:81:f4:4b:0f,cathy29@yahoo.com,img/obama.jpg +Mitchell Hayden,670-63-0686,43922,"46192 Smith Burgs Apt. 944 +East Pamela, MT 26204",1966-05-08 19:46:56,e4:15:92:eb:10:c4,russellrobin@aguilar.biz,img/obama.jpg +Jeffrey Burns,248-05-4007,21673,"048 Thomas Locks Suite 472 +Marystad, AR 84417",1938-03-06 07:43:04,ef:dd:b8:1d:7c:a4,haley95@yahoo.com,img/obama.jpg +Marie Moran,799-02-9684,98328,"13700 Cole Court +Robertsburgh, MS 85328",1957-01-13 08:35:47,8d:63:d2:dd:80:e7,susanpadilla@yahoo.com,img/obama.jpg +Evelyn Brown,700-84-7265,27093,"496 Melissa Cliff +New Gabriellafurt, SD 20588",1923-08-08 08:32:13,ef:74:1d:05:5e:54,xwatkins@leonard-carpenter.org,img/obama.jpg +Travis Nelson,298-24-5969,72460,"87869 Jamie Key Suite 490 +Williamport, MT 42082-6528",1917-09-18 06:13:57,4a:ec:9d:93:b8:00,elizabethwatson@gutierrez-anderson.com,img/obama.jpg +Jessica Huynh,683-52-2327,08835,"4594 Mann Via +Kingport, MO 72663",2010-07-04 20:58:09,47:01:80:e6:cc:f8,alvarezsherry@simmons.com,img/obama.jpg +Jacob Clark,561-80-8109,33362,"39755 James Avenue Apt. 089 +North Benjamin, PW 57509-4941",1966-01-13 06:46:55,d0:a2:cf:ed:88:bc,vicki05@gmail.com,img/obama.jpg +Jessica Hernandez,629-60-7862,51567,"967 Brown Squares Suite 300 +Whitefort, ME 16596-3105",2015-05-02 15:00:30,4c:d0:74:0c:4e:06,hamiltontommy@caldwell.com,img/obama.jpg +Richard Norris,504-37-3568,72510,"32915 Zimmerman Estates +West Javier, MH 64170-1142",1976-09-23 19:00:31,9d:64:1e:be:a9:8e,shawn79@yahoo.com,img/obama.jpg +Carolyn Simpson,631-77-1178,29248,"75707 Tracy Parks Apt. 079 +Bradleybury, MT 14980-5785",2013-10-29 18:40:55,e6:bb:b1:76:a2:96,taylormitchell@gmail.com,img/obama.jpg +Joseph Cannon,082-52-8261,71206,"7260 Porter Centers Suite 402 +Michaelfort, FL 91693-6465",2001-04-24 13:28:26,21:76:82:47:19:14,beardsara@gmail.com,img/obama.jpg +Lance Scott,802-47-1195,52731,"158 Grant Rapids +South Sherryfort, AK 41145-4548",1965-11-22 00:54:30,b1:50:24:b9:ce:63,saraking@mendoza.com,img/obama.jpg +Bruce Schultz,841-76-7731,41075,"411 Kennedy Trail Suite 704 +Turnerchester, OH 63275-3794",2015-10-02 07:18:37,b4:1f:28:a2:90:39,isullivan@gmail.com,img/obama.jpg +Melissa George,732-89-0609,65540,"044 Stephen Neck Suite 901 +West Ashley, GA 83171-6003",1936-11-18 09:15:01,e2:48:6b:e3:65:4e,taylormartinez@allen.com,img/obama.jpg +Mercedes Perry,583-81-2521,47483,"3238 Sheila Pine +Richardland, CO 09162",1984-11-05 22:33:45,2c:55:6b:bc:c1:a9,johnandrews@yahoo.com,img/obama.jpg +Mr. Brent Wood MD,887-89-4523,71427,"1066 Linda Parks Suite 067 +Lake Kristopher, MT 23791-9872",1978-03-21 13:27:59,66:ac:ae:66:f0:5c,cummingswayne@yahoo.com,img/obama.jpg +Jason Gonzalez,423-09-9239,42420,"951 Shannon Ford Suite 680 +West William, KS 46719",1982-12-26 07:10:36,4a:70:f6:79:f3:ca,martinezbradley@gmail.com,img/obama.jpg +Nicholas Young,466-09-0693,98986,"05587 Phelps Oval +Wardland, AZ 34237-7628",1974-04-04 04:20:31,11:4c:74:b1:8d:01,parksgeorge@hotmail.com,img/obama.jpg +Ashley Moore,415-80-2552,29528,"99385 Le Causeway +Fosterborough, AK 48014",2003-04-12 11:15:01,de:c0:97:ca:32:8e,josephpena@hotmail.com,img/obama.jpg +Ann Jimenez,116-69-4330,53768,"895 Russell Flats +Lake Davidside, MP 21096",1921-03-25 17:49:28,c1:bf:04:c9:b3:e7,jenkinsjoshua@yahoo.com,img/obama.jpg +Carrie Wright,720-87-4414,01463,"2812 Heather Island +Bryanstad, AR 72684-1417",1949-01-24 08:30:31,d0:48:ca:23:92:fa,knightkatie@yahoo.com,img/obama.jpg +Kyle Bridges,243-59-5122,72767,"926 Watson Centers +Hunterstad, MH 41457-1141",1981-07-17 12:55:13,29:50:e0:7d:92:74,waynepena@gmail.com,img/obama.jpg +Sherri Mendoza,310-97-0388,06630,"8229 Mark Inlet Apt. 054 +Lake Georgefurt, AK 72417",1985-06-21 15:13:57,1d:7a:86:b1:80:2e,angelaparker@caldwell-larson.info,img/obama.jpg +Elizabeth Howell,374-95-0630,17935,"05060 Reid Summit +Turnerfurt, UT 50315",1951-01-09 03:09:26,af:f8:89:10:20:d5,fgomez@gmail.com,img/obama.jpg +Fernando Campbell,596-23-9692,12661,"80207 Ryan Flats +Lesterville, WV 87960",2004-01-29 00:43:58,3f:ca:14:6c:90:c5,kelli37@hodge.com,img/obama.jpg +Chad Foley,827-96-3319,49739,"017 Bethany Walks +Timothytown, OK 08779-4198",1968-08-28 14:37:46,ac:d1:26:79:bc:24,maxwellerin@yahoo.com,img/obama.jpg +Wayne Dixon,025-79-2509,87977,"375 Weaver Lodge +North Jeremyfurt, IN 23579",2006-08-19 03:34:48,bf:62:f0:6b:96:9e,faulknerandrea@yahoo.com,img/obama.jpg +Michelle Brown,359-68-5023,44866,"16259 Tara Ferry Suite 282 +Masonhaven, FL 70999-7251",1987-06-12 16:57:36,36:a0:5d:d9:07:21,katherine14@rivas.org,img/obama.jpg +Samantha Thomas,481-47-2032,45208,"36971 Lewis Forge Apt. 256 +West Wayne, AZ 00631",1971-09-15 12:11:04,24:de:1c:40:d7:48,john54@patterson.com,img/obama.jpg +Stephanie Kemp,790-04-9653,97265,"6243 Cochran Ramp +West Jessicaborough, IN 42355-4937",1958-03-30 07:13:31,e8:bc:20:7d:1e:12,charlesturner@romero-alvarez.com,img/obama.jpg +James Mccormick,742-94-5123,28070,"71145 Burton Stream +Hatfieldfurt, NM 56321-3852",1993-07-05 18:29:36,01:a1:6a:a7:8e:04,jeremy92@gmail.com,img/obama.jpg +Stephen Miller,124-99-7885,98341,"37163 Graham Expressway Apt. 888 +Brownton, OK 51034",1976-02-09 02:41:43,0e:9e:50:b0:cf:33,javierhart@hotmail.com,img/obama.jpg +Timothy Crosby,520-98-9630,44745,"USNV Hodge +FPO AE 89459",1979-04-25 10:09:11,5d:69:2c:c2:19:a7,grantadam@reeves.com,img/obama.jpg +Angela Thompson,486-54-5393,88006,"533 Andrew Drives Apt. 744 +North Richard, AK 39792-4126",2013-05-04 19:38:57,f2:83:f1:01:23:ff,thomas85@gmail.com,img/obama.jpg +Zachary Lambert,658-31-6006,84422,"91708 Elizabeth Knolls +New Philipport, AZ 21838",1933-12-31 21:42:09,b6:e0:d8:f3:e6:b9,simmonsrobert@yahoo.com,img/obama.jpg +Melissa Walker,068-44-6046,09746,"USNV Yang +FPO AE 15885-6133",1950-02-21 06:16:27,dc:fa:a3:24:82:04,hardingbrian@gmail.com,img/obama.jpg +Katelyn Long,717-51-1128,09913,"047 Hood Bridge Suite 424 +Samuelchester, WI 71347-0666",1942-08-20 23:33:26,12:5c:d0:7e:a0:6e,dennissusan@yahoo.com,img/obama.jpg +Holly Rich,864-76-9504,26726,"327 Mckinney Fords +East Katrina, OH 06058-2040",1982-08-30 03:09:33,d6:55:4f:c5:83:04,bradley96@yahoo.com,img/obama.jpg +Victoria Perez MD,646-66-9507,75654,"265 White Court Suite 083 +Donaldburgh, MD 96875-3160",1929-02-27 23:41:39,03:3d:c2:bc:96:4c,carriewagner@nichols-allen.com,img/obama.jpg +Elizabeth Swanson,557-15-6321,95941,"413 Thomas Mountain +West Tami, MS 81341",2013-02-07 08:02:36,2e:d8:29:2f:63:38,ysullivan@harrison-henderson.com,img/obama.jpg +Rachel Thompson,299-09-1772,07831,"9380 Megan Via Apt. 652 +Mollyland, WI 59333",1938-05-05 00:57:20,88:6b:11:ec:e1:ea,monicabryant@hotmail.com,img/obama.jpg +Sarah Walter,092-50-2064,39755,"61181 Fernandez Ford +Lake Alexis, MH 96753",1974-07-27 20:15:56,dc:c7:bd:e0:33:37,mary08@yahoo.com,img/obama.jpg +Jordan Weaver,892-89-3616,30933,"69730 Bradley Track +Grossside, SC 28690",1992-01-02 20:42:32,f9:76:b7:35:11:34,kbrown@yahoo.com,img/obama.jpg +Dawn Decker,170-19-2537,80452,"49523 Cameron Brooks Suite 148 +East Donna, MN 79287-9222",1948-09-14 16:59:21,ec:d6:8e:43:3e:86,joneseric@flores.com,img/obama.jpg +Tracy Garrett,182-49-8778,32741,"1079 Matthew Drives Suite 436 +Gonzalezport, PW 13617-3573",1943-05-08 06:49:22,7f:5f:8a:88:37:e8,sweeks@cook.net,img/obama.jpg +Aaron Soto,882-45-3696,38866,"Unit 7011 Box 3070 +DPO AE 18452",1976-02-12 22:05:30,6f:2a:a2:c4:d0:2c,powelljacob@garcia.info,img/obama.jpg +Wendy Hernandez,483-38-1600,25736,"2685 Rodriguez Knoll +Port Michelleport, CT 42487-8950",1939-04-04 01:01:22,0a:96:28:16:77:a6,lucasdelacruz@trujillo-elliott.org,img/obama.jpg +Vanessa Curtis,807-72-3914,80338,"8410 Munoz Vista +Port Elizabeth, PA 05915",2003-10-31 21:02:08,86:47:f2:14:24:04,riddlemonica@hotmail.com,img/obama.jpg +Vanessa Rivera,337-19-8743,62714,"08284 Glen Radial +South Howard, NM 32432",1926-09-30 00:13:58,07:19:17:60:bf:af,donaldoconnell@greene.com,img/obama.jpg +Alexandria Carpenter,440-45-1513,45447,"55147 Martin Walk Suite 773 +Lake Charles, TN 00413",1946-08-01 08:14:17,fd:7a:e7:f1:5d:0c,alanhill@williams.info,img/obama.jpg +Shelby Hale,026-70-5965,68908,"868 Bauer Circles +New Rogerbury, MN 33182",1928-11-15 13:31:43,3b:ca:4f:20:a9:93,gyoung@garcia-turner.com,img/obama.jpg +Joshua Fisher,292-51-2422,65977,"02023 Ryan Run Apt. 997 +Lake Robert, MD 79799",1995-01-06 20:02:43,37:19:35:f3:8c:76,wilsonjason@gmail.com,img/obama.jpg +Paul Beltran,492-36-5277,47179,"7992 Lindsey Junction Suite 882 +North Tracymouth, OK 45730-6821",1941-10-10 06:55:44,9c:eb:5d:37:fc:03,fsimon@gmail.com,img/obama.jpg +Amanda Sheppard,881-68-4241,89187,"36501 Wu Route Apt. 311 +Evanmouth, PW 53540",1991-08-30 06:36:42,f1:f4:83:b5:13:34,gvance@yahoo.com,img/obama.jpg +Michele Lopez,039-15-0654,97099,"PSC 2505, Box 0519 +APO AP 72788-4796",1985-07-12 07:34:51,2b:af:63:59:06:b5,mccarthyjames@gmail.com,img/obama.jpg +James Bell,181-26-3895,54728,"204 Robert Glen Suite 088 +Lake Linda, IL 34712",2011-02-03 12:18:51,c1:32:8a:ea:0e:ce,chadwebb@gmail.com,img/obama.jpg +Zachary Hughes,815-12-1844,04743,"15560 Melissa Bypass +Boydchester, OR 57735-9555",2010-10-01 07:06:13,77:02:9a:b5:f1:9e,patricia74@hotmail.com,img/obama.jpg +Carla Nelson,452-36-1952,83030,"14369 Koch Valleys Apt. 897 +West Lisa, TN 01710-4418",1990-07-13 07:07:38,a1:bd:e1:03:9a:26,carly37@thompson.com,img/obama.jpg +Don Walsh,322-92-6443,34138,"605 Jared Centers Suite 884 +Romerofort, KS 53858",1980-10-13 09:54:09,a1:2e:07:ec:44:e4,fcabrera@young-villegas.org,img/obama.jpg +Stephen Rice,691-04-6904,74340,"648 John Falls +Gambleside, AK 07662-8236",1994-12-17 00:30:40,22:dc:3a:6f:ea:be,andrewhartman@gmail.com,img/obama.jpg +Brittany Ross,258-80-2466,05495,"Unit 0746 Box 1001 +DPO AP 71681-5486",1947-07-21 13:40:40,02:43:ba:8c:93:63,imann@graham-morris.com,img/obama.jpg +Deborah Love,319-81-7871,68054,"428 Kidd Mountain +Melissaview, AK 37063",1963-09-01 12:29:08,ae:c0:ca:36:0d:b1,robert71@yahoo.com,img/obama.jpg +Fred Sanchez,611-97-6032,20697,"8048 Adam Islands +East Christian, NJ 27577-6395",1985-11-14 05:41:11,2c:5c:90:c0:42:aa,michelle61@bishop-goodman.net,img/obama.jpg +Gregory Parker,146-51-3225,87963,"PSC 5710, Box 5421 +APO AP 01645-3150",2008-03-08 03:14:35,40:af:b7:b1:00:53,keithgates@rodriguez-malone.com,img/obama.jpg +Theresa Garza,048-58-9215,42977,"1251 Bethany Station Suite 533 +Christopherborough, WY 33021-9175",2007-08-25 13:09:35,c2:22:38:6b:de:fd,bcaldwell@yahoo.com,img/obama.jpg +Andrew Joyce,026-92-1433,66928,"5829 Jesus Burg Apt. 539 +Port Lisa, NV 79540-2602",1953-01-16 07:44:53,58:02:15:ef:b0:9d,leonnathan@hotmail.com,img/obama.jpg +Cassandra Smith,667-70-2397,98508,"991 Frank Mount +East Sharonstad, CO 58428-2391",1917-06-16 21:59:44,0b:27:24:50:f7:44,sandra26@hotmail.com,img/obama.jpg +Barbara Ali,332-05-3605,89452,"832 Beverly Shoals +South Erica, GU 49709",1983-04-22 12:37:30,a2:e1:fc:d9:ae:59,raymond89@mendoza.com,img/obama.jpg +Donna Robinson,346-77-9368,47147,"17962 Brooke Avenue Apt. 255 +Guzmanmouth, MO 06259-8336",1975-03-10 23:11:41,60:b7:68:06:1a:f8,richcolton@bolton.com,img/obama.jpg +Kim Fuller,781-17-5652,80033,"244 Timothy Mills Apt. 817 +North Lindsey, FL 95527-7903",1940-11-28 10:42:06,53:2a:6a:78:f6:82,sanchezmaria@yahoo.com,img/obama.jpg +Matthew Dalton,853-03-8017,54023,"1658 Elizabeth Court Suite 463 +North Amy, NV 81914",1923-05-07 10:48:42,79:bb:e4:2b:e7:c0,flowersjared@brady.com,img/obama.jpg +Susan Osborne,837-08-6610,93169,"792 Debra Branch +Rodriguezside, CT 96976",1982-02-18 12:37:35,08:5c:c6:0a:79:4d,paul46@gordon-newton.net,img/obama.jpg +Brandon Howard,276-85-9231,92305,"75089 Gould Streets Apt. 142 +Aliburgh, IN 46688",1992-04-10 08:24:49,df:d2:a5:13:ca:44,melinda67@livingston-martinez.net,img/obama.jpg +Nicholas Stewart,873-95-2271,96088,"9539 Stacy Port Apt. 285 +Gregoryside, OH 98561-1537",2001-09-13 06:07:15,47:c3:01:d8:97:92,samuelunderwood@gray-patton.com,img/obama.jpg +Mark Thompson,633-01-4388,10815,"988 Jordan Gateway Apt. 337 +Lynchfort, IN 56466",1943-05-17 00:53:03,21:9b:b2:75:23:e3,frank39@gmail.com,img/obama.jpg +Erica Strickland,194-95-4314,88265,"08268 Brock Summit +Port Robert, VA 55763",2003-04-21 20:17:55,bc:32:62:48:52:2d,elin@hotmail.com,img/obama.jpg +Kelly Ramos,625-02-5162,85247,"71648 Davenport Mountain Suite 142 +Lake Cheryl, ME 29940",2007-09-09 21:33:37,dc:db:e3:70:11:2d,jon90@gmail.com,img/obama.jpg +Vanessa Nicholson,309-52-4829,23382,"PSC 6165, Box 1790 +APO AE 61238",1934-09-19 18:31:11,76:b7:6a:58:6b:28,ysmith@hotmail.com,img/obama.jpg +Jeffrey Davis,007-56-7634,17005,"87096 Kane Villages +East Lacey, TX 68930-4725",1927-09-11 06:10:24,0b:3d:92:86:26:7a,christine60@allen.info,img/obama.jpg +Christopher Brewer,548-96-0592,46299,"938 James Dam Apt. 810 +East Kathyview, PW 03385",1961-01-27 20:18:10,c5:5d:5c:82:71:d0,jessica30@hotmail.com,img/obama.jpg +Anthony Elliott,093-21-5870,93428,"1960 Payne Port +Brownborough, WY 64171-4539",1988-01-10 17:58:45,b9:63:e3:40:01:53,jennifer52@morales.com,img/obama.jpg +Daniel Bradley,014-17-6408,10568,"5069 Tracey Squares +East Joseph, MT 86640",2002-01-17 12:10:57,f3:a9:cd:4e:e6:3f,whitejennifer@yahoo.com,img/obama.jpg +Janet Olson,146-74-1501,74182,"99874 Andrew Lights +Harrisbury, TN 89109-7565",2009-03-23 05:59:03,95:72:24:d7:ce:be,dwalker@hotmail.com,img/obama.jpg +Ann Hale,728-51-7677,31403,"5407 Alexandria Prairie +Gracestad, NM 93658",2010-08-20 01:27:18,b3:77:fa:18:5f:bb,zwilliams@wise.biz,img/obama.jpg +Evan Watts,761-06-3295,92108,"171 Eric Path Apt. 869 +Port Courtneyfort, DE 45787-9936",1951-02-13 03:44:56,f5:5a:f7:2c:7c:7b,srivera@ford-robinson.com,img/obama.jpg +Angela Jones,620-91-3440,38577,"784 Courtney Greens Suite 010 +Jesusbury, CA 14448-6074",1939-07-20 03:07:31,1b:9c:85:91:a6:9d,linda77@gmail.com,img/obama.jpg +Carl Hill,394-41-1020,60936,"37925 Dyer Divide Suite 596 +West Laura, NH 24614-3911",1978-01-17 03:48:35,3d:8b:7e:aa:bb:2c,rodriguezjacqueline@brewer.com,img/obama.jpg +Tyler Woods,557-75-2358,20859,"12599 Haley Road +Lake Robinfurt, GA 36911-9155",1930-01-06 19:24:23,4c:1a:92:fb:89:5a,william80@yahoo.com,img/obama.jpg +Mary Dawson,506-06-1274,31809,"9858 Mario Tunnel Apt. 318 +Ericbury, PA 67564",1924-08-07 19:53:47,3b:d5:a2:d2:16:35,brussell@yahoo.com,img/obama.jpg +David Grant,444-62-7742,79428,"613 Ryan Drive +Hopkinsstad, VT 97489",1976-03-10 04:24:21,0b:a2:2b:68:a9:24,patricia43@hotmail.com,img/obama.jpg +Sara Jenkins,455-98-9923,93476,"5338 Timothy Views +North Austinton, OK 48956-3227",2001-12-17 18:40:28,6b:fe:e3:60:d5:1b,nelsonjimmy@schultz.org,img/obama.jpg +Jeff Reid,724-77-4889,79174,"1196 Wright Gateway Suite 350 +Toddton, IN 75515",1967-10-10 06:37:37,ec:53:20:b5:e9:b8,jesus49@mcgrath.org,img/obama.jpg +Larry Huffman,263-90-0852,43320,"0283 George Prairie Suite 373 +Lake Ashley, MT 18575-2726",1950-06-03 04:37:37,5a:3b:08:fd:67:3a,kathleenwalker@hotmail.com,img/obama.jpg +Kevin Ruiz,699-60-4001,71962,"526 Jones Drive Apt. 949 +East Yesenia, DC 88633",2015-01-03 11:52:31,0b:79:4d:e8:f6:a5,toneill@hotmail.com,img/obama.jpg +Maria Delgado,021-28-4533,61638,"205 Boyd Valleys Apt. 337 +North Destinymouth, DE 92281-6908",1964-06-30 16:52:09,99:cf:06:e5:d6:7f,ljones@williams.info,img/obama.jpg +Mary Caldwell,898-84-7663,63925,"2718 Russell Landing Suite 294 +South Derekmouth, MA 88336",2008-04-08 00:28:59,0e:f1:f1:e8:29:17,leandrew@gmail.com,img/obama.jpg +Dillon Cuevas,006-08-9586,74308,"4183 Christina Courts Apt. 710 +East Megan, NJ 70107-2421",2001-09-06 01:36:21,1d:2f:da:40:90:61,xbrown@yahoo.com,img/obama.jpg +Andrew Hill,347-45-0738,97756,"96891 Dale Roads +West Michael, NY 35705-9413",1978-06-09 14:52:05,df:c2:81:da:48:3d,wesley31@scott.com,img/obama.jpg +Kelsey Vasquez,484-06-0225,34787,"529 Jorge Extension Apt. 409 +Smithchester, UT 34738-5729",1997-08-22 03:50:52,49:30:5e:92:ab:cd,fraziercameron@yahoo.com,img/obama.jpg +Jennifer Smith,602-92-8693,21722,"8498 Joshua Grove Suite 810 +Aaronborough, ND 62777-9477",1984-09-16 02:39:43,29:a4:dd:b6:6f:5d,aaron81@yahoo.com,img/obama.jpg +Jacob Smith,825-33-0500,58558,"38280 Dennis Spur +Port Gloria, IN 38624-5475",1928-04-13 23:34:41,98:64:73:db:a3:f4,molly32@morales.com,img/obama.jpg +Darryl Stephens,181-77-7075,83336,"PSC 3927, Box 7454 +APO AA 39991",1998-07-26 09:02:22,7f:63:65:56:a9:0f,joyce45@ross-foster.com,img/obama.jpg +James Dalton,722-82-4583,41499,"826 Campos Port +Lake Larryburgh, MA 49850",1943-01-02 02:44:04,3b:e6:01:3a:02:25,alicia96@hotmail.com,img/obama.jpg +Ana Bonilla,025-50-4195,78409,"436 Perez Passage +South Miguel, CA 01751",1921-04-04 14:50:44,b0:47:21:01:34:a5,zhunter@yahoo.com,img/obama.jpg +Christopher Martinez,178-45-1413,20471,"768 Jones Parks +North Bryan, AS 16037",1995-12-19 13:55:40,88:71:00:67:41:08,kimdiane@yahoo.com,img/obama.jpg +Christopher Rodriguez,353-24-6621,70364,"779 Fisher Mountain Suite 407 +Randytown, AS 01182-7028",1956-12-25 12:23:52,1a:00:bf:8f:9d:55,pittmanaaron@yahoo.com,img/obama.jpg +Ryan Palmer,250-22-5096,86751,"175 Jill Radial +South Jessicafort, HI 47011-0999",1960-05-09 16:07:39,16:2f:27:ee:cb:2b,zlynch@webb-hoffman.com,img/obama.jpg +Robert Patel,172-50-4829,51144,"939 Morgan Shores +Moralesmouth, KY 17332-9233",1948-03-21 03:16:03,5e:70:57:fe:a2:3e,ylane@smith-miller.info,img/obama.jpg +Danielle Conway,065-76-9837,74861,"8354 Faith Views +Lake Charlotte, VA 70979",2007-11-27 05:45:27,a3:05:34:9a:5f:9c,phenry@hotmail.com,img/obama.jpg +Matthew Miller,035-46-5914,48243,"09343 Larry Parkways Apt. 950 +Port Seanmouth, OH 52860-4598",1944-09-05 11:45:28,1e:e8:08:b8:15:80,rodneyalvarado@hotmail.com,img/obama.jpg +Michael Knight,871-38-0790,57171,"556 Charles Pine +Duranborough, NE 60178",2010-04-10 14:28:45,c2:0f:3e:a3:fa:76,oconnorjason@yahoo.com,img/obama.jpg +Meagan Anderson,181-57-8519,56585,"2909 Bradley Land +Ericberg, KS 77862",1934-07-23 08:53:46,ac:7f:c8:78:02:ca,owensmichael@yahoo.com,img/obama.jpg +Jeffrey Adams,555-59-2795,51348,"8894 Taylor Corners Apt. 562 +Annamouth, IL 82944-7121",1962-09-12 04:09:56,c3:44:f1:e2:70:ac,madelinepayne@allen-johnson.com,img/obama.jpg +Nancy Zimmerman,672-19-1803,69871,"26017 Davis Lakes Apt. 296 +Ruizberg, HI 41936",1955-05-29 21:53:26,e7:36:c5:79:29:ee,xross@gmail.com,img/obama.jpg +Bradley Stewart,035-76-1151,78211,"5044 Cooley Overpass Suite 609 +Port Leahstad, NJ 81391",1999-06-07 01:54:44,c5:53:55:73:7c:03,baldwineric@hotmail.com,img/obama.jpg +Samantha Alexander,274-92-9767,19833,"317 Medina Mountain +Sarahhaven, IA 75000",1968-09-30 20:58:43,22:f5:a6:a2:15:aa,patrickchang@yahoo.com,img/obama.jpg +Garrett Davies,426-86-4524,54845,"4444 Harold Loaf Suite 111 +New Jeremyview, WY 21889",1977-09-02 06:02:59,f4:fe:5e:f4:2a:fe,kendraanderson@yahoo.com,img/obama.jpg +Amanda Fry,375-11-6062,33647,"USS Robinson +FPO AA 22466",1998-06-15 00:19:29,20:55:47:b9:a7:81,jasongonzalez@yahoo.com,img/obama.jpg +Rhonda Underwood,562-36-2627,36090,"0665 Zachary Valleys +Medinashire, MO 13638",1923-07-22 22:47:16,78:2a:21:76:48:ac,moniquesantana@wilkinson-castillo.com,img/obama.jpg +Evelyn Sanders,267-58-8401,13676,"5652 Weber Centers Apt. 382 +New Williammouth, OK 12188-7250",1918-03-22 17:08:30,83:59:60:b4:1e:7d,rebekahclark@gmail.com,img/obama.jpg +Charlotte Brooks,394-45-0130,52676,"08535 Francisco Lock Apt. 682 +Danielletown, TX 55342-5391",1936-05-17 15:39:56,3a:c1:21:bf:2c:65,erik73@yahoo.com,img/obama.jpg +Jennifer Patton,654-47-8648,19655,"06051 Little Road +Thomasberg, DC 52833",1986-08-11 23:34:44,0d:35:61:73:27:65,melindavalentine@garrison-hayes.com,img/obama.jpg +Brian Mathis,394-85-7124,37702,"65157 Scott Vista +Tuckerland, TN 00740-0737",1939-06-12 23:04:15,0d:40:08:d7:d8:e5,lopezsamantha@yahoo.com,img/obama.jpg +Mary Thompson,302-39-9005,99039,"659 Edwards Glens +Hernandezhaven, LA 10861-8081",1956-12-03 06:20:18,96:cd:63:2d:99:70,nelsonashley@yahoo.com,img/obama.jpg +Jonathan Kerr,780-16-3320,02029,"970 Smith Common Apt. 757 +Catherinetown, AR 24373-8578",1979-12-02 23:49:11,6d:0d:3c:6c:61:13,kimjennifer@rowland.biz,img/obama.jpg +Grace Perez,110-97-9535,97192,"Unit 5517 Box 0636 +DPO AP 70393",1988-02-20 01:17:40,3b:d0:63:0e:bf:01,debragray@smith.info,img/obama.jpg +Renee Holt,890-20-6399,59215,"2359 Benjamin Valley +Austinville, KY 14758-0995",1948-07-26 10:43:35,4c:2f:45:36:be:bd,jackanderson@anderson.info,img/obama.jpg +Robert Dawson,347-92-7384,39588,"03794 Amy Underpass +Camachoview, OK 27377-6015",1933-02-05 21:30:21,7f:60:01:04:31:09,onewman@yahoo.com,img/obama.jpg +Dillon Simon,364-99-4771,86880,"Unit 9752 Box 9358 +DPO AP 95897",2004-04-01 06:28:51,63:95:61:19:74:3f,vward@kaufman.com,img/obama.jpg +Hannah Baker,857-89-9315,02249,"3515 Smith Drives Apt. 028 +North Ronald, WA 32706-1315",2011-10-16 19:19:44,ac:13:f6:f9:7f:b7,inolan@gmail.com,img/obama.jpg +Sharon Kirby,667-56-1572,17683,"737 Elizabeth Coves Apt. 988 +South Christopherview, TX 87720",1932-10-26 09:39:19,a7:cd:b4:f7:0a:92,ohenderson@hotmail.com,img/obama.jpg +Shawn Hansen,845-73-9588,65718,"84902 Wood Stravenue Suite 654 +West Michael, WV 91884-5984",1927-05-24 05:14:36,9e:67:d9:7f:c3:b8,brian32@brown-wright.info,img/obama.jpg +Michelle Hawkins,475-42-8739,60336,"60426 John Mountain Apt. 202 +East Margarettown, ME 99197-0087",1990-06-22 09:04:31,05:aa:16:b7:9a:23,hodgesjoseph@perry-franklin.info,img/obama.jpg +Terry Howard,751-65-2624,03700,"739 Bean Course +Lake David, GA 62447",1940-06-26 12:25:12,98:c1:be:da:c3:f5,cookchristopher@hotmail.com,img/obama.jpg +Mary Wilson,823-12-0180,66944,"726 Michael Summit +Port Cathy, MO 11469",1943-09-04 15:07:36,e7:1c:ec:db:00:f0,williamsjerome@yahoo.com,img/obama.jpg +Sarah Powell,264-45-2513,04614,"171 Lee Springs +Potterborough, ND 48490",1942-01-04 10:13:13,e9:a4:f4:5d:09:de,stevensullivan@hotmail.com,img/obama.jpg +Dawn Wood,786-31-4056,44797,"79685 Wilkins Greens +North Marychester, MS 07579-5870",1972-08-04 10:36:22,16:f9:d4:66:5b:09,yolanda06@gmail.com,img/obama.jpg +Steven Stevens,381-66-4566,31176,"532 Fuentes Square Suite 399 +Veronicashire, OK 46249",1946-09-16 18:36:03,5c:92:77:f7:98:89,brittanysmith@arias.com,img/obama.jpg +Mary Fields,842-49-5076,62985,"4708 Derek Plains Apt. 996 +Bakerbury, SD 20619-5854",1934-10-17 07:21:08,21:ed:6f:62:eb:09,kbradley@gmail.com,img/obama.jpg +Ray Torres,070-99-0571,23833,"788 Dickson Unions +New Elizabethville, TX 49653-1924",1959-10-25 22:40:32,b9:64:26:45:de:73,walkercarlos@moreno-foster.com,img/obama.jpg +Gregory Page,556-98-0874,98700,"33890 Jessica Fort +Floresmouth, GA 69124-1608",1945-07-05 14:36:12,b6:cc:df:50:1e:b1,pamelarichardson@nichols-jensen.com,img/obama.jpg +Wendy Barker,784-98-5315,08151,"1187 Mario Light +North Tiffanyberg, MP 72644",1931-10-20 09:55:44,81:93:55:eb:44:84,lauraturner@yahoo.com,img/obama.jpg +Patrick Munoz,524-14-1719,36218,"964 Gonzalez Via Apt. 350 +Sharonton, AR 29558",1995-06-13 11:24:25,e1:d4:fa:f1:2f:cc,jordanjoseph@gmail.com,img/obama.jpg +Patricia Nichols,314-46-3565,80087,"238 Suarez Canyon +Whiteland, PA 77206-5320",1936-05-08 03:06:46,e0:c6:f1:61:b5:9a,haysjason@barber-stewart.com,img/obama.jpg +Tracey Lopez,281-26-9402,21138,"8369 Joseph Light +Rodriguezshire, OR 27117-7095",1976-05-19 22:37:20,58:59:48:56:22:53,carrie39@gmail.com,img/obama.jpg +Jesse Harris,404-76-1054,20605,"3816 Phillips Mills +Port Emily, CT 07032",1984-05-18 23:09:50,96:8e:b0:2c:e1:c2,millerbeth@cox.com,img/obama.jpg +Amanda Adams,378-99-8751,30837,"3403 William Island Suite 867 +Cainstad, CO 31833-6900",1953-10-20 00:54:55,66:8e:89:1a:88:20,ngibson@yahoo.com,img/obama.jpg +Tiffany Romero,530-97-0066,14400,"77092 Gillespie Parkways +Jerryhaven, MH 80275-8041",1932-12-31 11:41:15,16:50:61:70:06:cd,patrickjones@gmail.com,img/obama.jpg +Brandy Huber,501-38-7169,65391,"36650 Roberts Land +Randallbury, WY 23659",1948-05-30 06:45:25,77:4d:a1:33:0b:18,thomas99@alexander-black.org,img/obama.jpg +Nicole Calhoun,015-02-7280,28105,"Unit 6403 Box 9655 +DPO AE 64785-4091",1934-10-30 01:18:17,f1:b6:04:af:72:c1,jeffrey54@watson-stephenson.net,img/obama.jpg +John Barnett,536-90-9885,16336,"677 Taylor Overpass +Port Laurie, GU 35023-1949",2005-06-15 18:54:41,15:76:f1:7c:6c:14,kellywallace@rivera.com,img/obama.jpg +Carl Turner,359-76-4004,86658,"3131 Reynolds Tunnel +Collinsside, CT 80352",1956-06-22 09:35:51,cd:7d:52:82:30:f3,curtis83@erickson.com,img/obama.jpg +Jeremy Johnson,804-93-7602,70977,"036 Michael Meadows Suite 049 +North Erinbury, NH 29718",1930-05-18 16:16:48,54:84:99:52:fc:43,hernandezdonna@hotmail.com,img/obama.jpg +Melissa Turner,411-11-0473,75162,"Unit 6374 Box 7825 +DPO AE 32665",2008-12-15 14:13:15,ae:35:b1:ae:0f:ec,jhubbard@gmail.com,img/obama.jpg +Kerry Weaver,545-24-7354,60423,"7546 Wagner Unions +West Jessicaton, MO 84142",1987-02-23 04:28:17,4c:4f:18:b9:0f:a3,colleengonzalez@gmail.com,img/obama.jpg +Donald Cochran,449-74-6876,06364,"7570 Amy Dale +Montoyamouth, WY 00675-8265",1926-12-25 15:58:51,4a:2a:5a:1e:e0:50,whiteteresa@larsen.com,img/obama.jpg +Travis Hale,730-02-5869,07637,"Unit 8051 Box 9299 +DPO AP 36672-3137",2008-06-24 12:23:56,df:9b:bb:c7:23:3f,tperez@hotmail.com,img/obama.jpg +Kyle Mccoy,860-22-2991,91742,"655 Simmons Divide Apt. 799 +South Theresaside, CO 86577-8536",1977-03-18 04:37:08,45:01:0c:da:ea:c4,adam71@gmail.com,img/obama.jpg +Dawn Bates,814-67-9318,54505,"60197 Holly Forest +Andrewborough, MN 02371-7088",1968-09-12 07:42:31,40:4a:64:30:65:29,apatel@hernandez.com,img/obama.jpg +Jessica House,649-40-8425,26248,"749 James Summit Suite 382 +West Elizabeth, PR 94904-2036",1998-11-05 01:49:27,08:1f:eb:88:ca:e4,jake18@hotmail.com,img/obama.jpg +Hunter Thomas,899-12-2321,16557,"8711 Smith Branch Suite 812 +East Jonathantown, FL 85256-5326",2001-12-27 20:59:28,45:45:8a:6c:93:5d,tylerpeterson@hotmail.com,img/obama.jpg +Erin Thomas,784-30-3968,28189,"167 Eric Crest +Baileytown, PR 04762-4783",1955-10-25 13:34:30,52:e3:59:b0:40:9f,amandabradley@jones.com,img/obama.jpg +Gary Davidson,465-67-1608,28659,"660 Nicole Trail +North Zacharyberg, CO 11208-7330",1955-01-15 18:20:54,b5:83:c5:5b:0d:2b,stephaniebarnes@hotmail.com,img/obama.jpg +Justin Calhoun,081-83-3637,58907,"7173 Emily Circle +South Jenniferbury, KS 55432-5968",1962-08-15 01:11:00,b5:47:2f:98:9b:08,thomasvickie@martinez.com,img/obama.jpg +Sarah Johnson PhD,149-20-8454,86202,"603 Simmons Pass Suite 445 +West Frederick, NY 00934-7117",1963-11-29 20:57:11,40:3b:e5:f4:cc:91,gregory70@blankenship-brown.net,img/obama.jpg +Jeremy Duran,261-65-8511,14128,"836 Adams Knoll Apt. 986 +Port Brandiburgh, MS 61459",1992-09-11 09:00:55,60:4e:64:8c:b5:2f,kennedyvincent@hotmail.com,img/obama.jpg +Lisa Berger,769-49-5251,71299,"850 Thompson Squares Apt. 702 +Reesechester, DE 07979-8465",2016-11-05 11:41:32,87:c8:40:20:6c:25,breyes@yahoo.com,img/obama.jpg +Cassandra Rosales,558-38-4730,00643,"907 Garcia Knoll Apt. 633 +Andrewborough, ND 08756-9941",1953-12-25 23:08:41,22:b2:63:e9:19:65,kelly51@hotmail.com,img/obama.jpg +Regina Moon,558-05-8147,08618,"768 Christopher Estate Suite 363 +Port Kimberly, NE 62578-8628",1986-04-05 15:32:34,49:3e:ba:47:b5:2e,kyleschroeder@hotmail.com,img/obama.jpg +Jeremy Hernandez,416-71-2117,23413,"64910 Joshua Fort +Trevorburgh, MH 33522-6456",1972-07-01 19:54:20,42:c4:27:9c:ee:a5,robinsonmelissa@taylor-robbins.com,img/obama.jpg +Jermaine Nash,483-48-1305,54776,"34649 Cody Glen +Cortezfurt, WI 80064-3712",1987-11-11 20:25:39,58:62:30:3a:85:e9,amy39@gonzalez.com,img/obama.jpg +Alexa Robinson,563-79-1431,85499,"3356 Chavez Terrace Suite 400 +Richardborough, LA 57174-7768",2010-07-13 05:11:21,08:5d:95:90:27:f3,hector57@anderson.info,img/obama.jpg +Terry Meyers,047-87-4411,66203,"PSC 0274, Box 8346 +APO AA 24065",1975-04-30 13:52:47,25:62:98:5a:d7:80,stanley63@yahoo.com,img/obama.jpg +Adam Rose,896-92-6083,62799,"48845 April Motorway +Amberchester, CO 93425",2015-08-12 17:18:22,b8:98:e3:06:0a:cf,zbarrett@hotmail.com,img/obama.jpg +Madeline Mendoza,275-78-5249,45633,"2013 Stacy Ferry Apt. 920 +New Charles, VI 18586",1922-01-02 15:50:46,63:f8:5c:3d:36:ac,kellyirwin@hotmail.com,img/obama.jpg +Brandy Myers,097-79-1404,65356,"Unit 6466 Box 9403 +DPO AE 27551",1976-03-17 17:44:56,80:d9:3a:c6:6f:15,rebecca01@sanders.biz,img/obama.jpg +Brandi Phillips,046-36-2644,81550,"6923 Marquez Plaza +Lisafort, TN 29799",1952-05-24 14:39:32,62:d1:3c:bf:6e:de,brittany36@yahoo.com,img/obama.jpg +Kelly Hernandez,201-44-8653,29303,"8620 Connor Lights +North Ashleyborough, AZ 58530-5257",1980-10-03 01:35:09,b6:bd:1d:61:3f:fa,nking@yahoo.com,img/obama.jpg +Kellie Donovan,889-62-3011,77431,"78695 Johnston Mountains Apt. 994 +Derekburgh, AZ 52402",1980-02-15 21:57:43,9c:27:b7:af:78:d8,carolyn97@yahoo.com,img/obama.jpg +Chelsea Patel,380-52-2138,92477,"71912 Garrett Island +Richardshaven, NH 74439",1953-05-18 13:07:34,c0:c2:3f:a5:a5:a9,gjames@yahoo.com,img/obama.jpg +Steven Powell,855-61-5723,43925,"6190 Shields Streets Suite 189 +Reedside, WA 87131",1927-09-06 16:18:57,29:b0:4d:df:cf:b0,xmartinez@robertson.org,img/obama.jpg +Tammy Jackson,437-62-1966,54197,"USCGC Lowe +FPO AA 96881-7733",1945-06-16 13:26:48,43:bd:d7:3a:91:d0,ffranklin@gmail.com,img/obama.jpg +Cory Newman,209-44-0202,09810,"48240 Mckay Cliff +Stanleyborough, MI 53439",1995-09-24 01:58:11,f4:f6:15:c5:6a:0f,mariecarroll@smith.org,img/obama.jpg +Ashley Turner,761-03-8016,87776,"13069 Gonzalez Drive +Lake Davidside, GU 01085",1948-11-12 21:38:33,0c:89:9f:1a:02:d2,barkeranthony@garner-benson.net,img/obama.jpg +Anthony Thompson,732-95-2698,67443,"037 Dale Locks Suite 915 +Staceyburgh, TX 88773-9070",2001-02-17 08:16:12,f9:4d:6a:0b:a1:af,dawnspencer@gmail.com,img/obama.jpg +Debra Brooks,414-97-8294,48847,"2383 Williams Plaza Suite 089 +Carmenshire, KS 71756-2127",1989-08-19 11:04:44,1e:4e:15:42:99:95,jrush@yahoo.com,img/obama.jpg +Mackenzie Frey,594-02-4949,84971,"62192 Patrick Place +Hartmouth, WA 83253-1175",1954-07-11 02:59:05,20:5e:3a:99:4f:10,jimmytorres@riley.com,img/obama.jpg +Sean Mccormick,616-63-4375,29920,"585 Katrina Forge Suite 140 +Port Amanda, IA 00693",1919-05-05 06:44:28,75:93:29:b7:9d:7c,zacharylawrence@lara.com,img/obama.jpg +Samantha Malone,822-70-9454,97581,"USNS Benson +FPO AP 65877",1934-11-26 09:37:36,73:fa:42:7c:b7:36,timothy66@hotmail.com,img/obama.jpg +Sharon Baker,411-33-3944,63311,"9920 Jennifer Mission Apt. 199 +Lake Theresa, PW 52900",1949-01-30 12:40:51,10:71:69:44:dc:e7,trios@baker.org,img/obama.jpg +Bridget Stephenson,190-11-7066,58872,"41717 Watson Islands +South Jeffrey, FM 65620",1974-08-14 07:10:20,8f:42:3c:7e:ff:46,glowe@ingram.com,img/obama.jpg +Tyrone Leonard,149-35-2123,92642,"552 Sarah Square +North Patrick, KY 64158",1978-04-11 16:08:52,6b:8c:85:23:1b:40,stephenguzman@nelson.org,img/obama.jpg +Roberta Jefferson,405-48-2807,76262,"830 Pierce Mission Suite 393 +West Robertfort, MO 20944",1967-11-14 05:12:37,3d:83:dc:1b:37:41,stephaniehenderson@yahoo.com,img/obama.jpg +Melissa Jones,201-54-0706,73224,"5295 Roth Manors +North Katelynchester, SD 62337-9208",2012-07-12 14:21:59,46:7b:7d:6c:25:41,williamwatson@yahoo.com,img/obama.jpg +Thomas Flores,899-46-0476,60587,"52812 Lopez Avenue Apt. 641 +Andreamouth, VA 05563",1947-11-06 23:27:39,a2:54:a5:76:5b:00,brendaherrera@hotmail.com,img/obama.jpg +Paul Sanford,153-09-6910,32213,"26950 Brennan Knoll +New Robertport, PA 47942-0882",1926-10-23 16:58:38,9a:62:83:db:75:ac,amber61@yahoo.com,img/obama.jpg +Barbara Williams,532-45-2280,06136,"77425 Jones Gardens Apt. 692 +South Kevin, ND 54754",1937-08-15 22:34:41,98:3c:e2:a8:39:60,felicia28@fleming.com,img/obama.jpg +Thomas Cabrera,097-10-0514,25329,"0559 Keith Stravenue +Annview, OH 73010",1991-05-03 06:51:41,60:af:73:93:94:d0,alexwest@ruiz-evans.info,img/obama.jpg +David Larsen,460-52-0199,39060,"53900 Howard Pine Suite 043 +Brownside, WV 82502",1994-09-06 10:17:25,0c:ee:17:17:b2:d1,kelly65@smith.com,img/obama.jpg +Laura Bailey,549-88-6420,11776,"PSC 8293, Box 3866 +APO AP 87717-7464",1978-11-23 04:25:50,6a:13:fd:94:d6:25,ujohnson@morrow.net,img/obama.jpg +Thomas Jennings,718-90-1165,37902,"101 White Corner +Wernerhaven, CT 60139",2008-05-05 04:52:03,3f:89:4c:64:9d:aa,evelyn41@berry-hill.com,img/obama.jpg +Larry Wiggins,115-73-0007,31023,"91944 Michelle Centers Apt. 273 +West Jessica, NM 85758",1953-02-04 17:14:29,3e:85:65:1e:03:e5,rachelterrell@gmail.com,img/obama.jpg +Stephen Burns,316-87-0951,72216,"4201 Pamela Forges +Heatherside, VI 70138-9801",1956-07-09 19:52:02,9b:00:5e:0c:64:8b,tracieschmidt@rivera.com,img/obama.jpg +Rebecca Maynard,386-22-1673,13485,"1160 Wood Brook Suite 571 +Rebeccaburgh, GU 20042-6111",1976-12-03 00:37:22,89:04:dd:fd:b6:1f,sabrinacook@chase-torres.com,img/obama.jpg +Heather Lee,179-62-1412,67863,"053 George Summit Apt. 337 +Ryanmouth, PA 12296-8188",2013-10-09 03:25:27,76:aa:40:dc:24:d4,brianbennett@hotmail.com,img/obama.jpg +Anthony Kennedy,493-49-6889,03879,"34899 Sharon Circles +Horneberg, CO 78995",2005-10-23 04:22:32,ce:0a:31:79:1d:b2,bmiddleton@yahoo.com,img/obama.jpg +Amber Hamilton,352-35-9735,27650,"33509 Beasley Hollow Apt. 836 +South James, PR 61130-3094",1990-05-27 00:17:55,ca:4f:f1:6a:e7:3a,kochlevi@yahoo.com,img/obama.jpg +Robyn Obrien,215-06-2369,10995,"66918 John Cove Suite 790 +South Tina, AL 79550-2378",1972-05-29 14:42:58,f0:6c:8c:d8:b5:f6,kristenchambers@yahoo.com,img/obama.jpg +Aimee Woodard,165-46-6877,16698,"2891 James Extensions +South Ashley, MS 28147",1925-07-13 12:15:18,fd:e6:ed:fb:0f:2d,whughes@frank.info,img/obama.jpg +Robert Hawkins,646-99-8110,81763,"91659 Castillo Trace +Murrayburgh, CO 47085-2723",1928-06-16 00:54:13,62:8b:1e:bf:a1:c3,dwilliams@gmail.com,img/obama.jpg +Kevin White,380-95-5355,05816,"95277 Flores Road Apt. 857 +Travishaven, PR 61216-0551",1921-06-06 02:24:01,ad:a7:56:50:88:b7,michael50@kelly.net,img/obama.jpg +Ruth Bass,498-51-2962,84486,"836 Johnson Locks Suite 488 +Amyton, IN 02368-6710",2003-09-07 10:56:59,d8:53:d5:ba:a1:48,pamelatrevino@norton.com,img/obama.jpg +Jimmy Frey,573-20-7207,66913,"2801 Miller Circle +Lake Terrimouth, NV 74443",1963-01-24 05:04:34,7d:e8:0e:e2:88:f8,james80@reeves.biz,img/obama.jpg +William Sullivan,718-76-9647,87444,"038 Morris Causeway +North Lindseyton, FM 66435-6813",2000-11-24 14:04:58,c1:4b:2e:70:8f:dc,william41@porter-bishop.com,img/obama.jpg +Shawn Stewart,697-78-5010,13081,"537 Singh Rapids +Lake Michael, MT 57173",1926-02-13 20:30:24,57:b1:a6:92:5d:4b,amyking@yahoo.com,img/obama.jpg +Patrick Lyons,245-22-2275,82530,"0253 Williams Rapid Apt. 565 +Mooreshire, AZ 12353",1920-02-03 13:45:36,22:b7:ac:86:64:bc,dharris@hotmail.com,img/obama.jpg +Abigail Gutierrez DDS,513-08-3962,69251,"034 Bishop Grove +Cynthiafort, NJ 78612-9740",1938-08-04 11:33:26,45:61:03:52:64:09,dylan40@yahoo.com,img/obama.jpg +Edward Richard,376-10-0558,62915,"5986 Zachary Plaza Suite 919 +Joshuaside, OH 39124-8563",1917-09-17 07:21:43,6f:c0:b2:4b:7e:61,zacosta@wade.net,img/obama.jpg +Ryan Martinez,211-10-6775,94546,"124 Lee Lane +Noblemouth, DE 73044-4866",1944-03-07 04:54:15,3c:d7:d5:7c:a3:f2,icarter@hotmail.com,img/obama.jpg +Brian Pierce,621-16-5932,95353,"43751 Taylor Springs Suite 320 +Maryberg, OR 47383-7990",1982-02-13 06:57:04,41:fd:08:ac:8e:b1,luke28@gmail.com,img/obama.jpg +Kenneth Tanner,750-99-5530,92864,"8085 Miller Island Apt. 872 +New Alexburgh, ME 90204-6067",1989-04-04 12:35:27,db:64:f7:62:b5:09,hannahsalas@edwards.com,img/obama.jpg +Sharon Goodwin,246-94-2596,84701,"6694 Olivia Lodge +Carpenterhaven, WI 74170",2016-08-24 02:40:31,66:b2:e0:3b:cd:ef,kelleyandre@hotmail.com,img/obama.jpg +Carolyn Downs,501-84-5598,56215,"3721 Stephanie Manors Apt. 288 +Port Spencer, AK 09127",1976-06-13 18:31:59,71:59:9d:dd:6f:33,daniel89@yahoo.com,img/obama.jpg +Rebecca Lewis,578-37-4698,56200,"5222 Nathan Loaf +Shawnshire, OH 72786",1980-07-20 23:11:42,b0:29:db:e7:6e:1b,jamesraymond@yahoo.com,img/obama.jpg +Susan Wong,758-19-6189,75377,"03396 Joseph Stream +Garyside, VT 62496-2649",1918-01-18 19:05:33,48:7c:3d:c1:1f:ad,rmoon@hotmail.com,img/obama.jpg +Alexis Moyer,384-76-1296,33154,"2100 Moyer Cove Suite 761 +East Christinahaven, DC 12495",1956-09-20 06:38:34,52:47:44:b5:0f:b4,gonzalezwhitney@yahoo.com,img/obama.jpg +Rachel Le,770-93-8423,48493,"767 Tony Inlet Apt. 132 +East Robert, LA 18636-0683",1923-07-01 14:56:44,89:68:79:9e:53:c7,jenniferstokes@hotmail.com,img/obama.jpg +Grace Stanley,151-55-9017,84736,"483 Katherine Shore +Jonathanborough, NY 96865-5196",1943-02-09 12:58:06,5f:56:03:e0:ad:84,sharon98@cooley.com,img/obama.jpg +Leslie Clay,100-38-2103,87247,"017 Johnson Overpass Suite 161 +Careyhaven, NC 41973",1971-10-21 09:11:45,77:75:fa:87:d9:0c,greenlinda@gmail.com,img/obama.jpg +Steven Smith,325-76-0535,40174,"03573 Cox Summit Apt. 096 +East Robin, AL 83679-1618",1948-03-29 20:28:12,27:bc:4e:16:cd:10,christianherrera@rowe.biz,img/obama.jpg +Katherine Chambers,302-90-8289,88226,"46084 Lloyd Crescent Apt. 914 +Juanstad, PR 37363",1930-11-26 10:18:32,f2:f0:3b:23:51:22,zmartin@yahoo.com,img/obama.jpg +Jacqueline Martin,884-04-5459,78207,"30360 David Estates Apt. 987 +Bakerside, MA 31556-6154",1961-11-14 11:17:31,ba:ff:74:55:5d:c1,sharonyu@tyler.biz,img/obama.jpg +Justin Shelton,610-29-9739,43832,"735 Heather Locks Suite 028 +East Mark, MS 54860",1983-11-17 13:06:45,4f:72:42:3a:a6:f6,cabrerarichard@yahoo.com,img/obama.jpg +David Stewart,834-96-8378,38339,"2435 Skinner Villages +South Stephanie, DE 17753",2011-10-06 14:42:18,65:14:a7:48:88:f1,paulmays@gmail.com,img/obama.jpg +Justin Brooks,236-74-2074,44647,"462 Miller Club Apt. 867 +Nathanberg, ND 31624",1988-08-09 17:36:33,8e:32:cd:65:a5:40,stephanie77@guerrero.biz,img/obama.jpg +Leah Brown,150-12-7480,77606,"Unit 4927 Box 6139 +DPO AE 33943-5422",2013-07-25 19:52:18,23:30:cf:52:d9:f1,rivascrystal@yahoo.com,img/obama.jpg +Mr. Curtis Gardner,052-14-2488,23093,"Unit 9304 Box 5750 +DPO AA 86355-5357",1972-01-07 20:21:08,78:3b:2f:03:e9:d0,sparksdaryl@hotmail.com,img/obama.jpg +Terry Bruce,248-18-4271,62310,"6956 Danielle Falls +Mcdonaldborough, MO 49348-2432",1995-06-27 05:08:10,af:34:fe:4f:3e:c9,phillipsmichael@gmail.com,img/obama.jpg +Christopher Webster,698-84-9546,30109,"Unit 4060 Box 0844 +DPO AE 01714",1936-07-17 18:17:27,81:8e:83:7a:0d:62,daniel78@gmail.com,img/obama.jpg +Jesse Griffin,713-11-4018,02437,"63065 Solomon Lock +North Sharonborough, TN 39248",2006-11-08 18:00:46,f9:9f:fb:e5:76:9e,steven89@yahoo.com,img/obama.jpg +Brandy Grimes,412-10-6548,13057,"299 Susan Plains Suite 617 +Christinafurt, AZ 64878-6406",1960-10-15 05:13:49,a9:6d:ee:5e:58:4c,vramos@howard-moore.org,img/obama.jpg +Christopher Freeman,797-03-6986,85932,"PSC 1664, Box 3773 +APO AE 86450-4665",2016-05-27 06:44:55,0a:1a:00:19:94:52,hendersonjustin@gmail.com,img/obama.jpg +Shelby Miller,589-60-5330,06221,"37766 Roberts Field Suite 895 +East Brandystad, NJ 18081-0560",1975-06-17 00:07:17,8d:bc:1d:6b:da:c7,wesleyvargas@lloyd.org,img/obama.jpg +Kristen Lyons,010-70-8278,43165,"Unit 5415 Box 9873 +DPO AP 22383",1965-01-14 01:29:35,6d:fb:89:52:af:26,xking@stevens.net,img/obama.jpg +Harold Mendoza,220-43-6524,04987,"51802 Lori Via Apt. 862 +South Haroldbury, KY 97962-6245",1995-04-09 04:40:47,b8:3b:de:64:33:78,calhounsara@kelley.com,img/obama.jpg +Scott Page,402-92-4128,81033,"66668 Harris Lodge Apt. 703 +South Matthewchester, PA 74985-1870",2015-10-30 16:32:46,a4:97:45:98:f1:65,rodrigueztodd@smith-diaz.net,img/obama.jpg +Kyle Humphrey,384-47-4308,18436,"6341 Wolf Roads +Claytonview, FM 96703-5428",1992-07-11 18:10:24,c0:71:50:71:cb:f4,richard93@park-watkins.net,img/obama.jpg +Stacey Hood,853-84-1742,97211,"PSC 2220, Box 5945 +APO AP 04870",1965-11-19 04:07:56,00:83:5a:ef:39:7f,adrianabarrera@yahoo.com,img/obama.jpg +Carol Mccarthy,128-36-4280,85445,"332 Oconnor Crossroad +Kellymouth, AK 42604-3938",1993-05-16 00:07:04,ce:53:6c:ba:0a:9f,svega@gomez-stone.com,img/obama.jpg +Thomas King,634-24-7231,83137,"49063 Williams Courts +Port Jefferymouth, NM 00893",1965-02-17 03:16:52,15:26:51:a7:34:cd,lanceadams@collier.biz,img/obama.jpg +Kathleen Thomas,894-53-3782,23670,"82841 Justin Forges Suite 313 +Ramirezberg, AK 81872",1964-10-18 00:34:11,4a:64:7c:fa:56:2c,wilsonjames@barrett.info,img/obama.jpg +Michael Johnson,158-14-7903,72461,"020 Bridges Path Suite 867 +Lake Timothyshire, ME 27173",1944-12-27 20:26:27,c8:93:89:26:4f:9f,sanderscynthia@hernandez.info,img/obama.jpg +Martin Perkins,893-17-7420,28798,"93650 Daniel Loaf +East Jessicaland, IL 55654-0085",1973-04-29 15:33:18,0b:b2:3b:0b:c8:71,bellkimberly@stone-ross.com,img/obama.jpg +Dr. Denise Garcia,477-42-8964,12054,"9904 Mark Valleys +West Jennifer, WA 97365",2007-08-01 02:27:02,3a:41:3d:3d:f1:06,wmoore@hotmail.com,img/obama.jpg +Allison Hurst,746-99-2459,78358,"USCGC Cochran +FPO AP 98591",1984-09-15 01:04:42,5a:b3:ef:3b:e5:98,gregoryforbes@gmail.com,img/obama.jpg +Melanie Gould,137-28-2670,87666,"402 Patricia Centers Suite 275 +Foxmouth, HI 08129-4248",1957-01-03 06:36:10,8e:a4:e7:0b:2e:97,nunezstephanie@wells.com,img/obama.jpg +Lydia Payne,062-06-9880,47273,"057 Miller Plain +Arthurbury, NH 11093",1989-04-02 17:30:30,6f:93:54:19:0e:fd,lmorris@ochoa.com,img/obama.jpg +Daniel Willis,707-23-3696,07195,"128 Welch Dam +Bentleyhaven, NY 17815-7559",1965-10-02 08:21:30,84:ad:d5:2a:7e:d9,lisakline@hanson-martinez.com,img/obama.jpg +Veronica Figueroa,256-47-7286,98964,"1136 Bishop Station Apt. 682 +Jeremybury, AR 68970-1812",1996-01-18 05:52:20,94:1d:55:cf:4c:f2,john44@yahoo.com,img/obama.jpg +Matthew Garcia,514-31-7942,19343,"1374 Douglas Meadows Apt. 386 +North Stevenhaven, VT 62266",1953-01-22 03:43:54,03:b3:37:f0:cb:e8,mcphersonderrick@lang.com,img/obama.jpg +Zachary Houston,658-03-4297,92804,"819 Compton Valleys +Lake Maria, AK 19040",1962-12-09 19:54:22,fc:f8:8d:2e:19:b8,michaelwilliams@gonzalez.biz,img/obama.jpg +Daniel Joyce,221-40-9650,28571,"73577 Wilson Terrace Suite 245 +Jacobville, MT 38245-2556",1974-04-03 18:56:53,20:19:55:30:5e:9d,gtorres@gmail.com,img/obama.jpg +Marvin Wyatt,065-62-1234,58784,"Unit 9699 Box 8815 +DPO AE 85875",1998-03-02 02:28:43,08:ea:e9:fe:06:93,samantha05@fitzgerald.org,img/obama.jpg +Kendra Nelson,002-88-5029,11844,"0075 Lopez Springs Apt. 061 +Ashleymouth, MH 96423",1962-05-02 13:21:50,3d:28:71:d9:fd:e1,gerald84@phillips-cherry.com,img/obama.jpg +Devin Rogers,063-13-5184,99019,"049 Amanda Mount +Rickyland, NM 89856-0411",1942-07-16 22:48:01,60:f0:34:ad:9a:2f,smithduane@hotmail.com,img/obama.jpg +Cody Jackson,739-76-7335,13225,"7572 Robert Park Apt. 361 +Trevorborough, NM 40623",1964-12-20 20:40:00,76:46:0e:81:53:4d,halemary@gmail.com,img/obama.jpg +Nicole West,658-22-2689,45091,"659 Richardson Shores +Jasminebury, PW 53557-6262",1989-12-10 12:41:19,4f:5c:be:1a:f0:74,damonblack@hotmail.com,img/obama.jpg +Heidi Douglas,655-14-6206,93565,"331 Thompson Run +Mariatown, NC 48655-5376",2005-11-06 00:39:52,1d:04:a9:d3:aa:42,sarahfox@hardy-mays.com,img/obama.jpg +Jessica Cohen MD,513-89-7660,63509,"05730 Trevor Row Suite 778 +North Fernandomouth, MA 50478",1923-07-29 20:25:37,45:58:41:a4:a5:f3,valvarez@harper.com,img/obama.jpg +Alexandra Howard,084-23-3960,19331,"1431 Montgomery Keys Suite 183 +Andrewborough, ID 15443-1280",2015-08-24 15:13:03,49:b1:f7:f9:32:ca,christopher24@hotmail.com,img/obama.jpg +Joseph Young,405-71-0542,26835,"869 Robert Shoals Suite 219 +Burnsville, DC 80781",1978-01-17 07:11:12,28:3d:33:e6:1c:f9,qcopeland@morales.com,img/obama.jpg +Jessica Roberts,672-76-8447,60077,"79987 Porter Summit Apt. 288 +Andreaburgh, PA 68965",2014-06-24 15:54:04,9b:52:18:bd:61:6b,carmen83@yahoo.com,img/obama.jpg +Curtis Howard,416-67-2204,16611,"1120 Daniels Divide Suite 195 +Johnburgh, ME 68697",1943-05-17 13:26:47,b1:9d:e4:db:a2:18,vincent99@yahoo.com,img/obama.jpg +David Edwards,809-55-8342,27401,"8231 Logan Court Suite 255 +Sextonmouth, MO 24271-2641",2012-02-26 07:26:16,17:d1:e5:7c:55:0d,christopherespinoza@phelps-wilcox.org,img/obama.jpg +Robert Taylor,771-93-1994,14812,"17669 Singh Forges +New Mitchellton, WV 25446-7859",1949-06-13 17:52:52,4c:04:68:84:d3:e1,ashley89@miller-thompson.org,img/obama.jpg +Travis Sanders,480-83-1786,43001,"059 Jackson Green +Jessicastad, WI 28593",1960-06-19 20:11:48,8c:b6:94:8c:82:f0,hmyers@gmail.com,img/obama.jpg +Gloria Graham,559-16-3359,99790,"577 Matthew Groves +Lake Jeffrey, OH 66155-2429",2004-10-10 10:15:15,2f:6e:a7:ea:21:cf,ihoffman@pacheco.com,img/obama.jpg +Brittany Rodriguez,661-89-8260,15924,"514 Stephanie Plaza Suite 815 +Macdonaldfort, VA 60378",1995-11-22 23:01:17,c4:cb:64:29:26:de,keith41@rivera.com,img/obama.jpg +Scott Williamson Jr.,153-96-9972,42491,"602 Burton Common Apt. 935 +Port Wesleyberg, LA 40403-7730",1977-08-26 07:33:54,54:b8:88:8e:78:7c,tiffanyscott@murphy.com,img/obama.jpg +Paul Johnson,468-02-9185,33630,"6599 Anderson Avenue +Ashleyburgh, NY 49542",1965-01-11 01:39:25,c9:cb:37:11:b3:cc,lauraberry@gmail.com,img/obama.jpg +Monica Simpson,866-18-8851,61996,"19670 Rose Brooks Apt. 899 +New Patrickside, NM 14336-1676",1990-10-10 14:03:33,67:78:c4:f6:97:5a,reedashley@ramirez.com,img/obama.jpg +Jasmine Owens,560-39-5856,74135,"602 Price Pass Suite 041 +Duncanshire, AS 34217-7687",1981-07-28 12:10:26,95:bb:df:32:d5:4c,barnesjohn@hotmail.com,img/obama.jpg +Sharon Cook,274-76-4759,82033,"9779 Fleming Roads +Daleside, OK 04557",2002-01-11 05:05:14,5f:d4:5e:ba:8c:70,becky82@hotmail.com,img/obama.jpg +Laura Baxter,669-53-8548,63715,"11000 Hale Underpass Suite 216 +East Jeanstad, AZ 43227",1922-11-03 16:09:14,b8:da:a6:83:e9:0a,moratravis@mcdonald.net,img/obama.jpg +Elizabeth King,202-55-8763,47404,"13016 Norman Pines +Simmonsside, MH 67924",1937-12-09 21:45:31,bc:3c:b8:b1:9d:a1,julianhenderson@yahoo.com,img/obama.jpg +Jason Mcdonald,795-73-2561,18486,"4126 Alvarez Loaf +Port Carolynfort, TX 44245",1948-10-20 02:41:01,48:c9:e5:21:aa:1e,jason38@williams-smith.com,img/obama.jpg +Thomas Austin,243-85-8040,33724,"764 Chandler Summit Apt. 898 +West Caitlinstad, NJ 40466",2002-10-23 12:15:05,d6:07:09:98:20:55,chandlerruth@jones.info,img/obama.jpg +Christopher Cruz,438-24-0632,22773,"PSC 7787, Box 7813 +APO AP 38084",2010-07-25 20:18:05,9e:de:1f:d2:b6:6d,kimberly27@hotmail.com,img/obama.jpg +Emily Cobb,099-50-1902,18962,"726 Knight Estate +Mccormickmouth, ND 52447",1932-04-04 06:16:43,e9:c8:2e:e0:11:84,hillandrew@hotmail.com,img/obama.jpg +Dawn Knight,720-51-2321,17290,"9730 Davis Run Suite 888 +Macdonaldshire, GU 75204-5609",1944-03-21 22:44:34,9c:8e:4c:c3:67:dd,rebecca98@acosta.info,img/obama.jpg +Stephanie Mccann,827-62-5614,91762,"43529 Owen Fork +Sherryview, ND 13154-8652",1958-06-23 10:17:07,dc:94:cb:a8:dc:cf,frank23@yahoo.com,img/obama.jpg +Alexander Mason,014-68-3863,39007,"13498 Frost Corner Apt. 591 +Bradleyland, RI 42117",2002-04-25 08:12:21,db:25:7d:b7:3d:b6,walkeramanda@yahoo.com,img/obama.jpg +Debbie Anderson,266-66-5003,44381,"USS Warren +FPO AP 69760-8684",1974-06-14 20:41:57,e0:a1:f5:c9:bc:9c,jwilliams@mcdonald.net,img/obama.jpg +Jessica Anderson,163-45-0218,48122,"81134 Cohen Stream Suite 348 +Timothyton, KS 51290-0405",1926-11-02 03:10:30,c7:d9:e6:b3:45:d6,powersmichele@moore.com,img/obama.jpg +Jessica Martin,459-66-9832,96925,"PSC 4739, Box 3816 +APO AP 59709",1987-09-20 09:27:50,fb:5d:f1:fa:4f:dd,jrojas@ross.com,img/obama.jpg +Claudia Terrell,781-37-6946,65317,"2455 Bryan Forge +North Amberton, HI 22911-9449",1986-02-07 20:43:04,91:57:52:a6:8b:a5,dominique58@powell.com,img/obama.jpg +Eric Martinez,359-79-7929,20808,"02976 Victoria Ports Apt. 487 +Lindsayshire, AZ 15221",1970-09-10 19:55:41,33:0e:14:6f:b4:54,ajohnson@gmail.com,img/obama.jpg +Gary Juarez,010-29-1777,91292,"39992 Cox Ridges +Hortonfurt, ID 34568-3384",1982-10-20 20:35:45,d7:77:ed:db:79:bb,blackwellalan@martinez.info,img/obama.jpg +Alicia Thompson,560-90-0704,12537,"55588 Singh Turnpike Apt. 407 +Victoriaville, CO 52355",1967-03-13 06:06:38,56:34:5e:f2:89:47,rachelgraves@patterson-flowers.net,img/obama.jpg +Tiffany Harris,320-86-7690,27621,"957 Hayley Forks Apt. 407 +Christinaland, ME 80681-4241",1957-04-09 10:04:15,8e:f3:31:6c:bb:79,kristengeorge@yahoo.com,img/obama.jpg +Amber Johnson,859-02-8237,70090,"11872 Austin Throughway +North Alex, VT 51024",1940-10-11 02:55:05,df:8d:9f:d1:20:f8,gwilliams@johnson.net,img/obama.jpg +Tina Gilbert,646-51-8132,44992,"068 Johns Tunnel Apt. 205 +Wallaceborough, GU 57833",1934-08-22 11:04:41,c5:e1:52:d6:d3:73,ogentry@hotmail.com,img/obama.jpg +Amanda Bell,541-48-3598,43997,"668 Kevin Tunnel Apt. 135 +East Travischester, TN 67984-9678",2011-03-08 14:11:39,43:bb:8f:a9:49:51,nicole45@gmail.com,img/obama.jpg +Carrie Collier,037-98-7297,01236,"242 Rollins Plains Suite 321 +Alexandertown, CT 93341",1993-11-24 23:39:18,9e:b4:ae:cd:ca:16,ntaylor@allen.com,img/obama.jpg +Todd Wright,049-58-2714,72572,"772 Graves Meadows Suite 717 +Andersonhaven, WY 42498-0442",1964-09-03 05:25:09,97:bd:f9:c0:13:24,danielcoleman@jones-vargas.biz,img/obama.jpg +Steven Moore DDS,702-57-8212,43532,"57399 Andrew Terrace Apt. 561 +Meganhaven, AZ 39085",1964-06-01 08:23:27,a0:3a:ce:a1:39:53,jamesmclean@gmail.com,img/obama.jpg +Jared Ferguson,028-52-1725,77951,"8094 Matthew Port +South Julieside, NV 63075-6936",1917-07-21 04:58:44,3b:03:12:9d:52:52,xbell@gmail.com,img/obama.jpg +Terri Haley,651-33-4782,41354,"69926 White Creek Suite 576 +Daughertybury, VT 32180",1956-05-20 12:22:27,7b:d0:98:8e:e5:fe,betty69@clarke-estrada.info,img/obama.jpg +Nicole Fritz,436-95-8011,61788,"0124 Orr Orchard +New Natashaland, DE 53672",2007-02-11 03:57:05,25:d4:9f:ce:8b:a8,jordankaren@hotmail.com,img/obama.jpg +James Carrillo,683-64-7421,79929,"707 Ballard Hills Suite 965 +Christophermouth, SD 59545-5497",2011-01-18 07:24:52,2a:84:23:03:2e:b8,stokesthomas@yahoo.com,img/obama.jpg +Susan Frost,558-13-7387,01275,"3609 Mcguire Station +Karenberg, AL 83559",1947-08-21 02:14:26,c8:0e:26:b2:8b:6a,castillomelissa@gmail.com,img/obama.jpg +Stephen Ellison,377-22-0534,37184,"24028 Cheryl Stream Apt. 491 +New Nicole, PA 82724-8234",1944-11-09 19:59:01,cb:6f:b2:49:e4:93,erica02@gmail.com,img/obama.jpg +Christine Lopez,373-11-8254,22537,"71634 Francisco Underpass +South Vincent, WI 80201-5272",1985-03-27 09:31:10,3a:68:78:a0:a2:a0,katelyn68@hotmail.com,img/obama.jpg +Lauren Walsh,370-08-8656,84885,"4701 Christopher Valley Apt. 304 +Mcdonaldstad, MS 14778-8007",1955-02-04 08:14:19,81:90:c5:27:00:2f,katherine78@hotmail.com,img/obama.jpg +Danielle Martinez,148-10-9311,37803,"53262 Murphy Passage +North Anthony, WI 25735-6139",1999-01-29 17:50:36,27:9b:20:5f:dc:83,psmith@holland.com,img/obama.jpg +Lori Adams,555-34-5765,91234,"950 Sanders Motorway Apt. 218 +South Cassandra, FL 69145",1986-10-29 10:36:23,8d:e4:83:5a:32:a1,frankdoyle@hotmail.com,img/obama.jpg +James Robinson,429-33-8988,97320,"6948 Hall Corners Suite 098 +Leviton, FL 47136",1988-02-11 12:11:16,dc:7f:37:bc:3b:a4,ecook@fitzgerald.com,img/obama.jpg +Shannon Simpson,387-20-8952,17432,"4080 Maria Fort Apt. 247 +Cherylborough, MS 47539-2502",1948-07-13 16:48:19,e4:cc:df:4b:40:7b,ijordan@cooke.com,img/obama.jpg +Jacob Gordon,636-01-3242,69850,"534 Hammond Forge +Jonesborough, IL 71007",1991-07-24 13:18:37,69:54:eb:1d:76:cc,gcoleman@yahoo.com,img/obama.jpg +Linda Brown,883-60-0051,55512,"9118 Melanie Manor Suite 530 +Port Theodorehaven, TX 87064",1945-05-01 16:22:08,6c:7e:5e:8b:8f:08,brookewilliams@clayton.com,img/obama.jpg +Joseph Mitchell,669-95-5595,61628,"459 Herrera Road Suite 029 +Lake Cheyenne, DE 45536-7678",1951-04-13 11:13:15,f4:ce:29:19:06:47,gorozco@hotmail.com,img/obama.jpg +Arthur Waller,286-17-9529,39678,"8835 Autumn Passage Apt. 096 +Jennifermouth, SC 15755-3413",2016-09-16 12:50:40,ad:84:fd:17:ce:a9,halltracy@santos.net,img/obama.jpg +Terrance Williams,046-83-0742,45446,"945 Deleon Vista Apt. 046 +Bruceville, MP 88135",2000-01-09 08:53:43,96:77:a9:d5:ab:06,swoodard@odonnell-reynolds.net,img/obama.jpg +Mark Solis,566-13-6437,10431,"814 Brittany Mountains Apt. 803 +Jessehaven, MA 98091-2380",1924-10-22 10:45:50,e6:15:e2:b7:6e:90,alison11@yahoo.com,img/obama.jpg +Jason Wallace,747-01-9033,99202,"120 Pham Dale Suite 705 +Knightville, NM 87258",1945-07-18 23:51:02,49:c1:5f:da:a0:bf,michaelhowell@trevino-bradley.com,img/obama.jpg +Nicholas Johnson,111-26-2706,28448,"026 Haney Mountains Apt. 266 +North Jason, AZ 93091",2015-12-20 06:29:40,fc:cd:e4:ec:16:d8,csanders@gmail.com,img/obama.jpg +Carol Stevens,665-13-0639,47093,"22590 Wyatt Shoal Suite 569 +South Rachel, MS 63338-4998",1985-01-12 20:37:38,1a:3f:e2:cb:96:4c,stephanie74@yahoo.com,img/obama.jpg +Ronald Perry,592-78-9581,02439,"56156 Alexis Causeway Apt. 194 +Port Bryan, UT 96773-6593",1964-06-10 04:35:58,59:37:10:fe:61:b5,kevin22@yahoo.com,img/obama.jpg +Jessica Conner,149-86-9447,74395,"2469 Alexander Club +New Annetown, PR 18456-8132",1928-07-26 13:51:57,24:e0:7d:63:a5:1c,jeffery21@hotmail.com,img/obama.jpg +Carolyn Rios,593-37-3329,52842,"1660 Katherine Haven +Ryanhaven, OK 62925",1989-09-15 11:02:16,5a:64:a1:10:04:a6,ymiller@marshall.com,img/obama.jpg +Joseph Nash,499-67-7048,95588,"4560 Mueller Lodge Suite 579 +Browningbury, WA 26063",2016-06-24 20:49:52,42:fd:1e:94:d0:14,aprilfloyd@herrera.com,img/obama.jpg +Gabriella Castro,180-05-6982,36906,"82493 Davis Parks +Port Patrick, LA 94649-7957",1979-12-28 03:08:13,6f:3a:8c:d6:42:9c,terristone@yahoo.com,img/obama.jpg +Alex Williams,039-84-5320,57346,"6913 Cynthia Skyway +East Alexanderside, MO 56898-5274",1937-02-27 17:04:44,95:57:41:63:eb:01,khall@yahoo.com,img/obama.jpg +Steven Lambert,340-18-1402,08050,"71765 Curtis Fords Apt. 113 +Starkshire, GA 29090",1923-12-18 15:38:17,44:98:ef:06:f1:9f,briancardenas@garcia-suarez.com,img/obama.jpg +Samantha Alexander,022-97-6083,07249,"54575 Cameron Dale Suite 798 +Blackview, IL 79543-0549",2014-12-28 02:48:26,bb:1f:1a:40:d7:fd,randalljoel@hotmail.com,img/obama.jpg +Kelly Lopez,188-77-7535,36860,"PSC 8626, Box 2434 +APO AE 57155",1940-05-09 19:31:47,2f:16:ee:df:63:24,robert18@gmail.com,img/obama.jpg +Vanessa Fitzgerald,131-96-2481,95467,"50136 Cynthia Causeway +Alexandriafort, DC 59907-7458",1946-12-26 22:22:08,3d:e9:97:e2:16:a3,mclaughlinmary@yahoo.com,img/obama.jpg +Krista Long,519-35-1235,10889,"1972 Ramirez Turnpike +Port Sean, OK 15807-3455",1977-04-21 11:47:08,4e:d4:c1:91:df:98,courtneyreynolds@hotmail.com,img/obama.jpg +Sarah Stevens,008-88-6682,76681,"515 Ward Spurs Suite 288 +Smithshire, WI 61720-4650",2003-01-07 21:04:22,dc:6a:30:68:1b:b4,heather99@mann.com,img/obama.jpg +Michael Martin,024-90-1460,88811,"839 King Point +Port Desireeville, IN 61384",2006-09-24 01:04:16,9c:0d:52:e2:3f:cb,hstevenson@yahoo.com,img/obama.jpg +Ronald Mata,811-16-1457,92335,"466 Scott Parkway +West Jackchester, AK 85715",1989-10-21 21:12:50,46:b3:01:d7:33:07,angela45@kramer-moreno.org,img/obama.jpg +Cynthia Miller,226-33-5851,43455,"7994 William Trail +Jeffreyland, CA 96773",2003-12-29 21:18:26,02:19:45:b8:6d:88,upham@yahoo.com,img/obama.jpg +Karen Chen,203-19-4774,09791,"6089 Alice Village +Pearsonton, ID 47584-1229",1950-01-30 14:18:55,3c:de:f6:05:a6:74,atrujillo@anthony.com,img/obama.jpg +Emily Potter,852-16-6822,01139,"296 Samuel Estates Apt. 138 +Kevinside, AR 22542",1973-01-01 08:44:44,62:ab:bb:70:45:9d,khansen@yahoo.com,img/obama.jpg +Amanda Ortega,199-42-1217,74234,"058 Marquez Highway +West Cynthiamouth, MD 20766-2804",1972-09-27 23:15:16,84:37:92:27:39:0e,rwells@hotmail.com,img/obama.jpg +Kayla Yates,321-84-1446,63501,"212 Ronald Light +Davisport, FM 41680",1990-05-14 10:52:51,a8:eb:a3:88:aa:c9,zphillips@hotmail.com,img/obama.jpg +Ashley Martinez,742-65-8935,77377,"PSC 0145, Box 8722 +APO AP 25690-2434",1930-09-17 03:43:48,2a:7f:99:6e:39:8e,steven29@miller.com,img/obama.jpg +Valerie King,298-29-5362,94103,"9657 Williams Stravenue Suite 056 +South Mary, AR 97793",1968-08-31 02:40:13,76:0c:0a:1a:ee:e5,donaldcaldwell@jackson.com,img/obama.jpg +Gabriel Mills,187-26-2373,32007,"9119 Avila Mountains Suite 444 +Rhondaland, OK 33269",1945-05-12 18:46:09,43:41:c8:12:53:03,kenneth64@yahoo.com,img/obama.jpg +Danielle Bates,388-72-0873,78123,"05751 Tapia Knoll +Chambersview, KY 45220-7341",2001-06-16 00:32:45,c1:1c:11:a8:4d:a2,nathanyang@gmail.com,img/obama.jpg +Andrea Allen,495-15-9026,44401,"197 Carla Rue Suite 052 +Port Melissabury, AK 60852-1719",1980-02-26 00:42:44,bf:fb:fb:97:a7:5e,gomezchristopher@hotmail.com,img/obama.jpg +Wendy Woodard,410-49-7372,93228,"9520 Carlos Wall +West Brian, WY 03184",1956-12-17 00:12:23,15:da:a4:45:d5:88,dawnmeyer@hotmail.com,img/obama.jpg +Christine Martin,887-27-7462,65665,"55758 Mitchell Haven Apt. 535 +West Davidview, MO 85006",2009-06-08 01:56:39,43:cf:63:31:47:2f,joel62@smith.com,img/obama.jpg +Brooke Krueger,758-59-7895,05073,"866 Logan Turnpike Suite 129 +Evansshire, AL 34264-3237",2011-09-19 04:02:50,a8:60:f5:4b:0d:dd,kennedyrichard@barker-hill.biz,img/obama.jpg +Erica Dunn,714-23-6606,99655,"PSC 0301, Box 0775 +APO AA 21611",2001-05-04 13:03:59,df:04:a1:91:de:da,tdoyle@smith-delacruz.info,img/obama.jpg +Andrew Berg,447-09-4166,27823,"8329 Justin Light Suite 900 +West Brittany, FL 53165-3760",2015-08-09 08:59:53,71:d3:c0:f1:5b:78,michelle86@gmail.com,img/obama.jpg +Christopher Miller,145-78-0597,23831,"55543 Anna Tunnel +Petersonberg, PR 10183",1928-10-19 03:46:04,dc:72:0f:79:0e:da,erobinson@barnes.com,img/obama.jpg +Howard Davis,731-10-5908,16286,"58614 Steve Highway +New Ashley, ME 60621",1962-01-30 04:26:22,55:27:c1:69:47:51,rebecca77@young.net,img/obama.jpg +Gregory Sanchez,025-99-2756,54103,"507 Megan Ferry Suite 641 +Jasonview, PR 52212",1946-08-22 14:17:59,33:17:f2:58:10:f4,sarahjohnson@hall-kennedy.com,img/obama.jpg +Karen Duncan,684-13-3112,56713,"13885 Wheeler Mills +Boltonborough, TN 93406-5370",1998-07-20 04:44:05,1f:6c:43:8c:21:a4,danielle35@hotmail.com,img/obama.jpg +Laura Mendez,604-70-8221,66559,"252 Becky Meadows +East Terrance, IN 71073",2005-06-03 02:18:50,13:79:be:4f:ec:06,gregtaylor@williams.com,img/obama.jpg +Nathaniel Brown,010-65-3964,45649,"2708 Hoffman Roads Apt. 887 +Grayhaven, LA 32500-8494",1930-02-03 20:18:14,5c:9f:4c:b0:7a:d7,dnewman@yahoo.com,img/obama.jpg +Nathan Herrera,325-44-5520,38316,"77776 Martinez Ways Apt. 470 +Lake Lisashire, GA 74842",1944-09-03 05:13:53,1a:09:72:a8:57:58,ponceshawn@hotmail.com,img/obama.jpg +Molly Brooks,757-01-0880,33887,"93868 Parker Passage Suite 505 +Allenport, RI 98955",1984-02-09 03:24:07,d2:fc:90:5d:b4:dd,kenneth53@turner-hicks.com,img/obama.jpg +Jonathan Wright,380-96-0150,10166,"PSC 9140, Box 1109 +APO AE 09629",2009-06-19 05:35:15,6c:ec:c0:7c:f9:d1,rperez@gmail.com,img/obama.jpg +Laurie Shaw,082-32-1867,58332,"672 Kenneth Shore +Schmidtshire, AL 67458-7716",1924-10-13 09:36:33,d3:6d:25:b6:e5:60,nancy62@frost-anderson.net,img/obama.jpg +Sydney Johnson,505-14-6735,40604,"00564 Melissa Isle +West Bobbyburgh, IA 49358",1996-03-03 20:51:21,48:5d:3e:94:55:81,zcannon@gmail.com,img/obama.jpg +Adam Ellis,555-47-1513,74589,"1191 Morris Burgs Suite 756 +Lake Richard, MH 36565-5320",1971-11-14 17:58:17,5c:13:5a:96:9d:c9,bnguyen@gmail.com,img/obama.jpg +Robert Hernandez,506-52-0905,81633,"95866 Ross Fall Suite 151 +Alexandraland, FL 70711",1964-07-25 23:54:57,c9:2d:5f:2c:35:23,websterhenry@hotmail.com,img/obama.jpg +Diana Martinez,358-69-5011,22242,"9570 Dylan Walks Apt. 754 +Higginsmouth, MD 39968",1925-04-07 03:01:29,2d:4d:c1:c4:c7:bc,william28@castillo.com,img/obama.jpg +Michael Duncan,542-61-0238,56647,"7329 Haas Extension Suite 051 +Gregoryville, CA 04938-1753",1939-12-07 08:46:24,90:71:b1:f5:60:17,lucascampos@gmail.com,img/obama.jpg +Daniel Wright,397-57-3412,06700,"997 Robert Camp Apt. 551 +Lake Kyleshire, VA 58435",1930-06-16 19:36:05,73:5e:48:57:3d:eb,larry16@ortega.com,img/obama.jpg +Patricia Shepard,791-65-2158,82505,"4464 William Extension Apt. 951 +Raymondfurt, WV 23270-6674",1994-03-25 18:32:18,bb:9e:73:72:1d:03,judyroberts@gmail.com,img/obama.jpg +Carol Zamora,623-64-8132,22509,"3974 Andrew Union +East Barry, SC 24712-1104",1987-09-24 13:37:44,3a:08:4f:31:51:ca,jason78@gmail.com,img/obama.jpg +Cathy Downs,605-89-7927,40324,"89367 Charles Vista Suite 754 +Hansonton, NE 12388",1928-06-10 18:05:17,56:f8:e5:1c:db:da,cassandra23@reid.com,img/obama.jpg +Beth Anderson,786-06-6812,04548,"0195 Kevin Meadows Apt. 006 +Lynchfort, MI 49436-9721",1993-06-18 07:02:09,e3:ce:42:b0:85:87,edwardslori@hotmail.com,img/obama.jpg +Keith Morris,005-44-2021,17590,"6587 Brown Glen Suite 708 +Sandersport, GA 96068-0177",1967-03-16 02:27:11,e4:21:d4:ac:f8:20,paige55@gmail.com,img/obama.jpg +Kelly Murphy,045-20-8356,41514,"Unit 5951 Box 1661 +DPO AP 51686",1929-10-16 09:44:03,ab:60:2c:25:29:3e,wellsjohn@brown.net,img/obama.jpg +Emily Davis,595-40-1708,48403,"4471 Matthew Street +Nguyenbury, CA 09967-9275",1962-12-01 11:05:06,9f:a3:6d:96:25:27,mariaklein@hotmail.com,img/obama.jpg +Brianna Garcia,785-86-7931,43059,"329 Donna Canyon Suite 783 +East Bradleyport, LA 66213",1949-01-19 13:26:08,87:1b:a7:eb:a1:e7,lisarussell@gmail.com,img/obama.jpg +Megan Whitehead,128-09-3554,31982,"7228 David Isle Suite 193 +Kathrynshire, AK 57803-6719",1961-01-17 08:59:17,85:a6:cc:a4:a8:92,justinjimenez@weber.com,img/obama.jpg +Joy Beck,149-08-7501,36526,"330 Smith Place +North Sharon, IN 30113-3503",2007-09-19 11:15:29,bb:e2:71:3d:ae:30,nicholas81@gmail.com,img/obama.jpg +Jesse Li,793-84-8968,62754,"07312 Kathleen Island +Donaldmouth, WA 01409-2575",1973-07-07 11:29:11,79:b6:a6:78:fc:f0,betty32@gmail.com,img/obama.jpg +Ms. Jennifer Smith,225-47-2396,24627,"898 Ball Stravenue Apt. 844 +Lake Nicholas, KY 13431",1925-08-21 16:14:54,28:09:8b:64:46:13,xpetersen@hernandez.net,img/obama.jpg +Alexander Johnson,541-89-2816,02146,"PSC 3308, Box 3579 +APO AP 59306",1973-08-24 11:39:28,22:dd:ba:d8:26:c1,mhall@may.com,img/obama.jpg +Dennis Smith,328-22-5114,89755,"049 Victoria Alley Apt. 791 +Davidburgh, KY 50626",1997-03-26 00:21:16,fb:13:e7:5a:3b:81,sandra91@lang.net,img/obama.jpg +Joshua Rivera,735-60-4637,02170,"7498 Casey Common +Lake Brianstad, LA 03864-4928",1989-01-26 20:12:43,cc:65:bc:b3:ad:8b,fdavis@brown-moore.com,img/obama.jpg +Jamie Hunter,697-42-0448,70847,"4648 Brian Landing Apt. 218 +Reedbury, SC 60908-0823",1999-02-02 08:44:18,a5:17:02:c0:02:72,kstrong@yahoo.com,img/obama.jpg +William Davidson,660-63-6033,71118,"432 Thomas Mill +Port Christina, WV 45403-7533",1946-05-07 02:35:53,b0:5a:7b:8d:cd:a8,gwood@yahoo.com,img/obama.jpg +Rebecca Jones,247-02-1455,15584,"083 Austin Center +New Richard, GA 75886-9816",1997-03-07 06:31:36,c1:c9:e8:09:0b:bd,bellamber@bautista-casey.com,img/obama.jpg +Jennifer Bell,018-93-9540,66463,"9933 Coleman Hill +Amandachester, KS 34927-1945",1935-07-04 16:19:39,20:a3:aa:18:31:27,wesleysimmons@gross.net,img/obama.jpg +Phyllis Ritter,271-95-4119,49079,"45940 Riley Highway +Emilybury, MA 33963",1961-06-25 12:30:04,49:e2:03:d7:7c:34,jameswebster@gmail.com,img/obama.jpg +Sarah Jones,312-04-8325,15213,"474 Rivera Points Suite 979 +Snydershire, NY 58231-8045",1970-04-24 15:30:35,95:6b:9f:e4:67:77,hlowery@gmail.com,img/obama.jpg +Timothy Maldonado,061-28-0210,24786,"954 Kelly Plaza +East Mike, VI 25344-6611",1946-01-22 20:56:18,e1:d5:34:6a:b4:24,andersonseth@hotmail.com,img/obama.jpg +Erik Jones,370-04-7417,15563,"7746 Schwartz Grove +West Stephenport, DE 79484-6958",2012-05-26 17:25:58,e5:de:24:2a:96:5a,walkerrandy@yahoo.com,img/obama.jpg +Angel Rojas,726-22-1994,99473,"28716 Brian Lake +Sierraborough, PR 15501-2020",1989-04-24 00:51:01,12:81:8f:7f:d7:ed,veronicabrowning@young-mahoney.com,img/obama.jpg +Shawn Taylor,159-03-3308,86979,"670 Brady Prairie +Lake Margaretbury, IA 60494",1986-07-15 19:21:36,3b:2b:e5:ac:57:14,veronica67@hotmail.com,img/obama.jpg +Richard Gomez,134-35-6345,40169,"73942 Hailey Cape +North Christineville, MH 94311",1973-09-23 15:33:16,30:4b:47:65:26:93,jmoore@ruiz.biz,img/obama.jpg +Kathy Watkins,271-99-5202,66158,"8954 Cuevas Wells +Watsonburgh, CT 47663-1689",1955-12-14 05:55:28,3a:15:51:5c:ad:1a,darlene59@patterson.biz,img/obama.jpg +Michael Moss,714-13-9559,59688,"Unit 7430 Box 2895 +DPO AE 70140",1951-06-10 02:45:43,a8:f9:cf:47:d8:09,travisrowland@nelson-webster.org,img/obama.jpg +Katherine Adkins,708-92-2262,63522,"9171 Carr Coves Apt. 976 +Orozcotown, NE 14073-4282",1969-09-09 06:03:42,f9:85:ba:2b:c3:92,erinhanson@baker.com,img/obama.jpg +Mark Ramsey,428-96-8350,64929,"827 Harvey Loaf Apt. 293 +Johnathanberg, IL 34524-1658",2007-11-28 14:18:36,b9:e8:06:8e:0e:9b,jillchen@rogers.biz,img/obama.jpg +Heather Massey,298-02-1356,13154,"880 Martin Gateway Apt. 548 +Derekland, MN 13958",1955-08-05 10:06:41,a8:4d:43:59:da:89,housejoshua@matthews.com,img/obama.jpg +Steven Huerta,421-85-9610,07168,"3549 Lorraine Ways Apt. 790 +Lake Dianehaven, KY 46456",1924-02-06 04:51:23,e2:24:89:4c:e2:4d,diane42@hotmail.com,img/obama.jpg +Brittany Ward,184-63-6343,88111,"367 Cooley Streets Apt. 286 +Wilsonchester, NE 56198",2004-11-30 08:13:42,29:80:97:21:0a:0a,emiles@yahoo.com,img/obama.jpg +Lisa Gross,221-25-1110,81854,"46069 Colleen Cliff Suite 645 +New John, KY 48720-0886",1925-10-16 02:15:44,c7:00:12:fb:c1:98,garywebb@gmail.com,img/obama.jpg +Kevin Lewis,575-20-9138,61080,"6964 Jason Cape Suite 554 +North Katherineborough, OR 97545",1972-01-30 18:39:32,c8:1a:55:2f:8c:72,victoriashelton@clark.com,img/obama.jpg +Erin Joseph,584-56-4140,13449,"6873 Robertson Point +Randallland, VT 55167-5327",1993-09-23 10:10:21,44:74:e8:84:a5:0d,stoutsharon@greene.com,img/obama.jpg +Nicholas Munoz,841-95-6312,96693,"68158 Hailey Knoll +Port Andrewmouth, NC 63562-1488",1978-09-05 02:14:42,60:19:59:54:dc:d2,sarah91@lewis.biz,img/obama.jpg +Ruth Carey,008-86-9050,85899,"454 Crystal Burg Apt. 336 +Brianborough, NE 15646-8753",1971-02-28 12:24:36,b4:e2:5c:ab:bf:18,lisagonzalez@ross.info,img/obama.jpg +Carolyn Snyder,408-48-9356,41314,"50822 Gomez Summit +Russellshire, UT 39723",2013-10-11 08:28:42,55:3e:a0:bf:73:c1,skinnerthomas@ward.com,img/obama.jpg +Raymond Garcia,650-20-6597,52886,"58636 Welch Pass Suite 665 +Robinsonmouth, NC 71246",1973-02-05 23:04:25,d8:95:1a:41:9c:d5,joneskim@robinson.info,img/obama.jpg +Christian Wolfe,008-25-7624,11936,"4309 Ian Grove Apt. 435 +Morganville, MN 31715",1968-01-31 08:42:43,ef:57:50:de:76:eb,kevin88@blanchard-miller.com,img/obama.jpg +Stacey Cooper,501-12-0483,05479,"4089 Tracey Inlet +West Edwinhaven, KS 89194",1973-12-13 16:29:53,20:50:f3:ff:3c:c0,melissabarron@hotmail.com,img/obama.jpg +Jose Herrera,636-26-5612,81779,"6852 Shannon Valleys Apt. 899 +Lake Scottville, WA 72113",2008-07-21 11:09:57,d1:57:3e:17:ec:f2,yvonne08@yahoo.com,img/obama.jpg +Kevin Branch,657-15-4449,65978,"893 Mosley Haven Apt. 070 +North Joy, FL 94893-6877",1942-06-10 15:03:42,89:41:bd:77:cb:a5,igreen@smith.com,img/obama.jpg +Christina Phelps,897-80-4631,51909,"7080 Mcclure Motorway +Youngfort, SD 09029",1992-07-19 20:52:32,56:7b:3a:fe:10:44,stevenguerrero@young.net,img/obama.jpg +Samantha Sparks,704-30-4492,04234,"USNV French +FPO AA 54069-7572",1988-12-28 05:03:04,d9:f8:b0:15:2a:58,nparker@riggs-howe.info,img/obama.jpg +Brandon Atkinson,750-53-0104,23988,"PSC 1648, Box 2665 +APO AP 04893-1644",1978-01-08 15:34:31,86:51:64:11:59:a4,angelicajones@moon.com,img/obama.jpg +Steven Flores,716-13-6262,36261,"938 Harrell Manor Suite 641 +Port Ashleytown, LA 89597-2233",1942-04-23 05:32:04,17:82:1f:f0:3c:e1,emueller@gmail.com,img/obama.jpg +Ashley Woods,680-09-7720,92729,"161 Shane Mill Suite 423 +West Michaelburgh, VT 76344",2009-04-24 07:01:15,ab:75:53:c8:9b:fd,stacypage@yahoo.com,img/obama.jpg +Harold Williams,560-80-5752,01705,"82369 Maria Way Apt. 397 +Saraburgh, OR 94012",1952-03-29 08:45:02,d1:34:cc:0f:93:4a,thunter@yahoo.com,img/obama.jpg +Karen Clark,803-86-6271,25375,"65862 Contreras Camp +South Lisaborough, IL 86666-8242",1946-05-17 07:58:31,8c:2d:90:a4:9d:16,blakethomas@yahoo.com,img/obama.jpg +Angela Jacobs,604-51-9056,69238,"4277 Wilson Hills +Port Curtis, VI 59817",1980-11-06 07:19:59,d9:12:f8:f9:30:47,bbennett@yahoo.com,img/obama.jpg +Michael Gilbert,459-03-6440,62067,"695 Gary Valleys +Taylormouth, MH 11431-9647",2007-10-28 00:58:05,f5:50:53:ac:22:d1,stacysmith@gmail.com,img/obama.jpg +Mary Miller,751-72-8057,56643,"5882 Pearson Vista Apt. 832 +Taylorborough, KY 34576-5507",1998-06-28 09:09:04,b9:7d:ff:b9:c9:75,hartmanjennifer@stewart.com,img/obama.jpg +Morgan Rogers,763-12-8866,25279,"5727 Mitchell Vista +Christopherbury, DC 17154-7808",1977-12-09 18:17:29,ba:ef:fe:55:b5:a3,ynash@gmail.com,img/obama.jpg +Ashley Sampson,781-66-9385,38847,"528 Johnston Wall Suite 735 +Floresberg, SD 85203-7785",1992-11-22 13:51:10,57:e7:9d:b0:43:74,ericasmith@soto-shea.com,img/obama.jpg +John Baker,888-55-2898,10384,"USS Ortega +FPO AA 66931",2008-04-18 03:28:37,7e:d6:77:58:8a:57,utaylor@mora.com,img/obama.jpg +Daniel Wilkerson,850-12-0240,44107,"01080 Newman Port +Cooperhaven, MT 87018",1979-06-28 01:06:21,6d:eb:98:9e:9f:55,barbaraguerrero@macdonald.biz,img/obama.jpg +Anthony Bryan,154-63-3616,83914,"18596 Cruz Track Suite 887 +Deannafort, MN 22821-0687",2006-05-27 05:35:55,7e:f4:a2:b7:43:41,daniellebrown@hotmail.com,img/obama.jpg +Ashley White,812-88-5409,91521,"829 Castillo Keys +Lake Rebeccatown, CO 61831",1974-03-11 18:52:35,3e:e9:3d:3e:a6:5a,jaimeholloway@ruiz.com,img/obama.jpg +Rachel Gutierrez,667-15-7013,66544,"6839 Flores Trail +North Angela, NH 64984-2139",1945-12-02 20:05:38,f1:ae:da:d7:1f:a0,wjordan@martinez.com,img/obama.jpg +Zachary Barton,174-58-0850,57299,"136 Jeffrey Island Apt. 925 +South Patrick, GA 71397-9889",1960-11-02 04:16:47,f6:c5:66:ea:3e:3c,kellywang@hughes.com,img/obama.jpg +Zachary Perez,593-94-4881,00849,"0506 Bradshaw Isle +Romerochester, MP 11808-6800",1939-11-02 05:31:14,73:32:90:87:8b:d9,tyrone29@gmail.com,img/obama.jpg +Bonnie Schwartz,503-58-2137,55761,"PSC 1214, Box 6550 +APO AP 85324-2774",2011-09-07 12:31:53,bd:6c:c0:54:c9:fe,robersonanthony@yahoo.com,img/obama.jpg +Christina Morris,794-60-2952,10318,"1822 Logan Ports +Grosschester, MH 62109",1951-02-02 10:42:21,06:83:d0:0f:ae:24,michael54@yahoo.com,img/obama.jpg +Daniel Perez,243-51-3248,33631,"6405 Sarah Vista Apt. 405 +Russoborough, ME 17667-1499",1975-09-07 06:28:46,d9:b3:ab:c3:ea:72,andrew67@yahoo.com,img/obama.jpg +Linda Lopez,602-38-8554,80325,"6951 Johnson Meadow +South Earl, SC 31333-0267",1917-12-20 23:19:29,b6:84:42:a3:d0:1e,patricia47@yahoo.com,img/obama.jpg +Margaret Williams,895-41-6570,31817,"2869 Debra Station +Bradleychester, VA 42786-8819",2015-10-25 16:46:16,fc:f8:17:c9:74:28,brookschristina@hodge.com,img/obama.jpg +Jeremy Gibbs,453-40-9907,70044,"239 Ralph Groves +Marymouth, DC 37686",1983-10-06 21:38:49,c8:c4:31:05:40:25,michellemorris@barr-herman.com,img/obama.jpg +Joshua Ferguson,549-25-3899,66085,"0767 Stein Valleys Apt. 680 +East Robert, RI 67895-0372",1946-08-27 13:12:33,ee:fe:de:35:41:25,schneiderlisa@gmail.com,img/obama.jpg +Melanie Garcia,125-36-4659,36492,"476 Phillips Fork +Susanhaven, OH 34689-9753",2003-10-13 12:41:29,6c:a4:0f:a3:5d:76,jesse24@gmail.com,img/obama.jpg +Jessica Howard,422-24-8297,45433,"98515 Katherine Glens Suite 374 +Cherylberg, PA 64409-8717",1973-05-09 21:13:04,a3:35:91:9b:78:dd,tnichols@steele-martinez.com,img/obama.jpg +Ebony Wilson,375-26-2417,55374,"457 Olson Mission +East Shelley, HI 96865-8060",1959-04-17 00:45:05,b1:5e:f2:2b:69:85,geraldwiley@lara.com,img/obama.jpg +Wendy Rosario,259-72-6564,07027,"6415 Perez Glens +Pachecofurt, ID 56711-3993",1952-06-01 13:12:45,b7:e3:d9:54:18:00,qthompson@taylor-cervantes.biz,img/obama.jpg +Hannah Blankenship,037-53-1240,06024,"7437 Natalie Forges Apt. 434 +North Jasmine, NJ 03176-1184",2008-12-15 19:07:44,e5:db:30:80:5c:fc,gordonjoe@gmail.com,img/obama.jpg +Tammy Smith,224-85-8690,86944,"632 Victoria Estates Suite 704 +Michaelberg, PW 88701",1928-08-22 21:37:48,62:b8:ce:02:4d:83,newtonashley@higgins.com,img/obama.jpg +Alan Rogers,854-79-6490,54335,"5482 Todd Canyon +West Jesus, PR 00096",1932-03-23 13:37:53,52:b0:1e:0f:79:13,ygarcia@bowen.com,img/obama.jpg +Cody Gray,041-92-2631,88230,"USS King +FPO AE 54324-3164",1992-08-14 06:24:45,24:db:c2:0f:95:9a,adamsmorgan@fox.org,img/obama.jpg +Terrence Clark,273-48-1605,56677,"022 Chavez Neck +Roweville, FM 01430-1358",1975-05-11 11:40:23,ae:3e:1f:22:06:31,meganhowe@gmail.com,img/obama.jpg +Tracy Thompson,043-79-3522,02001,"0248 Smith Lane Apt. 315 +Lake Brandy, MD 12112",1943-06-20 18:30:20,35:9e:10:51:09:20,sarah11@yahoo.com,img/obama.jpg +Phillip Roberson,750-03-7615,60890,"4087 Roberts Springs Apt. 325 +Michaelburgh, KS 03335",1952-08-24 22:44:27,04:5a:ce:24:db:6c,brenda89@yahoo.com,img/obama.jpg +Beth Evans,492-70-6401,18986,"PSC 8480, Box 1548 +APO AE 29175",2008-12-02 20:09:34,e2:bc:e5:a5:e2:ff,donaldlevy@hotmail.com,img/obama.jpg +Tina Young,441-75-2913,60858,"8217 Burgess Stravenue Suite 902 +Carolmouth, PW 72593-7866",1955-08-01 01:26:18,ea:1f:c5:43:07:3f,xjackson@johnson.com,img/obama.jpg +Tracy Fisher,126-32-7329,55292,"00317 Greene Port +East Jasonmouth, WV 49843",2003-12-04 15:54:43,73:24:f7:38:be:7a,coreyrusso@hotmail.com,img/obama.jpg +Julian Cole,846-16-8135,16423,"81777 Nicole Forges Suite 066 +East Kenneth, MS 65483",1947-08-05 23:23:35,a7:f8:54:39:f4:a0,gonzalezabigail@gmail.com,img/obama.jpg +Michael Phillips,411-71-7707,19632,"89736 Russell Park Apt. 465 +Lanefort, SC 34723-6055",1927-12-29 22:38:24,5d:89:12:36:a0:ac,amandaweaver@gmail.com,img/obama.jpg +James Franklin,287-25-6637,01603,"PSC 7836, Box 9145 +APO AP 57547-4768",1938-04-03 06:31:41,52:ca:da:38:7d:b0,freyjohn@hotmail.com,img/obama.jpg +Mr. Ronald Thomas DVM,520-12-4956,29737,"0373 Donald Ramp +Jillianchester, PA 06227-9869",1959-05-14 00:13:17,15:71:74:d6:ed:12,jimmy95@king.info,img/obama.jpg +Michele Castro,057-94-0017,94668,"PSC 2559, Box 6267 +APO AP 58383",1957-12-18 21:54:37,d2:81:0f:33:13:91,shannonwilliams@wolfe.org,img/obama.jpg +Patrick Sanders,094-89-1345,36877,"2663 Herman Fall +Lake Willie, MA 17359-9372",1977-03-24 03:00:51,e4:98:a1:0a:e7:6b,xwright@yahoo.com,img/obama.jpg +Ronald Logan,160-20-5723,68705,"370 Nicholas Squares Suite 672 +Mullinsmouth, KS 36318-8751",1988-11-25 16:08:50,ea:71:5f:8b:f5:cb,emily88@wright.org,img/obama.jpg +Robin Sims,498-46-5607,32369,"29517 Hall Skyway +Lake Rachel, TN 72020",2015-07-20 20:40:19,e6:0d:6f:a0:48:bb,froach@gmail.com,img/obama.jpg +Amy Swanson,703-12-8460,51077,"9502 Taylor Hollow Suite 661 +New Carl, CO 82388",1944-07-29 08:18:55,44:1c:fe:7c:32:21,spencerpetersen@sanchez-howard.com,img/obama.jpg +Mary Hill,809-08-3867,96475,"633 Andrew Squares Suite 174 +North Kristineburgh, HI 20628-8968",1918-02-14 13:54:42,6d:ee:dd:82:97:ee,rodriguezkevin@yahoo.com,img/obama.jpg +Sandra Myers,496-81-4712,25280,"76422 Jason Plain Apt. 448 +Willieshire, MI 93803",2014-04-13 02:55:04,90:5a:5b:45:7e:f5,mckinneybrittany@rivera.com,img/obama.jpg +Andrew Barnett,592-20-2879,29427,"7111 Knapp Union +North Jenniferborough, NY 11579",2007-05-02 02:10:33,b0:b2:a8:a4:0e:1f,iphillips@montgomery.com,img/obama.jpg +Eric Cooper,822-54-6079,44494,"252 Tracy Union Apt. 962 +New Amy, PR 53518-8432",2007-06-20 11:11:17,d7:c6:b9:7f:cc:94,karen86@yahoo.com,img/obama.jpg +Christopher Gallegos,213-02-6466,82196,"1544 Graham Underpass Apt. 748 +Lake Timothyfurt, NJ 90515",1981-08-21 13:56:26,7e:5b:c3:53:89:12,justin54@gmail.com,img/obama.jpg +Dennis Allen,677-67-0905,52026,"37287 Armstrong Flat +Littleberg, ND 17082",1994-06-13 14:45:14,3c:4a:47:c2:b9:f0,ashley09@reyes-zavala.com,img/obama.jpg +Vanessa Bentley,485-59-1359,25583,"06442 Erik Underpass Suite 459 +Troymouth, OK 16956-8315",1982-11-21 14:21:28,03:e1:d8:cc:df:94,hernandezdavid@cook.com,img/obama.jpg +Holly Johnson,611-88-6125,05625,"3558 Pearson Mews +New Bob, MT 35194",1958-06-10 03:09:00,5f:a1:b4:9b:07:43,alexander97@hotmail.com,img/obama.jpg +Julie Kim,047-84-3713,35780,"152 Elizabeth Parks +New Jesseport, GU 49397",1956-01-10 02:28:54,57:27:12:05:86:81,cparker@gmail.com,img/obama.jpg +Joshua Torres,619-44-5295,45294,"6416 Tony Radial +Port Andresfurt, IL 36588",1918-12-08 02:45:42,ad:63:d0:22:18:cf,joshuagardner@gmail.com,img/obama.jpg +Dylan Fowler,865-94-3481,75783,"086 Mayo Canyon Suite 063 +Port Joseph, MO 57768",1917-09-06 06:41:33,36:19:9e:26:26:f6,zzamora@rubio.org,img/obama.jpg +Kurt York MD,324-09-3663,67715,"925 Nancy Parkway +Saraport, TN 21606",2010-12-27 04:57:19,d7:59:d1:3c:41:6f,derrick38@hill-williamson.com,img/obama.jpg +Terri Hernandez,634-03-7649,75886,"8836 Theresa Roads Apt. 025 +Williamside, NH 55895",1918-06-22 09:46:53,5e:53:5d:69:4f:bc,dramirez@smith-carey.com,img/obama.jpg +David Vang,535-90-6503,10917,"72065 Arias Meadow +Johnbury, MO 13386",2012-07-26 05:03:20,66:84:43:b9:ec:60,richard99@brady.com,img/obama.jpg +Courtney Sanchez,555-59-2438,69371,"22204 Woods Bridge Suite 262 +Amandaborough, NH 02511",2013-06-09 06:56:05,01:2f:0a:41:01:e6,brittanyphillips@robinson.com,img/obama.jpg +Amy Lopez,621-65-8415,44263,"7124 Berry Summit Suite 781 +Williamsside, OK 04313-5513",2001-03-03 21:53:45,25:95:e1:a4:11:ed,kathleenjones@hotmail.com,img/obama.jpg +Aaron Williamson,757-04-5434,99818,"7745 Hall Track Apt. 053 +Lake Philipview, NH 23391",1958-06-08 01:13:08,ab:9d:5b:f2:7d:32,rebeccajackson@warner-higgins.com,img/obama.jpg +Ronald Reeves,508-87-4277,71619,"5464 Juan Shoals Suite 912 +Kevinborough, IA 58071",1926-04-24 02:02:24,0e:6f:be:0c:3a:2a,gregory19@gmail.com,img/obama.jpg +Jordan Abbott,117-56-1022,71647,"4778 Jacob Bridge +Lake Hannahville, KY 86676",1930-07-21 04:56:48,56:a4:c7:a5:cc:b4,pguerra@gmail.com,img/obama.jpg +Amber Little,476-22-0644,11822,"95416 West Wells +Ramirezchester, CA 64580-3876",1998-06-08 16:49:55,2f:96:1d:c8:3f:b3,travis23@hotmail.com,img/obama.jpg +Eric Rice,479-16-7800,21236,"4732 Lamb Curve Suite 221 +Alexville, WV 21024-4284",1919-09-07 09:14:07,fb:f9:80:35:70:35,rayamber@collins.com,img/obama.jpg +Shelby Hodges,813-07-2911,03352,"046 Woods Mission +East Beckyside, KS 26740",1938-02-21 02:42:16,83:2f:35:39:6c:c7,joseodom@hotmail.com,img/obama.jpg +Jose Adams,411-15-5754,37362,"60643 Price Mill Suite 027 +North Robertberg, NY 08368",1985-05-29 17:45:12,42:52:60:2d:5f:64,chelseabates@hotmail.com,img/obama.jpg +Cynthia Hines,008-96-7880,64801,"PSC 1761, Box 7130 +APO AA 16282-2500",1928-11-12 00:19:01,6d:b2:0f:b1:90:5b,murphyleslie@silva.net,img/obama.jpg +Kiara Reynolds,135-72-6166,73585,"2879 Marvin View Suite 185 +Michaelfort, CA 10275",1969-02-02 00:13:18,68:0b:e5:70:aa:4e,jonathan31@hotmail.com,img/obama.jpg +Luis Johnson,336-18-4671,95545,"2735 John Forest +South Paul, SD 93850-0749",1921-06-09 13:02:39,46:88:17:c9:d8:2f,debra55@peterson.com,img/obama.jpg +Erika Ware,223-15-5678,59957,"70962 Hess Manors +Lake Rachelport, MI 92868",1956-06-09 12:36:56,d3:25:05:01:8d:b1,rodneyfernandez@walton-nolan.net,img/obama.jpg +Gina Stone,768-26-3087,88331,"1586 Duncan Stream +South Steven, NJ 04113",1964-04-12 11:52:46,cf:55:71:45:0a:34,pcurtis@lopez.net,img/obama.jpg +Stephanie Glass,219-37-6268,65750,"73418 Miller Street +New Kevinland, DC 58884",1965-06-10 17:19:30,7a:d4:44:95:90:8f,bookerscott@gmail.com,img/obama.jpg +Travis Johnson,558-48-3660,31888,"14155 Dennis Meadows +Bradfordfurt, ID 99494",1930-03-19 18:15:28,2b:40:da:87:2e:9f,crystal73@yahoo.com,img/obama.jpg +Adam Hayes,361-80-9844,92910,"27349 Gonzales Knoll +South Jefferyburgh, NJ 34504-6086",1985-07-23 08:40:17,1b:04:0e:08:f1:b7,rachelherrera@yahoo.com,img/obama.jpg +Karen Thompson,830-35-3567,48248,"5529 Reese Gardens Apt. 446 +Sarahstad, PW 56940-3161",1922-03-30 18:40:47,ea:fe:56:8c:63:cd,marilynclark@stephenson-stephens.com,img/obama.jpg +Marissa Mcconnell,142-80-1165,37683,"884 Michael Squares Apt. 152 +Jaredshire, MT 75187-8531",1943-11-16 23:55:51,ff:63:1e:d4:e7:4b,jennifernorris@rivera-bowers.com,img/obama.jpg +Natasha Sullivan,439-69-6882,90120,"525 Romero Heights +South Sandraborough, KS 19094",1975-06-08 18:47:59,9f:2f:49:dc:0d:60,ebonilla@frank.org,img/obama.jpg +Steven Coleman,889-32-1146,83126,"3084 Kemp Heights Suite 118 +South Claudiafort, AK 53541",2001-05-30 08:31:49,92:2b:9a:0b:ad:1e,davidmorris@gmail.com,img/obama.jpg +Anthony Cameron,818-07-6734,46710,"47092 Smith Tunnel +Stewartburgh, KY 43521-9438",1917-06-19 15:35:09,4f:73:a6:e2:db:3d,kkeller@moss.com,img/obama.jpg +Timothy Sanchez,273-32-7812,04539,"788 Scott Lock +New Amy, MP 18227",1918-07-09 06:10:00,82:44:76:50:64:fa,xturner@hotmail.com,img/obama.jpg +Chris Klein,554-33-9585,68737,"USS Reynolds +FPO AA 31433-1941",2001-04-25 15:06:50,63:19:f5:e5:ca:19,mooreglen@morgan-mccarty.com,img/obama.jpg +Lance Mitchell,442-94-9276,80050,"0102 Jonathan Mission Apt. 070 +Deniseville, NJ 27223",2003-06-04 05:59:40,49:99:c6:50:5b:17,ashleyrichardson@gmail.com,img/obama.jpg +Timothy Bentley,188-94-9216,10456,"5439 Benson Springs Apt. 581 +Morrisfort, WV 12478-5698",2014-07-15 10:10:41,c2:e0:ad:5a:00:c8,natasha44@lee.com,img/obama.jpg +Amy Hanson,256-27-4488,24847,"86776 Oneill Prairie Apt. 658 +East Kayla, WA 88210",1948-03-11 16:56:03,3c:99:b2:7d:de:22,christopherraymond@wolfe.com,img/obama.jpg +Breanna Beasley,339-43-6205,77152,"6395 Jason Trace Apt. 489 +South Thomasland, TN 81309",1921-10-04 21:16:24,c2:50:3d:ef:c1:a3,montgomerysteve@turner.com,img/obama.jpg +Brenda Robinson,850-88-2405,62717,"6433 Michelle Inlet +West Heatherside, VI 13931-9652",2005-06-15 11:56:08,fa:9a:12:7e:8d:1d,shelly82@hotmail.com,img/obama.jpg +Robert Walker,470-90-9573,81088,"50727 Dennis Wall +East Sarahton, TX 97091-1031",1994-03-09 04:47:24,a9:36:47:ce:81:b6,yanderson@gmail.com,img/obama.jpg +Melanie Leonard,393-45-0902,40144,"98631 Campos Shores +South Diane, NH 60999",1951-03-04 06:31:50,33:26:0b:52:04:5f,jensentiffany@gmail.com,img/obama.jpg +Kathryn Golden,161-62-4768,60478,"24732 John Lights Suite 991 +South Angelachester, IL 94570-5468",1961-04-13 16:19:36,8f:cf:9a:e2:fc:26,rebeccawright@lang.com,img/obama.jpg +Sharon Smith,554-59-9321,20807,"200 Carter Causeway +West Hayley, WY 36963-6219",1941-02-17 14:25:13,29:b8:b5:ca:e3:73,darren36@hodge.com,img/obama.jpg +Catherine Rodriguez,651-82-5645,84453,"310 Amber Ports +North Nancy, WY 13474",1987-12-05 10:28:30,af:6c:c7:25:e5:e0,josephtucker@gmail.com,img/obama.jpg +Jennifer Scott,197-75-9938,49011,"29827 Kent Lake +Debrahaven, CA 71632",2009-05-20 13:23:53,4a:ac:13:80:04:52,traciturner@gmail.com,img/obama.jpg +Amanda Williams,381-70-5432,07568,"PSC 1630, Box 0527 +APO AP 65841",1958-07-22 16:37:32,5a:1f:45:ff:91:40,susan83@daniels.com,img/obama.jpg +Jason Schwartz,521-44-5911,70996,"768 Gabrielle Manor +East Richardtown, WI 08890-1893",1985-10-11 13:41:27,72:f0:68:7c:59:31,gsherman@carr.biz,img/obama.jpg +Alexander Greene,743-38-7245,82062,"7356 Nunez Burgs Suite 307 +Meadowshaven, RI 82437",1995-02-10 20:11:11,33:2f:7c:79:e3:d6,billy34@hotmail.com,img/obama.jpg +James Hall,274-22-8101,06402,"185 Thompson Pike Suite 374 +Mooremouth, AK 22816",1923-01-20 12:05:14,14:b1:76:a5:26:18,smithjoseph@yahoo.com,img/obama.jpg +Sean Fleming,808-11-8588,55582,"05364 Matthew Crest +South Steventon, NJ 41432",2011-02-13 21:10:40,62:f2:11:d9:f9:1d,megan46@gmail.com,img/obama.jpg +Kristina Wade,776-65-6404,02966,"7620 Katelyn Key +North Sarahburgh, MA 96749-8102",1987-02-20 19:30:40,1f:b9:e8:1d:61:7c,pmoss@holloway.org,img/obama.jpg +Sergio Smith,494-59-1263,47461,"43239 Rebecca Isle Suite 424 +Steeleburgh, CO 09485-2099",2007-04-20 17:59:07,a7:91:e9:3a:d7:e2,ewilliams@hotmail.com,img/obama.jpg +Deanna Nelson,729-97-7101,71485,"8917 Kenneth Springs +East Amyland, VT 24483-7361",1931-03-27 20:42:41,65:0b:2a:33:45:fa,brianturner@hotmail.com,img/obama.jpg +Edward Thomas,327-81-2627,23964,"7946 Nicole Plains Apt. 983 +Wrightstad, MT 62234",1924-02-25 22:20:24,50:69:0a:61:ba:3f,lori73@yahoo.com,img/obama.jpg +Leslie Allen,840-59-4018,50686,"085 Christine Port Suite 277 +Terrybury, AK 65696-6818",1927-12-19 18:00:26,ca:b7:78:3e:9f:d6,lisa55@smith-shelton.com,img/obama.jpg +Amanda Joseph,639-24-2483,57674,"13390 Hudson Street Apt. 776 +Michaelberg, KY 08529",1958-06-08 15:48:48,9c:ab:e6:af:ae:04,costamary@ramirez-pham.com,img/obama.jpg +Tony Hood,350-76-1281,35705,"27836 Hill Shoals Apt. 993 +West Melissa, RI 45314",1936-02-04 08:06:03,b4:a5:7a:99:c3:0f,robertskathryn@hotmail.com,img/obama.jpg +Laura Tyler,040-59-7121,40550,"41471 Bender Gardens Apt. 249 +New Marie, FM 70484",1978-12-18 18:34:50,fd:85:d1:8e:46:2b,elizabethdominguez@brown.org,img/obama.jpg +Matthew Thompson,236-96-9662,10381,"407 Mario Trafficway Suite 308 +Apriltown, MH 41295",1969-12-03 11:34:59,38:d6:06:9e:b4:c6,gregory68@johnson.com,img/obama.jpg +Lawrence Lyons,067-04-7202,05935,"706 Elizabeth Station +Hawkinsmouth, DE 44875",1939-01-30 21:28:11,d7:5b:0d:51:35:cd,sandersjoseph@rivera-clark.com,img/obama.jpg +Sarah Allison,537-12-2190,73745,"63763 Brock Light Suite 341 +Patrickberg, KY 39224-9868",1937-11-27 04:04:41,64:75:0d:7d:5e:7d,amber22@yahoo.com,img/obama.jpg +Rebecca House,486-13-1259,51075,"826 Powers Circles Suite 990 +Anthonyland, UT 14284-8145",1984-11-20 17:42:36,32:65:bd:5a:9b:6b,mooretiffany@hotmail.com,img/obama.jpg +Joseph Blair,611-28-3696,28271,"43425 Buckley Ports Suite 622 +Alexanderview, GU 10697",1963-09-26 17:54:58,fa:ca:17:c3:36:1e,maynardjessica@yahoo.com,img/obama.jpg +Caitlin Carter,588-34-0271,57445,"185 Brown Summit Suite 807 +Wolfebury, PW 23078-7023",1920-02-03 00:10:44,e3:c5:6a:8a:86:59,contrerasjessica@lee-garcia.org,img/obama.jpg +Rachel Lee,792-97-5188,76528,"USCGC Sanchez +FPO AE 73484-8111",1927-04-27 19:30:18,e7:4a:02:2d:4d:61,adamhuang@hotmail.com,img/obama.jpg +Adam Peterson,347-97-9712,44196,"66495 David Course +Brianfurt, WY 30622",1958-04-06 07:03:55,67:86:e2:a3:7d:f6,cking@cohen.com,img/obama.jpg +Charles Norton,778-67-8463,93812,"8775 Hatfield Terrace +Port Jonathanmouth, OH 02657-4866",2012-09-19 04:14:21,bd:22:95:e4:1a:df,vaughnmichael@gmail.com,img/obama.jpg +Sarah Stout,405-48-2302,03021,"11580 Lisa Road +Washingtonland, GU 90596",1988-06-17 15:05:28,89:32:67:57:24:83,jeffery53@price.com,img/obama.jpg +Garrett Lewis,558-99-4631,86890,"9911 James Vista +Walkerchester, IL 14552",1974-06-26 19:54:07,26:a1:f6:0b:4d:42,harrisonlaura@brown.org,img/obama.jpg +Brent Anderson,194-95-4166,31169,"474 Forbes Tunnel Suite 647 +Lake Christopherville, AS 89970-0709",1918-11-21 08:55:40,a1:c0:16:6e:cd:02,hmedina@long.org,img/obama.jpg +Beverly Harrison,533-17-8769,09255,"7994 Newman Wall +Jacksonburgh, NH 26589",1957-06-05 12:55:45,ee:64:6f:d1:1b:9e,mathewskendra@taylor.com,img/obama.jpg +David Brooks Jr.,882-82-4987,38425,"408 Michael Valley +Smithmouth, WV 69994",1987-05-11 06:33:12,e0:75:0d:b0:82:ae,nicole53@gmail.com,img/obama.jpg +Emily Booker,380-46-4214,43865,"3793 Berry Heights +Bowershaven, AR 71897-1159",1961-03-13 00:51:27,14:ea:71:58:d3:d6,delgadokelly@stewart-grant.biz,img/obama.jpg +Maria Anderson,496-67-4380,91386,"359 Angela Road Apt. 504 +Lake Timothyland, ID 22583",1942-07-23 01:41:41,65:25:8a:70:93:48,zramirez@marquez-higgins.biz,img/obama.jpg +Karl Mckenzie,738-63-5626,20206,"59006 Scott Extensions Suite 914 +Mcculloughmouth, MS 15346",1924-02-18 09:45:44,5f:19:5b:f7:83:5f,ashley65@mcgrath.org,img/obama.jpg +Adrian Lopez,552-08-7364,72699,"515 Courtney Flat Apt. 060 +New Matthewton, MN 49520-7301",1955-03-12 05:11:53,20:bd:a9:22:80:12,robert12@gmail.com,img/obama.jpg +Rebecca Taylor,449-17-9104,26867,"341 Yang Keys Apt. 150 +Dennisport, CO 35839-5397",1982-01-28 14:01:03,5b:67:ed:ee:f1:70,sharon75@yahoo.com,img/obama.jpg +Christopher Long,871-22-7881,67971,"890 Owens Villages Apt. 947 +South Nancyton, LA 80997",1978-04-22 06:15:48,8f:96:11:00:6b:d7,donnanelson@brewer-benson.biz,img/obama.jpg +Rachel Rivera,044-55-4750,71688,"4285 Davis Manor +New Eric, IL 39908",1985-08-28 12:51:43,69:3e:e7:f4:0f:72,djohnson@ward-ramirez.com,img/obama.jpg +Debra Pugh,206-98-9743,86104,"6912 Black Trafficway +South Jennifer, WI 18092",1976-11-15 03:10:51,c5:67:ef:7e:97:b2,hernandeznoah@lopez.org,img/obama.jpg +Joseph Cox Jr.,418-36-2465,00574,"949 Galloway Key Apt. 860 +New Amanda, MN 28162-8065",1997-06-23 11:32:45,f4:b0:21:5b:e4:fd,beverlywilkins@diaz.com,img/obama.jpg +Andrew Huang,238-32-6915,07583,"329 Kerr Rest Apt. 367 +South Michelleville, PW 32799-4367",1962-01-06 21:57:21,86:44:25:c8:77:7a,adrianmoody@robinson.org,img/obama.jpg +Andrea Burton,370-14-3921,33164,"295 Martin Loop Suite 522 +Lake Jesse, TX 24929-6623",1979-02-20 02:48:29,a1:08:63:49:d0:58,ywiggins@williams.net,img/obama.jpg +Rebecca Holmes,599-33-8538,86053,"6638 Davis Wall Suite 851 +Riggsfort, AK 73449",1922-05-19 02:54:30,de:11:b6:fe:f3:a1,nmiller@yahoo.com,img/obama.jpg +Todd Mullins,278-74-4588,40533,"51303 Oconnor Manor Apt. 044 +New Jeffrey, HI 30656",1986-11-04 20:26:45,a6:23:79:a2:c2:4c,freemanpaul@gmail.com,img/obama.jpg +Jesse Chapman,178-45-4707,96452,"34736 Philip Islands +Lake Stephanie, MS 66940",1969-11-19 00:10:38,ea:ab:db:4d:7f:84,fernandezjoanne@gmail.com,img/obama.jpg +Joseph Sanchez,690-74-5209,65233,"54189 Brenda Street +Monicaburgh, IA 27935-2099",1979-04-18 05:35:22,76:43:37:ea:6a:5e,fosterbrandy@yahoo.com,img/obama.jpg +Linda Foster,597-95-2150,32114,"370 Daniel Trafficway +Davidbury, IL 86988",1998-10-02 07:57:58,fd:a0:96:fe:53:46,christineperez@sexton-morgan.net,img/obama.jpg +Jessica Rocha,035-90-3483,95982,"6825 Tate Isle Suite 277 +West Charlottemouth, MH 31169",1970-12-08 13:07:57,d9:25:1e:d5:b3:50,uhall@yahoo.com,img/obama.jpg +Todd Harris,586-96-0852,73562,"25801 Karen Extensions Apt. 088 +West Ronaldbury, AK 30272-6053",1938-09-23 00:01:32,4b:e4:9c:ef:03:a6,toni52@yahoo.com,img/obama.jpg +Michael Jones,026-88-8369,03683,"3046 Cross Stravenue Suite 320 +Port Bethanyport, MS 82717-1168",1923-12-17 07:26:28,41:83:b9:38:40:c4,coxjustin@gmail.com,img/obama.jpg +Bobby Escobar IV,122-48-6933,73297,"525 Matthew Pike Suite 839 +Christopherchester, LA 15864-1017",2006-07-13 04:35:49,ce:fc:a4:4d:da:11,fgriffith@fisher-jordan.com,img/obama.jpg +Nicholas Fritz MD,085-61-0930,08136,"646 Kristin Forks +Port Brianview, IL 79452",1996-08-07 21:27:40,db:6f:e6:29:01:29,erice@yahoo.com,img/obama.jpg +Melissa Perez,698-31-9509,26707,"USCGC Johnson +FPO AE 63111-2629",1987-01-01 16:39:56,1a:c8:b8:e5:fe:05,watsonhenry@wright.com,img/obama.jpg +Danny Terry,818-05-7946,59302,"887 Paul Lodge +Hallshire, RI 03092-8234",1972-12-09 00:23:20,77:8a:3c:64:20:36,hewing@deleon-flowers.info,img/obama.jpg +Margaret Holland,223-10-8090,06626,"12724 Ryan Corners Suite 845 +Davidport, SC 20045-0949",1987-10-25 01:12:05,7c:3e:05:e8:74:80,rebecca61@smith-cooper.org,img/obama.jpg +Kathleen Love,872-05-6495,11712,"19144 Ponce Crescent +Breannamouth, TN 92273",1968-03-27 23:37:50,fa:f6:53:a0:27:d9,nrusso@alvarez-nguyen.com,img/obama.jpg +Jonathan Kane,791-58-5512,63614,"9943 Tiffany Path Apt. 269 +Charleston, RI 71551",1926-11-01 07:37:35,68:41:b0:c8:6e:15,kbarnes@gmail.com,img/obama.jpg +Daniel Watts,336-13-0712,39496,"2608 Aaron Springs +Robersonland, NH 47600-6093",2016-12-09 09:12:54,f9:1a:e4:3f:c4:0a,wbridges@hotmail.com,img/obama.jpg +Robert Morrison,628-99-3173,99736,"054 Roy Coves Suite 381 +South Jessemouth, NE 91556-1996",2011-05-02 03:11:54,1d:f5:ca:67:38:48,mikemontoya@hotmail.com,img/obama.jpg +Dr. Michelle Brown,017-10-0068,68971,"194 Ramirez Junction +Wagnerbury, WA 73093-9522",1996-11-20 18:36:45,4e:08:a4:bf:4b:35,deborah99@middleton.com,img/obama.jpg +Mary Jones,157-45-2287,53361,"24679 Delgado Lane Apt. 898 +Stoneport, LA 64969-3913",1924-12-05 13:09:04,fa:6c:7e:12:d5:b1,adam93@smith.com,img/obama.jpg +Jon Garcia,873-74-3085,29624,"208 Tina Forge +Paynefurt, OH 57494",1942-11-07 19:58:03,f0:48:31:ab:e4:1e,wheelerchristine@hotmail.com,img/obama.jpg +Blake Glass,733-18-0978,26463,"274 Alan Tunnel Suite 074 +Mcdanielstad, VA 85031",1939-09-06 19:25:15,dd:aa:87:40:39:4b,cherrera@hotmail.com,img/obama.jpg +Joseph Castro,870-90-1673,29678,"9080 Stephanie Radial +East Alicia, MS 33087",1948-07-12 05:00:51,5d:9f:ac:a0:59:59,kara59@brown.info,img/obama.jpg +Dr. Marco Shaw MD,882-29-4876,20795,"578 Bryan Centers +Mitchellfort, NV 51932-5477",2013-05-07 01:19:28,b0:e6:65:b1:14:6f,steven25@yahoo.com,img/obama.jpg +Marissa Weaver,556-42-9892,53714,"65933 Duarte Forge +Lopezburgh, NE 85450",2014-04-04 20:08:11,c3:e1:40:da:06:3c,kevinswanson@sanchez.com,img/obama.jpg +Angela Olsen,513-97-4243,64046,"90557 Ryan River +Jonathanside, NY 30108",1965-11-22 23:52:04,eb:f3:5d:6b:38:79,kenneth18@yahoo.com,img/obama.jpg +Heather Padilla,101-95-2359,97193,"USCGC Merritt +FPO AA 46763-5270",1938-08-25 16:19:12,28:c3:41:1c:97:5d,schmidtmichelle@berry.com,img/obama.jpg +Daniel Johnson,101-62-6397,52185,"7991 Love Drive +Greenetown, NH 85401",1963-05-09 21:07:06,f8:b5:dc:a9:2c:6a,megan55@carroll.com,img/obama.jpg +Wendy Short,043-18-9409,66294,"16816 Walsh Tunnel Suite 481 +Port Andrea, MT 41156",1937-06-06 17:19:48,97:47:89:c1:f2:5d,lunakristina@gmail.com,img/obama.jpg +Jasmine Watson,005-24-7095,59221,"141 Mccoy Glen Apt. 866 +Pattersonview, ND 25987-3254",1922-01-01 07:28:57,1b:d9:49:18:bc:ea,larsonjennifer@yahoo.com,img/obama.jpg +Matthew Jimenez,067-36-7498,04788,"940 Sandoval Row +West Timothy, FM 39256",1933-01-08 15:59:22,cd:89:ca:8e:52:be,alexawarner@bryant.com,img/obama.jpg +Jesse Hoffman,732-36-5931,85640,"161 William Light +Christinabury, MP 72424-1543",1948-01-24 15:11:29,96:4e:39:87:35:39,kaitlynkoch@hotmail.com,img/obama.jpg +Mallory Bell,670-03-2904,15301,"USCGC Cross +FPO AA 20673",1998-07-02 20:29:10,ba:27:f8:42:ff:2d,drice@taylor.com,img/obama.jpg +Robert Pratt,197-33-9697,77447,"289 Cunningham Shores Apt. 047 +North Jaymouth, NH 10372",1960-04-30 00:16:58,1c:e3:ce:d6:45:84,philiphale@gmail.com,img/obama.jpg +Gregory Schmitt,144-27-0711,93993,"46537 Jerry Greens +Morenoview, SC 97591",1978-08-29 15:17:46,34:94:45:74:28:03,cking@davis.com,img/obama.jpg +Ronald Kim,423-94-5470,61950,"9701 Scott Plains +Williamston, MA 29376-2336",1921-06-16 22:52:16,06:f6:48:70:20:b0,jordancline@gmail.com,img/obama.jpg +Courtney Turner,505-30-3519,69753,"279 Velazquez Valley Suite 004 +West Sarah, CT 88666-7967",1968-05-09 22:06:34,48:c5:da:45:ae:1e,pmaldonado@harmon-bryant.org,img/obama.jpg +Bradley Becker,761-66-3572,64258,"693 Ashley Meadows +Perezfort, WI 64992",1928-06-04 09:22:43,b1:00:26:56:50:67,rebecca90@hotmail.com,img/obama.jpg +Cynthia Rojas,795-82-9628,50504,"3455 Pierce Falls +Rodriguezborough, NJ 78349",1927-01-28 10:56:36,4e:e0:8a:4c:90:4a,eric61@paul.org,img/obama.jpg +Logan Mcdonald,890-54-3565,25198,"77717 Edwards Crossing Apt. 287 +Lewisburgh, NH 75702",1960-09-29 09:07:12,50:ba:c8:c5:c2:1c,crystalvance@gaines.com,img/obama.jpg +Ryan Elliott,761-72-1584,58410,"98935 Smith Burgs Apt. 973 +Kingmouth, CO 34129",1986-03-26 23:18:20,53:c2:65:4d:46:4b,stephensmith@gmail.com,img/obama.jpg +Shannon Ball,551-91-6369,46123,"794 Martinez Skyway Apt. 131 +North Christina, GU 51711-7919",1960-11-24 10:00:41,8a:0e:64:5b:48:04,ljohnson@dominguez.net,img/obama.jpg +Amy Floyd,161-97-4071,83422,"525 John Radial Suite 621 +Johnsonfurt, OK 28432",2006-02-19 11:20:51,3c:94:67:b6:bb:30,haleian@mercer.com,img/obama.jpg +Paul Beck,494-33-5376,90925,"6225 Valdez Field +Higginsfurt, KS 19822-4049",1961-03-06 21:37:36,3a:55:ce:0c:4f:77,kristen48@harris.com,img/obama.jpg +Terry Taylor,814-53-3731,44455,"779 Jodi Unions Apt. 324 +North Philip, NE 30307-5234",1961-05-28 00:58:16,5e:58:77:ca:67:2b,amberpittman@jones.com,img/obama.jpg +Miranda Lee DDS,640-48-6299,59223,"PSC 4101, Box 3262 +APO AA 27671-4143",1988-02-19 05:12:13,46:fc:27:78:8a:0a,jessica92@adams-rice.com,img/obama.jpg +William Allison,291-50-6831,68382,"Unit 9161 Box 4973 +DPO AE 80219-7721",1933-03-11 07:38:57,22:6e:d9:89:7f:11,rsmith@hines-lee.com,img/obama.jpg +Christine Terrell,029-54-3845,93717,"351 Tamara Path +Lunaborough, MN 86699",1947-03-04 04:20:51,21:56:4a:85:bb:16,sara22@frazier.org,img/obama.jpg +William Shields,266-07-2437,54015,"84352 Crystal Views +Blakeside, PR 02196-7732",2001-12-18 03:30:34,07:38:b4:86:98:5e,usilva@yahoo.com,img/obama.jpg +Emily Romero MD,124-13-0754,35030,"841 Denise Islands +Lake Robert, FL 47880-3707",2012-02-21 03:02:01,d7:7b:a8:8a:0f:34,garciamaria@gmail.com,img/obama.jpg +Rhonda Black,621-48-0348,69563,"381 Carey Rue +New Danielle, KS 40452",1994-06-03 09:07:21,e0:7b:6a:b3:78:96,qvega@forbes.com,img/obama.jpg +Corey Frost,886-12-4126,12256,"PSC 0010, Box 6896 +APO AA 98422",1944-06-25 09:21:05,b1:20:f9:5d:45:d5,joyce92@roberson-wright.com,img/obama.jpg +Andres Diaz,563-37-3684,55902,"608 Wilkins Crescent +South Aaron, SC 99448-0376",1971-03-01 08:42:40,e2:72:26:13:5e:78,aaronreese@yahoo.com,img/obama.jpg +Joel Abbott,848-47-3837,03146,"766 Andrew Drive +South Christopher, ME 05375",2012-12-20 20:41:46,e6:00:fb:28:be:fb,qrobinson@gmail.com,img/obama.jpg +Pamela Powers,380-04-0824,47312,"8010 Paula Parks +Mathewsville, OH 50463-6855",1930-05-20 20:52:09,5c:79:2f:b5:1a:29,nguyenglen@hotmail.com,img/obama.jpg +Michael White,190-36-9666,05795,"07117 Brian Lights +Prattchester, MS 85836-7676",1931-02-21 01:40:26,63:bb:dc:50:f5:80,vmartinez@gmail.com,img/obama.jpg +Patricia Clements,186-69-4408,18361,"6363 Gordon Glens Apt. 790 +South Patrick, WV 15635-7146",2011-07-27 10:07:03,26:b8:1f:49:3f:2f,michellehall@gmail.com,img/obama.jpg +Derek Jensen,455-09-7851,46366,"888 Hatfield Estates +Johnsonport, RI 72261-7994",2003-01-08 13:29:25,93:00:06:d2:69:29,nritter@scott.net,img/obama.jpg +Michelle Williams,705-66-5914,62322,"USS Johnson +FPO AE 00011-2263",2015-01-29 02:41:51,78:3e:73:ad:4f:15,smithmichelle@miller.com,img/obama.jpg +Mark Hoffman,264-81-0029,58178,"PSC 5607, Box 3591 +APO AA 69214",1928-09-10 09:10:50,bb:8d:0e:32:5c:11,danielsilva@gmail.com,img/obama.jpg +Dr. James Smith,628-78-7160,69779,"8947 Mills Road Apt. 468 +Brooketon, RI 84113-5910",1967-03-27 02:21:23,f0:f2:69:57:bb:60,qthompson@gonzalez.com,img/obama.jpg +Linda Moore,673-78-1427,21252,"PSC 3214, Box 6611 +APO AP 66619",1976-09-29 04:26:46,bf:35:af:77:01:79,lisarichmond@yahoo.com,img/obama.jpg +Jessica Taylor,875-26-6322,99336,"4868 Carter Orchard +Port Brent, CA 93697",2000-01-19 12:30:27,ac:70:db:a9:de:9f,xgray@johnson.com,img/obama.jpg +Gabriel Alvarado,166-14-8733,74114,"030 Morgan Roads +Timothyport, MI 32744-9470",1919-04-06 00:33:17,10:82:00:52:10:51,leonardbruce@ellis.com,img/obama.jpg +Heather Poole,604-22-9714,39102,"9228 Daniel Oval +Jacobtown, NH 05596-4673",1937-09-30 20:47:08,fa:1e:3c:ae:8d:9b,moorestephen@sanchez.info,img/obama.jpg +John Bell,105-74-9809,54227,"29241 Bennett Harbors Suite 582 +Jocelynstad, GA 13223",1977-09-25 16:13:12,5c:4d:d2:de:d6:8f,aryan@sheppard.com,img/obama.jpg +Ana Bradshaw,773-10-7778,38269,"38067 Olsen Avenue +South Sarah, OR 66000-2996",1936-12-06 15:46:54,dd:75:70:15:2b:94,stevenfuller@hotmail.com,img/obama.jpg +David Morris,295-23-4549,02309,"6147 Diana Centers Apt. 744 +East Davidstad, LA 77018-3744",1976-08-31 06:34:33,a4:42:42:2e:11:7f,nguyenjose@gmail.com,img/obama.jpg +Lisa Jones,171-03-3789,01506,"58254 Ariana Inlet Suite 154 +New Anthonyton, MP 00844-7972",1961-03-27 08:55:41,d0:b9:83:31:a4:52,thompsonconnor@schultz.net,img/obama.jpg +Richard Wells,765-66-4419,83971,"PSC 0484, Box 1333 +APO AP 00957",1955-06-07 14:58:35,81:8c:03:54:11:a5,mitchellerin@hotmail.com,img/obama.jpg +Dr. Adam Chavez,136-09-0664,32866,"45937 Rice Throughway Apt. 086 +South Laurenburgh, CT 38871",1928-07-09 10:27:49,7f:ff:65:36:80:3a,lopezmichael@gmail.com,img/obama.jpg +Travis Wood,427-28-0784,47070,"953 Yvonne Trace Suite 168 +Port Timothyville, SD 10386",1984-12-29 23:28:04,02:22:cc:02:3b:03,floydtimothy@gmail.com,img/obama.jpg +Linda Romero,069-21-3581,92840,"99087 Ross Cliffs +Alexandrafurt, OK 93928",2000-02-27 01:53:10,6f:3d:7d:d0:cc:62,jay30@camacho.com,img/obama.jpg +Richard Warren,680-84-0231,39299,"993 Monica Bridge Suite 802 +East Matthew, FM 97149-6801",1978-08-29 10:16:23,ac:d2:da:92:2d:4b,hermanbrian@hotmail.com,img/obama.jpg +Heather Massey,790-40-2591,52240,"9239 Campbell View Suite 207 +Davidmouth, NC 75296-0599",1989-02-22 03:30:58,0f:a2:92:d8:26:0e,jonathangarcia@freeman.com,img/obama.jpg +Xavier Brown,194-96-8138,96111,"USNS Garrett +FPO AE 07723-1798",1921-12-23 06:16:41,ba:bf:02:1d:05:28,lynnramirez@miles.com,img/obama.jpg +William Woodward,344-95-7154,90432,"93795 Guzman Locks +West Jesseshire, TN 02037",1958-01-28 18:10:57,5d:92:a8:a1:d2:d2,reginald23@burns-martin.com,img/obama.jpg +Adrienne Miller,848-72-6229,78588,"2561 Lucas Inlet +New Nicolefurt, DE 30135",1945-10-07 01:20:24,b5:28:f1:07:ab:ea,martinjeffrey@gonzalez-cervantes.com,img/obama.jpg +Russell Avery,340-15-0076,32984,"008 Murray Crescent +North Garretthaven, MS 48237",2001-11-26 08:27:15,46:15:7b:7a:a9:82,michaelhardy@gmail.com,img/obama.jpg +Karen Matthews,120-46-4815,13906,"USCGC Castillo +FPO AP 27095-6832",2014-07-01 04:06:02,cc:e1:8a:38:f0:9d,jenniferchapman@gmail.com,img/obama.jpg +Whitney Li,858-95-1800,07451,"02343 Daniel Cape Apt. 236 +Toddton, MI 31349",1924-01-31 07:13:49,5e:3c:8a:9a:ad:6d,tcarter@yahoo.com,img/obama.jpg +Lauren Nelson,345-99-4340,85928,"PSC 0264, Box 0000 +APO AA 83875",2005-08-16 09:46:01,25:8b:80:f5:9b:68,phill@bennett.com,img/obama.jpg +Tamara Vincent,066-45-7210,75835,"4046 Kelly Ways Suite 406 +Watkinsburgh, AR 05677",1973-02-01 22:54:41,b8:68:b3:0d:eb:9e,xhall@lewis-steele.info,img/obama.jpg +Brittany Edwards,452-54-0602,81240,"652 William Court +Lake Linda, WV 63191-8025",1927-02-12 09:07:04,ac:d9:1a:b0:fc:1b,hurstjames@hotmail.com,img/obama.jpg +Zachary Reynolds,842-74-2413,58749,"2129 Joshua Fords +Kelseyberg, SC 02388-3357",2003-05-29 15:12:45,38:df:9d:0b:02:45,vdavis@yahoo.com,img/obama.jpg +Destiny Jordan,462-61-7445,07557,"203 Erin Mountains +Randyport, IN 55598",1936-04-03 23:24:08,d5:0c:80:0f:ec:69,ashleytorres@yahoo.com,img/obama.jpg +Cynthia Dawson,110-34-2937,31020,"885 Tony Port Apt. 040 +Snyderstad, MS 59023",1931-10-25 18:39:50,5f:2f:27:7c:d5:61,michael06@yahoo.com,img/obama.jpg +Jamie Skinner,338-24-6723,42756,"773 Alvarado Land +Port Ashleyburgh, AS 70055",1927-02-06 11:25:03,be:06:10:08:1c:11,thomas04@gonzalez.net,img/obama.jpg +Kristen Bailey,846-94-6518,57170,"5387 Parker Underpass Apt. 613 +Ayersstad, WI 26436-2073",1922-04-19 12:52:03,34:c1:7a:7f:a2:25,frances44@hotmail.com,img/obama.jpg +Ashley Maynard,050-39-5493,61453,"591 Mckay Mountain Apt. 418 +South Charles, MP 13931",2007-03-22 21:30:43,26:dd:44:c7:69:61,aaron34@hotmail.com,img/obama.jpg +James Coleman,419-40-4081,15888,"6552 Julia Fords Apt. 453 +Lake Dorothy, TX 54034-8545",1993-02-06 20:15:27,c9:01:49:91:5e:27,kristi11@yahoo.com,img/obama.jpg +Molly Harris,531-03-8907,45087,"73174 Martin Lodge +Lake Linda, HI 83338",1986-07-29 06:32:49,70:c7:98:ac:fa:e9,larryhuff@arnold-petersen.com,img/obama.jpg +Carol Clark,471-58-5697,20855,"78830 Ross Stravenue Suite 548 +Jimenezville, TN 40099",1963-11-14 23:45:35,d4:b1:f3:0a:21:e7,ospencer@gmail.com,img/obama.jpg +Robert Cross,681-42-8065,17601,"845 Turner Flats Suite 710 +Davidchester, NM 27192-4059",1967-05-15 08:27:48,c2:94:56:ba:ce:26,vtorres@schwartz.com,img/obama.jpg +Jennifer Kelly,330-97-2228,41590,"729 Smith Islands Apt. 992 +Lake Alan, UT 46417-6270",1976-11-09 18:39:36,30:08:ed:56:5e:c2,brenda49@gmail.com,img/obama.jpg +Jeffrey Sanders,268-82-5927,38064,"0943 Aaron Square +West Daniellemouth, VA 19745-8058",1980-03-17 13:50:13,d2:e6:68:67:d5:53,gibsonderrick@henry.info,img/obama.jpg +Ryan Coleman,583-91-5574,38517,"73211 Franklin Port Apt. 987 +New Joe, ME 33226",2012-10-28 21:31:34,d7:a8:cf:b3:fe:d8,brendaedwards@yahoo.com,img/obama.jpg +Lisa Edwards,516-84-7330,83749,"8310 Veronica Wall +Fullerhaven, ND 79056-7007",1997-06-08 06:59:24,96:04:fd:5a:a0:f0,johnsonderrick@hotmail.com,img/obama.jpg +Mark Schultz,052-11-8784,10526,"59852 Hunter Park Apt. 408 +Michellefurt, VA 62726-2431",1917-08-17 05:30:06,81:1e:09:36:2c:5a,mariegraham@yahoo.com,img/obama.jpg +Ethan Daugherty,229-23-8852,85371,"8929 Lee Mountain +North Sara, MD 14690",1941-09-05 13:45:24,f9:1b:f4:c6:42:f3,richardsonlaura@curtis.com,img/obama.jpg +Mr. Richard Arnold,893-91-4984,93428,"0608 Valencia Skyway +Port Molly, DE 08263-5397",1965-04-08 05:31:21,6f:b8:14:f2:67:ba,corey75@yahoo.com,img/obama.jpg +Rachel Johnson,459-49-9945,78125,"6531 Jeanette Mountains Suite 046 +Peterstad, CT 87495",1920-03-30 12:18:04,5e:37:17:5c:99:04,hmills@hicks.org,img/obama.jpg +Tanya Thomas,299-17-4583,29834,"80851 Sarah Avenue Suite 065 +Andersonshire, PA 17822",1981-09-11 00:20:08,d1:8e:62:e0:4d:36,williamswesley@kennedy.com,img/obama.jpg +Katherine Martinez,620-83-8866,69096,"635 Kyle Hill +Teresaland, GA 68785-7932",1936-01-30 19:57:35,58:c4:a6:55:ed:b3,cgallagher@gmail.com,img/obama.jpg +Tyler Goodman,880-09-7959,39139,"709 Dunn Views Apt. 303 +East Angelaville, MN 42718",1949-05-12 22:21:08,47:a7:f3:61:e9:3f,royshawn@yahoo.com,img/obama.jpg +Angela Thomas,883-83-3750,87490,"PSC 6153, Box 8910 +APO AP 39909-7206",1975-04-20 11:03:39,c9:6a:c6:e7:10:29,qellis@hotmail.com,img/obama.jpg +Denise Morrow,217-89-7296,53729,"2523 Nicholas Camp +New Brianna, ND 54227",1922-08-29 14:01:11,8e:53:64:4c:5f:00,jasonmartinez@yahoo.com,img/obama.jpg +Donna Lucas,480-85-5995,14902,"9245 Robert Hill Suite 456 +Alexanderfurt, MS 11279-7746",1938-03-13 20:18:18,02:8f:88:5c:41:88,philip28@hicks-gonzalez.biz,img/obama.jpg +Janet James,705-99-1626,90403,"24590 Sanchez Isle +East Teresaborough, DE 28444-1829",1956-05-20 17:20:03,06:fc:fd:72:47:cc,amber68@reyes.net,img/obama.jpg +Terry Brown,483-12-1851,02277,"451 Nicole Light Suite 760 +Port Virginiabury, MH 10791-9562",1973-04-25 18:36:05,08:78:7d:39:58:77,kimberly42@hotmail.com,img/obama.jpg +Maria Rollins,495-92-2249,74998,"960 Carpenter Station +New Richardshire, OR 75830",2010-09-17 09:05:42,88:9a:c8:4d:69:ec,cliffordwebb@gmail.com,img/obama.jpg +Vicki Schmidt,863-80-8877,71919,"714 Megan Overpass Apt. 612 +North Christopher, VT 82320-3296",1939-10-08 13:48:54,e7:0c:26:f3:ec:6b,mfitzgerald@yahoo.com,img/obama.jpg +Robert Nixon,843-04-0436,47834,"550 Carter Club +New Rickville, ND 61049-5021",1926-06-24 19:10:40,5c:d0:57:fc:e6:1c,pateldanielle@hotmail.com,img/obama.jpg +Kayla Navarro,884-78-2884,79286,"3924 Mercado Camp +Beltranton, PR 24860-7646",1991-03-04 10:26:19,ba:f8:51:66:a8:8e,ssanchez@hotmail.com,img/obama.jpg +Zachary Manning,371-09-5035,68327,"7487 Miller Oval +Port Timothychester, NY 19444-5035",1996-04-03 11:32:42,d4:f4:89:f7:67:ed,roberto34@bennett.com,img/obama.jpg +Nicole Smith,121-44-8006,52358,"080 Jessica Islands +West Kara, SD 11283-8949",1997-01-25 01:24:24,5e:a0:22:03:1f:d2,theresacooper@yahoo.com,img/obama.jpg +Donna Vargas,102-40-9319,00845,"125 Lee Crescent Apt. 542 +Mccartyview, PA 48963",1920-11-23 19:40:18,14:47:be:d2:c9:d6,kaitlynlynn@yahoo.com,img/obama.jpg +Crystal Montgomery,145-03-6470,36526,"USNS Marquez +FPO AP 58633-4946",1944-10-01 06:48:39,9c:7a:bd:f4:b4:95,sherri44@johnson.com,img/obama.jpg +Dana Palmer,814-50-5071,61494,"41949 James Court Apt. 358 +South Jamesside, NJ 34553",1980-02-08 00:42:10,25:de:d2:d1:d2:30,marvinstone@gmail.com,img/obama.jpg +Lisa Velasquez,254-66-1723,91405,"67068 Joseph Cliffs +East Carlosstad, MA 36612-5898",1936-06-18 04:17:10,82:cc:d1:31:f1:5e,michaelgarcia@brown.com,img/obama.jpg +Matthew Melton,033-22-9392,32527,"606 Cervantes Spur Suite 028 +New Joshua, WA 56594",1949-07-05 10:06:23,73:82:85:d2:94:54,danielrodriguez@hotmail.com,img/obama.jpg +Brian Warren,131-89-6040,45939,"083 Francis Roads +Jessicaberg, AS 66761-2703",1978-10-20 02:34:13,fb:d6:a5:ab:62:1c,flemingjulie@wilson.com,img/obama.jpg +Taylor Watts,687-44-5533,63337,"64827 Lindsay Locks +Emmaport, VA 32547",1973-03-04 23:27:12,cc:dc:c2:fd:6d:47,robinsonannette@mayer-harvey.com,img/obama.jpg +Angel Gallagher,886-66-9044,86573,"50866 Lopez Track +West David, KS 52370",1981-04-29 10:42:50,15:54:8c:07:b2:01,qbuchanan@sanders-nelson.org,img/obama.jpg +Morgan Griffin,391-20-2485,14290,"106 Odonnell Parkways +Robbinshaven, MP 81462-8061",1957-10-22 22:04:55,07:7f:75:6e:a9:6e,sroy@strickland-scott.com,img/obama.jpg +Becky Martinez,499-72-3964,13077,"816 Donna Forges +Daltonville, OK 25105",1946-06-24 10:59:41,7d:86:a5:39:08:a3,david45@moore.net,img/obama.jpg +Chelsea Garcia,155-53-5109,87634,"95489 Christine Drive Suite 564 +Carrfort, MI 36779",1979-12-05 10:32:53,80:12:93:3d:60:aa,baldwinkevin@stanley.com,img/obama.jpg +Andrew Snyder,126-34-6280,79638,"5613 Margaret Villages +West Meghanberg, MO 14493-6013",2011-11-07 08:54:32,38:55:30:54:ab:eb,katherine16@yahoo.com,img/obama.jpg +Christopher Trevino,516-43-3205,44319,"3823 Brown Route Suite 450 +Wrightfurt, PA 62445-9853",1969-02-22 07:15:15,e9:ba:78:33:ef:47,clementsthomas@hotmail.com,img/obama.jpg +Jeffrey Murphy,249-02-4666,13070,"2837 Rodney Greens Suite 591 +Kiarachester, ME 92316",1921-11-07 15:10:18,8e:27:94:85:e3:0f,blackburnjoan@hotmail.com,img/obama.jpg +Barbara Ball,571-66-2549,85696,"81873 Dixon Inlet Apt. 088 +New Christopherland, IL 78090",1917-10-15 11:10:20,da:ae:2d:75:7c:06,tara38@francis.com,img/obama.jpg +Joyce Barber,523-57-0270,24706,"345 Christopher Manors Apt. 954 +West Melissamouth, MT 59599-8748",2001-05-12 20:32:28,37:52:0b:37:f2:2f,wooddavid@hotmail.com,img/obama.jpg +Mario Williams,689-48-7324,31921,"01527 Holly Gateway +North Catherine, RI 90935-5278",2015-03-10 17:17:45,fe:86:57:6f:55:e8,ericsmith@price.net,img/obama.jpg +Jason Parks,716-66-3343,57665,"Unit 6172 Box 2377 +DPO AE 56987",1995-06-13 09:07:36,8b:0d:68:0d:3d:5a,andreworr@clark.com,img/obama.jpg +Dana Thomas,298-79-9979,00995,"65690 Brown Crossing Suite 958 +West Christopher, WV 78782-8091",2003-08-15 15:39:31,76:4b:75:70:33:2e,alexanderreese@hotmail.com,img/obama.jpg +Jeremy Leach,188-44-2037,64727,"63004 Harvey Corner +Carlberg, MN 20964",1976-07-22 06:52:23,b5:84:47:17:04:b7,bradleythomas@david.info,img/obama.jpg +Leslie Moody,398-82-7266,95601,"6861 Wall Estates +Port Marcusstad, GU 51130",2013-11-26 19:14:35,84:f1:71:da:43:6d,dphillips@gmail.com,img/obama.jpg +Anna Lee,280-36-8504,84014,"PSC 6598, Box 7124 +APO AP 58799-8000",1970-08-26 19:58:59,d9:19:e9:7a:cc:28,douglasshah@cobb-ibarra.org,img/obama.jpg +Patrick Duran,224-07-3227,42456,"42508 Christina Lane Suite 751 +Andrewshire, WY 66325",1998-01-31 20:24:39,59:2b:74:d5:f8:20,daniel95@howard.com,img/obama.jpg +Christopher Newton,690-28-5877,19759,"2943 Kenneth Mall +Rayport, ND 00038-0411",2012-07-03 14:53:05,6b:f1:28:e7:1e:43,craig54@hotmail.com,img/obama.jpg +Barbara Ramirez,869-59-7499,86770,"7703 Parker Fords +Velasquezfurt, TX 97198",1970-11-08 04:44:07,6f:0b:b6:ee:f9:a7,rreed@gmail.com,img/obama.jpg +Cody Myers,084-04-5960,66199,"34045 Robert Mews Suite 347 +Joshuashire, NJ 81077",1943-02-15 20:54:21,0c:62:9b:a6:ec:2f,arnoldlisa@mcclure-chapman.net,img/obama.jpg +Michael Clark,411-52-5917,39888,"3186 Clements Squares +Markfort, WV 08820-1863",1961-11-25 11:39:42,2f:6e:12:9f:ab:ef,eanderson@cannon-smith.com,img/obama.jpg +Sandra Schroeder,065-88-0524,01021,"42117 Mata Bridge +Newtonfort, PR 06152-1045",2014-02-24 16:11:28,81:0a:9f:4b:ed:e1,joebrown@ramirez-thornton.com,img/obama.jpg +Kimberly Williams,027-55-6336,92668,"744 Chaney Springs +Lake Christophershire, NJ 08627",2005-04-07 01:21:04,50:57:12:d4:d8:66,ofarley@thomas-johnson.net,img/obama.jpg +Julie Young,034-87-1599,31602,"USCGC Haas +FPO AP 73870",1931-10-04 16:36:13,78:df:46:d7:03:00,zdavis@yahoo.com,img/obama.jpg +Robert Tapia,833-02-4761,04807,"0606 Carla Via Apt. 472 +Michaelville, IL 01758",1928-10-17 22:54:15,9f:d3:25:cf:37:04,khall@ramirez.com,img/obama.jpg +Kimberly Brown,762-97-8599,83063,"6795 Chavez Mews Suite 239 +Colemanton, VT 67611-6408",2001-06-29 20:06:21,c0:8a:7d:2c:3d:e8,summer93@richardson.com,img/obama.jpg +Brenda Humphrey,797-56-8618,78124,"798 Robert Vista +Fletcherbury, ND 41996",1953-09-13 12:36:20,19:b7:3a:4a:1b:10,erikareyes@norris.com,img/obama.jpg +Earl Chang,122-68-7771,21052,"200 Shelby Station Apt. 563 +West Jennifermouth, ID 75513",2005-03-15 14:57:53,49:a4:e8:3b:d0:52,suttonlisa@perry.info,img/obama.jpg +Alan Guerrero,146-80-3624,50491,"01676 Chen Causeway +Martinezton, SC 45975",1984-12-26 16:50:16,95:6a:c8:26:98:f7,bbruce@green.com,img/obama.jpg +Zachary Snow,270-79-1358,72273,"15347 Fuller Harbors Suite 499 +East Brycetown, NH 39815",2013-03-19 21:17:38,da:10:7e:5b:48:f8,dwayne48@johnson-gonzalez.info,img/obama.jpg +Laura Schultz,123-21-0173,58012,"7147 Pacheco Village Apt. 235 +Port Dannytown, MD 36593-5832",1920-07-23 04:38:50,61:cf:ad:52:a7:a1,sarahfrank@roy.info,img/obama.jpg +Sarah Grant,696-33-3167,89376,"453 Katie Ville Apt. 202 +Russellton, MN 91233-7103",1958-03-03 08:08:58,65:a8:19:91:86:39,buckleywesley@gmail.com,img/obama.jpg +Bethany Reed,823-56-0809,73608,"126 Reid Crossing Suite 441 +Curtismouth, ID 43718",1938-06-20 01:10:04,b0:bc:ce:5a:48:8a,caitlin92@hotmail.com,img/obama.jpg +Aaron Nelson,399-15-5223,23991,"947 Cindy Estate Apt. 633 +Pierceshire, MD 36226",1925-05-05 11:38:23,24:70:38:7a:4d:31,ogonzalez@johnson.biz,img/obama.jpg +Sandra Franklin,809-59-4590,81958,"49846 Johnson Unions Suite 084 +Duartebury, TX 89128-4431",2006-11-11 13:50:09,e3:26:08:96:97:2a,melissa48@hotmail.com,img/obama.jpg +Patricia Middleton,347-29-0864,33948,"PSC 0783, Box 3147 +APO AE 30203-4070",1994-01-06 07:20:23,f3:81:88:c4:37:f6,ashleysmith@gmail.com,img/obama.jpg +Jacob Russell,166-48-7796,84979,"342 Reynolds View Apt. 612 +Aprilmouth, UT 17146-9698",2000-09-12 08:01:10,18:a4:7f:e3:55:cf,btyler@yahoo.com,img/obama.jpg +John Perez,293-74-7455,69187,"8529 Michael Lane +South Jenniferville, FM 77700-9274",1967-12-18 13:28:13,24:3a:d6:d3:d8:ff,dennis54@yahoo.com,img/obama.jpg +Joseph Jackson PhD,162-08-3311,17774,"9766 Bryant Valley +Dustinhaven, MO 40718",1926-01-31 12:03:53,6f:e8:d9:d4:dc:e3,ymoore@andrews-wilkins.info,img/obama.jpg +Kelly Wyatt,511-71-0976,36872,"288 Pamela Trace +South Amyfurt, NE 41548",2009-05-11 05:28:07,73:9e:a7:e7:7c:de,umcguire@tate.net,img/obama.jpg +Mrs. Katrina Wheeler,562-27-9123,33976,"43869 Mckinney Groves +East Amychester, NE 54315-9768",1934-01-05 12:59:58,be:8b:b8:59:c8:d1,danielle28@williams.com,img/obama.jpg +David Stone,255-16-9756,22202,"421 Edwards Port +Smithfurt, SD 20852-6721",1988-10-27 13:43:11,44:0e:57:51:41:d6,dustinpowell@nguyen.net,img/obama.jpg +Kenneth Castillo,356-90-0589,07022,"6269 Teresa Ranch Suite 916 +Lake Alex, MH 99243",1996-02-03 21:21:20,2b:bf:26:d2:22:c0,ijennings@gmail.com,img/obama.jpg +William Brown,416-44-1333,38616,"15748 Deborah Bridge +Jacobhaven, PR 58112-4786",1953-03-08 22:17:50,1e:84:2d:34:92:66,katherineibarra@smith.com,img/obama.jpg +Sarah Hudson,155-05-8623,05415,"26270 Becky Village Suite 156 +Lake Daniel, MA 59767",1931-02-20 00:55:54,9f:06:98:62:b0:82,claudiapham@yahoo.com,img/obama.jpg +Brian Villegas,081-45-3756,20102,"2532 Jeremy Flat +Bensonmouth, AL 45505",1939-12-07 03:07:22,92:83:5b:24:ce:af,ujuarez@krause.com,img/obama.jpg +Christopher Avila,154-68-0140,39491,"8046 Harris Lodge +South Jamieview, KS 95376-1254",1994-09-06 04:32:18,3d:d3:f1:91:c6:8e,shawn84@ellis-rodriguez.org,img/obama.jpg +Andre Boyd,059-31-7448,31250,"179 Jill Lock +New Pamchester, IL 53721",1967-11-06 22:52:36,f8:a9:9e:0b:11:9f,christinestewart@gmail.com,img/obama.jpg +Jordan Hawkins,452-18-4149,21467,"02129 Sullivan Cove +New Dylan, NJ 44776-2971",1943-08-17 21:47:32,c6:25:66:9e:63:5a,bradley43@gmail.com,img/obama.jpg +Gabriela Bates,199-29-0104,67247,"4344 Johnson Corners Suite 600 +Shawnfort, CA 45523-0211",2012-07-30 20:31:25,15:c9:13:6b:16:79,smurray@hotmail.com,img/obama.jpg +Carolyn Spears,444-43-9232,03222,"Unit 0557 Box 5864 +DPO AP 46145-1580",1963-09-15 23:57:55,c0:fd:2a:53:43:99,mariah55@reyes.com,img/obama.jpg +Bobby Martin,729-15-8461,81484,"PSC 1541, Box 0719 +APO AP 37949",1997-10-17 19:36:48,cb:55:d5:11:82:8c,quinnsara@jones.info,img/obama.jpg +Brandon Gomez,482-76-3485,32974,"49715 Robert Ferry +Courtneymouth, AS 78478",1995-01-21 20:46:55,7c:90:9e:3d:21:49,andrewclark@salinas.com,img/obama.jpg +Kristina Garcia,624-41-6976,01949,"7548 Samantha Trafficway Apt. 746 +East Donald, MS 26886-7944",1977-10-03 21:10:05,d9:3f:06:d9:6e:46,ithomas@hotmail.com,img/obama.jpg +Jason Jones,304-33-5098,49712,"4143 Daniel Path Apt. 505 +East Carl, IL 36903-7660",2006-09-28 04:15:47,5b:0f:71:d5:4f:cb,heatherhernandez@ortiz.com,img/obama.jpg +Thomas Jenkins,809-43-6106,98346,"56959 Marc Shoal Suite 638 +North Frank, WI 76802-6852",1990-02-08 19:38:40,d2:d2:7e:78:b3:db,matthew59@martinez.com,img/obama.jpg +Mr. Randy Diaz,812-32-2853,37062,"2015 Schneider Tunnel +West Christopher, PA 10903",1929-03-23 17:18:49,13:bb:37:04:8e:ba,geneferguson@harvey-cruz.com,img/obama.jpg +Ryan Stevenson,387-10-7121,09449,"66543 Jay Estates Suite 452 +Pettyview, RI 43882",1991-02-03 09:52:09,d5:5c:8b:e5:ee:7a,rgray@newton-smith.biz,img/obama.jpg +Chris Hill,671-56-4928,83432,"519 Cruz Turnpike +New Williamton, MN 39634",1996-10-15 21:11:59,38:d1:f3:90:10:87,glenn87@thompson.net,img/obama.jpg +Michael Sparks,254-55-4200,21612,"6261 Taylor Hill Apt. 235 +North Kaylafort, PW 46630-1879",1943-04-27 07:47:36,17:f5:a8:52:ca:b5,debrabeard@gmail.com,img/obama.jpg +Michael Garcia,156-29-0671,31025,"498 Michelle Fort +Port Tammybury, CA 81511-1314",2013-09-08 20:06:03,a2:3a:e9:8d:a0:c7,gvalenzuela@nicholson.com,img/obama.jpg +Brandon Barnes,409-45-0408,31125,"USNV Watts +FPO AE 31467-0149",2006-04-14 14:18:45,6e:1a:c9:5e:10:c0,hollywilliams@hotmail.com,img/obama.jpg +Anne Lopez,681-76-1439,16125,"8333 Scott Views +Lake Sheila, MT 88594",2017-01-25 20:54:59,90:78:8d:1b:43:ea,aramirez@thomas-coleman.com,img/obama.jpg +Craig Montgomery,763-73-3020,66624,"28309 Clark View +New Meganton, SD 54045",1995-12-05 09:50:05,03:06:87:d6:fe:82,ulivingston@yahoo.com,img/obama.jpg +Melanie Chavez,470-33-5811,11634,"382 Watson Loop Apt. 009 +Moralesport, FM 47253-8756",1989-03-23 11:58:51,ac:fa:6d:d8:58:50,jamesadam@hotmail.com,img/obama.jpg +Stephanie Douglas,482-82-2307,06119,"689 Amber Divide Suite 233 +South Dorothy, MD 22148-2533",1946-03-04 19:32:32,6e:51:05:dd:ab:db,christopherwright@yahoo.com,img/obama.jpg +Tammy Rodgers,143-04-8492,45741,"63840 Ryan Villages +Ethanshire, WV 19027-0209",1976-11-09 16:17:00,c6:35:e8:76:b1:dd,jose92@powers.com,img/obama.jpg +Sabrina Howell,169-02-0229,20567,"9368 Hill River Apt. 677 +Mackenzieburgh, MH 54028",1958-06-16 18:28:53,0c:80:b0:74:c3:25,kjones@nelson.com,img/obama.jpg +Robert Davidson,024-70-3089,92509,"8032 Solis Ferry Apt. 838 +Davisfort, NE 69401",2015-08-20 06:59:44,ad:ef:ab:cb:66:b1,jonathanhartman@yahoo.com,img/obama.jpg +Valerie Donovan,791-99-6707,34345,"46890 Jeffrey Trafficway Suite 409 +East Tara, DE 20157",1939-04-23 20:36:04,b3:fb:2a:3f:12:bc,markaustin@gmail.com,img/obama.jpg +Kelly West,380-56-0145,93539,"58805 Mcclain Terrace +Lake Stacychester, MH 85140-6056",1997-11-25 10:00:38,89:36:f0:cb:ad:cb,juliehicks@yahoo.com,img/obama.jpg +Dylan Franklin,352-65-3279,40103,"USS Vasquez +FPO AA 42739",2000-06-08 10:47:10,f7:9a:8d:e7:64:3d,brownelizabeth@graves-thomas.com,img/obama.jpg +Phyllis Harrison,830-73-8423,57930,"169 Todd Isle Suite 014 +Burchshire, CT 31262",1949-07-28 08:33:42,8f:d6:a5:ef:1f:ec,austinjames@whitaker.com,img/obama.jpg +Lisa Ramirez,888-89-3835,60571,"85977 Moran Villages +Brandichester, DE 01666",2012-03-07 20:44:46,3a:5e:b6:57:80:78,ryancannon@yahoo.com,img/obama.jpg +Emily Calderon,734-25-1949,90151,"707 Hunter Cove Suite 148 +New Savannahhaven, UT 36225",1961-09-07 00:19:45,2b:86:c6:2d:bd:5a,yvonne42@wilson.biz,img/obama.jpg +Daniel Long,075-64-7016,63117,"8576 Philip Square Suite 498 +Hudsonshire, GA 90574-8312",2001-04-16 20:40:53,83:47:72:f8:39:ed,kathryn67@yahoo.com,img/obama.jpg +Robin Pena,462-98-8294,04428,"2845 Alexandra Brook +Melissamouth, IL 02584",2009-04-26 17:45:50,83:a0:9b:a1:1d:94,justinrodriguez@hotmail.com,img/obama.jpg +Chris Miller,273-98-9641,34839,"26452 Heather Track Suite 055 +South Kevinfort, WI 68300-7867",1976-05-20 00:48:38,2a:5d:31:7c:40:82,vmoreno@yahoo.com,img/obama.jpg +Ian West,489-87-4437,69738,"663 Khan Cliff +Lake Rebeccaberg, NH 61617-5695",1976-11-28 21:56:23,b3:aa:89:c2:8f:96,johnsonmichael@yahoo.com,img/obama.jpg +Lynn Alvarado,089-21-5412,04778,"343 Linda Ridge +West Samantha, CA 67282",1970-09-07 01:11:04,12:42:6b:84:12:32,wholmes@yahoo.com,img/obama.jpg +Cindy Gonzalez,729-20-7308,07393,"6865 Lawson Trafficway Apt. 060 +West Sherylfurt, DE 58570",2006-08-13 14:18:39,c1:37:e3:e5:75:70,jonesrhonda@gmail.com,img/obama.jpg +Lauren Goodman,746-07-3374,52013,"51067 Grace Forge Suite 784 +Richardsborough, FL 12545-8315",1921-09-19 14:51:26,94:9f:65:31:3a:71,henryelizabeth@hotmail.com,img/obama.jpg +Carrie Christensen,025-32-9513,13349,"273 Douglas Turnpike Suite 619 +Seanburgh, SD 61156-4196",1986-01-18 21:47:23,3b:c1:25:91:c0:c2,robertsthomas@gmail.com,img/obama.jpg +Ivan Hunter,407-78-8130,32355,"99649 Traci Mount Apt. 796 +New Brookeburgh, PW 79242-6426",1983-03-18 09:51:28,49:20:91:82:e7:aa,courtney30@castro.com,img/obama.jpg +Chris Underwood,085-38-9447,35634,"PSC 8940, Box 7043 +APO AE 28615",2016-05-31 03:03:21,3e:0d:d9:91:ec:ef,xcervantes@yahoo.com,img/obama.jpg +Joseph Marshall,679-80-3796,95588,"0219 Brett Stream Apt. 587 +West Dennis, MH 30354-2944",1997-05-23 07:39:23,3b:68:05:2c:fe:0d,bradley66@hotmail.com,img/obama.jpg +Kimberly Macdonald,577-44-1934,62700,"63620 Michael Creek +Mejiamouth, MS 42149-1395",2000-11-06 17:49:40,f3:03:89:4f:58:55,iaguilar@gmail.com,img/obama.jpg +Courtney Rodriguez,503-33-2531,28313,"46220 Jason Isle +North Tyler, MP 88489-2597",1950-07-19 11:18:02,14:14:4c:bd:1b:dd,kthomas@bell.com,img/obama.jpg +Taylor Hernandez,813-66-1177,04091,"45058 Kevin Club Apt. 042 +Murphybury, MT 00143",1996-01-24 18:12:41,5a:1f:ab:eb:88:70,nicholas80@hotmail.com,img/obama.jpg +Kyle Davis,274-83-2278,23985,"90864 Patricia Cape +North Mercedes, IN 61991-1206",1955-02-19 17:29:35,97:3e:18:4b:c5:93,ericjohnson@zimmerman-mitchell.com,img/obama.jpg +Wendy Ware,804-17-5510,73423,"5577 Nicole Village Apt. 085 +Courtneyport, NY 61131",1934-11-14 04:42:16,52:b4:5e:44:54:9e,johnsonjerry@hotmail.com,img/obama.jpg +Cynthia Mathews,430-94-8253,37326,"8587 Lisa Underpass Suite 360 +North Matthewland, NC 02102-6521",1994-03-09 09:24:55,6c:03:b0:a1:29:8c,haydenvalerie@gmail.com,img/obama.jpg +Christine Reed,045-86-5615,56001,"977 Cox Via +Richardshire, RI 13757",1984-05-11 10:37:37,f5:15:05:08:38:b6,tara84@hotmail.com,img/obama.jpg +Katherine Hanna,215-62-9207,02615,"32040 Kim Fields +Erictown, MH 94699-7496",1963-09-25 14:27:13,ae:38:a5:d1:dc:05,martinezcarrie@white-moore.com,img/obama.jpg +Terry Barrett,433-48-2895,74435,"58782 Graham Forges Apt. 203 +Port Amandaton, RI 40069-3409",1953-11-18 02:00:45,5b:51:7a:ac:2e:eb,daniellegonzalez@long-gonzalez.info,img/obama.jpg +Anthony Wright,023-78-4393,41847,"01990 Russell Ramp Suite 159 +Port Daniel, HI 22072",1981-12-30 03:42:58,68:46:7b:0c:c4:6f,david02@williams.com,img/obama.jpg +Jerome Morris,373-35-7884,27458,"446 Ramsey Avenue +Port Miguel, ID 72102-0628",1941-06-24 03:40:48,5f:1b:c6:d5:62:36,brandi63@gmail.com,img/obama.jpg +Sydney Alexander,686-46-6558,15358,"9523 Allen Walk Apt. 779 +Tylerview, NM 97952-7386",1931-07-04 12:40:15,ee:01:f4:62:13:5c,martin26@yahoo.com,img/obama.jpg +Christopher Wilson,599-76-3422,04702,"33300 Tammy Village Suite 620 +Hallmouth, GU 04154-6734",2012-10-07 10:38:52,c3:9e:91:8f:14:e3,jmcmillan@smith.com,img/obama.jpg +Gregory Tucker,874-05-1011,93663,"170 Nicole Parks Suite 021 +West Shellyberg, WY 01947-6093",1994-10-05 18:44:04,ed:fd:33:83:17:1d,vthomas@moody.com,img/obama.jpg +Melvin Mills,630-31-1549,21039,"2344 Arias Island +Julieburgh, FL 32588-8241",2010-08-06 10:17:48,2d:9c:78:20:33:a8,hansenmaria@park-strickland.com,img/obama.jpg +Steven Brooks,712-40-6411,20906,"6447 Sarah Keys Suite 180 +South Heidi, MD 83005-6984",1965-12-27 02:49:50,b3:ab:67:90:fd:5e,katie71@harris.org,img/obama.jpg +Samuel Sandoval,803-64-1375,46045,"PSC 3715, Box 1523 +APO AA 17822-9503",1961-08-14 04:01:38,95:b9:3d:59:8a:c5,pamela54@smith.com,img/obama.jpg +Melissa Walter,757-32-4898,60011,"593 Debbie Plaza Suite 357 +Laraville, AL 90266-7635",1989-03-30 06:23:43,79:3f:10:07:33:97,uharris@bruce-snyder.com,img/obama.jpg +Joseph Armstrong,467-93-5285,26199,"2592 Nicholas Divide Suite 655 +Port Davidmouth, IL 87441",1999-01-08 04:56:53,59:53:68:21:57:f3,brittanypineda@roman.net,img/obama.jpg +Terry Maddox,343-53-5889,01900,"59772 Coleman Crossing +Heathermouth, DC 90303-3787",1991-10-26 02:36:35,f5:58:6c:23:a8:42,hunterwilliam@yahoo.com,img/obama.jpg +Michael Oneal,674-52-2763,85488,"98467 Ashley Drive +New Melanie, PW 50965",1984-01-05 05:18:19,cb:e8:f7:e9:a0:cd,edwinduncan@hotmail.com,img/obama.jpg +Melanie Gonzales,196-44-6708,97964,"331 Brittany Island +Rebeccachester, AL 72230",1954-09-25 19:51:40,af:e5:18:7b:fb:2c,joseph61@james.com,img/obama.jpg +John Haas,371-18-6015,29154,"91115 Jones Gardens +West Nicoleville, ND 50072",1986-04-27 21:17:09,ed:59:03:a0:1c:c5,john95@rivas.com,img/obama.jpg +Anthony Maynard,235-59-1671,16984,"11321 Monica Forges Suite 350 +Hoganbury, MO 44888-7181",1924-11-16 22:28:53,20:2c:92:84:cb:f2,kathleen91@yahoo.com,img/obama.jpg +Vanessa Valdez,803-43-1569,08838,"USNS Anderson +FPO AA 71852-5361",1965-11-08 04:10:48,f1:80:b3:1c:00:34,ygriffin@gmail.com,img/obama.jpg +Nicholas Walls,454-83-5536,07914,"6912 Dougherty Walks +Tinafort, MD 93020-0035",1981-06-11 22:19:48,d0:c3:95:cf:67:75,bwoods@williams.com,img/obama.jpg +Shawn Brown,897-67-8634,05856,"719 Taylor Estates +Aprilburgh, MA 34645",1986-09-07 14:53:17,85:9c:16:1a:17:16,patriciahuang@faulkner.com,img/obama.jpg +Deanna Lewis,547-10-5815,75225,"930 Mary Mission Suite 523 +Scottmouth, MA 60806",1940-01-21 08:12:12,0e:0c:c1:f8:28:26,cynthia05@hotmail.com,img/obama.jpg +Shannon Montoya,054-59-7965,24186,"7242 Shaw Springs Suite 016 +Smithmouth, MI 96144-2831",1991-03-02 20:26:39,36:2c:e4:43:80:56,kennedyemma@yahoo.com,img/obama.jpg +Andrea Rojas,627-09-9661,00947,"1282 Graham Highway +Alejandraside, IN 14490-5406",2015-12-06 05:08:53,67:be:1f:ca:0a:4e,wongleah@hotmail.com,img/obama.jpg +Jeff Shepherd,301-37-7337,72710,"66519 Jeff Tunnel +Cohenfurt, AZ 54975",2010-05-05 04:56:56,4d:a7:e9:11:b8:63,angelica62@stewart.net,img/obama.jpg +Jeremy Golden,622-27-7520,54767,"8785 Lisa Villages +South Paul, AZ 11233",1978-11-11 07:10:43,61:6a:20:ad:d2:9e,cuevassteven@hotmail.com,img/obama.jpg +Emily Ortiz,641-08-0237,69353,"311 Michael Spurs Apt. 369 +Port Jamesshire, KS 29483-7616",1948-11-05 03:26:57,1b:2b:60:f2:97:07,lorimcneil@hotmail.com,img/obama.jpg +Tamara Diaz,861-57-9006,36834,"2393 Howell Parkways +Jennifershire, NE 49101",1968-08-05 15:58:25,c8:08:71:0b:57:5b,mary40@brown.com,img/obama.jpg +Andrew Perry,247-62-0366,59638,"62280 Moss Rue Apt. 656 +Port Michael, FL 36566-4918",2012-02-22 03:00:02,b2:3b:bf:3c:d4:e1,ktapia@yahoo.com,img/obama.jpg +Alicia Brown,017-02-8465,66152,"USNS Valencia +FPO AE 04020",1990-01-15 03:10:56,ff:e5:71:84:94:ab,charles13@yahoo.com,img/obama.jpg +Aaron Cook,109-82-9309,34757,"890 Mitchell Spring Suite 902 +Lake Anthonytown, ME 02459",1962-10-05 06:27:16,c0:20:37:ed:dc:4d,oquinn@lee.info,img/obama.jpg +Melanie Alvarez,650-68-1423,41067,"07895 Knox Stravenue Apt. 904 +Cookport, AL 76676-4938",2011-02-24 08:44:03,22:02:49:eb:15:3a,rebekahblevins@gmail.com,img/obama.jpg +Maria Gill,756-68-3140,44814,"637 Ellis Knoll +Suarezmouth, WA 66935-3303",1935-05-29 08:46:44,1f:f3:2e:61:65:4d,tarabrown@davis.com,img/obama.jpg +Alyssa Ruiz,299-28-8330,92238,"118 Watkins Drives +East Jenniferhaven, MP 93523-2384",1938-03-13 22:50:55,24:e2:02:87:1a:56,bmcknight@gmail.com,img/obama.jpg +Sandra Hall,161-82-8445,02627,"24850 Thompson Summit Apt. 580 +Williamhaven, PW 06539",1930-12-25 12:41:24,8d:e8:9a:60:cb:6e,ynunez@fisher-hernandez.info,img/obama.jpg +Thomas Cook,088-52-5249,84528,"429 Sarah Branch Suite 737 +South Edwinmouth, NV 67862-2548",2002-05-07 01:06:24,cd:51:0d:44:26:f3,reyesjohn@robinson.com,img/obama.jpg +Peter Roberts,336-22-6695,26871,"703 Alicia Meadow Suite 773 +North Jacobland, OK 26850-2938",1994-06-25 09:31:58,e4:f7:8a:e9:20:2d,ashley31@benson.com,img/obama.jpg +Ashley Jackson,850-17-3523,77911,"USS Harmon +FPO AA 75367-4832",1924-04-11 08:20:08,81:fe:13:65:2c:48,nross@gmail.com,img/obama.jpg +Roberta Castro,752-55-0946,35145,"753 Bright Divide +Davismouth, IN 90780",1938-12-11 05:21:30,19:85:3a:ba:87:77,jacob80@gmail.com,img/obama.jpg +Jimmy Lopez,087-56-1970,77014,"70060 Hale Burg +Smithbury, ID 10861-6932",1943-01-24 04:28:23,ec:35:0c:52:b4:7f,eddieyoung@smith-gonzalez.info,img/obama.jpg +Nathan Adams,844-81-6843,63332,"2710 Ramirez Flats Suite 070 +Markside, ID 64227",1940-09-29 09:22:35,ed:f8:60:f6:bb:4a,james62@gordon.com,img/obama.jpg +Rebecca Hooper,122-46-3302,22123,"30515 Peterson Ways Apt. 742 +Lake Kimberly, MH 75780",2004-06-28 19:42:19,ec:96:69:05:67:44,donnataylor@martin-burns.com,img/obama.jpg +Jason Pierce,819-52-2766,69735,"04271 Jason Radial Suite 853 +Davidland, NH 18417",1967-06-25 08:37:50,1e:fd:b7:dc:9a:f6,gbryant@smith.com,img/obama.jpg +Andrew Ramirez,324-04-9090,00625,"7593 Robertson Harbor +Port Charles, OR 70153-9707",1995-12-31 03:30:37,5b:02:2c:5b:0b:a8,paulsutton@johnson.com,img/obama.jpg +Emily Bell,120-82-8634,29270,"16425 Erin Gateway +Lake Erica, GU 35167",1951-03-15 15:54:16,d3:45:bc:53:7a:35,xandersen@gmail.com,img/obama.jpg +Vanessa Coleman,660-84-3487,69167,"474 Fitzgerald Well Suite 987 +Lake Joseph, OH 16469",1995-02-08 07:33:11,15:7d:53:85:51:83,davidlopez@hotmail.com,img/obama.jpg +Michael Williams,715-66-8384,62490,"585 Cardenas Overpass Suite 599 +Jonesport, ME 70657-3342",1943-03-03 00:38:50,87:70:9a:34:b5:fb,olarson@baker.net,img/obama.jpg +Susan Klein,348-32-8071,94875,"316 Ellis Centers +Karenshire, NY 10823-0330",1987-02-01 00:59:29,31:c8:29:53:77:9b,davischristine@gmail.com,img/obama.jpg +Christopher Scott,305-82-4313,73872,"89532 Reid Wall Suite 585 +Dennischester, PW 88547-8068",1944-11-29 09:27:42,97:75:ee:2a:c9:9a,jason80@hotmail.com,img/obama.jpg +Jessica Silva,572-09-0129,50076,"Unit 4526 Box 0740 +DPO AE 82409-7846",2011-05-13 14:25:06,57:c2:c8:be:ae:25,robinsonjessica@espinoza.biz,img/obama.jpg +Amanda Padilla,876-99-3661,31246,"USNS Salazar +FPO AE 92354",1962-12-01 11:56:40,21:54:ae:9c:eb:3e,jeffrey86@price.com,img/obama.jpg +Tony Barrera,607-63-5278,81119,"486 Elizabeth Locks Suite 012 +East Susan, DC 30258-6609",1944-12-08 00:42:23,de:a7:e2:6b:68:85,davidgraham@yahoo.com,img/obama.jpg +Jessica Lopez,194-42-0820,25578,"18863 Gabrielle Freeway Apt. 312 +Walshton, VA 02801",1919-07-07 09:58:32,15:a9:69:c6:32:09,kevin68@gmail.com,img/obama.jpg +Brooke Sanders,736-11-4559,05477,"9539 Patrick Street Suite 464 +Davidport, MT 23057",2010-06-10 01:42:58,13:73:81:65:e9:6b,matamario@hotmail.com,img/obama.jpg +Jeffrey Silva,012-45-1000,01901,"8102 Shelley Haven +North Kimberlystad, PW 54877",1994-03-20 13:21:31,82:2d:57:ce:06:8a,whumphrey@yahoo.com,img/obama.jpg +Tiffany Gonzalez,345-21-0050,95842,"942 Larson Drives Suite 954 +North Kyletown, VT 02103-2407",1959-07-17 19:57:43,3b:8a:bb:ba:e5:a8,kylewright@yahoo.com,img/obama.jpg +Mark Le,436-40-4561,39312,"USNS Mcclure +FPO AE 99935-7058",1995-11-30 02:23:32,ba:5d:fb:6e:dc:44,greenlisa@fields-burke.net,img/obama.jpg +Carly Miller,816-39-9103,24829,"4867 Louis Walks +West Jeanettefort, MI 19633-5246",1956-06-02 14:52:08,14:f4:e5:e4:33:98,blake63@chambers.com,img/obama.jpg +Paul Martin,838-28-7711,40666,"2263 Regina Burg +West Victoriashire, MT 34982",1993-08-23 02:26:27,72:14:85:ca:e4:83,amydominguez@fisher.com,img/obama.jpg +Haley Riggs,744-85-0748,43997,"995 Hill Isle +North Sandraville, AS 16531",1992-05-15 14:05:09,69:1b:a2:ba:22:30,tnichols@thompson.com,img/obama.jpg +Melissa Garcia,797-93-2364,03989,"802 Stacie Run Apt. 049 +New Kristinamouth, WV 83241-3015",1988-09-03 19:40:41,d4:d8:49:4f:37:96,stephenspatricia@gmail.com,img/obama.jpg +Amy Austin,155-84-8659,13327,"7325 Robert Lake +Tracystad, NC 12160-7070",1986-06-26 19:46:31,0c:ee:b5:ac:47:1e,ljennings@moran-atkins.net,img/obama.jpg +Laura Grant MD,823-34-9760,30232,"8911 James Extensions Suite 263 +Port Carolstad, UT 49238-8525",1948-03-16 19:48:26,39:f5:84:4f:29:a0,zgilbert@alexander-mayo.biz,img/obama.jpg +Sarah Houston,891-17-4280,08329,"40804 Brittany Inlet +Port Michaelville, WI 09393",1949-09-05 04:58:29,90:e7:8a:86:97:52,elizabeth23@graham.com,img/obama.jpg +Steven Robertson,753-32-8898,53844,"2515 Zachary Roads +North Jamesside, WA 30469",2004-07-13 15:33:47,ab:2f:e0:e7:ab:1c,andersonlaura@nelson.net,img/obama.jpg +Stephen Stephenson,610-73-1396,19199,"3636 Jessica Heights Apt. 465 +West David, IN 42334-6110",1968-01-10 00:33:35,1e:72:ce:13:95:c2,johnsondanielle@martinez.com,img/obama.jpg +Samantha Nguyen,701-73-7736,70754,"9300 Melissa Isle Suite 112 +New Todd, GU 74250-9618",1979-09-28 13:29:52,89:f3:36:f8:b3:88,kristenblankenship@hotmail.com,img/obama.jpg +Michael Silva,454-15-4843,91329,"20839 Giles Center +Kellyport, WI 63724",1985-04-21 14:43:12,8a:06:3a:fb:c6:94,operry@sanchez.com,img/obama.jpg +Angela Barker,872-83-6121,33289,"USCGC Smith +FPO AA 78097-7617",1979-07-26 23:26:38,9c:d2:dd:8f:9d:07,nathanperez@hoover-wagner.com,img/obama.jpg +Kathryn Orozco,330-47-0197,84811,"466 Lindsay Shore +South Reneemouth, MN 47042",2006-03-27 17:01:17,57:18:f6:72:7d:87,tonya85@yahoo.com,img/obama.jpg +Jon Jones,574-83-0056,95168,"017 Carol Causeway +Carmenshire, AL 36491",1992-03-19 12:13:52,af:bb:b2:ee:55:82,ihall@mendoza.net,img/obama.jpg +Jaclyn Olson,116-18-0314,29115,"1682 Cole Highway Apt. 636 +Rachaelview, VT 74482-4111",1985-10-11 10:07:42,ee:86:8a:27:53:2c,mariehester@yahoo.com,img/obama.jpg +Jennifer Henry,365-59-7850,47463,"5918 Anderson Run Suite 535 +East Susanland, SD 39900-5257",2008-09-13 04:03:00,d8:c7:37:71:e1:af,bartonkirk@hotmail.com,img/obama.jpg +Jessica Blair,298-15-0989,32294,"828 Jennifer Camp Suite 687 +Hugheschester, CA 80836-4847",2007-10-08 04:45:11,40:e4:26:05:e7:8c,rodney46@gmail.com,img/obama.jpg +Alyssa Hicks,084-30-3382,88623,"34227 Travis Drive Apt. 367 +Stephanieborough, PR 09055-0515",1969-08-08 15:18:51,b9:9a:39:e3:53:e7,timrobinson@glenn-richardson.info,img/obama.jpg +Jordan Garcia,325-19-1442,05694,"USS Young +FPO AA 62711",1920-03-23 11:20:40,a0:a0:40:d7:48:dd,josephbarnes@yahoo.com,img/obama.jpg +April Gonzales,166-82-6147,02050,"257 Robert Point +Hughesfort, SC 41067",1958-07-17 02:00:21,92:39:3b:1b:c2:00,john38@knox.com,img/obama.jpg +Alexis Griffin,196-79-3781,91782,"689 Villegas Locks +Harrisfort, MT 45046",1983-03-01 14:26:20,50:2a:10:17:f5:8f,vhall@gmail.com,img/obama.jpg +Michael Sloan,748-30-2509,65849,"0036 Wu Ville Suite 967 +Lake Hayden, AR 42435",2008-12-07 08:56:26,72:67:e2:a0:01:99,davidwalker@yahoo.com,img/obama.jpg +Joe Cooper,742-41-1721,32481,"7546 Moore Lodge Suite 360 +Mitchellview, GU 63677-0301",1974-05-23 12:35:13,a5:3f:75:33:67:a5,sharon21@hotmail.com,img/obama.jpg +Anthony Rivera,532-47-2181,08608,"PSC 9734, Box 3182 +APO AE 82089-2270",2013-12-05 18:30:40,9d:f9:7c:79:0d:2d,deanna69@yahoo.com,img/obama.jpg +Jacqueline Shaw,796-84-3149,18552,"35933 Anna Pines Apt. 710 +Port Jeffrey, AK 44627-7925",1920-08-26 03:35:14,94:59:86:09:71:14,michael17@suarez.net,img/obama.jpg +Kelly Michael,793-17-6223,40718,"USNV Ross +FPO AP 84362-6869",1968-05-18 03:05:42,98:a9:e1:30:17:42,james85@sanders-jones.com,img/obama.jpg +Michael Wells,209-80-6163,76929,"0650 Wood Ferry Suite 055 +Michellechester, AK 57998-2388",1925-06-27 19:07:57,3b:fe:48:73:e5:bb,sotovictoria@villegas-flynn.com,img/obama.jpg +Ellen Murray,379-01-3459,60484,"6799 Ann Mountains +West Jessica, WY 44051-2569",1947-09-25 23:07:12,4f:db:4a:aa:af:19,gilbertrobert@robinson.com,img/obama.jpg +Mike Estrada,706-45-0875,64050,"284 Theresa Point +Aliciaville, MA 83499-4938",1965-11-13 12:08:24,7e:50:50:80:12:56,markdavidson@johnson.com,img/obama.jpg +Natasha Proctor,860-72-0493,33061,"8603 Jennifer Ford Apt. 577 +Brandonfurt, TX 32981-1735",1936-09-03 22:40:24,c8:fa:5f:24:2c:44,monicadavis@gmail.com,img/obama.jpg +Christopher Gonzales,328-06-3437,21910,"39123 Nelson Skyway Apt. 897 +South Oscar, NJ 15114-5489",1926-09-23 07:15:20,6e:e0:d6:f6:70:b4,ymurphy@hotmail.com,img/obama.jpg +Emily Ramirez,294-08-1484,25335,"4753 Tiffany Estate Apt. 298 +Lake Andrewfort, GA 30993",1954-08-23 02:34:33,a6:61:45:60:e2:37,sarah16@mills.com,img/obama.jpg +William Hansen,079-59-7866,19311,"24304 Rebecca Point Apt. 181 +South Michele, CA 46248-0126",1923-06-17 02:09:35,3c:27:ef:13:61:70,larsondawn@hotmail.com,img/obama.jpg +Bradley Lewis,876-65-7665,54492,"4806 Cynthia Mall +New Michelleland, TX 62692-2624",1987-10-27 11:30:51,1b:0d:62:57:aa:ef,kingjulie@yahoo.com,img/obama.jpg +Marcus Jimenez,781-90-0543,41879,"00264 Melinda Parkways +Maryberg, NE 81843",1963-08-14 07:13:09,68:c3:f7:c6:6a:fe,lorijohnson@rodriguez-pena.org,img/obama.jpg +Jennifer Delgado,148-36-9632,94700,"074 Perez Expressway +Michaelmouth, SD 89539",1982-06-15 08:59:03,e0:63:69:64:d9:39,jenniferdavis@spears.net,img/obama.jpg +Jasmine Snyder,530-21-2034,62487,"78644 Fox Port +Lake Frankfort, MH 05959",1992-10-14 08:03:41,a2:f8:39:c5:46:42,wandajohnson@williams-padilla.net,img/obama.jpg +Russell Hill,727-98-4518,39500,"1776 Ochoa Cliff Suite 983 +Lake Sarahside, IL 71242-4727",1932-08-27 03:51:44,4b:bb:97:d9:95:0d,hallthomas@patterson-nguyen.com,img/obama.jpg +James Guerrero,663-22-4825,63900,"7422 Ellis Village +New Davidport, VI 97872-0671",1964-04-13 21:10:34,e9:f3:66:b5:95:54,griffinashley@hotmail.com,img/obama.jpg +William Mann,194-65-0987,19181,"975 Suzanne Flat +Patriciaborough, MH 91858",1989-07-10 02:38:05,8f:d4:9e:30:41:20,yserrano@hotmail.com,img/obama.jpg +Lisa Cardenas,897-10-6230,58708,"7107 Heather Mills +Port Marcus, WY 18984",1999-08-26 02:00:30,98:d9:06:25:ac:1b,leejustin@gmail.com,img/obama.jpg +Holly Lee,871-45-2957,18019,"615 Aaron Bypass Suite 141 +Cantuburgh, RI 53985-3595",1939-07-31 05:35:32,66:82:22:bf:9b:8d,coopercathy@gmail.com,img/obama.jpg +Michelle Neal,632-99-9282,68415,"USCGC Romero +FPO AA 19905-8936",1966-04-11 06:49:31,67:af:41:19:89:31,joseph61@gmail.com,img/obama.jpg +Carla Carter,713-30-4068,74084,"039 Michael Club Apt. 956 +Susanfurt, RI 48936-1968",2015-08-13 04:11:47,97:9c:c7:ac:36:77,zholland@gmail.com,img/obama.jpg +Richard Ellis,500-65-2700,50175,"28626 Johnston Springs +North Tammytown, CA 12476-0419",2015-07-19 21:53:17,9c:38:d2:d4:cd:2a,bethany04@simmons.com,img/obama.jpg +Erica Butler,538-55-6471,34587,"622 Yang Drive +North Paulhaven, UT 52332",1965-02-25 23:39:19,6d:7f:c9:64:05:0d,gjimenez@serrano.com,img/obama.jpg +Jessica Young,709-16-8854,55330,"46145 Mcmahon Locks +West Adam, NJ 77975-0520",1936-07-13 23:46:49,e6:38:10:da:ad:b8,hopkinsamanda@dixon.com,img/obama.jpg +Robert Lynn,082-69-0287,05304,"6302 Moss Mews Suite 964 +North Bianca, AS 19072-1795",1956-08-08 21:57:26,90:90:ed:b1:25:5e,alexanderclarke@morales.com,img/obama.jpg +Tammy Lewis,638-63-7189,35312,"451 Martin Parks +Bennettshire, MS 55126",1926-01-13 00:22:43,b7:72:56:79:7c:91,emanning@gmail.com,img/obama.jpg +Cassandra Duarte,432-08-0231,12445,"99556 Stein Path Apt. 690 +Michaelshire, AR 52141-2747",2016-01-11 14:06:00,e6:e2:7b:c5:43:1a,keithkennedy@hotmail.com,img/obama.jpg +Dr. Brianna Young,116-92-4872,09078,"697 Susan Ports +West Matthew, SD 81610-6519",1962-05-16 01:27:28,0c:18:8a:39:03:e8,xwest@yahoo.com,img/obama.jpg +Jean Harris,795-17-7008,42397,"472 Anthony Terrace Suite 625 +Port Daniel, MN 58864",1980-02-01 05:38:47,a7:6d:ad:8d:d7:68,lambjacqueline@yahoo.com,img/obama.jpg +Katherine Austin,819-15-9076,75050,"0962 Nguyen Union +Lake Jonathan, IN 41911",1950-03-07 10:56:55,41:41:c0:11:ca:ef,johnsonmichelle@gmail.com,img/obama.jpg +Richard Bowers,559-01-9984,43804,"27260 Megan Pike +New Jennifermouth, OH 10559",1974-07-19 09:43:37,13:2c:03:56:98:aa,jamessmith@gibson.org,img/obama.jpg +Alex Simpson,469-92-5627,40932,"52839 Howard Wells +New Susanfurt, IL 31801-1740",1921-08-05 21:57:20,22:8b:38:28:fe:7e,karenpowell@massey.net,img/obama.jpg +Danielle Allen,400-89-1169,13254,"19436 King River Apt. 549 +South Jacob, IA 44346-4288",2007-03-03 22:26:50,3b:b1:c5:77:5d:88,mary69@wilson.com,img/obama.jpg +Charles Wallace,765-46-3064,29750,"7403 Wilson Dale Suite 024 +Port Abigail, PW 86914",1949-12-03 08:22:59,9a:0f:bc:79:d5:d3,tammysanders@kelly.org,img/obama.jpg +Monica Woods,133-06-0327,69712,"20391 Johnny Mission Suite 745 +Elizabethmouth, VA 11723",1990-12-31 08:56:40,89:29:fe:9d:e7:97,jasmine98@anderson-little.com,img/obama.jpg +Briana Mcintyre,290-81-4806,88958,"73310 King Road Suite 594 +Elizabethland, ME 33818-2835",1942-04-21 20:01:03,22:2a:37:9a:b8:ee,rossrebecca@yahoo.com,img/obama.jpg +Lindsey Manning,304-32-8440,70886,"USCGC Robinson +FPO AP 35774",1945-06-23 01:45:54,95:6c:1f:1c:e3:6f,davisdebra@hotmail.com,img/obama.jpg +Thomas Lamb,367-22-4361,83805,"15270 Daniel Forest Apt. 792 +Johnport, RI 15110",1935-01-09 09:59:38,c4:ad:05:a4:96:55,sarah93@hotmail.com,img/obama.jpg +Alec Boyd,361-62-5330,11839,"1167 Kara Prairie Apt. 801 +North Krystalchester, CO 29021",2002-09-11 14:26:42,1b:c8:9b:0b:fd:03,kimholder@lynch.com,img/obama.jpg +Rachel Maldonado,714-49-4235,02755,"558 Shane Court +Martinezview, VI 79269",2002-10-20 18:03:58,4b:5e:af:6d:8f:c0,tiffanyjohns@gmail.com,img/obama.jpg +Mark Anderson,725-12-4155,01315,"279 Carlos Mall Apt. 294 +East Dustin, VI 98259",1929-12-10 21:59:08,ab:d0:e4:73:85:1c,dustinthomas@robinson.com,img/obama.jpg +Robert Franklin,270-48-7325,92849,"594 Abbott Place Suite 006 +Alexport, AS 17055-1279",1954-11-13 05:26:32,f4:41:d2:cc:dc:48,jacob03@yahoo.com,img/obama.jpg +Jill Blackburn,810-33-6224,00996,"5616 Trevino Rue Suite 723 +Lake Denise, VT 38581-5911",1964-05-22 04:10:36,8b:d2:da:02:89:a5,carterthomas@yahoo.com,img/obama.jpg +Cynthia Chang,004-59-8027,84116,"895 James Streets Suite 391 +East Brendaberg, SC 32242-4111",1938-10-04 18:14:53,80:85:a1:24:8e:32,martineznatalie@cortez.com,img/obama.jpg +Catherine Matthews,520-30-5202,99644,"474 Hutchinson Motorway +Caitlynview, IN 60811-2309",1947-09-11 12:08:52,7c:72:fb:ff:af:e2,thompsonjennifer@jordan-alexander.com,img/obama.jpg +Jimmy Mills,168-90-4596,14010,"73417 Shields Estates +East Wesleyburgh, IL 65440-7549",1941-12-14 06:19:04,39:8e:f5:ae:7c:f4,charles16@torres.com,img/obama.jpg +Robert Brown,339-11-2113,91166,"PSC 7197, Box 5874 +APO AA 86858-7168",1943-05-03 14:23:11,76:eb:ed:a2:8d:07,patrickthompson@hale.com,img/obama.jpg +Shawn Kennedy,546-83-0035,82732,"72928 Knapp Village +New Glenn, AR 60985",2008-03-27 13:14:05,05:b6:b3:1d:c4:dd,sherryclarke@yahoo.com,img/obama.jpg +Katherine Cervantes,891-90-7495,06922,"017 Paige Stravenue Apt. 872 +Jacksonport, MP 24797-6449",1966-10-01 05:40:54,d7:05:ca:15:0b:98,meagan72@hotmail.com,img/obama.jpg +Aaron Spears,627-94-9907,16546,"0626 Poole Club Suite 444 +Barberchester, UT 15758-8509",1997-01-23 10:24:43,d8:de:60:f1:1b:f3,qmills@gmail.com,img/obama.jpg +Isaiah Rowe,679-44-2674,80308,"913 George Fort Suite 503 +Evansbury, KS 48182",1934-10-16 05:27:36,07:3c:78:fa:80:35,vross@gmail.com,img/obama.jpg +Joseph Palmer,442-25-1571,85633,"925 Jacobs Estate Apt. 849 +Johnland, CA 81604-7650",2009-08-14 04:45:40,41:b4:82:23:f8:bd,mburns@wright.com,img/obama.jpg +Eric Castro,776-59-2425,77480,"9328 Harrison Harbors Apt. 387 +East Christopherberg, AZ 86853",1969-05-25 18:18:12,bf:23:c4:c7:05:f2,sandra66@gmail.com,img/obama.jpg +Barbara Garcia,303-66-5451,92442,"USNS Thompson +FPO AE 88276",1926-01-11 06:46:33,42:71:c1:33:f8:c6,rodriguezdaniel@miller-wilson.com,img/obama.jpg +Heather Sosa,057-60-5436,89497,"970 Janet Mill Apt. 244 +Nathanview, PW 02439-4038",1926-11-30 15:34:43,bb:95:06:18:19:35,caitlynwilliams@kennedy.com,img/obama.jpg +Jasmin Williams,439-67-5930,38493,"5834 Golden Orchard +Knightton, MN 18299",1968-10-15 06:32:43,ec:9b:3f:b2:4d:76,aalexander@williamson-harris.info,img/obama.jpg +Carolyn Bryan,648-91-1122,75934,"PSC 6063, Box 7056 +APO AA 19149",1987-10-03 04:18:27,ca:c6:13:f8:53:42,dsmith@hotmail.com,img/obama.jpg +Trevor Williams,478-43-8730,24499,"382 Suzanne Park Suite 861 +South Jorgeland, MD 26761-1391",1996-10-07 09:04:00,ea:17:14:3c:c1:22,matthew06@burton-richard.com,img/obama.jpg +Joseph Tucker,805-22-9088,36565,"603 Juarez Roads Apt. 148 +West Robert, NJ 30073-0477",1929-07-14 12:26:30,c6:ee:ca:ac:b8:71,thomas15@edwards-daniel.com,img/obama.jpg +Debra Hayes,269-46-2184,44988,"5181 Amy Parkway Apt. 732 +Reginaborough, PR 64352-3820",1957-03-13 16:37:25,28:15:07:c4:0f:32,nicolecurtis@gmail.com,img/obama.jpg +Kristi Jacobs,623-89-5613,86400,"983 Bridget Station +Trevorberg, NY 34268",1927-01-11 22:38:11,4f:8d:74:fd:5c:2f,dmorrison@hotmail.com,img/obama.jpg +Elizabeth Castillo,295-35-6757,34442,"7374 Emily Islands Apt. 324 +Lake Thomas, KS 40419-8806",2001-06-19 16:26:11,32:c0:8e:d9:a2:80,clarkfrederick@hotmail.com,img/obama.jpg +Barbara Richards,596-66-4520,91452,"987 Cole Glen +East Chelsea, OH 44516",2008-08-19 17:30:40,3e:43:ed:b3:72:94,cpatrick@hotmail.com,img/obama.jpg +Shawn Monroe,224-87-8873,51343,"90737 Sheryl Stravenue Suite 578 +East Carol, MT 11672-3697",1980-11-04 02:14:17,a1:1b:e5:c2:9a:2f,joseph39@kerr-taylor.net,img/obama.jpg +Isaiah Garza,888-74-7812,73443,"1428 Jason Squares +Mooreland, NV 79378-2255",1999-08-15 07:11:05,7c:8c:3f:e7:85:12,leejamie@gmail.com,img/obama.jpg +Courtney Galloway,891-11-5279,15477,"49991 Rojas Bridge Suite 831 +New Richard, PR 30063",1988-07-13 11:35:21,06:e3:63:f0:b0:49,courtney11@hotmail.com,img/obama.jpg +Joseph Ellis,725-57-6640,24556,"579 Philip Stravenue Suite 892 +Jamesberg, NJ 24796-9048",1996-10-22 04:14:58,cb:dc:ec:bb:d5:19,greersamuel@lara.biz,img/obama.jpg +Jacob Miller,867-79-8459,64666,"815 Smith Road +New Andre, VA 74519-8610",1996-06-01 01:00:53,9c:f3:40:86:80:b6,karen89@barnes-walker.com,img/obama.jpg +Rebecca Edwards,440-31-5635,13086,"865 Kara Ridge +Nicholasmouth, ND 57718",2016-02-22 11:31:14,47:77:69:0a:d0:bf,sfarrell@hoffman-wilson.biz,img/obama.jpg +Jessica Brown,759-37-2280,10659,"41503 Brian Villages Apt. 087 +West Toddtown, MH 55791",2006-09-24 04:36:34,f5:06:d4:2c:71:87,rbailey@yahoo.com,img/obama.jpg +Alyssa Duncan,824-51-6522,04875,"613 Hood Circles Apt. 936 +New Laurieview, MH 37902",1999-10-03 12:30:24,dd:74:4d:a9:c6:3e,lance97@barnes-alvarado.info,img/obama.jpg +Michele Young,727-89-5986,75411,"102 Erica Shoal +Andersonville, KY 05127",1959-04-09 20:31:10,96:5a:60:14:83:58,jasonwagner@yahoo.com,img/obama.jpg +Elizabeth Williams,586-85-6175,27013,"8690 Bonilla Rue +Juliemouth, NM 71532",1958-01-26 13:09:25,93:76:8d:c6:3c:cc,troy78@beltran.com,img/obama.jpg +David Odonnell,349-27-3818,09887,"36125 Berry Mountain +Carrieborough, TX 44259-0119",1958-06-17 02:53:57,ac:74:0d:d5:9e:e7,paulaclements@yahoo.com,img/obama.jpg +Phillip Warner,889-24-8434,88039,"373 Christopher Unions +Garzamouth, PA 23179",1961-08-13 09:59:08,18:c3:b7:94:5a:da,vernonhunter@macias.com,img/obama.jpg +Edward Kane,282-98-3843,58727,"011 Smith Fort +Houstonton, TX 12637",1987-09-14 10:06:54,7f:89:b8:49:40:d9,lisa65@kelly.net,img/obama.jpg +Tonya Hutchinson,099-16-5078,82831,"USS Edwards +FPO AE 29931",1939-03-07 23:26:51,41:36:3f:c0:27:a4,robertsmorgan@holden-jones.com,img/obama.jpg +Norma Patton,754-29-4934,52859,"61488 Thomas Highway Apt. 757 +Ramosport, MS 53090-6796",2004-04-24 22:50:35,d6:b3:40:83:8d:22,curryjames@gmail.com,img/obama.jpg +Sandra Johnson,387-40-9424,20533,"64301 Blevins Isle Apt. 691 +Curtiston, GA 13063-3138",2001-09-17 05:38:01,4c:30:15:74:d8:c6,hcooley@long.com,img/obama.jpg +Allison Smith,765-57-7208,38879,"6845 Byrd Light Apt. 310 +Port Lauraport, TN 06737-4706",1937-06-27 13:29:36,54:7d:31:c0:fb:1c,lopezryan@tucker-watts.biz,img/obama.jpg +Eric Rice,763-30-4142,47350,"88249 Melissa Rapids +Ellisport, AZ 95748",2008-09-24 13:17:01,2a:57:be:f6:00:06,robbinsalicia@gonzalez-cruz.com,img/obama.jpg +Andrea Ballard,514-91-7465,02257,"964 Richard Squares Suite 722 +East Alyssaville, OH 73374-6748",1927-05-03 17:40:03,e1:7c:d2:87:85:56,erin31@harris-garcia.info,img/obama.jpg +Cheyenne Rose,418-83-9925,80700,"4721 Morgan Locks +Villaside, MT 16803",1994-08-19 08:06:36,6a:6e:e6:04:21:4f,john31@copeland.com,img/obama.jpg +Sheila Norman,065-87-7188,88072,"1911 Alexander Shores Apt. 351 +Lake Andrew, MA 62402",1942-08-11 08:53:19,9b:ed:50:f0:90:22,rhonda46@williams.com,img/obama.jpg +Wayne Morrison,025-41-5104,93767,"400 Norris Extensions Suite 120 +West Joshua, VT 51924",1977-08-29 01:40:55,a4:31:6b:cd:83:e8,barbararowland@yahoo.com,img/obama.jpg +Michael Mcgee,106-84-9918,27422,"673 Davis Courts +North Timothy, IN 52614-3912",1924-06-02 05:14:29,d9:89:45:f8:5b:a5,steven85@yahoo.com,img/obama.jpg +Dr. Christopher Simmons Jr.,400-14-6879,44749,"42127 Daniel Cliff Apt. 259 +Kathleenton, IN 41241",1926-12-02 19:15:14,e4:a9:54:64:ed:79,milesnicole@yahoo.com,img/obama.jpg +Christopher Daniel,270-81-5320,13204,"275 Rodgers Pines +Port Heather, AS 15039-5139",1986-01-04 14:41:30,6b:6f:96:f0:ea:a3,alex08@walter-williams.com,img/obama.jpg +Mary Cruz,328-30-9105,11975,"106 Houston Roads +Howardville, MT 81908",1942-11-06 03:17:28,72:0d:66:42:b9:1b,jmorgan@smith-hicks.biz,img/obama.jpg +Richard Porter,058-59-0317,41739,"067 Martinez Fort +Port Alicia, OH 37354-3278",1969-05-06 02:28:26,09:ba:e2:8e:55:08,ybooth@gmail.com,img/obama.jpg +James Clayton,234-82-4082,64233,"20225 Perry Gardens +South Brittanyview, OH 91973-3902",1990-03-22 08:38:29,f2:8d:6f:cd:1b:30,qhill@hotmail.com,img/obama.jpg +David Allen,555-91-2911,11393,"57853 Jared Freeway +East Carriefort, NY 65298-9476",1998-06-02 02:50:22,46:3d:0d:59:19:f3,maddoxrobin@hotmail.com,img/obama.jpg +Michelle Rodriguez,618-03-7157,24764,"0222 Lynn Summit +Lake Kentville, NE 84858-6631",1999-04-28 10:39:12,f1:10:01:73:d1:ed,kenneth26@hanson.com,img/obama.jpg +Scott Miller,035-04-2568,64657,"Unit 2101 Box 9667 +DPO AE 59293",1961-06-27 04:33:23,8c:dd:cb:7f:f7:48,wesleyhudson@rasmussen-hood.biz,img/obama.jpg +Jack Roberts,185-06-8045,17603,"USNV Ruiz +FPO AE 59755-7705",1921-07-13 22:24:48,98:fa:e5:1d:a4:93,emccoy@hotmail.com,img/obama.jpg +Angela Silva,195-17-7185,50536,"75741 Nicholas Branch Suite 495 +Lake Elizabeth, AR 65679-5927",1964-08-14 16:09:02,c6:8f:f8:cb:25:77,samuel67@shepard.com,img/obama.jpg +Meredith Garrison,788-42-8801,94405,"PSC 6117, Box 0157 +APO AA 95777-1121",2006-05-05 18:39:49,61:d8:d9:cd:f9:ef,nicholasgutierrez@hotmail.com,img/obama.jpg +Tommy Reyes,831-80-7210,25927,"8460 Lopez Ways Apt. 309 +East James, TX 17037-1737",1961-09-05 04:23:20,3f:b5:50:6a:c2:a6,martinjames@hernandez.com,img/obama.jpg +Sandra Barron,444-93-3984,08385,"953 Fletcher Place +South Carlos, CA 57380",2006-10-07 13:38:26,d0:d2:a9:78:50:37,davidwilliams@gmail.com,img/obama.jpg +Teresa Brown,506-70-1539,57896,"50947 Matthew Summit +Anthonyberg, CT 35535-9703",1961-06-20 09:09:30,ca:30:0e:2d:f1:7f,danielwilliams@smith-diaz.com,img/obama.jpg +Andrea Bryant,414-02-2731,49248,"61839 Ortiz Mews +West Tyler, CT 42154",1997-10-30 22:22:24,22:70:30:98:70:5b,fisherchristine@foster-barber.info,img/obama.jpg +John Smith,883-77-8554,63179,"PSC 8318, Box 6894 +APO AA 93499",1941-08-28 10:13:58,c8:78:0f:d1:25:65,leblancwilliam@gmail.com,img/obama.jpg +April Richardson,864-63-3119,22286,"09746 Christopher Fork +Davidview, AZ 42147",1942-08-29 09:19:52,e2:4a:01:46:3d:d0,huffangela@hughes.com,img/obama.jpg +Monica Taylor,301-59-7249,34749,"1029 Jensen Junction Suite 546 +Thompsonview, HI 05236-3160",1930-10-21 08:39:35,94:06:c4:d4:d7:cf,ofarmer@gmail.com,img/obama.jpg +Jamie Parker,236-69-5701,35123,"Unit 0997 Box 2584 +DPO AE 39925-6687",1984-01-01 18:29:12,5b:b0:9c:25:7f:0e,tmartin@yahoo.com,img/obama.jpg +Patricia Bullock,853-80-2251,32071,"600 Joshua Port +Kathyport, AK 55423-0872",1924-08-25 13:30:10,0f:a3:7d:76:67:26,moralesmichael@robbins.com,img/obama.jpg +Amanda Richardson,683-15-4426,88452,"12831 Christine Landing +South Diamond, KY 50818-1571",1974-09-29 06:18:33,eb:55:e7:8b:56:21,zpeterson@carson.org,img/obama.jpg +April Ibarra,005-42-6130,50679,"87400 Lopez Freeway Suite 022 +East Brandon, KY 82549",1971-06-24 11:55:49,bf:0b:0e:64:2d:d5,eileen74@grimes.com,img/obama.jpg +Destiny Vasquez,088-08-7105,55833,"599 Nguyen Pike +Smithport, NH 13895-3083",1947-04-25 17:53:08,b9:df:b6:72:b0:53,nicholasjohnson@young.info,img/obama.jpg +Tracy Avila,070-69-4630,72208,"PSC 5656, Box 0597 +APO AE 65607-8286",1939-10-30 20:05:10,63:3a:3b:97:d0:7d,yramos@gmail.com,img/obama.jpg +James Ward,432-66-0905,99723,"666 Michelle Squares Suite 837 +West Jason, UT 66063",1949-08-04 14:14:17,f4:70:50:07:f0:fd,walkersandra@yahoo.com,img/obama.jpg +Carol Herrera,644-52-3922,53874,"6322 Diaz Trail +Tinaville, OH 12659",1978-03-27 13:15:08,00:5a:4d:b8:c3:22,ann80@yahoo.com,img/obama.jpg +Alyssa Wilson,489-10-4048,47720,"401 Mccarthy Trail Apt. 792 +East Richard, AR 86155-8770",1968-03-14 09:54:01,aa:47:d1:57:4d:13,terridavis@gmail.com,img/obama.jpg +Mr. Matthew Copeland,562-02-5223,37313,"26915 Lee Pike Apt. 680 +Port Patricia, MI 50219-0704",1918-11-01 18:20:29,60:84:04:9b:2c:63,elizabethmoore@gmail.com,img/obama.jpg +Casey Scott,501-19-3855,75353,"96649 Melissa Club Apt. 269 +Scottfort, KY 72477",2006-11-27 07:49:05,4e:ab:63:50:63:23,mary54@yahoo.com,img/obama.jpg +Laurie Daniels,569-41-8474,16869,"02113 Wood Manors Suite 593 +South Kelseymouth, WY 72417-4049",1969-10-18 17:08:13,9f:4a:ee:46:41:d3,patriciasilva@yahoo.com,img/obama.jpg +Lee Berry,357-30-4312,56273,"866 Megan Light Apt. 301 +Port Anthonyland, AZ 93295",1959-11-24 03:02:45,c8:94:95:b1:6f:c9,uortega@maxwell.biz,img/obama.jpg +Richard Perez,745-68-0595,20041,"6661 Warner Centers +Jessicaberg, AL 57368",1969-11-10 04:13:44,e7:73:a5:1b:e8:b4,cookejoseph@taylor.com,img/obama.jpg +Michelle Shaw,100-66-9891,86402,"0612 Kathryn Turnpike Apt. 077 +Navarromouth, RI 84429-6470",1935-10-29 21:58:28,9c:f4:c9:db:31:77,hschultz@perry-reyes.net,img/obama.jpg +Grant Lawrence,790-90-1138,27931,"566 Thomas Extension Apt. 490 +New Emilytown, HI 04086",1939-04-22 07:07:06,13:20:db:5e:a1:a6,christopher42@mclaughlin-martinez.net,img/obama.jpg +Logan Miranda,680-70-3961,17399,"300 Paul Drive +East Christopherton, FL 14589-0289",1966-03-19 09:12:04,e6:bc:b2:2a:42:85,jessicacurtis@gmail.com,img/obama.jpg +James Andrews,152-10-1551,61659,"42601 Rachel Port +Murraymouth, IA 47381",1925-05-07 16:56:08,94:3f:71:ef:70:bf,ucannon@gonzalez.info,img/obama.jpg +Tara Lyons,015-63-3151,60432,"33801 Villa Manor Suite 551 +Port Franciscofurt, FL 85784-7586",1954-06-24 00:01:11,52:82:0e:c2:5e:82,tyler62@fletcher.org,img/obama.jpg +Amanda Smith,813-21-3105,72681,"4853 Owens Shoal Apt. 697 +Mullenchester, NH 58954",1990-12-16 03:50:02,bf:28:69:30:2f:6c,mark09@hotmail.com,img/obama.jpg +Megan Wagner,462-57-1191,79226,"711 Courtney Island +Lake Christianmouth, OR 48147",1950-05-14 04:15:50,92:ce:bd:5a:d4:1f,dallen@hotmail.com,img/obama.jpg +Philip Morales,645-74-3543,86425,"61768 Ramos Route +Port Joanneburgh, NC 37758",1993-05-20 15:04:07,13:d1:02:13:9d:e5,michaeltaylor@hotmail.com,img/obama.jpg +Joseph Ryan,391-99-7177,68723,"7469 King Circles +Christinamouth, KS 56636",2003-09-15 00:36:14,33:0c:67:ed:43:ce,lgreen@gmail.com,img/obama.jpg +Mrs. Lauren Sanders,744-36-5466,25876,"USS Perez +FPO AP 88149-9708",1948-02-03 21:37:34,7c:08:46:23:a3:20,murillotravis@gmail.com,img/obama.jpg +Cynthia Hill,129-72-7260,65349,"43091 Dana Rest Suite 815 +South Danielfort, MS 16464-6939",1952-02-04 02:24:44,05:33:33:a8:2f:3d,tonigonzalez@yahoo.com,img/obama.jpg +Sandra Garcia,750-35-3150,43837,"3889 Austin Stravenue +Port Annaberg, MD 83088-2667",1927-07-18 21:33:47,b0:52:b5:e4:ac:97,scottwilson@gmail.com,img/obama.jpg +Kimberly Shaffer,441-53-8494,85107,"93013 Pamela Keys +Port Marytown, AK 66630-4982",1963-10-13 15:13:17,50:6b:bd:f9:50:33,ofields@yahoo.com,img/obama.jpg +Peggy Martin,342-09-8470,00917,"330 Smith Walk +Williamchester, NV 50741",1926-05-01 16:08:26,a9:15:d9:e5:c2:bc,carolrobertson@yahoo.com,img/obama.jpg +David Cox,070-39-0812,45956,"13083 Weber Prairie +Kellyside, RI 16916",2013-03-22 03:01:03,c5:a3:cc:6b:39:6c,ramirezwilliam@gmail.com,img/obama.jpg +Marcus Webb,251-86-1125,43450,"57579 Wesley Stravenue +New Thomas, CO 30540",1979-06-15 01:45:31,c6:be:ff:dc:f3:06,joseph26@hotmail.com,img/obama.jpg +Renee Diaz,635-45-7518,05558,"989 Timothy Way Suite 763 +Lake Jasonport, WI 40564",1992-08-20 09:29:04,bf:9e:52:38:88:5b,carlparker@hotmail.com,img/obama.jpg +Brenda Patterson,127-92-7380,43848,"48361 Chavez Cove +East Danafurt, VT 32812",2007-01-23 02:57:27,c2:74:0a:17:3c:ed,kmiddleton@yahoo.com,img/obama.jpg +Gary Freeman,058-79-6363,74067,"7961 Collins Route +Sandraport, VT 32855-2366",2001-10-12 18:46:47,98:c9:62:14:75:3d,brownrenee@house-thomas.biz,img/obama.jpg +Steven Smith,692-30-6325,27774,"125 Madison Wall Suite 420 +Ramosville, OH 50173",1940-06-25 21:49:54,26:e7:42:b9:4b:2b,laurawatson@peterson-morris.org,img/obama.jpg +Kimberly Armstrong,251-24-3869,93454,"67073 Isabella Extensions +South Stephanieborough, OK 33186-0005",1943-11-08 14:06:20,c3:12:42:ca:28:5c,jbennett@morgan-moss.biz,img/obama.jpg +Ashlee Brown,797-42-0234,56949,"457 Donna Vista +West Davidburgh, WV 10890",1974-06-11 04:37:59,97:ec:66:62:81:c1,rebekah44@yahoo.com,img/obama.jpg +Christine Hall,491-05-9512,21884,"378 Rebecca Oval Apt. 306 +South Nicole, TX 77705-6572",2008-01-04 16:25:15,45:1e:73:7d:94:cd,hwebb@gmail.com,img/obama.jpg +Angela Ramirez,159-31-5009,75055,"324 Emily Mountain Suite 764 +West Bobbyland, HI 13984",1990-06-28 21:35:38,8b:0e:1e:69:39:8a,dtran@marshall.com,img/obama.jpg +Thomas Brown,772-81-4445,57012,"816 Martinez Grove +Jorgeshire, ND 71436-2705",1941-10-14 20:26:34,16:81:d4:c0:a8:08,xsharp@reed-foley.com,img/obama.jpg +Darren Oconnell,032-10-3446,28673,"454 Morse Run Apt. 304 +Nelsonchester, WY 17945-9144",1992-01-20 11:29:27,77:f6:2b:a5:99:3e,jjennings@gmail.com,img/obama.jpg +Christopher Coleman,242-29-8187,80510,"PSC 0279, Box 2236 +APO AA 28135",1950-04-24 21:33:43,78:2f:d7:63:a7:57,nnelson@gmail.com,img/obama.jpg +Cheryl Watson,899-87-6881,54368,"35241 Amber Freeway Suite 729 +Lauriehaven, PW 27120",1951-10-04 23:48:29,fb:85:79:5e:4c:3a,samuelhorton@hotmail.com,img/obama.jpg +Amber Adams,699-53-7572,30805,"PSC 6930, Box 4450 +APO AA 17796-3715",2003-11-12 06:12:25,ab:66:04:d9:8e:fd,kristyhorn@scott.com,img/obama.jpg +Crystal Schultz,845-58-9724,32885,"350 Jessica Prairie +Port Keith, DE 21785",1976-06-14 16:23:00,08:74:13:e5:e4:9c,toddmcdonald@gmail.com,img/obama.jpg +Dawn Walls,859-89-7290,16306,"3129 Jessica Mountain Apt. 017 +Edwardsmouth, TN 09442",1932-12-08 22:37:55,79:30:10:99:c5:e6,jonesmelanie@yahoo.com,img/obama.jpg +Yvonne Johnson,143-04-0034,06280,"34155 Mcguire Circles +Lake Tyler, AR 46464-4139",1943-11-21 03:56:26,58:aa:5f:b8:61:98,robertlawson@fletcher.biz,img/obama.jpg +Nicole Conrad,461-28-2244,97111,"6431 Ashlee Camp Apt. 910 +Michaelburgh, WI 71865",1959-06-29 02:18:40,1e:10:d0:51:c4:3a,xmendoza@mitchell.biz,img/obama.jpg +Dennis Hill,617-65-5587,17947,"790 Ortega Viaduct +East John, MO 79962",1949-11-30 14:34:28,a5:02:10:bc:39:d0,uherring@hotmail.com,img/obama.jpg +David Johnson,135-83-5467,03039,"306 Brett Islands +Jonesshire, IN 50856-0001",1933-07-29 16:12:09,cc:e4:7b:9d:34:08,vrobinson@skinner.com,img/obama.jpg +Susan Ferguson,795-74-6901,36022,"66275 Reese Fields +Loriside, ID 54653",1966-03-15 22:14:46,b9:a2:b2:63:09:d5,kenneth88@dixon.net,img/obama.jpg +Brian Hudson,107-31-4188,92996,"813 Smith Tunnel +Watkinston, LA 84997-8331",2016-03-22 03:40:38,14:c7:7e:29:f4:14,melanieshelton@wagner-johnson.com,img/obama.jpg +Erin Phillips,745-65-0246,53096,"618 Brandy Street +New Helenburgh, AZ 55139",2015-05-02 01:24:26,60:76:69:ac:7c:24,christopher57@gmail.com,img/obama.jpg +Carl Freeman,606-77-4405,47978,"478 Wilson Street Suite 321 +Lake Danielfurt, PW 53278",1978-07-27 20:41:26,d6:c9:cc:fa:69:2c,williamsondeanna@hotmail.com,img/obama.jpg +Dr. Joseph Fernandez,169-82-6688,76127,"7428 Kevin Forges Suite 464 +East Christopher, MS 48568-8889",2014-02-13 19:45:17,d9:3d:f1:b5:36:82,tsmith@fischer-griffin.info,img/obama.jpg +Kristopher Mann,290-62-8878,10347,"12039 Guzman Locks +Lake Robertshire, RI 16566",1920-03-19 14:11:20,13:56:9a:47:90:74,mariedavis@silva.biz,img/obama.jpg +Maria Gonzalez DDS,120-58-7623,66846,"235 Davis Fords Suite 776 +North Nancy, IA 50300-1410",2013-03-06 17:57:59,9b:7d:c7:8e:64:4c,manuelfernandez@lopez.org,img/obama.jpg +Jason Mendoza,563-24-9174,32543,"44864 Hernandez Curve Suite 156 +Banksland, GA 77084",1941-03-05 06:22:57,e5:ae:36:e8:0b:1f,hamptonjasmine@gmail.com,img/obama.jpg +Dawn Henderson,788-70-1014,98260,"926 Ramirez Fields Apt. 299 +Lake Autumn, TN 61757",1974-08-03 20:17:32,ed:15:f3:4f:46:b2,james67@aguilar.com,img/obama.jpg +Adam Miller,103-38-7703,13329,"9275 Natalie Land +West Trevorburgh, OR 15661-8152",1977-01-29 20:50:31,4c:f4:51:b3:80:52,sandrakirk@myers.info,img/obama.jpg +James Santiago,431-62-8172,06448,"536 Gilbert Overpass Suite 915 +Roberttown, DE 99945",2003-01-12 07:28:16,82:d4:ce:c2:0d:82,qmcknight@hotmail.com,img/obama.jpg +Rebecca Dennis,823-40-0485,05601,"6316 Angela Path Apt. 941 +Feliciahaven, PA 03611-4046",1921-11-22 18:09:28,30:31:05:ee:72:f0,poncegabriel@baker.biz,img/obama.jpg +Kayla Roach,116-67-6717,78537,"93568 Ferguson Centers +East Lindseyview, AK 12548-6609",1946-11-27 13:13:43,4e:3f:e6:2e:5d:21,james95@orr.com,img/obama.jpg +Mr. Gary Thomas,434-22-6059,44408,"0891 Clark Glen Apt. 689 +Lozanofurt, IL 80876-8427",1980-10-20 22:49:12,01:7d:df:42:38:6e,karen60@mendez.com,img/obama.jpg +Douglas Rose,344-93-3049,58733,"8299 Michael Island Suite 778 +Walkerview, GA 56946",2000-05-27 09:08:58,12:57:e7:4d:9c:2e,megan00@rangel-smith.com,img/obama.jpg +Debra Johnson DVM,412-10-1938,48973,"38934 Jefferson Camp Apt. 950 +Lake Emilyfurt, NJ 19788-1036",1998-02-01 02:14:45,26:3e:45:73:23:93,bensondylan@gmail.com,img/obama.jpg +James Cook,153-65-3760,57655,"644 Perry Place +Stephaniestad, NH 12624",1928-04-23 17:06:17,b6:d1:23:bf:3d:50,kelly61@bell.com,img/obama.jpg +Breanna Cook,848-65-8345,74187,"31069 Dana Circles Apt. 818 +Pamelaborough, WI 63835",1960-07-15 06:50:52,83:c8:46:7c:a5:e5,woodedward@yahoo.com,img/obama.jpg +Brianna Williams,498-40-9141,36120,"9671 Samantha Hill +Amandaport, IL 50196-9109",1917-09-10 02:18:07,03:e7:96:2a:54:36,zreynolds@gmail.com,img/obama.jpg +Jesse Wilson,888-62-3655,64536,"3650 Jordan Plaza Apt. 247 +Gallagherfort, KS 52972-2595",2007-06-27 07:32:25,2f:48:30:6e:cc:90,jhatfield@fuentes-brown.com,img/obama.jpg +Carolyn Murphy,082-92-8063,08114,"179 Ronald Isle Suite 141 +East Erica, AR 43695-8757",1918-01-30 19:08:06,37:78:f9:39:02:de,parkscott@williams.com,img/obama.jpg +Danielle Ramos,816-61-4231,30774,"6585 Chad Summit +Lake Kevinside, MS 58323-7506",1958-11-06 03:50:35,5c:4f:19:ee:29:b9,michaelhorn@yahoo.com,img/obama.jpg +Yvette Hogan,131-15-7765,27891,"79910 Tammie Viaduct Suite 855 +Rebeccafurt, OH 40022-8215",1932-09-23 03:42:04,80:40:87:2f:7b:1c,maddoxsara@gmail.com,img/obama.jpg +Brett Morris,572-78-6773,52666,"497 Christina Villages +Younghaven, SC 80381-1306",1921-04-03 14:15:23,cc:a8:05:f7:9c:11,rebeccafletcher@yahoo.com,img/obama.jpg +Kimberly Spencer,256-32-2658,23404,"Unit 7676 Box 3640 +DPO AA 50921",1943-09-11 23:24:36,58:15:87:9d:87:cb,erin85@anderson.com,img/obama.jpg +Betty Nichols,214-30-0531,74255,"3545 Christopher Valleys +Bridgeston, CO 06273",2011-06-14 07:41:01,a8:b4:34:66:99:16,keith01@thompson.info,img/obama.jpg +Robert Mendez,788-15-4006,02489,"8953 Christopher Court Suite 345 +East Gabrielburgh, TN 97071",1939-08-29 20:23:53,91:af:d8:02:31:77,robertsdouglas@gmail.com,img/obama.jpg +Christopher Ruiz,772-72-8516,61326,"858 Nicole Ranch Suite 557 +Lake Julieborough, AZ 29042-7027",1990-11-18 22:45:10,e0:49:c8:6b:22:c3,ecurtis@gmail.com,img/obama.jpg +Bryan Smith,575-14-4643,08787,"027 Ashley Isle +Craigborough, MT 23919",2005-09-25 08:00:27,3e:0e:5e:fe:70:07,michaelrobinson@sellers.com,img/obama.jpg +Eric Thompson,676-10-0869,97191,"30561 Alan Gardens +Mistyport, MP 50428",1998-06-21 00:24:08,18:77:11:f4:ce:9e,marcusbryan@elliott.com,img/obama.jpg +Charles Charles DDS,604-10-5585,55750,"3402 Martin Motorway +Frederickhaven, PR 57863",2002-01-12 23:38:56,e1:ed:cc:74:2a:3d,jeffrey55@yahoo.com,img/obama.jpg +Larry Baker,032-40-7284,87176,"8170 Huynh Lock +Albertton, IN 26158",1942-12-18 04:18:46,83:bb:c3:50:c5:d2,dawn32@haas.biz,img/obama.jpg +Matthew Davis,437-59-0407,11912,"49252 Jeffrey Green +Port Holly, CT 28680",1943-03-04 22:45:55,c3:92:a5:a8:95:72,bartlettrose@yahoo.com,img/obama.jpg +Veronica Meyers,365-93-0544,64897,"5277 Jeffrey Drive +New Jamesbury, ME 26979-3476",1950-04-22 01:09:15,e4:a6:82:72:99:38,amanda06@saunders-smith.com,img/obama.jpg +Carlos Long,854-11-8771,93001,"897 Juan Prairie +South Raymond, CT 61214-0218",1971-09-22 10:25:29,1d:37:77:e3:84:f3,udavidson@rush.org,img/obama.jpg +Devin Watson,276-25-7622,27596,"PSC 4088, Box 7551 +APO AP 12838",1964-07-28 00:25:59,47:54:a2:c1:57:cc,wilsonnicole@morrow.net,img/obama.jpg +Benjamin Jones,560-81-9592,47407,"73735 Mcmillan Inlet +Lake Colin, ID 70654",1969-05-25 15:30:03,14:0f:29:5c:3b:84,craigjohnson@martin-kennedy.com,img/obama.jpg +Samantha Grimes,831-92-3181,31797,"15026 Stewart Ferry +Wigginsfort, CA 53181",2011-07-16 13:51:12,9a:be:9c:1f:9e:f4,scott92@blackwell.com,img/obama.jpg +Jasmine Peterson,519-16-9367,20347,"93625 Bell Crest Apt. 075 +Tanyaside, OK 56543",2010-09-14 15:03:09,4e:ab:0a:5b:30:8e,esantos@hotmail.com,img/obama.jpg +Eric Moore,003-26-2761,38597,"546 Jacob Bypass Apt. 066 +Melissastad, ME 42341",1961-08-26 06:14:55,52:07:ab:1a:01:ab,joshua13@hotmail.com,img/obama.jpg +Jeffrey Roman,375-81-5392,81645,"95478 Thompson Fields +West Ronald, MT 45693",1941-08-24 15:52:37,bb:59:44:ff:77:26,connor81@gmail.com,img/obama.jpg +Gabriella Matthews,167-76-8018,37891,"6739 Leroy Plaza +Burtonside, GU 90091-1221",1975-11-16 16:58:09,7e:a2:30:9a:6d:d7,christinastewart@meyers-evans.com,img/obama.jpg +Christopher Cooper,865-02-1149,73095,"1893 Williams Ville +Stevenstad, ID 56254",2001-07-22 10:31:30,94:62:0e:2f:74:94,dellis@gmail.com,img/obama.jpg +Jessica Hart,671-07-3095,29888,"12328 Gates Cliffs +East Shelia, AR 21623-6448",1989-02-27 14:08:32,0a:3e:89:05:4b:26,robert89@mahoney.com,img/obama.jpg +Ronald Calhoun,185-51-3510,10499,"497 Marcus Overpass Apt. 309 +East Daniel, AL 18270",2006-01-19 16:44:03,87:3b:c3:76:8f:22,elizabeth34@gmail.com,img/obama.jpg +Marcus Fernandez,128-71-3502,81317,"0234 Fry Gardens +Howardville, NV 22934-6961",1943-03-13 06:24:53,90:89:59:e3:46:1e,hunterrobinson@buchanan-parker.info,img/obama.jpg +Jasmin Reynolds,499-38-6144,50846,"68874 Mccarthy Green +Riceport, PW 46062-0802",1925-07-03 07:24:57,98:12:39:d5:f1:6c,scottmcdonald@williams.info,img/obama.jpg +Mr. Christopher York,362-43-7786,88517,"USNV Guerrero +FPO AP 84553-1732",1931-12-23 05:12:40,11:0d:39:d9:d0:83,ggolden@baird.info,img/obama.jpg +Kristi Perkins,545-86-5600,59964,"00988 Dennis Light +New Nicole, WI 86321-6771",1957-11-03 05:57:03,c4:bd:8b:46:ad:35,richard00@johnson-henry.com,img/obama.jpg +Martin Newton,524-39-9365,01586,"3360 Vance Fork Apt. 547 +Woodwardton, KY 64299",1922-11-08 06:25:59,1d:89:e9:ee:53:96,joseph67@gutierrez.biz,img/obama.jpg +Alicia Walker,032-35-5967,40666,"57742 Vernon Rest +Stevenfurt, AZ 13326",1919-10-18 18:17:53,29:e6:63:85:f9:c9,carrollkelly@gardner.net,img/obama.jpg +Michael Pitts,044-19-2273,57827,"28114 Romero Crest Suite 546 +Phamburgh, PR 84009",1922-08-16 03:24:00,54:4d:a4:76:3c:dc,richardromero@hotmail.com,img/obama.jpg +Hector Washington,293-09-7729,49268,"03488 Diana Island +Patrickborough, DE 19609-5035",1937-12-16 00:55:50,dc:54:87:aa:ae:39,david29@monroe-banks.com,img/obama.jpg +Amanda Brown,773-12-7760,43516,"USNS Marsh +FPO AA 54971-1033",1949-08-02 18:44:24,86:0f:52:1e:6f:5e,sanchezdevon@schultz.com,img/obama.jpg +Ashley Contreras,472-66-5841,55027,"85669 Garrett Mission Apt. 571 +Port Michael, PW 04365-4699",1937-07-19 06:54:27,dd:1a:d0:a5:35:61,chelseasmith@yahoo.com,img/obama.jpg +Courtney Gardner,804-76-1780,19133,"9313 Pratt Port Suite 195 +Lake Susan, ID 98485-0868",1932-07-13 05:09:51,20:52:ea:0d:f9:63,vcollins@marshall-haas.com,img/obama.jpg +Mason Jackson,561-20-3255,43082,"Unit 5166 Box 9430 +DPO AE 40423-9475",1949-10-06 05:20:28,7d:bf:b8:e9:35:b1,twilliams@waters.com,img/obama.jpg +Elizabeth Bradford,696-15-3876,50727,"3528 Stephens Burg Apt. 846 +South Dustin, NV 93639-1804",1948-11-22 18:05:31,d7:80:88:f3:e7:ec,michaelwhite@greer.net,img/obama.jpg +George Williams,115-88-7628,42295,"861 Jacob Mall +North Rachelberg, AL 66451-8160",1918-05-30 02:22:28,d5:84:7e:c1:31:02,kmarshall@holder-wilson.com,img/obama.jpg +Latasha Ramirez,706-89-9387,60108,"660 Joshua Mills Apt. 020 +Davidland, NE 25595-0237",1999-02-15 20:51:25,f5:3c:57:7a:13:24,amandawilliams@pitts.com,img/obama.jpg +Dawn Carlson,304-17-4510,79818,"75382 Edward Port +Perezland, IL 50447-7270",1931-07-27 03:48:23,cf:60:ad:80:fd:e1,tmccormick@hamilton.com,img/obama.jpg +Holly Soto,252-76-7440,28905,"Unit 8514 Box 5486 +DPO AA 35851",1932-10-18 20:38:08,64:65:e3:25:a1:d2,jordanwilliams@hotmail.com,img/obama.jpg +Melanie Phillips,755-01-3213,89210,"340 Parker Meadows +Younghaven, ID 04094-1083",1951-01-02 18:32:07,49:33:fa:51:93:36,larryarmstrong@yahoo.com,img/obama.jpg +Jennifer Diaz,742-36-5844,13960,"12436 Dougherty Manor +Aliciashire, AK 88667-4929",1917-09-05 16:42:54,7f:e0:fe:ea:74:ce,wcraig@yahoo.com,img/obama.jpg +Christine Beasley,039-21-5384,51895,"631 Cassandra Islands Apt. 192 +New Amanda, WV 27427-9533",1979-06-20 14:10:22,d7:e2:f4:5c:82:63,brownteresa@yahoo.com,img/obama.jpg +Tyler Cole,247-90-7480,35928,"514 Johnson Spurs Suite 453 +Sandrastad, NJ 61955",1918-03-20 08:36:13,af:d5:22:b4:75:be,tina06@estes-gaines.com,img/obama.jpg +James Lawson,280-95-9695,47415,"0660 Evans Island Suite 030 +East Colleen, VI 91060",1932-11-16 08:16:14,f1:b5:75:d7:18:34,callahansheila@clark.com,img/obama.jpg +Kimberly Flores,499-48-6960,71248,"3620 Sharon Track +Edwardstown, NV 47360-2520",1966-07-11 02:41:31,ce:86:d5:18:34:dc,amy81@edwards.com,img/obama.jpg +David Taylor,322-13-6202,76456,"59525 Medina View Suite 081 +Carriestad, HI 42742",1996-10-05 21:51:17,b4:11:52:43:db:88,afoster@smith.com,img/obama.jpg +Lisa Morales,566-79-8515,70770,"2864 Rivera Mews +Tylerbury, DE 77847-1939",1975-02-01 20:35:15,c9:68:82:7c:41:92,jcastro@hernandez.com,img/obama.jpg +Samantha Bowers,064-26-9621,25496,"023 Brooks Corner Apt. 973 +Janeberg, MP 89941",2013-06-15 07:26:59,1d:a9:21:0e:52:22,angela26@ramirez.net,img/obama.jpg +Kayla Cox,343-42-1826,01438,"4100 Thomas Mews +East Kylechester, AR 39595",1962-05-28 02:35:26,c5:97:e4:c8:04:f5,rogersheather@shaw.biz,img/obama.jpg +Tyrone Griffin,698-30-6037,02563,"07946 Andrew Land Apt. 063 +Brownton, SD 68265-5124",1928-11-23 16:49:18,db:b7:9d:e5:5e:31,martha01@hotmail.com,img/obama.jpg +Lauren Mendez,667-19-6281,04055,"49364 Andrea Walk +North Kimberlystad, VT 99621",1974-11-05 09:43:31,48:a4:cf:37:34:2e,murillojohn@yahoo.com,img/obama.jpg +Nicole Pierce,699-58-5931,76338,"29822 Matthews Views Apt. 047 +Lloydland, AS 14922-5200",1948-11-11 00:46:03,84:31:f5:9d:60:52,julie01@hotmail.com,img/obama.jpg +Beverly Lara,089-26-5748,88701,"294 Thompson Lodge Apt. 515 +South Dianeland, TX 09775",2012-06-26 19:04:42,b8:b1:53:ce:b9:cc,zachary47@hotmail.com,img/obama.jpg +Emily Gonzalez,814-25-0124,01776,"118 Harris Parks Apt. 215 +West Frederick, KY 17426-4444",1984-02-11 20:38:20,f1:1f:8e:48:18:d9,latkins@hays.com,img/obama.jpg +Mr. Dustin Lee,618-95-7950,39840,"5203 Bradley Highway Apt. 799 +Mistyborough, MN 96552",1936-11-26 17:41:11,cd:d4:22:c2:bc:8f,omack@gmail.com,img/obama.jpg +Kevin Santana,707-42-4912,77052,"434 Miller Parkway +West Lisachester, ID 63488-2755",1936-11-30 16:08:35,77:e9:65:34:17:a6,manningjulie@austin-campbell.com,img/obama.jpg +Stephanie Mora,875-71-3485,74260,"36963 Smith Ports Apt. 455 +Krystaltown, ND 31547",2012-06-27 04:28:01,c4:7a:f4:ca:bf:d5,michaelroberts@hotmail.com,img/obama.jpg +Tyrone Smith,091-62-1269,72510,"699 Walker Ridges +Gregoryview, MI 48539",1967-12-13 12:16:05,84:7b:aa:64:d9:26,harrywilliams@hotmail.com,img/obama.jpg +Kyle Ferguson,708-49-1118,79246,"9859 Parks Forest +Port Lorraine, AR 35447-1636",1996-05-22 14:37:06,5e:6b:02:1e:32:15,stephaniehill@gmail.com,img/obama.jpg +Elizabeth Moore DDS,150-54-3287,82334,"908 Kimberly Estate Apt. 468 +Amyborough, OR 22284",1988-06-16 09:10:47,7b:f0:8e:0c:b7:c8,johnsonphilip@adkins-smith.org,img/obama.jpg +Teresa Johnson,718-03-1448,78961,"243 Danielle Loaf Apt. 173 +East Sean, HI 70431",1994-07-09 05:10:37,b3:d0:83:6c:fc:b5,andrewvelez@gmail.com,img/obama.jpg +Taylor Taylor,285-61-3586,78163,"Unit 3045 Box 5261 +DPO AE 10715",1992-06-07 12:12:35,33:89:ce:e8:5b:53,kduran@yahoo.com,img/obama.jpg +Jennifer Lawson,794-16-2798,87709,"0423 Martinez Pines +East Melissa, GA 51655-7996",1972-02-23 08:54:27,80:3a:13:db:a2:80,greerjessica@richard.com,img/obama.jpg +Colleen Foster,027-18-1035,05911,"050 William Corners +South Eric, ME 37135",2004-07-31 03:13:20,5a:5e:d2:1e:2b:bd,obarr@gmail.com,img/obama.jpg +Lauren Kim,488-99-8440,80563,"339 Parker Extensions Apt. 527 +Lake Paulport, MD 33008",1932-06-03 06:42:13,b0:d2:63:d2:e8:ff,dianawright@gmail.com,img/obama.jpg +Colleen Anderson,183-07-8994,59015,"51740 Roberts Ferry +Tiffanytown, TN 95144-2364",1983-12-14 21:29:04,7c:2f:2b:83:a2:ec,townsendcharles@gross-rivera.com,img/obama.jpg +Jessica Villa,124-19-8733,43983,"454 Kathryn Course Suite 335 +Tiffanymouth, TN 30786-1770",1967-06-07 12:50:10,b8:93:43:c0:d4:a7,stephen01@keller.com,img/obama.jpg +Nicole Hansen,702-79-5309,96433,"USS Weaver +FPO AA 90812-3294",2003-07-10 01:33:09,54:3a:66:cf:35:fc,hernandezisaac@garcia.com,img/obama.jpg +Heather Cummings,791-44-6899,48672,"Unit 9221 Box 7824 +DPO AA 75200",1990-05-02 20:47:55,96:fc:15:90:ee:28,qtapia@gmail.com,img/obama.jpg +Molly Bailey,338-28-5151,36495,"3532 Haney Terrace +West Benjaminburgh, MA 81249-1879",1970-03-24 10:26:35,01:6d:d7:2b:d8:7c,tlong@hotmail.com,img/obama.jpg +Victoria Ramirez,422-21-4869,51712,"622 Garza Court Suite 643 +Reneebury, NM 75798",1979-09-29 20:44:47,df:c3:81:99:f4:3a,tamara21@yahoo.com,img/obama.jpg +Amy Stevens,726-52-2532,24552,"USNV Clark +FPO AP 80768-5471",1924-09-24 14:39:34,db:c9:00:23:a0:5e,yprice@fisher.info,img/obama.jpg +Sara Richardson,672-43-4739,78405,"614 Mary Road Apt. 006 +New Victoria, AZ 98946-6054",1975-09-21 04:56:29,88:f2:e0:8e:df:89,amymeyer@gmail.com,img/obama.jpg +Jacqueline Powers MD,668-58-9491,63034,"130 Jenna Freeway Suite 835 +West Markland, OH 57993",1983-11-06 17:01:38,94:e1:2e:e2:e9:19,houstonann@myers.com,img/obama.jpg +Dylan Caldwell,448-46-0184,21752,"7681 Mark Ways Suite 589 +West Elizabeth, AK 17316",1926-08-19 16:28:10,a2:27:e0:be:74:4b,bobby06@yahoo.com,img/obama.jpg +Joshua Scott,068-04-7499,22004,"Unit 6653 Box 0864 +DPO AE 67807",1983-07-18 04:11:29,44:8e:17:57:ce:d0,joseph61@franco-campbell.com,img/obama.jpg +James Guzman,255-11-5318,05664,"850 Dean Brooks +Philipview, SD 93338-8980",1963-10-15 03:39:05,c9:e4:47:b1:29:1d,dennishunt@jones-suarez.com,img/obama.jpg +Tony Roth,323-44-3942,39211,"269 Scott Valleys Suite 530 +North Jeremiah, KY 52871",1990-09-26 16:11:00,31:7e:da:24:38:fc,kristicraig@trujillo.org,img/obama.jpg +Michael Wright,065-10-5764,53938,"241 Adrian Road +Jenkinsville, NM 45388",1917-12-21 05:32:59,e5:72:21:52:ff:d7,milleraustin@gmail.com,img/obama.jpg +Tiffany Mccormick,826-78-9053,66684,"694 Guzman Keys Apt. 032 +Jackville, VT 55568",2011-11-21 02:09:14,21:48:8d:93:57:9b,zgray@cole-bright.net,img/obama.jpg +Morgan Gutierrez,861-12-6168,69302,"63256 Perez Fork +South Kellyview, ME 88259-5476",2008-08-24 00:23:17,ed:16:b2:d0:f3:46,benitezjulia@mejia.info,img/obama.jpg +Courtney Davis,089-68-0465,86271,"13542 Jennifer Route Apt. 347 +South Melissaborough, FL 40552",1936-09-08 01:48:39,70:0d:ae:bd:3c:7d,toddrivera@gmail.com,img/obama.jpg +Harold Griffin,770-61-2329,11845,"Unit 6081 Box 0330 +DPO AE 44192",1939-07-21 23:48:03,65:ff:77:5b:f2:77,jenkinscharles@fields.org,img/obama.jpg +James Daniels,756-63-7358,96153,"0417 Colleen Freeway +Ryanshire, HI 30203",2000-12-01 06:28:22,1c:0e:4a:7d:40:99,rothmichael@yahoo.com,img/obama.jpg +Jeffrey Peck,415-31-5366,61802,"68001 Barbara Highway +Mikeland, MO 05345-2907",2001-03-24 19:55:42,90:90:ca:27:16:51,brittanysavage@hotmail.com,img/obama.jpg +Julie Gentry,257-50-3203,26205,"29035 Jesse Centers +Lake Rebecca, NC 33823-6393",1952-10-03 17:35:12,fd:fc:ff:09:89:c4,henry38@cruz.net,img/obama.jpg +Angela Olson,719-83-6289,38206,"80249 Wood Drives Apt. 673 +Smithport, NM 65458-8245",1938-09-01 01:07:50,34:26:58:77:13:27,qclark@ryan.net,img/obama.jpg +Joanne Young,454-15-8792,42032,"24528 Sarah Parkways +West Joshuashire, AS 71487",1938-05-12 13:07:59,a6:24:06:db:a3:2b,sanchezalison@gmail.com,img/obama.jpg +Michael Douglas,443-13-1460,76606,"116 Cohen Prairie Apt. 750 +Danielberg, WA 29361-1813",1925-10-29 07:57:01,33:c1:ed:e5:90:35,erocha@yahoo.com,img/obama.jpg +Robert Beltran,360-75-0352,06462,"94921 Jonathan Manors +Dianachester, AZ 91320",1958-02-21 00:38:48,83:39:b7:3d:77:10,russellterry@herman.com,img/obama.jpg +Timothy Holloway,474-64-3980,49006,"25363 Maynard Avenue +South Valerie, AK 78046",1961-09-22 11:27:34,36:20:2f:86:77:0b,jlambert@yahoo.com,img/obama.jpg +Lori Mcdaniel,765-11-4676,90840,"980 Nathan Common Suite 781 +North Sara, AK 03243-5003",1947-07-03 21:23:15,d7:56:77:6a:27:98,matthew89@collins.com,img/obama.jpg +Andrew King,107-30-1734,88393,"111 Smith Path +Lisahaven, SD 60685-5709",1968-05-13 23:59:37,2e:68:dc:ee:69:a2,joneseric@gmail.com,img/obama.jpg +Beverly Gross,171-62-4016,17539,"18938 Melissa Street +Fieldsland, MS 26519-1582",1955-01-28 15:26:40,a7:fb:28:82:94:29,dorseyjamie@yahoo.com,img/obama.jpg +Dean Golden,531-78-4069,44715,"547 Castillo Club +Knighthaven, VA 04793-0329",1942-06-17 22:16:58,89:eb:e0:be:43:a1,fuentesthomas@gmail.com,img/obama.jpg +Virginia Cooper,383-10-8183,51300,"406 Brian Avenue Suite 002 +Campbellville, ND 86291-9673",1933-01-22 09:16:23,7f:81:0e:8f:6d:b4,tracey03@hotmail.com,img/obama.jpg +David Smith,160-25-4757,95405,"43462 Ford Junction +South Diana, NH 03925-4440",2006-06-03 22:53:34,88:17:f5:9f:4f:5d,michael57@evans.com,img/obama.jpg +Tanya Jones,172-52-4111,73004,"1632 Elizabeth Landing Apt. 851 +Davisville, MS 57278",1994-04-19 05:55:15,2d:b0:df:0e:64:c8,markrichard@blair.org,img/obama.jpg +Robert Davis,071-61-3497,15506,"2776 Daniel Shoals +South Darrell, WY 32166",1974-11-25 12:30:42,17:4d:a1:8b:40:ec,sgriffith@clay-day.com,img/obama.jpg +Alison Parker,719-64-9231,53119,"1457 Kyle Cape Suite 304 +Port Davidhaven, AK 38345",1934-02-23 10:01:46,3a:1e:2a:3a:1f:65,robbinslisa@long-potter.biz,img/obama.jpg +Kristen Baker,663-16-3385,59841,"86035 Dakota Street Apt. 781 +Briannabury, TN 34839-3712",1961-09-20 20:25:18,b9:a8:e0:e7:89:f5,tschultz@gardner.com,img/obama.jpg +Scott Adams,692-16-1136,38569,"43541 Williams Inlet Suite 757 +Robinhaven, OH 18344-2455",1942-05-03 07:05:11,af:46:3a:92:6a:af,tracy31@gmail.com,img/obama.jpg +Joyce Sanchez,245-12-7814,19728,"41988 Joyce View +Staceyton, NY 68554",1935-02-07 09:22:30,38:f4:5b:1c:b6:27,susanmassey@hotmail.com,img/obama.jpg +Kathy Stevens,562-11-7191,50733,"4103 Joseph Square +Lake Richard, MS 83815",2006-12-19 00:56:50,82:af:b6:95:fd:3f,brenda22@hotmail.com,img/obama.jpg +Aaron Anderson,650-78-6560,52088,"890 Ball Gardens +South Deborah, DC 99884-0769",2016-04-23 21:22:05,6e:3f:5f:33:c2:7a,dennisfisher@yahoo.com,img/obama.jpg +Jennifer Christensen,173-70-6907,02414,"36498 Rebecca Viaduct +West Michael, NH 13129-9399",2003-02-18 12:35:32,2f:92:98:bd:c9:1b,durhamdonna@thomas.com,img/obama.jpg +Robert Salas,801-67-6965,47635,"23781 Heather Square Suite 747 +Paulchester, PR 78453-3255",1972-03-31 10:56:24,01:a2:fe:e5:39:3d,richard24@johnson-spence.com,img/obama.jpg +Miss Shannon Barnes,243-52-2801,31853,"PSC 4740, Box 2141 +APO AA 54442-2750",2015-11-02 03:14:42,0c:a6:85:77:a2:79,pcampbell@hotmail.com,img/obama.jpg +Clarence Robbins,344-48-4728,58081,"9415 Kenneth Spring Apt. 238 +Robinview, SC 71682",1933-11-07 08:08:29,f6:0e:5c:96:dd:a7,jenniferwoodward@gmail.com,img/obama.jpg +Katherine Francis,560-51-3958,82737,"5413 Melissa Trail +New Victoriaville, NM 11032",1991-06-30 20:53:43,56:d9:42:e9:12:82,rhunter@campbell.com,img/obama.jpg +Kimberly Perez,766-37-2253,13558,"0562 Walker Stravenue +Mullinstown, CA 64323",1936-12-26 02:27:58,bf:9b:f5:16:78:75,cadams@spencer.com,img/obama.jpg +Donna Pugh,871-54-8283,62181,"660 Taylor Burgs +West Arthur, FL 20061-4281",1941-04-29 05:38:30,c0:83:86:f9:ad:0d,bjenkins@yahoo.com,img/obama.jpg +Ryan Davis,425-58-1815,13081,"314 Sharp Lodge Apt. 411 +Lake Rebecca, NE 72577-8319",1999-09-24 23:07:30,f5:fa:7d:f6:ea:55,nicole27@gmail.com,img/obama.jpg +Belinda Stephenson,491-71-3156,35218,"8949 Moore Skyway +Lake Barbaraport, LA 14096-3607",2004-10-11 18:34:28,3c:d3:9d:ec:6b:3e,taylormark@hill.com,img/obama.jpg +Daniel Phillips,203-81-5197,77454,"9981 Clark Knoll +New Patricia, ND 60992",1953-01-13 08:00:43,b2:77:8f:df:38:31,paigeyoung@hotmail.com,img/obama.jpg +Bethany Garcia,811-72-8623,90834,"7164 Jennifer Roads Apt. 741 +North Waynetown, WI 82545",1948-10-27 23:13:14,e8:ec:74:b6:ea:ad,jennifer07@mack-velasquez.biz,img/obama.jpg +Matthew Rocha,809-48-8776,55509,"480 Flowers Ferry +West Ronaldchester, HI 49119-5052",1932-10-10 02:31:20,87:fe:41:d1:99:3e,chris65@williams-mcdowell.com,img/obama.jpg +Ruth Perry,196-36-1864,16228,"9993 Michael Ford Apt. 833 +West Diane, SC 35435-9170",1976-02-06 04:34:35,cb:b8:20:5c:e5:e6,ayalajohn@yahoo.com,img/obama.jpg +Daniel Beck,298-44-6397,79341,"18997 Solis Creek Apt. 264 +Mcleanton, ME 93451-0390",1924-01-02 08:16:19,8a:15:e5:0b:b0:96,martinconnie@miller.com,img/obama.jpg +Paige Johnson,770-97-1691,70237,"958 James Bridge +Nunezside, ME 35926",1974-05-15 14:11:36,52:ed:bb:44:e2:bb,patriciamartinez@berger.net,img/obama.jpg +Ronald Hernandez,180-24-2340,21068,"63943 Jeffrey Crescent +West Dalefurt, NY 91701",1961-06-04 20:01:11,b4:4f:36:71:6f:8f,ashleypoole@gmail.com,img/obama.jpg +Robin Acevedo,167-43-8276,90542,"USCGC Mendez +FPO AE 93454",1973-05-26 06:58:20,f1:6e:b8:bd:58:ce,sarahgarcia@james.org,img/obama.jpg +Emily Adams,413-46-9998,56200,"01697 Trevor Expressway +Phillipton, ID 63407",1943-11-05 05:03:36,fc:35:29:40:19:35,christopherwashington@berry-carrillo.org,img/obama.jpg +Jessica Kelly,675-50-2789,32778,"6464 Harrington Corner Apt. 768 +Edwardsfort, WY 85238-9141",1998-08-08 12:04:56,47:8e:ad:90:0e:46,christophercervantes@hotmail.com,img/obama.jpg +Jared Sanchez,338-04-6052,47902,"69563 Theresa Grove +West Cristian, FM 18887-0279",2010-05-17 01:21:06,99:ab:83:32:44:a8,kimberlyking@bonilla.com,img/obama.jpg +Anthony Matthews,240-35-2540,44959,"81544 Phelps Grove Suite 995 +Davidmouth, ME 46102",2005-07-04 17:55:57,46:e6:e6:39:13:25,dustin75@jackson.com,img/obama.jpg +Jimmy Williams,328-33-2699,86775,"599 Lauren Squares +New Timothymouth, TN 69184-1121",2002-12-22 23:31:23,d6:a8:aa:13:84:12,mmartinez@sharp.com,img/obama.jpg +Stephanie Harris,712-53-4525,81136,"PSC 7885, Box 0732 +APO AE 77968-4682",1976-09-29 09:22:39,12:f0:50:9e:e4:bd,thomassherri@yahoo.com,img/obama.jpg +Ryan Thomas,805-06-4249,80445,"07731 Elizabeth Row +Warrenville, SC 01469-8124",1962-04-28 16:25:35,38:34:8f:aa:77:e1,tmitchell@gmail.com,img/obama.jpg +Edward Daniel,459-72-0082,88163,"PSC 0599, Box 3456 +APO AE 65439-0879",1950-04-02 08:40:29,30:67:e1:b8:8b:99,monicaglover@hotmail.com,img/obama.jpg +Whitney Rogers,053-78-7970,70290,"938 West Terrace +Matthewtown, CO 94129",1918-06-26 00:14:32,a4:31:21:e5:d9:59,hollandtravis@pierce-smith.info,img/obama.jpg +Jennifer White,190-46-0577,86501,"11576 Emma Creek Suite 622 +South Aaron, ME 47208",1969-05-14 18:07:42,22:4e:86:5f:61:9e,welchheather@wells.net,img/obama.jpg +Gina Baker,526-28-3169,25614,"872 Alicia Pike Suite 296 +New Jaredmouth, CT 35112-2507",1972-07-03 11:29:03,5b:90:52:4a:b6:4c,imaynard@bright.com,img/obama.jpg +Carmen Benson,665-68-2861,27771,"861 Alicia Hills Apt. 112 +Lake Anthonyborough, ND 18087-5826",1965-08-27 04:26:57,3a:64:3b:c9:07:24,stephanieross@yahoo.com,img/obama.jpg +James Valencia,137-79-7722,89182,"7982 Danielle Crossing Suite 772 +Brownmouth, KY 61330-3019",1949-03-12 12:53:53,ea:5a:fd:9c:7b:08,hernandezeric@figueroa.com,img/obama.jpg +Candice Chang,304-68-2746,41006,"964 Crystal Coves Suite 632 +East Robertfort, NY 55832",1948-12-22 15:22:33,b3:5c:e4:4b:3c:e0,rhill@serrano-stewart.com,img/obama.jpg +Barbara Castillo,140-93-9989,28174,"44560 Weber Junction Suite 093 +South Raymondchester, PR 22378",1965-01-31 17:27:24,ed:5b:52:ca:94:49,timothy62@gmail.com,img/obama.jpg +Tammy Vasquez,861-65-2607,94455,"891 Lisa Manor +Hernandezburgh, MD 38016-7873",1918-12-13 07:00:29,54:07:7e:9a:80:1d,david78@gmail.com,img/obama.jpg +Cassandra Abbott,724-15-8104,77811,"070 Warren Shores +Dianeshire, FL 91842-0768",2016-05-03 03:08:32,85:94:c9:00:46:04,nwelch@lester.com,img/obama.jpg +Mrs. Erica Tucker,412-42-1124,79757,"Unit 1513 Box 2102 +DPO AE 32694",1935-05-15 17:02:22,cb:13:ca:6b:58:ee,amitchell@hotmail.com,img/obama.jpg +Timothy Livingston,510-13-9722,73988,"60494 Heather Ways Suite 095 +Pottsshire, NV 38786-0801",1988-04-18 06:09:37,0f:d5:bd:ac:62:29,velazquezantonio@gmail.com,img/obama.jpg +Christopher Wallace,196-60-0175,60170,"045 Alyssa Union +Lake Meghanmouth, NE 30509-0995",1956-03-31 23:31:46,10:c0:9c:5b:0a:81,pmedina@gmail.com,img/obama.jpg +Kyle Dunn,861-95-6700,03648,"6612 Scott Knolls +South Crystal, AS 28505",1992-05-13 16:48:10,da:d5:27:35:f7:7d,gregorylewis@yahoo.com,img/obama.jpg +Charles Randall,658-78-6124,84011,"72135 Howard Stravenue +Angelabury, MD 31616",1933-01-25 23:55:04,4f:0c:90:b8:ca:d3,qstone@gmail.com,img/obama.jpg +Russell Walton,302-35-5364,99605,"65905 Carter Dale Apt. 447 +West Timothyport, WI 87582",1989-07-26 11:25:15,78:34:6f:60:75:f4,april67@yahoo.com,img/obama.jpg +Destiny Davis,675-69-6121,99784,"6970 Megan Mountains +Natashastad, SD 10203",1990-02-26 23:35:36,c4:19:76:a8:6c:22,emilysmith@yahoo.com,img/obama.jpg +Whitney Johnson,571-42-1537,94522,"6983 Jillian Motorway Apt. 514 +South Jefferystad, KS 46886",2008-12-05 05:25:42,c5:5a:88:ee:98:0c,robertjones@flores-hill.biz,img/obama.jpg +Daniel Sanchez,794-34-0518,61436,"931 Ashley Gateway Apt. 572 +Priceberg, AL 67163",1969-04-15 14:31:53,34:83:be:73:6c:82,dunlapamanda@hotmail.com,img/obama.jpg +Gabriela Heath MD,605-91-7769,33323,"6150 Smith Lodge Apt. 019 +North Ashley, NV 16687-0258",1968-08-14 07:05:51,25:4b:c2:01:af:4b,bblake@yahoo.com,img/obama.jpg +Michael Gonzales,400-37-5911,14951,"531 Barry Divide +North Tammymouth, TX 94378",2009-02-14 18:39:39,b8:dc:21:f2:e0:4b,lsmith@brock-smith.com,img/obama.jpg +Julie Lee,772-16-5638,10554,"USNV Byrd +FPO AP 33561",1975-03-12 17:53:02,74:df:01:84:5d:9a,hillamy@smith.com,img/obama.jpg +John White,619-10-9418,65341,"7372 Taylor Neck Apt. 684 +Adkinsmouth, PA 04887-9394",1996-01-09 18:35:57,29:9e:d5:6f:24:4b,jonesmary@yahoo.com,img/obama.jpg +Amanda Ferguson,708-06-1592,02259,"62215 Mary Point Suite 314 +Desireeville, OR 43614",2013-09-22 21:23:16,c4:af:a5:99:98:ea,wthornton@hotmail.com,img/obama.jpg +Carlos Medina,079-43-5975,67568,"8159 Kim Crossing Suite 211 +South Dana, AR 04434-8045",1976-08-29 07:17:43,20:18:c3:08:a7:15,jeffrey41@yahoo.com,img/obama.jpg +Nicholas Wyatt,759-82-4841,85305,"0608 Sean Highway +East Royberg, MN 72074-7924",1980-06-06 01:37:41,db:4c:ff:5e:ab:55,beverlyjohnson@yahoo.com,img/obama.jpg +Jenna Jones,828-70-0985,94382,"4295 Rosario Light Suite 443 +New Adrian, VT 51899-4026",1994-02-04 15:00:10,83:89:f7:f7:77:d0,matthewrojas@price-williams.com,img/obama.jpg +Drew Miller,735-90-9757,13509,"666 Madison Park Apt. 621 +Torreschester, VI 01861-9984",2008-10-05 08:42:41,3b:cb:53:0f:1d:60,cartershane@chang.com,img/obama.jpg +Rebecca Smith,267-19-5027,16877,"406 Jonathan Prairie +West Alexander, KS 80466",1941-01-31 00:02:17,b9:7b:c3:d2:ba:e7,victoriathomas@fernandez.com,img/obama.jpg +Robert Miller,608-29-8624,30980,"128 Young Ford Suite 346 +East Heather, VT 40037-9057",2014-11-03 04:13:38,81:98:b4:1e:91:ff,mark32@yahoo.com,img/obama.jpg +William Griffin,877-04-0827,47046,"PSC 8077, Box 7914 +APO AE 00887-4355",1926-12-26 18:29:16,73:49:c9:16:f0:6a,norma05@hotmail.com,img/obama.jpg +Stephen Foster,410-28-8242,13496,"08662 Smith Springs Apt. 017 +North Edward, NE 39550",1939-09-07 05:47:35,94:fa:52:12:03:16,sfisher@gmail.com,img/obama.jpg +Jeremy Moran,460-65-1805,22604,"Unit 1959 Box 9702 +DPO AE 33253",1975-03-12 21:43:40,d7:66:26:04:2d:86,ysmith@simpson-morales.org,img/obama.jpg +Nicholas Walker,484-21-5250,49381,"5107 Carpenter Courts +Kennethside, TX 16432",1990-07-17 13:37:10,00:b9:8a:63:95:df,nmadden@gmail.com,img/obama.jpg +Jamie Jackson,864-67-7669,03081,"619 Pearson Lakes Suite 182 +East Kimberly, WV 63679-1745",1992-10-17 18:08:03,b3:54:aa:e7:a8:e4,joan70@hotmail.com,img/obama.jpg +Tabitha Carter,878-01-6923,05928,"03887 Joseph Meadow Apt. 094 +Jamesstad, SC 85182",1948-01-08 12:09:07,b2:ed:cc:a7:26:63,christopherkirk@gmail.com,img/obama.jpg +Andrew Henderson,211-29-6054,42524,"7936 Garcia Glen Suite 872 +Stewartmouth, TX 68170-8798",2014-09-06 18:45:59,3e:4f:cc:75:b2:ab,peter30@hotmail.com,img/obama.jpg +Nicholas Warner,260-94-0646,26997,"USNS Swanson +FPO AA 17087",1932-08-01 17:53:44,8c:1d:20:32:5a:10,jennifer98@jenkins-lopez.com,img/obama.jpg +Robert Gilbert PhD,564-99-9364,65327,"12382 Orr Terrace +Parrishmouth, IA 67700-7434",1967-03-09 08:53:11,c7:b4:f2:1e:ad:73,tmann@hotmail.com,img/obama.jpg +Daniel Hall,301-60-2925,42249,"9517 Lauren Key +Powellshire, MP 45339",1972-05-07 04:36:27,27:bd:2b:e9:2b:8c,donaldnelson@miranda.com,img/obama.jpg +Richard Salinas,574-74-4391,40737,"679 Reid Underpass Suite 977 +North Carolyn, KS 39632-2801",1944-10-23 08:18:32,10:83:5a:89:18:2a,summersmatthew@hernandez.org,img/obama.jpg +Monica Black,803-99-3075,55648,"323 Paul Fall +Fletcherchester, SC 77862",2014-01-21 20:01:08,21:ef:69:96:aa:33,williamsoto@hunter.info,img/obama.jpg +Brittany Pena,314-96-4154,17660,"9853 Stephanie Manor +South Jade, TX 49903",1997-12-02 15:08:57,47:2e:03:a2:12:c8,shawcarlos@glover.com,img/obama.jpg +Sarah Davis,176-36-9486,07778,"15979 Jackson Walk +Port Jessicabury, PA 16995",1983-07-19 00:47:57,1a:87:8e:32:bc:4f,arthur95@gmail.com,img/obama.jpg +Sarah Sanford,407-14-7250,22522,"854 Eric Prairie Apt. 284 +Andersonfort, FL 97315",1963-12-21 00:49:23,b9:4a:de:a5:44:ee,hgraves@richard-kirby.com,img/obama.jpg +Mr. Christopher Brown DDS,838-44-7402,49044,"56429 Joshua Tunnel +Transide, LA 31534",1939-12-18 00:50:51,0d:0f:51:ee:ea:70,huffmanjames@gmail.com,img/obama.jpg +Jessica Thomas,087-32-8989,14632,"10241 Catherine Ports +Lanebury, MI 39464-0113",1950-06-04 00:58:03,13:71:26:11:88:45,sean34@conley-morrison.net,img/obama.jpg +Dylan Mcclure,622-89-9920,70861,"875 Shaffer Road +Stephanieton, MP 15343-7002",1929-01-25 15:08:15,1d:d2:fe:66:bb:3f,lopezlauren@gmail.com,img/obama.jpg +April Burton,851-24-9771,52624,"8346 Horton Fort +North Robertborough, LA 99120-5313",1928-11-29 22:28:03,e4:f7:3b:87:93:85,carolynmccarthy@gmail.com,img/obama.jpg +Frank Sloan,674-33-4975,51577,"579 Ricky Road +Rachelburgh, ME 70158-3358",1959-12-03 12:23:18,03:fd:75:27:4a:29,harmstrong@hernandez.net,img/obama.jpg +Erica Mata,609-39-3082,33158,"9487 Zimmerman Mills +New Debra, PA 41364-2482",1925-01-08 12:36:46,1c:15:4a:59:7b:29,hblack@miller.com,img/obama.jpg +Michael Smith,696-63-1179,64701,"46361 Glass Vista Suite 161 +New Jodi, OK 66996-8854",1998-10-01 18:42:48,f5:5a:c8:68:e5:47,wdavis@yahoo.com,img/obama.jpg +Patricia Hall,531-98-6329,99663,"8079 Jillian Pike +Keithton, NE 87328-8164",1924-08-16 13:15:47,3f:f6:a0:f0:91:3e,medinajuan@martin.com,img/obama.jpg +Raymond Lewis,212-30-5228,22963,"938 Randy Brook Apt. 764 +West Michaelfort, ID 82037",1952-09-13 16:46:46,42:9b:57:58:66:bf,eric02@lopez.com,img/obama.jpg +Emily Casey,213-09-5002,54635,"767 Caleb Prairie +Port David, RI 94818-4130",1976-06-09 21:53:55,03:16:4a:76:d6:16,chelsea24@clarke.com,img/obama.jpg +Linda Moore,500-74-4807,53119,"10881 Sparks Gateway +Elizabethshire, HI 10528-4091",1924-04-12 05:19:35,46:ef:89:ee:ca:24,kevinhernandez@gmail.com,img/obama.jpg +Fernando Villegas,294-98-4056,27974,"8610 Owens Extensions +Pagetown, MH 33305-3613",1958-01-07 07:13:10,7c:8e:a3:94:06:e6,reneehall@hotmail.com,img/obama.jpg +Barry Morris,191-40-1405,31824,"29495 Melanie Roads Apt. 530 +Port Scott, KY 29291",1949-07-01 08:55:38,27:3f:f1:bc:0a:89,michael55@taylor-hogan.net,img/obama.jpg +Dalton Reese,304-49-3847,39754,"104 Irwin Ramp Apt. 266 +Pearsonbury, MA 77955",1960-02-27 08:48:59,92:dc:9c:63:99:33,calebbennett@gmail.com,img/obama.jpg +Kristina Jenkins,642-62-9899,39139,"523 Johnson Estate Apt. 324 +North Ginaside, WA 02477-8078",1940-06-15 09:44:43,f9:88:d5:85:48:32,matthewsbrian@newton.com,img/obama.jpg +Danielle May,369-58-6760,55316,"17127 Mike Mill +Melissastad, MT 93224",1951-05-26 02:10:10,07:07:f3:1a:3c:e2,robertpatel@gmail.com,img/obama.jpg +Derek Martin,326-52-4642,01241,"99082 William Mountain Suite 598 +Butlerview, IN 47474-8418",1995-02-08 17:27:28,66:47:d2:7d:eb:c4,matthewbrown@gmail.com,img/obama.jpg +Christopher Wright,098-02-8767,41087,"USS Hays +FPO AP 39327-7515",1956-02-08 09:47:21,ae:32:ef:c6:8c:1e,bmorgan@collins.com,img/obama.jpg +Levi Terry,791-99-9672,31684,"USS Hopkins +FPO AA 81246-0756",1962-07-18 20:31:24,c9:b3:9b:a7:f8:0f,dodsonashley@yahoo.com,img/obama.jpg +Kelly Lewis,409-86-5614,18256,"28334 Frey Ridge +South Sarah, GA 61526",1983-01-25 08:19:26,7c:66:46:6a:bd:86,vluna@brewer.com,img/obama.jpg +Emily Gonzalez,811-84-1175,31788,"798 Thornton Centers Suite 937 +Hansenhaven, WY 23979",1987-12-29 04:25:41,cb:ec:62:c6:28:3d,tuckerrobert@hotmail.com,img/obama.jpg +Paige Villa,624-17-2840,30075,"Unit 3351 Box 0151 +DPO AE 78998-9350",1972-09-06 12:27:22,43:d5:e8:55:25:b9,kimberly00@gmail.com,img/obama.jpg +Jacob Osborne,058-07-9334,58956,"5820 Clark Greens +Mccoystad, IN 89294",1921-05-20 06:02:06,78:03:e3:2b:64:f4,murillomarc@schultz.com,img/obama.jpg +Olivia Davila,737-86-3149,90082,"071 Howard Village +Simpsonland, UT 13894",2004-05-11 20:19:20,8d:64:4d:c7:67:01,johnchapman@wall-huang.com,img/obama.jpg +Denise Bishop,041-53-2088,61989,"Unit 4316 Box 9394 +DPO AE 14165-3471",1949-01-12 03:31:53,26:11:6b:71:86:50,gabriel54@jenkins.com,img/obama.jpg +Kelsey Cantrell,480-87-1679,09841,"841 Klein Plain +Lake Robert, MD 95141-7760",1962-02-25 00:00:18,d5:72:2f:1c:18:fc,wallacemichael@gmail.com,img/obama.jpg +Lisa Lewis,829-11-0135,23476,"8646 Carey Lakes +Michaelfurt, AZ 55874",1965-01-13 10:54:11,50:5d:5a:42:e8:0c,zwilliamson@gmail.com,img/obama.jpg +Jared Vega,489-90-7273,65527,"USNV Parker +FPO AP 85676",1971-04-25 03:51:14,ae:77:b7:cd:f1:4e,sarahdaugherty@yahoo.com,img/obama.jpg +Matthew Robertson,720-88-0172,57089,"4381 Bradley Fort +North Brenda, DC 89964-1698",1949-01-01 01:44:13,81:66:8c:db:11:36,ajohnson@yahoo.com,img/obama.jpg +Lindsey Banks,416-39-3331,38017,"728 Flowers Ford Suite 860 +Calebmouth, NJ 70367-9470",1942-09-23 21:22:56,67:7a:3f:7f:84:b9,noah26@sharp.com,img/obama.jpg +Jason Thomas,302-58-8219,06277,"581 Rita Glen +South Hannah, NC 14232-3470",1919-07-16 15:59:06,4f:7c:54:05:e4:35,ryanmatthew@smith.com,img/obama.jpg +James Bryant,674-16-7719,09834,"5083 Rivera Roads Apt. 795 +New Charles, NY 26340-6246",1993-10-10 18:24:48,e7:c3:27:78:eb:f7,sara46@huff.com,img/obama.jpg +Dana Vazquez,664-16-3117,53604,"5500 Henry Highway Suite 691 +Hamiltonbury, SC 49239-1855",1949-01-17 06:12:48,56:a9:35:90:23:ac,masonmichael@henderson-smith.com,img/obama.jpg +Jordan Johnson,135-14-5867,72983,"540 Robert Knolls Apt. 148 +Jennifermouth, IN 24593",1929-04-25 09:06:57,b1:e7:28:02:2f:8e,kevinbell@yahoo.com,img/obama.jpg +Whitney Johnson,815-38-8146,52026,"596 Taylor Fields Apt. 161 +Port Williamshire, NV 73001-1293",1990-09-09 14:59:24,cf:9f:85:a5:51:9e,nathan08@gmail.com,img/obama.jpg +Christina Hanson,679-96-2803,28280,"223 Erin Points +Smithfort, CT 93611-1187",1994-05-17 02:24:59,db:0e:72:88:8c:d3,bullockmolly@patel-morris.org,img/obama.jpg +Nicholas Hansen,866-29-7894,19148,"095 Wilkins Common Suite 015 +Dianaview, OH 15930",2011-03-10 02:52:07,e8:4e:21:2c:c1:29,johnwilliams@baker.com,img/obama.jpg +Timothy Willis,639-29-3475,23104,"143 Rebecca Bridge +Porterchester, TX 48984",1983-04-15 20:52:22,4f:65:bc:76:64:4b,ejackson@hotmail.com,img/obama.jpg +Thomas Green,058-68-8477,40314,"86525 Scott Corner +North Shane, MA 82140",1943-08-25 20:57:17,15:61:b8:c4:09:1c,shannon25@gmail.com,img/obama.jpg +Lauren Brady,138-11-9262,97931,"92625 Powell Well Suite 906 +Moorestad, NY 28999-8211",1971-09-11 13:44:39,1a:5f:de:f3:53:6e,richardwest@gmail.com,img/obama.jpg +Mr. Michael Jones,858-93-7173,61620,"26304 Anderson Mountain Apt. 733 +South Williamborough, KS 31092",1984-06-13 18:02:29,d0:b8:91:22:8e:cb,ycampbell@hotmail.com,img/obama.jpg +Ashley Valdez MD,677-49-4626,60266,"2107 Carrillo Summit +Jonesshire, RI 20460",1918-02-13 14:00:54,4f:79:ff:40:d7:47,baileymelinda@yahoo.com,img/obama.jpg +Adam Johnson,453-24-4004,66927,"1527 Rivas Fall Apt. 730 +Veronicachester, OR 44690-2109",1944-04-05 23:32:49,93:03:ce:1f:60:ad,robert61@hotmail.com,img/obama.jpg +Tyler Pena,890-59-3732,54742,"679 Larry Ridge +Calebshire, OH 62283",1990-06-07 16:32:02,05:de:71:6c:00:44,forbeschad@griffith.com,img/obama.jpg +Emily Miller,612-07-5818,73655,"637 Carol Ferry +New Kimberly, SC 38549-9157",2000-07-23 12:24:08,54:f6:d3:01:96:ed,rhondanguyen@riley.biz,img/obama.jpg +Sarah Bennett,831-96-5257,40369,"80942 Strickland Extensions +Kennethland, FM 06066",1990-06-21 15:20:14,59:75:bc:95:76:91,cbishop@rojas.com,img/obama.jpg +Christina Thomas,249-43-8199,52333,"70468 Lisa Islands +Jennyburgh, VI 95013",1991-04-22 06:42:08,2d:ad:32:a2:d4:1c,jacobjimenez@gmail.com,img/obama.jpg +Elizabeth Campbell,790-22-3064,11203,"USS Wilkins +FPO AE 18543-4501",1990-05-30 05:13:21,94:cb:aa:0e:12:64,xanderson@hart-snyder.com,img/obama.jpg +Brian Mack,177-96-4902,88779,"73698 Anthony Squares +North Kayla, CA 65243",1976-09-01 23:25:14,78:ff:54:44:f1:eb,brownjason@mcneil.com,img/obama.jpg +Matthew Harrison,657-35-1121,21100,"03572 Brandon Crossroad +Smithmouth, MI 61050-9602",2014-07-01 15:30:41,c1:1b:17:5d:6a:5c,sarasmith@hotmail.com,img/obama.jpg +Matthew Lane,108-31-4767,78452,"2124 Nancy Trafficway +Andrewton, SD 98727-7163",1962-07-01 18:14:03,3d:54:1f:60:e2:07,lunapaul@gmail.com,img/obama.jpg +Alan King,405-19-6952,27741,"9906 Keith Court Suite 986 +Alextown, MI 46699-8478",1978-01-21 15:50:54,60:86:85:01:73:fd,nweber@nash-dyer.com,img/obama.jpg +Donald Little,308-13-3687,42498,"9154 Morrow Station Suite 486 +Lake Kevinshire, IA 71237",2007-06-20 17:48:28,dd:9f:d3:68:34:2e,desireejohnson@strong.info,img/obama.jpg +Casey Riley,227-96-2585,70486,"050 Julie Prairie +New Codyfort, AZ 85731",1977-07-24 13:44:02,e4:9f:09:87:1c:5a,joshua47@sanchez.info,img/obama.jpg +Thomas Moore,149-35-6422,65389,"3181 William Manor +Combsland, FM 91848",1948-09-29 23:29:38,7c:1e:e0:86:9f:79,oberry@matthews-collier.biz,img/obama.jpg +Lauren Todd,423-78-0473,47632,"438 Malone Landing Suite 848 +Philipton, NH 26857",1938-04-03 12:55:31,76:6c:12:bc:55:3a,thomasolsen@yahoo.com,img/obama.jpg +Jonathan Lopez,082-79-1991,77547,"2732 Colon Rest Suite 264 +Lake Scottview, MD 47959-4313",1935-10-10 02:41:26,20:0f:93:ba:68:1c,rlam@yahoo.com,img/obama.jpg +Robert Sanders,272-55-6970,13983,"08167 Timothy Tunnel Suite 553 +Nicholsport, WI 05734",1949-06-04 14:48:00,71:3b:4e:9b:60:22,sgriffin@martin.com,img/obama.jpg +Brenda Franklin,555-65-4017,71446,"91767 Gonzalez Radial +South Ronald, WA 44384-9261",1991-12-28 13:54:02,84:ae:2a:58:24:05,sheila55@hotmail.com,img/obama.jpg +Elizabeth Downs MD,073-54-9379,13846,"2527 Pamela Light +Rodneyton, MP 58318-4146",1936-11-23 23:09:45,ca:11:a4:e3:44:60,coxjames@yahoo.com,img/obama.jpg +Amanda Collins,688-14-3920,83655,"84712 Hicks Drive +North Brooke, DE 00480-9026",1936-07-04 03:27:56,cd:ad:f1:c9:5e:20,shannon45@hunter.com,img/obama.jpg +Melissa Campbell DDS,561-56-4751,59536,"8931 Rebecca Avenue Apt. 891 +North Ashley, PW 22498-2903",1984-09-01 21:18:35,09:68:c8:2b:af:20,dvillanueva@payne-kelly.net,img/obama.jpg +Elizabeth Brooks,313-80-0249,03282,"415 Montoya Trace +East Ian, IA 44259-2080",1941-04-29 02:56:06,1c:0b:82:7d:d1:5b,alexismiller@hotmail.com,img/obama.jpg +Crystal Gonzalez,641-90-8325,13154,"1615 Anna Burg +New Tylermouth, WV 18822",1957-05-26 00:07:01,2c:f2:11:0d:27:0f,zdavis@hotmail.com,img/obama.jpg +Joseph West,468-60-3386,50938,"01068 Gomez Mountain Suite 567 +New Dominic, UT 90815-7069",1963-11-11 04:33:15,60:51:d4:5a:19:3c,morrisrachel@sweeney.info,img/obama.jpg +Luis Henry,414-75-2074,30449,"4089 Lauren Ferry +Simpsonfurt, OH 43332-6526",1947-03-19 01:15:46,23:43:ac:b2:39:d0,mccartyjeffery@pittman.com,img/obama.jpg +Kimberly Ortiz,163-53-8419,74030,"10727 Kaylee Drive Suite 945 +East Claytonhaven, FM 19229",1998-04-15 08:07:00,20:0b:1c:38:46:33,colemichael@hotmail.com,img/obama.jpg +Crystal Freeman,209-32-3431,77743,"8382 Christina Plains +Mcintoshport, NM 49003-1643",1992-05-08 00:06:09,87:bf:14:9b:1e:8e,sally99@carter.com,img/obama.jpg +James Hunt,834-06-9430,00524,"3462 Randy Row Apt. 642 +South Kimberly, WI 13861-4448",1961-12-12 17:14:32,25:38:03:61:47:d6,gregorywalters@hotmail.com,img/obama.jpg +Briana Lee,609-85-2556,31487,"063 Williams Course Apt. 302 +New Cynthiamouth, MN 67895-7540",1991-06-17 16:48:59,38:e5:b9:1f:58:7b,kbrown@yahoo.com,img/obama.jpg +Michael Henry,214-25-8865,50010,"USNS Nunez +FPO AA 33048",1962-10-16 08:52:54,1b:6d:a8:7f:d2:14,jacquelinethomas@patrick-smith.com,img/obama.jpg +Amanda Ford,789-27-4437,26326,"95265 Robertson Walks Apt. 842 +Snyderhaven, NH 57199-7656",1953-12-28 18:42:29,1f:ae:a3:e5:37:09,okennedy@hotmail.com,img/obama.jpg +Sarah Lowe,157-28-5940,06812,"8981 Daniel Orchard Suite 206 +Lake Christopher, FM 55403-3177",1997-04-05 20:33:46,97:5f:97:07:b5:0a,kendraodom@hotmail.com,img/obama.jpg +Heather Johnson,203-77-6261,19121,"9347 Amy Groves +North Brooke, AL 17118",1986-02-22 13:11:48,f0:b3:81:c1:7b:34,christygonzalez@yahoo.com,img/obama.jpg +Ricardo Long,374-31-3802,04143,"302 Colleen Burgs +West Joanne, AK 50513-4639",2016-11-27 13:18:52,2a:13:7f:c8:ac:20,richard43@davidson.com,img/obama.jpg +Lacey Brooks,837-25-1056,83643,"Unit 0057 Box 7651 +DPO AP 05542-2817",1930-05-30 09:23:27,a4:e2:84:0f:93:24,cheyenne56@gmail.com,img/obama.jpg +Sarah Anderson,270-48-4965,83569,"36710 Hughes Unions Apt. 211 +West Mitchell, RI 41643-0358",2016-10-16 13:51:33,ba:48:4d:b4:9a:1f,mwhitehead@gmail.com,img/obama.jpg +Carrie Ayala,123-46-2171,05367,"996 Townsend Via +Anthonyside, MH 59583",2006-10-14 11:59:05,c9:b5:e3:03:d1:52,brian78@gmail.com,img/obama.jpg +Joshua Duran,243-28-9171,61381,"80104 Morgan Garden +East Elizabethborough, NY 09331-8904",1990-03-10 18:48:46,00:5f:a1:9f:7c:ad,williamdougherty@johnson.com,img/obama.jpg +Barbara Neal,519-43-6946,46883,"513 Hughes Overpass +Toddport, LA 40780-8833",1971-11-13 16:36:16,67:ea:7f:41:46:54,jessicamorris@yahoo.com,img/obama.jpg +Lisa Malone,166-76-0377,84795,"1656 Karen Turnpike +New Jessica, ME 15296-5721",2006-07-02 17:52:03,43:62:11:33:78:e5,david38@hotmail.com,img/obama.jpg +Jennifer Young,407-80-3525,28873,"Unit 6680 Box 4870 +DPO AP 44842-0627",1979-10-21 17:17:48,34:17:63:0b:31:3a,ashley03@byrd.org,img/obama.jpg +Elizabeth Greer,630-20-5324,37630,"37146 Powell Meadow +East Cathy, PW 51383-7314",1966-08-17 11:02:30,36:87:ca:75:86:c0,zorozco@hotmail.com,img/obama.jpg +Michael Kelly,175-62-1213,55268,"830 Campbell Field +Port Josephshire, PR 80233",1968-06-24 12:40:41,d1:40:75:de:a3:32,john50@gmail.com,img/obama.jpg +Brian Smith,168-27-7126,60735,"5872 Seth Points Apt. 380 +North Jesse, FL 36948-4173",1955-06-21 04:30:14,a3:1a:36:88:62:0a,richard94@hotmail.com,img/obama.jpg +Luis Gomez,057-64-6004,15426,"88260 Padilla Centers +Andersonfurt, OR 22535-2029",1984-11-24 16:35:57,17:8e:ce:3b:4c:69,contrerasmonica@silva.org,img/obama.jpg +Christopher Robinson,767-02-4345,53928,"1332 Mendoza Fall +Port Terri, PA 70468",1949-02-26 21:48:24,70:b7:e6:d2:ec:7f,timothyhatfield@navarro-mitchell.com,img/obama.jpg +Darren Butler,042-12-2896,91706,"875 Mark Skyway Suite 575 +Port David, RI 49176-1477",1943-04-23 07:41:26,43:7d:41:2a:be:6f,hawkinsveronica@ross.info,img/obama.jpg +Jennifer Mann,819-90-9381,83019,"79118 Mary Drive Suite 919 +West Dominique, TX 26878",1992-08-01 03:26:38,26:a0:a8:64:1f:49,wesley09@bowers-le.com,img/obama.jpg +Annette Howard,207-54-2788,83805,"287 Chang Heights +Port Kimberlymouth, AZ 41503",1969-03-06 15:26:32,e3:2b:e8:00:cc:d0,john91@garcia.com,img/obama.jpg +Ryan Romero,536-44-9692,19637,"940 William Falls Apt. 744 +East Jamesport, NY 92002-1202",2011-05-18 14:02:40,72:35:0a:65:7c:7f,jwalsh@gmail.com,img/obama.jpg +Brett Keller,296-77-5478,30684,"5833 Carol Village +Robertland, NH 46583",1940-02-13 07:22:50,76:68:2a:ce:50:0b,iparker@martin.net,img/obama.jpg +Ellen Mendoza,157-36-7920,25864,"5591 Brian Point +West Lisa, GA 50599-9565",1980-09-12 23:34:45,86:7a:1a:b5:04:b9,jon25@yahoo.com,img/obama.jpg +Gregory Khan,762-69-9300,10893,"71384 William Trace +Parkerchester, AS 78874-1974",1948-02-06 21:59:00,35:b7:13:7c:c9:fd,mramos@gutierrez.com,img/obama.jpg +Stephen Lewis,616-76-0974,44839,"6533 Fernandez Track Suite 106 +Martinezborough, VI 42688",1954-02-17 02:01:03,74:02:57:f3:88:44,robert46@gmail.com,img/obama.jpg +John Taylor,567-62-9508,02736,"53636 Buchanan Gardens +West Nicoleside, GA 01325-0235",2010-08-14 10:58:45,fd:47:f7:cb:fc:bb,lucas79@greene.info,img/obama.jpg +Devin Singh,105-91-7564,65391,"64046 Cabrera Club Apt. 837 +Port Jennifer, VA 81974",1973-03-07 09:35:28,4a:68:42:a4:a6:6b,felicia04@hotmail.com,img/obama.jpg +Jason Watson,840-08-8069,89258,"71832 Hunter Mission Suite 164 +East Patty, AZ 09706",1952-01-29 02:41:37,c4:ce:6a:d3:7d:b3,tammie34@yahoo.com,img/obama.jpg +Autumn Taylor,888-77-9129,80705,"529 Bautista Plaza Apt. 359 +Millerfort, OH 34344-0836",1933-02-20 21:02:13,a7:6e:5d:1c:d4:10,proctordouglas@ramirez.com,img/obama.jpg +Stephanie Jimenez,189-92-4782,49802,"465 Craig Neck +North Jessica, KY 97261-4046",1936-06-18 21:40:30,31:7a:72:b6:08:cd,imorgan@yahoo.com,img/obama.jpg +Manuel Davis,792-78-2287,91457,"PSC 7419, Box 7666 +APO AE 48299",1985-01-10 15:41:23,84:e6:8a:2b:46:ea,brandttina@gross-salazar.info,img/obama.jpg +Jessica Martin,601-65-9717,94015,"614 Taylor Freeway +Bryanshire, ME 01085-9463",1977-02-24 18:50:26,d0:46:6b:d2:48:26,sphelps@blackwell-bowman.biz,img/obama.jpg +Patrick Morgan,355-24-0147,39063,"5611 Arias Lakes +North Carlosmouth, AL 35692",1971-07-05 09:37:15,f5:70:67:f9:e9:63,jacobssusan@hartman.com,img/obama.jpg +Christopher Garcia,369-32-2919,66712,"7364 Mcdonald Valleys Suite 292 +South Timothy, CO 52701",1967-12-20 18:44:56,86:f6:db:1b:f9:13,danielkidd@gonzalez-walker.net,img/obama.jpg +Timothy Miles,733-71-5499,17163,"8339 Knight Forges Suite 605 +Port Margaretborough, WV 93272",1953-02-28 00:33:10,9f:3c:b5:ce:48:d2,margaretkey@gmail.com,img/obama.jpg +Alexandra Thomas,490-52-9838,94643,"3538 Cunningham Crest +East Tyler, OK 50686-1711",1961-02-10 18:43:03,70:e0:d4:16:b9:b9,owhite@yahoo.com,img/obama.jpg +Susan Davis,229-89-9361,06006,"429 Mora Street Suite 936 +East Daniel, OK 37534-9017",1921-08-21 19:22:01,f8:ac:07:15:13:ce,michael69@yahoo.com,img/obama.jpg +Erica Sutton,446-20-9178,01861,"4287 Kathleen Pine Apt. 319 +East Brandon, CA 00641-3617",1932-01-10 19:43:20,f3:76:ff:b6:e2:31,nathanmiller@kelly.net,img/obama.jpg +Christopher Ingram,435-09-9887,10869,"701 Jeremy Bypass +North Joel, OR 22550-1648",1969-10-16 02:24:40,49:9d:32:c0:40:31,juliaball@hotmail.com,img/obama.jpg +Taylor Lowe,832-27-9812,01868,"4810 Drew Cliff Apt. 755 +West Richardfurt, CA 96787",1940-05-03 03:41:05,d4:1d:65:76:0f:c1,raymond75@gmail.com,img/obama.jpg +Paul Cook,648-41-2874,47510,"USNV Boyle +FPO AP 78692-4591",1937-09-15 13:26:35,cb:f7:01:7c:bc:bb,langeugene@yahoo.com,img/obama.jpg +Christopher Miller,631-19-9319,62196,"75261 Washington Circle +East Wendybury, WI 68471-4264",1974-02-14 12:35:34,52:31:c3:4c:00:30,brittany54@patton.net,img/obama.jpg +David Salazar,380-13-7093,45044,"486 Baker Streets +Loriside, WA 82122",1967-06-14 03:55:01,38:4d:91:d8:32:fe,linda65@haley.com,img/obama.jpg +Chad Mcmillan,497-56-0303,43140,"823 Charles Plaza Apt. 028 +North Stephanie, NJ 65904",1939-06-17 19:01:51,20:f5:aa:67:ed:57,pdean@yahoo.com,img/obama.jpg +Collin Melendez,397-15-5109,60760,"62696 Davis Roads Apt. 219 +Lake Courtney, KY 65178",1920-09-21 21:14:56,a7:40:64:4c:80:66,jamietodd@hotmail.com,img/obama.jpg +Jason Watson,404-34-3148,93195,"09791 Raymond Ridges Suite 386 +Martinezberg, ME 26253-7551",2013-12-04 13:33:40,6c:d4:9d:82:e6:76,reevesamber@bates-davis.org,img/obama.jpg +James Deleon,884-93-4102,24443,"72038 Laurie Estate +Robertmouth, OR 58631",1998-06-27 03:29:47,19:03:94:f8:02:ea,johnsonangela@hotmail.com,img/obama.jpg +John Brown,620-94-6833,51822,"USNS Young +FPO AA 59952",1949-11-04 20:58:14,88:d3:4a:96:49:c3,wbray@hotmail.com,img/obama.jpg +Tina Bates MD,270-10-7305,45453,"3391 Robles Island Apt. 771 +Castrohaven, NC 71963-8224",2010-10-24 19:37:22,ed:45:72:ad:3f:3b,lindaroberts@yahoo.com,img/obama.jpg +Tammy Brown,395-43-1012,78636,"59935 Sandra Turnpike Suite 599 +Hamiltonfort, PR 15463",1962-10-08 00:52:09,0f:72:da:85:34:7c,jacksonmelissa@yahoo.com,img/obama.jpg +Victor Weber,471-15-3462,13243,"79419 Kristin Squares Apt. 218 +West Wendytown, MN 49372-7457",2009-11-17 12:44:24,b5:ea:4a:a4:1e:b8,bradley17@hotmail.com,img/obama.jpg +George Ryan,470-53-3648,54819,"32688 Thomas Park Apt. 742 +South Luisshire, AS 84562-2374",1917-12-11 05:28:35,d3:67:12:13:e9:7a,daleking@yahoo.com,img/obama.jpg +Eric Santiago,742-13-5245,33555,"8560 Tara Parkway +North Jenniferfurt, MH 93484",1939-12-25 20:35:41,07:9d:53:ee:93:6b,ggray@haas-hamilton.net,img/obama.jpg +Melissa Phillips,667-44-4088,09952,"1000 Clark Fords Suite 221 +West Timothy, AZ 65606-2530",1953-03-27 23:16:09,85:11:60:c3:e8:b6,samantha87@gmail.com,img/obama.jpg +Dennis Wilson,596-12-5017,35844,"507 Jonathan Loop Apt. 108 +West Frank, NM 77214-0274",1932-10-01 13:39:57,45:11:86:d2:46:f9,wcooper@chandler-jones.com,img/obama.jpg +Julie Stevenson,357-07-9055,29363,"1071 James Mills +Frankville, TX 50444",1939-09-03 15:51:51,bd:2c:4e:f4:b2:67,wilsonlaura@newman.com,img/obama.jpg +Denise Griffin,576-31-6662,70263,"2577 Wanda Fall +Andreaborough, AR 82940-8764",1931-06-22 16:37:24,ff:ae:a8:0c:65:93,pshah@hotmail.com,img/obama.jpg +Nicole Griffin,161-54-6966,89129,"2916 Brenda Light Suite 727 +North Debrastad, PA 75280-6827",1944-09-08 06:22:53,85:ac:58:c3:ee:2e,rogersellers@gmail.com,img/obama.jpg +Christine King,782-59-1635,16166,"280 Ortiz Street Suite 282 +West Teresaburgh, LA 61307-3796",1960-08-13 07:48:18,24:81:37:b4:d3:d5,chadpowers@holder.com,img/obama.jpg +Jennifer White,719-68-2346,69728,"8887 Doyle Brook Apt. 764 +Meganmouth, FM 38722",2009-07-05 19:06:56,3b:5a:3a:52:4a:f3,rcollins@hill-martin.com,img/obama.jpg +Robert Ramirez,284-24-5423,28488,"985 Strickland Manors +East Jasmine, DC 12005",2006-04-09 09:46:16,f3:d9:2a:a1:bd:55,leejuan@gmail.com,img/obama.jpg +Kelly Walker,034-83-5595,82898,"248 Gerald Junction +Lake Johnborough, WA 86862-3664",1985-07-06 10:39:28,56:d5:d6:1f:da:59,christianchristopher@hotmail.com,img/obama.jpg +Thomas Yates,527-19-2280,50412,"13045 Kari Motorway +Danielshire, LA 56459",1923-01-30 17:36:08,9a:0d:4b:8d:7f:0e,heather44@yahoo.com,img/obama.jpg +Kenneth Lopez,742-21-4973,81814,"06580 Amanda Coves Suite 206 +Colonstad, MP 28977-7240",1974-03-14 02:46:51,b3:dc:80:95:a2:6f,smitheric@gmail.com,img/obama.jpg +Sarah Bennett,285-74-7423,22569,"87930 Adam Fork Suite 866 +Matthewchester, IL 99605",1931-11-19 05:23:39,86:25:9a:cc:f9:e6,todd96@butler.com,img/obama.jpg +Kathleen Ryan,545-29-8529,58883,"46144 John Springs +Knoxburgh, KS 16042",1972-05-08 12:28:42,dd:d6:f1:bb:be:b5,ryancaldwell@yahoo.com,img/obama.jpg +Michael Le,838-59-0341,02677,"53230 Regina Glens Apt. 222 +New Tracyburgh, CT 60163",2015-09-08 01:50:49,df:74:2e:0c:ac:96,mathewbrown@yahoo.com,img/obama.jpg +Larry Greene,599-82-4021,82559,"163 Rebecca Stream Apt. 106 +Howardfort, WV 95185-4021",1990-07-05 17:29:31,a0:e5:0a:66:68:48,tonisparks@yahoo.com,img/obama.jpg +Andrea Wallace,090-14-7694,22610,"68411 Bradford Viaduct +Wardtown, ND 13179",1990-04-14 22:19:57,10:0d:c6:f5:bf:e0,ygonzales@williams.com,img/obama.jpg +Jason Lewis,305-39-7307,94667,"724 David Mountain Suite 580 +New Andre, FM 83497",1937-10-15 07:31:19,a0:fd:ec:9e:18:dc,margaret67@hotmail.com,img/obama.jpg +Morgan Scott,191-25-0432,08829,"002 Carpenter Wells Apt. 556 +Serranoview, NC 47095",1960-02-26 17:12:37,6c:a0:95:ca:bc:bb,austinvaughn@young.net,img/obama.jpg +Kimberly Rivera,559-19-2982,57313,"54968 Turner Common Apt. 707 +Bellland, NY 75297-5224",2000-11-23 09:18:08,01:79:08:e6:50:fa,qmoore@leach.info,img/obama.jpg +Mark Riley,424-75-4581,63782,"40340 Kim Pine Apt. 632 +Port Tracy, TX 30020-5377",1933-04-23 09:33:41,59:c8:7d:0b:82:5d,wilsonmichele@yahoo.com,img/obama.jpg +Darrell Hart,067-39-6149,66862,"997 Todd Common Suite 961 +East Michaelfort, WY 75772-5023",2016-08-22 07:22:30,e2:5f:11:08:0b:c4,toddcaleb@mendez-barton.info,img/obama.jpg +Mr. Paul Lewis,428-44-5912,16291,"2401 Laura Junction +Lake Alyssa, IN 57595",1941-12-31 19:34:34,b7:b0:58:a2:c9:67,toliver@gmail.com,img/obama.jpg +Patricia Thompson,054-49-5509,70108,"4460 Duane Square +Lake Williamfort, MS 39225-6112",1966-03-14 20:19:58,48:e6:02:8e:fe:a5,josephcunningham@gmail.com,img/obama.jpg +Chelsea Stewart,080-83-7192,90812,"6401 Miller Isle Apt. 503 +Morganland, MP 17644-5837",1991-07-12 09:31:31,5c:dd:09:ad:43:ed,xcooper@yahoo.com,img/obama.jpg +Gregory Morgan,541-42-0498,09251,"269 David Fields Suite 396 +East Timothy, AL 69413-0254",1964-01-30 09:33:42,cd:c3:7f:6b:43:8f,brian34@gmail.com,img/obama.jpg +Robert Martinez,226-79-7266,39718,"628 Perez Vista +Clarkstad, ID 59397-2021",2011-06-11 17:47:27,e7:e5:62:75:6a:63,walkerstacy@shelton-sharp.net,img/obama.jpg +Thomas Holloway,508-87-5050,90785,"0526 Martinez Junction Apt. 486 +Port Christopherfort, VA 42162",1917-08-11 17:12:44,17:c2:a8:db:72:7d,robin50@morrison.com,img/obama.jpg +Nicholas Rangel,519-05-6270,71684,"USCGC Smith +FPO AE 21688",1974-04-22 23:28:07,ca:49:da:c3:94:54,kelly18@gmail.com,img/obama.jpg +Robert Cain,773-15-0663,97246,"41489 Michael Haven +Langshire, KS 54426",2011-05-22 14:43:17,60:13:3a:5f:1c:b9,fhardy@alexander.org,img/obama.jpg +Harold Rivera,183-30-5034,47682,"80283 Kimberly Burgs +East Michaelfort, WA 51387",1921-02-24 01:25:56,3a:9d:eb:d2:f0:10,smithkevin@gmail.com,img/obama.jpg +Michael Randall,007-28-7019,94368,"378 John Stream Suite 560 +Annettemouth, WY 49035-1643",1997-06-19 00:50:49,e7:41:58:5a:e5:6a,sabrinasanders@ross.biz,img/obama.jpg +Jason Hawkins,047-83-4572,87472,"562 Joyce Junctions Apt. 988 +Lake Henry, MA 67193",1920-10-15 15:49:40,9d:21:4f:f2:31:e2,brianmendoza@hotmail.com,img/obama.jpg +Christopher Curtis,785-15-7989,24830,"06124 Doris Cliff Apt. 475 +Adamsstad, FL 69964",1983-02-26 11:41:40,99:71:07:73:99:97,evansgabriela@cantu.com,img/obama.jpg +Matthew Hawkins,427-90-7165,33888,"33008 Regina Springs +Chanburgh, AR 62029",2011-12-26 14:05:45,29:6d:d8:bf:35:36,brownamber@henry.org,img/obama.jpg +Shane Smith,043-83-9680,28072,"PSC 9930, Box 1238 +APO AA 82600-1079",1932-06-16 07:35:37,3b:3c:87:5f:6d:c6,gbailey@cunningham.net,img/obama.jpg +Tyler Hoffman,491-27-5478,83533,"9944 Stacey Plaza +Valerieville, CO 75489-2991",2008-02-19 08:59:57,7b:8a:cf:8b:17:5e,ywilliams@spencer.com,img/obama.jpg +Mark Brown,714-92-6110,56735,"267 Delgado Prairie +Gonzalezview, CA 26126",1946-06-03 03:17:33,d6:14:08:07:3c:a3,nicholasbrown@hall-powers.info,img/obama.jpg +Lisa Phillips,276-09-0458,02267,"06205 Deleon Orchard +Williamstown, PR 54778",1938-03-06 15:36:11,a1:e8:b5:07:6e:6a,moyerrichard@hotmail.com,img/obama.jpg +Charles Lee,827-81-1799,63227,"307 Debra Trail +West George, IA 84994",2003-03-08 08:40:16,ed:5d:5e:2f:3d:63,gonzalesalexandra@hotmail.com,img/obama.jpg +Julia Vincent,765-90-7955,19935,"18931 Mckinney Junction +North Markbury, OR 18585",1932-10-20 07:15:16,3b:80:41:d1:ed:bd,jcopeland@gmail.com,img/obama.jpg +Andrew Estrada,335-43-2504,34675,"77145 Maria Knolls Suite 837 +Mayomouth, NE 07747",1939-11-18 09:07:40,f1:d9:14:48:f6:f0,esmith@carlson.com,img/obama.jpg +Austin Walsh,525-72-7477,74029,"755 Jessica Shores Apt. 941 +Johnnyport, NM 95504",1979-12-14 04:33:57,9f:9f:df:45:e1:7c,christopherclark@yahoo.com,img/obama.jpg +Michael Chandler,633-23-3005,24721,"PSC 3320, Box 6477 +APO AE 44540-9756",1993-04-30 09:22:09,d6:61:cb:b8:79:a0,griffithheather@hotmail.com,img/obama.jpg +Patrick Stanley,001-30-7944,02644,"094 Katherine Oval +Mcclurebury, WA 41469-7248",1932-12-23 13:46:55,66:bb:23:11:8a:34,katherine53@gmail.com,img/obama.jpg +Mario Fowler,617-88-8497,22942,"8614 Martinez Loaf Apt. 877 +Perezland, OR 43655-8896",1922-04-14 17:35:53,b7:4a:e1:5d:b3:a3,richardsonnicholas@hotmail.com,img/obama.jpg +Norman Stevens,290-80-4553,84437,"176 Brown Walk Apt. 699 +Macdonaldview, GA 87381",1920-02-14 03:35:34,bb:1d:b0:03:bb:9b,dyerkayla@hotmail.com,img/obama.jpg +Nicholas Webb,782-88-3615,59777,"1157 Santiago Green Suite 937 +New Jacqueline, DE 45106",1922-08-29 00:20:16,3e:39:51:fa:a1:48,maureen97@hotmail.com,img/obama.jpg +Richard Ellis,448-34-4942,65048,"23805 William Drives Apt. 593 +South Matthewfort, AZ 87159-0090",1938-06-23 20:04:20,e7:8b:35:29:06:20,katrinahughes@miller.org,img/obama.jpg +Paul Rios,415-24-5904,77363,"57860 Ashley Villages +Taylorshire, GU 00854",1974-09-08 23:14:25,3f:29:1b:e3:be:22,vshields@yahoo.com,img/obama.jpg +Lauren Arnold,771-02-8910,95698,"17871 Robin Village +Dakotaborough, CO 41148",2000-03-23 09:33:21,58:d4:88:e2:79:63,longlori@gmail.com,img/obama.jpg +Aaron Avila,854-84-6252,83139,"696 Castro Ports +Monicaton, OR 44804-0275",1998-07-09 12:19:24,2a:f2:b2:a0:2b:2a,kristenlin@hotmail.com,img/obama.jpg +Jessica Robinson,739-72-5990,83016,"88190 Jeffrey Square +New Ashleybury, MP 62323",1972-12-06 11:08:21,ee:40:e6:49:d3:0d,april28@gmail.com,img/obama.jpg +Dawn Richards,492-07-7375,66250,"2853 Ross Views +Lake Crystal, ME 01907-1312",1942-02-14 12:44:57,12:18:e6:4f:68:bb,nealdana@gmail.com,img/obama.jpg +Robert Miller,441-24-7271,19144,"30271 Kari Tunnel Suite 680 +North Michellefurt, GU 62528",1934-02-12 01:33:47,db:98:66:02:16:a8,vbates@winters.info,img/obama.jpg +Richard Lowe,569-14-2984,97746,"5750 Lee Cape Apt. 717 +Davidsonmouth, AR 79945-5542",1999-08-28 14:14:42,ec:22:c0:3d:77:01,gklein@west-hernandez.info,img/obama.jpg +Robert Munoz,649-67-8049,15996,"85027 Lopez Meadow +Port Briannamouth, WV 81811",1949-07-31 02:39:17,54:46:0a:14:1e:8e,elizabeth64@hotmail.com,img/obama.jpg +Sarah Roberson,257-64-3978,32025,"99300 Donna Crest +Lake John, GA 60635",1936-09-01 08:10:45,74:25:05:c3:8f:b9,armstrongmadison@yahoo.com,img/obama.jpg +Keith Olsen,128-84-3945,51443,"PSC 6924, Box 3522 +APO AA 57476-1645",1997-03-24 01:53:21,7d:cf:44:e1:3a:08,kscott@parker.com,img/obama.jpg +Lance Green,894-01-4798,08840,"047 Gonzalez Burg +South Megan, PA 72288",1982-02-12 09:13:40,7d:c7:1a:18:76:ab,iball@watkins-zhang.info,img/obama.jpg +Sarah Williams,739-72-8722,10217,"4752 Tammy Plains +Snowchester, AR 14856-7856",1992-04-30 06:52:43,d6:65:72:6f:71:88,jay07@hicks-green.com,img/obama.jpg +Catherine Pennington,097-20-3081,51135,"4823 Stacy Extension Apt. 156 +Arnoldfurt, TN 45150",1991-10-17 22:43:07,f2:22:9d:ec:35:85,jacob47@hotmail.com,img/obama.jpg +Lisa Bryan,523-69-3298,90125,"PSC 9164, Box 1743 +APO AP 69858",2008-03-08 13:59:20,d1:d9:62:a6:89:e4,jamesjerry@lyons.net,img/obama.jpg +Stephanie Lucero,624-28-1960,77275,"PSC 7263, Box 9472 +APO AE 43209",1961-11-12 03:31:29,d9:12:e2:65:8a:d3,mhenson@hotmail.com,img/obama.jpg +David Rodriguez,193-25-5825,07461,"49729 Johnson Cove Suite 411 +Pamelahaven, AS 06387-4363",1936-10-20 18:28:00,60:13:83:24:44:02,dannysanders@yahoo.com,img/obama.jpg +Justin Suarez,395-38-6474,17705,"78390 Jackson Manors Suite 529 +Barnettside, ND 05409-8526",2001-02-05 05:18:20,d6:7f:8f:f7:69:8d,mark43@bennett.com,img/obama.jpg +Kimberly May,117-05-8633,44375,"3259 Jessica Manor Suite 062 +South Ricardoton, OK 67697-5230",1974-05-11 03:19:48,be:13:ce:26:c3:99,zrose@freeman.com,img/obama.jpg +Sandra Levine,480-87-0928,08446,"421 Malone Mills Apt. 056 +Gomezfort, FL 45143",2006-06-19 09:29:59,82:b3:e1:9b:23:50,kholder@yahoo.com,img/obama.jpg +Kathryn Taylor,150-46-2303,55151,"3843 Stout Spring Suite 379 +Jesseshire, DE 26963",1928-04-24 01:19:31,81:94:eb:80:02:cd,dustin09@bell.com,img/obama.jpg +Arthur Bennett,184-72-7700,37024,"5109 Jeffrey Route Suite 218 +Lake Kendraville, GA 92130-7128",1991-02-14 00:12:37,a0:e5:56:c7:cf:19,eevans@yahoo.com,img/obama.jpg +Fred Wheeler,619-14-6845,05902,"15222 Griffith Mission +Port Craig, LA 72516-1083",1941-11-18 00:31:31,51:f6:0e:8f:71:01,robinrandall@gmail.com,img/obama.jpg +Dana Miles DDS,192-91-3690,05538,"Unit 5319 Box 5446 +DPO AA 40544",1928-12-15 13:29:49,33:c3:44:03:23:21,ysanford@gmail.com,img/obama.jpg +Robert Hinton,760-78-3458,23851,"9468 Joseph Fork +North Connorborough, CA 33677-7916",1939-06-18 22:30:46,6d:71:46:92:7d:46,townsenddavid@yahoo.com,img/obama.jpg +Peter Wyatt,196-51-0159,70313,"7382 Smith Crossroad +Patelport, LA 33352",1996-08-24 11:30:03,da:bd:90:a5:4b:2e,stephenpena@owens.net,img/obama.jpg +Michael Thompson,317-22-0621,94461,"1744 Brittany Isle Suite 799 +North Derekfurt, LA 51346-2710",1941-03-02 20:38:39,73:f0:eb:6d:3c:5e,matthew67@miller-lewis.com,img/obama.jpg +James Moore,575-92-5153,97401,"64806 Bruce Roads +Estradaside, AS 25734",1952-08-05 04:33:16,c9:00:4a:77:34:03,arandolph@morales-gonzales.info,img/obama.jpg +Tamara Obrien,879-39-9952,13809,"5492 Bennett Track Apt. 876 +North Eric, DE 61436-8598",1959-05-18 06:50:12,53:b0:1c:30:49:7e,nathanielwyatt@bowers.net,img/obama.jpg +Lisa Rodriguez,498-55-0949,24080,"0201 Jones Oval +Rossport, AL 03631",2009-12-08 06:07:36,24:10:10:9a:1e:15,ytrujillo@hotmail.com,img/obama.jpg +Charles Whitehead,147-82-5718,70221,"177 Travis Summit Suite 730 +Joanchester, DE 59647",1946-12-31 06:59:15,0f:34:0f:32:d4:5b,brooke47@hotmail.com,img/obama.jpg +Courtney Jones,209-25-2584,91162,"65986 Jeffrey Isle +South David, DE 06123-7524",2017-02-03 06:43:05,49:e1:55:92:4a:c4,jennifercooper@bishop.com,img/obama.jpg +Christian Rodriguez,340-87-5309,15444,"867 Terri Prairie +East Ashleybury, MI 25151-2866",2013-06-19 22:18:36,1a:c7:a3:cc:71:80,davidfranklin@harris.net,img/obama.jpg +Victoria Johnston,886-54-7975,78303,"9455 Christina Rapids +East Ericaburgh, CT 19615-7796",1951-11-20 12:38:03,89:df:ed:33:38:f7,mrobles@gmail.com,img/obama.jpg +Raymond White,432-39-0946,72154,"6657 Gonzalez Road +South Michaelchester, CT 36885-6051",1987-03-06 14:35:32,f3:da:37:36:75:56,alvarezjustin@ross.org,img/obama.jpg +Bryan Parks,213-58-8386,09660,"0023 Nelson Tunnel Apt. 525 +East Margaretchester, CA 71685",1974-06-21 07:11:40,92:42:44:e7:c9:51,james43@yahoo.com,img/obama.jpg +Robin Hernandez,470-72-0526,71254,"884 Sara Roads +West Keithside, FM 21766-9137",1938-05-17 08:58:02,03:23:c8:22:62:9f,russellryan@hotmail.com,img/obama.jpg +Kristen Richard,171-72-6289,10918,"5283 Bradshaw Gateway Apt. 463 +East Elizabethville, VI 16454",2000-09-13 04:43:22,9b:0f:32:d7:6a:e4,simpsonkatherine@adams.com,img/obama.jpg +Danielle Kline,483-14-1268,90887,"4684 Brown Spur Apt. 101 +Reyesfort, HI 20017-3478",1984-05-07 08:39:35,c7:0a:cf:32:07:0a,huangdavid@crawford.com,img/obama.jpg +Sabrina Lopez,384-84-5598,00791,"00599 Deborah Point Apt. 649 +East Patrickfort, NJ 73025",1918-12-01 19:56:43,e0:4b:1b:a4:26:bd,johnsonlauren@cook.com,img/obama.jpg +Natalie Adams,585-89-7274,37635,"7236 Jackson Trail +Colemanfurt, WI 84040-4659",1960-03-01 16:20:05,ab:b1:39:0b:36:6a,wiserebecca@serrano.org,img/obama.jpg +Shaun Hodges,003-11-9203,51317,"899 Edgar Run Apt. 029 +Cameronmouth, WA 44356-9384",1978-03-08 07:40:28,9e:dc:9a:e1:b0:f7,scott51@miller.com,img/obama.jpg +Austin Davis,620-96-4845,92515,"PSC 4405, Box 9301 +APO AA 25704-6692",2014-04-09 12:02:54,5a:7c:73:88:96:a8,prodriguez@yahoo.com,img/obama.jpg +Christine Lopez,792-95-2128,25071,"51520 Finley Skyway Suite 197 +Lake Vanessafurt, RI 73930-3195",1937-10-20 17:22:56,5c:2d:ed:ee:57:52,jgonzalez@hudson.com,img/obama.jpg +Kathryn Henderson,372-47-8886,61367,"799 Alex Branch Suite 867 +North Derrickhaven, MO 81016",1929-06-25 19:46:15,39:9d:b1:fd:34:0c,nealsophia@gmail.com,img/obama.jpg +William Perkins,332-61-5972,27087,"4252 Brown Tunnel Suite 595 +Robinsonfort, MS 36540-0501",1993-11-16 18:09:05,66:be:00:39:39:a8,joyceterri@david.info,img/obama.jpg +Ian Cooper,565-90-8571,92615,"867 James Ferry Suite 101 +North Matthewfort, CT 70886",1935-01-10 09:07:19,67:a6:ca:33:a5:56,espinozaapril@rhodes.com,img/obama.jpg +Elizabeth Weiss,684-68-7190,05340,"63049 Megan Haven +Lake Vickiland, WI 42990",1967-09-13 07:27:11,9d:44:e5:78:bf:dd,jasmine17@thompson.com,img/obama.jpg +Brady Erickson,789-83-2448,32235,"11702 Smith Springs Apt. 472 +West Mackenzie, NY 40965-0261",1981-10-24 23:37:22,d4:a0:78:31:42:b3,jaredmorrison@larsen.com,img/obama.jpg +Ashley Anderson,252-02-2533,43193,"82812 Gomez Mills Apt. 013 +Port Johnstad, MI 65418",1975-12-21 11:24:47,dc:11:db:02:83:d5,denisesmith@williams.biz,img/obama.jpg +Melissa Scott,409-06-2736,34538,"8099 Nicholas Street Suite 973 +New Aaron, DC 73542-1469",1998-11-14 17:50:06,c4:e3:85:c1:21:d8,sharon09@allen.com,img/obama.jpg +Melissa Jordan,481-42-7458,21556,"Unit 0635 Box 2090 +DPO AA 08174-3934",1956-12-06 22:53:57,55:2f:8e:a1:31:40,bbecker@yahoo.com,img/obama.jpg +Jared Glenn,620-94-3139,92290,"202 Wolf Circle Suite 121 +New Jeffreyberg, NM 98833-4285",2000-11-04 17:27:29,9b:62:83:41:31:ff,lisa17@mejia-anderson.biz,img/obama.jpg +Lori Stewart,300-54-7677,15433,"147 Rodriguez Ranch Suite 674 +North Renee, LA 18708",1965-05-27 01:19:11,7f:bc:e7:50:e6:d5,uwolf@hotmail.com,img/obama.jpg +Kevin Bond,388-56-6663,16772,"812 Zuniga Mill Apt. 575 +West Tom, MN 04519",1983-06-23 06:44:02,bf:8e:8e:0e:38:32,uwood@hotmail.com,img/obama.jpg +Timothy Ross,878-22-3398,77744,"32612 Brandon Rest Suite 184 +Normanmouth, FM 35301",1959-04-17 22:13:18,c8:d2:89:03:e4:39,kyle93@gmail.com,img/obama.jpg +Erica Holden,550-53-4240,08750,"26534 Armstrong Branch +Lake Melanie, RI 78592-2329",1950-07-19 02:09:22,bb:45:69:5e:8b:3f,chavezedward@hotmail.com,img/obama.jpg +Jacob Coleman,520-76-7044,35846,"2114 Miller Vista Suite 276 +South Miguelburgh, VI 30484",1971-01-07 05:39:45,40:a9:b0:6a:66:bb,peterselizabeth@hotmail.com,img/obama.jpg +Timothy Hurley,520-62-9497,15057,"247 Atkins Summit Suite 062 +Port Thomas, VT 28242",1960-04-30 18:25:54,cc:4f:4c:ba:14:ec,iallen@morgan.com,img/obama.jpg +Cindy Bennett,089-40-3815,67366,"3392 Wiggins View +Lake Dominiqueview, IL 27167",1973-04-02 19:16:11,b1:0c:e9:4b:13:78,francisco97@gmail.com,img/obama.jpg +Adam Williams,758-95-1591,24336,"2239 Kyle Inlet +Danielland, AR 04904-1917",1977-12-24 01:52:18,a6:54:42:b3:59:e9,autumn07@walker.biz,img/obama.jpg +Kathryn Bruce,400-39-4327,39217,"003 Henry Mission +Lake Kiaramouth, CA 69676",1983-06-12 04:29:44,2b:c9:e7:a5:48:20,joshua49@hotmail.com,img/obama.jpg +Lori Long,828-99-8189,48889,"968 Kevin Plaza +Jessicafurt, MN 44411-9913",1963-03-21 06:24:26,d1:05:25:63:33:9c,lawrence27@gmail.com,img/obama.jpg +Victoria Hamilton,787-64-8731,83315,"667 Johnson Walk +Deborahview, AL 73287",1924-12-24 01:04:28,c7:71:00:2b:3e:aa,timothymora@richardson.com,img/obama.jpg +Daniel Stone,642-74-0037,94227,"9616 Jordan Union +Jacobsberg, CT 30528",1960-10-21 15:46:14,33:bf:99:e2:a5:f9,jackieroberts@gmail.com,img/obama.jpg +Gabriel Huynh,255-14-3412,54700,"6355 Johnson Crest Suite 732 +Michaelborough, NH 11551",1918-10-07 08:28:57,e1:58:ce:ea:fa:5f,dudleysharon@hotmail.com,img/obama.jpg +Christine Thompson,637-45-5114,67926,"1761 Alicia Groves Suite 830 +Lisaview, OH 67297",1920-08-30 12:00:31,e5:57:5f:49:bd:2c,davisjames@yahoo.com,img/obama.jpg +Kelly Allen,171-20-7434,59112,"39157 Espinoza Falls Apt. 331 +Lake Andre, WY 24661-6614",1978-08-14 01:03:01,b0:b6:8e:47:60:ed,kendra10@gonzalez.com,img/obama.jpg +Dr. Samuel Richards,040-30-5426,67220,"480 Gordon Forge Suite 886 +Sarahfort, NC 58912-2623",1986-09-01 16:19:20,c4:3c:07:97:d4:22,rushdeanna@gmail.com,img/obama.jpg +Amber Bowen,516-84-2929,06021,"9331 Gerald Flats +Hunterside, IL 54873-7501",1973-01-25 16:52:30,20:8e:e4:2e:da:26,douglasmurphy@hicks.biz,img/obama.jpg +Dr. Antonio Williams Jr.,502-30-5303,76930,"38286 Williams Views +New Cindyborough, HI 63817",1945-06-22 16:40:01,a0:44:ab:98:82:97,vancerussell@joseph-king.com,img/obama.jpg +Matthew Hughes,184-67-2298,16131,"USNS Bryant +FPO AP 37219-5126",1966-01-01 07:35:32,68:ea:bd:bd:25:81,alisonfuller@thomas-martinez.com,img/obama.jpg +Peter Jones,692-54-9259,42093,"039 Shawn Loaf +Amberton, DE 63468",1932-02-28 03:50:37,80:b9:c8:26:27:cf,fernando71@contreras-carpenter.net,img/obama.jpg +David Short,880-30-0681,07352,"74700 Alison Locks Apt. 611 +Kendrashire, OR 40622",1944-02-20 09:14:20,8b:df:a0:cc:65:df,hwalker@yahoo.com,img/obama.jpg +Caleb Decker,217-17-9285,55859,"USNS Wilson +FPO AE 43682",1937-08-04 21:35:52,cb:bb:c2:17:eb:3d,amywright@yahoo.com,img/obama.jpg +Matthew Sullivan,050-30-4793,62466,"52107 Heather Canyon +Amandafurt, AS 31831-6741",2013-12-16 11:09:31,9e:79:47:ee:22:e0,carlamorgan@baker.com,img/obama.jpg +Nicole Shepard,859-63-6844,30281,"10900 Rivers Mountains Suite 227 +Port Williamport, OK 88555",1940-09-09 19:05:24,9a:6c:83:29:ae:a0,keith56@gmail.com,img/obama.jpg +Edward Estrada,693-49-0387,14726,"2502 Cole Place Apt. 182 +North Christinachester, FM 07474-1261",1954-12-08 05:03:13,75:e4:10:90:a9:69,thomaswilson@yahoo.com,img/obama.jpg +Tonya Graham,801-02-8045,15756,"43709 Beard Mountain Suite 560 +Lake Jennifermouth, VT 54484-8715",1986-01-29 11:27:26,9e:f8:a0:dc:61:a1,brandon29@yates.com,img/obama.jpg +Miguel Williams,483-28-0715,78270,"76666 Stephens Mount Apt. 126 +Lake Veronicastad, DC 06626-5477",1973-01-07 15:55:12,34:3a:d6:a4:b4:1d,imiller@estrada.com,img/obama.jpg +Dawn Johnson,301-39-8259,02823,"690 Valenzuela Estate +Colonport, SC 11901",1976-12-01 23:31:36,81:26:0b:97:51:92,james10@yahoo.com,img/obama.jpg +Michael Davis,259-89-7894,84258,"81045 Sanders Island Suite 815 +Port Markport, IN 72131",1920-05-14 05:21:08,ed:ba:0b:00:2a:bf,gabrielfranklin@yahoo.com,img/obama.jpg +Jaime Richard,887-07-6268,41611,"592 Baldwin Ferry +Frostchester, NY 05725-4809",1946-07-31 02:38:50,c3:1e:4d:22:bf:27,mdavis@gmail.com,img/obama.jpg +Gloria Gomez,588-24-6173,66430,"540 Hays Trail Apt. 104 +Dakotaland, PA 07317",2008-04-30 02:40:54,c1:37:1d:dd:4d:0c,wsolomon@phillips.org,img/obama.jpg +Rachel Wilson,678-64-4883,56864,"77940 Frederick Track +Davidberg, NY 97260",1997-10-06 21:10:44,61:80:08:56:06:b7,nrobertson@yahoo.com,img/obama.jpg +Douglas Robinson,039-65-8757,64954,"7824 Sutton Vista Apt. 125 +South Richardton, NC 70152",2015-08-31 08:09:02,f8:3d:2f:ca:0e:fb,christophernorton@thompson-wilson.com,img/obama.jpg +Joshua Foster,390-11-4176,73592,"390 Michele Forest +Blackville, LA 87407-3864",1960-10-25 15:29:44,c8:8a:e7:91:15:f5,joy73@yahoo.com,img/obama.jpg +Scott Johnson,594-48-9520,26826,"316 Andrew Turnpike +North Clifford, NE 76877-6325",1944-04-26 03:55:13,93:0f:ed:2b:40:a3,xmontoya@scott.com,img/obama.jpg +Ashley Hudson,655-12-9785,03195,"USS Camacho +FPO AE 22263",1937-07-05 12:20:18,5d:e6:99:af:17:86,mackenziehensley@murphy.com,img/obama.jpg +Maria Ray,322-63-4741,54584,"4939 Mark Inlet +New Christopherhaven, PW 21707-4805",1923-03-06 22:29:26,93:72:60:25:12:d9,ubrowning@myers-butler.net,img/obama.jpg +Ryan Wood,209-44-2909,51231,"556 Sharon Street +Port Wendy, UT 15534-0207",1931-07-20 21:07:22,38:c9:64:15:ec:ba,chapmandeanna@montes-hopkins.com,img/obama.jpg +Tiffany Valenzuela,118-54-5710,44318,"970 Taylor Tunnel Apt. 848 +Griffithmouth, MP 02312-1594",1930-11-17 21:27:21,49:2a:c7:66:9a:c2,gravesmarie@vargas.com,img/obama.jpg +Alyssa Hobbs,394-82-3670,62522,"11799 Sharon Groves Suite 409 +North Matthew, AL 47172-1426",1988-03-13 18:21:45,ea:ec:3c:5c:2e:33,lisa44@gmail.com,img/obama.jpg +Melissa Castillo,077-33-6300,60356,"5072 Flores Canyon +Huertatown, NE 67752-0801",1954-09-07 04:57:38,a8:db:43:a6:b6:ce,ayalaryan@yahoo.com,img/obama.jpg +Randy Lopez,048-32-3190,28641,"51785 Lopez Light Suite 701 +East Jean, ND 80864-8877",2008-07-28 17:58:30,ff:8b:18:87:62:f8,douglas64@campbell-neal.com,img/obama.jpg +Douglas Burnett,186-46-5415,92012,"Unit 9881 Box 6840 +DPO AE 65111-0867",1962-06-08 22:46:12,6a:c5:1c:fa:ec:c9,wsmith@rodriguez.com,img/obama.jpg +Michael Key,180-59-0662,69762,"772 Victoria Ford Apt. 222 +Deleonstad, AS 91409-3022",1954-06-28 21:23:06,42:62:bc:d2:c7:3f,jrose@thompson.com,img/obama.jpg +Andrew Smith,579-34-3325,13888,"368 John Heights +South Abigail, CA 48618-4723",1979-07-03 13:50:07,37:16:c8:1b:20:93,paulkevin@hotmail.com,img/obama.jpg +Leah Hall,050-40-2767,13433,"Unit 8399 Box 9631 +DPO AE 44541",1938-03-31 10:55:37,fc:30:1f:f8:f8:26,dhopkins@lee.com,img/obama.jpg +Michael Mckay,064-04-6979,90529,"77672 Drew Well +South Petermouth, MO 05819",1939-12-09 11:26:26,46:7c:8c:fc:cd:2b,michaelwilliams@yahoo.com,img/obama.jpg +Brandi Anderson,853-12-8429,21057,"8474 Leslie Avenue Apt. 100 +Jeanview, FM 78033",1950-10-01 08:40:59,dd:20:c2:c9:a9:95,colemanamy@pineda.com,img/obama.jpg +Kristen Lee,068-99-0271,49458,"615 Maureen Divide +Wrightmouth, MN 62595-9212",1959-01-19 19:10:20,80:2f:2a:ca:0b:27,ihardin@blevins.biz,img/obama.jpg +Kenneth Thomas,824-98-3567,10771,"88310 Allen Via Suite 056 +North Briannachester, WV 82232-5428",1928-09-28 20:15:48,1c:58:21:5f:6f:bc,williamsscott@hotmail.com,img/obama.jpg +Julia Bailey,175-92-3289,02808,"3345 Jessica Rest +Schmidtland, CO 67520",1979-12-13 18:20:01,3a:0d:36:b7:09:8f,agarcia@coleman-villegas.org,img/obama.jpg +Tina Lawrence,389-72-4718,65056,"9986 Ian Locks +Port Amber, PR 08354",2010-07-30 00:05:32,7c:64:b1:2a:02:8e,angela01@hotmail.com,img/obama.jpg +Brandon Mclaughlin,826-31-1435,13794,"24612 Moore Overpass Suite 765 +Michaelville, WY 08678",1926-09-02 17:29:30,22:f6:ff:9c:b5:b4,powersmarc@hotmail.com,img/obama.jpg +Roger Oneill,176-59-2627,64508,"0086 Martinez Drive +North Danielleport, LA 63409-8813",1918-01-31 21:02:36,71:60:c9:66:da:85,timothygonzalez@hotmail.com,img/obama.jpg +Christopher Brooks,440-55-6080,03683,"37711 Matthew Path Apt. 866 +North Loriborough, CT 27310",1949-05-24 16:16:56,5c:2f:7b:91:6f:15,steven05@yahoo.com,img/obama.jpg +Christine Hall,506-08-9104,83175,"179 Jessica Isle Suite 325 +Monicaberg, MD 23109",1973-11-25 20:02:54,b6:05:89:db:15:53,cory45@hotmail.com,img/obama.jpg +Kristina Sellers,831-54-3741,49219,"25075 Kyle Light Apt. 153 +South Wyatt, GA 89059",1920-09-07 12:03:42,7e:c7:2f:87:93:64,erinkidd@brown.biz,img/obama.jpg +Jennifer Beltran,750-97-4650,97494,"40585 Liu Mill Apt. 647 +Lake Nathanport, NY 16285-3901",1921-09-29 09:53:42,bc:91:4e:93:41:fa,billy52@flowers.com,img/obama.jpg +Kristina Hodges,610-64-1297,36526,"5584 Steele Estates +Deborahfort, DC 06278",1957-02-16 02:22:02,a6:99:19:3b:da:9e,petersonsuzanne@hotmail.com,img/obama.jpg +Caitlyn Brown,321-97-9500,69780,"67181 Flores Courts +Port Lisafurt, MN 37911",1986-11-17 11:31:05,0e:f2:90:a3:55:00,shannonyoung@bell.biz,img/obama.jpg +Steven Hunt,819-47-2825,12527,"919 Johnny Rest Suite 046 +Melissaberg, NH 86730",1976-09-14 10:17:04,65:ad:f8:cd:cc:f0,kimberly23@underwood.net,img/obama.jpg +Thomas Martin,042-56-2852,92784,"879 Matthew Road Suite 761 +Port Brendaport, AR 53542",1957-03-13 01:07:01,ac:a3:43:8c:7b:6c,krystal98@roach.net,img/obama.jpg +Jose Kidd,120-41-4082,19261,"239 Jones Loop +East Paul, WA 66564",1994-03-01 00:14:05,16:ae:da:32:b0:54,cfaulkner@hotmail.com,img/obama.jpg +Michael Carlson,172-54-5121,45223,"66537 Lawrence Spurs Apt. 536 +North Jeffshire, AZ 33722-9897",2007-10-01 13:04:17,b8:b2:ec:5c:b9:09,steve07@gmail.com,img/obama.jpg +Jeremy Davis,748-82-3685,22301,"591 Rodriguez Mount Apt. 904 +South Thomas, TN 79441",1979-02-27 06:33:24,7a:83:86:be:d3:15,matthew58@gmail.com,img/obama.jpg +Todd Burns,665-24-7424,21220,"PSC 6954, Box 0279 +APO AP 55617-9971",1933-11-27 08:50:23,a8:20:6d:c8:3e:fa,mwoods@gmail.com,img/obama.jpg +Sonya Marshall,747-19-2001,18590,"85949 Bishop Pike Apt. 106 +Jacobstad, NJ 53656-3325",2000-03-24 19:45:59,2c:ba:b3:f8:4d:15,mmay@yahoo.com,img/obama.jpg +William Wagner,199-58-3262,18938,"0169 Rodriguez Forge +Davidport, CT 02871-3341",1988-05-17 01:44:43,1a:9a:4e:75:e7:0b,earl70@gmail.com,img/obama.jpg +Robert Vasquez,325-20-3928,12793,"251 James Trace +South Melissafort, TN 82265-0888",1994-09-07 21:26:30,c7:7e:1b:f1:cc:5e,shawn43@gmail.com,img/obama.jpg +Kyle Vasquez,512-53-6960,35813,"35309 Bell Islands +Ruizton, ID 81190",2010-05-27 11:47:04,99:d0:37:ab:52:b8,ellismichelle@yahoo.com,img/obama.jpg +Linda Johnson,057-48-5894,58165,"979 Leon Fords +South Johnport, IA 01429-5745",1988-06-10 03:33:25,60:e4:a5:dd:88:b2,julie00@gibson.net,img/obama.jpg +Jonathan Schmidt,812-48-6392,46960,"Unit 0578 Box 3792 +DPO AA 93831",1939-08-04 04:20:27,4f:91:76:fe:55:b9,jessica15@mills.net,img/obama.jpg +Kathy Castro,865-01-2131,21700,"27044 Williams Brooks +Johnville, HI 53470",1938-12-19 06:49:39,76:ad:a4:a0:25:82,thomashunter@phillips.com,img/obama.jpg +Tony Flores,066-66-9397,06763,"Unit 7166 Box 9820 +DPO AP 51195",1921-08-02 18:27:54,91:ea:a3:de:e2:66,jaclynrogers@hodges-vasquez.com,img/obama.jpg +Jacqueline Anderson,192-21-4133,68568,"0102 Kristina Hollow +Christinashire, NY 08205-0057",1964-08-13 07:19:09,78:26:0c:8d:f5:44,mreynolds@hotmail.com,img/obama.jpg +Carly Brown,523-14-2100,50832,"3924 Heidi Summit +Ryanchester, SD 26981-4951",1975-10-08 15:47:01,4e:cf:95:e0:db:0c,xshaw@moore-hill.info,img/obama.jpg +Betty Johnson,581-89-9797,48911,"3703 Rachel Lake Suite 417 +Laraside, AS 16535",1932-07-14 13:28:54,24:16:6f:a2:ad:64,diamond67@gmail.com,img/obama.jpg +Mr. Noah Brown,285-84-7533,75512,"6523 Garner Crossroad Apt. 443 +Woodardhaven, WV 71436-7407",1983-06-28 18:30:33,3e:b6:25:b1:e0:16,morrisdaniel@yahoo.com,img/obama.jpg +David Fuller,173-66-5721,85159,"5086 Timothy Inlet +Lake Nicholas, PW 78443",1936-06-19 15:21:51,11:d8:3e:94:f5:cc,crystal37@hotmail.com,img/obama.jpg +Sarah Fox,428-80-9545,91113,"636 Scott Flats +Owentown, AZ 88162-6406",1989-06-27 15:42:38,d3:c0:f5:ff:6d:64,marygreen@jackson-watts.com,img/obama.jpg +Kenneth Nelson,493-91-5506,92640,"USNV Gonzalez +FPO AE 63467",1977-11-11 12:37:59,93:12:dd:4e:b1:34,brandon18@hotmail.com,img/obama.jpg +Michael Mueller,529-41-7750,16371,"3136 Ashley Court +Katelynview, MA 33076",1991-08-16 19:45:42,7f:f4:9b:a8:2d:6b,fanderson@thompson.com,img/obama.jpg +Katie Martin,684-80-5562,09065,"3401 Thompson Lodge +Lake John, PW 73121-9371",2015-02-01 02:53:09,35:0f:57:4e:f4:1d,ngarcia@gmail.com,img/obama.jpg +Debra Holland,682-47-8849,65563,"Unit 0569 Box 1831 +DPO AP 85165-6102",1922-12-14 01:34:25,0c:43:dd:fb:b4:ab,marcus37@hotmail.com,img/obama.jpg +Jeffery Allen Jr.,760-21-8325,75126,"5270 Johnson Ports +Natashachester, MD 12309-3870",1994-05-24 01:43:54,aa:fc:76:ae:73:f6,christianmason@ray-rich.com,img/obama.jpg +Yesenia Cooper,518-93-3021,23476,"19646 Gilbert Islands +Port Adam, PA 86980",2001-05-06 17:47:47,57:92:36:c9:fa:72,jose43@gmail.com,img/obama.jpg +Brendan Russo,650-27-7094,22761,"8401 Ellis Groves Suite 672 +South Kevin, MS 48175-7472",1953-07-14 06:24:24,5c:e3:37:f6:bc:5f,candicerodriguez@gmail.com,img/obama.jpg +Steven Roberts,312-59-5104,58992,"364 Sandra Falls +East Becky, KY 73321-3991",1941-10-23 08:33:08,8a:9a:4d:1d:57:16,pearsonandrew@hotmail.com,img/obama.jpg +Alyssa Wells,071-89-9199,82760,"06808 Patton Points Suite 071 +Port Alexandertown, MH 64656-0565",1946-05-31 12:00:20,14:99:a8:98:ff:4b,ngallagher@smith.net,img/obama.jpg +April Vazquez,415-94-4879,34904,"481 Nancy Points Suite 147 +East Rebecca, MA 86614-0924",1918-10-31 04:09:28,74:2b:96:4a:01:a1,sarah43@martin-fleming.biz,img/obama.jpg +Rachel Anderson,716-33-7529,50722,"8137 Brandon Gardens +North Angelabury, WI 31371-0766",1995-07-17 01:54:36,ca:96:30:df:13:79,richardsrobert@hotmail.com,img/obama.jpg +Christopher Rodriguez,414-64-3968,57160,"7137 Smith Plaza Suite 979 +Mcintoshstad, AL 25477-1186",1952-07-24 17:37:40,ce:a8:8e:41:0c:c1,gerald67@gmail.com,img/obama.jpg +Richard Diaz,383-03-9069,34151,"8543 Oneill Ville Suite 402 +Schultzview, WI 99048",1959-04-25 04:05:16,e6:79:23:f4:ab:07,joseph67@richardson.com,img/obama.jpg +Andrew Harrington,509-04-4348,98670,"422 Megan Plains +North Martinhaven, CT 88693-3989",2017-03-27 05:39:56,4a:f2:14:7b:93:07,romerovictoria@hotmail.com,img/obama.jpg +Judy Silva,080-83-9824,55963,"USNS Arias +FPO AP 39040-1582",1974-08-27 03:26:32,2c:7d:ae:85:7b:b0,harrisonyvonne@yahoo.com,img/obama.jpg +Eugene Huber,252-67-9944,83207,"55584 Jamie Brook +New Charles, PR 37832-9202",2001-06-12 20:44:00,08:56:a8:1c:cb:98,victorlozano@yahoo.com,img/obama.jpg +Adam Ramos,474-32-7406,17671,"0513 Carrillo Fords Suite 992 +South Kerryshire, LA 95562",1931-03-22 07:09:46,92:e1:f4:1c:2a:9f,alicia80@hotmail.com,img/obama.jpg +David Snyder,737-96-2903,72059,"PSC 3198, Box 9810 +APO AE 10406",1963-12-27 20:24:37,ff:59:1f:c7:e2:26,christine30@fox.com,img/obama.jpg +Chad Orr,816-93-2932,85073,"23102 Howard Mews Suite 563 +Markland, MN 32409",2008-06-25 19:29:57,e7:4e:43:46:da:3e,vchurch@yahoo.com,img/obama.jpg +Jennifer Martinez,300-82-3325,52685,"4179 Christopher Alley Apt. 471 +Austinhaven, KS 43129",1989-02-10 06:34:45,ab:fa:e3:23:73:ce,fsanchez@hernandez.com,img/obama.jpg +Mr. Richard Terrell MD,008-53-8722,44253,"886 Kimberly Cliffs Apt. 415 +New Connie, CA 08876",1970-04-06 15:13:17,91:5e:b8:25:f9:86,ryannguyen@hotmail.com,img/obama.jpg +Keith Bradley,587-14-3853,47514,"4140 Cook Cliff Suite 707 +East Rebecca, MI 08606-3758",1956-05-31 22:56:56,ad:e0:4f:fe:af:23,wayne89@gmail.com,img/obama.jpg +Heather Smith,632-33-3840,70789,"USCGC Gates +FPO AA 32476-4421",1935-10-16 23:27:29,c0:ae:53:51:5d:c7,mistylee@yahoo.com,img/obama.jpg +Jose Brown,361-49-0401,41393,"3488 Blake Green +Mariaville, MP 08575-2434",1970-09-18 12:10:43,86:bc:de:ae:64:f7,james42@harris.org,img/obama.jpg +Robert Guzman,286-95-5697,94923,"714 Estrada Prairie +West Tara, DC 39869-3692",2002-03-21 10:43:29,86:b7:f7:9b:74:13,hamiltonjon@hotmail.com,img/obama.jpg +Christopher Higgins,176-21-7529,98403,"Unit 8915 Box 1421 +DPO AP 31300",1948-01-17 12:11:33,d0:d8:62:53:9d:3e,william02@yahoo.com,img/obama.jpg +Richard Smith,862-73-6176,67777,"096 Jonathan Isle +Port Jeffrey, MS 55303-0406",1926-09-28 23:04:26,39:f9:46:ba:a6:47,alexanderbrown@reed.info,img/obama.jpg +Kristin Jackson,346-60-7976,27609,"67750 John Orchard +Jacobborough, NJ 93919",1988-01-22 22:13:34,c8:ea:6f:6c:53:6d,christopherboyle@horton.com,img/obama.jpg +Aaron Gomez,805-03-3842,48321,"Unit 1868 Box 8365 +DPO AE 52519-2603",1943-04-14 21:59:19,e4:78:36:ec:be:9e,daniel09@taylor-white.com,img/obama.jpg +James Taylor,865-15-3910,20256,"998 Sara Port +New Kevinchester, VT 30230",1919-08-17 06:56:12,d6:83:2f:4a:28:28,brandongood@hotmail.com,img/obama.jpg +Roger Braun,766-62-4793,91975,"03381 Kevin Points Suite 785 +New Angela, WV 21945",1986-02-16 06:07:44,48:c9:9e:e9:a2:a3,john17@hotmail.com,img/obama.jpg +Colin Riley,179-18-4078,47924,"76846 Austin Mall +Gonzalezfort, HI 39283-4346",1977-01-04 22:45:40,7a:e7:08:03:98:dd,moodyalison@yahoo.com,img/obama.jpg +Roberta Richardson,435-39-5838,46414,"3662 Walker Stravenue Suite 233 +Harrisfort, UT 22636",1950-09-09 02:08:08,2d:7b:3f:8b:bb:f3,thompsonheather@mendoza.com,img/obama.jpg +Christina Green,833-33-1583,11776,"208 Lozano Shores +Lake Russell, ND 01939-4470",1972-08-08 06:22:51,93:4b:27:bc:f9:cc,revans@hotmail.com,img/obama.jpg +James Rose,566-09-4950,65417,"7745 Bell Street Apt. 832 +West Meganshire, AS 16354-4168",1942-05-23 11:59:30,0c:39:32:34:a0:c9,rebecca87@serrano-guerra.biz,img/obama.jpg +James Moore,046-96-9177,89708,"24703 Dominic Centers Suite 891 +New Michael, NJ 48657",2005-07-23 03:04:54,fc:72:65:c0:b7:43,claudiajohnson@calderon.com,img/obama.jpg +Shannon Owen,039-85-6086,28236,"26835 Gloria Views +East Shawnland, TN 47367",2003-08-15 09:09:35,e6:3c:05:da:43:52,krista64@yahoo.com,img/obama.jpg +Valerie Sullivan,491-37-3837,04985,"6398 Hurley Harbor Apt. 831 +North Kimberly, OH 51072-0843",2010-06-18 22:06:20,25:9d:2d:47:30:0a,xnielsen@johnson-davis.org,img/obama.jpg +Kathy Dorsey,672-60-3701,56980,"49258 Deborah Land +Christophermouth, PR 17264",1996-05-27 00:47:30,fb:13:1c:3b:c7:2f,cunninghamshelby@peterson-estes.org,img/obama.jpg +Jacob Bailey,771-77-7451,73592,"312 Edwin Burg +Michaelstad, DE 24240",1928-07-17 21:51:05,e8:36:bb:87:c0:fd,terri90@petersen.org,img/obama.jpg +Donald Faulkner,483-53-5976,74815,"18992 Kelsey Union Apt. 067 +Nathanielborough, MH 75580",1958-06-09 02:58:21,b5:2c:90:20:10:be,john89@edwards-garcia.org,img/obama.jpg +Kathryn Henry,837-68-4700,65751,"26613 Lopez Walks Apt. 794 +Georgebury, RI 36816",1941-06-23 11:01:40,ea:cc:84:7e:d0:17,ulopez@hotmail.com,img/obama.jpg +Harold Martinez,728-73-2165,55276,"8668 Hansen Burg Apt. 555 +Port David, PR 44711",1993-10-30 20:43:58,7f:e4:5c:79:80:4a,jimmy80@gray-nguyen.com,img/obama.jpg +Jason Cox,460-27-6222,43289,"723 Davis Inlet Apt. 363 +Port Melanie, OH 48447-7528",1926-11-30 20:16:17,be:56:c3:6d:98:91,morganashley@yahoo.com,img/obama.jpg +Abigail Arroyo,259-15-3848,20471,"PSC 5374, Box 5371 +APO AP 70688-8449",2001-11-24 19:28:14,f3:d9:a5:34:e0:e0,jessica98@hotmail.com,img/obama.jpg +David Carlson,141-27-4280,92333,"264 Corey Club +Gregoryshire, NJ 82097",1940-11-11 01:26:30,52:1f:6e:47:0a:86,kwebb@fitzgerald.com,img/obama.jpg +Adam Oliver,353-96-6124,35544,"977 Cameron Parkways +Castillofort, MA 94256-2874",1986-06-19 01:16:42,94:03:8d:29:1c:68,jessica60@spencer-wells.com,img/obama.jpg +Patricia Bonilla,647-01-7053,36625,"5406 Hernandez Courts Apt. 198 +Schmidtside, NY 97869",1985-09-29 19:20:47,cb:4a:99:64:dd:8d,jodiburke@gmail.com,img/obama.jpg +Robert Gonzalez,044-18-1893,99528,"17781 Joshua Plains Apt. 062 +Laurenview, NY 50157-8992",1977-10-05 03:15:37,1e:64:f3:0b:69:25,turnerbrian@cook.com,img/obama.jpg +Keith Thomas,728-01-6079,37452,"USS James +FPO AP 63030",1995-12-15 20:12:50,b5:53:45:ce:ea:08,michaeldean@peterson.com,img/obama.jpg +Brian Warner,200-94-6290,12580,"97562 Thomas Mountains +Port Karenhaven, SD 96011-0449",1992-04-24 03:18:09,4d:d6:d0:2e:f5:7e,ramosraymond@scott-duncan.info,img/obama.jpg +Destiny Smith,232-40-9805,03829,"3787 Knight Curve Apt. 306 +Melissaview, FM 42016-7833",2008-03-29 23:57:50,e6:1b:a1:3b:9a:f7,gracequinn@hotmail.com,img/obama.jpg +Jaclyn Obrien,757-96-5674,37928,"6347 Joshua Underpass +Kimfurt, NC 54768-6147",1927-08-20 17:44:18,c5:32:77:ea:de:b9,heather55@perez.com,img/obama.jpg +Alyssa Lyons DDS,575-12-1965,12446,"37004 Carpenter Rapid +Lake Linda, TN 99645-8532",1996-05-02 23:51:34,8b:3c:ae:30:dc:76,edwardstheresa@hamilton-liu.info,img/obama.jpg +James Benton,860-98-6193,11734,"PSC 9041, Box 6353 +APO AP 35777-5749",2011-10-27 10:04:04,ff:36:b7:6a:35:55,cheryl33@dudley-lewis.com,img/obama.jpg +Penny Hernandez,544-90-0245,12611,"01943 Gabriel Ford +West Kennethport, MN 66619-4639",1957-12-15 01:10:19,ce:37:9b:57:dc:bb,brittney24@gmail.com,img/obama.jpg +Brian Scott,380-30-0750,39263,"781 Smith Highway Suite 394 +Lake Emilychester, UT 29260-3184",1983-02-27 14:34:16,93:d0:ad:74:3f:e9,lmueller@gmail.com,img/obama.jpg +Fernando Thomas,758-74-2562,59056,"5075 Julie Stravenue Suite 321 +Tammyside, MH 18782",2005-04-28 07:58:43,e1:9e:65:03:93:69,amanda76@hall.com,img/obama.jpg +Daniel Edwards,678-98-5363,22161,"0762 Regina Drive +Stephensborough, ME 16953-0524",1952-09-08 08:14:11,71:67:0c:70:73:bc,sarahfritz@yahoo.com,img/obama.jpg +Pamela Johnson,197-62-0410,81142,"Unit 6668 Box 8694 +DPO AA 08795-6586",1958-11-24 17:35:38,fd:29:d4:f4:d3:73,allenerin@day.com,img/obama.jpg +Greg Cole,683-96-3209,80781,"928 Jerry Point Apt. 615 +Wendyport, MA 63816-0250",1922-06-07 08:30:55,71:d4:b8:f6:05:c3,jonathan69@gmail.com,img/obama.jpg +Patricia Wu,012-60-7369,87696,"6223 Pamela Ports +Cruzport, UT 92275-3057",1925-02-14 15:47:59,d7:0c:72:01:25:f0,smithwilliam@gmail.com,img/obama.jpg +Kristina Lee,199-70-1584,23636,"USNS Williams +FPO AA 19369-4771",1967-04-25 08:21:24,1b:5c:57:c0:77:81,anthony09@yahoo.com,img/obama.jpg +Megan Mathis,651-72-6704,03790,"63693 Brianna Lock +Port Tonyachester, IN 49449",1953-11-14 14:19:15,df:09:43:01:9d:20,taylor52@valentine-cabrera.net,img/obama.jpg +Stephanie Johnson,356-38-8993,02001,"28848 Cook Fall +Lake Ronald, TX 90229",1992-04-01 06:02:43,08:e0:8b:3a:75:33,fmartin@hotmail.com,img/obama.jpg +Michael Perez,153-70-0696,87953,"459 Sharon Lake Apt. 164 +Zacharybury, WV 02674",1919-03-20 16:15:05,b0:95:2f:d1:c0:c8,mwhite@yahoo.com,img/obama.jpg +Jeffrey Clark,166-45-9271,14947,"106 James Causeway +Port Paige, UT 48371-5029",2001-03-10 12:36:47,a7:34:fc:4c:8e:8b,tonya89@yahoo.com,img/obama.jpg +Catherine Hardin,047-65-6614,13060,"076 Jasmine Hill Suite 132 +East Michael, MD 62780-2166",1919-11-27 14:48:28,9c:66:6c:ce:a2:96,ugreen@huerta.com,img/obama.jpg +Kristin Peterson,814-56-1732,28834,"261 Angela Parks +Andersonton, ME 18119",2007-02-14 22:41:38,de:e5:13:97:9d:71,qhall@lewis.com,img/obama.jpg +Monica Pierce,689-97-7142,12149,"Unit 3175 Box 3074 +DPO AE 88514",2005-02-04 08:18:54,ea:86:b2:a6:c2:dc,dicksonthomas@yahoo.com,img/obama.jpg +Howard Stewart,391-30-8483,28483,"467 Michelle Overpass +Websterberg, MO 40982",1957-07-03 02:11:02,8b:36:e4:b4:ef:84,connieford@yahoo.com,img/obama.jpg +Bonnie Holt,582-74-4766,54546,"7574 Hamilton Crest Apt. 274 +Terryport, LA 30006-3570",2010-08-16 15:09:11,67:ef:9d:7b:77:d1,rodriguezdavid@hotmail.com,img/obama.jpg +Matthew Benton,689-82-7227,71374,"28724 Tracy Circle +Garciahaven, TN 46507-5929",1972-06-20 06:53:21,ad:98:38:27:49:b7,orodriguez@hotmail.com,img/obama.jpg +Caleb Shaw,003-33-4379,85691,"56012 Laurie Stream Apt. 907 +Lake Daniel, VI 75255-3950",1985-08-14 11:24:13,43:a7:79:1c:fd:d9,amyjames@walton.com,img/obama.jpg +Judy Jenkins,363-13-1280,85743,"4394 Smith Drives +New Derrick, IL 03961-4096",1981-03-15 04:42:40,c3:29:d2:a3:e3:7e,ronaldgonzalez@holland.com,img/obama.jpg +Jason Cooper,328-35-3821,71978,"52009 Harris Freeway +Carriehaven, MT 59083",1974-08-27 05:02:52,dc:e9:7a:15:de:68,samantha91@yahoo.com,img/obama.jpg +Christine Brown,375-18-6656,74638,"57865 Douglas Harbors Apt. 946 +Burnstown, ID 23933",1998-12-29 14:12:52,9b:48:0f:ca:db:b5,isullivan@gilbert.com,img/obama.jpg +Lisa Larson,622-70-4463,40659,"67686 Laura Trail Apt. 682 +Aguilarburgh, NY 73118",1961-07-26 09:21:22,01:a8:87:98:fa:38,valerie46@allen.com,img/obama.jpg +Sean Freeman,736-09-8062,54086,"4155 Thompson Corners Suite 975 +Dylanburgh, NE 99862-5311",1984-09-03 01:30:56,e0:02:a5:bc:d9:90,lmoses@lane.com,img/obama.jpg +Natasha Singleton,291-09-0492,35007,"446 Cohen Station +Mariafurt, SC 90783-0178",2003-11-23 01:28:29,cc:e6:89:72:fa:06,alfred12@yahoo.com,img/obama.jpg +Mark Navarro,216-43-6634,52108,"USS Nunez +FPO AP 74826",1954-01-30 03:40:29,c1:0b:20:9b:8f:70,zesparza@gmail.com,img/obama.jpg +Kenneth Davis,111-25-4196,24466,"0238 Munoz Dam Apt. 535 +Lake Nicole, NH 38479",1987-05-22 05:43:37,b2:c5:38:74:1c:d3,walkerrobert@clayton.com,img/obama.jpg +Ms. Tammy Chapman,859-17-2085,51975,"92218 Lucas Stream +Janicemouth, OH 88453",1990-09-17 03:48:11,4c:31:21:fa:c2:d5,johnsonanthony@hotmail.com,img/obama.jpg +Thomas Wright,868-25-6917,22358,"8703 Lindsey Spur +North Sandrahaven, MA 59452-1524",1950-05-05 22:51:46,bb:c7:76:d2:ef:84,lewisjames@woodard.com,img/obama.jpg +Nicole Aguilar,177-18-5771,20971,"0287 Mitchell Parkways +East April, WA 96562-4091",1977-04-14 22:22:35,c4:5b:2e:4e:f4:33,aaronbenton@edwards-curry.info,img/obama.jpg +Caitlin Mcgee,454-16-3322,99700,"15652 Mike Passage Apt. 100 +Andreafurt, MA 69313",1990-11-17 13:52:17,74:65:48:57:51:3a,uheath@davis-olson.com,img/obama.jpg +Erika Andrews,318-60-2533,21219,"176 Ramsey Field +East Raymond, TX 90800",2012-08-16 07:39:32,ff:c5:1a:0f:32:b7,kimberlyromero@scott-matthews.com,img/obama.jpg +Evelyn Dunn,867-84-8357,65548,"12361 Long Crossroad +Amandafort, NE 28897",2005-12-21 14:02:33,b6:3b:23:90:13:7f,ayalakristin@gmail.com,img/obama.jpg +Johnny Carey,864-92-1849,27456,"5137 Miller Parkway Apt. 662 +East Destinymouth, VT 07339-2008",2008-10-01 02:10:13,a4:dd:bd:c5:28:d9,walshjennifer@hotmail.com,img/obama.jpg +Mrs. Catherine Stone,735-90-0111,55241,"55608 Kyle River +Lewistown, VT 02200-1119",2000-08-14 16:05:51,13:b1:91:cd:c9:df,christian77@gmail.com,img/obama.jpg +Valerie Young,304-99-3795,56198,"949 Noah Drives +South Jennifer, NM 58356-6811",1962-03-13 10:26:51,9c:91:50:a7:43:c0,briannawarner@wilson-greene.net,img/obama.jpg +William Barnes,873-63-0879,72760,"318 Thomas Coves +Debrafort, WA 41962",1934-04-05 07:23:28,48:27:0e:a3:42:0d,morgandiana@baker.com,img/obama.jpg +Adam Garcia,296-04-2482,40137,"4208 Johnson Hills +Jimenezstad, ID 86799-4416",1945-04-06 04:42:14,b9:c4:d1:65:fd:b2,olsonangela@fisher.org,img/obama.jpg +April Brown,068-05-3205,82888,"3107 Chandler Canyon Suite 502 +Gregoryton, CO 26328",1992-01-26 01:48:48,ff:d7:26:9e:86:5b,christopherkaufman@rivera.com,img/obama.jpg +Eric Ortiz,660-23-8029,63006,"959 Parker Station Suite 775 +Thomasborough, TX 84363",1981-05-15 17:25:35,f2:18:de:52:98:fe,khernandez@gmail.com,img/obama.jpg +Jacqueline Rivera,874-97-5348,10430,"09307 Sharon Greens Apt. 401 +Meganmouth, SD 03843-6236",2013-02-11 11:37:06,6e:7b:38:23:4f:fb,gjones@reeves.biz,img/obama.jpg +Matthew Hopkins,482-38-6038,33167,"34619 Cain Junctions Apt. 894 +West Desiree, OR 60020-7059",1949-06-30 23:35:04,cb:f7:48:91:26:5b,jacobheath@yahoo.com,img/obama.jpg +Mrs. Nicole Roberts,557-52-4595,07302,"1128 Joseph Throughway +Millerstad, NE 83915-3310",1954-11-22 21:17:48,ef:00:36:32:67:a6,dalehaynes@frazier.com,img/obama.jpg +Michael Morton,880-29-8901,23299,"829 Church Road +West Michael, UT 95837-3966",2008-12-15 08:39:48,f3:7c:9e:57:75:f2,paul47@yahoo.com,img/obama.jpg +Deborah Santos,753-03-0847,45877,"Unit 9275 Box 4838 +DPO AE 26308-7826",2010-07-16 16:21:22,36:8b:2e:07:bc:a1,courtneyhall@yahoo.com,img/obama.jpg +Mario Carter,385-53-8473,21346,"144 Kaitlin Heights Apt. 373 +Port Stephanieberg, VT 95028-5497",1980-01-14 14:00:50,2e:98:17:d0:f2:ca,christina67@yahoo.com,img/obama.jpg +Brittany Wolfe,361-19-7099,00671,"5278 Ana Creek +West Joel, AL 05389-8190",1942-08-25 07:06:45,5a:08:c6:4b:58:98,franklincody@yahoo.com,img/obama.jpg +Stacy Brown,621-79-7981,44908,"USCGC May +FPO AA 88956-9634",1953-04-26 20:52:40,58:74:0f:19:c1:ea,zhoward@gmail.com,img/obama.jpg +Joshua Thompson,510-42-0332,60994,"374 Barrera View +Reynoldschester, MI 74415",1941-03-04 14:59:46,e6:fe:89:1f:a3:02,moyerjonathan@hotmail.com,img/obama.jpg +James Walker,694-43-9994,15247,"87283 Katherine Streets +Seanhaven, PW 19330-1294",1958-02-19 01:17:14,67:9b:49:2b:fa:75,pmitchell@hotmail.com,img/obama.jpg +Daniel Taylor,279-35-2101,50978,"07826 Michael Park +Brownview, SC 07801-4761",1960-12-25 22:37:26,5b:65:16:65:a7:1e,elopez@cannon.com,img/obama.jpg +Diana Gonzalez,026-37-7605,89156,"1499 Garrett Light +Lake Austinport, OR 53732",1930-01-09 23:38:23,56:04:a7:53:9f:d1,timothy62@gmail.com,img/obama.jpg +William Smith,510-40-9988,63207,"437 Bishop Flats +New Ryan, MD 87779",1965-08-11 14:03:55,df:76:cf:08:0d:4b,johntaylor@pacheco.com,img/obama.jpg +Miss Rhonda Anderson,625-15-7294,86840,"91246 Sherry Inlet +Lake Adambury, MT 88417",1921-03-30 23:25:03,c6:83:df:b2:59:77,emartinez@yahoo.com,img/obama.jpg +Jim Wheeler,309-01-6164,85145,"32135 Smith Orchard +Hammondport, CT 49456-8666",1982-04-27 05:30:38,c2:52:2e:a6:29:ec,burtonchristopher@hotmail.com,img/obama.jpg +Gail Spence,698-53-1569,88335,"USNV Rodriguez +FPO AA 99116-1401",1938-10-26 19:11:55,e0:eb:6b:65:4b:8c,gward@hotmail.com,img/obama.jpg +Richard Thompson,540-06-3592,81410,"65111 Sanders Court +Kaylachester, NC 21597-8535",2010-12-31 07:34:04,7b:f2:bf:e6:bb:2d,vpatterson@gmail.com,img/obama.jpg +William Walters,566-73-2286,26688,"03220 Gregory Road Suite 660 +Port Fernandomouth, SC 74866",2016-09-09 22:07:58,9b:11:49:a0:6a:b7,kimberly35@gmail.com,img/obama.jpg +Dustin Hopkins,766-45-0553,68755,"570 Candice Ranch Apt. 067 +North Jacob, SC 60110-7219",1990-12-03 02:43:29,4e:ec:a6:bc:2d:4b,tamara38@hahn.biz,img/obama.jpg +Kathleen Casey,091-91-9560,25275,"USCGC Castro +FPO AE 50843-9499",1974-01-07 10:31:15,b8:3d:11:bc:85:a3,heather06@gray.biz,img/obama.jpg +Stephen Jackson,773-08-7987,24731,"660 Rivera View Apt. 683 +Millershire, VT 48632",1974-10-04 12:46:17,20:f5:75:22:63:1f,annette41@taylor.biz,img/obama.jpg +Hayden Harris,475-01-7684,76735,"0469 Cynthia Causeway +Laurafurt, FL 30641-2931",1940-05-14 18:54:29,65:1f:06:1a:f4:be,schmidtfrances@yahoo.com,img/obama.jpg +Tiffany Michael,306-70-3158,85307,"80341 Estrada Ferry +North Johnhaven, MH 36280-3639",1995-04-28 18:40:39,35:3b:69:bf:83:82,nicholas40@hotmail.com,img/obama.jpg +Carol Shaw,090-96-2220,25891,"27467 Gail Heights +Harmonland, AS 44469",1960-01-15 22:11:11,ef:27:f0:09:8e:eb,raymondduarte@hotmail.com,img/obama.jpg +Jeremy Peterson,627-02-8769,86223,"2039 Jane Cove Apt. 617 +East Ashleyshire, NJ 98943",1983-12-22 04:22:36,58:e4:ad:5e:03:aa,ajimenez@reynolds-russell.com,img/obama.jpg +Juan Perez,529-57-9581,43493,"55619 Richard Garden +Thomasmouth, CA 79397",1924-02-17 00:28:12,67:4f:83:f2:6b:57,lunamario@howe-hammond.com,img/obama.jpg +Jeremy Collins,706-20-4063,48314,"7107 Caldwell Hill +Camposbury, NH 54787",2004-09-09 02:56:39,c8:91:91:da:70:28,dean14@gmail.com,img/obama.jpg +Amy Ibarra,314-97-6813,35303,"PSC 1485, Box 1119 +APO AE 75037-8516",1926-10-29 05:48:36,01:67:29:9d:f6:54,frenchcolin@moore-torres.com,img/obama.jpg +Catherine Ellis,171-60-2854,26386,"3051 Wright Junction Suite 711 +West Austintown, NY 74496",1996-09-02 10:51:03,90:73:68:20:c1:9d,kjohnson@hotmail.com,img/obama.jpg +Nicholas Levine,111-80-7050,86376,"85345 Collins Alley Apt. 155 +New Jasminfurt, VI 29848",1978-03-15 23:04:10,d1:22:49:b5:5d:e5,mmartin@gmail.com,img/obama.jpg +Ryan Johnson,047-83-2856,31049,"20891 Allen Freeway Apt. 081 +Port Christineshire, OR 72291-4218",1991-03-03 01:08:39,8c:f6:95:67:48:84,smorris@lopez.org,img/obama.jpg +Charles Wilkerson,667-20-7332,99086,"8671 Watkins Ranch Apt. 415 +Hancockchester, RI 56444-6267",2014-02-15 09:23:08,a2:f9:13:4e:26:d1,millervalerie@yahoo.com,img/obama.jpg +Jennifer Riddle,172-17-6724,13587,"107 Christina Radial Suite 119 +Nguyenville, MT 66929",1990-09-02 06:00:27,b3:d2:b2:c5:5c:99,qsmith@gmail.com,img/obama.jpg +Karina Anderson,078-10-9769,50291,"6484 Martinez Park Apt. 530 +Josemouth, CA 33224-8651",1989-10-30 01:20:14,7d:8c:9e:3b:ee:0d,smithshawn@gmail.com,img/obama.jpg +Susan Simpson,546-39-7568,38169,"PSC 4251, Box 4528 +APO AP 26367-4666",2015-06-15 13:44:58,c7:c9:95:87:1e:f6,matthewoconnell@soto.org,img/obama.jpg +Paul Miller,869-29-5414,17760,"1401 Williams Avenue Suite 416 +Meyerview, NM 69084-3176",1993-02-20 17:12:27,2b:4c:f1:82:1b:2a,brian36@yahoo.com,img/obama.jpg +Erik Brown,142-48-5416,87449,"594 Cheyenne Union +Port Lucas, LA 85849",1984-12-24 14:09:41,25:ae:3a:f1:7b:3c,jose80@yahoo.com,img/obama.jpg +David Cooley,257-52-0939,03197,"2318 Erin Ridge Suite 412 +South Adam, MT 73622",1961-10-06 19:11:07,bd:4c:5c:b8:a0:d8,debrajones@hotmail.com,img/obama.jpg +Brian Gonzales,460-09-2249,81578,"502 Ingram Rapids Suite 294 +Williamborough, DE 25785",1923-10-13 03:16:18,e1:99:f0:12:82:20,vodonnell@hotmail.com,img/obama.jpg +Ian Randolph,048-70-7010,66367,"Unit 3729 Box 9648 +DPO AA 05750-4843",2005-03-30 06:05:02,b9:a6:84:90:df:66,laura71@hotmail.com,img/obama.jpg +Ronnie Patel,878-11-9685,38562,"013 Turner Rapids +Lake Patrickport, OH 53881",2000-02-18 17:04:32,ee:4a:5b:ce:ba:1f,youngpam@gmail.com,img/obama.jpg +Dorothy Murphy,124-46-4310,16924,"0987 Baxter Heights +New Mary, IL 28387-5834",1935-03-10 04:54:39,cd:cf:8a:9b:4e:2c,wellsjoseph@hotmail.com,img/obama.jpg +Dana Clarke,715-69-9344,80629,"USCGC Foster +FPO AP 63651",2016-10-14 07:17:38,b5:7e:8b:35:a9:7b,blackburnandrew@montgomery-howell.com,img/obama.jpg +David Ford,066-06-1576,97783,"256 Wells Land Suite 848 +Danielleland, MD 74169",1997-11-21 13:11:43,73:34:60:bf:9a:fd,clarkmichael@hotmail.com,img/obama.jpg +Deborah Shepard,174-26-1318,53423,"190 Perry Centers +Brandonchester, DC 36049-2490",2002-12-02 06:03:27,ca:38:a1:92:b4:6e,martinezpamela@hotmail.com,img/obama.jpg +Jessica Patel,583-35-0330,81977,"976 Kathleen Cape +Michaelbury, NE 14697-3655",1946-09-26 01:44:15,36:06:80:89:da:ed,evanskyle@hotmail.com,img/obama.jpg +Brian Keller,253-72-5895,87672,"51291 Paul Underpass +South Mary, CO 77097",1985-06-01 17:18:53,10:e8:7a:20:74:83,brittanywheeler@graham.org,img/obama.jpg +Derek Douglas,639-56-9327,69674,"110 Hill Avenue Suite 670 +New Robertberg, IL 91662-1872",2013-04-02 19:00:26,49:b0:dd:d9:71:6a,goodwinemma@mclaughlin-chavez.biz,img/obama.jpg +Michael Medina,274-66-3149,10654,"97812 Charles Port Apt. 994 +Mendozashire, RI 78461-7474",1949-11-14 15:46:26,75:65:7f:53:11:ec,riveralori@tyler-flores.info,img/obama.jpg +Kim Robles,436-17-7368,10903,"51748 Ryan Ville +East Jessicachester, GA 90076-8657",1923-02-04 15:11:15,1b:a4:82:fa:0c:ee,coreyreynolds@hotmail.com,img/obama.jpg +Ronald Kelly,193-99-8927,87328,"92191 Moore Trail Apt. 974 +Lake Antonio, GA 05359",1964-12-04 21:32:51,8b:8d:b0:61:73:09,gsmith@hotmail.com,img/obama.jpg +Jennifer Todd,139-09-1967,10361,"0257 Johnson Route Suite 751 +Lake Adrian, IA 72472-3592",1953-03-02 10:36:54,8f:29:ce:7e:ca:b2,jeffrey25@shields.info,img/obama.jpg +Isaac Smith,755-71-4888,34990,"Unit 9176 Box 0097 +DPO AA 99819",1934-02-02 01:40:27,fb:f6:18:fa:ef:f4,william49@malone.info,img/obama.jpg +Chelsea Lewis,793-12-5694,13346,"76332 Lane Harbor +Juanmouth, CA 72782",1928-03-24 12:22:42,33:55:fa:50:3f:b1,jwang@gmail.com,img/obama.jpg +Zachary Schneider,105-54-6234,92962,"14357 Rodriguez Street Apt. 921 +New Lisaberg, NM 61152",1962-09-29 19:00:51,16:59:cd:0f:53:ac,rwatkins@duncan.org,img/obama.jpg +Kevin Arnold,133-04-9250,63342,"78662 Todd Bridge Suite 461 +West Robert, MN 79159-7628",1954-06-03 10:14:11,c1:bf:68:82:89:ee,edwin39@mcneil.com,img/obama.jpg +Katelyn Thompson,028-06-5496,18613,"5015 Greg Drive +South Lisaside, VI 25232",1959-03-25 20:27:55,5f:0a:b1:15:6e:a5,wtorres@gmail.com,img/obama.jpg +Jesus Hale,417-98-8491,54804,"49589 Julie Harbor +East Kristenchester, RI 92885",1956-01-16 01:25:23,d3:c9:d9:18:1a:85,wrightjohn@frey-wallace.com,img/obama.jpg +Amy Potter,670-09-3138,31134,"447 Scott Green Suite 248 +Lake Kristen, AR 27721",1926-02-10 17:27:16,96:e8:19:73:f2:b5,houstonscott@mullen.com,img/obama.jpg +Charles Malone,789-04-3354,22116,"93594 Brown Mountains +New Julia, KY 78408-5386",1938-06-23 13:12:18,30:1a:63:87:ab:8b,umatthews@daniels-gonzalez.com,img/obama.jpg +Brett Gilbert,683-92-1069,29535,"52362 Nathan Road +West Benjamin, OH 21247-4857",1983-01-10 15:22:52,bd:35:ea:c7:a5:c8,briannafoley@wilson-miller.com,img/obama.jpg +Albert Johnson DDS,161-88-3269,88314,"50145 Schmidt Summit +Robinsonchester, ID 24218",1978-06-27 03:27:55,33:4e:75:0f:16:9f,amandacabrera@hill-hall.com,img/obama.jpg +Charles Valdez,780-17-3285,40814,"PSC 1221, Box 8901 +APO AE 99332-6883",1973-01-21 15:53:31,2b:51:28:cf:11:92,bethanypena@deleon.com,img/obama.jpg +Jeffrey Gamble,327-42-0785,73166,"87447 Barbara Branch +New Heatherbury, KS 75992",1926-10-20 07:50:45,d3:42:71:12:02:59,leonderek@yahoo.com,img/obama.jpg +Alexander Hatfield,440-37-2747,30201,"22355 Acosta Way +Lake Monica, MD 00584",1927-12-03 17:16:36,54:53:5f:92:7a:0a,robert01@yahoo.com,img/obama.jpg +Tina Page,234-83-7090,61885,"75649 Wright Streets +Dunlapfort, VI 99255",1919-12-12 02:17:06,e4:aa:50:ab:ff:e5,james09@robertson.biz,img/obama.jpg +Tyler Anderson,880-41-0737,30536,"3936 Jones Throughway Suite 487 +New Douglas, NM 09328-8873",1935-09-06 19:16:16,35:15:48:a2:3f:6b,ymitchell@hotmail.com,img/obama.jpg +Linda Levy,491-12-2065,80967,"2668 Hernandez Union +Owensstad, KY 10422-9821",1962-01-11 05:23:37,92:c5:cf:78:10:db,itorres@cunningham-murray.com,img/obama.jpg +Jacqueline Huang,219-65-1230,99257,"814 Nguyen Lock +Maryberg, AZ 07619-7737",1959-12-11 23:56:09,1d:f1:a2:a0:fe:49,lauren54@santos.com,img/obama.jpg +Timothy Diaz,639-07-9729,81866,"54832 Sanders Radial +Lake Jamesland, NC 75953",1981-08-15 00:24:22,62:ab:43:fb:d6:9f,davischarles@wagner-cline.org,img/obama.jpg +Austin Vargas,633-39-5894,86732,"36656 Kelley Motorway +New Christophertown, NH 94170-1735",1961-09-17 00:43:23,b8:7d:70:7b:c3:67,danielfarley@yahoo.com,img/obama.jpg +Morgan Cross,127-46-9348,21037,"147 Ronald Mount +Warrenborough, OR 11859-2086",1988-01-12 18:16:40,c2:55:81:ad:92:06,epowell@davis.net,img/obama.jpg +Whitney Levine,160-33-3360,78431,"085 Don Island +Stephaniemouth, MA 92199-1697",1986-04-13 08:25:35,4a:f1:da:14:30:51,rogersdebra@manning.com,img/obama.jpg +Andrea Kirby,336-48-6978,95771,"Unit 1938 Box 6100 +DPO AE 70777-4189",1992-04-18 11:57:25,60:16:1b:5c:2c:1f,petersondavid@hotmail.com,img/obama.jpg +Susan Wells,098-52-9429,99004,"70191 John Island Apt. 733 +South Sharonburgh, MP 61870",1935-07-07 06:32:01,ee:72:7e:2e:93:6f,marie67@gmail.com,img/obama.jpg +Patrick Torres,380-78-7829,94065,"5782 Smith Loop Suite 639 +Kimberlyview, DE 49765-8967",2010-06-13 09:56:56,bf:77:ce:6f:fb:a1,bosborne@moyer-luna.info,img/obama.jpg +Hunter Young,745-92-9366,32171,"76751 Peter Centers Apt. 367 +Lake Greg, NH 01637",2005-12-19 11:39:53,9d:a9:3b:33:04:df,julie71@dawson.biz,img/obama.jpg +Jessica Melton,879-19-6916,58562,"88354 Alicia Parks +Michelleside, AS 34745",1989-06-24 10:19:25,1f:1b:59:36:74:ae,paulsmith@gmail.com,img/obama.jpg +Sharon Durham,049-88-7302,89404,"06305 Arnold Mall Apt. 503 +West Kevin, CT 88679-1184",1929-12-26 09:47:52,48:06:bf:90:38:84,robertadams@rodriguez.info,img/obama.jpg +Michael Ramirez,582-90-2812,10076,"4250 Sherry Ramp +Lake Michelebury, MO 50480-5420",1924-09-15 15:22:21,29:8e:d8:c5:7c:d5,thomas35@hotmail.com,img/obama.jpg +Mrs. Sarah Tyler,320-85-8726,23501,"93548 Harris Cape +North Deniseville, MI 43729-6619",1976-02-23 20:30:06,fb:d5:69:c5:a0:f7,michael59@gmail.com,img/obama.jpg +Michelle Hall,159-66-8316,33963,"07780 Pratt Station Suite 215 +Melindachester, MT 75863",1946-03-25 12:47:52,e1:a9:77:97:c8:2c,michaelmcgrath@ellison.net,img/obama.jpg +Jeffrey Pitts,755-92-7564,46400,"2740 Katie Vista +Diazside, VI 54319",2007-09-27 05:13:29,5a:06:e6:a1:fb:71,ricardo55@russo-rogers.com,img/obama.jpg +Jeff Paul,274-33-1663,98584,"5541 Tyler Extension Suite 717 +Davidstad, MA 43189-5483",1926-09-26 02:26:57,0e:dd:ca:99:d0:6e,thomasthornton@gmail.com,img/obama.jpg +Brittany Oneill,349-05-1789,44543,"507 Louis Stravenue +Jefferyfort, IN 23725",1919-07-13 12:47:27,d7:93:f8:9e:c0:88,jeffrey82@gmail.com,img/obama.jpg +Susan Hunt,131-67-5401,86639,"6745 Morris Garden +East Douglaston, NE 92668-7988",1947-11-14 11:51:46,f4:c8:65:98:c8:ed,gabriela61@hotmail.com,img/obama.jpg +Chelsea Vance,496-32-3187,47490,"00399 Mary Pines Suite 928 +Stephanieport, NC 82528-9108",2007-01-19 22:58:13,48:d3:19:a1:06:cd,brianjohnson@rodriguez-dixon.com,img/obama.jpg +Michael Rodriguez,675-39-6177,02723,"41240 James Spurs Suite 438 +East Tommy, OR 68304",1954-08-28 22:11:57,ef:4f:79:bf:40:d7,whall@gmail.com,img/obama.jpg +Morgan Higgins,180-68-7857,61266,"5418 Thomas View +Melvinport, ID 43268",1960-06-18 21:04:52,3f:90:85:01:00:59,yshaw@hotmail.com,img/obama.jpg +Cassandra Mills,437-02-0023,10448,"USNV Murphy +FPO AA 19807-6348",2003-07-25 01:50:21,48:f7:5e:84:c0:21,stephanie44@gmail.com,img/obama.jpg +Crystal Cochran,453-29-9056,07500,"4038 Joseph Ramp +Michaeltown, DE 87991",1937-05-13 09:47:23,8a:6d:31:fe:31:b1,amyle@hotmail.com,img/obama.jpg +Kevin Pennington,290-12-1270,85548,"95554 Michele Circle +Hillberg, WI 18936",1947-08-12 06:40:13,6f:f4:39:a3:60:da,tracybennett@hotmail.com,img/obama.jpg +Nicole Perez,613-34-6752,37562,"216 Williams Land Suite 307 +Garrettview, MI 34524-5510",2004-11-28 06:51:57,9a:59:39:ec:a8:63,allen74@gmail.com,img/obama.jpg +Richard Michael,813-24-4699,39950,"65171 Alvin Passage Suite 179 +Gregorystad, VT 90894-5055",2006-07-14 14:08:34,c7:7b:ac:4f:0a:91,kellermichael@yahoo.com,img/obama.jpg +James Gonzalez,387-76-4098,75482,"291 Nash Terrace Suite 705 +Lake Gina, DC 93895",2011-10-31 10:25:09,4f:1e:90:a9:93:df,boydjoseph@bates.org,img/obama.jpg +Mark Dennis,406-42-6150,98300,"3258 Hunter Lodge Suite 901 +Tracyview, VI 45631-2888",1943-03-24 12:08:09,7e:e0:55:9d:eb:f8,danielle88@hotmail.com,img/obama.jpg +Sandra Beasley,514-88-9946,49931,"10851 Kim Corner +Michaelmouth, NY 47525",1925-11-17 06:02:44,38:bc:6f:b2:e0:ce,larryford@hotmail.com,img/obama.jpg +James Elliott,458-19-0459,71964,"990 Emma Wall +Wallberg, ID 67070-2226",1936-10-26 13:47:32,42:4b:b1:e5:3f:ab,webbjane@gmail.com,img/obama.jpg +John Harris,037-17-0360,91185,"3047 Matthews Unions Apt. 262 +Port Oliviaburgh, DE 06617",1976-05-10 11:01:31,23:64:9c:80:02:c7,qblack@yahoo.com,img/obama.jpg +Peter Roberts,730-07-2421,15217,"01080 Rhonda Knolls +Bankstown, LA 45779-5165",1924-06-30 05:29:59,56:49:16:d3:75:6a,erica36@yahoo.com,img/obama.jpg +Heather Ramsey,412-26-8049,75337,"261 Harding Key +Port Michael, ME 13908-2491",1958-05-29 22:28:14,82:76:5e:85:86:d3,ojordan@yahoo.com,img/obama.jpg +Pamela Lewis,496-32-1405,59627,"789 Fritz Bypass Apt. 600 +East Eric, MP 57502-0833",1976-03-18 21:52:54,95:14:a4:bb:a8:a3,scowan@yahoo.com,img/obama.jpg +Benjamin Day,076-64-4873,84191,"791 Martin Village +New Patrickville, WV 37226",1983-12-20 18:28:47,8b:71:14:d9:6a:7f,pennyharvey@thompson-smith.info,img/obama.jpg +Wendy Thompson,856-50-2416,93160,"933 Brett Common Apt. 090 +Tammyberg, KY 12406",1960-08-06 04:05:00,01:6f:2e:3f:bb:76,ambercordova@gmail.com,img/obama.jpg +Mackenzie Garcia,436-88-3317,46310,"02501 Brady Stravenue +East Jorgeshire, IA 67857-4271",1944-10-26 07:02:03,39:ff:b1:92:79:a3,garciaroger@yahoo.com,img/obama.jpg +Michael Rodriguez,534-51-3140,46762,"52481 Alison Summit +North Josephhaven, ME 62432-6763",1970-08-08 00:16:44,4d:1d:ca:83:fd:2b,ylee@hensley-sharp.info,img/obama.jpg +Justin Garcia,393-52-1215,36818,"7702 Cassandra Pine Apt. 817 +East Sarah, GA 53990",1980-03-20 22:19:39,a9:58:64:c8:20:0a,danajacobs@howell-kelly.info,img/obama.jpg +Matthew Stanley,501-47-1023,70819,"29022 Andrew Village Apt. 095 +New Laura, FM 65390-4485",1997-10-11 00:56:31,0a:6f:ed:f0:14:ca,christine91@crosby-larson.biz,img/obama.jpg +William Walker,463-37-1699,65746,"1320 Carter Village Apt. 028 +Johnsonton, MO 68172-1271",1956-11-03 16:33:50,4a:b4:db:05:b2:9a,sford@henson.com,img/obama.jpg +Denise Golden,558-03-2271,22239,"USNV Crosby +FPO AP 54395",1997-08-13 18:40:02,d5:d7:cd:7a:51:0c,eric43@gmail.com,img/obama.jpg +Carrie Porter,297-36-1064,27015,"12851 Duncan View +Brianberg, AL 80460-2172",1931-06-29 17:10:16,a7:1f:d6:07:20:17,brendadavis@yahoo.com,img/obama.jpg +Cindy Serrano,300-61-4499,48435,"9886 Emma Plaza +Port Amandastad, MN 12250",2005-07-01 16:14:34,d4:58:3c:ff:ad:e8,lindathompson@kaufman.info,img/obama.jpg +Julie Ellis,384-98-2590,18998,"1046 Nancy Viaduct +New Sarahtown, UT 97175",1960-01-28 12:09:52,c9:a7:ca:7d:bc:91,sullivanamanda@gmail.com,img/obama.jpg +Steven Cunningham,821-44-1034,39123,"2254 Manuel Passage +Smithshire, AR 13313-6498",1983-06-11 05:30:09,1d:be:43:7d:04:9b,dukelauren@hotmail.com,img/obama.jpg +George Campbell MD,868-20-1634,83733,"2148 Jones Divide Suite 021 +South Cindy, HI 26540",2000-05-06 08:35:38,15:4b:16:23:39:a7,jason87@hotmail.com,img/obama.jpg +Tony Chavez,860-06-9415,46128,"05427 Carla Brook Suite 057 +Goodwinborough, NM 54379",1969-11-05 16:51:47,fe:d1:b8:db:1c:7e,kcole@jones.com,img/obama.jpg +Amber Mcintyre,574-77-8310,86713,"Unit 5832 Box 1963 +DPO AP 93878-9427",1983-09-30 16:08:42,8d:77:10:cd:83:14,jonathan66@gmail.com,img/obama.jpg +Laura Young,019-56-2366,93028,"2069 Rowe Spur Suite 587 +Krausefort, WV 63965-3839",2001-05-21 23:16:16,28:d1:b8:46:6d:16,marissaadams@fitzgerald.biz,img/obama.jpg +Karina Bowman,170-81-0728,66846,"8836 Marilyn Greens Suite 828 +South Derrick, OK 82098-7865",2003-08-19 07:33:14,ac:c7:4b:ef:bd:29,dylandawson@hotmail.com,img/obama.jpg +Sherri Mcguire,700-88-5791,92918,"537 Leon Manors +Stephenport, OK 80735-3351",1996-09-02 18:57:41,fd:f9:f0:21:d9:25,andreadiaz@smith-wright.net,img/obama.jpg +Walter Griffith,826-54-4063,80240,"0686 Anthony Skyway Apt. 039 +North Heather, OK 30748",2008-11-23 08:19:01,10:fa:42:13:24:a2,wongtimothy@gmail.com,img/obama.jpg +Leslie Martin,696-76-6931,30758,"805 Gabriel Stream +Wilsonberg, CO 42981-1364",1923-04-06 21:35:50,3a:d3:b8:44:30:e5,pclark@hotmail.com,img/obama.jpg +Brian Smith,197-67-5480,85832,"34562 Jennifer Circles +West Kimberlyshire, PR 36884-6251",1988-05-19 22:35:17,f8:b4:d7:65:82:9a,ljohnson@hotmail.com,img/obama.jpg +Heather Collins,013-83-2951,20303,"4639 Gill Glens +Grahamview, MI 68040",1948-03-09 17:18:36,c4:25:35:56:9d:a3,juliebarnes@boyer.com,img/obama.jpg +Deborah Ramos,274-77-1380,70546,"671 Williams Squares +Smithshire, AL 91628-0877",1952-02-05 12:30:47,25:6a:7d:08:f6:4d,mmorris@yahoo.com,img/obama.jpg +Johnny Cross,510-80-5251,95140,"8327 Rowe Forks Apt. 364 +Kimberlyfurt, AR 71750-7352",1924-04-24 10:11:41,cd:28:08:c8:c5:c0,tamarawalker@marquez-bowen.biz,img/obama.jpg +Evan Kelly,082-57-7429,40573,"59915 Bowen Squares +Nguyenfort, MI 79553-9147",1955-07-20 06:02:19,c1:93:3c:b0:b1:6b,hunter40@hotmail.com,img/obama.jpg +Anne Hernandez,031-82-2001,94868,"5921 Lauren Rapids Suite 183 +Melissaton, VA 59054-8356",1949-11-06 07:14:23,55:57:b2:14:53:d0,lschroeder@gmail.com,img/obama.jpg +John Hunt,719-77-8308,42389,"083 Davis Creek +Lake Dustinton, DC 15032",2005-06-17 08:36:32,39:25:6f:5a:81:a8,johnsonrussell@yahoo.com,img/obama.jpg +Christopher Keller,045-01-3310,96757,"206 Lewis Squares Apt. 221 +Ericfurt, VT 22090",1963-04-09 14:33:31,e2:fe:36:fc:e1:15,ruizvictoria@hotmail.com,img/obama.jpg +Andrea Mejia,045-27-0982,17575,"33807 Mcbride Estate +Fishermouth, SC 16444-8637",1969-08-18 21:31:28,16:cd:7d:16:0c:51,atkinsonkaren@anthony-mccarty.com,img/obama.jpg +Travis Patton,213-08-8191,32176,"386 Bennett Views Suite 806 +Christophermouth, PW 93393",1944-12-12 21:10:26,87:17:38:27:31:21,patricia44@ward.com,img/obama.jpg +Aimee Armstrong,300-75-7537,32846,"3021 Christopher Drives +South Stephaniefort, SC 14069-0816",1921-11-14 07:12:21,60:56:79:4b:a1:7a,castrodaniel@hotmail.com,img/obama.jpg +Brian Hutchinson,562-35-0317,01598,"5064 Lisa Ford +Williamsonchester, DE 17868-0117",2002-06-10 21:47:48,d9:52:7f:af:3f:2c,kevinrodriguez@ross.com,img/obama.jpg +Tara Fisher,017-67-2201,18388,"25616 Sara Overpass Apt. 574 +Juanstad, UT 47297-9257",1935-02-01 12:40:24,52:e6:be:b9:f9:0b,xdavidson@yahoo.com,img/obama.jpg +Jesse Caldwell,167-88-6858,50367,"79214 Katelyn Junctions Apt. 768 +Tonyaview, NY 82732",1954-12-30 20:23:59,40:30:1a:d9:85:68,reneehumphrey@snyder-chavez.info,img/obama.jpg +Brian Mitchell,382-17-6564,27482,"6227 Adams Shoal Apt. 500 +North Michael, NM 93249-7641",1984-07-24 01:53:58,ff:1e:7a:a3:fb:68,michaelhernandez@hotmail.com,img/obama.jpg +Alyssa Mckinney,136-65-7631,45365,"536 Camacho Knolls Apt. 982 +South Alec, NH 81171",1932-06-29 21:23:40,5e:b8:d9:4b:05:30,pdixon@hotmail.com,img/obama.jpg +Morgan Watts,190-72-8073,61786,"12331 Susan Hill +South Victor, MH 62087-7550",1983-11-02 23:28:17,44:71:b8:c4:84:5e,zachary70@mcintosh.com,img/obama.jpg +Tonya Bernard,096-37-0853,85834,"181 Deborah Squares Suite 763 +Amandaland, KS 00296-9412",1944-12-09 16:11:54,9d:1b:a2:43:9e:ff,pcarter@ramos.com,img/obama.jpg +Ashley Wood,856-03-8256,45542,"562 Johnson Via Suite 132 +Lake Sarahport, GA 54055-6852",1947-03-22 14:29:38,76:ea:d6:71:0e:46,moralessamantha@hotmail.com,img/obama.jpg +Susan Doyle,732-20-8349,79761,"3437 Jesse Stream Apt. 047 +Port Matthewmouth, OR 13740",1932-11-17 20:37:47,09:04:4c:77:ce:6c,antonio22@hotmail.com,img/obama.jpg +Melanie Schmitt,875-66-8838,79346,"653 Steven Vista +West Susan, TN 28928",1980-05-17 17:12:43,28:ef:89:13:66:be,sawyergary@kirby.com,img/obama.jpg +Wendy Franklin,896-43-9619,33585,"5077 Edwin Mills +Lake Cliffordville, MN 57655-1748",1960-06-17 07:56:58,6c:04:16:65:89:6f,julia70@gmail.com,img/obama.jpg +John Torres,651-74-9363,20302,"6592 Carolyn Rue +Patriciabury, NE 41058-6185",1925-11-28 12:01:04,0a:ab:fe:4c:b3:d3,harringtonangela@decker.com,img/obama.jpg +Patricia Hunt,641-27-6961,60339,"6976 Gary Mills Apt. 723 +Valerietown, NC 15225",1986-02-02 09:22:46,04:54:85:5c:90:b7,twood@hotmail.com,img/obama.jpg +Charles Thompson,204-59-0320,64618,"PSC 9683, Box 0147 +APO AP 16768-0887",1956-12-12 15:30:58,82:6d:79:1f:cc:a4,watkinssergio@hotmail.com,img/obama.jpg +Mark Fowler,119-96-1270,76010,"847 Ayers Row +New Kevinland, LA 56698",1972-06-24 15:41:54,3c:fb:94:11:5e:40,william12@torres.com,img/obama.jpg +Megan Warren,234-69-0617,08375,"USNS Chaney +FPO AP 88585-2199",2007-09-16 03:51:57,7f:58:e6:a6:f2:91,ashley94@hotmail.com,img/obama.jpg +April Wheeler,387-13-8444,49212,"8548 Nichole Stream Suite 643 +Port Amy, AR 26818-7144",1978-09-25 16:14:25,75:c9:c6:2c:21:8a,dwalsh@yahoo.com,img/obama.jpg +Stephen Hutchinson,120-08-3087,47828,"210 Sosa Islands Apt. 447 +Darleneside, IA 18328-4182",1997-08-19 07:59:26,85:2d:91:f7:38:53,bairdrodney@hotmail.com,img/obama.jpg +Melinda Short,497-42-2623,83268,"2361 Jones Glens +Jenniferbury, SC 15432-6900",1933-05-22 15:21:43,73:a3:8b:ed:17:14,sherylibarra@gmail.com,img/obama.jpg +Kimberly Jacobs,675-63-2933,13561,"78233 Gonzalez Route Suite 994 +Barbertown, IL 39102-4871",1943-03-31 14:50:33,c6:54:3b:5d:af:1b,eric19@mccarthy-paul.com,img/obama.jpg +Wesley Taylor,030-32-2888,86898,"5476 John Green Suite 151 +North Lindsaymouth, WV 16473",1954-11-17 12:54:15,b3:a8:93:76:8f:53,jacobevans@campbell.biz,img/obama.jpg +Tyler Massey,453-77-7660,99708,"152 Pham Drive Apt. 293 +Maysshire, MO 06883-1111",1978-12-23 08:39:15,c5:28:5d:79:07:6d,nathanielhayes@hotmail.com,img/obama.jpg +Catherine Baker,275-07-7215,58368,"83560 Timothy Mountains Suite 215 +Priscillachester, FL 60310",1933-04-12 00:28:29,40:47:c8:45:dc:98,petercolon@gmail.com,img/obama.jpg +James Finley,762-21-6664,60038,"634 Lorraine Ranch +Connerhaven, AK 44053-5601",1981-12-05 13:20:53,c9:d1:86:8e:c5:76,bettylynch@hotmail.com,img/obama.jpg +Michael Bray,825-92-4025,89326,"5917 Matthew Via +Port Alejandro, IA 88438-6788",2010-09-29 08:42:50,14:2f:ef:66:cc:22,cooknicole@sullivan.info,img/obama.jpg +Samuel Gregory,362-17-9270,94223,"5174 Rodriguez Squares Apt. 042 +Phillipsmouth, KS 04073",1939-05-25 08:22:06,4b:23:d4:57:64:49,henrymartinez@raymond-davis.com,img/obama.jpg +Eric Brooks,377-88-4349,76782,"42514 Rodney Prairie +Lake Paul, IA 69627-2946",1939-06-16 02:50:00,41:fe:38:6b:4f:16,maria70@gmail.com,img/obama.jpg +Angela Vazquez,638-71-6988,69263,"169 Ellison Ramp +Port William, TX 53868-6317",1921-02-22 15:56:18,f2:40:f5:62:8a:e6,maybenjamin@baxter.com,img/obama.jpg +Regina Guerrero,848-67-2843,70610,"437 Gloria Course Apt. 269 +New Rebeccaview, ME 64302-6983",1924-08-04 00:09:07,9f:87:e1:0b:21:52,perezsandra@hotmail.com,img/obama.jpg +Marvin Davis,394-06-4848,97391,"0957 Oneal Trace +Grayfurt, KS 05711-6702",2010-08-18 07:56:23,24:10:ec:41:6b:32,ryanmiller@gmail.com,img/obama.jpg +Antonio Chase,037-26-3968,92854,"95325 Diana Path +West Frank, MT 94887-9963",2009-09-19 18:15:27,83:1d:c2:0a:ab:cb,hopkinssharon@morales-harris.info,img/obama.jpg +Mark Drake,531-59-7636,64347,"154 Joel Meadow +New Jessicafurt, PR 65317-0295",1927-10-22 10:28:31,be:4f:2d:21:79:7e,allengibson@yahoo.com,img/obama.jpg +Mary Mcgee,259-83-7445,07036,"751 Brandy Extensions Apt. 744 +Johnsonville, VT 15380",1931-05-05 23:36:10,11:d6:5b:c7:c7:9b,cuevasjeffrey@gmail.com,img/obama.jpg +Jennifer Mcguire,785-86-2641,86200,"42343 Cook Extensions +New Sarahland, SC 75251-2635",1974-01-29 07:50:16,5c:30:9d:17:f9:d0,sierra03@hanson.biz,img/obama.jpg +Terri Harrell,530-71-8932,88567,"1304 Baker Loaf Suite 993 +Hessfort, IL 62217-7106",2000-05-18 00:24:37,16:44:16:30:9f:1c,wrightadam@smith.biz,img/obama.jpg +Joy Meadows,390-57-2147,87297,"PSC 0458, Box 9110 +APO AA 74487",1962-05-18 10:45:45,13:a5:78:6c:0b:ed,oprice@hotmail.com,img/obama.jpg +Stephanie George,527-70-9344,51607,"2266 Mitchell Unions +New Brianton, VT 58721-3690",1950-02-04 19:15:35,4f:fc:c2:5a:1e:6b,perezstephen@moran.info,img/obama.jpg +Patricia Lee,564-92-2622,31207,"08999 Marco Fields +North Erinside, AL 76299",1975-03-18 17:03:50,3f:3b:e6:39:91:63,marywagner@clark-garcia.com,img/obama.jpg +David Thompson,356-71-6098,83986,"84806 Fitzpatrick Dale Suite 575 +Johnsonfort, MN 50175",1999-01-28 20:20:22,ec:f6:5f:28:7a:5c,hendersoncindy@gmail.com,img/obama.jpg +Samuel Williams,772-83-8129,16538,"562 Robert Drive Suite 478 +Scottstad, WI 41331",2005-01-01 22:39:28,6f:c9:56:46:90:57,susan47@yahoo.com,img/obama.jpg +Julia Rogers,499-84-5005,83442,"04501 Carlos Junctions +Haroldberg, GA 09360",1932-12-22 12:20:42,a4:b9:f0:cd:4e:7c,masonmark@hotmail.com,img/obama.jpg +Billy Morris,367-75-2004,15578,"Unit 4778 Box 4805 +DPO AE 27982",1918-05-31 17:45:47,54:32:2b:f6:b8:cf,hevans@tucker.info,img/obama.jpg +Miss Sandra Jordan DVM,807-85-1121,53887,"Unit 0170 Box 7905 +DPO AA 46318-3844",1994-01-13 17:50:44,4d:ba:ed:13:7b:6e,ericnelson@lozano.info,img/obama.jpg +Lori Armstrong,322-57-0037,28031,"771 Jeremy Tunnel +Caitlinberg, MP 48724-6133",2004-10-03 08:34:56,74:37:bc:70:ea:50,edwardgross@allen.biz,img/obama.jpg +Adam Gilbert,061-49-5801,86417,"308 Gregory Port +Vickietown, HI 55592-7094",1944-01-27 10:26:38,34:db:ff:5f:6a:83,davieswanda@dixon.info,img/obama.jpg +Faith Lee,755-79-8297,78810,"74396 Atkinson Flat Apt. 596 +Jessicaside, RI 37446-7719",1995-10-03 03:06:45,a3:e7:be:7c:8a:51,jamesgarcia@reed.com,img/obama.jpg +Jimmy Clark,379-16-7423,62635,"02886 King Walk +Port Rachelport, RI 21766",1996-05-31 20:31:47,a1:6d:37:c0:8f:ff,xgutierrez@hotmail.com,img/obama.jpg +Kevin Hudson,748-77-7378,84772,"PSC 6100, Box 5002 +APO AP 34508-7855",1939-01-28 09:46:11,0b:67:f0:57:8a:e9,christinemartin@gmail.com,img/obama.jpg +Tina Shields,670-65-4282,36691,"582 Mitchell Courts Apt. 650 +South Nicoleville, NY 22605",1944-09-13 02:41:37,5a:cc:c1:d3:49:f5,collinsolivia@yahoo.com,img/obama.jpg +Samantha Cunningham,827-81-7727,46623,"7482 Powell Road Suite 797 +New Elizabethborough, MN 77165-8357",1943-02-02 02:19:06,6f:77:6a:a4:7a:35,patriciayates@roy-martinez.info,img/obama.jpg +Jorge Hensley,634-48-5932,89755,"PSC 2548, Box 7645 +APO AA 76935",1961-10-01 20:04:41,26:d7:54:f8:c7:d9,lwilliams@yahoo.com,img/obama.jpg +Theresa Sanchez,171-24-9009,07611,"46294 Kelly Tunnel +South Melissatown, FM 28944-8125",1983-03-31 07:41:04,c4:bb:91:90:51:21,rebeccawilson@moon.biz,img/obama.jpg +Kathryn Flores,677-42-8700,14606,"425 Freeman Rue +East Nicole, MN 16464-3062",2006-11-06 03:19:28,77:ab:86:f6:f2:3d,bthompson@rose.com,img/obama.jpg +Ronald Moore,881-07-2193,63341,"14119 Dan Tunnel +Michaelmouth, IL 60485",2008-04-21 01:06:05,6c:da:64:df:97:31,roberttorres@holland.com,img/obama.jpg +Juan Berg,151-85-4205,22950,"413 Casey Mall +Amyberg, MD 24819-7084",1986-01-27 18:41:42,39:93:b2:18:12:5d,benjamin54@gmail.com,img/obama.jpg +Ashley Parsons,881-09-0424,15797,"78163 Joseph Lane +South Williambury, WV 72185",1918-10-17 19:10:44,f6:d6:7f:96:9a:17,daniel91@hotmail.com,img/obama.jpg +Katherine Cox,372-06-6077,98949,"Unit 5253 Box 1235 +DPO AA 40357",2014-08-25 03:44:13,37:99:b1:46:b3:03,rjones@barnett.info,img/obama.jpg +Anthony Rodriguez,099-34-0618,30502,"13940 Stephens Fort +New Amyshire, MT 12171",1995-07-11 15:36:08,5b:8d:f5:20:0d:76,ryan62@yahoo.com,img/obama.jpg +Jon Wood,089-02-3131,66477,"8402 Cynthia Mission Suite 769 +Josephshire, VT 56842-2079",1939-03-14 05:16:20,01:89:35:d3:f4:bf,marshalllisa@young-austin.com,img/obama.jpg +Lisa Williams,451-69-2339,37599,"065 Russell Streets +Richardsonhaven, NM 09926-1169",2016-03-15 17:50:13,c4:4a:98:20:0a:8c,ashley12@hotmail.com,img/obama.jpg +Frank Reynolds,777-03-8033,86979,"22104 Baker Crest Suite 268 +New Walter, HI 49150",2015-10-11 20:53:57,df:96:e3:d6:32:e8,leejean@welch.net,img/obama.jpg +Christopher Morales DVM,500-91-4006,53311,"2769 Morales Stravenue +Richardsonbury, IN 47520",1940-08-15 02:07:51,88:82:7f:4e:61:31,ann96@hotmail.com,img/obama.jpg +Gina Burton,547-32-0520,14055,"587 King Fall +North Davidport, SD 10796",2007-06-23 06:54:43,1c:80:ea:ea:d0:9c,christopher92@bridges.net,img/obama.jpg +Gary Odonnell,579-78-6555,76643,"879 Kelly Plaza Apt. 831 +Jessebury, PW 32462",1972-10-30 07:30:46,54:98:89:49:b4:fd,jennifer85@wilson-fernandez.info,img/obama.jpg +Kristina James,647-84-9816,32443,"PSC 1724, Box 4933 +APO AE 47905-7854",1966-08-02 16:37:49,44:38:10:31:f2:46,andrew15@taylor-gordon.com,img/obama.jpg +Sheena Grant,116-93-0779,19962,"911 Alexandra Brook +West Carl, ME 27979",1976-12-08 22:32:21,5e:81:2f:2d:c4:32,colemanshawn@gonzalez.com,img/obama.jpg +Larry Sutton,682-67-7061,32884,"1467 Michelle River Apt. 265 +Warnerbury, AS 33420",1919-02-16 22:35:00,be:4b:c2:e2:fe:c0,justin44@hotmail.com,img/obama.jpg +Natalie Wolfe,802-83-8644,22921,"950 Camacho Wall +New Vickie, PA 65933",1999-01-14 01:02:36,65:ed:6f:1e:d7:7c,janice63@yahoo.com,img/obama.jpg +Thomas Alexander,155-54-9702,25728,"Unit 6041 Box 6571 +DPO AP 33115",1955-08-30 14:36:25,2c:41:f8:30:7c:9f,tracy52@yahoo.com,img/obama.jpg +Kelly Best,030-30-1786,75476,"822 Hannah Meadow Suite 877 +South Joeltown, DE 45569",1969-03-14 00:58:24,da:e9:4d:13:1a:7b,paige59@oconnor-zimmerman.com,img/obama.jpg +Nicholas Alvarado,855-60-5556,26725,"699 Turner Points +Port Tiffanyburgh, DC 19875",1945-05-08 12:26:33,cb:16:a9:16:f9:6e,kristimitchell@lara-krause.com,img/obama.jpg +Frederick Levy,613-12-5047,31931,"817 Michael Center Apt. 630 +Lake Kimberly, UT 61310",1971-07-24 12:04:35,3b:d3:e1:7e:d4:22,ashley96@meyer.com,img/obama.jpg +Alicia Davidson,507-90-2206,31080,"1284 Jenkins Mall Apt. 364 +Michaelstad, CA 50511-7537",1933-09-21 14:42:01,aa:49:22:a5:3c:95,rodneymatthews@cooper.info,img/obama.jpg +Christopher Rodriguez,510-61-5598,18225,"003 Michael Cliffs +South Angelashire, TN 61022",1985-08-05 11:33:20,40:fb:19:54:df:4b,salinasadam@hotmail.com,img/obama.jpg +Ronald Rivera,137-66-8938,83701,"660 Sean Radial Suite 300 +Warrenchester, OH 08603-5965",1943-10-14 04:51:54,9e:14:4a:16:44:2f,hansenkathryn@hotmail.com,img/obama.jpg +Amber Hensley,126-45-6407,18797,"34183 Cesar Crossing Suite 197 +Heatherfort, NE 72579-1785",1992-07-02 19:47:11,13:6a:f7:6f:fc:d3,millerrebecca@sanchez.com,img/obama.jpg +Jenna Young,067-69-5118,04385,"95403 Chris Centers Suite 054 +Lake David, NC 38818",1988-06-12 08:57:26,de:67:6c:14:7e:31,joneselizabeth@yahoo.com,img/obama.jpg +Courtney Murphy,792-70-7818,68472,"29800 Jenkins Haven Suite 713 +Jerryfurt, OH 75969-1543",1971-10-07 12:40:10,e5:73:f6:99:b6:49,ashleylang@shepherd.com,img/obama.jpg +Matthew Snow,862-06-8908,72944,"70567 Lester Fork Apt. 996 +Ashleyborough, MP 69888-8945",1999-01-23 14:46:08,57:3f:e9:b6:5c:13,fcurtis@giles.net,img/obama.jpg +Cindy Murphy,360-97-7137,81274,"Unit 6628 Box 2769 +DPO AP 51096",1981-01-04 13:13:05,62:59:b8:cd:ea:c9,brittany14@ross.biz,img/obama.jpg +Dennis Bartlett,850-46-9271,65535,"960 Rebecca Mountain +Douglashaven, NJ 92550",2002-11-27 15:57:31,f8:3f:97:6a:1c:64,mbarrett@gmail.com,img/obama.jpg +Amanda Montgomery,277-98-8776,28211,"013 Shannon Rapids Suite 803 +Samuelberg, MT 77585-2091",1963-11-28 15:51:23,42:2d:54:aa:70:b4,rebeccacobb@lutz-smith.org,img/obama.jpg +Sean Scott,267-65-2449,44542,"PSC 5794, Box 7775 +APO AA 62762-7504",1982-01-09 11:50:47,c3:03:bb:5d:bb:f5,davidramirez@hotmail.com,img/obama.jpg +Daniel Koch,637-29-5150,69139,"63607 Joseph Tunnel Suite 737 +Pattersonview, TN 44295-2040",1995-06-16 12:27:04,86:b4:9a:1a:22:56,chavezsusan@gmail.com,img/obama.jpg +Stacy Garcia,816-80-3376,60973,"040 William Flats Apt. 196 +North Donna, NM 17961-8231",1935-10-10 21:04:51,b6:e9:cf:a6:6e:7f,qellis@yahoo.com,img/obama.jpg +Joseph Reynolds,481-16-3701,85594,"3919 Kathryn Via +New Ronaldberg, FM 33188-8234",1926-10-04 02:07:52,67:2f:f8:f8:88:f5,vaughnsamantha@west.info,img/obama.jpg +Mr. Wayne Navarro,888-29-8551,75303,"8533 Jasmine Plaza +New Jessica, DC 01208-7513",1931-04-05 07:22:37,a2:45:8e:dc:b2:0c,chad58@duncan.biz,img/obama.jpg +Rebecca Salas,170-89-7028,27174,"PSC 0719, Box 9943 +APO AA 20128-3429",1920-02-03 20:41:03,ba:e1:ae:7c:0b:91,lancesmith@villegas.info,img/obama.jpg +David Rasmussen,509-50-4659,26574,"51143 Martin Rapids +Drakeborough, ID 70952-9687",1944-01-19 05:28:57,c3:87:2a:3b:31:02,molly13@daniels.net,img/obama.jpg +Sara Campbell,736-14-3512,30725,"80045 Jones Spurs +Shaffershire, AL 73291",1997-11-29 18:08:55,07:0f:0a:b5:da:e0,john80@myers-wilson.org,img/obama.jpg +Johnathan Watson,013-59-7592,66695,"214 Hale Pass Apt. 888 +South Diane, VT 25507",1953-07-21 05:29:44,85:12:3a:3d:48:ad,katherinejacobs@gmail.com,img/obama.jpg +Ms. Jennifer Livingston DDS,036-13-8877,49875,"03524 Mary Port +Hamiltonbury, AK 24544",1991-02-11 04:18:06,9e:20:f2:c1:15:bf,heather88@williams.com,img/obama.jpg +Alexis Thompson,735-70-6869,65056,"1196 Gina Points Apt. 457 +West Travismouth, DC 67051",1932-07-11 09:58:36,c6:10:89:8d:36:ce,vanessa18@adams.info,img/obama.jpg +Joseph Garner,792-46-9220,22068,"3387 White Stream +Davismouth, MH 62907-6203",1924-02-26 20:13:07,08:5e:a1:d9:3b:8c,wmccoy@walter.org,img/obama.jpg +Jon Turner,368-28-6934,23639,"328 Jessica Knoll +Coreyburgh, WY 71657-2964",1925-11-11 02:26:56,70:a0:ef:71:95:3e,nicole42@young.info,img/obama.jpg +Sandra Dominguez,536-03-2435,50202,"Unit 2449 Box 2623 +DPO AA 77975-5196",1949-02-20 03:02:33,84:40:b4:60:53:23,csexton@rosario-wilkinson.org,img/obama.jpg +Katherine Lawson,410-28-2932,72873,"93688 Hines Locks +Port Davidton, MI 41486-9174",1973-06-26 08:20:58,ea:ec:60:be:c0:f4,paul88@soto.com,img/obama.jpg +Wendy Perez,583-37-7776,91217,"379 Durham Overpass Apt. 944 +Teresaton, RI 74054-1760",1962-12-30 11:55:32,43:3f:ef:fd:9c:72,smithzachary@diaz.com,img/obama.jpg +Anna Smith,653-17-7250,48405,"USCGC Ortega +FPO AA 52007-9704",1966-03-01 13:45:07,47:c3:80:48:39:0e,annette92@gmail.com,img/obama.jpg +Danielle Walters,587-61-3652,97009,"6681 Collins Lodge +Port Christine, NY 54456-6887",1929-06-25 06:32:55,07:5e:5b:99:44:02,kathrynsimmons@jackson.net,img/obama.jpg +Katie Hawkins,713-26-2969,20045,"60328 Sweeney Estate +Armstrongtown, AS 91865",1932-05-23 02:12:03,76:9d:57:12:8a:27,robertprice@guerrero.com,img/obama.jpg +John Medina,194-58-7163,48746,"48720 May Lake Apt. 986 +Jordanshire, UT 86913-1253",1952-09-29 06:17:56,cb:d6:19:00:4f:89,troypoole@yahoo.com,img/obama.jpg +Larry Sanders,024-60-0111,21160,"USCGC Berry +FPO AE 96750",1967-09-04 12:05:25,dc:a9:20:30:be:9f,sherrypierce@gmail.com,img/obama.jpg +Mr. James Allen,509-68-0371,52543,"332 Joshua Lodge Suite 411 +Garciaberg, PR 09285",1930-12-13 15:22:12,a9:6a:84:42:18:11,smosley@black.com,img/obama.jpg +Nicole Smith,744-12-7696,53244,"Unit 0597 Box 6928 +DPO AA 44088-1069",2016-05-12 02:32:06,e9:45:bc:11:c7:82,wkim@rivera-williams.com,img/obama.jpg +Kevin Krause,623-83-7388,42241,"0031 Carrie Glen +Rhondaport, AR 73519-7265",1926-05-21 07:25:14,9f:53:10:d4:64:15,lauraholland@love-fisher.net,img/obama.jpg +Julie Hernandez,794-31-6278,12157,"3079 Caldwell Canyon Apt. 594 +Jennifermouth, ND 94783-3833",1949-09-11 12:51:23,0a:26:2b:4f:9b:68,bharris@hughes.net,img/obama.jpg +Jeffrey Coffey,211-04-3981,17369,"92765 Rush Stravenue +Heathershire, VT 05862-3389",1956-06-23 17:39:08,0b:35:8b:59:ca:9b,phoffman@burton.org,img/obama.jpg +Sharon Barr,481-43-3000,04616,"792 Willis Falls Suite 592 +Wattsfurt, VT 51684-5685",1966-04-05 19:27:33,81:3f:3f:d7:07:61,singletondana@yahoo.com,img/obama.jpg +Dawn Johnson,404-30-6932,37338,"67474 Jessica Courts Apt. 239 +East Williamland, SC 10176",1949-05-16 05:55:35,70:1d:99:f7:9d:ea,andrewparker@gmail.com,img/obama.jpg +Ronald Perry,410-97-8910,77662,"9824 Porter Meadow +Carrside, NY 37316-6344",1980-06-26 02:08:20,1b:c2:70:9d:c3:31,johnsonricky@gmail.com,img/obama.jpg +Caleb Mann,603-84-2088,91027,"22480 Kenneth Vista Suite 030 +Sotohaven, OK 95609",1952-06-11 04:00:28,fa:cf:84:6e:eb:34,riveravincent@gmail.com,img/obama.jpg +Patricia Edwards,086-05-2317,77273,"968 Mcguire Station +Joshuaside, PW 28730",1930-02-01 10:29:53,1f:5f:e4:46:e4:1e,rsmith@lopez-briggs.org,img/obama.jpg +Michael Young,758-17-6921,23694,"8105 Brenda Views Suite 294 +Danielchester, MO 60683-6752",1953-10-09 22:39:21,3c:8d:91:c7:7e:f5,juliajohnson@mendez.info,img/obama.jpg +Amanda Cardenas,322-48-4941,62285,"72104 Bailey Station Apt. 473 +Pamelabury, OK 04279-6099",1919-09-16 04:22:13,14:78:ad:39:a3:d3,xhobbs@gmail.com,img/obama.jpg +Kelly Mills,613-37-4270,16900,"675 Rachel Creek Apt. 689 +New Loritown, RI 63853-7903",1985-07-19 12:41:34,2e:c6:55:18:99:62,zhughes@yahoo.com,img/obama.jpg +Tara Gay,588-96-6670,45903,"676 Hampton Station Apt. 277 +Kathleenberg, NH 88442-0552",1960-10-14 14:40:16,cd:ac:41:4c:53:09,angela69@gmail.com,img/obama.jpg +Christina Rogers,209-73-6122,22170,"333 Garcia Ford +Douglasborough, FL 47688-6645",1917-11-11 01:30:06,c6:e1:9d:0b:ff:df,mitchellveronica@garcia-clark.com,img/obama.jpg +Dan Baker,786-89-8956,22980,"30731 Kimberly Crescent +Port Mario, CO 62367",1942-12-01 14:40:05,67:a7:41:7d:57:32,santosthomas@yahoo.com,img/obama.jpg +Peter Sherman,029-99-0640,93017,"3889 Jose Gardens Suite 077 +Reevesville, AK 62046",1943-11-29 13:29:35,b4:0c:6e:38:b3:5f,fryekenneth@gmail.com,img/obama.jpg +Heather Ward,806-35-3625,54938,"386 Ellis Ports Apt. 530 +Brennanshire, VI 13261",2013-11-24 12:00:08,21:2f:56:7e:89:8e,grobertson@hotmail.com,img/obama.jpg +Amanda Atkinson,497-33-6783,19345,"60226 Marc Passage Suite 164 +Morrisonborough, IN 66557-2507",1926-12-12 19:00:51,e6:88:3b:f7:37:6e,christophersimon@gmail.com,img/obama.jpg +Laurie Zavala,095-99-9615,80905,"115 Blair Groves +Port Edwardton, TN 53043-2866",1996-08-22 21:26:35,0b:60:5a:93:93:cb,christopher28@yahoo.com,img/obama.jpg +Mary Moore,875-36-2454,78568,"1703 Stephen Keys +Logantown, NJ 34642-4088",1923-11-07 23:43:29,fb:50:01:31:7f:a0,georgekrystal@yahoo.com,img/obama.jpg +Lori Carey,769-73-3164,22586,"6203 Amanda Fall Suite 082 +Johnathanview, IA 13571-8348",1945-08-27 01:38:05,1b:ff:d9:86:ca:d3,sara20@gmail.com,img/obama.jpg +Charles Moore,423-31-0158,99041,"13409 Kelly Station Apt. 076 +West Joseland, ID 33795",1922-01-03 09:20:32,36:1f:55:e2:8b:62,mendezsuzanne@gmail.com,img/obama.jpg +Derrick Martinez,064-53-5207,19899,"6388 Jennifer Lake Suite 209 +South Johnview, MA 54004",1967-03-06 04:03:33,c2:15:08:82:e9:df,pamela63@miller.com,img/obama.jpg +David Bennett,446-93-8661,45011,"440 Ruiz Springs +Baldwinfurt, SC 93452",1936-11-05 05:43:14,37:5c:48:01:f9:ee,kevinholland@yahoo.com,img/obama.jpg +Andrea Vasquez,835-32-6072,64670,"922 Dennis Square +Stevenbury, TN 92692-8992",1973-08-06 16:56:01,7b:d1:30:39:2e:16,howelljoseph@yahoo.com,img/obama.jpg +Carl Simmons,800-54-7370,40923,"PSC 3833, Box 7425 +APO AP 96537",2006-03-01 10:55:10,18:db:ec:60:1c:ee,joshua95@robinson.com,img/obama.jpg +Mrs. Holly Wright MD,769-88-1378,26964,"47489 Greg Shores Suite 842 +Port Brookeborough, WV 95715-6799",1943-12-30 13:47:00,2c:d9:a7:e2:d9:f1,nashgary@gilbert.net,img/obama.jpg +Diane Love,169-85-2179,72574,"101 Jared Mews +South Glennbury, WY 46609-9447",2003-10-01 12:18:19,7f:0c:6d:90:ff:4f,charles10@smith.org,img/obama.jpg +Evan Johnson,205-52-1628,23715,"328 Nguyen Run +South Alexandra, KS 66258-2210",2006-03-24 03:32:58,97:52:de:78:2f:89,kathy20@nguyen.com,img/obama.jpg +Brandon Williams,530-70-4057,83151,"973 Ruiz Junction +New Peggy, AZ 52281-8905",2011-10-15 08:57:58,d7:8f:2e:6b:1d:ed,johnmeyers@williams.org,img/obama.jpg +John Foley,595-30-3988,02875,"167 Lucas Ports +Rodriguezland, FM 19189",1984-06-09 15:21:04,df:a1:d7:cd:5d:c5,patricia58@gmail.com,img/obama.jpg +Beverly Hayes,282-44-2726,55887,"43455 Johnson Course Apt. 826 +North Michaelville, NM 86117-4556",1980-04-14 12:15:17,c0:74:44:68:f7:86,douglas83@yahoo.com,img/obama.jpg +Holly Butler,504-44-1210,19747,"77075 Jackson Land +Port David, KY 21195-4489",2011-09-11 07:39:28,f7:0f:6c:e8:ff:bf,debbiehowell@suarez.com,img/obama.jpg +James Miller,316-18-6626,66656,"USS Mathis +FPO AP 99732-9535",1956-03-21 00:28:31,11:5c:49:14:91:52,nicolejohnson@yahoo.com,img/obama.jpg +Paula Tran,143-83-2071,36032,"3320 Johnson Hollow +Torresmouth, NH 65335",1932-11-28 09:01:03,54:b1:d9:34:cb:0d,jennifer70@yahoo.com,img/obama.jpg +Alejandro Hull,127-39-6640,79391,"65271 Christopher Estates +Marychester, DC 62078",1923-11-07 11:07:04,f4:a3:6a:c2:bc:8a,dawn16@owens.info,img/obama.jpg +Christopher Rivera,532-37-4425,99557,"USNS Klein +FPO AE 96837",2000-11-19 12:12:37,08:9d:6b:42:fd:a9,bethcurtis@brown.com,img/obama.jpg +Rebecca Davila,442-45-9087,57876,"004 Dalton Curve Suite 922 +Monroeberg, CO 17496-5775",1925-06-02 17:25:16,0f:b3:aa:51:a9:b1,michael39@hotmail.com,img/obama.jpg +Christian Mcbride,885-06-6798,49056,"7946 Jacob Springs Apt. 123 +North Matthewchester, UT 20522-2436",1920-12-01 16:32:13,54:73:56:96:48:e3,wyoung@gmail.com,img/obama.jpg +Bryan Wolfe,004-74-1942,60328,"66036 Lydia Loop +South Kristineville, WA 13249-7865",1958-01-14 06:39:52,6c:9c:1d:77:13:78,erinhunt@camacho.com,img/obama.jpg +Anthony Bryant,656-68-3570,48345,"76077 Frank View Suite 477 +Choiview, UT 60999-0255",1975-07-14 22:21:35,bb:8b:6c:19:8d:67,jennifermorris@brady.com,img/obama.jpg +Jennifer Petersen,386-72-1187,96870,"422 Shawn Cove Apt. 442 +Christopherhaven, WA 04332",2012-07-10 12:11:24,43:6d:2b:16:dc:a0,robert88@jones.org,img/obama.jpg +Jerry Gray,690-16-9299,94530,"672 Willis Spurs Suite 068 +Lake Kimmouth, OH 17850",1966-09-25 10:00:35,ea:6e:0f:16:d7:2d,aaron69@gmail.com,img/obama.jpg +Leah Cook,132-45-7893,43552,"USNS Green +FPO AE 39403",1917-09-10 07:37:47,b8:db:a8:6f:b9:90,melissa88@long.org,img/obama.jpg +Douglas Diaz,113-37-8480,26203,"5765 Joshua Mission Apt. 872 +Port Zacharystad, WA 11280",1962-05-17 00:23:57,85:ef:f0:fe:f5:1c,omar80@craig.biz,img/obama.jpg +Karen Meyers,682-33-6254,88568,"0308 Charles Corners Suite 008 +Johnsonview, MS 73666-6683",2012-05-25 01:16:27,2a:65:ea:41:6b:a6,dixontyler@hotmail.com,img/obama.jpg +James Summers,414-64-1201,60586,"82915 Stafford Wells Suite 842 +New Samuelland, AL 41618",1956-10-16 19:42:24,11:f9:5e:38:25:7a,mcintoshtaylor@steele.com,img/obama.jpg +Dennis Baker,318-96-7356,43385,"5373 Villarreal Station +Aprilview, NY 52978-3552",1919-10-30 20:11:57,2a:7b:eb:76:63:cd,wfrye@yahoo.com,img/obama.jpg +Sarah Berry,349-27-4300,92933,"78718 Patricia Ford Apt. 220 +North Susanbury, HI 41978",1932-11-28 09:59:53,7e:90:73:44:ce:a0,shenry@hotmail.com,img/obama.jpg +Amy Beasley MD,766-30-2378,45227,"83598 Timothy Brook Suite 238 +New Erinland, GA 44388-2355",1922-08-29 17:50:10,41:cd:3c:d5:cb:ea,beasleykayla@hotmail.com,img/obama.jpg +Bob Lopez,677-02-2087,70046,"43107 Julie Gardens Suite 946 +Taylorport, KS 30694",1994-04-20 16:50:51,12:ac:e9:40:14:61,cunninghammelissa@yahoo.com,img/obama.jpg +Timothy Jones,497-16-7234,54508,"5777 Brown Pine Suite 956 +Robertbury, NV 77402",2006-04-28 23:10:49,c5:ca:51:31:d7:a8,qmiller@gmail.com,img/obama.jpg +Stephanie Jackson,028-24-5511,56222,"54870 Andrew Wall +West Heidi, DC 24984",1929-12-26 23:04:10,14:4a:88:18:3b:81,kevinjones@yahoo.com,img/obama.jpg +Joseph Freeman PhD,676-27-4761,45904,"386 Amanda Skyway +North Kimberlyburgh, MD 47424",1989-06-12 04:19:42,50:17:6e:00:6d:5a,fsummers@yahoo.com,img/obama.jpg +David Zimmerman,401-70-1150,56203,"723 Price Loop +Marilynchester, MA 87207-4683",1925-08-07 15:45:51,f1:19:58:02:a0:b1,mgraves@diaz-duran.com,img/obama.jpg +Sandra Thornton,625-66-3455,23017,"09133 Marcus Junction +New Michaelville, NV 72914",2002-01-26 14:51:19,37:44:e2:ee:68:08,jacquelinerodriguez@yahoo.com,img/obama.jpg +Emily Fitzgerald,620-30-6728,90097,"835 Duane Crossroad +West Melissa, NH 99991-9261",1995-11-08 09:26:27,76:d1:77:af:0f:0c,anthony80@holloway.com,img/obama.jpg +William Gomez,069-68-0511,02553,"64113 Benjamin Walk Suite 199 +Stephenchester, RI 56414",1961-05-09 17:36:31,1b:7c:c6:af:f2:33,emartinez@gmail.com,img/obama.jpg +Adam Wilson,516-15-2930,40297,"444 Dalton Valleys Apt. 075 +North Josestad, AL 12211",1988-09-17 10:58:33,7f:a9:f5:24:00:6c,eric54@yahoo.com,img/obama.jpg +Stephen Todd,829-83-2004,71817,"60398 Baldwin Springs Apt. 886 +West Yvonne, RI 28176",1958-06-05 22:48:47,f0:64:61:18:46:ed,bradleystone@ryan-mills.org,img/obama.jpg +Jeremiah Walsh,002-17-6958,62345,"74325 Lisa Circle +North Ronald, SC 52150-7964",1970-04-25 03:05:43,45:83:ce:89:b8:9b,russell41@lopez-floyd.info,img/obama.jpg +Andrew Martinez,115-24-9344,90816,"7948 Ward Square Apt. 862 +South Sarah, RI 09018",1990-02-03 21:55:08,b7:40:f6:f3:ce:a3,phillipstracy@gmail.com,img/obama.jpg +Jennifer Bradley,236-93-6592,57320,"89427 John Port +Johnsonside, SD 31234-7618",1987-04-15 22:08:53,2f:20:13:64:e2:a5,kyle99@gmail.com,img/obama.jpg +Cheryl White,386-32-0620,07859,"59989 Mann Lodge +Watsonburgh, KY 94828",1930-02-07 23:48:45,f4:77:15:0c:5b:e3,manningnatasha@tucker.com,img/obama.jpg +James Meyer,432-14-9487,07226,"PSC 5463, Box 7028 +APO AP 79514",1969-03-02 11:48:03,0a:1b:82:6f:e0:7c,jonestraci@mason.com,img/obama.jpg +Maureen Keller,075-77-1724,21038,"29477 Dillon Way Apt. 435 +Jenniferside, MD 91354",1995-12-11 01:39:45,eb:28:13:cc:45:98,smcintosh@hotmail.com,img/obama.jpg +Luis Gutierrez,534-72-9290,52469,"0488 Anderson Mill Apt. 370 +West Ethan, NH 99490",1989-07-02 20:20:23,47:f2:50:bb:a1:e1,dbenton@yahoo.com,img/obama.jpg +Nancy Henry,864-68-6165,69656,"0696 Trujillo Union +East Danielburgh, MI 57798-7264",1994-03-10 12:20:39,59:7a:56:fb:f1:3d,patricia10@gmail.com,img/obama.jpg +Kimberly Carter,203-42-1106,87602,"PSC 6888, Box 2725 +APO AE 54873-3559",1950-05-28 17:49:29,c1:cf:74:17:c7:31,paul97@anderson.biz,img/obama.jpg +Kyle Huerta,499-87-6471,90101,"0310 Mckinney Pike Suite 835 +Port Christopher, NY 70144",1983-08-02 22:19:02,60:3d:71:af:04:68,ashley93@hamilton-lynch.com,img/obama.jpg +Charles Mcdonald,677-91-7675,57300,"1095 Marissa Pass +South Daniel, WI 13283-6751",1960-02-07 10:45:10,f2:15:f0:88:a6:bd,iortiz@harris.net,img/obama.jpg +Whitney Harmon,477-75-3725,58822,"263 Miller Square Apt. 308 +South Caitlin, WY 30154",1963-04-28 11:38:10,69:51:62:2e:d9:d0,rileydeborah@hancock.biz,img/obama.jpg +Nicholas Wright,480-42-1821,23350,"1863 Heidi Mount +Glennstad, GU 70767-5592",2015-06-23 21:53:35,a2:6e:ee:3e:3c:10,phuynh@hotmail.com,img/obama.jpg +Cynthia Riley,154-25-0681,68212,"PSC 1111, Box 8098 +APO AA 95891-3847",1929-12-29 10:44:14,75:86:d9:a4:a1:68,hflores@yahoo.com,img/obama.jpg +Kelly Moore,638-96-8511,25264,"15208 Stacy Mission Suite 092 +Gillville, MI 91941",1978-03-31 17:47:45,22:58:9d:87:55:f8,aclay@bishop.org,img/obama.jpg +Sandra Jackson,120-72-7826,03003,"50030 James Islands +Lynnland, OH 00397",1933-02-16 03:25:43,f1:4a:4c:9a:09:ee,robertpayne@brown.info,img/obama.jpg +Jeffrey Morrow,343-88-7541,11633,"3808 Gordon Turnpike Apt. 011 +West Alexanderchester, MP 07976",1985-07-13 14:23:45,d6:52:9b:04:99:8b,williamsbrandy@hernandez-jackson.com,img/obama.jpg +Lauren Ford,340-72-6873,69622,"84287 Parker Point Suite 721 +South Marystad, NM 74614-1148",1991-12-15 14:36:27,01:d5:77:09:90:0f,qroberts@gmail.com,img/obama.jpg +Sierra Harris,577-43-5199,64635,"5953 Lori Mews Suite 943 +South Paul, DC 48380",2007-11-29 21:37:52,18:83:34:9b:99:11,zheath@gmail.com,img/obama.jpg +Michael Carter,574-60-0561,80598,"1269 Wells Island +Reyesland, CO 41207",1971-02-06 13:12:56,ad:31:89:c4:90:ae,ericmorris@hotmail.com,img/obama.jpg +David Kelly,142-66-3703,69751,"5279 Aguilar Village Suite 849 +East Catherineton, WI 68134-8789",1984-04-04 14:22:05,06:11:15:52:9f:ef,jason05@hotmail.com,img/obama.jpg +Elizabeth Lowe,498-50-8687,86688,"80343 Pamela Vista +North Michelle, FL 72485-9003",1945-09-17 09:16:53,e8:22:b7:7b:66:f6,gloveralexander@yahoo.com,img/obama.jpg +Lisa Robertson,883-56-7766,66854,"99193 Cassandra Island +Port Amberstad, WY 22350",1997-09-13 15:24:02,3e:f8:39:4b:d3:dd,thomas39@gmail.com,img/obama.jpg +Yvette Dean,721-87-2702,69870,"9743 Heather Valley +North Kevin, FL 64874-0854",1938-09-27 02:44:00,be:a9:4f:4c:c4:be,nicholssusan@hernandez.info,img/obama.jpg +Gary Arnold,407-93-9634,47233,"616 Evan Flats Suite 956 +New Williamstad, IN 06936-4117",1963-01-28 08:43:03,f3:ec:8a:14:f6:06,ihiggins@gmail.com,img/obama.jpg +Jennifer Jordan,708-64-2408,22942,"344 Hunt Prairie Apt. 718 +Georgeberg, OR 71547-7982",1929-10-09 15:12:44,db:ce:32:95:ae:60,ryan61@hotmail.com,img/obama.jpg +Edwin Robinson,269-02-4265,05091,"73903 Buchanan Mountains Suite 219 +Port Michellefort, AS 86254-0896",1981-06-12 11:00:44,fd:37:7b:af:0f:26,lori47@gmail.com,img/obama.jpg +Tyler Pena,658-56-7580,06512,"8272 Lewis Inlet Apt. 874 +West Angela, PR 32855-9777",1918-12-03 06:11:29,f2:31:c0:04:fc:bd,daniellewood@hotmail.com,img/obama.jpg +Jordan Taylor,472-29-6649,99412,"45789 Melendez Bridge +Sandrabury, VI 44848",1994-11-12 00:09:04,89:c6:aa:05:d6:3b,michael03@gmail.com,img/obama.jpg +David Russell,026-39-5716,21783,"USCGC Morales +FPO AA 47511",1927-10-15 16:04:20,54:27:ec:36:20:24,amendoza@gmail.com,img/obama.jpg +Gregory Simmons,395-58-2097,91559,"991 Freeman Forge Apt. 663 +Garretthaven, WI 58132",1930-11-14 01:44:50,cf:8c:f8:70:9f:2d,milesarthur@gmail.com,img/obama.jpg +Keith Keller,516-15-6154,61659,"08575 Wallace Mountain Apt. 915 +New Teresa, VA 93517-6104",1930-12-07 09:55:25,16:97:20:65:bc:16,peter51@white.biz,img/obama.jpg +Steven Owens,393-12-2995,07350,"811 Brandy Hills Suite 606 +Millsshire, LA 53417-5542",1923-10-29 19:48:49,0e:0d:86:6b:9a:55,eddiedavis@park-moyer.net,img/obama.jpg +Michael Sanchez,697-68-6399,42119,"PSC 6635, Box 2957 +APO AA 15172-3062",1992-12-29 07:32:01,d7:96:a0:d7:c2:fa,karlapatton@yahoo.com,img/obama.jpg +Aaron Gutierrez,486-42-7462,16560,"79380 Morales Mountain +Smithstad, ID 16670-8754",1956-12-03 21:38:46,89:01:ed:0b:b1:0e,victoria06@hotmail.com,img/obama.jpg +Samantha Boyd,798-66-2917,71225,"557 Cindy Rest +Port Kellyhaven, VA 94368",1918-01-29 19:55:11,4e:78:57:1c:2b:3d,brownzachary@yahoo.com,img/obama.jpg +Andrea Collins,369-52-1956,18563,"01253 Acosta Rapids +Petersenview, OH 48880-6883",1986-11-01 06:21:36,42:a4:d8:4a:2b:d1,tnash@hotmail.com,img/obama.jpg +Kristy White,288-37-7915,45307,"00524 Spears Course +North Olivia, MD 85004",2005-09-12 20:16:32,57:44:4f:c6:31:cc,hollandmichele@hotmail.com,img/obama.jpg +Anthony Hogan,486-32-0647,07023,"Unit 8959 Box 8088 +DPO AP 67563",1961-12-30 18:05:11,b6:00:80:4f:5a:49,hartjennifer@yahoo.com,img/obama.jpg +Mary Jones,396-69-8246,75585,"00809 Williams Club +Melissahaven, MN 29025-5682",1939-07-31 05:07:03,2e:85:a6:1c:64:ef,hendersonthomas@yates.org,img/obama.jpg +Alyssa Johnson,603-31-0969,55180,"349 Norman Causeway Apt. 566 +Wrightshire, ND 39467-3002",1931-09-21 07:42:51,37:3a:d6:2a:03:62,steven82@hotmail.com,img/obama.jpg +Patricia Taylor,831-43-1918,39465,"9269 Rogers Corners +Gardnerhaven, NV 56543",1940-07-10 20:52:19,9e:c8:bd:41:b9:82,woodcolleen@gmail.com,img/obama.jpg +Randy Bentley,366-45-0591,74414,"62444 Steven Freeway Suite 677 +Morganhaven, WY 60219",1927-02-18 23:40:17,ec:5d:54:fc:18:ee,uallen@yahoo.com,img/obama.jpg +Andre Simpson,369-05-4208,73057,"319 Tracy Corner +Brittanyview, DE 98018-5530",1971-06-24 02:09:32,30:83:f0:06:a6:62,mjordan@waters-schultz.org,img/obama.jpg +Christina Sanchez,581-80-5502,99875,"624 Watson Viaduct +Aaronfort, OR 72095-0461",1964-03-20 12:53:57,c4:d9:39:0c:9f:93,yangheather@yahoo.com,img/obama.jpg +Leslie Lewis,426-29-6767,30123,"48580 Daniel Ridges Suite 015 +Georgeport, UT 54267-6066",2004-08-21 02:32:26,ac:12:66:9d:e8:a2,curtisjeffrey@nguyen-waters.net,img/obama.jpg +Barry Arroyo,635-21-0502,77817,"04200 Johnson Spring Apt. 081 +East Meaganfurt, IN 50697-0396",1943-04-23 08:37:20,6a:05:2a:94:c0:f4,atapia@hernandez-campbell.biz,img/obama.jpg +Darryl Castro,148-29-8361,62681,"24038 Joel Isle +Melissaland, NV 21996",1997-02-28 11:18:01,b8:71:e4:48:1a:83,kevinmayer@herrera-leach.com,img/obama.jpg +Michael Ayala,772-92-4384,14874,"1831 Martin Run Apt. 707 +Samuelberg, IN 04775",1930-10-21 06:17:39,43:88:d8:82:0e:a0,david22@scott.net,img/obama.jpg +Tyrone Hays,646-70-2733,15496,"4992 Matthew Heights Apt. 769 +Chandlerview, FM 44936-9460",1980-02-01 21:53:01,f1:bd:77:d7:06:f6,donald85@morales-gonzales.com,img/obama.jpg +Lisa Mata,874-71-0525,79268,"54285 Morgan Dale Apt. 576 +West Debbieland, DE 24667-4891",1954-11-06 17:12:20,10:85:9e:f9:26:f7,riverapatrick@hotmail.com,img/obama.jpg +Melissa Hernandez,340-50-4309,51754,"257 Johnson Bridge +Lake Joseph, MT 70423-4435",1927-08-22 15:52:04,89:2f:b0:85:79:6c,jbauer@harris-white.com,img/obama.jpg +Teresa Mahoney,312-23-7974,38733,"6371 Padilla Lock +Davisport, MP 10554",2002-11-10 00:55:50,97:dc:16:fd:c4:63,denise90@torres.org,img/obama.jpg +Scott Valencia,636-95-5507,23131,"85789 Meyer Loaf Suite 668 +Coxton, MS 18792-3610",1997-02-18 03:24:38,a1:b8:20:fd:5d:35,jonathan32@powers.com,img/obama.jpg +Vanessa Evans,580-15-1968,57937,"73146 Walter Knoll Apt. 391 +Fletcherfort, NC 32952-7156",1932-01-09 22:43:06,8c:a8:68:f6:f2:19,robertsmith@lopez.com,img/obama.jpg +Kevin Anderson,151-23-3618,08320,"10617 Kelli Manor Suite 806 +Ginaville, NJ 39335",1957-06-30 04:53:34,d8:22:56:a4:e4:6a,suzanne86@yahoo.com,img/obama.jpg +Tim Graham,066-86-7131,05223,"665 Mackenzie Heights Suite 924 +Lake Sarahville, CO 87813-8303",1964-03-15 13:09:01,7a:c2:de:bb:b4:8c,kstafford@gmail.com,img/obama.jpg +Anthony Johnson,775-51-7802,03759,"747 Mary Points +Hernandezstad, NV 91766-2171",1937-10-05 00:15:26,e4:b2:19:36:2b:2d,brookssamantha@chang-martinez.com,img/obama.jpg +Amanda Hill,482-22-4463,72149,"870 Beard Drive +Heathermouth, KY 03186",1988-02-02 02:19:20,41:a9:1a:33:49:41,nkramer@mcdonald-cook.com,img/obama.jpg +Rebecca James,144-62-5555,61807,"4529 John Ville +Harringtonchester, MH 93487-6568",2002-08-26 23:45:18,71:57:49:f9:4a:8b,kmiller@rodriguez.info,img/obama.jpg +Kristin Knight MD,857-69-1380,01297,"PSC 6664, Box 8220 +APO AP 22397",2005-04-03 11:16:18,07:ae:bd:f1:63:37,mobrien@jones-lee.net,img/obama.jpg +James Casey MD,855-72-9710,67309,"639 William Camp +Port Brandonville, MI 33740-3531",1961-01-08 14:45:34,0a:12:92:84:21:2f,alicia77@gmail.com,img/obama.jpg +Paula Thomas,525-39-2462,74542,"4971 Matthew Mills +Lake Darlene, ID 98366-0536",1992-02-23 07:23:05,91:29:ee:d3:fa:cf,paulmoon@gmail.com,img/obama.jpg +Lori Travis,375-19-7797,38196,"7089 George Circles Apt. 583 +North Anthonyport, GA 78219",1953-06-06 23:51:57,d2:cb:50:d7:29:36,angelapetty@gmail.com,img/obama.jpg +Christopher Espinoza,497-76-6261,12725,"PSC 4085, Box 8830 +APO AP 72154",2013-11-24 15:19:59,7f:0b:43:cc:2b:1a,garzabrittany@yahoo.com,img/obama.jpg +Andrew Murphy,823-31-2456,26103,"644 Clay Glens +Fischermouth, OK 31937-7933",2007-01-02 04:52:55,64:6e:a7:4e:30:07,zachary20@dawson.info,img/obama.jpg +Patricia Doyle,293-02-1663,11665,"954 Jeffery Grove Suite 586 +Mcdonaldstad, MS 16599-9648",1924-07-17 08:29:24,73:c0:cf:6f:eb:3d,katiejohnson@gmail.com,img/obama.jpg +Melanie Nash,302-51-3959,73768,"2006 Weber Forks +Port Brandon, VA 82516",1961-03-18 10:54:07,46:62:cb:ae:32:b9,swansonpeter@mills.com,img/obama.jpg +Joseph Delgado,836-05-2731,69342,"54233 Christopher Hill Suite 117 +West Stephaniemouth, TN 44791",1933-02-23 22:02:49,6a:72:4c:9a:41:e3,ismith@hotmail.com,img/obama.jpg +Jennifer Fuentes,400-40-4588,29051,"65307 Richmond Springs Apt. 436 +Port Cheryl, GA 25060",1971-06-22 03:22:51,3c:04:07:db:67:7d,jennifersmith@hotmail.com,img/obama.jpg +Kevin Pruitt,451-77-7041,72602,"139 Edward Point +North Kristinaborough, PA 90443",1993-03-19 13:29:23,1b:12:5a:de:1c:b7,pwashington@gmail.com,img/obama.jpg +Kristin Torres DDS,265-44-4370,38283,"Unit 3523 Box 0239 +DPO AE 05012",1978-04-01 05:45:41,41:a6:dd:82:c6:1e,melanie05@scott-ramsey.info,img/obama.jpg +Jennifer Gonzalez,128-07-7197,36875,"0885 Anderson Bridge +New Sean, MA 98775-9763",1966-01-15 11:06:37,b7:81:91:16:57:4d,sanchezkathleen@wilson.net,img/obama.jpg +Matthew Beasley,480-32-2678,81919,"38968 Mack Mall +Valerieview, MO 11806-0302",1920-09-11 01:33:22,79:7f:44:4c:dc:0e,amy37@bishop.com,img/obama.jpg +John Gregory,317-40-9056,80849,"Unit 9286 Box 2828 +DPO AE 27487",1942-11-24 01:09:21,96:6a:26:e6:0c:eb,pricemichael@hotmail.com,img/obama.jpg +Steven Richard,437-29-7668,64602,"189 Smith Trail +South Kimton, GU 13405",2001-02-28 06:34:36,6a:da:b8:65:a7:f8,gmathews@yahoo.com,img/obama.jpg +Timothy Peterson,705-72-7379,72489,"201 Estrada Square Apt. 655 +Lake Johnfort, TN 75444",1958-05-26 13:40:12,c5:7b:8c:16:0d:bc,oreeves@hotmail.com,img/obama.jpg +Mark Greene,441-54-8072,52172,"0498 John Viaduct Apt. 760 +Tylerbury, NE 02940-1505",2006-02-28 02:05:16,7f:32:39:22:31:53,juliemoore@schmidt.biz,img/obama.jpg +Wendy Clark,839-24-1569,69153,"64088 Martin Valleys +Seanton, SC 61619-6693",1999-06-07 15:28:13,45:b2:95:5b:35:64,william30@yahoo.com,img/obama.jpg +Lauren Moore,690-19-0177,80198,"967 Patrick Streets +Swansonton, TX 87300-7713",1956-05-13 07:03:35,2b:ef:89:89:f8:cb,kevinstewart@young.com,img/obama.jpg +Richard Long,241-84-7333,95294,"2678 Kaitlyn Locks +Mcmahonberg, MI 84621-1859",1993-06-07 15:06:22,1e:55:b0:d5:e6:65,jeffery24@hunter.com,img/obama.jpg +Eric Burton,483-64-6473,80580,"6254 Schaefer Mission +New Christopherview, NE 17080",2008-02-06 14:20:40,51:a0:66:2a:96:09,lisa42@gmail.com,img/obama.jpg +Anthony Rojas,789-97-2781,22572,"14800 Bennett Grove +Stevenfort, WA 19031-1514",2001-01-25 08:17:14,b0:47:29:68:3a:ba,ronald16@wright.com,img/obama.jpg +Joshua Bell,638-49-2254,43087,"9796 Blake Loop Apt. 405 +East Shaneburgh, CT 05170",1927-11-05 07:05:20,ae:70:f4:b3:ff:f2,kathleen23@taylor.com,img/obama.jpg +Bradley Turner,739-17-2601,72336,"24311 Waters Drives +Leeborough, PW 58418-1422",1943-10-08 06:19:15,25:bf:91:a7:35:88,mccannmary@smith-wade.net,img/obama.jpg +Steven Adams,066-10-6486,96674,"PSC 6245, Box 4551 +APO AE 72843",1956-12-04 21:21:27,18:f2:24:7a:21:de,rcarrillo@smith-snyder.com,img/obama.jpg +John Horn,018-08-7077,22134,"191 Crystal Coves +North Ralphshire, AK 72096-8460",1950-01-07 08:51:28,91:6d:e3:5a:5c:2b,troylee@yahoo.com,img/obama.jpg +Christopher Hill,627-95-4494,16303,"PSC 8443, Box 0586 +APO AE 77543-6185",1991-03-15 01:16:02,e6:9a:d4:d7:1f:1e,scottpowell@gmail.com,img/obama.jpg +Shawn Torres,077-36-0920,40744,"66489 Kim Keys +Whitakerberg, NC 72532",1950-06-15 09:09:59,77:3d:64:40:15:6e,lramirez@hotmail.com,img/obama.jpg +Stacey Doyle,176-42-7931,37050,"7955 Morgan Orchard Suite 524 +Port James, WA 90169",1945-06-21 14:15:21,25:b2:01:0e:13:9b,jennifer63@gmail.com,img/obama.jpg +Kelly Jones,552-98-8001,70876,"9736 Richardson Mountain Apt. 455 +Elizabethstad, AK 15963-3364",2012-05-15 10:43:09,69:d3:07:aa:7b:3e,fwatkins@jordan-valencia.com,img/obama.jpg +Michael Ford,177-07-1819,07590,"834 Mcintosh Landing Apt. 044 +East Jennifer, MP 53529-4158",1996-06-01 06:31:23,28:65:b8:dc:c4:58,wjohnson@whitehead.com,img/obama.jpg +Daniel Vargas,491-54-5699,06684,"30797 James Neck +Mcleanbury, PW 63937",2015-07-10 15:53:09,db:8a:0b:0f:ac:b7,julian19@hotmail.com,img/obama.jpg +John Morgan,590-53-4423,77386,"USCGC Richardson +FPO AP 75563-9236",1970-12-03 14:48:37,f4:0d:d2:5e:2d:df,ythomas@yahoo.com,img/obama.jpg +Matthew Harris,447-40-6859,86841,"Unit 8243 Box 3850 +DPO AP 55702",1961-02-19 15:55:31,56:ca:b0:b9:a3:c0,amorris@mccormick.com,img/obama.jpg +Jeffrey Benjamin,119-33-2695,00798,"182 Samuel Fort Apt. 542 +Port Davidmouth, PA 05799-1805",1936-09-05 22:57:12,bc:1c:0c:e5:c2:04,tpowell@fox-trevino.info,img/obama.jpg +Barbara Oconnor,398-85-1106,40913,"76925 Lyons Radial Apt. 336 +South Jeffrey, GA 98398-9495",1925-11-11 15:02:38,5f:8a:4a:16:be:fb,derekdavies@gmail.com,img/obama.jpg +Jose Neal,491-66-0198,23403,"3840 Wilson Curve +Holderstad, GU 32232-5065",2009-11-27 14:22:27,7e:51:40:9e:31:e2,sawyerbrad@brown.net,img/obama.jpg +Tony Davis,042-35-2709,88101,"USCGC Prince +FPO AP 66110",1992-12-01 14:36:11,90:d4:79:18:d0:30,jeffrey07@kirby-stephenson.info,img/obama.jpg +Heidi Benitez,173-12-8932,59512,"444 Lloyd Plaza +Cooperfurt, MN 71819",1973-11-16 02:23:17,a8:da:02:bc:10:e7,kristin17@roberts.com,img/obama.jpg +Michael Thompson,895-88-3707,42908,"47127 John Burgs +Scotttown, OH 97218",1982-09-29 09:03:39,e7:f1:6a:e6:fd:98,ptrujillo@hotmail.com,img/obama.jpg +Terry Moyer,082-64-1354,43186,"9890 Rose Street Suite 584 +South Dakotastad, AZ 66215-7275",1974-08-04 19:55:15,53:ef:15:a8:d2:b4,ronald46@bell-whitehead.info,img/obama.jpg +Rose Rubio,549-57-4425,25572,"891 Ferguson Burg +New Shannon, GU 27930",1959-05-15 01:38:42,82:22:bc:63:36:3f,kathypeters@hart.com,img/obama.jpg +Samantha Willis,746-86-5808,68730,"5051 Smith Estate Apt. 430 +Perrymouth, MT 02823-3545",1941-11-24 11:53:09,cc:c9:6a:c9:98:dd,lisa93@yahoo.com,img/obama.jpg +Thomas Gutierrez,287-48-7778,64972,"17506 Schroeder Gardens +Shannonfort, RI 48033",1984-11-02 17:16:52,53:27:79:58:53:22,oochoa@hotmail.com,img/obama.jpg +Charles Neal,481-11-4699,37758,"PSC 3095, Box 9582 +APO AE 79446-5990",1943-08-29 08:36:04,65:79:1f:e2:51:c3,james47@hotmail.com,img/obama.jpg +Erin Allen,871-54-7290,15814,"78219 Lee Circles Apt. 365 +New Michaelfurt, HI 08134-5368",1948-05-11 09:59:05,f0:36:f6:b3:cb:21,jacksonlisa@gmail.com,img/obama.jpg +Christopher Coleman,811-28-9545,63646,"1458 Julia Lakes +Harrellville, MD 99627-4049",1950-11-13 13:15:25,58:fd:43:ed:da:b4,williamhenderson@yahoo.com,img/obama.jpg +Kristin Dixon,016-10-9021,48596,"425 Lara Drive Apt. 157 +Smithhaven, MT 31288",2011-05-13 01:28:21,f5:0c:03:a9:f7:8c,mooreamanda@yahoo.com,img/obama.jpg +Selena Young,443-40-9972,37297,"PSC 7111, Box 0098 +APO AE 99748",2008-02-06 13:34:50,dc:c6:5b:c5:a9:9d,ryan09@gmail.com,img/obama.jpg +John Hull,337-05-2002,86756,"8473 Clark Village +Port Jaime, CT 04890-0030",1973-09-04 15:32:23,0e:12:d9:26:d1:b3,millermichael@yahoo.com,img/obama.jpg +Pamela Medina,089-50-7552,14761,"91842 Jennifer Garden Suite 182 +Campbellton, HI 29165",1922-02-10 04:05:21,34:95:72:79:78:9a,ttorres@perez.net,img/obama.jpg +Gilbert Gonzalez,689-37-5551,56450,"854 Brown Walk +Derrickfurt, OH 59586",1943-07-09 23:38:20,93:52:39:d8:3c:4a,longjackie@yahoo.com,img/obama.jpg +Teresa Torres,129-43-8902,47139,"907 Andrew Neck +North Kelseyborough, VA 58041",2013-06-13 12:20:32,3e:9e:c9:85:8c:31,brooke72@le.net,img/obama.jpg +Steven Roberson,432-08-7542,40343,"995 Gray Mill +East Michael, TX 50130",1944-10-03 13:18:18,6c:fa:18:fa:e8:da,karenpetersen@hotmail.com,img/obama.jpg +Jodi Thompson,222-98-1537,36945,"1647 Katherine Forks +Kristiborough, OR 48931-3788",1969-09-30 20:01:55,4c:99:03:8c:fd:05,lspears@hotmail.com,img/obama.jpg +Christopher Travis,896-77-7771,13010,"287 Freeman Cliff Apt. 435 +East Joseph, FL 77486-8574",1935-10-01 00:29:22,e7:5c:3d:84:33:fd,walkerantonio@hotmail.com,img/obama.jpg +Mrs. Jennifer Jackson MD,780-53-0756,07350,"07660 Carrie Vista +Kennethberg, MS 91079-4086",1936-10-31 21:53:05,e4:59:42:52:ba:8c,william59@hotmail.com,img/obama.jpg +Joshua Ray,602-23-2510,77712,"0943 Lisa Lakes Apt. 032 +North Beth, SD 52027-9887",2004-04-17 13:14:30,7d:40:31:f7:bb:4d,christianjose@hotmail.com,img/obama.jpg +Mrs. Alicia Sherman,104-03-5038,62132,"138 Amber Overpass +Sandrafort, AK 03938-2769",1977-07-17 17:17:03,59:f4:b8:61:7c:ff,derrickperez@hotmail.com,img/obama.jpg +Dan Atkinson,844-24-2827,30596,"527 Samantha Keys Apt. 329 +Lake Kathryn, WA 90917",1964-11-25 07:44:10,ec:25:b2:b1:d5:61,peterssara@hotmail.com,img/obama.jpg +Tamara Norman,184-35-7356,28974,"5386 David Fall +North Josephbury, NJ 34299-0361",2006-04-09 13:29:17,ce:c7:64:b8:40:a0,jay77@ramsey.info,img/obama.jpg +Bradley Smith,275-69-6386,58004,"52411 Virginia Forge +North Yvonne, OH 55157",1952-08-23 02:40:45,14:17:07:c6:6b:d9,omartin@sims-ellis.org,img/obama.jpg +Danielle Gutierrez,833-19-9419,26375,"18961 Gibson Light Suite 639 +Port Samuelborough, LA 67242",1965-12-31 00:25:45,f6:8a:e4:57:61:c2,clarkevictoria@yahoo.com,img/obama.jpg +Eric Johnson,619-84-4646,09954,"88750 Jeffrey Burgs Apt. 747 +Colleenville, FM 75526-1771",1918-10-19 16:08:41,4b:a1:4e:dc:18:be,sullivancody@johnson.info,img/obama.jpg +Justin Duran,445-80-9886,77665,"465 Eric Plaza +New Melaniefort, GA 71637",1935-01-05 08:41:48,8f:d8:30:bc:58:c0,nicolefisher@allen.com,img/obama.jpg +Anthony Hernandez III,131-81-7029,38860,"68360 Matthew Points Apt. 049 +Lake Lori, VA 68374-9849",2007-02-26 11:36:54,6e:57:83:2f:bb:6f,jonathanroberts@gmail.com,img/obama.jpg +James Harris,678-52-5571,96855,"4195 Lara Centers +West Normanberg, SD 39715",1934-10-21 23:05:21,75:a5:8b:b8:77:d9,djones@hotmail.com,img/obama.jpg +Brandon Cooper,719-24-4562,33089,"PSC 3422, Box 5832 +APO AE 44624-0817",1934-03-10 17:01:42,4e:53:92:d0:b7:f7,barkerkelly@gmail.com,img/obama.jpg +Jessica Rogers,593-91-5056,73976,"USS Munoz +FPO AP 62419",2000-12-15 21:07:05,e7:48:13:3c:0b:38,daisyrodriguez@hotmail.com,img/obama.jpg +Dylan Adkins,442-90-7721,46451,"39651 Erin Brook +Lake Katie, NY 69362-6938",1948-03-03 09:03:12,d3:89:2b:a2:a2:05,jperez@hotmail.com,img/obama.jpg +Bradley Moore,189-83-5336,72055,"3124 Daniel Streets +Rogerborough, AR 46832-3552",1950-09-27 14:25:52,04:99:a6:8c:87:13,dsosa@yahoo.com,img/obama.jpg +Sarah Hicks,167-27-0549,16836,"914 Karen View Suite 001 +Robbinsburgh, ID 55303-6973",1947-07-30 15:51:30,9d:72:ad:85:cb:96,taylorjustin@fernandez.org,img/obama.jpg +Brandon Baker,797-04-1246,33825,"USNV Thomas +FPO AA 26135-0411",1967-03-22 08:47:18,28:33:53:4e:43:29,william01@hotmail.com,img/obama.jpg +Vanessa Hernandez,457-56-4549,21862,"904 Shaw Pine Apt. 612 +Lake Natalieshire, SC 57984-1136",1984-10-22 10:05:30,42:66:c2:6f:c1:16,thomas12@gmail.com,img/obama.jpg +Ashley Steele,596-56-0161,30983,"70513 Bobby Springs Apt. 340 +West Sandraport, OH 27967-4840",1998-11-08 04:54:06,7d:0f:87:8e:86:ef,nicoledavis@baker.com,img/obama.jpg +Phyllis Shepard,141-86-6990,84512,"28344 Whitney Parkways +New Mollyside, MA 59914-2445",1986-12-19 03:25:39,f5:92:1b:f7:de:96,silvaclaudia@mann.com,img/obama.jpg +Renee Lucas,548-42-0270,26863,"308 Abbott Ridge Apt. 533 +Port James, MT 89014-7478",1978-03-21 05:10:03,fd:6c:8e:c2:b3:3f,vbailey@gmail.com,img/obama.jpg +Latoya Villanueva,311-18-3295,66186,"6195 Lamb Throughway Suite 993 +South Julie, GA 75218",1954-06-22 09:41:10,71:fa:54:47:e8:37,watersjennifer@gmail.com,img/obama.jpg +Stephen Ramirez,028-03-1770,79789,"407 Randolph Lodge +Port Ryanland, IN 42935-6442",2004-10-01 18:39:04,bd:61:16:dd:6f:d7,jarvisaimee@jimenez.info,img/obama.jpg +Brian Moyer,175-22-0875,15990,"4806 Dean Path Apt. 763 +Chapmanfurt, MS 47246-9107",1931-05-06 22:49:55,00:a2:b1:5d:9f:b7,joshuawatson@gmail.com,img/obama.jpg +Catherine Moran,714-94-9498,62170,"PSC 4221, Box 2788 +APO AP 30880",1995-05-03 20:21:58,73:6f:d5:1f:b4:0d,courtneyrowe@hotmail.com,img/obama.jpg +Sean Bowman,713-57-0942,61366,"830 Michelle Haven +East Kevinfurt, IL 28513-8727",2016-04-24 02:03:02,c9:18:07:21:25:65,philipking@cunningham.org,img/obama.jpg +Thomas Castro DDS,820-28-3569,31667,"33315 Kaitlyn Heights Suite 232 +South Malik, IL 30263-5624",2012-09-06 18:42:21,f6:8c:12:72:75:dc,mmiles@hotmail.com,img/obama.jpg +Nicole Rodriguez,107-94-3784,53738,"Unit 6527 Box 4465 +DPO AA 96676-4265",1948-11-09 03:02:38,7f:5d:89:8d:33:5b,chadortiz@meadows-sherman.org,img/obama.jpg +Brandy Nichols,584-15-6508,30834,"32903 Santos Neck Suite 026 +West Whitneyview, OR 18553",1983-05-07 18:54:58,e5:d7:5f:76:4d:1f,lemichael@yahoo.com,img/obama.jpg +Robert Bean,793-37-4701,92148,"7301 Murray Roads +East Amyburgh, KY 03190-8064",1927-04-14 02:07:40,fd:d2:c1:91:3d:3d,taylor40@gmail.com,img/obama.jpg +Margaret Owens,232-81-9410,22898,"Unit 6959 Box 2298 +DPO AP 72425",1936-07-06 17:48:43,4a:d8:51:d3:fa:bf,ericksonamy@yahoo.com,img/obama.jpg +Matthew Valenzuela,533-61-3182,74271,"5923 Krueger Squares Apt. 780 +Melanieburgh, OK 87840-7250",2014-07-16 18:36:19,ba:ba:44:97:61:79,coltonturner@mitchell.org,img/obama.jpg +Wendy Jones,550-90-1963,41880,"3020 Long Track Suite 238 +Timothyberg, MI 81311-2058",1934-11-10 06:59:16,8b:98:02:e2:6a:f7,bushwilliam@yahoo.com,img/obama.jpg +Nicholas Carson,091-18-7200,10310,"5878 Gray Streets +West Trevor, ME 31679",2010-05-18 05:29:30,97:65:76:29:54:67,jameshorn@wheeler.org,img/obama.jpg +David Owens,222-83-1686,45099,"229 Taylor Wall Apt. 667 +South Kellyberg, OH 04564-5669",1935-02-08 15:29:38,90:6d:90:fd:3c:c7,buckdanielle@yahoo.com,img/obama.jpg +Courtney Foster,061-90-1739,86678,"5911 Roberts Extensions Apt. 971 +Kevinshire, VI 61807-9597",2007-09-01 09:23:50,e3:1e:4b:81:50:e5,catherineburton@patton-aguilar.com,img/obama.jpg +Dawn Smith,102-87-0402,74915,"USCGC Moses +FPO AE 98971-3450",1935-02-01 04:48:09,ea:3b:12:b8:14:c0,patrickmontgomery@hotmail.com,img/obama.jpg +Eric Gibson,745-93-4838,49369,"1532 Davis Port Suite 126 +West Brandon, KY 56010",1977-06-06 14:38:23,24:b3:b9:f5:2c:c5,bcharles@holt.com,img/obama.jpg +Martha Boyer,522-28-0990,33553,"465 Leslie Views +Mitchellfort, MA 98114",1975-11-06 15:30:05,c9:67:47:ad:3b:8f,michael46@yahoo.com,img/obama.jpg +Amy Rodriguez,011-86-8920,13769,"6200 Kelli Loaf +North Davidview, ID 05717",1988-01-13 05:51:28,1e:7a:f0:56:cd:aa,vweber@gmail.com,img/obama.jpg +David Scott,029-75-4000,64867,"8258 Chaney Track Suite 824 +North Malikshire, ME 95130-9354",1939-10-22 06:23:06,b6:c1:ed:99:9e:e4,jasmine77@gmail.com,img/obama.jpg +Beverly Wilson,312-68-8638,13941,"201 Wood Loaf +Jenniferbury, TN 88163",1996-09-04 03:56:32,0a:da:fd:df:b3:99,brittany57@hotmail.com,img/obama.jpg +Kimberly Adams,888-86-5540,64170,"468 David Glen +Mcbrideside, IN 07638",2008-08-19 08:59:14,cd:f8:fd:2d:d9:79,susan68@hotmail.com,img/obama.jpg +Ryan Espinoza,888-40-4429,44064,"7000 Humphrey Vista Apt. 433 +Larryborough, CA 76831-4979",2006-09-10 02:17:11,8d:5a:eb:58:2b:35,joshua05@anthony.biz,img/obama.jpg +Charles Wiggins,752-51-8815,21751,"0582 Elizabeth Ville Suite 417 +Lake Sarah, AR 48886-3079",1949-11-18 04:21:49,10:b6:94:a6:ea:a0,rivassarah@harris.net,img/obama.jpg +Cheryl Waller,570-06-9200,54562,"174 Taylor Fields +Angelaborough, MD 89123",2013-05-01 06:27:25,3c:76:e0:18:ac:70,michellewagner@rice.com,img/obama.jpg +Michael Anderson,190-88-4816,42990,"USNS Bell +FPO AA 50788",1946-05-27 12:32:30,97:8f:1f:6a:57:f1,arthurmiller@wilson.com,img/obama.jpg +Jason Murphy,133-47-9512,56191,"15014 Debra Common Suite 822 +Scottview, TN 66999-3965",1975-08-23 21:05:12,a4:75:1e:8c:da:d0,kentjulie@gardner.com,img/obama.jpg +Angel Christensen,016-93-9630,27686,"518 Melissa Summit Suite 559 +New Christopher, OH 17186-0053",1969-10-04 18:26:09,a9:d4:8d:28:02:15,terry12@valdez-robertson.net,img/obama.jpg +Julie Cantrell,550-37-4293,95063,"18525 Schroeder Springs +Potterhaven, SC 65007",1928-03-20 20:54:43,fa:80:d5:4e:b2:b8,cdoyle@hotmail.com,img/obama.jpg +Richard White,156-26-9092,62815,"Unit 9922 Box 4195 +DPO AP 98896-7867",1972-01-07 20:55:49,b2:f6:60:d3:77:bb,adriana15@jones-stout.com,img/obama.jpg +Kevin Parker,796-85-9872,37619,"USNV Powell +FPO AA 63359-5722",2011-12-26 09:59:24,0b:ae:71:ba:13:59,spage@kelly.info,img/obama.jpg +John Harrell,279-38-7155,08954,"88234 Gutierrez Landing Suite 612 +Susanmouth, FM 48492-6182",1928-01-27 17:40:32,90:fc:42:b0:88:bc,brownlauren@steele.info,img/obama.jpg +Kelly Hill,241-83-5695,19111,"556 Gina Harbors +Jonshire, AR 23739",1980-10-09 22:17:07,45:dd:b8:8c:e9:3d,yyoung@montgomery.com,img/obama.jpg +Jacqueline Porter,159-77-4890,04038,"8105 Murphy Rest +Ruthview, MS 35428",1981-06-26 02:15:20,38:17:ff:39:4c:1c,harringtonbeverly@yahoo.com,img/obama.jpg +Rachel Gardner,763-82-8498,75705,"2212 Castillo Key Suite 902 +South Carolland, MT 17415",1971-02-15 17:42:39,e4:f2:07:a5:b0:68,osimmons@watson.net,img/obama.jpg +Cynthia Hopkins,140-24-4396,82775,"83247 Bryan Isle Apt. 727 +Lake Lauratown, MI 06039",1969-06-29 02:26:48,78:36:17:41:c2:fb,michaelgray@cunningham.com,img/obama.jpg +Kenneth Alvarado,717-02-8053,38812,"414 Caitlin Club Suite 891 +New Travistown, CA 25243-9634",1952-05-23 09:10:52,9a:05:65:b9:26:75,collinsjoshua@hotmail.com,img/obama.jpg +Casey Hernandez,271-23-5965,33364,"USCGC Sullivan +FPO AE 33607-5067",1956-02-24 10:31:41,4a:db:a3:73:54:c1,aanderson@williams.info,img/obama.jpg +Katie Carlson,215-82-4238,45543,"237 Gonzalez Gateway Apt. 541 +New Danielletown, MO 23509-7343",1926-12-11 02:16:54,e9:fa:6a:58:1d:de,bradleygillespie@gmail.com,img/obama.jpg +James Huber,072-24-1984,28940,"4350 Joshua Pines Apt. 524 +Garciaview, OH 41200-0653",1921-03-03 03:22:05,f9:e2:6e:f5:32:43,kevin07@miller.com,img/obama.jpg +Mary Foster,289-50-9561,05961,"00847 Debra Hill Suite 424 +Port Maria, SC 41151",1938-01-06 04:59:46,ad:08:11:e7:57:02,kruegerlaura@johnson.info,img/obama.jpg +Tiffany Carr,669-02-8241,52255,"470 Chase Gateway +Austinmouth, WV 05598",1983-10-15 21:41:22,a1:70:74:51:3a:88,taylormartin@yahoo.com,img/obama.jpg +Stephanie Hendricks,877-04-6423,24994,"00702 Harrington Radial Apt. 472 +Mcguireview, WI 79220-3047",1925-10-03 23:14:54,45:d4:6a:bb:a0:eb,petersonstephanie@harvey.com,img/obama.jpg +Maria Bailey MD,527-28-6341,90963,"780 Martin Bridge Suite 846 +Jasonstad, ME 07791",1987-01-13 16:41:36,9e:c8:b8:2d:2f:80,lsimmons@gmail.com,img/obama.jpg +Richard Mullins,679-41-8657,60924,"8044 Ochoa Flats +Hendersonburgh, LA 15778-5821",1951-09-10 05:26:20,dc:51:22:56:66:b8,petersmith@gmail.com,img/obama.jpg +Christopher Nelson,539-81-6280,66464,"91430 Robert Ferry +Heatherberg, VA 45585",1997-07-10 13:34:33,0e:fd:d2:15:17:20,charles13@bush-ali.com,img/obama.jpg +James Wagner,310-78-9193,35866,"Unit 5771 Box 4129 +DPO AA 17103",1968-02-19 10:51:53,d9:63:d9:15:5c:ba,chloe68@brown.com,img/obama.jpg +Wendy Allen,881-08-2352,02456,"17075 Donald Estate +Schmittside, ND 18688-8414",1947-05-29 02:08:15,a4:4d:b3:aa:b7:db,hatfieldalejandro@carter.com,img/obama.jpg +Kathy Davis,640-97-0646,85713,"50996 Jeffrey Cliff Suite 916 +West Melodyfort, MT 28275",1922-03-13 03:47:28,1b:75:c9:fc:a7:aa,whill@vega.com,img/obama.jpg +Charles Zimmerman,648-47-6890,18755,"0774 Leon Fields +South Christopher, DC 37180",1953-06-29 18:22:16,85:b5:02:a0:b5:40,sherryramos@olson.com,img/obama.jpg +Christopher Reyes,118-65-2142,15039,"258 Brian Stream Apt. 077 +Howemouth, ID 28448-6143",2005-02-06 12:56:32,8d:57:57:7e:e5:d8,gillregina@hotmail.com,img/obama.jpg +Kayla Taylor,379-21-1318,38147,"39732 Jackson Branch Apt. 970 +Lindaberg, PA 33079-0367",1920-09-19 02:41:20,b9:5a:af:cd:63:24,james73@yahoo.com,img/obama.jpg +Jacqueline Mueller,805-02-4139,82931,"9142 Merritt Wells +Brownshire, OK 83875-3700",1981-04-12 06:20:13,0d:82:cc:b3:c1:aa,dawn50@brown-rivera.com,img/obama.jpg +Amanda Zamora,878-74-9236,17692,"PSC 2010, Box 9455 +APO AP 22249",1920-11-07 13:06:19,b9:2f:50:10:f7:a2,tgonzales@jones.com,img/obama.jpg +Laura Daniel,178-12-1287,01990,"9863 Laura River +South Benjaminberg, ID 72937",2001-02-03 08:08:18,ae:6b:22:d0:c9:5d,ywiley@hotmail.com,img/obama.jpg +Mark Smith,840-90-4071,42143,"653 Courtney Mill Apt. 064 +West Allison, MN 13681",1927-11-10 15:55:59,df:50:6c:2f:a8:21,gandrews@montoya.com,img/obama.jpg +Michael Vargas,021-77-5197,17738,"27687 Kenneth Union Apt. 791 +Port Sheila, WA 38816-9091",1934-03-02 05:44:34,c8:ed:86:e7:31:5d,ahayden@clarke.com,img/obama.jpg +Nicholas Bishop,279-84-4680,54633,"910 Veronica Orchard Suite 902 +South Leslie, MD 32249",1960-04-07 02:50:04,be:b4:b2:89:cf:d8,preilly@adams.biz,img/obama.jpg +Kenneth Richards DVM,258-52-7970,11360,"3691 Sierra Walks +Andreview, LA 85742",1991-11-13 22:46:01,c2:c4:7f:97:36:ff,cassandra72@flores.info,img/obama.jpg +Jonathan Watkins,207-34-9347,03286,"324 Hall Spurs Apt. 502 +Lake Luis, MA 76666-9196",1987-07-06 14:31:32,77:3e:19:10:4d:1e,leblancbrenda@gmail.com,img/obama.jpg +Hayley Cummings,236-43-6993,05045,"3885 Robert Freeway +North Coreystad, AR 95183",1992-04-25 08:00:19,2f:a9:fc:c3:97:38,hilltyler@nelson.net,img/obama.jpg +Amy Newman,407-85-0252,67231,"909 Jones Meadow Suite 050 +Lake Rebecca, NM 61821-8505",1963-02-01 11:53:37,a3:0f:78:5a:f3:47,erin77@hotmail.com,img/obama.jpg +Nicole Miller,325-87-6703,24479,"85319 Jessica Parkway +Lake Davidchester, NV 16103-1897",1991-10-09 02:50:43,cc:8a:99:89:de:d0,mandy43@rivera.com,img/obama.jpg +Jennifer Salazar,217-44-6088,96283,"48547 Carrillo Ferry +Jessicastad, DE 31957",2002-10-13 23:31:00,19:c7:15:24:0f:11,kyle72@reyes.com,img/obama.jpg +Catherine Price,561-77-1031,32307,"2539 Willis Causeway Apt. 916 +Lisachester, FL 06436-6272",1975-06-23 06:55:03,c1:18:ad:d7:ec:ba,feverett@yahoo.com,img/obama.jpg +Maria Ruiz,337-21-9653,80363,"853 Cardenas Court +Alvaradobury, KY 51291-6105",1933-03-06 11:17:32,22:9e:a9:2a:de:b7,rachel13@clark.com,img/obama.jpg +Catherine Lucero,873-04-0523,76725,"08886 Odonnell Cliffs +Johnsonton, VA 13816-6210",1938-10-10 08:24:08,a3:7a:03:9a:cf:8d,jamesbrown@yahoo.com,img/obama.jpg +Oscar Clark,352-47-4225,65923,"57221 Wilkins Mission +Port Jamesborough, VT 95459",1986-08-07 15:16:34,16:aa:e0:8f:75:e0,perrybenjamin@yahoo.com,img/obama.jpg +Kelly Roberson,090-52-3135,64921,"235 Megan Loaf Apt. 561 +New Alexandramouth, MT 69531-7476",1934-11-19 05:39:06,33:8d:5f:9d:d7:f4,dsteele@patterson-leonard.com,img/obama.jpg +Michael Haynes,506-35-5987,80412,"11536 Palmer Pike Suite 846 +New Eric, AK 77616-8273",1986-10-16 01:32:11,82:be:5a:59:af:a5,montgomeryjason@hubbard.com,img/obama.jpg +Christopher Bates,339-16-7453,44164,"00524 James Circles Apt. 089 +Figueroaview, MS 73140",1966-04-19 21:51:13,8f:df:db:17:3a:b9,wbaldwin@torres.com,img/obama.jpg +Samantha Carson,844-09-3111,43064,"556 Raymond Plaza Suite 859 +Pittmanton, SC 97160",1989-08-06 04:46:42,92:6a:12:f1:c1:64,laurie00@gmail.com,img/obama.jpg +Vanessa Holmes,761-45-8870,32722,"USCGC Liu +FPO AP 13162-0759",2000-07-24 02:53:25,30:78:64:8c:a0:f5,richardmoore@gmail.com,img/obama.jpg +Bethany Deleon,440-69-0715,65054,"8695 Megan Fort +Deborahville, GU 97462-5977",1929-04-05 23:19:30,97:64:07:15:b0:37,michelle60@gmail.com,img/obama.jpg +Maureen Sutton,672-24-7642,67478,"5226 Carroll Lock Apt. 795 +Lake Kaylaville, ID 02646",1945-06-18 23:06:30,0e:1a:29:c8:a8:17,hernandezraven@hotmail.com,img/obama.jpg +Daniel Gonzalez,292-72-8952,64201,"3686 Mcintosh Springs +East Danny, DC 93117-1958",1960-09-20 06:13:38,30:18:3e:4d:03:84,andrea97@hotmail.com,img/obama.jpg +Matthew Ramos PhD,015-05-2469,84342,"60997 Scott Plains +Smithshire, ND 27629",1984-09-27 19:30:50,8d:bc:fd:83:7e:d5,chadmcdonald@freeman.com,img/obama.jpg +Jane Davis,850-20-4440,08333,"7155 Stone Rest Suite 341 +South Laura, CT 81863",1983-03-11 16:41:06,66:77:35:7a:33:59,jenna33@hotmail.com,img/obama.jpg +Corey Garrison,169-41-8848,34873,"1938 Amanda Streets +West Tinaborough, IN 65835-2481",1955-10-12 12:02:31,a3:67:83:e6:aa:bf,justinroth@hansen.com,img/obama.jpg +Kimberly Reyes,527-49-7655,47747,"18234 Gabriella Meadow Apt. 618 +Patrickstad, CO 08689-0678",1965-04-13 03:07:35,bf:1b:46:1b:52:51,robertslindsey@yahoo.com,img/obama.jpg +Jesse Foster,702-62-2412,84254,"48747 Lindsey Harbor +Carterchester, MT 55759",1935-01-11 18:34:35,fb:46:c4:42:10:5b,vjohnson@campbell.org,img/obama.jpg +Michael Russell,423-94-0820,70280,"2087 Chapman Mountains +Ruthport, FL 65938",2009-06-11 06:24:18,89:b2:df:c9:49:db,johnsonsara@hotmail.com,img/obama.jpg +Alejandra Brewer,818-48-3701,48348,"94315 Sutton Hollow +Jonesborough, MO 66920",1934-02-28 01:00:26,9d:bf:03:e4:c8:de,josephbarajas@gmail.com,img/obama.jpg +Chad Rivera,438-71-8223,09227,"9501 Compton Plains +East Dawnside, CT 02672-0630",1943-04-06 11:58:56,27:c7:7c:41:ac:42,rporter@hotmail.com,img/obama.jpg +Michele Baker,453-46-8834,96919,"4834 Renee Lock Suite 424 +South Michaeltown, MH 30596",1996-02-21 15:14:44,4d:b6:84:b9:3d:25,gonzalezandrea@hotmail.com,img/obama.jpg +Doris Richmond,495-48-5584,56566,"9535 Kerry Underpass +Breannamouth, OH 64609-0943",1965-07-19 12:37:37,4b:9f:52:10:76:1b,armstrongharold@phillips.com,img/obama.jpg +Kayla Barrera,312-18-3461,96623,"8202 Karen Springs +New Teresashire, ND 36367-6309",1923-11-18 16:20:19,22:57:69:0b:48:f5,camachokenneth@simmons-humphrey.info,img/obama.jpg +Jessica Bell,400-49-0669,90230,"USS Edwards +FPO AA 86771",1926-03-29 22:22:47,00:d2:48:d5:b5:d1,nicholasmason@yahoo.com,img/obama.jpg +Christina Shelton,447-11-7360,67104,"86519 Bernard Stream +Perryside, DC 36464-8566",1948-03-15 19:03:50,bf:7c:aa:cd:82:ac,kylecole@walton.com,img/obama.jpg +Joseph Goodwin,335-20-4638,04658,"1083 Garza Gateway Apt. 766 +Martinland, VA 91517-7871",1952-07-22 03:39:28,06:eb:67:7c:aa:ec,douglassaunders@hughes.com,img/obama.jpg +Timothy Benton,297-37-0227,19326,"92647 Barbara Vista Suite 848 +Adkinschester, VA 77789-9504",1932-02-14 05:06:57,4c:03:bb:c6:bd:d1,xjackson@gmail.com,img/obama.jpg +Vincent Cantu,132-74-2054,40045,"269 Hartman Passage Suite 545 +East Josephburgh, MS 14529",1996-05-05 21:18:17,bc:36:64:4e:b4:49,zgreen@gmail.com,img/obama.jpg +Rebecca Adams,892-56-6585,76264,"772 Sheila Knoll Suite 521 +East Anthonyville, SC 96908",2012-04-10 00:01:00,54:f6:ad:3c:9d:2a,mary63@yahoo.com,img/obama.jpg +Michael Reese,812-64-0638,11820,"0948 Jeremy Camp Suite 439 +Stephensmouth, MS 99855",1976-04-22 11:24:17,c4:50:09:a7:8d:f5,cynthiamartin@gmail.com,img/obama.jpg +Lawrence Edwards,394-14-1423,29327,"8707 Sullivan Green Suite 284 +North Michael, WA 43546-5738",2006-05-14 23:58:39,2e:d8:ef:b2:92:6b,grantjohn@gmail.com,img/obama.jpg +Christy Ayers,761-11-2000,04876,"USCGC Jones +FPO AP 23842-4139",1958-05-23 06:26:54,f9:ef:f6:60:bb:e3,gonzaleztonya@mills.com,img/obama.jpg +Miss Elizabeth Henderson DDS,898-54-6298,73264,"4017 Martin Camp Apt. 150 +North Michaelville, HI 29058-7772",1995-02-24 04:55:12,27:b5:5a:1f:42:5a,bwinters@davis.com,img/obama.jpg +Christopher Garcia,253-98-2664,37219,"04194 Kirby Fork Suite 149 +Wilsonville, WI 49767-6133",1923-03-23 14:13:23,ff:e0:36:12:75:c3,krobinson@gmail.com,img/obama.jpg +Carol Hogan,585-22-1829,35661,"541 Elizabeth Union Apt. 613 +South Tiffany, GA 96004",2013-01-23 10:53:03,cd:07:27:d4:41:5f,jessicagordon@turner-cruz.biz,img/obama.jpg +Victoria Franco,374-56-0774,76371,"558 Moore Keys Suite 780 +Port Teresamouth, GU 97850-9589",1957-04-23 13:21:08,fd:5a:7b:4f:c2:4f,vincentemily@hotmail.com,img/obama.jpg +Nicholas Curtis,352-27-1812,42550,"52816 Robert Fort Suite 457 +New Stephenland, MA 49385",1967-10-22 18:51:25,e4:5e:ed:c2:0b:a5,dwright@lopez.com,img/obama.jpg +Amy Ruiz,706-55-3878,57131,"5015 Richard Lake Suite 561 +East Austin, MN 92834-3811",1960-11-24 08:31:27,e3:71:57:29:72:82,matthewbowman@valentine.net,img/obama.jpg +Shane Martin,395-51-4342,23455,"9869 Erik Wall +Port Lauren, AK 74819",1962-06-12 12:59:12,d6:78:b6:b2:e1:25,westronald@owens-wilson.com,img/obama.jpg +Steven Parker,831-10-2629,88736,"PSC 0973, Box 2445 +APO AP 11020-6694",1994-11-17 04:22:48,04:3a:22:70:11:57,tpace@johnson-ryan.info,img/obama.jpg +Kirk Francis,149-63-2028,79192,"Unit 0271 Box 6548 +DPO AP 95666-9046",1994-08-10 13:42:04,09:bb:19:4b:a2:9e,sthompson@sanchez-wheeler.org,img/obama.jpg +Kristin Parker,693-21-0670,60502,"2822 Shaw Extension +Wigginshaven, NV 94009",1941-09-29 00:49:43,41:fe:06:f8:5a:5f,denisemosley@yahoo.com,img/obama.jpg +Grace Hardy,206-42-2307,06685,"7792 James Mountains Apt. 724 +North Lisa, AR 00358-6454",1951-07-13 00:15:03,03:6b:23:3c:10:cf,lisacarey@lucas.com,img/obama.jpg +Phillip Dominguez,413-36-3153,61446,"405 Calvin Plains Apt. 846 +Fosterview, MN 62177",1938-10-22 06:20:50,e1:f0:88:2a:f1:8f,michealcole@gmail.com,img/obama.jpg +Diane Jones,662-73-6607,98578,"562 Alex Valleys Apt. 412 +Port Markside, MO 51458-1472",1950-03-21 12:13:54,2b:1c:68:c6:b2:92,juan06@robbins.net,img/obama.jpg +Megan Robinson,606-34-5542,79809,"8777 Mary Haven Apt. 811 +Paulshire, AR 95333",2008-11-24 01:31:07,c1:ab:8d:97:a7:ce,ryanmiller@morris.info,img/obama.jpg +Timothy Hess,524-44-5853,78403,"333 Samuel Street +Johnsonberg, WV 80216",1991-10-04 23:36:06,6b:84:bc:76:9a:21,brownanthony@yahoo.com,img/obama.jpg +Larry Malone,665-53-8976,55603,"931 Victor Fords Apt. 763 +Melissamouth, IA 40704",1968-06-29 04:02:29,16:97:69:a6:f3:c9,jmorrison@yahoo.com,img/obama.jpg +Laura Marshall,854-22-7282,13111,"29757 Donna Ville +North Christianside, DC 07136-5904",1935-12-16 07:29:00,68:2e:3c:53:5e:98,stevenpatterson@gmail.com,img/obama.jpg +Adam Adams,732-19-7667,53790,"USCGC Miller +FPO AE 95919-0190",1964-05-19 07:59:31,dc:46:50:21:c9:e5,heidi97@yahoo.com,img/obama.jpg +Grace Castillo,419-50-8832,17912,"54430 Moore Squares Suite 565 +South Zachary, AS 91963-3728",1932-11-09 10:45:00,8f:28:35:43:cb:f8,ramirezmolly@turner-turner.com,img/obama.jpg +Mark Marks,166-54-6126,09204,"02708 Adam Manor +Stewartmouth, CT 47924-6643",1934-09-24 12:58:46,30:63:7b:4a:0e:80,crystalpetersen@hotmail.com,img/obama.jpg +Michael Chase,587-08-5106,09219,"PSC 6792, Box 2563 +APO AP 29123",1935-11-01 13:10:08,8d:31:2d:1a:ab:e5,emiller@calhoun.com,img/obama.jpg +Ian Anderson,492-11-6481,29306,"84208 Graham Tunnel +Berryborough, OH 40525-6643",1945-12-21 02:15:47,10:19:62:85:84:a5,davidfrey@logan.com,img/obama.jpg +Aaron Collins DDS,268-31-2965,08520,"4294 Eric Ports +West Michael, HI 82270",1945-10-22 23:08:13,d4:50:86:95:be:19,taylornicolas@gmail.com,img/obama.jpg +Jeffrey Roberts,289-19-7328,07137,"0167 Mason Ranch Suite 253 +Lisaport, VI 46688-9307",1966-08-11 23:46:18,8b:d5:c0:3b:a0:b3,victoriaschaefer@fleming.net,img/obama.jpg +Nicholas West,816-70-2527,44775,"872 Gonzales Mountains +Conleyborough, MT 86688-9646",1972-10-24 13:22:17,27:46:3e:f0:24:ad,fserrano@wood-bender.info,img/obama.jpg +Richard Peterson,161-92-6956,89713,"30712 Katherine Creek Apt. 426 +South Melissa, DE 80620-1750",1979-03-03 21:23:18,5b:f7:23:44:63:fa,gloriachung@harris.com,img/obama.jpg +John Lawson,221-26-5786,20923,"52582 Evans Keys Suite 071 +Adriennefort, MN 93713-8203",1964-05-09 08:57:43,ae:08:5a:33:1b:83,rodriguezalex@gmail.com,img/obama.jpg +Pam Dalton,149-23-2613,40543,"02143 Padilla Via +Nathanielchester, NV 59468-9741",2001-08-22 07:43:10,d5:23:6e:70:f1:7a,uarnold@aguilar-wheeler.com,img/obama.jpg +Derrick Reeves,329-87-3896,92595,"USCGC Chavez +FPO AP 28908-5834",1993-09-16 21:28:54,58:8a:0b:2f:5b:9c,baileycourtney@newman.com,img/obama.jpg +Melissa Marshall,265-63-9617,28160,"6227 Evans Shore Suite 439 +New Brenda, NC 88120",1994-07-30 06:07:49,67:dd:99:e7:8f:9f,ann90@hotmail.com,img/obama.jpg +Brad West,694-89-8024,07266,"USNS Boyd +FPO AP 36560",1942-07-13 13:46:02,63:08:4f:70:79:e1,vjohnson@day.net,img/obama.jpg +Harry Hansen,812-04-1471,48404,"01614 Smith Ville +Port Rachelside, NV 36047",1917-09-06 10:13:18,b4:3e:b7:9d:49:12,maryholmes@yahoo.com,img/obama.jpg +Jason Hughes,021-37-0878,19423,"33291 Baker Dam +Lake Christopher, IA 33921-9703",1940-03-13 17:23:28,1d:4d:a9:93:3f:d8,qsantiago@floyd.com,img/obama.jpg +William Thomas,571-64-4179,09142,"9404 Crystal Summit +West Traceyside, MP 21693",1928-12-18 13:11:28,90:a1:d8:06:51:c5,john57@hotmail.com,img/obama.jpg +Heather Ramos,207-61-1329,10190,"098 Cody Centers +Port Aprilland, VI 55873-9823",1934-01-07 00:44:35,67:b7:47:28:35:88,paula20@peterson.com,img/obama.jpg +Susan Mccann,486-47-2201,23595,"193 Paula Circles Suite 077 +South Kristen, NM 99300",1938-07-02 14:42:00,71:99:bc:96:fe:df,garysimon@yahoo.com,img/obama.jpg +Eileen Mills,259-70-6875,37483,"6366 Burns Divide +New Crystalberg, TX 59269-1608",1952-09-30 08:21:49,27:39:e1:3f:8f:74,williamshea@gmail.com,img/obama.jpg +Stephanie Sims,192-25-2938,77447,"326 Schmidt Parkway +Williamtown, AZ 49754-9305",1973-11-08 01:59:40,6a:1f:97:fb:ef:b5,mitchellmichelle@yahoo.com,img/obama.jpg +Roger Munoz,378-86-9782,49024,"482 Kennedy Parkways +Vanessashire, AZ 69127-5187",1947-05-25 11:38:09,a9:d5:8a:ca:f7:28,kingkristen@bailey.net,img/obama.jpg +Samuel Mcclure,754-69-3516,89637,"431 Delgado Keys +Martinside, VA 71811",1988-12-14 18:48:04,ec:64:be:9d:80:a1,mstevens@hotmail.com,img/obama.jpg +Michael Ryan,584-97-7351,60513,"20064 Jackson Camp Suite 556 +South Vanessashire, MN 14836",2002-03-05 09:07:54,27:f4:80:5a:92:e0,victoriajohnston@hotmail.com,img/obama.jpg +Chad Holloway,130-58-6853,52583,"055 Atkinson Drives +Jessicashire, ND 74889-3848",2003-12-05 03:41:33,66:0a:0c:e4:ee:f0,gmiller@martinez.net,img/obama.jpg +Carla Cooper,585-58-6783,13841,"357 Taylor Cliffs +New Justinborough, OR 55263-2959",1997-10-20 15:00:49,48:58:d0:c7:20:a6,travisstevenson@yu-gardner.com,img/obama.jpg +Nathaniel Riley,869-79-4379,25370,"3413 Elizabeth Cliff Apt. 415 +Kimberlyborough, IL 10308",1954-05-18 04:24:44,cb:5d:bd:a3:66:70,carreric@gmail.com,img/obama.jpg +Victoria Sutton,129-15-6528,24803,"69783 Jason Prairie Suite 631 +Chadstad, KS 20044-6848",2003-06-04 00:10:28,d5:0e:8d:37:0f:67,xschneider@yahoo.com,img/obama.jpg +Jeremy Martin,339-71-1188,27602,"81756 Brian Forge +Port Stephanieland, CA 65890-3727",1941-10-28 10:02:17,fc:66:ef:b3:25:71,srichardson@davis.com,img/obama.jpg +David Sherman,408-46-7889,06904,"6368 David Inlet Suite 464 +Melindachester, LA 82733",1974-12-05 17:44:30,fd:4e:f2:2c:55:d8,nancyhouston@yahoo.com,img/obama.jpg +Patricia Barron,020-10-6154,14081,"74955 Gonzalez Wall +Watkinsfurt, PA 30307",1954-04-29 12:13:28,84:91:4f:03:ed:1d,michaelferguson@york.com,img/obama.jpg +Jason Cummings,023-90-7820,31758,"18573 David Curve Suite 356 +New Barrystad, NY 84147",1928-02-12 02:49:19,51:7f:30:b2:fc:c4,zrivas@kennedy.info,img/obama.jpg +Heather Pham,785-73-9611,25477,"8452 Marcus Motorway Apt. 879 +West Cindyville, RI 89218-1166",1934-01-18 23:54:46,a2:39:22:67:c8:16,chad96@obrien.net,img/obama.jpg +Derek Baker,219-42-2103,19208,"3504 Justin Highway Apt. 679 +West Rachelport, HI 38009-0747",1989-08-23 00:53:17,1f:28:02:c4:49:ce,vbailey@oneill-cardenas.com,img/obama.jpg +Caitlin Franklin,812-84-0176,60854,"09177 Campbell Garden Suite 567 +Ramirezland, AR 16091",1927-06-04 22:06:05,12:eb:cd:87:a6:10,aelliott@hotmail.com,img/obama.jpg +Kyle Mercer,244-91-1138,62282,"439 Howard Curve Suite 541 +Hartport, MO 98822-8036",1917-12-18 06:47:04,92:77:f3:dc:47:40,jonlloyd@yahoo.com,img/obama.jpg +Jonathan Jacobs,353-82-5143,52349,"Unit 0981 Box 0534 +DPO AE 82413-2691",1959-02-05 11:10:46,6b:36:c7:c3:af:72,michealhicks@stevenson.com,img/obama.jpg +Shelia Harper,760-82-5141,37695,"1141 Jennifer Pass Suite 274 +Carlmouth, WY 11744-7092",1986-06-16 04:53:18,c2:94:a8:05:32:2e,shanedavis@hotmail.com,img/obama.jpg +James Jones,369-18-5440,54241,"25331 Lance Course Apt. 906 +Jonesport, GA 96741",1924-06-10 02:02:54,8f:3d:b6:87:98:e7,andrea42@gay.org,img/obama.jpg +Michael Boyle,876-85-3470,92036,"966 Christina Ports Suite 181 +East Todd, DE 84118",1957-07-02 20:53:30,50:1c:cb:e2:7b:d6,jennifer12@gmail.com,img/obama.jpg +Herbert Schultz,685-60-2931,62525,"65382 Taylor Plains +New Andrew, AZ 00769",1993-01-21 14:22:25,b2:d9:67:93:78:f9,ewilkins@hotmail.com,img/obama.jpg +Stacy Wilkerson,467-87-1752,36258,"74853 Blankenship Drives +Port Christopher, CT 62638-8896",2007-04-06 05:05:10,7b:aa:17:9b:8e:14,latoyacole@yahoo.com,img/obama.jpg +Matthew Walker,375-53-3121,80531,"6896 Allen Station Suite 058 +Nancyborough, KY 19073",1961-11-11 17:05:29,d9:13:e5:a2:5b:5f,mark45@hotmail.com,img/obama.jpg +Nathan Little,271-56-5362,31824,"5607 Harris Springs +West Joseph, ID 45380",1989-06-16 15:18:00,34:0d:18:69:ea:05,beverlysmith@johnson.com,img/obama.jpg +Susan Williamson,711-69-3000,35679,"829 Johnson Mountain Suite 727 +Richardville, GU 40069-5696",1919-04-17 20:51:20,b3:97:77:2b:6c:b0,tami68@cook.com,img/obama.jpg +Jennifer Wright,771-99-4629,93583,"7304 Cody Flat Apt. 596 +North Elizabethland, UT 75149",1940-05-30 04:57:37,73:9a:49:d6:82:53,hermanann@gibson-davis.net,img/obama.jpg +Andrew Combs,301-46-0118,06457,"907 Justin Cliff Suite 468 +Port Robinborough, NV 30658",1986-02-10 20:51:30,cf:54:10:84:2e:26,olsondaniel@yahoo.com,img/obama.jpg +Catherine Lee,362-07-0003,19548,"USS Riley +FPO AA 18665-5774",1982-05-17 18:28:31,60:87:44:34:39:f3,richard68@yahoo.com,img/obama.jpg +Andrew House,082-47-7493,19194,"91035 Jay Vista Apt. 220 +Lake Jesse, AS 89977",1922-06-29 05:50:16,c0:98:01:b1:a7:b6,yorkscott@hotmail.com,img/obama.jpg +Courtney Foley,348-09-1440,16174,"99014 Griffin Track Apt. 348 +Waltonshire, ND 31482",1954-09-06 11:21:17,75:33:ea:5d:bf:39,dicksonkelly@hall-gonzales.com,img/obama.jpg +Jose Collins,380-05-0358,09743,"923 Gamble Inlet Suite 935 +Shaneton, SD 07823",1921-08-30 07:52:00,6d:22:96:1b:36:69,sanderscarla@hotmail.com,img/obama.jpg +Felicia Jordan,455-88-7317,86671,"2981 Lee Manors +Coryburgh, TX 48183",1990-04-30 18:33:45,0d:09:4e:3f:46:cf,marquezjames@schwartz.com,img/obama.jpg +Nicholas Meyer,408-65-9583,76559,"85682 Hernandez Camp Apt. 840 +New Brandytown, RI 49614",1920-07-19 11:13:55,5e:48:64:dd:08:e2,hurleywanda@johnson-ellis.com,img/obama.jpg +Theresa Williams,364-87-6118,48526,"567 Chelsea Shore Suite 125 +Lake Thomas, KS 04855",1996-11-30 21:40:52,10:d4:0c:f8:15:70,matthewchambers@holmes.com,img/obama.jpg +Gina Chang,535-05-5438,56671,"142 Mary Divide +Lake David, NY 10006",1943-02-23 03:04:30,e2:16:fb:0d:61:43,maryedwards@yahoo.com,img/obama.jpg +Ms. Courtney Barrera,748-22-8067,29726,"7924 Barker Rapids Apt. 987 +Angelashire, NV 18890",1936-04-15 14:41:57,96:df:d6:d0:6a:03,barnesjessica@smith-martin.com,img/obama.jpg +Paul Walters,602-04-7006,25663,"526 Meadows Bypass +West Rose, NY 36829-5018",1922-12-20 23:48:27,52:9f:ae:cf:03:a5,vbarrera@hotmail.com,img/obama.jpg +Dr. Nicholas Martinez MD,873-71-3549,36161,"3486 Chloe Crest Apt. 572 +Loganmouth, SD 23579-5800",1946-01-22 19:20:23,db:89:a6:33:01:11,david19@gmail.com,img/obama.jpg +Victoria Woods,540-28-2410,18779,"3698 Walker Groves +Wolfeberg, NV 18562-7110",1928-07-28 23:41:28,1b:ff:ac:2b:20:4e,xhicks@shields.biz,img/obama.jpg +Steven Obrien,400-78-1810,40988,"403 Hahn Oval Suite 556 +West Eileenborough, NE 39857-8758",1967-01-21 05:42:04,41:85:8c:b2:87:9c,handrews@yahoo.com,img/obama.jpg +Kyle Lindsey,160-03-6004,80159,"64379 Padilla Ports +Port Christophershire, NM 35308",1973-12-10 13:54:10,3e:4f:e1:f9:66:22,joshuasmith@simmons.com,img/obama.jpg +Mrs. Rebecca Hood MD,500-31-3382,82427,"6002 Williams Fort +Alexshire, WY 38669",1926-08-31 16:43:09,25:b1:fd:7e:d8:8f,charlesford@yahoo.com,img/obama.jpg +Mr. James Stevens,792-14-2136,29730,"78174 Mills Fords Suite 671 +Jenkinsstad, PW 98288",1938-10-04 19:24:57,c2:5e:b3:48:88:29,debbie86@gmail.com,img/obama.jpg +Robert Walker,080-83-2208,95346,"USS Webb +FPO AA 88000",1960-02-22 19:07:45,c7:e4:82:f9:42:64,johnsonkelly@gmail.com,img/obama.jpg +Patrick Sawyer,848-35-0677,96190,"93980 Dixon Ports +Chloeview, SC 56055-6616",2001-06-11 19:34:55,82:64:df:8f:4e:92,dylanmullins@yahoo.com,img/obama.jpg +Andrea Burke,165-27-8436,11187,"7637 Danielle Plaza Apt. 964 +South Cherylborough, NE 13249-2029",1979-01-09 13:26:25,9f:88:2b:53:02:64,lisa30@wilson.biz,img/obama.jpg +Robert Jensen,315-21-9338,48755,"396 Danielle Harbors +South Michael, KY 18785",1978-06-09 04:54:50,a5:68:93:27:f7:91,kpowell@blake-callahan.info,img/obama.jpg +David Conley,678-72-8588,73378,"623 Tiffany Corners Suite 363 +New Patriciafort, IN 86837-5544",1932-08-07 14:09:04,88:1c:12:7a:bf:22,laura23@newman-nelson.info,img/obama.jpg +Monica Price,316-40-8131,97802,"76866 William Loaf +East Nicoleburgh, WI 01423-8212",1923-10-06 03:05:24,5f:b5:75:18:e4:a6,sandra18@gmail.com,img/obama.jpg +Jason Mccarthy,766-40-8984,06900,"55539 Mcdaniel Pass Suite 651 +Stricklandland, IN 30507",2015-06-22 07:57:11,ca:53:3b:83:ee:ec,sdavis@lopez-martin.com,img/obama.jpg +Joseph Dawson,368-80-1975,33130,"7928 Randy Stream +Port Brucebury, NH 11104-4808",1988-12-26 17:39:30,3f:34:88:fa:91:59,nicole40@brady.com,img/obama.jpg +Joshua Graham,782-33-3261,65366,"503 Randy Circle Suite 332 +North Catherine, NJ 28913-8309",1999-05-28 17:09:38,60:41:f1:b6:b5:80,yvonnecarter@gmail.com,img/obama.jpg +Sean Clark,862-06-0915,71982,"4166 Miller Mission +Port Mario, KY 93481",2017-03-04 11:42:44,96:ec:a5:59:bd:da,whitematthew@welch-patterson.com,img/obama.jpg +Jordan Fisher,644-32-7190,00991,"9733 Jeff Turnpike Suite 603 +Olsonview, MA 00945-3128",1981-07-14 12:25:44,12:73:ca:f3:7d:0c,zgonzalez@gmail.com,img/obama.jpg +Bradley George,022-07-6791,46230,"46188 Amber Trafficway +Fieldstown, ME 77043-0704",1976-06-13 07:50:31,2b:bd:3b:85:41:c1,desireewilkerson@gmail.com,img/obama.jpg +Danny Johnson,586-93-4028,58970,"413 Hodges Green +Kristinaland, PR 13566",1955-11-05 00:05:02,85:0a:ad:10:2a:d5,jamesvasquez@marshall.com,img/obama.jpg +Daniel Richardson,404-27-1937,38682,"Unit 7344 Box 1322 +DPO AP 99258",1997-04-23 11:25:52,d7:cc:9f:7f:6f:7c,martha38@hotmail.com,img/obama.jpg +Mrs. Julie Abbott,868-73-0599,29400,"757 Matthew Trace +North Savannahfurt, VA 24406",1967-09-07 19:50:58,68:33:04:34:f3:93,george40@hotmail.com,img/obama.jpg +Douglas Peterson,762-12-7193,21487,"740 Bell Forge Apt. 468 +Mercerville, VA 04291",1997-08-14 12:45:02,a3:b0:28:2f:e2:90,angelajohnson@gmail.com,img/obama.jpg +Thomas Hamilton,142-10-6526,12949,"94577 Jay Street +New George, OK 20364",2013-10-16 06:00:39,19:56:e7:44:a4:3a,mollyrodriguez@gmail.com,img/obama.jpg +Riley Taylor,022-32-7699,59639,"813 Steven River +Hillview, OK 04929-7746",1927-04-19 14:46:10,6b:5c:bd:17:9f:3b,jared49@perez.com,img/obama.jpg +Christopher Duran,259-31-8086,51617,"6784 Charlotte Mountain Suite 129 +New Susan, OH 23104-1513",1927-04-30 18:45:20,49:0f:58:96:b0:44,maryhensley@jackson.com,img/obama.jpg +Cory Martinez,685-14-1717,74126,"266 Cindy Courts Apt. 820 +Lake Catherineton, MN 70363",1939-03-23 05:27:35,e8:07:3c:3b:d4:9a,cheryl72@hotmail.com,img/obama.jpg +Sherry Briggs,567-81-4791,46416,"977 Butler Hill Suite 597 +Howellburgh, OK 28136",1919-12-07 09:56:34,c7:30:ce:4b:1b:f3,kellyhenderson@yahoo.com,img/obama.jpg +Wanda Marshall,237-92-1439,17492,"53278 Bryant Dam +Christopherfurt, NH 51393",1978-07-03 14:00:01,c9:d3:17:e9:56:86,david41@yahoo.com,img/obama.jpg +Aaron Dudley,229-40-7150,91389,"4703 Young Hills +Ortizchester, PR 77507",1979-04-16 01:44:51,9c:87:82:e8:64:c8,wyoung@hotmail.com,img/obama.jpg +Christopher Weaver,483-69-0153,06954,"85928 Martin Fort Suite 102 +East Steven, NY 16944-3023",1935-02-27 06:04:36,d6:0a:7f:dd:aa:90,moralesmichael@hotmail.com,img/obama.jpg +Keith Diaz Jr.,732-53-4024,11833,"570 Jeffrey Brooks +Port Julie, NH 33020-8044",1928-05-19 08:57:16,de:a0:50:66:a7:60,jared92@gmail.com,img/obama.jpg +Steven Brown,462-43-9629,24780,"274 Kevin Station +Amandaland, WI 39299-8300",1939-08-28 02:24:37,88:94:40:c5:06:dd,cole52@adkins.com,img/obama.jpg +Eric Higgins,642-70-5315,82814,"USCGC Allen +FPO AP 61424",2014-06-18 15:27:32,84:f4:d4:6c:30:3b,ireyes@nichols-pham.org,img/obama.jpg +Natalie Nunez,319-30-2180,68955,"0553 Charles Heights +Sandersside, MA 53467-1813",1939-01-17 03:38:37,5f:78:05:03:a6:9d,katelyn94@hopkins.com,img/obama.jpg +James Murray,410-97-7942,81949,"886 Douglas Lane Apt. 670 +West Danielleside, IL 00107",1927-03-07 18:08:09,a2:e5:45:e8:51:f5,jshelton@hotmail.com,img/obama.jpg +Amanda Hernandez,736-87-7044,14933,"PSC 8756, Box 4031 +APO AA 70977-8432",1962-12-18 07:58:05,28:1c:00:e9:2d:e5,allenshelia@hotmail.com,img/obama.jpg +Justin Torres,869-54-3693,73955,"977 Antonio Isle +Adamschester, DC 45815-7394",1965-11-23 02:26:24,e6:18:ec:e4:fe:a8,rcisneros@williamson-bishop.com,img/obama.jpg +Jesse Russell,358-98-2418,27564,"71075 Julie Walk Apt. 246 +South Nancy, WA 99453-8517",1966-06-14 07:10:32,8a:1a:69:c1:52:18,fordchristopher@hughes-kelly.net,img/obama.jpg +Ryan Olson,210-68-1692,64626,"USS Barber +FPO AP 25329",1991-12-16 00:12:28,1d:17:90:e1:4b:83,simmonskatrina@gallegos.com,img/obama.jpg +Cory Lewis,233-01-1968,69910,"9862 Amanda Highway Apt. 581 +West Randall, FM 37347-3704",2002-10-31 14:10:53,de:4f:b8:e2:07:cc,uperez@dudley.com,img/obama.jpg +Kristen Gonzalez,319-82-0616,41478,"Unit 9278 Box 5671 +DPO AA 46575-2861",1973-04-24 02:30:45,a1:c9:05:de:2a:1d,jeremiahwilcox@daugherty.com,img/obama.jpg +Kevin Ellis,869-03-2355,79411,"9528 Mary Cliff +Barrerachester, SD 90739-1912",1959-11-05 13:10:59,ca:f6:e8:0c:73:49,melissa44@miller-myers.com,img/obama.jpg +Mrs. Shelly Lloyd DVM,855-53-0170,47436,"USNS Patterson +FPO AE 21425",1952-12-25 03:08:23,6f:b0:69:fd:1e:c2,samanthapugh@gmail.com,img/obama.jpg +Whitney Todd,801-18-8151,44346,"187 Owens Oval Suite 151 +Port Ethan, WI 58210-4765",2011-07-03 04:19:54,1a:54:c0:1c:fb:55,jamie64@gmail.com,img/obama.jpg +Ashley Williams,278-12-7901,01025,"44313 Jane Junctions +Hessport, VA 00030-9058",1954-10-16 12:04:23,c8:d7:83:a5:c0:69,pughmartha@nguyen-johnson.com,img/obama.jpg +Charles Butler,717-76-5403,10976,"80486 Parker Hill +Zimmermanbury, NH 23077-6340",1972-10-05 17:49:26,c5:f5:77:0b:ea:10,barbaranorton@yahoo.com,img/obama.jpg +Don Marsh,395-37-7395,53067,"43732 Potts Fork +Josefort, ME 95269",1965-04-11 11:41:54,4d:52:62:91:01:1d,jenkinsamy@hotmail.com,img/obama.jpg +Bailey Burch,157-68-5289,92220,"05410 Sherman Court Suite 493 +North Richardfort, NC 77744-5705",1989-10-03 01:44:48,63:c6:f3:84:7a:e3,heidi27@hotmail.com,img/obama.jpg +Destiny Marks,246-99-7800,06733,"8171 Donald Extension Apt. 513 +New Eugeneside, MH 23921-1028",1934-02-14 15:57:08,f4:8b:7d:6a:1e:d3,howelljill@gmail.com,img/obama.jpg +Natalie Gonzalez,084-95-8849,23706,"678 Lloyd Way +North Lisa, NY 73061-1819",1971-11-19 19:25:59,21:4d:51:16:68:4d,lcarter@george.com,img/obama.jpg +James Stone,362-16-9084,81903,"USNS Carter +FPO AP 32091-8080",1978-08-20 02:36:36,56:f8:dd:79:58:23,erodriguez@yahoo.com,img/obama.jpg +Joseph Davis,747-32-8704,28567,"98408 Fowler Rapid +Eileenberg, PW 92095",2011-09-14 08:11:51,ca:1c:2c:c9:d4:f9,brittany34@owens.com,img/obama.jpg +Jessica Cunningham,738-68-9217,74304,"66515 Mark Summit Apt. 344 +South Alyssaburgh, NJ 60003-6271",1937-06-19 21:16:25,ab:bc:e7:31:d4:43,cantrellkevin@gmail.com,img/obama.jpg +Deborah Oconnell,340-24-0743,02761,"1206 Billy Divide Apt. 291 +Osbornefurt, WV 92237-8211",1977-10-07 07:02:27,98:07:9a:71:eb:f5,jenkinsalbert@reese.net,img/obama.jpg +Glen Davis,875-12-6480,46081,"5044 Casey Courts Suite 209 +West Shawnbury, CA 22900-2640",2015-05-14 06:00:12,2c:e0:9b:f0:41:43,oliverjim@hubbard.info,img/obama.jpg +Jaclyn Osborne,420-05-0009,32838,"7576 Andrew Prairie +South Christopher, UT 22152-5506",1955-11-29 07:05:19,2e:f8:7f:b1:5a:70,elizabeth63@gmail.com,img/obama.jpg +Nicole Collins,203-29-1624,82577,"65621 Young Wells +New Karen, AZ 81067-4406",1948-12-12 21:33:35,8a:bf:1b:de:e4:13,anthonyhancock@yahoo.com,img/obama.jpg +Mary Le,876-60-0557,24927,"65823 Laura Knoll Apt. 667 +South Karen, VT 40752-0174",2005-09-21 16:43:44,1c:54:ca:8d:93:da,tracey61@yahoo.com,img/obama.jpg +John Brown,504-78-2476,66793,"57347 Vincent Villages +Gregoryport, NC 71271",1974-06-12 17:18:26,e2:bf:95:84:fa:f9,brandon66@gmail.com,img/obama.jpg +Jay Lopez,048-63-5183,28596,"2258 Walter Forks Suite 643 +Jacksonborough, NJ 23644-7463",1923-04-18 22:39:12,f6:d1:f7:97:9f:f8,charles24@yahoo.com,img/obama.jpg +Stacy Combs,532-06-8351,51383,"86848 Barry Lane +Olsontown, MD 05453",1933-05-22 10:50:24,b6:0b:8f:7f:fb:1e,gonzalezjeremy@gmail.com,img/obama.jpg +John Hernandez,191-97-2507,05990,"14033 Susan Junctions Suite 302 +Geoffreystad, VT 05674-7574",1983-05-17 02:31:34,4b:e5:ae:45:82:bb,scampbell@brown.com,img/obama.jpg +Gail Davis,611-73-1697,94791,"43393 Schaefer Station Apt. 907 +Port Michael, TN 37091-4973",1939-01-30 21:48:17,b1:ef:80:43:13:db,dross@yahoo.com,img/obama.jpg +Curtis Soto,756-07-6574,10263,"8542 Lane Ridges Suite 843 +Coxton, GU 07997",1931-05-01 19:04:39,d2:2b:06:e8:24:a0,vanessa42@woods.com,img/obama.jpg +Robert Webb,502-07-6095,48645,"Unit 8858 Box 4982 +DPO AP 66166",2000-06-25 15:44:50,c5:71:29:54:66:76,ghill@warren-cruz.com,img/obama.jpg +Lisa Perry,616-50-1171,11663,"PSC 2281, Box 7687 +APO AE 76799-8903",1999-10-07 06:38:59,c5:94:39:f7:50:e6,townsendtiffany@hotmail.com,img/obama.jpg +Krista Shaffer,848-62-7162,59804,"296 Kirk Plaza +Bridgetport, MH 46838-5006",1991-12-19 06:15:50,b3:75:12:c6:8d:52,gibbsjoel@yahoo.com,img/obama.jpg +Marcus Obrien,817-51-5890,39631,"3527 Timothy Light Apt. 308 +Christinaburgh, ND 74907",1944-11-23 03:01:02,74:ba:1a:24:31:eb,brookemcknight@gmail.com,img/obama.jpg +Christopher Butler,204-46-0158,52624,"37492 Kaitlyn Forges +Macdonaldmouth, SC 79248",1972-06-27 10:45:09,bb:6f:5b:61:50:d0,jennifer48@brown.com,img/obama.jpg +Kenneth Hoffman,197-35-6026,52826,"20738 Parker Stream Suite 457 +Donnaburgh, MO 85016-2290",1921-01-06 14:33:18,67:39:10:70:80:1a,jessicapoole@snyder.com,img/obama.jpg +James Terry,224-19-0776,37062,"275 Corey Crescent +North Stephenmouth, AL 81087",1942-07-23 20:13:43,ae:6d:17:81:92:15,newmanmelissa@rangel-rodriguez.info,img/obama.jpg +Mary Perez,282-82-5870,18493,"02553 Tucker Green +Deborahview, HI 15813",1922-05-04 13:59:21,54:f5:88:83:ba:9d,reynoldscorey@gmail.com,img/obama.jpg +Patricia Alvarez,737-54-3328,86498,"100 Stefanie Rapid Apt. 591 +Williamburgh, VI 15562",2007-11-14 21:00:36,87:a7:c3:15:84:b0,nicoleevans@warren-jones.com,img/obama.jpg +John Moreno,138-60-8406,26552,"667 Gilbert Burgs +Davisview, MT 94154-4705",1958-09-08 03:17:51,ee:0f:96:54:f5:4e,masonsandra@gmail.com,img/obama.jpg +Spencer Larson MD,048-62-2122,34775,"86197 Scott Shoal Suite 191 +North Shawnberg, HI 87135-7801",1969-10-03 06:58:32,a4:55:6c:ec:74:c7,sandra48@gomez.net,img/obama.jpg +Rose Holloway,722-31-7288,57423,"1517 Terry Camp Suite 918 +East Jesse, MA 36755-1436",1932-07-05 13:16:45,5f:5f:ce:c1:8e:19,kyle07@smith.com,img/obama.jpg +Rebecca Cooper,340-39-4470,96451,"56401 Lopez Drive Apt. 460 +North Markchester, NE 59372-0255",1958-06-07 07:00:18,45:8e:82:22:fa:90,dustin66@hotmail.com,img/obama.jpg +Regina Lambert,842-40-9027,74247,"Unit 9389 Box 8630 +DPO AP 11551-6793",1991-12-16 06:14:31,f4:7a:c5:5e:86:e2,gutierrezmartha@gmail.com,img/obama.jpg +Michelle Griffin,838-94-7077,95156,"84403 Miller Shoal +New Joshuaberg, LA 35504-2442",1958-10-25 19:59:16,23:aa:40:45:32:41,stephanie17@davenport.net,img/obama.jpg +John Meyers,817-36-6479,57921,"1414 Perez Court +Lyonsstad, MT 25586",1973-09-02 05:30:41,b9:11:c9:2e:f7:80,sflores@valdez.biz,img/obama.jpg +Christine Roth,875-71-2286,90061,"PSC 0731, Box 2453 +APO AP 35333",1957-09-27 02:41:52,2d:4c:b1:d6:a7:26,jared92@dominguez.org,img/obama.jpg +Joshua Meyer,171-23-6750,58743,"812 Alicia Ranch +Jennifermouth, MD 32954-0638",1932-03-02 18:33:40,dc:e0:89:53:a2:99,arodriguez@gmail.com,img/obama.jpg +Mr. Steven Wright,835-22-9456,52493,"6969 Jessica Ville Suite 587 +Davidborough, WA 88235",1953-08-16 16:39:25,f0:3b:d3:d2:d2:63,thomas08@gmail.com,img/obama.jpg +Amanda Herman,099-05-2413,83395,"42491 Joseph Mews +Lake James, TN 98933-4319",1931-07-05 05:35:24,dc:1f:13:75:c3:1c,michael76@gmail.com,img/obama.jpg +Miranda Hebert,204-94-0498,46531,"PSC 0876, Box 0958 +APO AA 51158",1996-02-11 17:26:08,b3:8b:7c:76:fa:89,bryan55@medina-king.com,img/obama.jpg +Caroline Sims,627-20-1804,29078,"909 Zachary Knolls +North Davidland, SC 28743-8882",1936-06-19 13:52:28,a5:6f:c9:8f:7c:83,russell42@smith.com,img/obama.jpg +David Welch,681-23-4020,03039,"00038 Jeffrey Trail Apt. 870 +New Patricia, FM 56519",1980-07-20 21:56:27,3c:fe:5e:51:78:7c,bradleyrodriguez@pearson.biz,img/obama.jpg +Alicia Wiley,059-33-8062,27899,"48003 Powell Meadows +North Cesar, OH 19455-4032",1986-11-19 02:53:28,ed:66:3a:af:f9:7e,kimberly69@yahoo.com,img/obama.jpg +Nancy Moore,664-78-2506,39067,"Unit 6686 Box 8234 +DPO AE 37194-5163",1928-03-08 21:09:54,23:f3:a2:27:84:f0,igraham@yahoo.com,img/obama.jpg +Laurie Wright,206-17-1886,92864,"6353 Hull Rue +Lake Teresahaven, ID 74386",1965-02-02 23:21:24,dd:32:f7:52:8f:24,jacob60@yahoo.com,img/obama.jpg +Linda Johnson,095-59-5446,15070,"1427 Washington Ports +Charleschester, NM 22770-9327",1985-05-05 04:06:18,f3:7c:4a:6b:3e:c3,matthew11@gmail.com,img/obama.jpg +Amy Gibson,740-97-3631,85117,"2242 Elizabeth Roads Apt. 261 +North Brandi, SC 39133",2015-07-25 14:01:14,7b:b7:4b:36:7a:4e,meadowskeith@gmail.com,img/obama.jpg +Cassandra Carter,582-60-4979,64839,"50251 Troy Stream +Wilsonmouth, NJ 69279-8342",2005-07-30 09:48:31,f3:b6:9b:84:55:db,emilyatkins@gmail.com,img/obama.jpg +Jerry Lewis,775-37-9597,42293,"71985 Romero Plains Suite 157 +Port Cynthia, PR 62253",1965-01-31 17:12:54,57:f7:28:b9:fc:a4,vhogan@gmail.com,img/obama.jpg +Joshua Arias MD,780-30-0750,51509,"702 Lewis Junction +Lake Jeffrey, OR 31516",1982-12-12 23:36:04,c6:dd:c3:90:47:fd,hollykemp@hotmail.com,img/obama.jpg +Melissa Jones,140-70-2102,66406,"04073 Benitez Park +North Terri, CA 49552-1516",1970-09-18 18:22:40,c4:d5:d0:1c:4b:b0,eric58@hotmail.com,img/obama.jpg +James Martinez,554-58-4552,38554,"9890 Kathleen Bypass Apt. 572 +Meadowsfort, PA 71368-7636",1949-01-02 10:10:12,bf:65:27:1a:c2:9b,krobinson@gmail.com,img/obama.jpg +Justin Ellis,740-54-0712,34654,"65920 Rogers Motorway +Lloydshire, OR 79363",2000-07-21 13:31:33,c1:e8:7d:f3:50:ab,connie22@yahoo.com,img/obama.jpg +Laura Lane,367-61-9913,36549,"08242 Shawn Hills Suite 352 +Bridgeshaven, FL 36873-4524",1986-02-14 14:17:50,68:33:2e:8c:ed:8b,kaneeric@alvarez.com,img/obama.jpg +Tina Anderson,822-03-5267,93619,"6684 Jacob Causeway +New Meganmouth, GU 91497-0540",1919-05-22 07:19:43,bf:30:d2:b2:36:f9,hcaldwell@hickman.net,img/obama.jpg +David Mckenzie,252-47-3485,25749,"Unit 8401 Box 8443 +DPO AA 70361",1935-04-28 14:31:49,4b:79:d3:58:84:35,ywright@moore.net,img/obama.jpg +Elizabeth Collins,833-42-4590,91209,"38357 Harper Village Suite 759 +South Andrea, GA 47635-5550",1949-03-06 23:21:52,75:71:fc:05:39:51,jameskevin@reed.com,img/obama.jpg +Russell Parker,009-53-4444,89734,"62668 Martinez Pines Suite 846 +Lynnville, MS 59577",1931-06-22 09:32:45,fd:58:98:d1:71:59,vsloan@hotmail.com,img/obama.jpg +Mark Robinson,607-85-3906,63526,"290 Scott Keys +Gloriaside, MN 71485-6138",1957-01-16 16:46:14,b9:f5:8f:98:0a:2a,fieldschristina@steele.com,img/obama.jpg +Karla Adams,792-28-1467,28449,"54993 Alan Place Suite 496 +Lake Williamstad, MT 31958-6429",1967-02-16 02:14:15,a3:65:95:01:61:40,patrickmiller@shaffer-jenkins.biz,img/obama.jpg +Matthew Edwards,428-43-5793,36469,"2201 Robert Court Suite 496 +New Jacobside, FM 36260-5552",1933-08-15 15:34:04,2a:2d:0a:49:c2:8e,tina83@yahoo.com,img/obama.jpg +Richard Roberts,270-50-6140,05599,"0700 Ryan Stream +North Kristinamouth, RI 60119-4210",2012-05-05 00:47:12,af:0d:c4:c7:ad:f7,adam33@reed.com,img/obama.jpg +James Jordan,128-57-3470,82261,"5367 Bonnie Trace +Newtonmouth, WI 06334",1937-02-06 05:45:44,eb:fa:0e:2f:18:70,blakemargaret@yahoo.com,img/obama.jpg +Larry Miles,159-04-7235,88196,"937 Cannon Causeway +Smithville, MO 55323",1974-04-10 08:52:37,7f:18:68:6d:c6:12,charles58@gmail.com,img/obama.jpg +Brian Clay,007-72-4467,88251,"023 Benjamin Circle Apt. 365 +South Eric, HI 12307-5780",1980-04-26 11:34:55,a8:92:56:82:50:dc,chelsealeon@moore.com,img/obama.jpg +Adrian Bailey,473-11-3828,91776,"086 Katrina Rapid Apt. 858 +Peterfort, MT 01243",1958-07-07 01:16:39,4d:ca:6e:97:f7:cc,wzimmerman@burke.biz,img/obama.jpg +Jerry Green,041-61-8279,23969,"31677 Fletcher Land Suite 135 +Port Davidfort, OH 84222-8363",2001-12-22 19:17:05,bf:cf:c2:73:5b:81,rodneywhite@hotmail.com,img/obama.jpg +Tracy Gutierrez,844-62-8515,10656,"465 Mark Plaza Suite 872 +Denisemouth, PR 67777",1997-04-29 16:49:24,0c:cb:be:5b:0d:05,lcain@gmail.com,img/obama.jpg +Samantha Stephens,589-13-8880,18287,"86694 Tiffany Ranch +Marybury, FL 06552",1953-02-22 14:32:23,6d:99:fc:5e:09:0c,troybaker@yahoo.com,img/obama.jpg +Loretta Thomas,591-82-4499,34138,"USCGC Herrera +FPO AP 44384",1952-03-24 06:18:32,7b:79:4f:66:9c:db,andrewhorton@yahoo.com,img/obama.jpg +Gwendolyn Rowe,023-93-4567,81254,"21016 Bennett Court +Seanton, VA 23728-5749",2007-03-28 22:29:04,f9:bf:b9:e1:2f:ba,kyle24@gmail.com,img/obama.jpg +Tara Torres,890-98-1985,89637,"00583 Johnson Estate +Mitchellside, MP 77833",1961-12-06 08:37:48,45:2c:02:e6:15:a2,johnsonrobert@yahoo.com,img/obama.jpg +Nicole Parker,591-66-9351,72517,"9620 Rivera Summit Apt. 684 +North Pamela, DC 49790",1937-12-30 09:38:46,6d:6f:e2:1f:be:c8,james40@hotmail.com,img/obama.jpg +Michael Romero,270-03-2337,58183,"9050 Burton Manors +Joneston, LA 79700-5732",1938-12-04 01:17:54,7a:18:85:1a:5c:f4,stacey91@carroll.biz,img/obama.jpg +Jonathan Price,617-70-6982,40482,"5142 Curry Fork +Sandovalfort, WA 52523",1923-08-24 11:42:57,34:69:45:4e:79:45,christinelewis@yahoo.com,img/obama.jpg +Eric Edwards,679-66-5422,26620,"3936 Meagan Point +Owensville, OR 16156",1983-10-16 16:50:44,77:24:ba:1e:26:30,haasmark@hotmail.com,img/obama.jpg +Tiffany Wise,778-42-4813,06831,"PSC 7434, Box 5061 +APO AE 72610",1943-06-07 10:46:07,4d:75:af:c1:dc:fb,elizabeth46@yahoo.com,img/obama.jpg +Thomas Baker,658-11-5016,04827,"7574 Richards Rue Suite 516 +East Hollymouth, MN 11917-4161",1978-09-12 21:27:59,20:37:22:3f:ea:48,lopezsandra@hotmail.com,img/obama.jpg +William Lee,762-31-0720,51599,"08955 Hall Glen +Blakebury, RI 69525",2003-01-13 01:54:19,a5:35:2f:7f:43:18,christopher41@hotmail.com,img/obama.jpg +Tammy Nunez,768-11-0417,46731,"385 John Springs Apt. 998 +Williamsfort, PR 45992",1918-07-15 04:45:34,55:25:1e:86:62:ca,walter12@williams.com,img/obama.jpg +Ryan Greene,009-80-2787,34180,"013 Santiago Terrace Apt. 710 +West Laurenberg, GU 37047",1974-01-28 06:02:51,2c:ff:66:76:f7:4f,rhondameadows@elliott.biz,img/obama.jpg +Deanna Davis,242-07-9439,80515,"72484 Christopher Wall Apt. 667 +Navarroborough, SD 79017-8140",1975-04-23 23:57:19,2d:1d:91:99:c6:d8,cookjames@hotmail.com,img/obama.jpg +Katherine Eaton,573-05-3841,00979,"813 Victoria Locks Apt. 176 +Lake Alexandra, NJ 09960",1998-01-27 21:52:37,57:ba:75:a9:ba:ce,kellyjohnson@matthews.com,img/obama.jpg +Janice Miller,042-74-0111,10818,"937 Michael Via Apt. 018 +Hensonfort, TX 76722",1934-07-04 22:28:59,2b:c1:c0:4b:4e:32,epreston@yahoo.com,img/obama.jpg +Stephen Silva,381-96-1121,58223,"4563 Tracie Circle +Markchester, CA 69255",2011-07-23 05:43:24,28:b2:a7:9b:4e:97,jareddiaz@gmail.com,img/obama.jpg +Christy Greene,467-84-6022,48600,"181 Miller Tunnel Suite 603 +South Rickyport, UT 41582",1948-03-07 02:55:14,bd:9c:1e:ff:a2:32,ericburns@yahoo.com,img/obama.jpg +Donald Powers,216-27-4595,92012,"5048 Julie Squares +Port Joshua, WY 05545",1919-10-02 08:09:56,2f:52:75:ee:42:61,lauraharris@hotmail.com,img/obama.jpg +Andrew Short,614-74-4201,79168,"1862 Christopher Trace Suite 810 +Deborahfurt, NJ 59850-0996",1957-09-10 18:37:57,3e:1b:ae:c3:29:f2,bethany81@walker.org,img/obama.jpg +Angela Leblanc,870-52-8485,69498,"00931 Anna Mountains +Williambury, MP 15412",1962-01-18 12:11:49,b6:3d:5a:a7:45:73,bmay@gmail.com,img/obama.jpg +Sarah Brown,031-23-8113,40570,"93509 Emily Groves +Ronaldburgh, MA 12287",2005-09-30 17:11:36,81:d3:a4:eb:fb:63,xzavala@gmail.com,img/obama.jpg +Amy Hernandez,225-96-6593,64278,"110 Fernando Mountain +Lopezport, NY 59716",1942-01-09 06:46:55,f2:04:e4:66:eb:d4,ubarr@hotmail.com,img/obama.jpg +Matthew Berg,771-69-4131,74261,"66242 Ray Groves +South Ana, WI 79948-0168",1986-06-01 01:29:42,26:37:54:40:0c:da,anthony02@gmail.com,img/obama.jpg +Cynthia Adams,386-86-5439,84230,"5721 Morris Lock Suite 599 +Rodriguezmouth, DE 36118",1970-01-07 16:03:12,c6:5c:c8:b7:f5:0a,craigwilliams@dixon.com,img/obama.jpg +Dave Jones,831-29-3936,58639,"734 Mark Ports +North Anthonyland, IA 27654-5433",1924-07-23 08:16:21,f2:6f:7c:4d:ce:1f,pvelazquez@hotmail.com,img/obama.jpg +William Chambers,894-70-5016,86425,"Unit 6865 Box 8669 +DPO AP 67577-7467",1959-03-14 15:28:42,2d:ff:f5:18:ab:f8,melody44@miller.com,img/obama.jpg +Lee Williams,299-19-2212,58005,"1630 Durham Island Apt. 826 +North Wandaville, PR 34715-5094",1937-05-31 06:43:02,56:aa:0c:2e:35:e0,bernardmichael@gmail.com,img/obama.jpg +James Harrison,143-83-7506,58941,"10361 Kramer Rapid Apt. 385 +Laurenchester, IL 36311-9651",1988-10-03 00:17:24,b7:79:0c:7d:2a:7a,michelleschneider@herrera.com,img/obama.jpg +David Harrison,153-95-9669,14778,"48170 Robinson Pine Apt. 240 +East Lorraine, MA 05012",1974-05-06 18:27:33,ba:15:1e:a3:d2:fe,kylewong@gmail.com,img/obama.jpg +Ashley Johnson,333-66-5769,71339,"638 Amy Pike +Port Shawnview, AR 58005",1982-10-19 22:25:43,5b:90:c1:ca:3d:f8,smiller@yahoo.com,img/obama.jpg +Antonio Newton,776-33-9391,02546,"05923 Vanessa Park +Williamview, WI 55455-8995",1958-04-28 20:13:40,18:a7:7d:96:5f:ac,patricia09@yahoo.com,img/obama.jpg +Ann Lewis,879-39-5757,65512,"523 Barnes Avenue +Dominguezstad, NJ 99815-9740",1962-07-19 20:24:56,74:35:75:5a:06:d1,nicholasjohnson@gmail.com,img/obama.jpg +Sarah Huffman,303-18-2167,81455,"914 Collins Neck Suite 613 +Michaelburgh, KS 88801-9735",2010-09-24 13:09:23,7d:e0:33:8f:66:ec,louis54@gmail.com,img/obama.jpg +Ryan Weiss,899-28-2950,10771,"711 Edwards Parks Apt. 686 +Powersmouth, OR 55655-4353",2012-03-25 06:38:13,75:70:33:48:d6:07,sarahrice@hotmail.com,img/obama.jpg +Lori Thompson,800-99-3165,58510,"38742 James Lake Apt. 049 +South Marissahaven, GA 55219-8046",1990-04-04 04:24:53,1b:b5:40:b3:be:bb,josephserrano@yahoo.com,img/obama.jpg +Megan Jordan,338-43-6042,65698,"695 Nicolas Ridge +Tonymouth, NJ 05609",1990-06-26 15:42:20,86:48:63:86:22:f7,youngmichael@nguyen.com,img/obama.jpg +Kaitlyn Schneider,648-45-0996,54542,"587 Gabriel Plains Suite 881 +Mcculloughstad, TN 23803-1437",1982-01-11 16:34:26,50:35:9c:6b:a3:ac,carterrobert@macias.info,img/obama.jpg +Susan Phillips,745-43-1974,26265,"0243 Lorraine Centers +Lake Matthew, SC 98742",1918-06-06 10:06:47,ad:05:de:7e:ee:34,spencerbryan@spence.com,img/obama.jpg +Ashley Mcknight,090-77-4199,43597,"15155 King Drive Suite 821 +Thomaschester, NY 42603-2673",1975-12-10 19:46:20,90:2f:80:1a:67:05,ssmith@hotmail.com,img/obama.jpg +Christopher Ryan,081-78-7544,24047,"PSC 0582, Box 3927 +APO AP 95228-6692",1979-05-31 01:56:45,54:ea:e7:6c:7a:b3,scott68@ryan-burns.com,img/obama.jpg +Eric Gilbert,279-17-2705,25776,"6922 Oliver Club Apt. 947 +Timburgh, CO 97595-0245",1918-01-13 19:53:59,42:4a:19:88:a1:37,blakerobinson@gmail.com,img/obama.jpg +Gina Smith,705-64-1451,48950,"9565 Paige Lakes Apt. 789 +New Erika, TN 67659-3810",1999-12-22 10:07:55,81:26:e0:0d:57:24,patricia01@hotmail.com,img/obama.jpg +Mrs. Melanie Mcdonald,067-74-1039,77109,"21759 Kathy Pike +Lake Miranda, IA 05320-2033",1954-12-08 01:51:24,b3:e5:a3:09:f4:5d,leslie61@miranda-butler.com,img/obama.jpg +Mary Walker,125-95-1565,22047,"3058 Vanessa Branch Apt. 457 +East Elizabethchester, DC 82735",1984-08-14 09:07:06,88:aa:70:4a:18:ae,larsonjason@montgomery-reyes.com,img/obama.jpg +Tracy Williams,353-69-7179,59172,"802 Davis Grove +Port Coryside, WI 57876-5975",2012-07-25 05:08:52,de:ba:ac:3b:af:8f,april67@hotmail.com,img/obama.jpg +Heather Santiago,748-95-9689,77883,"100 Hart Fords Suite 766 +Gardnerhaven, NV 03573-9063",2007-01-01 16:00:35,62:a7:db:f1:83:33,lambertandrea@hotmail.com,img/obama.jpg +Richard Castillo,156-62-9243,69357,"07658 Alexis Forks +Lake Matthew, DE 12057",2003-03-16 03:47:11,1b:de:1e:22:d8:ce,aturner@gmail.com,img/obama.jpg +Yvonne Ellison,607-61-6526,46653,"367 Michael Trace +Johnberg, AL 38462-8535",1954-10-25 17:29:10,ba:9f:61:59:5b:91,cesar08@hotmail.com,img/obama.jpg +Joseph Bartlett,178-44-2457,17504,"6919 Castaneda Flats +New Nicholasmouth, MD 75696-3123",1962-10-15 03:51:01,6c:dd:b1:ff:5d:61,crystalbradshaw@elliott.com,img/obama.jpg +George Matthews,124-91-2492,63992,"447 Ramos Mews Apt. 891 +West Meaganhaven, FL 59740",1955-07-06 03:21:23,46:5a:7f:61:fa:d0,jeremy44@yahoo.com,img/obama.jpg +Jeffrey White,795-33-9605,24844,"41412 Jenkins Village +New Nicholas, TN 37788",1973-04-10 16:14:52,cb:36:ee:bd:f2:86,alisabrina@cardenas-horton.com,img/obama.jpg +Kristina Wilson,050-78-5623,22467,"702 Wheeler Port Apt. 113 +West Elizabeth, ME 63155-3975",1994-05-30 04:57:37,cc:3a:56:ae:c8:87,pmccann@johnson.net,img/obama.jpg +Jamie Bryant,440-28-4969,84370,"05748 Adam Forges +South Jerry, TX 48611",2005-11-25 11:01:35,d6:7f:70:81:9e:43,jesselang@rivas.info,img/obama.jpg +Helen Leon,253-85-4715,86792,"0583 Mark Island +Patrickmouth, GU 23873",1937-01-06 10:22:23,14:20:20:c2:88:17,alishaharris@hotmail.com,img/obama.jpg +Jeffrey Ruiz,139-86-5455,39486,"799 Burgess Inlet +North Duane, VI 38637",1936-05-24 06:07:53,6f:7a:67:5a:85:bc,joseph50@peterson.com,img/obama.jpg +Jordan Contreras,061-10-8219,07849,"88117 Megan Cove Apt. 393 +Clarkshire, GU 13976",1928-06-13 03:42:20,3b:cd:95:5f:c1:52,ybrown@hotmail.com,img/obama.jpg +Melinda Duke,577-67-7176,13163,"88247 Jose Loaf +North Brendaberg, NC 57731-6734",1940-06-10 13:18:48,56:b1:f8:37:0e:17,simpsoncrystal@dixon-richardson.com,img/obama.jpg +Stephanie Flynn,105-07-2558,06612,"4278 White Freeway Suite 594 +Youngville, HI 81646-2531",2011-03-26 01:21:10,d4:0f:12:b0:50:2c,fcampbell@gmail.com,img/obama.jpg +Daniel Phillips,012-95-7439,58483,"53977 Elliott Walks +Nelsonborough, FM 19237-1367",1991-05-24 06:26:42,fd:40:09:5a:3e:c9,pachecobeth@hotmail.com,img/obama.jpg +Daniel Spencer,378-58-6547,67445,"3197 Austin Cape +Diazbury, AK 38315",1936-06-28 14:24:41,21:7b:5e:da:b8:e0,angelica28@bowman.com,img/obama.jpg +Nicholas Smith,555-59-9241,47184,"42105 Berry Meadow +East Elizabethmouth, ME 03783",1939-09-25 18:44:10,d1:a2:d6:89:48:0b,angelaking@gmail.com,img/obama.jpg +Russell Walsh DDS,743-61-4129,69121,"12701 Schneider Square +Janiceview, VI 41118",1937-04-21 09:17:03,a9:1c:d2:d7:ef:d7,nbrooks@hotmail.com,img/obama.jpg +Christopher Hudson,894-11-1395,88051,"40938 James Mount Apt. 166 +Simonborough, AR 21057",1933-06-02 14:14:53,06:86:b8:53:6f:cc,chris51@gmail.com,img/obama.jpg +Bridget Woods,051-71-1512,63458,"0156 Chad Port +Hebertmouth, IN 98555",2003-07-14 17:53:31,f3:e6:9c:c9:a1:a7,llittle@gmail.com,img/obama.jpg +Russell Thomas,311-28-7243,01173,"4276 Rodney Shores +Heatherstad, VT 10898-8308",1993-06-08 21:47:19,38:02:d4:7b:19:8b,jennifersmith@mcmillan.info,img/obama.jpg +Charles Miller,073-02-4152,50275,"70533 Smith Forest Suite 938 +West Paulton, NY 30104",1950-08-09 07:31:38,15:69:2d:17:cd:35,aphillips@smith-holland.biz,img/obama.jpg +Ricky Aguilar,014-04-0175,42494,"327 Timothy Village +North Patriciamouth, GU 17946",1926-06-02 08:10:13,37:75:ca:40:63:53,vyork@gmail.com,img/obama.jpg +Jaime Jimenez,713-49-2922,09629,"2102 Johnston Fords +Lake Maria, NY 63147-8020",1959-04-30 12:40:50,23:ec:16:1b:24:83,rlong@hotmail.com,img/obama.jpg +Karen Gilmore,243-87-1011,54905,"8708 Kimberly Track +New Sarahside, DC 58206",1962-08-19 05:57:38,b6:1c:83:62:59:75,shannon91@hopkins.net,img/obama.jpg +Jessica Jimenez,412-35-5058,56864,"64652 Wheeler Drive Apt. 776 +South Michael, AS 03144",1991-09-13 23:47:44,85:87:a5:83:71:d5,kaguilar@yahoo.com,img/obama.jpg +Candice Mccall,368-48-4897,25358,"USS Holmes +FPO AA 35492",1960-07-12 06:16:46,97:13:24:46:2c:78,afranco@gmail.com,img/obama.jpg +Edward Jackson,642-48-9868,92755,"676 Castro Turnpike +Valenciaside, HI 87367",1952-07-02 05:39:44,2e:4e:6e:87:2c:15,charleserickson@yahoo.com,img/obama.jpg +Brandon Wilson,476-25-8932,40808,"8603 Cynthia Bypass +East Nancy, NH 36437",1941-04-20 04:59:28,83:a6:cd:9f:21:67,connerchristopher@johnston.com,img/obama.jpg +Sarah Martinez,747-51-8643,56372,"221 Daniel Point Apt. 266 +West Jerryville, MI 32616",1963-01-02 11:30:47,93:38:30:ae:4e:71,kcooper@yahoo.com,img/obama.jpg +Brian Jackson,746-07-0124,25122,"PSC 3720, Box 1857 +APO AE 44028",2005-06-02 15:06:40,99:41:7c:99:76:1c,kennethpowell@garcia.biz,img/obama.jpg +Sabrina Jensen,408-14-0530,83966,"3468 Kim Lakes Apt. 429 +Carolmouth, WY 16173",1990-06-08 04:39:13,37:7d:03:63:53:66,williamsmaria@morales.info,img/obama.jpg +Elizabeth Anderson,663-62-3713,21947,"611 Smith Light +Willisview, ND 26415-3676",1962-07-01 02:47:59,d1:4c:4c:11:5d:6b,opowell@gmail.com,img/obama.jpg +Heather Palmer,071-63-6491,19181,"8387 Julie Rapids Suite 619 +New Jasonmouth, MI 59422-5541",1962-05-31 11:38:56,ec:02:0f:21:72:40,michaelharris@yahoo.com,img/obama.jpg +Jeffery Hernandez,034-71-4682,42612,"6515 Davis Coves Suite 426 +Sotoburgh, WI 90701-4835",2000-07-14 06:12:28,ca:20:97:82:bd:67,oliverrachel@lewis.com,img/obama.jpg +Jamie Johnson,481-77-1525,28055,"8137 Jackson Underpass +Smithland, IN 99550",1962-11-02 20:33:50,9d:07:3b:8a:fd:26,katherinekrause@yahoo.com,img/obama.jpg +Julia Richard,042-40-4064,82916,"752 Newton Walk +Port Jenniferfurt, LA 49752",1958-01-01 03:46:03,53:1f:2b:1b:4f:22,spencernicholas@hotmail.com,img/obama.jpg +Nicholas Kim II,197-28-0910,15311,"43988 Savannah Lodge Apt. 093 +Marybury, CA 33108-3023",1954-09-16 18:15:51,f1:e2:4d:b6:63:77,dwilson@gmail.com,img/obama.jpg +Trevor Hawkins,455-94-3842,60658,"Unit 2959 Box 2904 +DPO AE 39416-3964",1954-02-23 18:16:33,96:4d:1e:be:7d:b3,ldavis@harris.biz,img/obama.jpg +Kathryn Gillespie,568-13-8177,24744,"3083 Austin Corner +East Nancyburgh, ME 37507-2810",1961-05-20 16:56:16,25:d6:49:6c:5a:ec,dhiggins@jones.com,img/obama.jpg +Mary Wagner,213-24-9659,05970,"940 Anthony Inlet +Port Autumnfurt, TN 95324-7029",1931-07-06 07:46:51,21:8d:ba:4e:a6:85,garyhogan@reynolds.com,img/obama.jpg +Maurice Rowe,331-86-1985,73315,"4110 Anderson Lock Apt. 060 +West Thomas, NJ 34631-8785",1991-06-08 20:14:15,dc:22:41:ff:fd:53,owensbryan@patterson.com,img/obama.jpg +John Davis,798-54-5054,12516,"711 Bell Shoals Apt. 950 +Lake Diane, CA 73185-2263",1972-04-18 18:56:17,83:0d:4a:74:5c:13,ronaldhumphrey@gmail.com,img/obama.jpg +Michael Ellis,437-16-8054,54230,"1978 Gonzalez Light +Thomasshire, SC 83829-9646",1978-12-24 19:03:09,1e:dd:e5:06:3e:91,vrowe@glover.biz,img/obama.jpg +Tammy Elliott,097-04-3121,92869,"708 Davis Union Apt. 422 +Petershire, PA 35539-7013",1938-11-05 17:26:45,28:73:8d:43:bb:fe,xdavis@york.com,img/obama.jpg +Roger Jones,088-77-3511,21302,"11163 Andrew Rue +East Elizabeth, PA 76907-9257",1988-02-07 04:29:35,bd:46:e6:bf:ae:6c,nicolejackson@gmail.com,img/obama.jpg +Traci Kelley,338-50-7801,64579,"2564 Mata Island Suite 750 +Cartershire, MA 77058",1963-07-16 18:57:45,89:e6:dd:54:de:5f,ortizvernon@keller.com,img/obama.jpg +Stephen Williams,865-03-5950,24249,"93482 Rebecca Loop +East Joseph, ID 30935-6387",2004-05-11 07:23:28,9b:89:28:b9:0a:94,manuel62@merritt.org,img/obama.jpg +Joshua Herrera,686-23-3155,49458,"96449 Estrada Forks +Port Johnberg, TN 40475-3234",1959-10-07 17:53:09,2b:01:33:6a:b7:08,davidgarrett@gmail.com,img/obama.jpg +Denise Walker,137-18-1929,26194,"4062 Perkins Plaza Apt. 118 +East Deborahville, VT 51360",1978-06-23 11:51:24,68:7a:91:04:fc:9e,daniel59@dixon.com,img/obama.jpg +Danielle Hudson,541-78-6645,42778,"7595 Joanne Overpass Apt. 191 +Port Heatherfurt, VI 01707-2353",1930-11-15 18:59:48,c8:fb:cf:45:58:2d,kristamendoza@yahoo.com,img/obama.jpg +Juan Glass,169-47-7210,52438,"65729 White Point Suite 600 +Lisamouth, NJ 28242",1950-12-14 11:01:52,14:f2:96:7d:df:53,reillyholly@garrison.com,img/obama.jpg +Derek King,618-72-1251,65933,"USS Simpson +FPO AA 46672",1940-06-14 00:47:22,ac:d0:a7:62:f2:49,richardaguilar@yahoo.com,img/obama.jpg +Dennis Martin,899-70-4476,12369,"548 Lewis Course Suite 357 +New Linda, MA 18096-4505",1918-05-16 18:41:57,7e:58:0e:e7:2a:fa,kennedyelizabeth@sanders.com,img/obama.jpg +Carly Mason,651-71-1846,03758,"65660 Parrish Rapid Suite 544 +Christopherberg, VI 70905",1998-05-12 23:06:00,a3:92:e6:fa:36:51,alexandrabailey@gmail.com,img/obama.jpg +Melissa Newman,632-52-1005,11916,"USNV Brown +FPO AA 16862",2010-02-08 09:57:37,f2:36:b9:ae:31:06,zachary22@hotmail.com,img/obama.jpg +Mr. Joshua Henry Jr.,058-68-9479,86554,"602 Amber Lakes Apt. 973 +Bakerland, WY 77984-0620",1950-06-21 12:02:58,3a:83:b4:a3:4d:9b,stonebryan@gmail.com,img/obama.jpg +Stacey Butler,257-20-5959,04050,"725 Neal Views +Lake Lindseyshire, ID 57220",1946-02-14 12:52:25,82:70:d5:4f:38:f4,becky64@mata-lewis.com,img/obama.jpg +Maria Harvey,452-35-0425,53572,"21435 Jaclyn Manors +New Williamside, PA 66889-8844",1919-12-13 11:47:32,c9:0e:c7:7d:20:ba,ellen99@yahoo.com,img/obama.jpg +Nathaniel Paul,427-02-7170,14788,"12016 Aaron Ramp Apt. 756 +Garrettbury, AS 44203",1933-09-26 08:14:57,bd:3f:fe:25:13:74,mossjames@gmail.com,img/obama.jpg +Patricia Green,604-10-8243,65310,"23359 Stacey Orchard +East Lisaport, FL 79341-3526",2015-06-25 09:27:20,c0:cd:8f:37:24:38,stewartrebecca@hotmail.com,img/obama.jpg +Amber Miller,433-96-2374,40275,"2418 Scott Camp +Camposhaven, VI 16449",1951-12-05 21:10:54,94:7e:f9:f5:63:ef,amanda65@davis.info,img/obama.jpg +James Hensley,777-85-7593,33940,"19538 Williams Hill Apt. 832 +Robertborough, GU 84608-2837",2002-02-06 13:58:38,a7:89:50:ff:31:79,william37@andersen.com,img/obama.jpg +George Collins,287-92-9361,55770,"0519 West Port +West Amber, KY 40754",1975-02-03 12:18:11,56:bc:d8:f8:41:57,lee27@yahoo.com,img/obama.jpg +Christopher Jarvis,704-38-9124,76891,"17839 Paula Crossing Apt. 203 +Millermouth, SD 57716-1370",1955-03-18 12:06:44,ea:be:4d:bf:6d:09,stephen73@gmail.com,img/obama.jpg +Lindsay Brown,668-68-2292,83417,"13955 Erica Summit +Steelemouth, NC 29667",2006-12-31 22:35:22,7e:85:a2:2f:8f:03,cardenaselizabeth@yahoo.com,img/obama.jpg +Darrell Vega,260-78-9963,84231,"27322 White Prairie Apt. 812 +New Paulville, NV 06638",1977-09-05 05:17:38,66:d8:02:59:cc:c7,crystal54@palmer.com,img/obama.jpg +Mr. Donald Nelson,468-25-1199,03777,"5401 Kelsey Walk +New Rebeccaton, NM 76796-7004",1957-05-27 01:56:32,8c:04:81:33:e2:7f,woodscheryl@yahoo.com,img/obama.jpg +Frank Harris,797-57-1810,22120,"1931 Ramos Flat Apt. 425 +Lake Michaelbury, AK 32667",1984-03-12 10:22:24,5c:55:04:27:74:b0,copelandsamantha@lynn-rivera.info,img/obama.jpg +Sarah Davis,589-29-8766,36270,"568 Cortez Plaza Apt. 708 +Michaelhaven, GU 53049-2651",1989-11-23 14:33:18,93:c8:c1:a4:c6:4f,samantha85@yahoo.com,img/obama.jpg +Rebecca Knight,099-92-2618,54138,"40454 Rasmussen Expressway Suite 912 +Lake Rebeccaland, MS 35790",1943-08-27 14:33:41,a3:39:20:7a:c9:7b,martinezbetty@hicks.com,img/obama.jpg +Steven Green,540-06-3232,62263,"Unit 0577 Box 8074 +DPO AE 06083",2012-02-29 04:50:37,9b:c8:24:c6:f3:db,bauerjames@gmail.com,img/obama.jpg +John Wood,503-96-6110,69636,"975 Gilbert Inlet +East Matthewview, IA 67658",1927-12-20 08:14:03,df:0a:c7:ec:c3:a6,megansmith@mayer.org,img/obama.jpg +Scott Arnold,516-52-6249,76975,"19828 Cook Extension Apt. 481 +Peterstad, NY 47614",1966-02-12 23:05:08,78:2a:42:35:88:c9,charleswebster@hotmail.com,img/obama.jpg +Michelle Brown,878-03-8037,80746,"856 Lang Meadow Apt. 821 +New Carl, NH 38328-8255",1953-10-09 20:41:03,06:95:61:3a:43:a5,frederick70@gmail.com,img/obama.jpg +Amy Perry,264-20-2678,34982,"49762 Brian Crossroad +Lake Mariahaven, AS 87282-6853",2004-04-28 22:14:18,95:c7:1a:fc:01:1d,john06@williams.com,img/obama.jpg +Cheryl Edwards,027-14-7973,97006,"USNV Howell +FPO AP 81832",1960-07-19 14:20:51,b4:d1:8f:16:b0:eb,cwatson@martinez.net,img/obama.jpg +William Sanchez,483-94-8157,26549,"4232 Audrey Well Apt. 449 +Rossbury, MS 25073",1967-04-07 02:15:56,50:6c:e3:45:e0:b3,matthew31@yahoo.com,img/obama.jpg +Yvette Cruz,802-68-4652,94466,"8083 Andrew Hills Apt. 662 +Amberchester, NY 44853-5100",1952-07-30 07:52:49,b2:a3:66:27:41:e1,samuelnguyen@hotmail.com,img/obama.jpg +Joseph Tyler,464-49-3324,29364,"687 Berry Causeway +Comptonbury, ND 62304",1981-07-14 07:28:13,bf:81:cc:88:86:49,kathryn10@yahoo.com,img/obama.jpg +Tracy Roberts,089-83-4739,22657,"8105 Deanna Forest +Port Hollyport, MP 65943",1954-08-23 13:17:50,f6:b2:d6:68:5d:31,guerralori@smith.com,img/obama.jpg +Cynthia Knapp,692-94-2106,26031,"Unit 4389 Box 2565 +DPO AE 52281",1988-04-30 02:33:26,24:ce:f4:b1:9b:09,gregoryrogers@yahoo.com,img/obama.jpg +Timothy Walsh,219-39-4664,31967,"96744 Maddox Ridge Apt. 329 +Port Greggfurt, CA 28127-3310",1991-04-11 05:27:36,d2:9d:55:7c:9a:25,christopher99@evans.com,img/obama.jpg +Courtney Gonzalez,077-92-1572,46919,"PSC 0295, Box 2414 +APO AE 81848",2015-03-01 15:17:27,7d:83:7e:d9:c9:c3,trankristina@yahoo.com,img/obama.jpg +Jessica Henderson,312-22-2497,65463,"96850 Austin Harbors +Gonzalezville, IN 27415-8997",1927-03-07 11:56:36,7d:f2:68:d4:f9:29,davidsheppard@moore-spencer.com,img/obama.jpg +Timothy Kim,560-81-0022,44628,"6551 Shields Walks Suite 473 +New Oliviaview, WV 98400",1947-03-16 01:50:27,1d:78:ec:99:91:ea,robertbrown@yahoo.com,img/obama.jpg +Claudia Morgan,209-04-5286,12907,"6637 Marc Springs +New Toddhaven, FL 46314-1653",1941-12-16 11:54:01,61:76:b2:43:ce:c0,ymartinez@murphy.com,img/obama.jpg +Kevin Parks,159-46-9760,41026,"13451 Marks Courts +Tammyfort, OH 69592-7476",1998-05-16 15:25:30,13:c1:96:22:d4:f1,theresa35@hotmail.com,img/obama.jpg +Nathan Larson,332-98-4468,87015,"884 James Course +West Lauriefort, GA 96027-1068",1975-08-26 22:45:39,96:2e:a9:d1:5d:4e,tflores@hotmail.com,img/obama.jpg +Thomas Graham,644-28-9843,30502,"967 Phillips Drives +Shannonmouth, LA 27551",1946-07-25 19:08:34,56:44:e3:6b:f3:8f,zavery@gmail.com,img/obama.jpg +Sheila Conner,667-59-5587,04864,"USNS Mcdaniel +FPO AA 35504-4739",1942-01-30 21:11:55,74:d0:b0:59:90:aa,alisonhaynes@hotmail.com,img/obama.jpg +Robin Harrison,800-25-7165,46122,"0708 Scott Centers Suite 091 +Griffinchester, IL 99294-2782",2002-02-24 12:45:07,98:bb:6a:01:14:f3,aalvarez@hotmail.com,img/obama.jpg +Peter Hernandez,685-88-6273,72815,"8988 John Ridge Suite 156 +East Mariaborough, OR 98157",1997-12-30 18:41:40,c7:0d:24:08:df:91,pcunningham@erickson.org,img/obama.jpg +Allison Lee,554-10-4096,65396,"912 Kimberly Curve Apt. 209 +Jonesland, IL 18787-1959",2005-07-10 01:44:19,ed:71:b9:ea:cc:94,gloverbrian@reed.biz,img/obama.jpg +Amanda Keller,103-09-0619,56056,"365 Reilly Crescent +Rhodeston, CO 92723-6105",1987-09-21 19:33:30,cc:70:7b:2c:f9:4e,maddoxanthony@gmail.com,img/obama.jpg +Austin Harmon,802-96-2584,63940,"PSC 3742, Box 9315 +APO AA 25612",1984-02-09 00:59:51,ed:48:43:04:6b:66,megan16@meyers.com,img/obama.jpg +Anna Friedman,262-64-8107,96625,"002 Robertson Harbor +Robinsonberg, DE 99063",1959-02-16 23:26:30,de:fc:2d:6b:5c:27,nicolereed@rivas.biz,img/obama.jpg +Samuel Willis,571-70-4267,81884,"939 Sanchez View Suite 328 +New Alex, ME 15490",1960-08-17 19:26:32,56:59:98:48:4b:07,cookclayton@phillips.biz,img/obama.jpg +Sara Weiss,633-20-7717,13724,"41199 Wells Freeway Suite 493 +Port Christopher, GU 85404-7459",2001-02-17 19:21:47,37:fd:1d:5c:9a:b3,james13@perry.org,img/obama.jpg +Ashley Casey DVM,627-81-7810,55795,"6267 Elizabeth Haven Suite 694 +Michaelton, MP 89412-2070",1941-01-21 02:26:50,fe:b4:4a:8c:61:2c,nsherman@yahoo.com,img/obama.jpg +Taylor Mosley,380-48-0555,61205,"011 Perez Motorway Suite 587 +Lake Nicholasville, KY 27659",1967-09-09 19:38:34,57:86:67:d8:44:38,shawnamyers@williams.org,img/obama.jpg +Rebecca Bauer,382-52-8108,56978,"1748 Marshall Walk +Lake Sharonshire, PR 61288-5951",1967-01-04 12:53:19,de:15:81:02:be:39,colin82@sullivan-austin.com,img/obama.jpg +Christopher Miller,061-44-6972,87691,"20102 Adams Brooks Apt. 406 +West Jacquelinemouth, ND 13923-8307",1993-06-06 13:53:52,ed:d3:99:49:7d:bb,arthurjensen@gmail.com,img/obama.jpg +Elizabeth Johnson,361-48-6905,75810,"177 Summer Stravenue +West Sara, UT 40972",1993-07-06 03:09:02,0b:51:89:78:90:e4,alanmarsh@patterson.com,img/obama.jpg +Timothy Holmes,407-84-7989,19082,"46680 Cook Forest +Kingtown, WA 34997",1933-04-19 12:09:42,da:51:a0:8c:5d:f4,mollymccoy@foster-wilson.com,img/obama.jpg +Kristen Gordon,293-34-5683,50619,"64832 Santos Squares +South Cathychester, NH 43720",1932-04-07 11:25:31,74:5f:0a:9d:40:1f,rhondavalencia@mitchell-scott.com,img/obama.jpg +James Phillips,833-62-5190,17079,"7396 Charles Trafficway Suite 140 +Victoriabury, CT 55758-8553",1935-06-07 09:28:35,3d:1d:d4:23:e4:65,morganvargas@hotmail.com,img/obama.jpg +Taylor Copeland,647-19-5258,64352,"Unit 8924 Box 3943 +DPO AE 93393",1966-05-05 06:37:07,f7:d1:9e:1d:31:4a,oharding@miller.com,img/obama.jpg +Christine Kelley,271-10-7932,66637,"955 Elizabeth Manors Apt. 438 +Lake Lydiamouth, WA 51676",1998-08-21 14:52:52,cb:82:3b:fa:2c:77,erin78@yahoo.com,img/obama.jpg +Mr. David Love,323-75-8045,76454,"6484 Krystal Drives Apt. 780 +Youngland, IL 64387",2002-01-07 17:54:56,6f:8d:85:6e:b3:8c,alexanderjohnson@peterson.info,img/obama.jpg +Angela Acevedo,167-37-6977,87395,"552 Kramer Lake Apt. 449 +Johnsonville, MI 35830-4140",2006-01-16 12:58:21,07:76:5a:a1:76:a2,acollins@gmail.com,img/obama.jpg +Matthew Smith,478-33-3240,40556,"7916 Benjamin Brooks Apt. 274 +Karenshire, SD 08326",1992-05-24 21:51:25,62:e4:28:9d:6d:dc,shawsheila@gillespie-kirby.info,img/obama.jpg +Charles Lindsey,687-42-4654,27312,"9644 Nathan Parks +South Chad, OR 43570-5368",1937-07-03 13:48:39,f8:a3:d5:15:7a:17,tyler27@hotmail.com,img/obama.jpg +Ryan Barnes,882-73-8467,03058,"7372 Espinoza Ways +Lake Adam, UT 85785-7906",2009-11-02 05:42:47,c7:76:07:15:33:2b,lisa16@hotmail.com,img/obama.jpg +Jennifer Christian,353-14-4924,40584,"59084 Fuller Ferry +West Williamport, PW 80875",1991-11-07 13:18:12,92:89:12:81:ae:d9,carterchelsea@yahoo.com,img/obama.jpg +Christina Miller,718-50-1720,26768,"650 Roberts Squares +Sherryside, WV 01861-8337",2008-08-08 01:08:40,26:7e:52:39:c9:16,ocarter@gmail.com,img/obama.jpg +Joseph Barnes,385-03-2523,98349,"0998 Armstrong Path Suite 463 +North Patricia, AL 21825",1951-12-28 12:31:57,ad:60:b2:a6:b4:b6,katherine74@gmail.com,img/obama.jpg +Melissa Brown,548-75-2817,20235,"6684 Natalie Isle +East Elizabethberg, MA 54444",1983-09-12 23:57:28,40:ce:8e:35:9b:78,meaton@gmail.com,img/obama.jpg +Christopher Moon,790-02-9223,59035,"45863 Williams View Suite 128 +Lake Jenniferfort, MN 57193-3348",1968-12-08 03:03:25,b8:85:1f:6c:42:40,suzanne12@gmail.com,img/obama.jpg +Alexander Smith,286-67-3341,50372,"397 Chris Groves Apt. 640 +West Sarahport, HI 66150",1926-01-23 08:28:09,e3:b0:be:df:32:38,lindasosa@hotmail.com,img/obama.jpg +Alex Hodge,700-17-4328,99491,"8443 Jamie Cape Suite 034 +East Marialand, OK 36104-3384",1996-12-13 08:54:09,22:f5:e1:0d:7a:99,johnwalker@hotmail.com,img/obama.jpg +Joshua Miller,896-63-9225,38828,"72468 Jackson Spur Apt. 648 +Parkmouth, OR 78728-6433",1934-05-28 02:04:11,a2:74:33:02:6d:1d,phale@hotmail.com,img/obama.jpg +James Hanson,878-78-8301,65379,"417 Howard Rapid +Thomashaven, TX 94525-0143",1953-05-17 01:27:44,18:30:0e:c1:dc:0d,esmith@hotmail.com,img/obama.jpg +Kenneth Miranda,771-99-9996,04825,"7550 Jones Port Apt. 731 +Garzafort, ME 70224-6304",1963-11-28 07:08:46,78:f8:cd:c0:c5:3d,kayla91@hotmail.com,img/obama.jpg +Kimberly Beasley,161-13-3020,24679,"72988 Joseph Causeway Apt. 040 +Medinabury, CO 26269-2971",1949-03-09 05:43:48,f5:be:60:87:91:78,johnsoncarol@hotmail.com,img/obama.jpg +Gail Zuniga,364-32-7818,88528,"988 Melvin Well Suite 561 +Smithtown, PA 05789-2730",2001-09-22 21:03:36,6d:59:90:93:e5:b4,henrywong@gmail.com,img/obama.jpg +Jessica Guzman,096-82-3497,87183,"3936 Mercer Parkway Apt. 469 +Mossstad, MP 65869",1945-08-30 13:00:17,44:df:55:31:dc:50,pricedanielle@bryan-martin.biz,img/obama.jpg +Joe Turner,814-55-0575,55096,"00930 Lowe Islands +West Ronald, CT 42053-7239",1924-11-26 01:38:23,4e:d8:ef:b0:cc:3b,jenniferwiley@johnson-spencer.net,img/obama.jpg +Kenneth Pena,276-14-7142,16140,"769 David Pike +Wadeberg, OR 22991-8647",1937-08-30 18:40:07,dc:45:5e:bf:a0:e6,powellkathleen@stokes.com,img/obama.jpg +Grace Hawkins,159-50-3757,89578,"202 Thomas Expressway Apt. 914 +East Jenniferburgh, AS 18687-0202",1942-06-19 11:57:27,b9:e5:86:5b:b0:19,millermalik@jackson.com,img/obama.jpg +Jesus Phillips,589-11-3875,76532,"85071 Wallace Freeway +Darrylville, DE 51915-7150",1951-03-01 10:59:28,47:54:e9:07:8f:75,ashley78@lyons.org,img/obama.jpg +Whitney Wilson,378-54-4301,46387,"648 Woodard Mall Apt. 968 +Walshport, PA 96391-8793",1957-06-18 00:50:27,2e:e8:2f:b9:39:e4,gdavis@yahoo.com,img/obama.jpg +Cheryl Alvarez,201-63-3082,55409,"184 Brooke Keys +Mcphersonborough, AK 04540",2007-09-04 20:13:10,b9:88:9d:a8:67:cc,tyler09@yahoo.com,img/obama.jpg +Jodi Smith,593-61-0723,93269,"739 Miller Mountains Apt. 478 +Carolburgh, PW 46097-3195",1991-04-08 01:39:31,41:d2:c6:38:c2:3e,richard93@hotmail.com,img/obama.jpg +Amy Luna,228-39-6087,30343,"08128 John Ford Apt. 295 +West Andrewview, NC 59290-0521",1940-01-16 08:30:36,1f:a0:71:3b:5e:dd,qholmes@gmail.com,img/obama.jpg +James Day,552-99-9759,36445,"00852 Scott Cape +East Mark, MS 69445-9366",1940-11-03 02:27:32,ca:76:7a:2e:52:fd,nhines@gmail.com,img/obama.jpg +Jeremiah Warren,809-56-7630,14134,"106 Long Spring Suite 453 +Rebeccabury, MT 85141-7309",1922-02-20 01:24:44,c9:36:22:72:b7:c0,petersonandrea@heath-hamilton.com,img/obama.jpg +Megan Johnson,651-71-1627,35295,"91051 Miller Stravenue +Port Joseph, AR 53056-7536",1989-12-11 21:00:40,85:9e:17:97:89:d5,saundersdebra@yahoo.com,img/obama.jpg +Fernando Ruiz,068-97-8160,81247,"7725 Lopez Shores +Lake Adam, ND 01435-7944",1979-11-30 00:37:44,87:b2:2a:40:68:ba,moorebrian@gregory.com,img/obama.jpg +Isaac Bailey,129-29-7473,76833,"910 Michael Burgs Suite 125 +Williamsbury, KS 82672",1918-07-14 01:06:09,58:f3:6d:96:2a:dc,mknight@lopez.com,img/obama.jpg +Lori Pitts,657-30-3144,72381,"682 Cruz Loop Apt. 389 +Andersonborough, MN 78333",1929-05-27 04:45:55,b6:66:b1:47:a6:d3,walkerveronica@sandoval.net,img/obama.jpg +Aaron Phillips,586-60-3648,08299,"9369 Cynthia Crest Suite 989 +North Lisafort, TX 91236",1937-06-14 12:38:27,98:a1:c0:54:97:41,brownteresa@yahoo.com,img/obama.jpg +Amber Miller,291-71-3618,68912,"232 Stanley Springs +Torresville, OR 09012",1993-03-27 19:04:44,d6:59:59:67:57:c0,tmedina@gay.com,img/obama.jpg +Alexandra Nixon,660-12-4818,02932,"930 Smith Row +Thomasport, MT 19536-0505",1952-06-22 12:04:44,6a:e3:44:0f:0e:98,james42@yahoo.com,img/obama.jpg +Raymond Hernandez,177-06-0624,77403,"7192 Stacie Well Suite 419 +South Christinafurt, WA 30591",1946-04-03 04:53:07,79:c8:a9:2f:37:55,mosscurtis@smith.com,img/obama.jpg +Frederick Nguyen DDS,433-02-5663,06375,"27359 Davis Landing Apt. 333 +Myersville, LA 19147",1920-03-15 00:09:31,63:1f:f6:98:b3:46,sgarcia@hotmail.com,img/obama.jpg +Erica Beck,743-92-9654,21160,"675 Owens Springs Apt. 988 +South Kim, TN 52717-1790",1937-02-18 01:10:48,57:5f:81:7e:78:0f,jimmy41@love-higgins.com,img/obama.jpg +Kyle Fuller,084-31-2197,33127,"169 Linda Trace Apt. 596 +Pattersonmouth, SD 46405-1716",1919-10-07 09:08:40,3d:a5:9c:f2:67:d6,john69@livingston-hays.net,img/obama.jpg +Justin Jimenez,886-15-8432,11940,"526 Jackson Cove Apt. 352 +Holmeschester, NJ 66098",2002-10-25 18:10:50,67:e4:ba:e7:7b:32,michaelsmith@gmail.com,img/obama.jpg +Maria Smith,148-42-1596,24376,"2821 Diane Centers Apt. 284 +Richardville, MS 11954-6814",1952-07-01 03:50:51,68:6f:cb:08:a2:9e,katherinehernandez@yahoo.com,img/obama.jpg +Daniel Carpenter,214-58-3922,74930,"9454 Sierra Land Apt. 929 +Jenkinsberg, GA 55132-8393",1988-12-22 13:26:46,9f:c1:1d:ab:28:61,mlewis@hotmail.com,img/obama.jpg +Kyle Rivera,720-51-5408,00784,"830 Michael Mission +Jimenezton, HI 09267",1970-01-20 17:14:14,fd:e3:bc:e7:4a:43,hickskatherine@wilson.org,img/obama.jpg +Karen Dillon,064-04-4962,38763,"256 Jennifer Meadow +Johnnystad, PA 32689",1981-03-16 18:06:11,ba:65:d7:33:97:e0,jfigueroa@collier-roberts.com,img/obama.jpg +Tyler Newton,096-22-7455,88969,"509 Cummings Motorway Suite 520 +New Karl, IN 62187-8857",1933-08-25 07:19:34,a2:66:17:3e:54:4a,cole75@gmail.com,img/obama.jpg +Jessica Turner,786-81-0235,66193,"234 Scott Branch Apt. 605 +East Deborahland, MA 78225",1925-08-18 19:44:38,1b:e6:bb:e6:da:b8,dhughes@gross.info,img/obama.jpg +Heather Stone,609-39-6594,90341,"075 Gonzalez Inlet +Morganhaven, WA 72001",1951-04-23 07:58:51,95:cf:61:a7:03:d9,yhaynes@gill.com,img/obama.jpg +Sherry Ortiz,358-73-0503,09917,"888 Griffin Fork Apt. 957 +Lake James, TX 52167",2000-11-09 02:33:50,ba:05:88:c7:42:6e,scottroberts@gmail.com,img/obama.jpg +Wayne Freeman,556-43-9994,74814,"849 Roberts Dam +New Jonathan, KS 74982",1927-09-26 11:37:52,9c:d3:88:52:76:fa,timothy23@gmail.com,img/obama.jpg +Eric Allen,385-68-9544,76340,"95303 Duane Summit +Port Nicolemouth, PR 38890-5102",1975-10-23 07:02:44,6b:93:6f:c6:1b:91,jillturner@tran.com,img/obama.jpg +Angela Anderson,579-79-2520,88396,"232 Adrian Run +Jonestown, MO 10695-7801",2012-02-24 16:40:37,e0:ef:45:2b:ae:98,kara96@yahoo.com,img/obama.jpg +Monica Conley,748-98-7234,94546,"496 Ronald Forest +Lake Keithburgh, CT 40852-4270",1947-02-21 03:17:02,d5:05:f4:58:4e:a6,samantha64@russell.com,img/obama.jpg +Claire Griffin,877-30-3766,17761,"9918 Johnson Mill Apt. 212 +East Arianastad, OR 25368-3398",1991-07-25 10:10:47,63:7f:c6:ce:74:e4,currymark@gmail.com,img/obama.jpg +Lindsay Bentley,421-61-0516,28204,"24471 Kathryn Plaza Suite 935 +Maureenton, NY 17366-4971",1972-08-23 16:53:03,b0:17:5c:e1:41:38,vasquezrobin@frank.com,img/obama.jpg +Ashley Adams,581-89-0365,45100,"3054 Elizabeth Turnpike Suite 571 +West Dannyfurt, CT 62570-0827",2001-01-07 11:03:21,ad:33:84:4c:52:e8,ashley99@robinson-wilson.net,img/obama.jpg +Samuel Lopez,630-16-3263,04020,"869 Shaw Roads +Davishaven, WA 04366",1973-01-21 15:53:50,13:61:25:91:56:ab,collinsdavid@hotmail.com,img/obama.jpg +Charles Ruiz,111-23-3346,57374,"4777 Schwartz Dale Apt. 036 +Whitemouth, AK 96893",1978-08-28 07:59:04,09:04:6b:8a:44:65,cervantesmorgan@holland.biz,img/obama.jpg +Autumn Moore,191-92-0329,65765,"01819 Pace Passage Suite 404 +Johnhaven, FM 32183-7144",1932-09-15 03:27:13,3f:12:19:88:70:5e,cabrerakimberly@green.com,img/obama.jpg +James Murphy,829-84-8569,71742,"50583 Bennett Estate +Taylorbury, ID 59767",1925-08-06 02:38:03,ef:8b:04:00:c8:d7,pamela45@yahoo.com,img/obama.jpg +Luis Pierce,440-79-5487,85210,"28553 Hartman Loaf Suite 663 +Michaelfurt, NH 31349",1985-10-03 10:06:32,1f:24:15:25:39:9b,millercurtis@joyce.com,img/obama.jpg +Mr. Christian Alvarado,395-95-3729,56601,"749 Nathan Stravenue +Krausefort, ND 45980-9151",1925-06-02 01:25:35,f4:60:9c:a5:2a:c5,andreareed@alexander-clark.com,img/obama.jpg +Maria Saunders,234-58-7251,55449,"74441 Rogers Knoll +East Aliciahaven, VA 13072",1963-12-18 03:02:28,9b:7c:6d:7d:4e:14,sandrarowe@moore.com,img/obama.jpg +Chris Adams,008-89-1090,42539,"20417 Vanessa Trafficway Suite 086 +Houstonside, AK 20951-8535",1987-05-20 14:05:15,a4:9c:cd:8d:4a:59,tdyer@hotmail.com,img/obama.jpg +Joseph Medina,246-95-8231,37341,"690 Arnold Neck Suite 713 +South Andre, PA 40441-0018",1948-03-17 15:50:40,4c:7b:ce:06:3c:80,whopkins@gordon.info,img/obama.jpg +Jesse Bell,753-80-0641,74655,"029 Thompson Freeway Apt. 086 +Davistown, NM 17470",1940-01-30 02:07:15,90:b3:70:7d:f7:95,richmondvalerie@gmail.com,img/obama.jpg +Courtney Brown,162-91-1127,55280,"USNV Carter +FPO AP 71974-4526",1924-05-19 03:41:52,11:49:40:4b:68:f8,whitneythompson@wright.biz,img/obama.jpg +Todd Vega,181-97-7089,97648,"USCGC Duncan +FPO AE 40662",1952-09-18 11:49:22,82:14:e4:3d:19:aa,tmorris@yahoo.com,img/obama.jpg +Jessica Gonzalez,600-18-8679,01340,"USNS Anderson +FPO AE 43011",1963-12-02 10:36:41,7f:75:32:65:d7:3e,karen85@stephens.com,img/obama.jpg +Melissa Mcdonald,428-51-4645,89134,"5487 Scott Mills Suite 901 +Reneeview, IN 21541",1965-06-28 21:19:40,54:eb:5c:c7:64:e1,calderondaniel@glover.com,img/obama.jpg +Michael Scott,496-89-7593,21750,"92671 Roth Throughway Apt. 861 +Kendraview, FL 23884",1938-10-24 14:20:00,71:c8:6b:51:d4:c6,todd71@yahoo.com,img/obama.jpg +Eric Jackson,495-48-9249,42665,"20445 Carlson Via +South Daniel, FM 83960",1923-11-13 19:51:38,54:80:62:6b:62:e7,william39@mills.com,img/obama.jpg +Shannon Powers,172-53-6144,50898,"8676 Baldwin Spring Suite 933 +Hoffmanstad, AZ 65787",2008-01-17 20:07:39,58:56:e6:8d:cb:96,jamesgonzalez@yahoo.com,img/obama.jpg +Richard Walton,238-40-7407,09420,"Unit 5180 Box 0200 +DPO AE 68043-0301",2001-12-09 06:43:01,f1:2b:bc:6c:a3:64,mccormickjoseph@hotmail.com,img/obama.jpg +Richard Holmes,892-60-7048,55434,"40137 Robertson Flats +Audreybury, NC 23418",1926-03-17 01:35:53,bc:ed:5c:1e:63:71,sarahturner@thompson.com,img/obama.jpg +Lisa Williams,841-02-9568,27895,"99830 Stephanie Groves +Lake Judith, WV 16538",1964-05-22 09:34:12,ad:9b:0f:f7:9b:92,younglinda@larson.com,img/obama.jpg +Matthew Cameron,028-99-9641,77545,"812 Laurie Underpass Suite 611 +South Nicolechester, ID 94725-0766",1986-12-05 04:40:45,f8:87:fa:45:17:18,jrivera@king-olsen.com,img/obama.jpg +Stephanie Mercado,836-29-7209,57943,"6417 Taylor Ridges Suite 681 +South Melanieshire, NE 29334",1963-07-20 09:01:00,4a:79:f6:fd:1c:38,macdonaldbarry@peterson.com,img/obama.jpg +Justin Castillo,057-53-6843,67523,"6364 Carl Springs Suite 308 +Christopherbury, VA 05430-7082",2006-03-07 23:14:20,88:b1:c3:6d:a6:93,danielspencer@gmail.com,img/obama.jpg +Joseph Richards,316-12-6747,75742,"445 James Key Suite 121 +New Carrie, VT 33209",1999-05-08 15:14:49,83:45:bb:1e:53:a4,angelamurphy@gmail.com,img/obama.jpg +Dr. Kurt Rodriguez,808-47-5131,66674,"8093 Amber Garden Suite 751 +Randymouth, DC 91657",1927-09-11 13:31:06,6c:63:e6:a8:89:c7,scottderek@hotmail.com,img/obama.jpg +Melissa Smith,670-29-0880,36519,"4618 Jose Square Suite 034 +Jonland, DE 70512",1955-10-16 19:53:50,2f:29:1b:28:38:54,ronald32@gmail.com,img/obama.jpg +Richard Caldwell,570-76-9351,11015,"17161 Summers Lights +West Frankmouth, ME 85208",2008-03-23 08:57:04,aa:76:81:9b:8d:1b,dawn56@livingston.com,img/obama.jpg +Sheri Curry,264-96-0132,29194,"8009 Cook Crescent +New Andreachester, MT 87297",1957-05-10 01:27:05,c9:fa:8f:11:33:a3,diazlori@nguyen.com,img/obama.jpg +Lisa Wolfe,305-21-5627,16723,"4683 Brooke Valley Suite 811 +East Yvonne, NV 29115",2006-05-05 16:01:51,70:84:73:de:36:0b,conwayphillip@mcbride.com,img/obama.jpg +Alec Caldwell,357-44-2132,72996,"5708 Turner Knoll +New Tracyton, CO 95155-2199",1971-06-27 14:59:54,08:33:cd:6d:71:59,thomas19@hotmail.com,img/obama.jpg +Brittney Foster,154-02-5897,33124,"Unit 2515 Box 5201 +DPO AP 79388-0733",1921-06-07 13:10:13,f6:a5:82:72:89:c8,yperkins@yahoo.com,img/obama.jpg +Joseph Tapia,239-64-0432,42205,"98691 Waters Pass Apt. 443 +Scottstad, HI 03584",1932-04-10 11:55:44,a2:7e:fc:4b:90:b8,john77@reed.com,img/obama.jpg +Latasha Young,121-87-5987,07192,"948 Howe Knoll +Karlbury, TX 12070-4593",1926-11-28 19:21:02,bc:cc:a6:69:09:d3,walkerpatrick@matthews.com,img/obama.jpg +Alisha Ellis,216-39-8001,62330,"05673 Amber Manors +South Charleschester, SC 37906-5343",2004-03-14 23:12:55,7e:a4:7c:ed:30:1a,gilbertphillips@gamble-howard.com,img/obama.jpg +Joshua Robinson,331-19-4086,40511,"51130 Cook Knolls +Christopherton, WI 99782",1989-07-11 00:40:23,c2:55:61:14:93:2b,candicebrown@mckay.net,img/obama.jpg +Christopher Munoz,474-08-3806,82544,"8372 Sean Creek Apt. 292 +Bakerland, MN 73742-1258",1954-02-25 00:09:54,cc:70:21:21:28:dd,brittanybell@powell.com,img/obama.jpg +Linda Smith,559-55-8695,29951,"671 Tiffany Prairie +Alyssastad, CA 16274-6690",1976-12-31 19:52:37,2b:ac:16:38:39:88,chavezrobert@gmail.com,img/obama.jpg +Amy Burch,343-10-6035,13020,"PSC 0854, Box 9493 +APO AA 61721-8159",1998-11-20 23:03:12,2f:ad:f2:4b:83:53,flynnchad@gmail.com,img/obama.jpg +Kimberly Harrison,248-72-6261,26165,"71365 Kiara Mountains Apt. 836 +East Kendrafurt, MT 91683",1935-04-10 09:52:51,9d:92:40:3f:bd:3a,vlopez@gmail.com,img/obama.jpg +Patrick Welch Jr.,006-91-8891,30850,"6267 Bautista Avenue Suite 565 +Lake Amandaton, GA 61121-5742",1958-10-05 18:31:31,42:65:74:18:bf:ef,ucontreras@burns.info,img/obama.jpg +Kayla Cardenas,855-74-6163,24914,"7384 Mullins Ridges Suite 946 +Brianview, TX 69819-4990",1965-11-23 10:20:59,6a:e7:aa:90:03:4e,dbaker@hotmail.com,img/obama.jpg +Tony Lee,030-44-5111,24126,"00655 Dixon Springs Apt. 610 +Gatesbury, ND 13039",1986-12-02 05:33:23,61:23:9b:58:de:cd,lisa50@gmail.com,img/obama.jpg +Nichole Mendoza,180-33-5969,34298,"871 Billy Rapid Apt. 449 +East Holly, MP 05486-7265",1996-11-08 03:39:27,05:0a:e2:e1:d9:5a,christophercarlson@franklin.org,img/obama.jpg +Joshua Malone,692-83-7105,02420,"44792 Parker Unions +Dickersonchester, RI 40086",1938-07-14 04:29:21,a6:78:9d:15:a7:08,martin63@hotmail.com,img/obama.jpg +Denise Jenkins,013-94-8390,63597,"15827 Kevin Isle +Barnetttown, GA 59581",2016-03-09 04:17:00,72:e8:e6:f3:08:16,shawnphillips@arias.net,img/obama.jpg +Frank Soto,624-30-3654,71026,"0244 Mark Stream Suite 680 +Gardnerborough, VT 61281-8167",1959-12-18 19:57:46,10:0d:2d:bb:9f:38,mparsons@harper.net,img/obama.jpg +Stacy Hogan,682-87-6761,16217,"75404 Caitlin Gateway Apt. 391 +North Lisa, NC 81556",1949-05-12 17:16:17,8e:58:75:1a:9e:55,qwilliams@gmail.com,img/obama.jpg +Stephen Davis,369-06-2993,62315,"659 Leblanc Rest +Port Catherine, HI 34523-4207",2011-04-19 04:04:48,df:e0:47:c8:14:81,lori85@gmail.com,img/obama.jpg +Debra Bowen,071-60-1063,94843,"072 Angela Stravenue Apt. 874 +Laurabury, VI 12881",1964-07-23 12:53:26,a8:37:c0:3d:d6:a5,stephaniestephens@hotmail.com,img/obama.jpg +Jennifer Lowe,295-18-1586,87425,"86143 Larson Road Apt. 294 +Torresmouth, OK 98511",1969-02-14 16:39:37,c1:88:59:a3:1e:f2,acantu@perez-wilson.com,img/obama.jpg +Christian Harper,632-21-1621,84491,"3785 Williams Drives Apt. 388 +North Doris, DC 64670",1985-11-13 16:57:35,93:db:53:0a:48:8d,cynthia40@yahoo.com,img/obama.jpg +Linda Mason,807-38-0318,10675,"42599 Cook Skyway +Kevinborough, NC 93870",1935-11-26 18:53:34,3a:5b:41:4c:c0:26,xpeterson@hotmail.com,img/obama.jpg +Jesus Gonzalez,154-10-0811,12298,"30409 Daniel Causeway Apt. 610 +Port Matthewhaven, FL 95712",1984-12-21 18:21:59,6a:f3:e4:1e:8b:89,andrea58@morales.net,img/obama.jpg +Brandon Anderson,751-44-3037,89918,"97602 Bruce Crescent +Williamville, NJ 90182-4648",2004-05-21 20:33:44,41:5f:d2:fc:e5:e6,andrew96@yahoo.com,img/obama.jpg +Steven Cooper,637-80-1119,72575,"20426 Caitlin Course +Thomasland, NV 67980",1995-08-25 21:18:29,d2:77:5d:e5:ba:d4,lisa94@castillo.com,img/obama.jpg +Robyn Harvey,199-87-8922,15076,"3061 John Shoals +East Adamberg, NH 05992-1364",1921-10-19 04:07:38,76:06:15:ce:3e:78,lmartin@yahoo.com,img/obama.jpg +Matthew Wilson,514-35-2735,69894,"3032 Aguilar Shores Apt. 490 +Sarahstad, VI 42025",2013-03-30 04:06:11,a9:c5:c1:1c:21:da,garylee@yahoo.com,img/obama.jpg +Thomas Barnes,261-76-1528,86924,"7412 Smith Squares +Nicholaschester, DE 97352",1948-06-23 01:24:03,96:18:f6:98:a6:c6,jenniferbrown@farley-murphy.com,img/obama.jpg +Jessica Franklin,217-35-8295,39215,"590 Castro Forges Suite 298 +Kimberlyton, NY 25940",1922-12-25 02:06:14,5b:35:ac:2d:ac:90,taustin@hotmail.com,img/obama.jpg +Maureen Scott,103-16-2821,94177,"80809 Hunt Ridges +Leeshire, IA 11012-8700",1980-03-21 22:50:06,03:37:b7:26:60:6f,wrightchelsea@gmail.com,img/obama.jpg +Michael Carr,849-25-7558,08653,"Unit 2087 Box 1683 +DPO AP 36081-9205",1954-07-02 22:55:32,9f:c2:f3:01:dc:0e,markbrown@thomas.com,img/obama.jpg +Deborah Davies,837-03-9675,65595,"7974 Kenneth Turnpike Apt. 660 +Christinaport, CT 23645-4291",1965-11-12 07:27:36,83:4f:f0:69:a1:ee,ymitchell@gmail.com,img/obama.jpg +Jean Richards,217-18-8499,19072,"Unit 3540 Box 9177 +DPO AE 90636",1934-07-18 09:54:33,48:4b:90:f1:ec:b9,ethomas@sanders.info,img/obama.jpg +Samantha Hudson,496-03-6308,42581,"64861 Karen Flats Apt. 646 +North Jamesstad, SC 63034",1923-02-20 16:56:43,be:6c:8d:2b:96:6a,madisonmills@pace.net,img/obama.jpg +Daniel Young,443-74-7804,70618,"PSC 4219, Box 7688 +APO AP 07300-4625",1983-04-18 07:20:40,00:b7:d7:87:37:5a,baldwintravis@yahoo.com,img/obama.jpg +John Smith,514-40-5424,21782,"5742 Johnson Plaza Apt. 740 +Birdstad, MD 96470",1983-11-09 08:09:23,bd:bf:af:9b:1f:08,xbarnes@hall.biz,img/obama.jpg +Denise Chapman DVM,884-12-7118,76868,"09350 Kenneth Junctions +North Wesleyborough, LA 16585",1993-05-12 16:10:21,bb:84:ac:f4:21:dc,hicksjill@miller-thomas.net,img/obama.jpg +Michael Walker,438-66-7369,49600,"8882 John Curve Suite 944 +West Marcus, AR 63616",1947-10-09 19:06:55,26:7a:31:e1:ac:c4,lorraine85@yahoo.com,img/obama.jpg +Jenna Gibson PhD,706-84-4732,91722,"05349 Teresa Garden +Rochaland, IL 77804-9488",1973-11-11 02:24:57,93:38:63:9b:65:ee,grahambilly@hotmail.com,img/obama.jpg +Tonya Allen,725-86-7386,19059,"648 Davidson Center +Ellisside, NC 01513",1936-10-29 09:56:51,af:38:5e:1f:87:69,igreen@hubbard.com,img/obama.jpg +Ashley Roth,429-37-0623,55822,"549 Holmes Drive Apt. 128 +Liuberg, AK 09812-5446",1948-08-12 09:28:56,2a:28:64:03:85:29,markmoore@hotmail.com,img/obama.jpg +Angela Bean,189-44-0097,89872,"5055 Dillon Roads Apt. 758 +Christopherfurt, ME 25313",2008-12-05 07:37:39,26:fb:51:a0:21:f6,charlesmurphy@williams.com,img/obama.jpg +Jessica Donaldson,251-24-9434,44673,"64762 Fisher Centers Apt. 416 +New James, NH 01446",1974-11-19 01:39:24,8e:2f:02:5a:d3:70,jonathanjones@lee.net,img/obama.jpg +Kelsey Reynolds,588-48-5975,41308,"62884 Jerry Roads +Lake Elizabethville, MA 79443-4588",1984-04-03 08:43:56,cb:93:20:c1:62:39,james22@smith.com,img/obama.jpg +Hannah Ramsey MD,704-96-5108,97661,"676 Amber Port Apt. 860 +Sanchezmouth, MS 89273",1975-01-08 16:43:10,a5:88:e2:c6:0f:23,amyflores@olson.biz,img/obama.jpg +David Russo,724-91-8471,69586,"PSC 9533, Box 3314 +APO AA 18977",2014-04-22 06:58:48,2b:9e:d1:5d:46:01,robertmiller@anderson.com,img/obama.jpg +Michelle Noble,501-74-4759,48868,"7604 Miller Alley Apt. 266 +Lake Lisa, AL 26784-4438",1942-10-30 21:34:40,8f:e8:e1:d8:46:c1,fryedonna@zavala.com,img/obama.jpg +Yvonne Payne,111-72-2137,57892,"709 Scott Spring +West Michael, FL 81307-5576",2016-08-22 18:19:19,f2:f2:25:3f:0a:a5,rebecca42@gmail.com,img/obama.jpg +Susan Guerrero,875-44-2148,33614,"674 Breanna Lodge +Stevensstad, FM 05883-8460",1974-11-16 19:32:59,84:5e:7a:89:40:b4,john70@sloan-brown.com,img/obama.jpg +Rebekah Smith,891-70-3007,71338,"34931 Stephanie Trail Apt. 297 +Jodyton, WI 97758-8874",1959-04-03 18:54:40,17:8f:54:dc:e5:3a,brad89@gmail.com,img/obama.jpg +Cassie Davis,548-60-8512,42068,"904 Matthews Glen +Amymouth, WV 54767",1983-08-31 03:47:14,a1:14:74:8c:85:d6,ortizsusan@yahoo.com,img/obama.jpg +Justin Cook,472-20-5206,95648,"USS Payne +FPO AE 61269",1983-07-01 04:57:11,22:37:6e:a0:38:1a,xrobinson@patrick-newman.org,img/obama.jpg +David Gibson,379-77-0863,00870,"32412 Caldwell Gateway +Bobbyview, WY 82865-8086",1923-10-30 00:26:11,de:59:2a:1b:be:77,hillmichael@yahoo.com,img/obama.jpg +Carla Combs,475-14-4686,05068,"52875 Wesley Stream Apt. 160 +Kaneburgh, KS 39699",1989-04-08 18:56:45,ce:a2:61:90:aa:d0,juliefields@cooper.com,img/obama.jpg +Alec Davis,234-69-4283,48205,"32268 Annette Square +Richardsonland, VT 76011",1935-06-12 10:51:29,a0:42:f4:e6:be:ae,stephaniebird@hotmail.com,img/obama.jpg +Alicia Terry,881-71-0133,67986,"Unit 7565 Box 3299 +DPO AP 30606",1958-04-21 07:35:13,9a:e6:1e:4a:a8:8a,anthonywalker@hotmail.com,img/obama.jpg +Gabriel Harris,445-59-8637,29366,"15352 Tina Corners Suite 481 +Christopherfurt, OK 67520-3136",1922-02-06 22:16:15,59:8f:ef:4c:02:6c,brian55@shields.info,img/obama.jpg +Vernon Harris,515-13-8400,60955,"986 Joseph Curve Suite 599 +Elizabethfurt, CA 62804",1938-01-30 01:19:17,87:21:ac:cb:f9:4d,tony77@gmail.com,img/obama.jpg +Michael Jenkins,150-96-8148,32878,"5876 Jennifer Trail Apt. 006 +Karenhaven, MA 23105",1925-06-08 07:33:58,64:69:96:56:07:f3,xburns@martin-melendez.com,img/obama.jpg +John Smith,894-28-2403,85386,"2200 Ethan Neck Apt. 649 +Scottfort, ID 69060-4862",1920-09-22 21:27:41,11:2a:c8:4f:ad:f2,uhenderson@gmail.com,img/obama.jpg +James Molina,322-11-8109,56649,"8506 Richard Mews Apt. 929 +Lake Davidstad, NJ 91773",1967-02-18 04:33:10,a2:57:41:14:1c:74,mhernandez@yahoo.com,img/obama.jpg +Emily Garrett,032-16-8058,46298,"4170 Caitlyn Prairie +Andrewport, TX 96681-5377",1943-06-12 14:27:30,73:86:53:c7:5e:a2,vparks@arellano.com,img/obama.jpg +Kevin Nguyen,149-19-0699,70618,"7867 Gibson Village Suite 677 +South Kimberly, AR 74186-2250",1976-10-07 21:08:05,03:6f:e7:0c:49:87,richard56@yahoo.com,img/obama.jpg +Megan Carson,769-71-4884,64314,"46658 Steven Fords +East Bianca, SD 54367-2449",1937-08-12 14:05:25,cb:ac:d9:1d:a9:5d,carteranne@marshall.com,img/obama.jpg +Loretta Williamson,766-29-5370,91911,"3861 Carlson Hills Apt. 434 +Hillville, NC 49503-8249",1996-12-02 16:51:20,0d:48:ad:d7:ef:d2,bvaldez@warner.com,img/obama.jpg +Lucas Roberts,834-04-1553,17660,"449 Michael Curve +Molinaburgh, CA 57475",2009-07-30 01:44:22,f6:81:77:f7:0f:19,everettronnie@gmail.com,img/obama.jpg +Peter Johnston,837-79-2181,58426,"67508 Boyer Common Suite 944 +West Robert, GU 74999-2800",1958-08-24 02:54:56,12:0b:cb:fa:05:34,michael50@williams.com,img/obama.jpg +James Tanner,106-27-8723,89095,"6883 Alvarado Views +New John, MP 39900",1961-09-18 13:56:09,f8:d0:b5:7b:6d:b7,vscott@hamilton.com,img/obama.jpg +Michelle Harvey,110-76-4178,05605,"098 Daniel Inlet +Richardborough, AL 55332",1986-12-16 02:57:58,0b:63:ea:88:df:23,vaughnelaine@gmail.com,img/obama.jpg +Taylor Fitzpatrick,680-37-4622,33186,"4724 Logan Ridge +Acostastad, MD 87500",2000-01-04 02:59:03,08:f4:1a:16:aa:f5,xyates@avery.org,img/obama.jpg +Barbara Gonzales,462-22-6177,12048,"1688 Candace Creek Apt. 745 +North Monicatown, NH 98145",1992-09-12 21:50:02,cb:b2:e4:11:f4:14,icain@adams-murray.com,img/obama.jpg +Tyler Payne,206-35-3614,34976,"490 Murphy Station +East Michaelside, WA 38582-8291",1999-11-09 08:24:13,d6:95:00:a2:20:66,ejordan@hotmail.com,img/obama.jpg +Tanya Sanchez,155-56-0466,33811,"1584 Wilson Dale Apt. 177 +Westhaven, GU 21197-2684",1955-06-11 03:22:37,6c:6d:2e:b9:55:9a,russellmartha@gmail.com,img/obama.jpg +Rachel Lee,081-34-5118,41678,"30940 Sullivan Ports Suite 456 +West Rodney, WY 26077-5587",1992-05-20 08:39:25,5f:b1:cf:0b:7a:78,kcunningham@andersen.com,img/obama.jpg +Jeffrey Roth,352-76-1445,60501,"56312 Katherine Rue +Julianland, CA 36462-3658",1987-04-21 17:41:36,09:7c:3a:69:db:9c,matthewpalmer@hotmail.com,img/obama.jpg +Andrew Gomez,466-51-1969,86419,"6969 Jonathan Forge +Lake Richardfurt, SC 96556",1944-10-12 22:11:47,a8:ad:b8:80:f0:cc,nmarshall@yahoo.com,img/obama.jpg +Valerie Best,163-15-1553,57230,"Unit 4026 Box 7573 +DPO AA 29081-1814",1967-04-30 08:00:43,0c:e2:9d:8d:cb:b3,lisayoung@yahoo.com,img/obama.jpg +Jessica Ashley,584-36-2058,29758,"270 Castro Estate +West Marymouth, PA 38391",1941-02-14 02:39:51,50:22:ee:1f:df:e7,johnsonkathleen@burch-kennedy.com,img/obama.jpg +Christian Scott,466-15-9982,96848,"60932 Bryant Walk +Port Brandon, ID 52306",1965-12-12 19:10:54,6a:70:5c:ce:ec:80,catherinehuff@gmail.com,img/obama.jpg +Anna Williams,189-67-6344,49008,"0640 William Union Apt. 135 +Port Lindsey, MN 51798",1962-07-28 13:20:07,e8:04:d0:33:29:f5,lindastephens@yahoo.com,img/obama.jpg +James Wright,450-62-4726,58755,"26317 Harris Cape +Haleburgh, RI 30895-7512",2006-12-01 12:38:33,7e:24:90:66:e7:b5,millsrussell@yahoo.com,img/obama.jpg +Bryan Brown,111-85-0858,51914,"4957 Fowler Lane +Kevintown, WY 67383",1969-07-03 10:22:53,bb:a7:71:9d:f5:fb,srosales@torres.info,img/obama.jpg +Robert Payne,135-70-6491,05402,"89560 John Walks +North Lori, KS 26894",2006-10-18 14:04:27,c0:09:a2:c3:1a:54,paula08@yahoo.com,img/obama.jpg +Laura Kelly,629-12-6727,23897,"91140 Shaw Cliffs Apt. 623 +Perkinsstad, TX 87382",1964-03-25 18:38:02,4e:9c:e6:a6:c5:5b,michaelterry@hotmail.com,img/obama.jpg +Chelsea Chaney,038-76-7658,98904,"PSC 7125, Box 7112 +APO AP 84673",1956-03-05 15:27:40,5c:89:07:ca:18:38,brobinson@dennis.com,img/obama.jpg +Cynthia Maxwell,852-51-5057,00541,"099 Ferguson Ramp Apt. 421 +Xavierburgh, CT 73799-9763",1923-11-08 11:33:35,50:cb:8e:98:98:28,ballen@fletcher.biz,img/obama.jpg +Timothy Duncan,442-74-7309,87120,"4015 Angela Viaduct +West Mark, OH 20590-8079",1924-08-22 07:11:48,c5:33:57:1f:8d:49,pguzman@gmail.com,img/obama.jpg +Lawrence Wise,718-49-0821,64924,"PSC 2744, Box 7149 +APO AP 16608",1999-11-26 14:40:57,ec:b0:9f:07:09:8c,isaiahsmith@gmail.com,img/obama.jpg +Joseph Brown,746-23-6491,66637,"04900 Ross Rue +Lake Randy, UT 30821-4197",1960-09-25 10:02:03,4e:28:1a:13:8a:0c,judy46@parker.com,img/obama.jpg +Raymond Mahoney,690-03-9381,38311,"332 Lindsey Spurs +Stephanieshire, CO 47804",1934-10-30 23:52:03,33:b8:4e:ae:0a:a0,brittneythomas@hotmail.com,img/obama.jpg +Holly Garner,871-16-6294,80847,"266 Massey River Apt. 033 +Lake Jared, MH 09496-5714",1993-10-21 03:53:32,bb:e0:49:ac:ac:e2,hgonzales@sweeney.com,img/obama.jpg +Melissa Clark,751-09-6263,75739,"306 Kayla Underpass Suite 703 +Gavinfort, IA 14053",1936-09-07 11:48:56,4e:93:62:b3:38:25,mccoydanielle@yahoo.com,img/obama.jpg +William Dominguez,058-71-5487,09701,"1492 Daniels Row +Laurenbury, DC 07954",1921-10-25 21:21:38,e2:a8:b1:aa:4b:b6,cookgary@yahoo.com,img/obama.jpg +Danielle Li,393-55-9185,58794,"783 Lisa Road +West Timothybury, NC 90286",1957-11-03 04:41:50,92:87:a6:ce:bc:e8,carmen69@silva-turner.com,img/obama.jpg +James Gardner,468-95-4635,67238,"8883 Valenzuela Heights Apt. 762 +South Samantha, DC 57769",1969-03-02 17:49:22,01:6c:4f:48:49:c3,amandarandolph@yahoo.com,img/obama.jpg +Rhonda Vasquez,740-46-4678,84838,"771 Raymond Ramp +Davisborough, SD 80148",1940-12-16 00:29:54,d9:b9:e2:3c:65:8b,rodriguezmichael@hotmail.com,img/obama.jpg +Eric Phillips,466-35-3694,13161,"118 Hicks Passage Apt. 431 +East Hollyburgh, CT 69223",1960-09-08 07:44:54,dd:01:83:e8:a3:34,imoore@hotmail.com,img/obama.jpg +John Conner,093-69-6307,07352,"504 Harmon Lakes Apt. 607 +Lake Michaelstad, PR 64347-2645",1965-02-11 07:36:36,f3:2e:f0:62:05:92,spowell@cunningham.com,img/obama.jpg +Taylor Williams,692-05-4751,64102,"7448 Jonathon Path +Katherinefort, TX 63942-2086",1943-11-26 20:23:03,98:aa:cb:99:f3:e7,michaelschmidt@wallace.com,img/obama.jpg +Melissa Patterson,341-86-6713,47494,"39900 Denise Wells +Port Jonathan, PW 16780-7241",1977-12-31 02:11:26,3f:81:f4:a6:3d:b0,anthony64@parrish-burns.biz,img/obama.jpg +Michael Dickson,879-37-3806,19380,"898 Bennett Villages Apt. 751 +Rodriguezmouth, WY 92619-1785",1996-12-05 11:13:01,11:57:56:bd:7f:54,hernandezzachary@hotmail.com,img/obama.jpg +Zachary Richards,265-13-3894,11451,"593 Vicki Road Suite 450 +Garciaton, NC 45806",1950-11-01 10:46:34,ba:5d:87:f8:a6:b1,lrandall@yahoo.com,img/obama.jpg +Steven Smith,597-62-5665,05832,"5419 Castillo Parks Suite 419 +West Jonbury, GA 83226",1983-09-15 04:10:27,30:9b:d9:7e:36:66,thomaskramer@torres.com,img/obama.jpg +Matthew Moore,381-44-2506,34277,"5309 Zimmerman Land Suite 610 +Dyermouth, WA 26645-8539",2005-08-05 18:45:56,ce:31:5f:52:2f:22,hollyhenderson@garcia-anderson.net,img/obama.jpg +Cheyenne Clark,198-47-9630,24056,"27739 Patricia Plains Suite 054 +Lake Jacquelinemouth, HI 99662",1958-05-26 18:31:54,f0:62:11:2d:2a:ca,haleamy@hotmail.com,img/obama.jpg +Susan Harris,722-26-8298,50189,"94118 Jason Neck +Matthewport, OR 30829",1993-04-23 13:40:50,8b:00:c4:44:fb:98,leahmorgan@gmail.com,img/obama.jpg +Justin Anderson,586-07-7967,00505,"863 Page Rapids Apt. 022 +Justinland, AL 35588",1976-01-07 10:20:25,24:ad:ec:21:6d:e2,bishopangela@hawkins.com,img/obama.jpg +Devin Solomon,030-15-8098,20859,"0278 Brian Gateway +Margaretbury, SC 15404",1963-11-26 09:56:19,89:4b:7c:38:4f:9d,umurphy@edwards.com,img/obama.jpg +Michael Beasley,395-74-6720,42990,"Unit 0042 Box 8347 +DPO AA 63485-9064",2003-09-09 02:29:18,20:bf:9b:b3:f1:45,kimberlywilliamson@estrada.net,img/obama.jpg +Natasha Clark,658-66-4144,72332,"USNS Ford +FPO AA 13908-1063",1978-06-21 06:30:51,e5:25:24:c4:1e:bb,hreynolds@matthews.info,img/obama.jpg +Jessica Spencer,676-90-4528,84197,"44847 Robinson Stravenue +North Lynntown, TX 07027",1990-01-07 19:37:46,ee:50:ca:bb:67:8c,anthonymiller@delacruz-marshall.net,img/obama.jpg +Diane Page,329-46-2246,20002,"PSC 5703, Box 9943 +APO AE 28946",1967-02-21 20:39:04,9d:78:94:68:f1:49,usanchez@gmail.com,img/obama.jpg +Sarah King,028-29-9780,55483,"9251 Johnson Extensions +Port Michaelstad, AZ 00171",2010-11-11 06:43:54,96:46:15:88:e2:8e,fordchristian@mckenzie-olson.com,img/obama.jpg +Lisa Wilkerson,774-90-4070,33819,"078 Ramirez Inlet +Lake Christophermouth, HI 71775",1973-08-25 08:39:36,a0:e3:fb:ae:23:d2,christopher50@gmail.com,img/obama.jpg +Jennifer Campbell,707-85-1583,39267,"Unit 2105 Box 7284 +DPO AP 35411-9262",2010-08-17 10:47:03,cc:3d:57:51:8f:27,tlevy@jones-campbell.com,img/obama.jpg +Derek Frye,467-74-3274,62046,"15309 Richard Crest +West Marialand, NH 13314",1936-07-14 05:30:14,a7:62:67:c2:54:9f,schmidtlaura@hill.com,img/obama.jpg +Teresa Thompson,344-90-8957,77007,"026 Simpson Motorway +Bookerhaven, AK 60833-3169",2015-09-29 10:07:36,27:f2:ad:86:5c:c1,dana35@yahoo.com,img/obama.jpg +Carlos Ramirez,562-98-7512,21882,"578 Michael Isle +Port Cheryl, AZ 13102-1572",1996-09-11 00:55:33,9a:f5:a7:24:92:78,nicolebutler@smith.net,img/obama.jpg +Susan Williams,260-43-8366,83809,"18502 Vanessa Mews Apt. 872 +Kayleefurt, WA 52393-2830",1921-04-04 11:40:33,ee:97:9b:d6:f1:98,christopherjohnson@martinez-blackwell.com,img/obama.jpg +Edward Mitchell,525-36-6265,06419,"7282 Clark Isle +Christopherview, GA 98726",1928-04-21 21:34:23,3c:24:eb:5c:2f:c3,brandy82@hotmail.com,img/obama.jpg +Frederick Avila,321-53-6632,77141,"1646 April Crossroad +Lake Jessicaborough, MD 30195",1917-05-22 20:27:42,06:29:1a:68:62:50,mcconnelldawn@sawyer.net,img/obama.jpg +Kyle Kelley,629-48-5590,80515,"557 John Point Apt. 358 +Melissaberg, IL 50365",1942-10-04 21:24:56,45:6c:3f:f5:4b:83,alexander99@rodriguez.com,img/obama.jpg +Alexander Alvarez,526-66-0246,11907,"8494 Brooke Loop Apt. 064 +Ryanmouth, WV 90629",1941-02-18 02:08:31,ea:c3:08:89:f2:f1,nbradley@hotmail.com,img/obama.jpg +Cory Hudson,667-92-3312,06836,"5295 Dustin Keys Suite 019 +New Brittanyside, AS 63265-3568",1968-03-30 08:53:23,c7:01:df:a1:1d:1c,rmurphy@gmail.com,img/obama.jpg +Anthony Sanders,151-72-9230,30676,"0836 Michael Extensions Suite 536 +Kaylastad, MT 44674-4731",1977-04-06 15:43:55,e0:3b:a5:ec:7a:b7,stephanieharris@hotmail.com,img/obama.jpg +Dr. Danny Byrd,618-03-6416,17649,"936 Dorothy Mount Suite 442 +New Laurenhaven, NE 14134-4587",1958-01-19 23:10:19,a6:69:1a:88:ff:69,elizabethkent@kelly.com,img/obama.jpg +Patricia Choi,083-51-4566,01881,"68010 Brian Walk +Lake Wendy, DC 73193",1999-02-06 04:42:26,2d:be:75:da:0c:1a,brianwest@fitzgerald-white.com,img/obama.jpg +Amanda Stuart,297-15-1585,20577,"7877 James Summit Apt. 286 +North Annabury, ME 33063-0970",1959-07-12 02:30:09,4a:f9:14:bd:45:7e,michaelmorris@hotmail.com,img/obama.jpg +Amanda Dennis,248-14-7279,08153,"703 Bowen Ports +Sandersburgh, AZ 98229",1945-01-28 01:29:58,03:a3:b6:29:d5:9d,garydavis@foley-cohen.com,img/obama.jpg +William Nichols,766-71-0233,63980,"316 Jean Dam Suite 456 +East Kellyside, MT 55617",2009-12-26 03:50:09,14:6e:90:cf:7b:c7,raymond20@hawkins.com,img/obama.jpg +Gregg Graham,880-05-7212,96773,"79314 Matthew Glen Suite 183 +New Brandy, GA 63581-3127",1929-02-08 17:19:39,c0:8e:54:c2:7e:6a,henry67@cook.com,img/obama.jpg +Joshua Berger,656-49-2826,19468,"7928 Holly Trace +Lake Robert, WV 10023-5535",1999-05-07 20:29:03,b3:3a:32:ff:8a:6f,daniellemiles@hotmail.com,img/obama.jpg +Nicole Burke,293-05-1006,63436,"1462 Nicole Fields Apt. 905 +Jasonport, LA 68579",2006-04-27 12:07:34,3a:2f:9c:d9:93:0a,youngoscar@yahoo.com,img/obama.jpg +Joseph Gonzalez,271-04-8200,46875,"06525 Kim Stravenue Suite 363 +Wigginston, ME 17027",1966-06-19 22:25:35,18:c4:83:2a:49:df,eellis@hotmail.com,img/obama.jpg +Elizabeth Marshall,135-33-1925,24453,"8111 Anna Unions +Cervantesberg, ID 34288-5905",1951-06-03 18:52:48,c3:e8:06:95:04:1a,perezjane@simpson.org,img/obama.jpg +Marissa Dunn,208-61-2723,59764,"7070 Scott Well Apt. 712 +South Jenniferville, WY 46394-3365",2006-08-02 19:11:47,1e:29:fd:21:32:37,lisa46@malone.com,img/obama.jpg +Nathan Wood,801-89-8959,87261,"4790 Amber Forges +South John, IA 69173",2003-03-01 09:28:33,18:0b:95:06:d2:fd,gardnerlori@yahoo.com,img/obama.jpg +Jonathan Kelly,770-56-0796,61907,"3356 Daniel Path Suite 753 +Doylestad, MH 10524",1986-08-23 18:52:46,8a:15:4c:8b:7d:76,bradleyblack@yahoo.com,img/obama.jpg +Brian Jacobson,524-11-4902,19998,"83049 Kyle Cliffs Apt. 530 +New Holly, CA 17417-3537",1989-12-01 17:25:28,89:f2:00:03:bb:0c,valerieortiz@weber.net,img/obama.jpg +Ryan Williamson,374-99-0312,37266,"85794 Susan Parkways Suite 854 +East Jennifer, RI 61156",1941-06-06 13:52:21,2f:60:b0:ca:29:bc,kperkins@gmail.com,img/obama.jpg +Sandra Shannon,088-14-5811,42518,"93162 Harmon Junction Suite 370 +Samuelland, MN 29469",1984-07-28 01:01:07,bd:6f:5e:73:06:24,travislowe@rodriguez-martinez.com,img/obama.jpg +Mary Robinson,575-93-0248,71906,"4169 Wright Knolls Suite 538 +New Deanton, WY 51766-5558",1993-06-02 16:05:00,3e:f5:9a:7b:4d:50,reyesdana@gmail.com,img/obama.jpg +Jared Sutton,030-37-4266,53568,"4706 Richardson Port Suite 158 +Lake Jonathan, AL 31403",1945-05-30 10:07:06,9c:35:5e:67:ab:d4,janetrodriguez@gmail.com,img/obama.jpg +David Bowman,651-37-4318,55997,"24509 Laura Bypass +Lake Mistyfort, IN 11239",1923-11-16 14:50:35,03:30:46:b6:62:44,matthewwilliams@morris.org,img/obama.jpg +Alicia Cox,574-79-8113,36257,"PSC 2519, Box 4706 +APO AP 96158-2926",1932-05-23 05:39:06,47:8c:e2:6a:a2:26,michael32@hotmail.com,img/obama.jpg +Joy Moore,735-87-3926,88803,"USNV Pena +FPO AA 65422",1979-12-19 13:40:16,88:be:90:91:5a:a6,wrightlauren@carpenter.info,img/obama.jpg +Thomas Hunter,151-35-1817,60696,"USNV Hendricks +FPO AE 34262-7349",1919-01-29 22:02:24,e1:62:14:a9:e2:44,christinahood@tran-lewis.org,img/obama.jpg +Isaiah Barry,114-40-6698,38384,"057 Monica Port Apt. 960 +North Amy, SD 09514",1949-02-18 08:55:08,ec:65:1d:e1:56:0f,lamrandy@gonzalez-fleming.biz,img/obama.jpg +Stephen Baker,350-84-9458,45966,"992 Mendoza Courts +Marcomouth, WY 67594-0581",1944-06-10 13:49:23,84:87:91:aa:e3:c2,matthewmerritt@daniels-king.com,img/obama.jpg +Angel Murphy,884-70-6762,16467,"504 Matthew Skyway +West Sarahberg, DC 96476",1955-10-07 08:38:40,b1:00:d5:31:0f:65,cynthia12@hammond.biz,img/obama.jpg +Jennifer Coleman,318-74-8295,69287,"862 Ochoa Cliffs +Deleonstad, OR 99016",1989-05-20 09:20:35,62:9d:d6:c3:87:99,dustin55@williams-lewis.com,img/obama.jpg +Katherine Powers,315-72-8954,43521,"USS Wise +FPO AP 05905",2012-08-25 18:01:17,e6:04:bf:47:86:ee,beckerdeborah@brown-jimenez.com,img/obama.jpg +Ashley Manning,605-45-3199,77473,"3860 Gonzales Crossroad +South Malloryborough, RI 14102-4837",1992-11-18 06:28:21,8a:77:32:64:f8:35,davidmclaughlin@blackburn-boyd.biz,img/obama.jpg +Dawn Smith,132-69-4469,96467,"17338 Jill Fort Apt. 906 +Geraldhaven, ID 20416-7307",1950-08-14 06:12:50,37:d9:c0:1a:94:3a,cobbtracey@gordon-bennett.com,img/obama.jpg +Anthony Foster,308-07-6989,46185,"838 Robert Springs Suite 546 +Masontown, OR 22575",1957-09-11 04:57:21,71:66:d1:bf:35:d0,hortonmatthew@morrow.biz,img/obama.jpg +Trevor Martin,364-06-5557,71345,"USCGC Flores +FPO AA 72815",1927-02-06 20:41:46,fa:f9:57:96:95:7b,sandra59@hotmail.com,img/obama.jpg +Allen Gonzales,500-81-1163,54595,"66054 Trevor Hill Apt. 244 +Ryanland, FL 01923",1919-08-13 02:58:12,cb:cf:6a:e2:1a:b9,james11@gmail.com,img/obama.jpg +Spencer Banks,180-67-2287,48777,"737 Chen Pines +Jasminebury, NV 21969-9292",1931-11-10 18:49:17,cf:be:5d:82:28:99,rlong@yahoo.com,img/obama.jpg +Jonathan Stone,116-20-1696,64765,"1284 Joseph Bridge Apt. 715 +New Debrafort, NY 77153-5310",1930-03-18 03:03:28,35:04:da:68:77:7b,nicoleguerrero@noble.com,img/obama.jpg +Derek Marshall,893-03-3005,83794,"06410 Gardner Trace +Port Jeffreyside, MS 41641-0450",1994-09-11 16:24:30,8c:1a:01:b4:a6:84,fergusontimothy@gmail.com,img/obama.jpg +Spencer Dixon,691-81-9404,30733,"PSC 1857, Box 4251 +APO AP 84280-3170",1960-10-17 20:32:18,d4:bb:b1:a6:72:3d,jacquelinebrown@hotmail.com,img/obama.jpg +Laura Wright,835-60-2838,77932,"2988 Edwards Drive Suite 292 +Marvinstad, LA 04338",1968-08-05 09:05:59,d4:7d:3a:de:7d:03,adamhart@gmail.com,img/obama.jpg +Sharon Russell,256-47-3880,39126,"8798 Harvey Burg +Ericmouth, TN 21658-2931",1937-07-07 14:41:23,08:50:17:d3:a5:4a,griffithdaniel@cox.biz,img/obama.jpg +Molly Moore,410-88-1754,82405,"2617 Tamara Estate Suite 277 +Tomview, CA 59803-2838",1985-02-12 05:32:31,16:3d:8c:24:65:16,mward@yahoo.com,img/obama.jpg +Dr. Michael Alexander,739-10-3053,80674,"308 Heather Union +Courtneymouth, CT 33732-7132",1964-03-10 10:02:33,a1:c5:cc:e4:32:53,brandon98@yahoo.com,img/obama.jpg +Anna Smith,262-66-7593,39719,"5023 Robinson Heights Suite 449 +Howardfurt, AR 64696",1987-12-15 22:47:43,fb:a7:0f:8d:2f:73,thompsonmichelle@hotmail.com,img/obama.jpg +Taylor Middleton PhD,336-06-4879,89530,"86893 Anderson Island +Amandatown, VI 36148-0091",1998-12-28 20:04:05,5c:1b:c1:9e:ba:da,jennifer11@yahoo.com,img/obama.jpg +Christopher Campbell,855-13-1778,25610,"220 Brandi Greens Suite 912 +Laceyville, PA 12646-9960",1977-10-27 04:10:33,db:47:c4:f6:f6:5e,melissa64@yahoo.com,img/obama.jpg +Jennifer Jones,161-20-2733,59604,"788 Middleton Forge Apt. 583 +Randolphfurt, AK 66530-6190",1997-10-10 12:19:13,90:87:59:55:c7:88,omoore@yahoo.com,img/obama.jpg +Troy Morales,328-45-7939,64342,"USNS Brown +FPO AP 29105",1968-06-19 06:25:16,bb:f0:f9:99:e0:5a,bryantmary@pearson.net,img/obama.jpg +Jeffrey Kim,534-20-5168,16221,"Unit 2273 Box 5068 +DPO AE 78143",2009-05-30 05:55:30,b7:3c:e1:be:46:6a,codyherman@lambert.com,img/obama.jpg +Barbara Flores,772-68-1817,24276,"631 Diana Overpass Apt. 312 +New Dakota, IA 31191",1926-02-01 07:30:40,88:7f:9a:66:85:40,wmitchell@gmail.com,img/obama.jpg +Renee Durham,312-07-8108,57273,"418 Ruiz Creek +Sherifort, MA 40908",1937-01-08 12:59:10,b6:c1:0c:83:78:85,michaelrogers@yahoo.com,img/obama.jpg +Taylor Stephens,562-48-9857,98719,"926 Cassie Ferry +Jacobfurt, VT 96158-6092",1975-10-05 18:10:48,92:a1:eb:1c:16:43,matthewcohen@hotmail.com,img/obama.jpg +Kathleen Arnold,262-01-1585,84227,"2186 Jared Curve +Danielhaven, DE 70583",2013-01-25 12:07:39,5c:2b:55:1e:76:0e,amanda61@yahoo.com,img/obama.jpg +Emma Nguyen,262-47-0821,84731,"411 Patricia Stravenue Apt. 325 +Nelsonburgh, HI 30301-4387",1949-01-08 20:51:03,35:9e:3a:ec:a2:52,richard78@horton.com,img/obama.jpg +Deborah Williams,471-93-4291,87188,"43786 Carlson Crossing Apt. 984 +Lake Christineport, CO 85047",1963-04-20 21:09:14,da:4d:39:34:98:90,gregory29@pierce.com,img/obama.jpg +Kirsten Olson,136-54-4169,88231,"60745 Campbell Crest Suite 436 +Abigailport, OR 00791",1997-10-19 19:20:34,2b:2b:c6:5b:af:3c,vfisher@armstrong.com,img/obama.jpg +Rita Ramsey,400-30-8842,64226,"6099 Morgan Road +South Tyler, IN 73239",1977-01-07 07:37:28,08:9e:4c:d6:2e:e5,jeremy66@love.com,img/obama.jpg +Roger Davis,434-97-0818,21868,"6030 John Shores +North Wendychester, AZ 36315-4579",2004-06-16 08:12:28,a5:e1:72:fe:0b:d5,hle@gmail.com,img/obama.jpg +Lauren Jones,630-76-6772,21829,"146 Corey Unions +North Jesse, OH 05378",1967-02-13 16:47:45,0a:16:f2:3a:68:ad,davidsonkelli@yahoo.com,img/obama.jpg +Michelle Robles,006-09-5902,16815,"9472 Nguyen Ways +Riverastad, MN 54327-5353",1936-01-06 18:35:38,13:61:14:88:fc:0a,ericmiller@yahoo.com,img/obama.jpg +Yolanda Griffin,229-16-3120,24086,"PSC 5291, Box 7852 +APO AA 03527",1997-12-19 20:51:48,52:4f:a8:6d:eb:97,sandra30@hotmail.com,img/obama.jpg +Aaron Baker,883-50-0365,19267,"974 Kelly Mission +Lake Amy, TX 29651-2990",1959-09-22 00:10:05,7c:f2:75:df:7c:95,vaughnlauren@yahoo.com,img/obama.jpg +Kenneth Morgan,275-35-3119,32596,"58200 Mary Stravenue +Graytown, VT 76548-6965",1928-02-10 07:27:37,bc:0d:d6:d8:99:05,smithrachel@gmail.com,img/obama.jpg +Christopher Byrd,585-91-4310,59693,"7541 Gary Lakes Apt. 943 +Alvarezchester, ID 76316",2009-10-20 07:17:10,05:ba:4e:5e:d8:74,nicole35@hotmail.com,img/obama.jpg +Anthony Sanchez,240-95-5814,52890,"3070 Parker Station Apt. 522 +West Shannonbury, TN 25648",1995-04-22 16:14:05,c3:4d:bb:68:b6:d5,susanpowell@colon.com,img/obama.jpg +Diane Holt,465-82-8078,20236,"1827 Kyle Canyon +Tinaton, MH 51351",1949-10-14 19:29:17,34:a1:13:f3:96:99,griffinlisa@hotmail.com,img/obama.jpg +Shannon Perez,667-89-0201,61137,"192 Lee Forks +Port Ryan, WI 19504",1948-01-25 13:52:34,10:66:63:55:96:b4,darrell75@shepard.net,img/obama.jpg +Michael Garcia,862-69-0847,56680,"USCGC Carlson +FPO AE 76964",1969-09-27 13:19:59,96:7d:dc:0c:b9:c6,xjackson@gmail.com,img/obama.jpg +Susan Keller,234-28-6100,96653,"925 Sean Vista +South April, OH 52213",1937-07-01 17:37:19,b5:0c:79:90:f8:c2,michealguerrero@yahoo.com,img/obama.jpg +Rachel Woods,314-23-9413,94061,"4938 Michael Unions +New Jessicaberg, AZ 19795-5845",2009-06-12 21:39:01,27:ea:4b:56:49:b0,orobinson@lopez.com,img/obama.jpg +Terry Kelly,662-39-7630,97508,"8842 Jordan Centers Suite 213 +Butlermouth, WA 27916-2269",1959-03-15 09:27:49,5c:ac:a6:bd:ad:df,kfrazier@yahoo.com,img/obama.jpg +Ellen Weaver,850-80-0404,25160,"6063 Stafford Well +Martinfort, HI 41776",1949-12-06 19:10:46,86:5c:88:c1:62:2a,freemanadrienne@gmail.com,img/obama.jpg +Diamond Jones,884-59-6747,48590,"955 Howard Springs Suite 472 +Robertville, OH 36554",1929-01-11 11:19:50,80:13:af:d6:4a:2e,stoutdavid@franco.com,img/obama.jpg +Rebecca Carter,602-46-3485,40409,"46622 Tami Grove +Mccormickville, LA 31706-8903",1960-04-26 19:52:47,38:25:e9:b6:5a:37,lferguson@gmail.com,img/obama.jpg +Terri Morris,405-47-2048,08530,"37920 Nunez Flat Suite 638 +Maddenville, AK 74240",1930-11-28 15:09:09,9f:72:16:69:b1:c1,boltonstephanie@yahoo.com,img/obama.jpg +George Moreno,352-17-7192,15362,"5277 Benton Gardens Apt. 864 +Port Brian, RI 03758",1937-12-10 07:57:38,c4:d2:61:79:2c:3d,jasonpatton@castro-powell.biz,img/obama.jpg +Kimberly Christensen,606-31-5997,45976,"9867 Gilbert Harbors +Gallagherport, WY 54356",1952-01-11 23:33:28,bf:32:c9:a0:78:23,bonnie45@hotmail.com,img/obama.jpg +Michael Williams,526-38-5596,95230,"PSC 9139, Box 3810 +APO AP 43721-5917",1997-03-26 10:04:58,4f:f3:1f:8b:90:d8,heatherwilson@hotmail.com,img/obama.jpg +Veronica Walton,200-26-7741,92860,"608 Mcdonald Extension +North Chad, AS 78399-8115",1919-04-19 12:21:11,eb:99:ed:db:94:1e,shansen@dougherty-hughes.com,img/obama.jpg +Gregory Trujillo,245-09-7064,28026,"699 Sutton Rapid Suite 075 +New Vanessa, RI 33587",1947-12-20 17:17:54,73:e2:17:59:3b:79,vmorrow@wilson.com,img/obama.jpg +Joshua Rogers,843-78-6257,87108,"9882 Tony Bridge +East Jessicaborough, UT 51118-1784",2015-04-26 03:50:35,6c:d0:3a:e7:f6:50,jerry82@barton.net,img/obama.jpg +Edward Orr,722-37-1544,75644,"76969 Tran Dam +Jacksonstad, SD 70271",2010-03-13 21:09:37,3c:2b:6c:5d:52:d5,rdeleon@gmail.com,img/obama.jpg +Angela Bailey,571-39-4800,88616,"8709 Christopher Tunnel Suite 018 +Lauraburgh, OH 96229",1949-12-09 15:48:52,5e:cd:cb:81:24:38,lopezkeith@adkins.com,img/obama.jpg +Elizabeth Gamble,279-50-2746,46598,"41802 Clay Summit Suite 659 +Port Franciscomouth, AR 20689",1955-02-04 01:20:14,7f:1f:ed:f3:c8:b1,dperkins@villarreal.info,img/obama.jpg +Sylvia Silva,321-84-9736,16805,"4174 Scott Turnpike Suite 541 +East Samanthaside, MN 15607",2001-08-12 04:50:04,24:78:3a:aa:d8:99,lisacantrell@gmail.com,img/obama.jpg +Sherri Orozco,293-04-8902,10903,"1268 Bass Forest +Snowberg, AL 25882-4439",1918-02-26 02:45:41,e4:d3:e8:0a:80:d6,jfrancis@gmail.com,img/obama.jpg +Christy Taylor,818-78-0299,52367,"42698 Tammie Mountain Suite 082 +New Rachel, KS 11471-0371",1949-01-28 02:00:34,9d:de:f8:c8:44:08,shawntapia@larson.info,img/obama.jpg +Cody Patrick,860-58-9295,70923,"3856 Diane Run Suite 785 +Bryanstad, KY 24544-1782",1946-06-25 08:57:11,ef:ae:56:e7:4f:a1,melissajoyce@quinn-miller.com,img/obama.jpg +Chad Jenkins,117-65-9083,60046,"8517 Jones Cliffs Apt. 669 +West Brian, HI 71972-0494",1984-06-04 00:10:46,a7:6c:41:1f:97:c3,jessicathomas@wyatt.info,img/obama.jpg +Mason James,860-97-0563,10305,"36802 Moore Island +Byrdmouth, NH 88128-6256",2003-11-19 22:36:33,43:b7:4a:de:00:f4,paulamoore@chase-haynes.info,img/obama.jpg +Jonathan Howell,724-85-2613,55018,"8661 Reed Island Apt. 336 +Lake Rachel, MP 08443-6909",1928-04-12 05:46:01,a7:76:b6:2c:65:8b,john18@ramsey.com,img/obama.jpg +Mark Adams,863-42-4473,37695,"5715 Williams Trafficway +Hendrixhaven, CA 43384",2016-10-09 07:52:25,62:f4:b8:4a:38:84,michaelsolomon@ramos.com,img/obama.jpg +Brandi Moore,794-22-9103,57555,"2791 Howard Fields Suite 534 +West April, MD 58404-5910",1929-06-10 17:31:11,7b:25:74:ef:30:f9,robertnorris@yahoo.com,img/obama.jpg +James Cruz,865-99-4298,38291,"46877 Nicholas Views +Port Michaelside, ND 74432-5266",2013-03-01 11:08:00,d1:1b:09:b9:fa:04,stevenscourtney@gmail.com,img/obama.jpg +Diana Zimmerman,520-49-6087,07413,"9635 Kristin Prairie Suite 755 +Nguyenville, UT 81403-5555",1970-06-30 11:28:09,99:5d:4f:d0:78:79,andrea16@hotmail.com,img/obama.jpg +Kenneth Roman,303-22-0917,10079,"24536 Zimmerman Rapid +Port Toddside, VT 23187-2494",1983-01-05 10:08:21,ba:54:51:4d:a5:d2,lmoore@spencer-barker.info,img/obama.jpg +Nicole Cruz,509-19-8119,99782,"8494 Nicole Dale Apt. 591 +Scotttown, FM 36793",1965-01-18 22:00:47,56:a8:c2:16:67:a2,belliott@gmail.com,img/obama.jpg +Denise Smith,600-53-7711,25271,"96409 Mcdonald Row Apt. 512 +Lisashire, MN 14031-9336",1973-01-26 16:26:50,f0:b1:7c:94:b0:fd,molly41@hughes.biz,img/obama.jpg +Brianna Young,525-08-7789,56624,"58038 Derek Key Suite 778 +Gonzalezside, CO 56573-4639",1918-11-17 08:51:27,8d:99:02:0e:41:2c,michaelramirez@gmail.com,img/obama.jpg +Michelle Atkinson,654-55-4945,83803,"76310 Mccormick Springs +Kaitlinmouth, PR 83960",2009-10-15 09:39:48,af:a2:f8:07:35:4d,yjackson@horn-lara.com,img/obama.jpg +Heather Jones,410-86-1640,18523,"185 Marisa Forge +North Toddside, CO 29950-3599",1992-01-03 10:45:17,f5:dd:6a:26:ff:14,hdawson@brown.com,img/obama.jpg +Lauren Dixon,092-48-6124,17867,"7887 Dakota Crescent +Richardtown, PW 68575",1968-12-23 19:11:49,f6:1c:16:cf:06:cb,margaret90@hotmail.com,img/obama.jpg +Mark Poole,043-43-6101,25452,"Unit 0643 Box 5731 +DPO AA 56127",2012-01-18 05:14:58,e8:1e:28:1c:01:8f,ann89@gmail.com,img/obama.jpg +Kelli Ramsey,386-47-7327,64687,"7031 Michael Unions +Smithmouth, DC 35917-3183",1937-08-03 18:19:03,83:30:69:72:4c:5d,courtneyjohnson@miller.com,img/obama.jpg +John Neal,699-21-5932,92396,"44348 Rice Island +West Heatherland, LA 74282-8119",1993-10-28 04:15:52,99:41:8a:05:65:4b,kristibeasley@clark.com,img/obama.jpg +Angela Wright,364-90-1234,88550,"USNV Mendoza +FPO AA 35805-3354",1999-11-04 04:34:58,cd:31:1c:d5:d2:90,ygallegos@yahoo.com,img/obama.jpg +Anita Cabrera,896-54-6093,10657,"77610 Rodriguez Summit Apt. 282 +East Dianachester, WY 69388-4873",1935-08-24 21:34:10,f3:85:3a:56:ba:2d,ghansen@gmail.com,img/obama.jpg +Jessica Avery,164-47-5501,34052,"63780 Cynthia Ways Apt. 126 +Waltersport, LA 06642-8632",1960-04-04 20:23:07,63:1d:6c:cb:8b:1d,rcollins@smith-fritz.com,img/obama.jpg +Felicia Hernandez,754-87-1767,22594,"71750 Dixon Field Suite 757 +Port Michelle, TN 71275",2014-03-15 01:57:03,cc:83:08:9f:c5:df,mckeemichael@rivers.org,img/obama.jpg +Clinton Schneider,499-09-9755,39506,"858 Garza Route Suite 246 +New Melissastad, ID 38175",1960-10-12 12:24:14,5d:77:9e:dc:89:06,christy48@gmail.com,img/obama.jpg +Samantha Spencer,409-88-8270,85875,"2797 Mendez Green Suite 856 +West Kimberly, DC 58995-0232",1954-04-24 13:36:44,6b:37:e2:8d:d6:27,jthompson@kirby-keller.com,img/obama.jpg +James Santos,556-35-5306,86844,"USCGC Johnson +FPO AE 62388",1969-01-04 08:03:27,48:c3:08:74:40:af,janetwallace@hotmail.com,img/obama.jpg +Samantha Murphy,162-01-5833,62950,"Unit 3794 Box 8170 +DPO AE 14061-8856",1928-02-22 02:37:36,11:6c:19:1a:1f:ac,thomasdaniel@young.com,img/obama.jpg +Leah Villanueva,772-20-3343,35406,"88296 Alexander Hollow +Kellyton, KS 25565-6572",1930-11-22 07:50:52,07:ee:4d:dc:31:40,oshepherd@gallagher.com,img/obama.jpg +Barbara Ramirez,432-41-4157,74180,"408 Best Trail Suite 222 +West Paulborough, VI 76494",1939-09-21 19:25:44,46:01:6e:3a:4f:a7,beth54@lopez.com,img/obama.jpg +Regina Thomas,829-55-6730,01245,"657 Daniels Pike Apt. 458 +West Joshua, FL 57281-2698",1990-02-03 00:39:26,5c:3f:00:0a:47:21,ytodd@yahoo.com,img/obama.jpg +Holly Madden,452-98-9569,93463,"323 Cohen Terrace Apt. 837 +West Deniseborough, WI 61334",2001-04-23 11:56:47,90:36:53:4a:d3:4a,xandrade@mitchell-ortiz.info,img/obama.jpg +Justin Poole,351-99-8039,49747,"36150 Laura Forest Apt. 297 +New Sara, NJ 21358",1927-10-20 22:08:07,56:55:86:3f:1c:08,jamesblair@hotmail.com,img/obama.jpg +Ryan Chang,232-40-0085,89958,"911 Laura Point +Lake Pamelafurt, FM 42137",1961-10-20 00:02:38,59:04:00:eb:37:c4,tbarron@gmail.com,img/obama.jpg +Stephen Ross,169-79-8358,51098,"97447 Bryan Ridges Suite 498 +East Fernando, CO 86053",1997-12-29 06:04:08,ca:b3:a5:86:76:6d,kimannette@gmail.com,img/obama.jpg +Tracey Lee,336-66-4174,63979,"80152 Trujillo Grove Suite 835 +Bautistaside, ND 93972-8730",1971-04-30 09:08:57,fb:31:46:4d:89:db,pateltimothy@gibbs.com,img/obama.jpg +Charles Weaver,393-87-8565,95439,"812 Harper Islands +Williamhaven, DC 03136-2514",2010-03-30 00:26:55,ae:a5:df:8c:b4:c7,williamsjoseph@ramirez-ferguson.org,img/obama.jpg +Diana Welch,132-50-0562,13003,"375 Holly Station Apt. 016 +Patriciachester, OR 97817",1972-09-10 18:38:45,7b:1e:aa:44:44:2e,ycastillo@clark-eaton.com,img/obama.jpg +Sheryl Grant,422-70-4930,86025,"0022 Jacob Rest +Daniellemouth, MP 15805-3697",1976-05-06 14:51:16,87:6c:53:10:15:30,danielestes@yahoo.com,img/obama.jpg +Renee Decker,061-64-9790,12484,"6103 Michael Inlet +Lake Kaitlin, CT 84095",2009-07-01 10:00:47,e9:70:ca:7c:15:7e,raymondgill@hotmail.com,img/obama.jpg +Benjamin Oconnor,715-08-8652,16876,"USCGC George +FPO AA 39732",1987-06-15 20:03:14,de:f7:6c:d3:81:1a,jerome96@johnson.com,img/obama.jpg +Amanda Johnson,428-91-2554,01720,"9567 Joel Union Apt. 206 +South Haroldchester, WY 95090-3129",1992-06-27 19:42:05,69:57:0e:22:43:88,buckmadison@yahoo.com,img/obama.jpg +Kevin Anthony II,441-19-8031,21205,"399 Patrick Locks +North Jennifer, RI 56972",1924-07-22 20:21:09,1c:84:83:d3:0a:9d,markdaniels@yahoo.com,img/obama.jpg +Sean Hinton,859-82-1556,22050,"3520 Aaron Summit Suite 338 +East Daniel, NJ 99800-0263",1925-12-28 04:23:05,80:b6:4a:84:3a:32,ericmartin@hotmail.com,img/obama.jpg +Marie Duran,881-01-4080,73511,"PSC 6867, Box 1581 +APO AP 44672",1983-08-08 23:49:13,b4:ec:ea:6d:81:ac,gracehuang@keller.com,img/obama.jpg +Amy Montoya,846-49-8543,95778,"36213 Michael Village Apt. 608 +Williammouth, PR 36198",1987-02-07 13:22:20,c6:00:63:a9:24:89,hbarber@yahoo.com,img/obama.jpg +Emily Mcintyre,825-07-4953,26536,"53091 Le Corner Apt. 476 +Davishaven, CA 14477",1920-03-28 00:05:30,32:64:a3:89:64:84,icurtis@olson.org,img/obama.jpg +Taylor Watson,878-81-6910,74985,"5703 Mark Mountains Apt. 794 +Markburgh, DE 13846",1992-01-05 09:06:34,20:1c:88:c7:c4:29,hkirk@yahoo.com,img/obama.jpg +Taylor Marquez,189-86-8909,33574,"457 Adams Track +Nancyside, MS 79263",2003-11-26 01:18:04,b6:5a:22:37:7d:14,hartdonna@yahoo.com,img/obama.jpg +Michael Noble,340-75-9967,30563,"655 Webster Via Suite 232 +Cherylside, SC 63218",1989-04-29 08:02:44,8c:be:0d:6a:de:e4,ewright@gmail.com,img/obama.jpg +Ronald Colon,437-49-1486,96885,"600 Gonzalez Key +South Christopher, NJ 40399-7962",1982-01-02 18:50:54,03:53:8a:51:a4:cb,iwright@yahoo.com,img/obama.jpg +Gregory Smith,434-88-7057,65401,"6962 Mcdaniel Isle +North Edward, NJ 36135",2006-06-03 05:12:54,89:f0:4f:54:b9:f3,williamsjane@davis.com,img/obama.jpg +Megan Edwards,848-02-1120,00896,"0208 Gonzalez Stravenue +Lake Cynthiaburgh, VT 02156-6222",1952-04-16 15:34:23,cb:a5:d5:3b:fd:11,ramirezmorgan@yahoo.com,img/obama.jpg +Ryan White,219-79-0527,82679,"42712 Wright Courts Suite 314 +Stephenchester, AR 12748",1995-02-04 13:51:33,3e:19:ec:74:be:d1,brian69@hotmail.com,img/obama.jpg +Regina Herrera,425-67-8948,77038,"292 Brown Skyway +Goldenburgh, GA 84511",2004-11-11 04:20:04,a9:3c:5c:81:67:a2,robinsonpenny@dennis.com,img/obama.jpg +Peter Hubbard,219-14-3443,32980,"9143 Mark Hollow +Andrewland, NC 88513",2013-06-01 06:16:29,d9:96:b4:00:de:d5,osanford@moran.com,img/obama.jpg +Anna Hartman,105-93-0323,04029,"041 Duncan Orchard +West Karenside, WA 13925",1986-03-13 16:35:35,78:20:bb:d1:57:84,kristinclark@walter.net,img/obama.jpg +Tonya Harris,735-86-8767,89304,"70207 Brewer Square Suite 039 +Tylerborough, NY 81474",1958-06-01 08:03:46,cd:1e:c1:7e:eb:c5,garciadanny@vargas.com,img/obama.jpg +Nicole Lynch,316-71-9660,83972,"4519 Kelley Centers +North Justinfurt, NY 04950-3525",1969-06-13 20:52:24,79:be:0f:74:40:6e,alexandraflores@mcclure.org,img/obama.jpg +Joanna Cruz,478-83-7834,71873,"58686 James Summit Apt. 066 +New Shane, OH 21411",2015-11-28 05:43:15,a7:36:41:33:6f:0c,kimnelson@jackson-greene.com,img/obama.jpg +Emily Cross,293-53-8511,42549,"019 Kenneth Circle +North Samantha, IA 09891-8445",1942-05-03 23:14:20,65:62:07:fb:05:17,anthonydonovan@yahoo.com,img/obama.jpg +Yolanda Payne,719-54-3416,94433,"6884 Wolf Junction Apt. 856 +South Garrettstad, CO 55330-7516",1981-08-21 12:59:42,dc:f4:25:41:29:04,stephensonshawn@velez-williams.com,img/obama.jpg +Daniel Lewis,469-21-1000,05410,"39457 Andrea Bridge +Kellyberg, DE 07983",2000-11-18 13:07:17,7a:26:a9:ca:85:6f,wallwilliam@gmail.com,img/obama.jpg +Phillip Proctor,227-29-2740,20892,"5229 Armstrong Land Suite 860 +Donaldmouth, OH 96290",2005-08-31 06:14:50,06:9e:da:0f:8a:4f,edwardrowland@hudson.com,img/obama.jpg +Ashley Thornton,400-87-9437,30383,"676 Buchanan Shoal Apt. 233 +East Christopher, NM 99018-6857",1999-01-21 07:13:11,d8:94:e9:4c:6f:b8,andrewsmaria@newman.info,img/obama.jpg +Miranda Jacobs,788-12-5134,35768,"Unit 1888 Box 5136 +DPO AP 84886-9550",2004-01-14 22:34:56,bf:99:78:d3:08:a6,adriana25@davis-valdez.biz,img/obama.jpg +Alan Arnold,405-15-1927,41935,"3718 Walter Cape +Kevinchester, IL 59411-7157",1969-08-10 21:38:37,68:dc:c1:18:45:8c,amy46@wells.com,img/obama.jpg +Mark Blevins,249-11-5414,78514,"9814 Lewis Station +South Reneeview, NC 57851",1947-05-19 15:19:52,b0:82:f6:05:5e:b7,fphelps@gmail.com,img/obama.jpg +Alexander Ruiz,697-71-0037,26033,"121 Schultz Locks Apt. 521 +Stevensberg, AR 36547-3715",1925-02-20 00:03:49,9e:e0:f1:6b:70:dd,leelisa@hotmail.com,img/obama.jpg +Dennis Norton,115-59-9114,75338,"7382 Melton Turnpike +Port Amy, UT 60876-8491",2008-12-18 09:33:26,f9:6a:17:cd:9b:6a,denise28@cook.com,img/obama.jpg +Sara Phillips,100-88-3590,25465,"USS Davis +FPO AP 16030-9299",1985-07-23 19:07:19,37:c7:45:08:96:57,hughessara@lyons.org,img/obama.jpg +Jared Ellison,553-75-7930,97233,"3631 Harry Mills Apt. 388 +Harmonview, NM 95437-6895",2001-07-06 06:06:49,47:cc:4f:a1:b8:a8,cpierce@gilbert.net,img/obama.jpg +Steven Coleman,867-64-4344,84580,"531 Bray Common Suite 962 +Stephenshire, LA 87463",1987-06-19 15:20:57,3f:f3:73:7c:de:e9,josephsimmons@vega.com,img/obama.jpg +Jake Bentley,370-90-2518,85240,"3760 Hess Lakes +Codytown, MP 84918",1984-11-16 03:59:59,31:b3:00:34:70:45,salasjohn@williams-hughes.com,img/obama.jpg +Jennifer Lawrence,190-46-9030,20507,"65769 Boone View +South Joelberg, WV 68485-9032",1947-06-11 02:12:54,b6:cf:d1:ae:b0:92,ghernandez@hotmail.com,img/obama.jpg +Amanda Perez,439-93-2574,59868,"637 Barber Ways Apt. 243 +Port Timothyhaven, AS 64660-4783",2001-03-11 16:19:39,5e:19:54:b1:4c:da,barberjennifer@yahoo.com,img/obama.jpg +Margaret Bush,238-84-0284,43725,"5932 Chandler Lock +New Catherineberg, SC 20874-7485",2008-08-27 11:36:29,2e:c0:dd:06:31:af,ewolfe@taylor-reyes.net,img/obama.jpg +Danny Hardin,714-70-3408,30881,"94204 Shelly Extension +East Cherylfurt, OR 91115",1932-07-26 19:33:46,25:0c:a8:37:04:4f,sjacobs@hotmail.com,img/obama.jpg +Angela Williams,813-12-7661,53033,"92815 Marc Street Suite 600 +North Mariaville, KY 99307-7048",1957-07-27 19:30:27,e6:dc:ab:f7:d6:fe,walkertravis@yahoo.com,img/obama.jpg +Scott Olsen,228-93-6497,66672,"542 Harrell Stream Suite 430 +Port Melissa, WY 95552",1945-01-13 05:59:47,25:4a:d0:4a:c7:8f,gwhite@gmail.com,img/obama.jpg +Alexis Johnson,773-05-8870,50976,"761 Tran Oval Apt. 442 +Lauraville, TN 98775-7639",1926-01-11 23:40:16,24:fa:aa:d5:77:01,merrittjohn@hotmail.com,img/obama.jpg +Patricia Stephenson,300-24-1442,80999,"29559 April Creek Apt. 789 +West Cameronton, IN 87343-1266",1979-09-17 11:11:10,57:c3:ee:b9:05:cf,karenlutz@gmail.com,img/obama.jpg +Jesse Scott,259-94-0977,24195,"25154 Jeffrey Drive Suite 069 +Johnsonshire, NY 59623-6663",1921-09-26 08:39:02,8e:e0:91:0a:98:98,htrevino@bender.biz,img/obama.jpg +Maria Mendoza,163-25-7025,15253,"1117 Brian Spring Suite 646 +West Stephaniehaven, SC 94725",2010-06-03 17:08:54,a9:c1:f7:cb:ec:0b,johndunn@gmail.com,img/obama.jpg +Tabitha Lewis,278-31-8125,40740,"346 Kayla Haven +New Shelbyhaven, SD 42228-0903",1972-04-12 05:12:22,99:4a:87:ab:2c:6f,vanderson@yahoo.com,img/obama.jpg +Michelle Montgomery,738-94-8496,40481,"PSC 7253, Box 1087 +APO AA 17319",1983-07-12 17:56:13,5e:78:c0:15:d6:42,angelaflores@yahoo.com,img/obama.jpg +Laura Kelly,830-60-8727,47821,"09947 Fowler Prairie +Port Joshuaborough, SC 49652",1923-01-31 02:19:39,9a:30:49:2b:d6:89,qanderson@yahoo.com,img/obama.jpg +Alicia Hall,437-07-9178,04389,"0212 Rodriguez Loaf +Gordontown, UT 88433-3903",1953-05-25 20:11:43,f9:2c:2d:93:13:12,shawn59@gonzalez-phillips.com,img/obama.jpg +Christopher Rivera,204-80-3577,54165,"88912 Jennifer Highway Apt. 019 +Danielland, DE 97111-7536",1948-10-12 09:09:47,25:cb:d7:18:b6:2e,bergerkenneth@miller.com,img/obama.jpg +Pamela Henderson,261-06-1007,59783,"179 Hayes Harbor Apt. 200 +East Melissafurt, MS 56694",1954-01-10 23:29:23,0b:df:6d:d2:cb:82,milleraustin@mitchell-young.com,img/obama.jpg +Jenna Ellis,003-28-7229,33313,"5542 Garcia Pike Suite 113 +East Kellyhaven, AR 58991",1920-09-05 12:18:29,02:6f:49:b0:0f:a6,uwebster@hotmail.com,img/obama.jpg +Jill Smith,323-89-2613,88926,"770 Keith Points +Port Kellyhaven, PW 08856-1959",1975-05-21 13:51:09,16:19:4d:57:44:93,brian84@hotmail.com,img/obama.jpg +Michael Miller,285-73-6318,21742,"163 Davidson Greens +Port Nancy, NY 94223-8005",1978-10-18 00:16:21,e8:e6:dd:00:7d:00,jimenezelizabeth@hotmail.com,img/obama.jpg +Nicole Davidson,700-96-4033,41820,"88745 Sanchez Trafficway +West Nicholas, NM 47004-7659",2014-09-06 00:19:00,a3:d5:84:d9:6c:77,ystanton@hoffman-nelson.com,img/obama.jpg +Taylor Morris,721-28-4236,11016,"0599 James Extension +South Jacquelinetown, VI 14823-5898",1943-12-12 17:47:33,2e:a7:89:c2:ac:5f,owensjennifer@yahoo.com,img/obama.jpg +Dawn Patel,046-69-5666,78985,"214 Ronnie Gateway +East Theresaborough, MS 95208",1928-01-08 08:36:58,94:f1:c8:5a:f3:93,kevin80@gonzales.com,img/obama.jpg +Patrick Smith,471-12-9444,90010,"9693 Gregory Union +Fostermouth, TN 13987-9926",1931-10-03 12:42:46,56:a6:2a:b8:4b:3f,gregory96@yahoo.com,img/obama.jpg +Taylor Burns,790-06-0946,97362,"38811 Brown View Suite 109 +Jamesbury, AK 33338-1469",1938-03-27 16:03:51,5e:8a:f3:90:9f:3f,ssnow@yahoo.com,img/obama.jpg +Christopher Savage,281-49-4507,31635,"90457 Terry Locks +South Timothystad, AS 01138",1928-09-18 09:38:18,ae:58:cf:76:8d:95,hicksashley@graham.com,img/obama.jpg +Tara Brown,325-27-0320,59253,"6218 Ford Fort +Port Richardton, MN 00722",2013-03-17 06:38:41,1b:b6:f5:d1:95:10,gardnershawn@nelson-carney.com,img/obama.jpg +Willie Cruz MD,683-24-1474,52778,"045 Little Glens +Jennifershire, TX 11604-1869",1930-07-18 03:59:55,94:e5:fc:e1:96:19,moorejennifer@klein-robinson.org,img/obama.jpg +Jose Hughes,170-54-1569,75572,"4909 Walters Meadows +Michaelport, MA 65789",1996-09-18 12:40:37,ad:a6:51:a3:3e:c4,wernerbrian@phillips.com,img/obama.jpg +Hannah Moran,449-10-2490,19876,"8857 Sara Drive +New Melissa, CO 36209",1974-07-31 09:20:27,0e:ec:62:70:93:2f,nicole81@buchanan.com,img/obama.jpg +Vincent Cooke,781-72-9144,82014,"466 Ramirez Vista Apt. 075 +Kimberlyland, PA 01944-6345",2008-06-19 14:31:38,05:fe:d9:9e:92:1e,melissa54@jones-allen.com,img/obama.jpg +Kristen Dennis,117-89-1829,55510,"5198 Sarah Hill Apt. 585 +Reynoldsmouth, VT 79369-3817",1942-12-12 05:25:44,99:51:e4:a4:3f:77,whitneycarmen@gmail.com,img/obama.jpg +Nicholas Vaughn,665-86-1505,13170,"1399 David Rapids Suite 230 +Ewingtown, NV 15936-1408",1953-12-22 19:55:05,0c:6e:01:98:8e:82,elizabeth73@preston.com,img/obama.jpg +Deanna Brennan,858-11-3359,21332,"803 Anderson Way +South Courtney, AS 00367",1973-10-23 10:37:27,29:23:e7:eb:46:d6,mlee@george.net,img/obama.jpg +Austin Holmes,881-04-7709,05788,"308 Harvey Drive +Lake Shelbyhaven, CA 48381-8817",1968-07-13 14:58:35,06:6e:80:be:27:64,vclayton@trujillo-russell.net,img/obama.jpg +Michele Carr,536-29-0404,22323,"469 Nicole Overpass +Connieport, DC 94713",2014-09-16 13:11:20,3d:f8:19:cb:dc:e7,carlwilliams@gmail.com,img/obama.jpg +Richard Swanson,398-91-6428,07594,"9538 Donna Meadow +North Daniel, MH 42175-2841",1977-11-05 04:15:07,bd:fc:51:aa:c4:ee,swhite@trevino.com,img/obama.jpg +Michelle Powers,606-17-6454,90173,"92239 Pierce Lane Suite 138 +North Carol, MP 43988",1987-08-28 13:22:43,d6:2d:24:89:6e:8c,dillon02@webb-boyd.biz,img/obama.jpg +Ryan Perez,375-75-9375,69736,"390 Patton Mews Apt. 999 +Lake Stephanie, MT 22506",2011-07-17 20:05:45,73:41:3d:ff:62:2e,bailey91@larsen.com,img/obama.jpg +Brenda Peters,749-98-2926,96844,"2060 Tamara Trafficway Apt. 749 +New Barbara, NY 80594-1532",1968-09-25 18:25:07,18:37:04:c2:aa:a2,norma54@yahoo.com,img/obama.jpg +Jason Moses,872-64-3650,64863,"8197 Susan River Apt. 086 +Port Sarah, MO 20395-7344",1947-01-12 07:55:09,53:f6:0c:87:d1:fe,fboone@gmail.com,img/obama.jpg +Katie Chang,179-16-1690,63386,"259 Stewart Way +Rachelside, AS 92557-1958",1972-08-15 05:50:58,a0:7a:20:46:53:95,traceyward@yahoo.com,img/obama.jpg +Mariah Cabrera,760-02-8473,50840,"23083 Michelle Fields Suite 934 +Davidtown, NM 24202",1940-05-29 07:48:12,f0:ef:9f:48:9a:ef,peterrogers@williams.com,img/obama.jpg +Joshua Wright,541-28-9742,59511,"858 Michael Square Apt. 334 +Lake Stephanie, ME 18702",1949-11-08 02:18:01,36:b7:3f:1e:3b:55,wattselizabeth@wilson.com,img/obama.jpg +Jose Lamb,870-69-0567,07920,"2076 Robinson Station +Trujilloburgh, MA 32328-4169",1972-08-24 10:21:56,45:e3:86:fb:a8:d6,taylormarsh@lewis-mcdowell.com,img/obama.jpg +Christopher Lang,533-74-6838,59335,"432 Carla Inlet Apt. 077 +West William, ND 36696-2071",1971-01-24 14:17:41,43:f4:e7:62:a2:25,wrobinson@hotmail.com,img/obama.jpg +Kimberly Lambert,861-27-9233,38813,"182 Shaw Circle +Samanthamouth, TN 95757",1963-01-30 00:59:47,bf:d2:df:45:03:f7,solomonbrianna@yahoo.com,img/obama.jpg +Thomas Ruiz,053-44-0025,73914,"21549 Sally Station Suite 721 +Port Deanna, ID 92860-8399",1922-09-05 04:52:21,35:85:5b:42:01:c8,andreamitchell@hotmail.com,img/obama.jpg +Christopher Stewart,095-71-9794,69630,"USNS Williams +FPO AA 87823-8409",1964-02-15 02:59:49,07:a2:fb:3e:f9:5d,hillrobert@gmail.com,img/obama.jpg +James Benson,416-92-4465,84992,"USCGC Rodriguez +FPO AP 30538",2011-08-23 09:20:58,16:35:ef:ab:7e:9e,cannonrobert@gmail.com,img/obama.jpg +Mr. Shawn Mayer MD,318-23-6977,70640,"3310 Lozano Glen Suite 119 +Brucebury, IL 44624-3916",1996-11-08 05:22:01,bb:66:a1:f1:ab:11,teresamartin@hotmail.com,img/obama.jpg +Michael Rodriguez,283-95-6402,19418,"79907 Erin Forge Apt. 887 +Fosterberg, KY 84008",1958-02-03 12:17:53,fc:cc:44:5e:64:9b,michael70@wright-forbes.com,img/obama.jpg +Veronica Hammond MD,427-76-9395,14785,"425 Lawson Ford Suite 905 +East Deborahton, PW 22941",2006-10-15 09:35:13,b8:fd:fc:1b:0d:d7,meaganhickman@gmail.com,img/obama.jpg +Kelsey Kirby,777-39-4701,25822,"944 Sanchez Mountain +Kaylatown, TX 74525",2015-12-26 12:50:37,d1:90:2b:87:ca:5b,cynthia06@melendez.com,img/obama.jpg +Jasmine Miller,843-22-1325,01729,"USCGC Gray +FPO AE 19046",1953-05-21 13:11:39,2b:18:8d:8a:28:ed,mirandamitchell@banks.net,img/obama.jpg +Cheryl Taylor,112-90-7232,71272,"Unit 6364 Box 2072 +DPO AA 86308",1958-05-28 07:09:24,48:1b:84:32:35:5a,mdawson@rivas-cummings.org,img/obama.jpg +Linda Foster,824-33-8039,34089,"2748 Sarah Ford +Jacobport, OH 02133",2008-10-23 20:45:44,57:d8:7f:5a:e5:9e,christopherpreston@golden.com,img/obama.jpg +Christopher White,801-46-0003,40592,"947 Lopez Plain +South Amanda, KY 56179-7763",1956-12-08 21:29:16,56:e5:ba:a6:c0:57,jonesleah@short.net,img/obama.jpg +Gary Turner,014-60-3229,02290,"05180 Williams Harbor +North Tony, WV 19443",1974-03-16 06:35:41,99:36:89:b8:3c:cb,kbeltran@yahoo.com,img/obama.jpg +Matthew Gardner,455-99-1012,15347,"006 Bass Motorway Suite 221 +North Sara, OK 65510",1971-03-22 05:11:49,80:23:5a:dc:ec:3c,tranantonio@yahoo.com,img/obama.jpg +Carla Cook,394-24-8696,50528,"348 Juan Spring +West Alfred, KS 61217-1237",1936-02-10 18:55:44,31:4a:fc:88:70:92,brandyvalencia@yahoo.com,img/obama.jpg +Laura Fields,786-69-7268,53537,"2113 Cole Flats +Lake Charles, AL 03766-0796",1959-01-02 10:34:18,67:60:ae:b2:63:d5,diazmelissa@gmail.com,img/obama.jpg +Thomas Figueroa,725-56-1176,74630,"699 Robert Loop +New Roberto, WI 18876",2010-01-30 19:01:13,e1:8d:00:36:bb:e4,kenneth34@gmail.com,img/obama.jpg +Stephanie Collins,619-75-2555,14889,"615 Best Orchard +Brandonfort, CA 21732-1790",1956-02-18 03:34:35,ca:fa:df:cd:46:d4,lauraperez@ortiz.com,img/obama.jpg +Sharon Sanders,550-63-8108,01839,"853 Mccarthy Causeway Suite 995 +Matthewhaven, WV 00512",1928-09-11 16:03:41,7a:8b:a2:0b:34:cb,andrewskristen@brown.com,img/obama.jpg +Casey Snow,190-63-8761,52843,"91076 Joseph Rapids Apt. 483 +North Jeremyland, MO 81355-0011",1979-11-22 10:05:12,5f:36:2d:5f:a3:18,jonescolleen@dunn.com,img/obama.jpg +Mark Johnson,603-89-8589,88730,"12265 Robert Springs Suite 527 +Collinsshire, UT 25446",1963-07-24 08:39:02,6b:4f:52:d1:c0:f4,drowe@yahoo.com,img/obama.jpg +Clinton Williams,055-14-5900,38978,"3570 Thompson Island Apt. 733 +North Marcus, IN 10735-6856",1981-05-23 12:45:09,d3:6f:05:af:4e:00,crawfordbrian@rivera.com,img/obama.jpg +Jay Sandoval,294-84-4558,82977,"8339 Hall Light Suite 397 +Port Robin, WY 48464",1968-04-10 16:29:22,fb:00:8e:f1:31:24,amanda12@meyer-alexander.org,img/obama.jpg +Christopher Munoz,384-73-5493,85805,"762 Schneider Corner +New Donaldburgh, WI 69163-6619",1975-09-09 11:33:07,a7:b8:5d:8f:a4:c5,nathanhernandez@fleming.com,img/obama.jpg +Kathryn Ramirez,299-86-6490,04957,"31799 Holt Lights +Carrollshire, DE 23242-6652",1985-04-15 14:48:22,25:ad:33:20:08:44,traviseric@yahoo.com,img/obama.jpg +Ashley Cruz,646-62-4207,20289,"82946 Rivera Port +South Jesse, CA 20910",1930-07-28 04:52:30,90:b6:8a:32:01:4d,john70@anderson-johnson.com,img/obama.jpg +Jason Erickson,577-58-8369,94933,"236 Manuel Course +West Gregory, AK 38715",1973-04-07 13:46:52,a8:fb:e7:ae:c5:75,davisjoel@yahoo.com,img/obama.jpg +Michael Nelson,217-32-6667,23746,"4278 Blair Groves +Port Catherineland, VI 39744-3405",1997-07-26 23:39:49,38:94:17:00:86:be,warrenbrian@hotmail.com,img/obama.jpg +Vicki Moore,449-14-6059,50507,"PSC 5804, Box 2771 +APO AE 00492",1974-06-21 19:58:32,09:35:43:1e:ef:9c,dflores@turner.com,img/obama.jpg +Nancy James,625-90-6035,97951,"6580 Ramsey River Apt. 966 +South Patricia, MH 89449",1999-05-28 10:19:02,07:68:c1:fe:fe:0b,ronaldrivera@gmail.com,img/obama.jpg +Jason Smith,585-92-0837,05595,"6558 Holt Corner +North Nicolasborough, GU 52088",1997-01-26 21:46:13,75:04:b0:73:bb:16,uchambers@gmail.com,img/obama.jpg +Heather Jacobs DDS,736-82-7652,35785,"0434 Scott Fork +Sandraton, NH 18755",1976-09-27 18:14:37,17:60:8b:f9:69:fc,eric07@gmail.com,img/obama.jpg +Heather Smith,667-06-6459,46713,"223 Maddox Pass Apt. 983 +West Robert, WV 23843-5487",1950-07-18 20:22:01,b5:85:3d:23:9d:4e,bwest@smith.info,img/obama.jpg +Dustin Webb,897-09-9379,51406,"449 Tamara Springs Apt. 091 +Port Hannah, AL 82299-9472",1918-04-23 04:50:40,b9:1d:48:ac:a5:49,patriciagreen@tran-jones.info,img/obama.jpg +Sean Harris,212-65-4400,92249,"Unit 1549 Box 9561 +DPO AA 77463-9666",1940-10-17 16:21:22,f1:10:bd:6f:aa:63,griffithcarla@williams.org,img/obama.jpg +Tommy Miller,632-81-2185,25307,"300 Raymond Port Apt. 661 +Dawnbury, CA 24592",1972-02-04 21:34:25,18:a6:25:30:2b:5b,christinewhitaker@gmail.com,img/obama.jpg +Kelly Marquez,109-48-4140,46028,"83588 Rhonda Mission +New Shelleyport, NJ 80483",1958-02-25 07:06:41,a2:6e:96:07:2e:2d,kelseywells@dorsey.com,img/obama.jpg +Anne Robbins,086-04-8005,42808,"81770 Nicole Highway Apt. 575 +North Paula, CO 29834-6718",1974-03-06 21:05:58,6d:c0:ef:8d:9c:74,martinmelissa@dickerson-mack.com,img/obama.jpg +Carlos Flores,325-57-3113,77793,"07605 Sarah Courts Apt. 437 +Daleshire, RI 56816",1942-07-05 20:29:41,76:00:77:d1:2d:f6,john18@horton.com,img/obama.jpg +Mandy Allen,691-25-9788,77298,"273 Eric Key Suite 264 +Duffymouth, RI 14322",1983-02-10 01:52:36,fe:c7:3c:26:74:3f,xrivera@gmail.com,img/obama.jpg +Jordan Lopez,625-31-0952,57473,"644 Oliver Forges Suite 826 +Grahamside, DE 14945",1956-02-25 15:18:10,ef:b3:64:0d:6b:a6,lisadavis@gmail.com,img/obama.jpg +Kimberly Freeman,383-91-1357,55071,"PSC 0168, Box 8449 +APO AP 26238",1990-01-28 15:53:47,b8:19:49:dc:83:b8,hendersonerica@jackson-harris.com,img/obama.jpg +Gloria Webster,109-97-0273,91736,"29686 Diana Plaza Suite 458 +Benjaminborough, IL 84951",1964-04-19 13:45:42,3b:24:ee:6a:6b:44,deborah58@davis.com,img/obama.jpg +Joshua Valdez,302-02-6625,34135,"312 Kennedy Cape Suite 783 +Boltonmouth, SC 65189",1972-09-16 01:19:09,00:7f:27:5a:d4:17,brandichapman@yahoo.com,img/obama.jpg +Amy Krause,772-63-6904,85217,"45905 Perkins Valley +West Marissa, VA 95328-7829",2010-03-07 17:41:54,25:26:d5:08:b1:59,michael03@roberts.biz,img/obama.jpg +Deanna Rodriguez,792-99-6338,78029,"51870 Robin Alley Apt. 212 +Kathleenfort, VT 23609-1098",2007-07-04 23:58:05,d4:85:a4:39:fa:f0,mmiller@lopez.com,img/obama.jpg +Kevin Scott,762-47-1882,02724,"USNV Delacruz +FPO AP 03390",1976-04-21 23:32:22,49:1a:93:1e:ae:b2,robbinsmichelle@nelson.net,img/obama.jpg +Megan Cruz,898-07-5519,79157,"0773 Ashlee Plain +Johnchester, WY 75288",1918-04-14 22:48:53,04:6a:20:0b:02:93,john02@hotmail.com,img/obama.jpg +Sarah Harvey,435-99-0556,48365,"2355 Nguyen Lock Apt. 437 +Williamsmouth, KY 62896-2137",1970-10-16 14:38:10,f0:4e:35:51:9d:67,morgan42@miller-compton.net,img/obama.jpg +Shirley Mullins,063-43-6747,71973,"33912 Jeffrey Plains +North Nicholasfurt, WI 34798",1998-02-28 07:08:09,f4:90:43:b3:93:8b,andrewgalloway@yahoo.com,img/obama.jpg +Holly Garcia,329-18-3679,01660,"9764 Alexa Plain Apt. 425 +Zimmermanchester, MH 66114-4617",1971-02-09 14:02:35,34:a9:09:6a:6c:42,jonesmark@yahoo.com,img/obama.jpg +Teresa Kerr,395-83-8762,49664,"55574 Brewer Lock +Port Kristin, KS 24408-1834",2017-02-04 10:25:54,5a:8f:b6:b2:b4:0b,jacqueline45@sanchez.com,img/obama.jpg +Benjamin Mccann,804-52-9364,20340,"66554 Hansen Bridge +Gabriellebury, HI 14945-3459",1971-03-22 20:51:00,31:93:b5:4a:37:df,amyhooper@baird.com,img/obama.jpg +Kelsey Bailey,757-68-1056,64938,"4192 Martin Road +East Susan, PW 37287",1948-08-10 16:36:42,42:ce:27:21:03:51,christian29@hamilton.biz,img/obama.jpg +Nicholas Burke,281-02-5848,58166,"10575 Michael Overpass +South Victoria, NC 77704",1982-04-11 12:27:42,dd:5b:25:35:03:8b,wanda30@harris-jacobson.com,img/obama.jpg +Patrick Vargas,003-37-6871,75642,"07203 Richardson Garden +North Kimberly, FM 88104-4794",1966-07-13 10:42:30,16:43:2a:0b:3c:1f,acostakathleen@jackson.org,img/obama.jpg +Anthony Acosta,254-75-5825,67630,"700 Matthew Loaf +Scottchester, MT 15037",1961-11-03 03:30:42,b3:f6:2e:d8:f8:03,kolson@case-dyer.org,img/obama.jpg +Michael Lee,185-76-7925,76083,"16311 Smith Place +Brandonland, MA 45825-1499",1983-12-08 08:10:54,51:da:c8:ad:19:e9,michaelgarcia@anderson.biz,img/obama.jpg +Ronald Hawkins,520-73-7501,53993,"USNV Lang +FPO AE 13344",1974-02-26 22:51:37,6b:25:ae:e1:69:bb,georgecollier@hotmail.com,img/obama.jpg +William Cruz,839-35-6868,09133,"332 Christopher Via +New Johnberg, HI 88642",1948-04-13 03:54:05,bd:33:aa:0f:8d:ed,yyoung@clark.biz,img/obama.jpg +Anthony Washington,635-63-8435,21411,"61754 Walker Viaduct Suite 052 +New John, WA 52517",1936-07-16 14:39:30,a3:cf:7e:7f:16:3e,kenneth77@martinez-chavez.info,img/obama.jpg +Valerie Vega,237-08-8360,11126,"840 Sawyer Park +North Trevorchester, IN 61067",2016-03-07 01:43:22,65:8a:e4:1c:0e:c4,bking@english.org,img/obama.jpg +Courtney Harris,851-07-2347,56807,"59423 Patrick Turnpike Apt. 275 +South Anthonyville, PW 64802-9066",1922-09-21 21:20:49,08:e8:a9:ab:4b:5c,jacqueline94@robinson-andrews.org,img/obama.jpg +Steven Clark,415-26-2017,93301,"354 Graham View +North Benjaminville, DC 27821",1966-12-03 17:21:00,04:a1:26:dd:18:a2,andrew53@butler-bailey.com,img/obama.jpg +Erin Terrell,569-34-3819,54641,"8346 Conway Wells Apt. 918 +Lake Timothyhaven, NH 82036",1953-03-27 20:50:30,06:ad:06:79:8b:28,josephgordon@stewart-hudson.com,img/obama.jpg +Edwin Chapman,323-60-7423,11369,"8857 Parker Estate +Harrismouth, GA 26462-1477",1929-02-22 07:51:54,01:83:79:3f:02:2d,nwalker@buchanan-johnson.com,img/obama.jpg +Debra Lee,895-11-5345,07699,"776 Nathaniel Rapid +Lake Sarah, GA 57158-0966",1980-08-25 16:07:42,18:f5:e0:43:81:bd,xkennedy@gmail.com,img/obama.jpg +Mrs. Patricia Nelson DVM,550-38-6450,70005,"680 Spencer Dam Suite 925 +Reedton, MT 90711",1948-10-25 19:19:34,5d:a7:26:e3:67:a4,wwilson@hobbs.biz,img/obama.jpg +Stephanie Thomas,667-54-1123,59676,"916 Amanda Prairie +Lake Amyburgh, PA 93720",1959-05-31 16:16:34,f9:b8:d5:ea:ac:f9,keith14@hotmail.com,img/obama.jpg +Evan King,699-06-0160,79068,"737 Eric Crossroad +Derekbury, OR 93648-4820",1991-07-30 23:57:24,b4:e2:80:6c:9e:72,mark18@gmail.com,img/obama.jpg +Ethan Wilson,866-31-9642,71443,"Unit 4040 Box 5955 +DPO AP 33398",1923-04-03 06:27:52,9b:26:93:cc:bf:c9,thomasbarry@hotmail.com,img/obama.jpg +Tammy Hernandez,359-30-8117,20069,"09850 Hill Mills Apt. 904 +New Brandon, CT 81092-5668",1966-08-06 20:10:00,99:63:34:f4:e0:ad,xholland@hotmail.com,img/obama.jpg +Elizabeth Thomas,310-24-3561,31150,"10430 Evans Manor +West Johnmouth, KS 56619",1957-08-22 09:07:03,ed:49:8c:de:29:f0,awallace@gmail.com,img/obama.jpg +Amanda Ballard,085-57-7878,15498,"141 Madison Lake Apt. 153 +Mezaburgh, UT 99878",1972-07-17 14:59:44,f5:86:e3:63:62:83,crawfordjeffery@booth.info,img/obama.jpg +Laura Taylor,721-82-2730,61338,"06056 Robin Mission Suite 429 +Wuhaven, ID 61367",2006-08-20 07:46:19,f2:9a:e1:3a:e3:fd,smithrita@mckinney.net,img/obama.jpg +Amber Perry,759-29-5702,83064,"45090 Debra Terrace +New Tammyfurt, AS 79675-8778",1967-06-28 08:44:19,e9:e6:90:1c:4b:cc,markreyes@campbell.net,img/obama.jpg +Erin Tucker,849-78-3209,11684,"188 John Plain Suite 054 +Cathyberg, IN 29595-2776",1934-05-25 00:50:14,54:b3:06:bb:af:e3,cartercarlos@gmail.com,img/obama.jpg +Thomas Rose,562-75-3071,12501,"64386 Williams View Suite 152 +Pettyborough, AK 90400-0052",1957-11-25 09:21:14,dc:c2:1d:99:f8:49,xhall@gmail.com,img/obama.jpg +Jonathon Fitzgerald,790-31-2714,82687,"5000 Nelson Square +North Jennifer, WA 53038",1926-04-29 19:49:12,eb:df:79:5c:01:0d,duanewheeler@simpson-barnes.com,img/obama.jpg +Joshua Blankenship,444-87-9917,39548,"10242 Strickland Turnpike +Gloriaville, HI 30445",2015-01-14 04:48:33,78:34:63:7b:99:da,huertapatricia@rosario.org,img/obama.jpg +Renee Odom,265-52-5245,00990,"84967 Lopez Run +Johnsonberg, RI 85701-4310",1939-11-21 08:09:31,39:cd:06:6c:14:3c,wendywilliams@lewis-franklin.biz,img/obama.jpg +Jessica Haley,717-44-5810,21110,"211 Kimberly Spur Apt. 099 +Thomasview, FL 08339",1957-01-09 11:23:50,40:dc:e4:ec:99:83,jeffrey29@gmail.com,img/obama.jpg +Ashley Johnson,788-44-9739,23173,"99777 Michelle Flat Suite 069 +Palmerburgh, VT 89679",2003-04-28 19:31:27,c9:f9:f1:56:cf:76,linchris@yahoo.com,img/obama.jpg +Richard Peterson,405-08-0580,33369,"05070 Singh View Apt. 391 +Port Marcoburgh, WI 00293",1974-06-22 05:41:55,8e:ab:75:9c:85:16,louis73@hotmail.com,img/obama.jpg +Anna Martinez,183-69-8396,57616,"5560 Todd Cove Suite 500 +West Jamesberg, CO 12651",1975-04-30 07:19:23,d1:89:0b:83:c8:a2,jacksonmark@hotmail.com,img/obama.jpg +Stephen Quinn,360-17-6289,28063,"7614 Jonathan Cliffs +Saraland, VI 12330",1990-03-25 12:49:07,57:fe:b8:e7:45:ae,jaredhenry@hotmail.com,img/obama.jpg +Kevin Sanford,447-92-8731,64782,"26903 William Freeway +East Daniel, ID 99521",1970-08-18 05:27:18,51:21:eb:ad:31:92,connie38@hotmail.com,img/obama.jpg +Melvin Stokes,020-45-8388,13580,"15221 Eric Ports Apt. 804 +New Theresa, MP 04898-7404",1996-08-31 19:48:08,ee:5d:95:9d:ff:1c,michele45@hotmail.com,img/obama.jpg +Raymond Grant,190-58-1537,91852,"58995 Miller Fields +East Jonathan, NY 24998",2010-10-12 01:21:01,79:58:8c:d3:97:71,chris58@barrera.org,img/obama.jpg +Jeffrey Evans,209-70-2786,15855,"65439 Michael Fords +South Oliviaview, WA 96930",1943-05-24 15:55:42,34:08:9f:57:9f:3f,buckjanet@hotmail.com,img/obama.jpg +Melissa Cole,629-63-2890,76443,"96151 Fernando Hills +New Jeffreyview, NH 68428",1949-02-09 18:25:00,7c:1e:f5:a3:06:2c,henryholloway@wright-bush.com,img/obama.jpg +Marie Barton,164-26-4426,68574,"Unit 2368 Box 1779 +DPO AE 58753-6339",1992-01-13 13:18:25,37:16:c6:c7:5f:26,erica62@gonzalez.com,img/obama.jpg +Leslie Thompson,334-03-5994,84271,"6521 Melissa Fort Apt. 532 +Adamsfurt, IN 55505",1961-05-02 09:34:30,a1:d7:08:5f:71:d1,alanjohnson@hotmail.com,img/obama.jpg +Thomas Glass,828-43-5216,59627,"USNS Ruiz +FPO AE 26000-2171",1965-07-12 09:33:30,64:c3:78:20:bc:d8,zacharygarcia@tanner.com,img/obama.jpg +Brian Bryan,187-24-2186,85966,"329 Kristen Springs +Kevinhaven, OH 59475-8809",1954-02-05 17:19:54,95:49:d2:4b:18:fe,juanyoung@hotmail.com,img/obama.jpg +Mary Sutton,131-49-7612,47816,"1122 Davis Loaf Suite 424 +East Angela, AK 44270-0930",1920-10-02 08:40:13,db:27:f0:25:cc:89,wilsonkaren@yahoo.com,img/obama.jpg +Nancy Wright,798-39-1935,12851,"47190 Gonzalez Trail +Smithport, ME 64434",1960-02-03 04:57:26,b0:ab:be:39:2c:8c,paulbrown@yahoo.com,img/obama.jpg +Ronald Russo,023-49-0054,04857,"54587 Chad Circles +Port Andrea, TX 27927",1982-06-21 10:23:13,f5:07:9a:b8:6a:ae,rhondawelch@gmail.com,img/obama.jpg +Kimberly Jones,085-20-8998,13820,"27042 Smith Spurs +West Laura, WA 85433",1939-11-15 21:27:44,91:94:96:d5:f4:b4,brittanyschmidt@hotmail.com,img/obama.jpg +Antonio Pham,668-90-1861,43500,"634 Beck Meadows +Amyport, RI 34597-7565",1967-09-29 02:08:54,24:a7:fa:bb:43:67,anthony00@gomez-kaiser.com,img/obama.jpg +Nathan Huerta,750-01-7810,24603,"99436 Graham Manor Suite 192 +South John, MP 58013",1957-08-02 16:18:57,4b:26:26:9b:4b:5b,llong@price-shaffer.com,img/obama.jpg +Brandon Fernandez,771-06-1781,07684,"32361 Adams Brooks +West Veronicabury, OH 14719",2009-06-20 12:34:04,b2:76:11:96:ec:d5,jordanelizabeth@hotmail.com,img/obama.jpg +Carlos Perry,767-83-3942,27476,"40746 Juan Ranch Suite 070 +Cruzmouth, ND 22452",1985-11-08 10:34:02,02:a1:26:f6:77:17,bryanbrown@wolfe.biz,img/obama.jpg +James Morgan,071-93-5955,80991,"5139 Dickerson Prairie Apt. 702 +North Brittanyfort, MT 79544",1950-07-18 17:28:43,8a:d8:6b:bb:f3:f3,veronicaherrera@yahoo.com,img/obama.jpg +Zachary Duncan,510-09-0479,04301,"4630 John Run Apt. 929 +Port Jasonmouth, LA 36502",1995-10-02 02:52:00,ba:26:88:5b:23:8d,kellyjennifer@chavez-mercado.net,img/obama.jpg +Stephanie Strong,434-52-1291,34370,"38670 Mcknight River Suite 313 +Lake Bruceville, WY 21083",1926-10-30 01:54:42,7a:e5:35:c6:46:87,ghahn@hotmail.com,img/obama.jpg +Cheyenne George,782-77-9595,62746,"Unit 4394 Box 2969 +DPO AA 00221-3047",1967-02-05 08:22:35,fb:7a:d0:d2:1d:72,dianahill@yahoo.com,img/obama.jpg +Chelsea Logan,614-23-5821,78549,"96533 William Villages +East Michaelside, NM 66592",1974-12-12 17:20:04,f6:b6:0e:c3:c2:3c,nelsonjeremy@gmail.com,img/obama.jpg +Yolanda Conrad,437-32-2752,55915,"PSC 0939, Box 8403 +APO AE 15491-1800",1991-02-15 23:12:56,bf:be:6e:be:b2:34,john91@hotmail.com,img/obama.jpg +Stephen Vargas,022-49-7977,25306,"807 Troy Station Suite 225 +North Roberttown, MO 40798-9887",1961-04-24 04:09:01,89:84:57:02:8c:4e,joneskatelyn@yahoo.com,img/obama.jpg +Amy Summers,498-82-9058,23185,"21874 Matthew Run +Port Christopher, DC 62938-3328",1961-11-23 03:43:04,a8:78:3f:9c:f2:db,sergio87@yahoo.com,img/obama.jpg +Brandi Webster,580-79-8605,06209,"Unit 6169 Box 2157 +DPO AE 44030-4512",1979-08-31 07:24:20,78:bd:35:c1:d0:87,ngraves@calderon-kidd.com,img/obama.jpg +Cheryl Sandoval,778-96-5012,84088,"6109 Jimmy Valleys Apt. 562 +Melissastad, WY 86594-7847",1947-02-18 23:45:41,e4:9d:7e:a0:0a:a6,simpsonjeffrey@yahoo.com,img/obama.jpg +David Garza,464-65-9302,78980,"517 Page Square +New Kimberlymouth, GA 30597",1920-09-23 20:27:37,da:92:7f:1c:33:f5,rhondaallison@brown-rivera.com,img/obama.jpg +Robin Ochoa,712-84-4656,83795,"25258 Nathaniel Manors +New Randy, MN 33404",2007-11-14 07:29:56,96:94:34:22:24:3e,thomasscott@mason.com,img/obama.jpg +Veronica Rodriguez,113-04-7720,83244,"51648 Johnson Tunnel Suite 091 +East Angie, ND 96593",1957-01-03 13:30:33,66:9a:73:f5:94:89,allisonraymond@hotmail.com,img/obama.jpg +Mckenzie Shaw,446-07-1866,89779,"1750 Vazquez Forge Suite 175 +Bartlettburgh, IL 66925-1838",1924-04-22 17:55:54,34:3b:19:36:a8:a0,ubullock@carson.com,img/obama.jpg +Philip Cole,810-18-6611,95378,"208 Andrew Common Suite 734 +West Amanda, NM 14270",1956-12-20 01:40:18,a0:35:7a:fc:35:af,beanfelicia@barrett.com,img/obama.jpg +Diane Smith,532-77-5675,93169,"403 Donald Isle +Williamberg, FL 77426",1993-08-06 09:52:42,31:6b:af:e7:34:6d,scottgarcia@martin.org,img/obama.jpg +Tiffany Miller,829-99-5839,08918,"68996 Kramer Manors Apt. 897 +Shawnbury, RI 79321",1927-03-05 04:21:04,99:1c:5c:c9:4b:d8,reedwilliam@gmail.com,img/obama.jpg +Rachel Rowland,795-30-1645,46792,"4190 Misty Shoal Suite 203 +South Johnshire, NY 79798-3347",1959-09-22 19:41:55,e1:ef:92:05:36:10,umontgomery@reese-lloyd.biz,img/obama.jpg +Anthony Costa,445-88-2009,15369,"642 Hudson Creek Suite 459 +Jeffreystad, SC 33125-3856",1953-11-16 14:02:17,91:1e:a7:1e:41:77,johnkirby@gmail.com,img/obama.jpg +Hannah Rodriguez,378-79-6817,93055,"99429 Burgess Villages Suite 184 +Ericaview, DE 81879-7611",1958-03-13 21:57:41,b3:e5:bc:b2:4c:7f,nbrock@fisher.com,img/obama.jpg +Ann Castillo,852-47-6895,46375,"27864 Williams Overpass +South Thomasport, DE 64341-5398",1936-09-26 18:43:46,ef:01:4b:9a:ed:09,marcpacheco@hotmail.com,img/obama.jpg +Angel Perez,008-17-6228,73229,"396 Pratt Stream Suite 338 +Port Kyle, MI 70324",1993-07-26 23:34:28,98:b3:52:5c:2d:e4,jhenderson@gmail.com,img/obama.jpg +Justin Gonzales,676-98-5230,76957,"73224 Susan Spring Apt. 343 +Bryantstad, PR 59402",1927-03-20 07:55:23,8b:88:38:cb:e7:b4,anthonylee@black.info,img/obama.jpg +Lawrence Campbell,161-51-7986,24069,"30678 Amanda Cape Apt. 863 +Laurahaven, KY 67501-6555",1982-01-04 03:11:19,5d:60:f4:74:b2:95,reynoldssean@davis-maxwell.com,img/obama.jpg +April Michael,679-33-3206,72786,"2217 Tamara Stravenue +North Jamie, NC 01719",1997-10-04 18:18:29,7c:ad:28:5b:fc:e3,pnicholson@yahoo.com,img/obama.jpg +Denise Carey,279-42-6583,95732,"1847 Kathy Creek Suite 719 +Susanville, SC 51415",1978-11-07 15:56:37,d9:0a:27:e6:35:44,tlewis@williams.com,img/obama.jpg +Terri Coleman,270-70-9658,36241,"77305 Gary Rest Suite 870 +Richardchester, MD 67659",1962-06-28 00:41:57,97:b6:b4:0f:d7:62,ymorgan@gmail.com,img/obama.jpg +Larry Ruiz,817-61-4628,78460,"9249 Erika Estates +Robertfurt, GA 77435",1974-04-21 12:11:50,bc:21:a4:07:5c:6f,lynnbarber@hotmail.com,img/obama.jpg +Natasha Martin,302-41-8225,88306,"21365 Jennifer Spurs Suite 376 +Lake Joelview, MN 57965",1959-06-22 12:36:31,ca:1e:f3:4c:c5:80,qstevens@riley.com,img/obama.jpg +Heidi Day,351-96-0278,91463,"4621 Myers Island +West Sonya, DC 77611-6288",1931-12-25 02:27:53,20:61:01:7d:bb:e4,kristinwright@meadows.info,img/obama.jpg +Jason Nelson,607-38-6924,38692,"609 Nicole Radial +West Heather, VT 74336",1971-01-08 06:51:32,e6:58:42:c6:67:a3,walshmatthew@williams-adams.com,img/obama.jpg +Dorothy Kim,692-01-4484,57698,"349 Katherine Islands +Meganborough, AZ 89528-2965",1982-02-12 11:11:32,fb:38:f7:53:ff:dc,richard58@roberson.info,img/obama.jpg +Lance Garcia,140-63-1155,76971,"487 Lisa Harbor Apt. 118 +Mahoneyville, MP 04320-8881",1975-05-17 08:50:00,a1:b8:c6:43:34:8b,bjennings@sims-young.net,img/obama.jpg +Robert Thomas,004-08-4996,61809,"07119 Carol Cape +Claytonberg, CA 50769",1981-05-20 18:23:18,83:47:a6:db:5e:8c,zgonzales@hotmail.com,img/obama.jpg +Austin Knight,073-20-6999,27098,"53566 Jeffrey Fort +New Aaron, VA 15007",1991-12-09 06:34:39,e5:1d:36:70:95:e5,cpowell@hotmail.com,img/obama.jpg +Mark Sanchez,772-90-1898,29915,"729 Myers Streets +Moonmouth, MS 44660-1556",1976-10-16 22:41:28,94:17:aa:61:15:3e,alexandercynthia@gmail.com,img/obama.jpg +Melanie Vang,036-95-7848,84281,"2573 Robert Square +Graybury, RI 30605",1942-12-26 13:04:10,e4:74:75:d7:6c:55,james31@robinson-ruiz.com,img/obama.jpg +Harold Lin,266-77-6870,74991,"PSC 9052, Box 1935 +APO AP 20800",2003-12-16 12:51:50,ac:48:21:58:94:3b,johnathanholder@wright.com,img/obama.jpg +Jerry Baker,485-96-2464,95710,"273 Flores Neck Suite 272 +Jennytown, ME 24709-6500",1977-01-08 14:31:47,eb:ba:02:dd:c9:2c,amanda62@garcia.biz,img/obama.jpg +Heather Zimmerman,355-44-4327,67222,"81525 Fisher Prairie +Michaelstad, WV 74781",1960-08-19 09:34:32,2e:56:67:63:1f:ce,heatherkelley@gmail.com,img/obama.jpg +Robert Wilson,388-15-6283,70256,"786 Lee Oval Apt. 605 +Riveraport, NV 43582",1936-04-02 22:18:27,8a:9e:98:fc:e1:d0,eric96@hotmail.com,img/obama.jpg +Christy James,794-51-8157,43329,"727 Williams Club Suite 687 +Hicksborough, AR 49089",1997-02-21 06:32:34,20:02:2b:57:4e:90,robert30@neal.com,img/obama.jpg +Darryl Foster,248-08-5121,16139,"98749 Watkins Crest +Port Amber, AS 58252-9742",1993-01-18 01:57:51,44:2a:40:17:73:25,emilyrobbins@barnett.com,img/obama.jpg +Luis Hernandez,761-03-4670,68648,"482 Bolton Rapid +East Shawn, NC 64794",1974-09-12 07:13:08,a2:fa:7f:76:be:fd,keith52@yahoo.com,img/obama.jpg +Carla Allen,706-33-6048,47219,"41037 Ewing Squares +North Saraborough, IL 52615-1749",2000-04-15 23:24:53,18:43:dd:a7:aa:01,carmenellis@yahoo.com,img/obama.jpg +Steven Pope,161-93-4690,90116,"4363 Susan Valley +New Susan, NJ 72877-9904",1936-03-11 01:02:09,1d:00:65:ec:8c:6f,timothy16@gmail.com,img/obama.jpg +Stephanie Frye,514-82-2264,19074,"041 Boone Port Suite 538 +West Timothyhaven, WV 43369-6149",1945-05-04 00:35:48,7d:54:b0:49:16:69,jasonlevine@miranda.com,img/obama.jpg +Bridget Middleton,725-18-3602,46182,"515 Lucas Mountain +Gibbsville, GU 72509",1963-06-18 16:33:10,a9:3a:94:67:91:9c,lonnieclark@hotmail.com,img/obama.jpg +Catherine Campbell,609-42-9559,61527,"310 Yang Prairie +West Carlosside, CT 89079-6156",1944-08-14 23:58:03,21:b9:88:f2:c1:53,jacob64@hotmail.com,img/obama.jpg +Audrey Williams,049-66-5139,00801,"442 Hill Lakes +East Gabriel, GU 21275-1875",2004-09-26 21:31:27,79:cc:ef:16:cd:36,christopherholmes@smith-hodge.biz,img/obama.jpg +Donald Anderson,869-66-3022,72346,"3504 Porter Prairie Apt. 150 +Willieside, VA 12486-1381",2013-12-24 21:10:55,d8:66:46:09:5a:c2,thomas63@hudson.biz,img/obama.jpg +Tyrone Castillo,598-28-7287,33909,"967 Walter Mall +Moonfurt, DC 85450-9257",1937-04-29 00:55:33,a2:85:d2:5f:01:dc,megangarcia@gmail.com,img/obama.jpg +John Johns,885-22-6960,81526,"080 Julie Bridge +Harveyshire, ME 12968-8417",1967-08-27 17:55:55,57:a5:52:d4:bc:25,samanthaosborn@hotmail.com,img/obama.jpg +Shawn Andrews,747-18-4849,83784,"475 Ramirez Overpass +Delgadoborough, DE 35162-5256",1944-04-23 12:21:44,fc:a8:2f:1e:26:84,lindasmith@best.com,img/obama.jpg +Juan Roberts,225-04-5009,72693,"961 Corey Ridges Suite 038 +Nicolestad, MT 41919-7399",1992-10-24 07:08:18,89:ff:ca:ae:40:70,xmyers@bailey.info,img/obama.jpg +Kelly Fox,054-50-7023,69365,"794 Escobar Brook +West Samantha, GA 45934",1931-09-24 18:32:46,5d:80:a8:5d:ca:3a,mosesadam@fuentes-gonzalez.com,img/obama.jpg +Bradley Hall,435-76-6549,87140,"3527 Christopher Key Apt. 812 +South Brianna, ID 19377",1990-04-25 18:48:58,56:df:7f:44:35:05,browncharles@smith-beasley.com,img/obama.jpg +Charlene Austin,536-09-7720,22647,"03531 Adam Views +West Mary, WA 73255",1931-10-09 04:06:31,c6:ce:43:05:80:1b,sheila59@hotmail.com,img/obama.jpg +Michele Coleman,425-68-2440,38418,"134 Martha Port +Erinchester, FM 03468-1313",1922-07-04 23:18:54,c9:2f:87:fd:53:66,xmcmillan@gmail.com,img/obama.jpg +Derek Diaz,611-89-6611,72387,"8270 Jared Way +Lake Jennifermouth, NY 38300",1964-01-26 05:56:42,3e:3e:2d:10:6e:93,jon27@gaines-green.com,img/obama.jpg +Devin Velasquez,457-05-7676,08143,"PSC 3619, Box 0783 +APO AP 09654",1940-07-06 16:22:04,6e:03:38:87:df:0e,haynesmelissa@ray-zimmerman.com,img/obama.jpg +Katrina Clark,233-04-5299,59701,"4917 Michael Hills Suite 629 +South Amy, VI 60991-8157",2003-12-31 20:30:12,26:91:ab:37:2b:8a,erin67@hotmail.com,img/obama.jpg +Kristen Torres,852-96-5763,52163,"386 Nguyen Center Apt. 752 +Barajasburgh, MI 40452",1940-09-05 08:53:50,1e:f1:a7:65:d0:71,thomas96@novak.org,img/obama.jpg +Kristine Williams,281-36-5945,53663,"USNS Moran +FPO AP 52076",1954-11-26 02:01:25,e8:ee:a7:53:72:e4,lisa73@yahoo.com,img/obama.jpg +Brad Scott,642-91-0728,08110,"35323 Smith Harbor +New Hannah, TN 35509",1993-01-30 18:17:15,bd:da:b0:fe:d5:82,christina96@hotmail.com,img/obama.jpg +Monica Holmes,054-58-8172,36881,"6030 Johnson Ranch Apt. 385 +West Michellehaven, MI 29409-2107",2001-05-05 03:05:02,3d:04:0f:db:77:d7,teresahernandez@hunter.com,img/obama.jpg +Billy Fritz,710-21-6127,51234,"527 Christian Mill +South Tonychester, CO 67671",1994-01-14 15:52:23,07:a6:2b:85:b3:0c,rushchristine@hotmail.com,img/obama.jpg +Frank Butler,155-81-4521,24256,"101 Maria Bridge +Hallville, MS 09135",2017-04-11 11:47:19,15:76:7e:d2:e4:07,donaldsonthomas@miller-robinson.info,img/obama.jpg +Charles Lam,621-51-1254,05910,"9738 Melissa Knolls Apt. 115 +South Nicholestad, NH 31779-5368",1942-08-14 18:26:59,03:78:e9:b5:18:12,leedesiree@yahoo.com,img/obama.jpg +Jennifer Ware,794-35-5521,41460,"56796 Kevin Knoll Suite 554 +West Dawn, AZ 51232-9432",1945-08-20 08:40:29,09:be:99:2b:2a:6d,sarahcampbell@mitchell.org,img/obama.jpg +Sara Jacobs,346-01-1706,11622,"699 Christensen Walk Apt. 045 +Allisontown, LA 91717",1962-11-07 09:33:05,ad:db:19:e5:0a:ca,gillespiejulian@hotmail.com,img/obama.jpg +Maria Moore,806-69-1972,36103,"07320 Pittman Valley +South Dean, MN 69750-3113",1986-06-17 14:42:53,a2:a3:a2:e5:8b:af,scott74@hotmail.com,img/obama.jpg +Dustin Cook,449-95-4033,11385,"2910 Potter Rapid Suite 974 +South Jeffery, VT 65610",2009-11-16 17:30:45,d4:69:79:33:44:4d,phamcarolyn@hotmail.com,img/obama.jpg +Mark Carey,103-83-6691,71792,"PSC 0048, Box 6975 +APO AA 97938",2016-05-26 15:14:18,9b:f4:78:c8:90:d5,ujames@hotmail.com,img/obama.jpg +Chelsea Bolton,787-71-4494,77956,"2610 Ferguson Rue +West Katherine, TN 48261-4412",1978-09-23 00:40:38,a3:70:fc:7b:74:b9,michaelsims@ortega.com,img/obama.jpg +Nicholas Reid,848-94-6064,49810,"834 Green Underpass Apt. 811 +Jacksonhaven, PA 96202",1951-01-12 22:26:13,db:0b:db:fe:55:5a,patricia35@perez-murphy.net,img/obama.jpg +Heidi Myers,168-94-5160,44571,"599 Cameron Ports +North Loriport, CA 86798-0941",2015-06-18 08:10:35,e1:33:ac:81:23:b7,mary83@gmail.com,img/obama.jpg +Barbara Rodriguez,327-84-4935,26563,"Unit 8491 Box 2258 +DPO AA 40177-8365",1948-07-15 12:57:52,c2:49:46:b4:10:ed,ryoung@frazier.com,img/obama.jpg +Mark Gallagher,227-83-6739,71332,"3176 Tiffany Lane Suite 451 +Bellborough, LA 54532-4342",1980-11-15 17:46:32,e6:ba:2b:16:f1:a2,brewergabriella@walker.net,img/obama.jpg +Rachael Shaw,406-94-9554,85260,"126 Garcia Estate Suite 932 +Steinmouth, MN 26469",1964-04-20 15:07:48,bd:83:cc:6d:58:f6,jerrymorales@gmail.com,img/obama.jpg +Jamie Turner,375-70-2522,05145,"400 Austin Lane Apt. 495 +Mariamouth, RI 57127",1973-12-12 09:26:00,ef:5f:ad:90:fa:53,hectorgarcia@yahoo.com,img/obama.jpg +Monique Soto,689-94-7727,24292,"570 May Corners Suite 983 +Michelechester, CO 76124-6236",1932-11-13 13:05:31,86:62:01:03:7f:f8,danielheather@medina-ramos.com,img/obama.jpg +Hannah Green,262-64-4783,99586,"3330 Alvin Light Apt. 450 +New Sarahbury, MP 00308-5459",1954-08-22 16:55:06,18:ad:56:45:29:19,brewerjack@ramirez.com,img/obama.jpg +Dean Wilson,046-34-5927,93569,"745 Nicole Falls +Port Moniquetown, KY 89435",1946-02-03 18:32:09,79:4f:6b:da:6c:7e,tiffany36@hood.org,img/obama.jpg +Autumn Cameron,379-64-2794,78339,"3747 John Valleys +West Regina, NM 28844-9324",1938-12-23 05:59:34,18:1f:72:96:09:5f,ryanchambers@ware.net,img/obama.jpg +Alex Michael,375-68-4014,62072,"1521 William Court +Jeremyview, MO 36369",1997-07-06 02:32:59,c6:da:fc:75:22:98,twatson@hotmail.com,img/obama.jpg +John Rodriguez,043-64-2251,10934,"8464 Kirsten Radial +Warrenton, WI 83977",1992-11-21 01:44:49,78:a6:a6:28:38:ce,zcole@lindsey.org,img/obama.jpg +Laura Warner,045-35-2860,36568,"1072 Guzman Cliff +Vancetown, AL 38009",1956-05-10 06:40:00,6e:fc:da:23:3f:9d,owensandrea@ford-morgan.biz,img/obama.jpg +Robin Riley,400-01-5159,36080,"884 Matthew Mountains Suite 264 +South Autumn, FL 82142",1941-05-11 09:38:04,5a:80:9a:5a:2d:e8,anthony31@potts.com,img/obama.jpg +Grant Medina,637-28-4721,45368,"0151 Thompson Crossing +South Debraland, CT 83384-9634",1938-10-20 20:20:44,7b:cd:c4:66:14:5d,yjordan@key.com,img/obama.jpg +Karen Lucas,464-71-3791,62792,"672 Rebecca Oval +Allenview, MI 98661-4626",1964-03-11 16:51:33,e4:26:9d:bc:cc:eb,mathiscynthia@hotmail.com,img/obama.jpg +Vanessa Miller,830-86-6883,95770,"USNS Waters +FPO AE 31676-4583",1931-06-01 00:16:50,57:b4:8d:8a:1c:cb,maureen80@gmail.com,img/obama.jpg +Mallory Mcknight,807-39-3065,95641,"748 Ryan Fork Suite 906 +Port Juliefort, MI 32354",2009-03-07 14:13:23,3e:3f:bf:b9:82:bd,lboyd@hunt.com,img/obama.jpg +Matthew Singleton,012-94-7476,27959,"0272 Cathy Common +West Victor, WV 67594-6144",1972-08-30 16:08:57,0f:f5:f2:f1:02:67,cameron18@dixon-sanchez.com,img/obama.jpg +Kevin Lyons,019-22-3934,69497,"8381 Melanie Drive +East Laura, WY 02210",1939-04-13 08:30:35,5d:92:12:32:e5:91,lopezjason@harris.com,img/obama.jpg +Gina Williams,170-30-8461,64347,"1035 Jonathan Lake Suite 947 +Ayalaside, IL 10252",1982-08-16 21:01:02,5b:9a:40:c1:c3:4f,jessica31@hotmail.com,img/obama.jpg +Douglas Gonzales,091-38-4047,11972,"8389 Matthew Park +Port Dennischester, MO 39924",1959-12-27 11:21:20,fa:bf:ee:3a:69:af,rfranco@gmail.com,img/obama.jpg +Katherine Watts,412-73-7285,05363,"2562 Koch Plains Apt. 093 +New Sherryburgh, PA 41814",2004-05-26 15:42:50,ed:62:3d:42:e5:db,tchase@gmail.com,img/obama.jpg +Kristin Williams,678-75-1616,68826,"045 Patrick River Suite 414 +East Natashaburgh, WY 75137-5251",1976-01-31 13:32:49,ef:d5:e4:b7:d0:f1,qstanley@gillespie.info,img/obama.jpg +Erin Lopez DDS,305-06-3323,28163,"1569 Cody Locks Apt. 720 +Damonmouth, VI 68252-9651",1946-01-28 19:22:41,9e:a0:50:54:91:77,mark21@herman.com,img/obama.jpg +Scott Daniels,215-45-5145,06972,"6903 Kylie Lodge +North Brian, TX 32698-9658",1944-01-19 23:09:38,85:33:61:1b:c1:ee,sanfordashlee@hotmail.com,img/obama.jpg +Sarah Clark,314-52-0765,37567,"1344 Joshua Stravenue Suite 441 +Chungmouth, OR 72887-3483",1937-12-16 14:20:22,85:c9:41:44:77:96,sullivanvictoria@gmail.com,img/obama.jpg +Austin Smith,625-36-0889,28439,"38745 Isaac Islands Suite 285 +Olsenfurt, CO 97162",1937-05-01 00:09:50,82:09:e1:28:b4:17,taylorrios@gmail.com,img/obama.jpg +Katrina Richardson,377-78-3160,39330,"029 Elizabeth Throughway Suite 937 +East Tiffanyland, RI 40733",1942-02-28 11:19:47,fc:d3:32:93:72:9c,amandahampton@gmail.com,img/obama.jpg +Donna Blake,229-81-2789,81153,"206 Williams Stream Suite 392 +Sharonfurt, AS 18420-0676",2008-10-16 18:28:45,f1:aa:97:1f:42:2e,kingzachary@gmail.com,img/obama.jpg +David Cervantes,568-32-7872,55886,"40088 Graham Ramp Apt. 289 +Hernandezville, SC 30720-9820",1941-12-09 07:19:53,04:90:f1:56:19:ac,martinkelly@gmail.com,img/obama.jpg +John Thomas,727-18-4268,39129,"PSC 1436, Box 4896 +APO AA 25841",1955-11-16 04:36:33,26:39:1e:35:88:a9,lschaefer@yahoo.com,img/obama.jpg +Brittany Martin,575-17-3241,59453,"46673 Berry Passage Apt. 736 +West Christopherfurt, SC 35134-9544",1990-08-27 16:04:08,e0:b8:d0:26:3e:f8,usanders@perez.com,img/obama.jpg +Michael Randall,090-40-4627,08683,"7073 Gross Inlet Apt. 800 +Nicholasview, IL 66318-8120",1984-07-23 14:54:16,09:56:26:fd:bc:bc,vicki07@gmail.com,img/obama.jpg +Amy Johnson,447-67-9985,94921,"257 Miller Burgs +East Michelle, WV 74423-8911",2013-06-03 03:06:12,df:f7:d1:d8:3e:9e,madison45@hurley-barrett.biz,img/obama.jpg +Latoya Lewis,705-93-3765,53427,"22749 Jacob Crossroad +Michelleberg, AK 83296",1947-02-24 17:33:04,a4:fc:92:8f:d6:38,everettkristine@sullivan.com,img/obama.jpg +Michael Bailey,899-54-3320,97817,"PSC 1047, Box 4523 +APO AE 49196-6089",2005-12-14 11:50:03,23:11:9b:83:24:87,coreypace@gmail.com,img/obama.jpg +Danielle Sanford,513-50-8581,63945,"7648 Sarah Motorway +Sandersshire, NJ 19834-9017",2005-08-24 21:41:53,36:c2:b0:48:82:bf,bradleymichael@brown.info,img/obama.jpg +Samuel Mason,394-06-7954,64963,"9751 Porter Forest +East Andre, OR 31526-4517",1986-11-01 03:35:03,cb:e9:29:2f:bc:65,davisaustin@moore.com,img/obama.jpg +Mark Evans,420-32-1013,89843,"120 Isabel Islands Suite 276 +Laurenmouth, VI 34328",2014-03-31 11:48:22,fe:05:36:f5:05:82,zgray@gmail.com,img/obama.jpg +Riley Olson,446-14-6792,16485,"6747 Michelle Port +Calebton, AL 31336-6436",1945-12-24 16:13:16,e3:36:ce:11:40:47,gduncan@green.info,img/obama.jpg +Victor Anderson,194-17-7502,94294,"8630 Suzanne Locks Suite 347 +New Kristenview, LA 02868-2315",1997-04-23 19:45:39,5a:1d:6b:95:30:7e,lori50@yahoo.com,img/obama.jpg +Mariah Miranda,554-45-5084,22289,"17040 Alan Road Suite 343 +New Katieview, VA 90928",1931-02-01 18:55:56,35:05:97:9a:f1:8d,jamie73@gmail.com,img/obama.jpg +Mr. Andrew Torres,159-66-4181,38056,"6094 Huff Mission +Martinezside, MT 10580-0758",1921-01-15 09:15:40,d0:6c:50:6f:c4:d1,martinwarren@wilson.net,img/obama.jpg +Benjamin Lopez,716-06-4430,69805,"44125 John Square +New Michael, SC 40488",1919-01-11 16:38:04,a6:13:c1:ee:df:75,xleon@woods.com,img/obama.jpg +Eric Snyder,412-11-5546,58756,"0364 Lisa Keys Apt. 973 +South Lauraton, VA 00758",2000-02-07 10:32:34,58:b2:0b:8d:c4:ae,annawilliams@gmail.com,img/obama.jpg +Jessica Wilson,689-71-9926,08822,"99057 Johnson Ville +Shannonstad, AR 93138-0777",2010-01-10 01:27:23,fb:fc:d7:0e:e9:7e,ryan96@gmail.com,img/obama.jpg +Tammy Hernandez,238-25-5057,63353,"2141 Lawrence Springs +Brettmouth, MO 20018-3102",1924-09-18 00:55:31,58:0b:1c:67:82:e7,angela06@ford.com,img/obama.jpg +Ryan Gutierrez,127-04-3256,59577,"88163 Carroll Drives +West Nathanchester, MS 40301",1918-01-17 15:50:52,a8:69:55:fb:59:0e,lopezjohn@cowan.net,img/obama.jpg +Gary Kerr,809-98-0700,26185,"PSC 7871, Box 4006 +APO AA 02714",2010-04-08 14:08:39,bd:ae:5a:a3:c2:81,morriskaren@hotmail.com,img/obama.jpg +Vanessa Olsen,878-13-8617,68291,"73258 Amy Via Suite 803 +Brianmouth, WY 67754",1942-05-24 18:18:18,a5:8d:6f:2e:ab:01,ryan16@johnson-miller.com,img/obama.jpg +Jaclyn Kemp,158-02-7372,78246,"77817 Jim Park +Port Jamesshire, NC 27353",1990-07-08 17:18:57,a0:f7:60:4b:3c:90,colecourtney@berger-garner.com,img/obama.jpg +Caroline Le,792-80-0669,77483,"43932 Jackson Views +Port Karen, GU 55296-0147",1967-09-12 09:07:32,c5:fa:7e:6d:e6:9a,angela49@hotmail.com,img/obama.jpg +Karen Miller,081-33-6402,18885,"02620 Shepard Ferry +Jonathantown, CT 11101",1957-09-29 17:31:57,47:12:68:b6:45:1e,nicolekemp@brown.com,img/obama.jpg +Daniel Johnson,826-84-8241,51189,"17633 Mary Plains Apt. 319 +South Rickyfort, NE 14562-8781",1987-10-29 10:45:52,a0:7f:8c:68:90:1a,danielgarcia@gmail.com,img/obama.jpg +Keith Lynn,150-41-5155,01500,"08837 Heather Mall Apt. 786 +Port Michael, OR 88842-9861",2015-10-08 23:13:44,8d:55:a2:e3:4d:e7,virginiawilliams@vargas-zimmerman.info,img/obama.jpg +Samantha White,524-11-1538,30018,"84894 Jennifer Road Suite 139 +Camposberg, MN 94209-5944",2013-05-16 09:02:54,c2:c4:fd:8d:9a:24,julie68@yahoo.com,img/obama.jpg +Matthew Walton,570-98-1464,98356,"118 Brian Estates Suite 455 +Madisonchester, AZ 93135-7984",1965-04-13 08:49:12,1a:bb:39:d5:fe:a3,mollyjohnson@gmail.com,img/obama.jpg +Alexis Hernandez,146-23-1004,20682,"30341 Gina Cliffs +Port Stephanie, MI 62308",2015-05-07 02:12:37,0e:27:9e:32:69:d1,nshields@gmail.com,img/obama.jpg +Jessica Cordova,137-66-4373,77535,"4178 Butler Light Apt. 039 +Sandrashire, SC 00924-9822",1943-05-28 06:00:10,3a:d0:8e:1a:87:50,brittany74@hotmail.com,img/obama.jpg +Corey Adams,146-30-9905,77280,"86364 Barker Isle Apt. 686 +New Javier, RI 54263-7103",1957-12-08 10:09:09,cc:74:32:ff:cb:bd,zoe73@hotmail.com,img/obama.jpg +Eric Munoz,802-60-5178,59097,"84391 Gonzalez Dale Suite 664 +Jonathanburgh, ND 02608",1926-05-11 21:59:03,02:84:9b:0e:64:38,brandon52@chavez.biz,img/obama.jpg +Shelby Cantu,274-03-4631,32209,"064 Angela Pass Apt. 841 +Port Rebeccafort, TX 88922",1932-11-09 11:21:19,41:c3:85:2a:f7:cc,eric52@cabrera.net,img/obama.jpg +Emily Phelps,738-25-3887,17739,"271 James Courts +Susanmouth, AR 56738-0660",1964-10-30 11:23:39,43:50:f3:0e:96:9e,robertmurray@martin.net,img/obama.jpg +Elizabeth Black,048-62-7095,40414,"PSC 4678, Box 2696 +APO AP 42959-7551",1991-06-14 20:23:05,ef:79:39:84:f0:b1,hardingebony@reese-smith.net,img/obama.jpg +Joshua Davis,034-75-2582,07536,"77938 Martin Highway +Lake Raymond, MH 53969-1075",1989-10-18 00:22:34,2a:4f:49:09:38:a9,tiffanythompson@graves-edwards.com,img/obama.jpg +Taylor Gordon,742-19-4715,53673,"5949 Ford Prairie +Lucasmouth, VA 06619-4819",2014-07-06 08:13:01,49:98:c6:d8:ee:62,ricedanny@riley.com,img/obama.jpg +William Hopkins,683-68-6992,64384,"808 Brenda Village Suite 632 +Salinasstad, SD 87451",2006-06-02 15:51:15,17:d2:fa:4d:50:d5,mhenderson@gmail.com,img/obama.jpg +Sharon Mckinney,399-31-5214,57021,"2332 Jones Creek +Keithberg, AR 76251-0482",1978-03-18 08:11:38,e4:e7:b1:1e:41:51,campbellvictoria@brown.com,img/obama.jpg +David Robertson,330-16-2756,83283,"441 Stephen Center Suite 375 +North Michaelchester, NV 63598-5109",1978-08-18 09:39:20,fe:9e:16:a7:30:2a,brendaweaver@yahoo.com,img/obama.jpg +Patricia Johns,177-67-1649,57766,"855 Kelly Oval Apt. 739 +Millerberg, AK 97248",1958-10-11 02:12:40,b9:32:53:b9:cb:5e,jamestucker@mercado.com,img/obama.jpg +Mark Lawrence,410-34-4562,37490,"29382 Amanda Rapids +Port Ryan, AL 30128",1969-10-04 12:54:39,d0:68:7a:c2:f6:0a,matthew64@medina-bailey.info,img/obama.jpg +Lindsay Martinez,423-49-7112,54601,"58309 Steven Summit +North Dawn, LA 64494",1976-04-07 00:02:28,76:d5:35:89:8f:41,xschultz@curtis.biz,img/obama.jpg +Krystal Cole,163-13-5436,19152,"5154 Hannah Valleys Apt. 076 +Davishaven, ME 04175-9178",1932-10-31 10:44:57,8a:a0:96:6d:f5:72,crystaltran@yahoo.com,img/obama.jpg +Luis Wilson,310-24-5121,85195,"386 Michael Villages Suite 913 +Ellistown, OK 15910",1963-09-24 01:12:08,35:57:0b:43:c3:dc,brandi40@thompson.org,img/obama.jpg +Kathy Jones,577-42-9629,60962,"661 Chad Groves Apt. 394 +Port Ginaview, CA 69013",2016-08-15 22:37:42,a9:0c:59:ac:4e:cb,oalexander@yahoo.com,img/obama.jpg +Mr. Todd Figueroa,152-11-4019,70750,"2310 Santos Prairie +Port Megan, VT 64290-6869",1923-05-25 19:42:35,cd:af:68:03:3f:81,scott53@gmail.com,img/obama.jpg +Alison Anthony,661-99-2470,51959,"3132 Baker Summit +West David, UT 39241",1960-05-06 04:57:47,4f:1a:50:c8:66:52,jenniferdavis@vaughan.biz,img/obama.jpg +Perry Fitzpatrick,119-97-5914,16424,"7113 Erickson Light +West Tammytown, ME 12853",1943-06-07 15:08:05,ef:8d:41:4f:c2:3b,christopherlewis@hotmail.com,img/obama.jpg +Virginia Hodge,592-73-9848,19748,"98117 Kristy Mountains Suite 610 +Youngberg, WV 13502",1931-03-02 11:58:03,36:83:26:be:25:4c,dawnpeterson@martinez.net,img/obama.jpg +Jessica Miller,737-51-5683,81137,"9765 Robert Points Suite 819 +Barberberg, AZ 11065",2016-11-17 14:33:16,c7:04:75:ad:97:f7,iwalsh@hotmail.com,img/obama.jpg +Jonathan Greene,051-24-5804,95448,"762 Joshua Roads Apt. 847 +East Cynthiafurt, MD 91823",1989-02-16 02:50:12,11:d0:10:b1:c5:67,mgriffin@hotmail.com,img/obama.jpg +Roberta Watson,643-78-7638,39212,"Unit 3717 Box 6673 +DPO AP 67930-6090",1920-09-08 18:31:29,40:5a:5a:72:c0:d6,grantchristopher@gmail.com,img/obama.jpg +Kimberly Johnson,123-85-7146,56676,"626 Griffith Park Suite 759 +Grantchester, MN 24801",1945-12-03 22:35:23,c3:70:d0:86:15:5d,april86@miller.com,img/obama.jpg +Alicia Thomas,625-53-2394,37435,"6040 Amy Hollow Apt. 873 +East Melanie, UT 64952-7259",1921-06-22 21:30:27,2a:fa:91:30:cf:87,gary07@floyd-gonzalez.com,img/obama.jpg +Jerry Chapman,759-51-1128,84195,"91838 Williams Brook +South Regina, DE 59137",2000-03-14 11:11:05,7c:00:e9:70:67:1f,reneeparks@yahoo.com,img/obama.jpg +Deborah Banks,169-43-2242,98054,"Unit 3237 Box 2571 +DPO AE 30549",1963-10-01 16:26:38,bb:a9:10:92:c1:f4,pettyrobert@johnson-rollins.com,img/obama.jpg +Susan Williams,623-31-7934,73798,"47418 Johnson Flats Suite 935 +East Susan, ND 87754",1973-03-08 00:56:30,04:64:9c:34:4f:89,ucaldwell@yahoo.com,img/obama.jpg +James Walker,182-01-1478,72937,"4674 Jacqueline Highway +West Juanmouth, AR 63050-8036",2014-12-15 16:21:39,2b:5b:60:f3:5d:ef,rnewman@frey-hart.com,img/obama.jpg +Christopher Torres,863-96-7243,78904,"77045 Denise Plaza Suite 853 +Aaronbury, AR 76960",1941-08-21 08:59:37,ce:7c:56:4c:83:2d,donnahunter@parsons-mcdaniel.com,img/obama.jpg +Andrea Kidd,536-68-1675,11977,"868 Nancy Ways +New Donna, TX 14631",1923-04-02 05:32:35,1e:ec:88:e2:60:f4,arobles@martinez.net,img/obama.jpg +Christopher Ballard,830-96-6318,70526,"7386 Morris Glens +West Angel, IN 78830-8420",1921-01-13 19:34:07,f5:e9:1b:e2:82:db,ryan07@perry.biz,img/obama.jpg +Brittany Schneider,754-93-4503,47426,"32362 Sarah Ramp Apt. 967 +East Lisaport, AS 01394-6735",2017-03-15 07:01:04,99:03:fd:39:c9:49,shannonsnyder@hotmail.com,img/obama.jpg +Laura Doyle,095-14-7702,53006,"25397 Jeffrey Lodge +Nathanmouth, MP 13181-0737",2006-01-27 14:43:55,1b:b4:dc:dd:71:b0,robertvillanueva@joyce.org,img/obama.jpg +Annette Burnett,322-52-5192,94391,"57067 Alvarado Turnpike +Chanton, WY 68413",1935-03-10 20:51:00,3f:ab:54:72:38:67,tonyasanders@yahoo.com,img/obama.jpg +Bryan Martin,682-90-3305,99771,"6642 Mary Mall Suite 370 +West Robert, WI 36563",1967-05-01 06:13:20,13:9d:e9:05:aa:b0,brett29@hotmail.com,img/obama.jpg +Carrie Ball,659-34-8428,29030,"955 Ashley Locks +North Meredith, OH 87335-3378",1937-04-26 12:42:32,01:06:d2:7f:1b:c7,dennispayne@gmail.com,img/obama.jpg +Matthew Scott,482-23-6632,64099,"5439 Young Stream +Gibsonfort, IL 40698-3318",1998-12-15 10:02:23,66:7b:d5:4c:6d:96,christian48@gmail.com,img/obama.jpg +Amber Mitchell,767-50-1324,13224,"4760 Anna Alley +East Shawn, OH 68602",1957-03-05 02:43:10,17:9e:b9:e4:fc:f3,kaitlin22@gmail.com,img/obama.jpg +Jennifer Bell,561-29-4858,35202,"9594 Garrett Brooks +Port Rodneyton, WA 23062-6653",2001-10-27 19:03:41,a1:a1:1d:eb:2f:fc,ywilkins@yahoo.com,img/obama.jpg +Ashley Pope,644-40-6935,12903,"812 Erin Hollow Apt. 246 +Fletcherfort, MI 48467-7453",1962-06-18 01:55:23,65:6c:fb:76:a4:2b,patricia48@bray.com,img/obama.jpg +Joseph Pena,031-72-6101,76462,"669 Richardson Inlet +West Matthewburgh, MH 80589-1391",1943-12-06 14:37:40,18:99:f5:06:83:b7,paul92@jenkins.org,img/obama.jpg +Mr. Brandon Curry II,678-54-0352,66289,"70294 Philip Summit Suite 079 +Lyonsland, LA 93850-9467",1963-11-19 19:36:27,8a:5e:e0:4a:77:34,zsoto@hotmail.com,img/obama.jpg +Mark Price,809-18-2454,23187,"933 Mccann Rue Apt. 795 +Ricehaven, WA 05465",1988-05-03 16:09:33,9a:d0:70:f6:31:ee,fmann@mcguire.com,img/obama.jpg +Melissa Clark,125-44-5023,15234,"9914 Mclean Viaduct Apt. 594 +West Davidmouth, HI 12307",1997-08-05 00:58:27,2a:69:17:04:d4:c1,teresa34@gmail.com,img/obama.jpg +Katherine Case,667-97-0393,07117,"3348 Laura Neck Apt. 253 +West Rhonda, AK 53180-7822",1989-04-06 05:08:17,52:f4:1a:7e:e8:d6,james68@yahoo.com,img/obama.jpg +Robin Gray,665-36-6213,16359,"26227 Rachael Fork Suite 623 +South Luke, IN 31400-8632",1956-04-21 16:58:48,3d:9a:67:b5:01:f1,cfreeman@hotmail.com,img/obama.jpg +Carla Craig,193-43-9830,95652,"5011 Jay Shore Apt. 640 +Lake Joshua, IN 81489",1994-10-14 13:30:01,02:bf:cf:7d:7e:28,richcody@yahoo.com,img/obama.jpg +Tyler Hancock,443-49-4391,25683,"610 Eric Port Suite 931 +Catherineport, KS 18464",1967-03-29 10:26:29,f0:8e:56:e1:22:4a,kelli21@hotmail.com,img/obama.jpg +Phillip Rojas,846-97-4034,53419,"7963 Rosales Circle +Lozanobury, GU 90071",1944-05-30 08:30:16,3c:8f:dd:4c:62:c9,matthewlevine@morse.info,img/obama.jpg +Michelle Oconnell,011-92-3791,25706,"354 Arroyo Park +Jamiefort, UT 51979-5382",1944-02-11 07:47:57,b3:fe:98:07:b6:67,dparks@salas.com,img/obama.jpg +Lorraine Mack,049-88-3569,80600,"271 Dixon Dam Apt. 820 +Lake Kristenmouth, MD 08003-6404",2009-01-11 02:44:24,cc:dd:02:b0:fb:c3,gdelgado@petersen-flores.org,img/obama.jpg +Angela Hines,078-04-5014,97776,"831 Hicks Summit Suite 596 +West Jennyview, AS 43302",1979-04-06 15:10:47,3b:c4:d4:07:3f:e5,andrea29@wood.com,img/obama.jpg +Lisa Johnson,105-46-5653,16923,"26557 Dickerson Creek Suite 476 +Lake Jeanneville, OK 59837",1999-07-04 11:53:33,54:4d:8c:43:7d:c5,jonesashley@watson.com,img/obama.jpg +Nathan Rogers,495-93-4287,32627,"45705 Wells Flats Suite 699 +South Brianland, ME 08726-4838",1963-09-17 16:12:47,2c:e6:61:d9:4a:b7,marie30@walker-baker.com,img/obama.jpg +Amanda Wood,331-91-9954,67896,"89220 Melissa Loop +Port Cynthiamouth, ME 35668",1943-04-23 14:09:05,58:67:f9:0a:ec:1a,reedmichael@wright.com,img/obama.jpg +Sara Weber,402-17-4101,16276,"384 Lisa Forest Suite 086 +Greenland, MN 93991-8082",1951-08-19 01:39:09,c2:dc:08:6d:52:c4,lewistheodore@gmail.com,img/obama.jpg +Gloria Davidson,854-09-9928,98735,"428 Mark Mall +New Kim, WV 83630-7927",2008-03-29 08:47:46,bf:79:43:da:9b:f4,codymcintosh@yahoo.com,img/obama.jpg +Jasmine Williams,582-81-0195,56223,"6066 Samantha Light Apt. 579 +South Heather, IN 72962",1920-07-12 02:45:14,cc:3d:28:ba:2e:f6,csanchez@green.com,img/obama.jpg +Alicia Scott,755-42-3004,78377,"6234 David Viaduct Apt. 634 +Martinland, GU 47470",1942-12-16 18:08:46,2e:fb:c3:90:9a:f4,pduffy@davis.com,img/obama.jpg +Alison Green,025-69-1945,04789,"05030 Jensen Locks +North Haleyfurt, MS 90614",1924-08-10 04:21:54,41:84:7e:e5:52:e0,kimberly95@yahoo.com,img/obama.jpg +Roberta Fields,325-10-6089,94812,"90212 Anthony Place +New Lisa, FL 31827-9150",1988-11-12 05:58:55,50:1e:21:a4:85:e3,martinmary@gmail.com,img/obama.jpg +Christian Dunn,870-24-4758,57953,"14345 Anthony Camp +Lewisfort, NV 34282-9803",1925-02-06 05:33:49,68:ee:ea:c5:1b:13,mary82@hotmail.com,img/obama.jpg +Mary Bowman,409-86-9885,96729,"035 Reed Ways Apt. 447 +Philipville, PW 53616-9594",1953-05-25 02:31:38,e6:68:1b:41:44:68,martinezdonald@hotmail.com,img/obama.jpg +Jordan Flowers,517-63-7921,12723,"Unit 3364 Box 6495 +DPO AE 27956-7978",1944-08-29 15:06:08,36:ce:9d:c9:35:2b,mcknightpatricia@hotmail.com,img/obama.jpg +Justin Morris,289-79-7613,19701,"8916 Campbell Station Apt. 201 +Masseybury, TN 92276-7848",1997-01-01 12:52:46,a8:33:fd:5e:4e:39,brookehawkins@davis.org,img/obama.jpg +Timothy Perry,724-37-7283,69446,"246 Smith Lodge Suite 978 +Ramirezburgh, TN 19729",1994-03-15 06:12:34,56:59:b4:e0:f3:47,acevedochristopher@stafford.com,img/obama.jpg +Kimberly Moore,847-42-1376,16569,"USNS Gardner +FPO AP 10361-1377",1935-07-19 20:59:43,68:80:16:64:a4:4a,fvaldez@cook.info,img/obama.jpg +Jessica Pham,152-97-1387,89741,"07504 Danielle Burgs +Murraychester, MN 32611-0679",1985-07-02 00:06:29,70:d6:77:dd:fe:29,thomas04@gmail.com,img/obama.jpg +Kelly Thomas,532-61-9396,61602,"0574 Carlos Glen +Stephenberg, MT 10926-8632",1996-04-07 09:45:33,e5:0e:b2:21:f0:f1,thompsonjason@alvarez.org,img/obama.jpg +Amy Shaw,406-25-0849,91011,"3089 Patricia Ports +East Sarahborough, HI 81477",2007-03-18 01:57:23,1f:a1:d5:e6:3f:f9,phillip97@torres-turner.com,img/obama.jpg +Robert Christensen,527-65-8114,87118,"41248 Kelly Mountains Suite 703 +Victorville, TX 52186-8524",1959-04-18 07:35:46,18:28:74:da:44:a0,ericagarrison@murray-smith.com,img/obama.jpg +Ryan Frost,811-69-6495,90475,"8942 Herrera Glens Apt. 631 +Lake Ethanberg, WV 57918",1991-11-09 07:00:34,f7:50:df:a1:30:65,marksmith@gmail.com,img/obama.jpg +Michael Williams,012-51-2714,77267,"71583 Sean Knoll Apt. 903 +Margaretfurt, AS 38986-6155",1958-10-01 12:50:17,06:3b:32:67:9b:0f,eortiz@hotmail.com,img/obama.jpg +Jeffery Kelly,336-45-1109,33523,"8953 Chad Trail +Lake Sandra, VI 66651-4963",1969-05-30 21:10:43,83:8b:65:d6:59:83,twood@yahoo.com,img/obama.jpg +Juan Carroll,087-71-8617,54187,"94496 Andrew Passage +Port Matthewfurt, VT 94891-6534",1992-07-14 11:03:31,48:5b:13:31:d1:51,troy92@turner.com,img/obama.jpg +Joshua Fry DDS,243-18-7615,51453,"78944 Glass Well Apt. 297 +Margaretberg, IL 85844",1920-09-29 13:54:55,ab:c0:02:bd:93:6a,bonnie89@murphy.com,img/obama.jpg +Jesse Santiago,065-92-1689,91580,"PSC 9024, Box 7007 +APO AE 77605-2277",1961-05-13 16:42:46,fd:b4:26:20:80:5c,michaeljones@yahoo.com,img/obama.jpg +Joseph George,801-69-0957,77902,"PSC 8681, Box 0083 +APO AP 23310-3902",1991-05-23 12:40:11,73:93:8c:65:53:7d,diana79@yahoo.com,img/obama.jpg +Melissa Butler,645-60-5778,04170,"9481 Ashley Meadow +Gardnerberg, GU 15832-7859",1997-01-18 22:13:48,5b:41:2a:81:d6:51,rhonda37@hotmail.com,img/obama.jpg +Caroline Kelly,496-74-0175,33714,"2145 Michael Spring +Sandraborough, KY 16485",1955-06-11 17:40:38,55:6b:1a:82:a2:4e,christopher23@alvarez.com,img/obama.jpg +Amanda Simmons,074-59-5012,08245,"99918 Michael Point Suite 591 +Kellystad, OH 84116-3169",2010-04-27 08:44:14,ad:c5:e4:31:c4:37,tracy22@yahoo.com,img/obama.jpg +Joseph Riley,048-31-3150,91363,"2880 Johnson Stravenue +Port Richard, GU 93770-3088",1956-05-10 22:23:22,17:a0:b1:cd:74:5c,rjohnson@hart.com,img/obama.jpg +Daniel Santiago,421-97-4902,29421,"363 Krista Canyon +New Sergio, AR 46870-7837",1930-08-13 01:24:41,21:43:e5:25:24:00,parkerrobert@yahoo.com,img/obama.jpg +Justin Miles,714-71-5758,70219,"52042 Estes Trafficway Apt. 396 +Rogersville, PW 28712-7484",1966-04-09 02:16:25,60:01:b9:2e:33:49,john02@yahoo.com,img/obama.jpg +Joseph Edwards,760-21-5308,32855,"4660 Luke Well Suite 474 +Dorseyville, IA 81648-5389",2007-11-23 20:52:40,c2:59:0f:f8:99:cf,davissheila@lester-rivera.net,img/obama.jpg +Justin Schmidt,526-77-8005,08845,"6041 Jenny Spring +Craigside, MS 49224-2575",1997-05-19 18:58:47,e7:b4:3a:63:76:34,abigail16@delgado-combs.com,img/obama.jpg +Aimee Perez,363-78-5820,29861,"1784 Bullock Summit +Joyfurt, CA 08337-9436",1970-12-26 07:56:51,d8:9b:3b:db:7c:90,dayjoe@hernandez-floyd.info,img/obama.jpg +Randy Ortiz,839-89-5907,13920,"244 Andrew Mountains Apt. 421 +Jenkinsbury, AR 15277-7695",2013-12-05 21:44:28,e4:a5:e2:ce:09:f9,suzanne25@thomas.com,img/obama.jpg +Joshua Roberson,719-77-4021,73648,"83884 Jason Field Suite 736 +Cabreraborough, SD 04023",1917-09-13 06:34:09,af:fa:26:94:cd:76,katherinemccullough@buchanan-mccarty.biz,img/obama.jpg +James Werner,276-88-5695,52587,"653 Miller Turnpike Suite 844 +West Aaron, OR 20710-8848",1980-07-02 22:05:59,fa:65:d5:b7:3e:de,lambertdanielle@yahoo.com,img/obama.jpg +Andrew Vega,156-73-7789,30375,"7141 Meyer Motorway +Zacharyfort, ID 65551-1943",2012-10-12 17:57:31,b5:51:0f:a1:61:19,upowell@hotmail.com,img/obama.jpg +Juan Blackburn,731-80-1846,94309,"60496 Rebecca Gateway +East Timothy, NM 00191",1964-07-31 07:39:13,4d:cd:a9:91:c1:96,stephanie85@henry-hughes.org,img/obama.jpg +Ronald Jones,688-29-6481,01135,"2967 Deanna Radial Apt. 080 +Danburgh, ME 01159",1934-08-21 19:29:55,65:c4:c9:f5:41:b6,alvinhoward@arnold-nguyen.com,img/obama.jpg +Daniel Martinez,501-16-9488,96347,"4939 James Oval +South Jared, SC 78510",1967-02-12 03:52:12,40:16:ce:de:2d:fb,ryanhenry@yahoo.com,img/obama.jpg +Christine Le,300-48-0109,88116,"5237 Reid Rapids +Reyesside, IA 90520-2522",1966-08-11 23:06:33,71:a5:05:7f:9a:71,gary55@vargas.org,img/obama.jpg +Alyssa King,126-85-8514,19331,"4496 Maxwell Mission Suite 202 +Jamesstad, AZ 06902",1943-06-29 14:39:26,31:9f:a0:9b:07:eb,jonathansmith@hotmail.com,img/obama.jpg +Kelly Simon,853-05-8673,73487,"88223 Aaron Center Suite 375 +North Davidshire, MN 81271",1998-06-20 20:05:46,b0:58:e9:7f:b9:ea,warrenjames@yahoo.com,img/obama.jpg +Mary Quinn,077-83-9188,29293,"753 Cheyenne Highway Suite 609 +Mitchellshire, DE 52242-3197",1919-06-11 21:14:00,ea:de:df:47:b0:5e,omarcombs@hotmail.com,img/obama.jpg +Erin Decker,748-41-4718,75241,"871 Brian Road Apt. 738 +Keyville, AZ 68032-6351",1920-09-10 12:58:14,2a:a2:34:78:b5:4b,ajames@mcdonald.com,img/obama.jpg +Linda Huff,716-21-4838,06261,"948 Tamara Knoll +Theodoreberg, AR 88524-3806",1984-05-21 02:43:00,62:ce:0e:7d:b0:15,harriserin@wright.com,img/obama.jpg +Timothy Smith,417-50-8442,06574,"9382 Bright Union +Callahanchester, CO 02714-5566",1947-06-18 05:00:42,3a:3a:0f:a1:a5:30,matthewbowman@ramos-ingram.net,img/obama.jpg +Alicia Reilly,146-31-7254,12100,"522 Hunter Greens Suite 989 +North John, FM 76885",1994-05-24 20:59:23,57:71:43:2e:01:68,lynn32@yahoo.com,img/obama.jpg +Christopher Thomas,283-73-2828,70756,"79454 Gregory Estates +New Jamesburgh, VA 82027",1990-11-13 18:28:05,1d:6f:5d:48:4b:d0,mirandachristine@johnson.net,img/obama.jpg +Hannah Fernandez,310-65-1940,24578,"PSC 5580, Box 0366 +APO AA 25558-2022",1929-10-24 11:12:35,59:99:f9:91:63:ad,angelawright@yahoo.com,img/obama.jpg +Katherine Barton,764-39-1882,92248,"988 Lori Court +Williamsside, AS 81444-9130",1943-08-22 20:17:40,4a:21:d0:8d:34:dd,phillip12@gmail.com,img/obama.jpg +David Brown,479-64-4554,86973,"698 Davis Bridge +East Mary, MH 64826",1967-09-11 22:21:13,62:c4:e7:ac:c4:69,eric15@tran-mitchell.biz,img/obama.jpg +Brandon Harris,204-89-0697,44310,"365 Lauren Summit +South Brooketown, VA 71268-5481",1978-09-21 12:02:33,08:6a:34:18:6f:16,jacksonann@velazquez.com,img/obama.jpg +Justin Brown,405-03-0861,75859,"7630 Roberts Motorway Suite 222 +Lake Ralph, PR 20901-5974",1929-01-14 05:20:56,a9:f3:16:66:59:80,slawrence@gmail.com,img/obama.jpg +Andrea Tyler,047-78-4851,62514,"4554 Kristin Trace Suite 219 +Moorehaven, NJ 95021-3552",2009-12-05 04:31:05,67:cd:a7:ba:a5:3e,asanchez@gonzalez-brown.com,img/obama.jpg +Matthew Jordan,205-30-9042,04976,"17094 Patrick Manor +North Gregory, WI 12974-7968",2008-07-18 18:51:43,18:ec:8f:96:af:cf,rcardenas@yahoo.com,img/obama.jpg +James Mason,204-41-5270,67574,"537 Benjamin Ports +North Michael, LA 35718-6586",1926-04-07 00:29:47,ac:b6:e3:76:cd:c4,ramseysavannah@ferguson-franklin.com,img/obama.jpg +Kelly Cook,881-27-5988,01221,"247 Diaz Mountains +Victoriafurt, AR 58734",2007-04-19 14:56:25,68:a9:2b:00:88:3e,bfry@hotmail.com,img/obama.jpg +Cheyenne Hutchinson,491-50-6462,44181,"57973 Scott Garden Suite 022 +New Jamie, CA 42152",1950-10-23 21:34:15,84:ad:e2:27:c5:a7,rcarpenter@gmail.com,img/obama.jpg +Benjamin Arroyo,338-78-9018,03336,"73135 Peter Meadows Suite 469 +East Gregorytown, AS 58787",1978-08-24 17:35:28,be:69:1a:64:0d:84,blittle@rivas.org,img/obama.jpg +Anthony Fuller,062-55-4438,20375,"22728 Ashley Island +Millerberg, DE 66524-8233",2009-10-06 19:34:22,49:42:2e:ce:a0:f1,jeremy40@hotmail.com,img/obama.jpg +Melissa Villa,474-44-5640,29684,"PSC 6231, Box 9202 +APO AE 52971-8668",1933-09-05 00:13:34,e7:7e:34:70:af:fb,donbishop@cook-foster.biz,img/obama.jpg +Timothy Hall,055-10-5254,27056,"15816 Caroline Inlet Apt. 581 +Port Rebeccaton, KS 06843-4992",1945-01-12 19:41:02,c1:50:ef:b9:b1:67,mossvincent@gmail.com,img/obama.jpg +Natalie Cole,144-61-1220,43716,"82864 Walters Port +West Hollystad, NV 80501",1935-01-23 16:30:14,05:38:56:21:98:c9,marksolivia@martinez.com,img/obama.jpg +John Watson,495-53-2676,25454,"639 Barber Lodge Suite 327 +South Jordan, ND 32784",2005-12-19 10:50:30,29:0c:15:5a:25:c0,crystal07@anderson.com,img/obama.jpg +Carolyn Lindsey,735-61-7703,24904,"0042 Chung Wells Suite 224 +Port Tannermouth, AK 74251-5337",2014-12-23 17:51:34,2c:e8:dc:c9:9f:f7,larsonsteven@gmail.com,img/obama.jpg +Jonathan Hardin,329-19-0910,59874,"PSC 4930, Box 4543 +APO AP 13894-1713",1969-02-06 23:06:27,b2:2d:b6:59:53:45,xarellano@yahoo.com,img/obama.jpg +Alex Weeks,637-54-0712,79349,"USCGC Chapman +FPO AA 99804-3614",1989-05-21 07:15:08,c5:29:76:a0:fc:a8,francisco27@yahoo.com,img/obama.jpg +Juan Davis,675-21-6388,07211,"227 Matthew Spurs Apt. 472 +East Jeffrey, FL 16314-5668",1930-11-25 13:13:32,a7:7c:44:b0:4a:1b,margaretgarcia@hotmail.com,img/obama.jpg +Mark Gibbs,389-12-9943,39774,"30731 Tiffany Radial Suite 321 +Walkerstad, TX 46425-4002",1980-07-16 23:55:28,21:af:d6:31:9e:dd,rodriguezkathy@smith.net,img/obama.jpg +Joseph Good,166-06-4617,21271,"8726 Nielsen Skyway Apt. 202 +New Elijah, DE 09988-8298",1975-01-30 05:50:27,3f:8d:1d:fc:fd:cb,ihayes@hotmail.com,img/obama.jpg +Lisa White,279-58-8019,78643,"358 Smith Glens +Houstonview, FL 42142-6513",1943-04-02 17:24:33,b0:b3:7a:af:ce:1b,esparzaalex@fernandez.biz,img/obama.jpg +Jessica Cooper,289-35-8132,76375,"102 Scott Dale +Raymondbury, NH 65334",1945-08-31 21:06:47,71:df:cc:43:3a:ec,beanjoshua@yahoo.com,img/obama.jpg +Katherine Reynolds,021-47-0732,57305,"1582 Taylor Brooks Apt. 877 +Jessicaberg, PR 59924-0498",1948-09-07 12:30:16,b1:8f:b5:7c:c8:b6,johnsonsharon@taylor.com,img/obama.jpg +Joshua Bradley,263-33-7581,60784,"90283 Brittany Avenue Suite 775 +Marcusburgh, MO 99352",1970-03-15 17:34:47,6c:ae:04:81:ae:f0,qgarrison@gmail.com,img/obama.jpg +Christopher Moore,102-55-9630,14548,"675 Danielle Tunnel Apt. 687 +Lake Steven, MS 51852-9907",2009-02-22 19:47:10,57:b0:ba:64:8b:c3,cblack@andrade-gonzalez.biz,img/obama.jpg +Nicholas Knight,176-54-3287,58376,"536 Sanchez Road Apt. 888 +Shawntown, VA 21502",1924-08-31 21:26:02,f0:48:4c:35:de:aa,angela38@yahoo.com,img/obama.jpg +Terri Jenkins,238-90-3162,33046,"574 Horne Freeway Suite 981 +Port Karen, TN 31936",2009-04-17 23:45:55,c9:c3:a3:fb:09:1f,qpotter@yahoo.com,img/obama.jpg +Kenneth Le,149-37-5531,40168,"96932 Bennett Passage Suite 723 +Port Shirleychester, GU 95430",1955-07-17 13:27:01,0f:a8:44:b6:6c:b3,wagnersteven@hotmail.com,img/obama.jpg +Felicia Harris,698-51-5995,40676,"46583 Monique Forks Suite 014 +Nicholasburgh, AR 51304-4574",1932-09-26 04:18:20,c8:5d:ac:7c:74:dc,westchristina@stevens.com,img/obama.jpg +Tina Scott,509-86-5252,70344,"183 Matthew Way Apt. 551 +Adamville, NC 79389",1984-10-15 18:20:46,4b:43:15:f8:e1:f2,alanrobbins@hotmail.com,img/obama.jpg +Karl Salazar,625-86-7629,01515,"PSC 8888, Box 7196 +APO AP 46556",2011-12-15 10:31:10,f5:72:af:ed:1e:30,mark03@hotmail.com,img/obama.jpg +Bradley Alexander,080-67-1492,61965,"59592 Susan Streets Suite 129 +Scottland, GA 05798",1978-12-27 18:18:25,b5:da:bd:4d:60:58,williambrown@smith-hanson.com,img/obama.jpg +Kristen Watson,129-52-0861,29287,"4169 Brandy Plaza +East Barryburgh, NC 17845",1942-04-15 01:08:11,32:f1:5e:20:ab:19,stephanie89@hotmail.com,img/obama.jpg +Shelby Lee,069-68-6713,28073,"347 Ramos Turnpike +Port Gregory, MP 68930-0608",1924-02-17 17:14:06,2e:4b:4b:37:75:d9,alexisestrada@jackson.com,img/obama.jpg +Penny Bowen,766-95-0296,44803,"01009 Jones Views Suite 305 +Kimberlyfurt, HI 13530-5178",1918-02-25 23:59:08,d1:5b:7c:7d:33:fb,aliciaestrada@hotmail.com,img/obama.jpg +Brian Martin,266-59-7892,61640,"Unit 5595 Box 8282 +DPO AP 87891",1976-06-28 01:09:05,33:b9:2e:7b:b6:19,heather38@sandoval.biz,img/obama.jpg +Sherri Yu,732-89-2471,64813,"835 Brooks Cliff +South Robert, NV 53320-4263",1982-02-21 05:43:19,57:d7:c7:c0:07:9a,jasonewing@adams.com,img/obama.jpg +David Mcdowell,442-64-8978,16473,"6190 Melissa Well Suite 165 +Colemanfurt, OK 66109",1942-04-29 16:50:08,11:2a:c3:39:c0:47,dorothyhendricks@banks.com,img/obama.jpg +Mr. Henry Gonzalez Jr.,872-78-0362,03847,"4775 Tina Ports +East Brittney, RI 25372",1976-09-10 13:12:31,40:5e:57:61:5e:f9,ejohnson@yahoo.com,img/obama.jpg +Michael Kane,278-95-3666,58308,"865 Lisa Shoal Suite 317 +Port Stephanieton, KS 09458",2015-12-20 18:41:47,1a:27:c1:26:47:dc,dbrown@yahoo.com,img/obama.jpg +Bryan Perez,622-25-9391,12986,"296 Malone Falls +Ramireztown, WA 50687-8156",1984-10-17 01:13:21,54:71:99:54:8e:b3,xfrank@boyd.com,img/obama.jpg +Anna Wong,043-24-2771,48072,"33172 Carson Mountains +Lake Danielport, SD 49514-2833",1984-09-23 17:54:29,d7:13:2e:05:51:93,tyler27@yahoo.com,img/obama.jpg +Melanie Sanchez,777-14-3896,80994,"67089 Burnett Hill Apt. 945 +North Joshua, WA 55355",1936-01-24 19:51:16,5b:ad:78:e4:c6:47,ecameron@bishop.biz,img/obama.jpg +David Marshall,623-89-9760,74616,"USNV Knapp +FPO AA 24648-2726",2015-01-20 18:43:21,94:e1:b4:e9:81:54,ksteele@montoya.com,img/obama.jpg +Justin Hansen,263-72-6567,11483,"894 Michael Ridge Suite 543 +North Seantown, NV 91569-7830",1924-02-21 13:54:18,2e:83:11:2b:e9:57,meredithaustin@yahoo.com,img/obama.jpg +Robert Wallace,520-89-5417,54945,"53350 Norman Brook Suite 026 +New Saraland, IN 87506",1947-07-27 22:29:10,c5:ae:2f:68:eb:ab,icrawford@bennett.info,img/obama.jpg +Christopher Thomas,444-33-7077,84339,"Unit 9494 Box 3701 +DPO AA 13011",2012-11-01 14:26:48,c0:e3:60:1a:ed:0d,kristajordan@yahoo.com,img/obama.jpg +Alexis Huerta,771-58-7494,48195,"6127 Delgado Lodge Suite 292 +South Jordan, KY 07593",1990-03-11 20:54:26,bd:d2:65:91:a2:62,katherinebrewer@gmail.com,img/obama.jpg +Eugene Duncan,261-67-2017,53261,"Unit 9974 Box 4460 +DPO AE 09723",1927-02-09 06:34:05,ca:61:ea:44:0c:9d,ulewis@preston.com,img/obama.jpg +Oscar Blackwell,652-80-2219,55476,"0195 Robert Corner +Ericaberg, WA 03810-5520",2003-05-23 02:57:29,ba:0f:b0:9b:9d:95,margaret80@keller.info,img/obama.jpg +Andrea Rodriguez,407-36-5160,69701,"8494 Chelsea Park Suite 423 +Keithchester, MP 22280-9936",1929-06-30 11:06:14,e5:b2:a2:87:2a:fc,danielle51@yahoo.com,img/obama.jpg +Teresa Cooper,291-98-8511,61830,"810 Bullock Island +Port Markton, IL 93814",2015-07-26 07:01:24,d8:db:87:00:9b:96,ericholt@bauer-morrow.org,img/obama.jpg +Jon Page,216-87-0026,77320,"865 Benjamin Shoal Apt. 107 +East Sabrina, TN 02044",1917-10-30 16:25:58,a0:fd:27:66:d9:26,robert77@flores.com,img/obama.jpg +Bruce Garcia,533-74-2855,88499,"26784 Burns Avenue +Timothyville, GU 16046",1985-11-18 13:11:06,9a:8c:d4:0a:fc:6d,lewissteven@gomez.net,img/obama.jpg +Christina Luna,478-15-3767,27532,"1889 Ballard Fields +Sparksbury, RI 24933-3876",1956-03-04 23:27:29,ee:35:65:15:69:96,randyharrell@hotmail.com,img/obama.jpg +Brian Salazar,309-38-7196,18242,"USNV Morgan +FPO AP 79472-0636",1971-11-07 11:40:33,3c:56:fb:d3:93:de,cynthia68@hotmail.com,img/obama.jpg +Mrs. Donna Cochran,626-42-7147,76592,"93342 Barker Way +North Samuelfort, NY 93908",1925-02-21 02:41:21,ad:6f:82:a1:1b:b5,robertjackson@yahoo.com,img/obama.jpg +Joshua Cox,833-08-3925,42928,"509 Cardenas Valleys +Marybury, OR 59164",1950-03-28 13:00:08,3b:22:69:fb:c0:7d,peter24@yu.com,img/obama.jpg +Richard Russo,785-44-9835,07372,"PSC 4906, Box 2693 +APO AA 88216-7650",1934-12-21 18:19:21,8b:ac:13:ab:b6:ec,leepeter@yahoo.com,img/obama.jpg +Alyssa Nichols,058-11-9604,72983,"38955 Kimberly Ramp Apt. 977 +New Meghan, HI 95766-7076",1952-10-08 07:50:04,ca:50:51:8f:34:21,crystal91@rivera-greene.net,img/obama.jpg +Debbie Lutz,787-31-9644,83499,"5488 Brian Corners +North Christophermouth, HI 38382-5050",1940-09-30 04:36:29,9a:a8:9c:dc:4b:11,perrysteven@hernandez.org,img/obama.jpg +Xavier Garcia,295-60-3030,79220,"053 Clark Knoll +East James, DE 56483",1991-04-14 06:28:34,20:c8:51:e5:0a:29,amartinez@gmail.com,img/obama.jpg +John Powell,570-62-3944,01984,"44852 Lewis Point Apt. 607 +Seanberg, MH 05495",1993-06-20 00:49:03,39:93:6b:19:fd:3a,frobertson@coleman-clark.biz,img/obama.jpg +Jon Barrett,236-58-7983,35871,"24119 Stout Streets +North Aarontown, ME 84411-5837",1926-04-07 21:27:31,a3:20:45:38:73:55,millermaria@hotmail.com,img/obama.jpg +Alexa Poole,208-71-4159,78610,"3726 David Mews +Port Justinland, RI 98244-3331",1989-10-07 23:17:07,5f:e4:4d:6a:e3:f8,pallison@yahoo.com,img/obama.jpg +Andrew Todd,298-20-9462,04763,"7030 Ponce Haven Suite 473 +Quinnstad, MD 25059-5079",2005-02-01 21:33:04,6d:19:3c:c0:b8:39,ashlee26@yahoo.com,img/obama.jpg +Robert Conner,240-27-8135,37975,"Unit 1728 Box 0355 +DPO AP 41068-6363",1932-05-11 06:15:36,1f:64:2e:69:1b:2e,cody17@snyder-wolf.com,img/obama.jpg +John Hancock,304-28-3715,84626,"11150 Morales Shores +East Nicolechester, CA 62324",1929-05-07 18:52:00,30:cf:bf:79:a0:cc,ortizkaren@hotmail.com,img/obama.jpg +John Berger,277-09-4969,57597,"Unit 8499 Box 6768 +DPO AA 36915",1929-07-13 08:25:41,44:8a:08:62:77:9c,elizabethdavis@williams.info,img/obama.jpg +Jonathan Garner,330-46-3824,97947,"2016 Franco Glen +Rodriguezville, OH 09479",2001-12-26 20:15:27,d8:e2:4a:55:6c:c8,randy36@harrison-king.info,img/obama.jpg +Andrew Patrick,394-98-8339,43381,"29053 Navarro Harbors +Wigginsborough, ND 87428-7228",2016-07-14 16:05:40,54:19:55:13:79:14,zmartinez@hotmail.com,img/obama.jpg +John Nelson,848-43-2369,19091,"808 Monica Common +Carlside, LA 10277",1975-06-05 19:37:42,e3:87:91:76:96:39,sharipham@heath-austin.org,img/obama.jpg +Jessica Bell,394-80-1732,57869,"1310 Campbell Shore Suite 570 +Jacksonview, WA 66038",1986-01-05 19:43:38,d1:fe:65:04:5a:96,christinecameron@hotmail.com,img/obama.jpg +Brooke Rodriguez,205-42-9755,14464,"722 Barron Oval Suite 353 +South Anthonyville, NH 13611-8713",1967-04-12 07:52:00,d3:03:bc:31:6d:5a,scotthines@wood-phelps.biz,img/obama.jpg +Rodney Douglas,191-36-9188,97371,"811 Avila Wells Apt. 863 +Erinbury, NJ 37548-6113",2005-04-23 01:01:08,a5:4e:9e:2c:11:b6,hestersamuel@hughes.com,img/obama.jpg +Sherry Mcdonald,001-24-7784,57939,"2012 Timothy Plaza Apt. 214 +Port Jennifer, MA 37040-0317",1929-11-21 11:43:07,a6:81:d3:1e:b3:41,martinezdiana@gmail.com,img/obama.jpg +Jason Hill,619-51-2837,98340,"1073 Kayla Court Apt. 630 +Edwardfurt, TN 13138",1960-01-29 03:09:50,ee:de:88:21:02:a9,danieladams@yahoo.com,img/obama.jpg +Billy Joseph,565-17-3432,63318,"481 Gross River +Davidburgh, VT 98209-1967",2004-05-29 04:28:24,40:f5:8a:ff:f4:bd,andrea44@bradley-cox.org,img/obama.jpg +Jennifer Cole,809-33-4700,59598,"4256 Jennifer Viaduct Suite 422 +Jaredberg, MD 56581",2014-05-21 08:02:49,cf:81:24:91:77:88,ehenry@gmail.com,img/obama.jpg +David Gaines,863-33-6649,29199,"2930 Smith Lock +Santosmouth, KS 88640-8869",1921-08-21 06:29:17,41:a5:d3:05:10:ad,frank54@casey.com,img/obama.jpg +Sandra Becker,183-36-1805,94260,"5204 Bonnie Summit +Colleenbury, KY 28131",1956-04-27 02:35:36,02:ac:83:b6:b3:a2,jeremy27@perez-moore.biz,img/obama.jpg +Trevor Miller,669-73-5065,24961,"94408 Stewart Creek Apt. 974 +Aprilport, MS 77424-0191",1943-09-22 19:22:36,20:64:ef:90:7f:07,hwilliams@caldwell.com,img/obama.jpg +Benjamin Tucker,569-38-4562,90212,"22700 Swanson Square Apt. 760 +North Victoriaberg, NV 01601",1927-06-08 01:04:36,c2:f3:13:98:31:61,smithsandra@hunter-carroll.com,img/obama.jpg +Mark Bryant,891-34-6366,66187,"4727 Molly Via +South Kristen, PR 15536",1957-09-15 11:53:49,55:9b:2f:da:07:0c,rachel03@yahoo.com,img/obama.jpg +Matthew Vaughan,292-73-0176,02113,"651 Kyle Spurs Suite 141 +Lake James, SD 78939",1982-01-04 10:14:07,64:a4:80:ee:a0:82,wangmichael@barton-may.com,img/obama.jpg +Aaron Livingston,259-36-5122,89926,"6582 Davis Ports +Port William, VT 70216",1919-06-23 11:47:29,81:d1:04:31:e3:1e,richardharrell@wright-smith.net,img/obama.jpg +Sharon Byrd,528-18-1863,03203,"27173 Amber Square +North Jennyborough, CA 30362",1983-11-11 15:40:48,e4:ac:76:fc:ea:f5,gferguson@smith-skinner.biz,img/obama.jpg +Elizabeth Herrera,660-78-2466,25445,"740 Brianna Stream Apt. 229 +South David, GU 61458",1949-01-25 21:18:09,9c:15:3a:8f:e4:85,erichard@nelson.com,img/obama.jpg +Paul Krause,298-62-7120,32713,"49184 Rodriguez Point Apt. 112 +South Lauren, NJ 93923",1937-06-08 00:03:56,28:20:64:c7:11:ba,derekhardy@clements.com,img/obama.jpg +Patrick Gibbs,107-16-4506,87543,"71932 Downs Springs +Adamsstad, ID 16221",2003-07-21 16:02:35,18:70:4c:21:97:ea,davissteven@yahoo.com,img/obama.jpg +Terry Farley,439-97-5269,06978,"09323 Amanda Wells +Martinezville, NJ 23937-0421",1961-12-17 18:15:59,b1:94:a1:d6:d7:1d,perkinsjack@gmail.com,img/obama.jpg +Christopher Pineda,377-42-4339,02401,"65514 Samuel Knolls +Kaylaberg, MN 34592-9744",1936-03-29 23:03:33,e1:08:09:4f:eb:8c,adam72@smith-cardenas.com,img/obama.jpg +Benjamin Obrien,647-31-5702,24173,"42173 Dean Estates +East Christopherburgh, IN 26941-0028",1970-12-22 03:56:53,12:a0:33:1a:7c:3e,danielperez@flores.biz,img/obama.jpg +Gary Cannon,717-37-6606,94936,"4553 Kevin Prairie +Penaport, ME 78769",2011-03-04 22:14:54,33:ea:c7:32:f1:38,shawn56@williams.info,img/obama.jpg +Micheal Richards,527-30-5118,23233,"30198 Tracy Key Suite 625 +Lake John, OH 67580-6753",1929-01-18 02:08:53,6c:37:03:31:d5:9f,suzannehall@dillon.info,img/obama.jpg +Debbie Miller,125-91-5241,74912,"4170 Church Streets +Maxwellburgh, MO 77879-8803",1961-12-25 12:50:52,4c:de:bb:e3:22:a6,kristinacalderon@gmail.com,img/obama.jpg +Jerry Bailey MD,396-53-8741,71738,"99633 Parks Roads +Meadowsfurt, ME 90465",1956-09-12 11:41:03,f1:cd:84:fb:fd:f2,kelleyholly@contreras.com,img/obama.jpg +Teresa Terry,899-78-6585,62886,"058 Sharon Circles +Calvinville, PR 43176",2012-09-22 13:45:09,14:fa:0e:19:35:35,jonesdonald@gmail.com,img/obama.jpg +Aaron Hamilton,551-10-9849,39047,"62221 Long Glens +East Tinahaven, NY 99811",2016-06-05 16:26:33,8b:48:08:31:9e:33,edwardskelly@hotmail.com,img/obama.jpg +Stephanie Copeland,891-69-6223,01662,"USNV Murray +FPO AP 36343",2008-12-15 23:29:16,d7:07:4f:e6:9c:54,hclark@gmail.com,img/obama.jpg +Lindsey Bates,291-39-1323,99536,"6161 Rivera Orchard Apt. 620 +Rodriguezmouth, MS 79924",1962-02-18 19:21:31,e4:34:e2:da:ca:63,madelinewilliams@yahoo.com,img/obama.jpg +Jamie Schwartz,349-14-1554,86073,"84952 Madeline Way +Juliebury, WI 47352-5074",1923-05-04 11:45:53,94:60:85:7a:10:d6,harveylisa@gmail.com,img/obama.jpg +Robert Buchanan,293-55-5341,07625,"66281 Jones Drive +West Alexandrahaven, NV 61843-9531",1982-06-07 08:25:16,cc:f8:a8:02:c0:20,padillaheather@yahoo.com,img/obama.jpg +Brian Horton,069-95-0401,01436,"7397 Guzman Corners +Mccallville, ND 55960-6217",2013-04-01 21:26:16,e9:16:11:d5:14:c9,othomas@yahoo.com,img/obama.jpg +Stephen Davis,693-76-4654,60222,"352 Perez Green +South Cody, PW 86219",1921-12-31 19:44:12,21:82:35:df:fc:68,johngibson@kennedy-acevedo.com,img/obama.jpg +Stephanie Buchanan,046-47-2350,66337,"82168 Brown Extensions Suite 271 +New Kaylaborough, AL 28481-5550",2008-03-21 08:16:37,6c:5c:06:3d:ad:4c,robertsmith@abbott-parsons.com,img/obama.jpg +Marisa Daniels,870-45-1829,38834,"73638 Elizabeth Trafficway Apt. 534 +Paulmouth, DC 22482",1958-11-02 17:34:45,20:fb:9f:16:1d:fb,bturner@yahoo.com,img/obama.jpg +Thomas Rodriguez MD,533-79-1268,35693,"4924 Amanda Freeway Apt. 946 +North Anthony, IN 76020-5932",1962-11-21 07:55:05,88:84:2f:d2:58:be,melissagreen@kelly-thompson.com,img/obama.jpg +Rebecca Montgomery,400-22-3618,60566,"247 Alex Brook Suite 433 +Moodyland, HI 07299",2004-01-25 12:44:16,d8:89:bd:cb:71:73,brancheddie@harris.com,img/obama.jpg +Morgan Stephenson,048-04-7411,06544,"PSC 0795, Box 4758 +APO AP 43386",2003-01-24 20:25:52,6d:5d:ca:87:a4:09,shauncollins@caldwell.com,img/obama.jpg +Jose Williams,831-06-9414,05893,"25169 Williams Ferry +Port Adam, WI 03210",2012-02-16 06:41:28,53:ef:d9:6f:b0:ea,rebeccadixon@cannon.net,img/obama.jpg +Justin Schwartz,698-48-6993,40651,"71821 Anderson Burgs Apt. 585 +Seanton, PW 66356",1945-12-20 22:53:58,b9:66:c0:65:b5:08,sgomez@rocha.org,img/obama.jpg +Marco Hernandez,667-41-7609,51920,"009 Wayne Brook Apt. 256 +Strongfurt, CO 99150",1980-07-23 15:25:06,5c:a3:12:0c:dc:8d,murphyjacob@hotmail.com,img/obama.jpg +Jodi Smith,416-27-5373,59981,"USCGC Michael +FPO AP 81450-8436",1961-03-02 18:18:27,60:7a:0c:34:4f:1c,tamaraedwards@johnson.com,img/obama.jpg +Danielle Johnson,169-38-4375,66275,"9621 Steven Knoll Suite 481 +Port Andrewfort, NV 79030",2006-11-13 23:50:54,ec:e3:c6:18:d7:c7,tara82@gmail.com,img/obama.jpg +Marcus White,491-06-0453,17336,"282 Joseph River Apt. 091 +Josephhaven, FL 19743-9682",1979-03-02 23:14:16,a6:98:45:c2:b0:4c,lowerythomas@henry-green.com,img/obama.jpg +Angela Allen,428-46-7049,45398,"950 Burgess Drive Apt. 277 +West Scotthaven, GA 82491",2014-03-16 02:00:25,73:f9:c6:92:8d:74,luceronicholas@flores-pittman.com,img/obama.jpg +Kevin Williams,131-05-2309,36914,"022 Lee Pines Apt. 666 +Brandontown, MN 57845-6055",1924-08-21 19:03:04,f0:cb:90:e9:16:86,qhayes@brady.org,img/obama.jpg +Julie Wagner,113-59-9911,52417,"471 Kelsey Drive +New Daniellefort, WA 89962-2160",1958-12-30 11:03:22,50:60:07:90:a8:36,davidmills@yahoo.com,img/obama.jpg +Heather Taylor,689-09-2303,05638,"5905 Hoover Islands +North Victoriatown, NC 75611-9059",1944-04-08 18:50:44,73:52:af:fa:36:00,adrian04@sullivan.biz,img/obama.jpg +Mitchell Rosario,779-35-3371,08343,"508 Moore Plaza Suite 888 +Richardsonborough, VI 72119",1978-07-07 13:20:34,d7:50:ec:9f:7e:fc,tina51@gmail.com,img/obama.jpg +Heather Perry,257-58-9310,17608,"7704 Cheryl Plaza Suite 973 +North Margaret, AR 42030-7680",1932-10-17 00:34:42,04:79:df:77:ad:d5,josephmeyer@hotmail.com,img/obama.jpg +Felicia Wright,201-24-1016,64984,"6876 Ryan Radial Apt. 965 +West Todd, HI 80865",1995-06-17 13:47:41,90:1e:9e:55:ed:cc,robin15@lindsey.biz,img/obama.jpg +Lisa Atkinson,222-34-1607,83152,"235 Kidd Place Suite 064 +Ericton, OK 51930-7764",1928-04-23 12:28:36,55:6b:74:0d:ec:93,rebecca84@ramirez.com,img/obama.jpg +Louis Herman,886-39-5094,32773,"800 John Mission +Stanleymouth, MP 51058-4575",1963-07-15 06:32:14,07:69:0c:40:5d:d5,rickeyjacobs@gmail.com,img/obama.jpg +Daisy Smith,241-34-0975,13092,"42283 Gabriella Rapids +Port Jasonport, MI 79053",1966-08-18 05:03:31,33:8c:77:22:2a:f6,robertskenneth@mcdaniel-clark.com,img/obama.jpg +Alexis Clark,769-83-8309,78513,"7783 Lori Manors Apt. 098 +Lake Brandon, MP 31298-9269",2007-07-03 19:41:22,36:06:fd:49:c8:97,tammy15@perkins.com,img/obama.jpg +Marcus Miles,690-86-2958,56621,"162 David Terrace Suite 584 +Allenchester, MD 14300",1990-10-23 16:06:27,4e:be:64:e6:b1:2f,thompsonbeth@hotmail.com,img/obama.jpg +Michael Young,355-84-1062,67549,"0517 Smith Circle +North Erin, RI 66797-2903",1957-10-18 06:33:30,3d:83:87:d2:a4:83,brittany93@hotmail.com,img/obama.jpg +Rachel Cruz,693-40-6864,24619,"57011 Peter Row +West Howard, PW 62465",1961-02-20 14:04:27,2c:20:26:31:7b:17,tony82@hotmail.com,img/obama.jpg +Gabriella Allen,248-58-4692,46031,"336 James Haven +West Rachel, ME 81330-4435",1917-06-02 04:28:54,a8:75:b9:ea:be:a3,smithmartha@miller.net,img/obama.jpg +Elizabeth Wilson,538-30-8270,62091,"256 Marissa Plains Apt. 894 +West Samuel, GU 85564",1964-07-18 14:20:32,30:3b:11:9c:a8:51,michellehenderson@hall.biz,img/obama.jpg +Kevin Roberts,419-41-9805,80905,"694 Mcdonald Forest +New Dawn, IN 70910",1984-05-09 02:30:10,db:95:4e:fe:44:3f,shieldsjeffrey@yahoo.com,img/obama.jpg +Lindsey Joseph,419-96-9419,51844,"7014 Jessica Club +Baileyside, MH 03346",1927-02-03 14:28:06,b3:55:80:00:fc:79,martinezlaura@beck-rodriguez.com,img/obama.jpg +David Johnson,645-03-2825,89444,"4935 Patrick Well +New Wayne, VA 54439",1964-01-27 03:51:17,35:bb:86:fd:ec:17,alan01@hotmail.com,img/obama.jpg +Dawn Macias,710-11-9847,98806,"856 Kenneth Flats Apt. 161 +West Jeffreyborough, NV 32161-0876",2009-03-01 07:21:46,51:a2:24:66:0d:8b,mallory47@yahoo.com,img/obama.jpg +Kevin Barrett,827-51-8945,80315,"30109 Lori Road +Fisherfurt, WA 70900-6202",1922-12-27 13:19:03,7b:6b:20:2f:b4:b4,kristenjames@beck-williamson.info,img/obama.jpg +Haley Johnson,573-90-3033,18990,"659 Jonathan Course +New Carolyn, OR 54515",1935-06-28 02:32:45,ce:1a:f8:5b:24:76,michael55@yahoo.com,img/obama.jpg +Amber Tate,707-47-6887,80194,"8274 Charlene Ford +East Kelseyville, FL 74724-7071",1987-07-12 23:25:30,e9:c6:dd:bc:d1:cf,jonesrobert@marshall.com,img/obama.jpg +Mrs. Kelly Gibbs PhD,558-22-1888,74418,"8762 Williamson Crossing Apt. 223 +Port Dwaynefurt, MA 45391-2445",1983-02-17 16:44:55,2f:fe:59:dd:a4:63,douglas18@pitts-bray.biz,img/obama.jpg +Barbara Stewart,220-20-1279,35616,"52791 Nathan Locks Suite 800 +West Jeffrey, MH 92268",2005-05-26 12:15:26,e0:a3:a8:e2:7e:14,erica76@hotmail.com,img/obama.jpg +Charles Cole,344-11-5495,37290,"46521 Katherine Parkway +Brandonside, PR 54870-0020",1945-12-06 12:01:46,1e:0d:eb:06:13:5f,rachelwagner@webb-schultz.com,img/obama.jpg +Kathleen Hickman,344-20-9036,78222,"580 Gibson Ford Apt. 210 +Gutierrezshire, RI 46039-5531",1923-08-24 21:10:01,ac:96:e2:73:7f:53,martinchristopher@ford.com,img/obama.jpg +Catherine Hunt,317-43-9430,89960,"10609 Hall Isle +Williamfort, IL 97108-9637",2008-08-10 16:25:53,7a:df:72:b6:d6:bd,dshelton@gmail.com,img/obama.jpg +William Williamson,037-78-0441,47493,"467 Mullins Hills Suite 814 +West Staceyfort, TN 02586",1992-06-05 13:09:01,5d:b3:cc:f4:d7:34,kruegerwilliam@calhoun-parrish.com,img/obama.jpg +Daniel Williams,417-54-0946,69267,"2288 Margaret Plains +Carolfurt, OR 67968",2010-02-12 19:16:21,a3:b2:ad:d3:b1:bc,pjennings@hotmail.com,img/obama.jpg +Stacy Garrett,137-78-6479,22488,"42057 Hunt Ridges +Lake Curtis, ID 53044-2762",2016-08-04 08:06:31,de:65:65:ec:fe:56,fcox@hotmail.com,img/obama.jpg +Karen Gonzales,527-19-3165,30926,"49322 Alicia River +West Julian, OK 31740-5710",1997-05-15 11:50:02,a8:19:6c:7b:3f:fe,torreskimberly@yahoo.com,img/obama.jpg +Raymond Brown,056-73-8896,44865,"83563 Jimenez Spur Suite 392 +Mahoneymouth, RI 62635-4882",1941-04-08 06:08:24,61:a2:53:4b:0b:9b,tracytran@hotmail.com,img/obama.jpg +Katherine Baker,673-27-1709,24099,"61063 Julie Falls +Tracyburgh, AR 81703",1923-10-14 18:33:02,e8:5c:e1:74:f0:af,kathleengomez@yahoo.com,img/obama.jpg +James Davis,342-02-4601,34821,"60333 Wells Underpass Suite 896 +West Christopher, TN 44185",1930-11-08 08:59:49,10:de:5b:16:20:90,campbellmonica@yahoo.com,img/obama.jpg +Corey Hall,725-10-3198,48130,"01572 Jones Gateway +Cooktown, MN 54804",1962-01-24 19:04:15,3a:7f:bf:c7:d0:1c,williamsnancy@yahoo.com,img/obama.jpg +Antonio Lee,387-98-5567,15521,"88164 Roberts Orchard Apt. 629 +Port Tammy, GU 44004-4140",1933-04-20 19:13:02,03:a8:a7:26:6a:70,dsolomon@garner-martin.com,img/obama.jpg +Tammy Lopez,380-26-3881,44398,"37859 Rivera Crossing +Gentryfurt, AS 51831",1947-08-10 16:58:46,21:f9:8c:41:4e:48,joneschristopher@hotmail.com,img/obama.jpg +Anthony Robinson,603-45-3829,30711,"95808 Powers Causeway +Jonesberg, NC 65542",1920-06-29 11:35:46,54:2a:4a:2c:68:0d,james37@nash.biz,img/obama.jpg +Timothy Morgan,068-79-5026,27696,"2415 Edwards Alley Apt. 647 +North Cristinaport, AR 24126",1956-12-01 18:27:18,7e:7b:a3:81:80:b5,thomaslacey@gmail.com,img/obama.jpg +Derrick Payne,456-16-1797,65019,"Unit 0477 Box 9298 +DPO AA 12818-3986",1982-11-15 02:22:08,30:a3:de:0f:a8:9d,isabellasolis@martinez.com,img/obama.jpg +Matthew White,375-13-9512,94129,"84063 Brian Gardens +Amandaton, AL 91519-0747",1926-12-11 12:59:24,20:d1:a6:65:58:19,maciaskathryn@hotmail.com,img/obama.jpg +Christopher Marks,117-84-6029,72085,"7287 Bryant Way +Joelton, SD 32580-9635",1981-11-11 22:28:45,a2:fe:01:36:4b:89,mclaughlinjeanette@hays.net,img/obama.jpg +Alexandra Santana,817-51-8391,88961,"3524 Valdez Park Apt. 634 +Lake Jennifer, MT 11015-4697",1976-01-28 05:48:23,6e:ba:e0:a8:e3:19,snyderjennifer@obrien-vazquez.net,img/obama.jpg +Jackson Osborne,841-29-5021,57164,"040 Gomez Locks +Patriciamouth, PA 14357-3336",1919-01-20 15:26:56,22:4b:c5:f6:3c:8e,mooreshane@shea.com,img/obama.jpg +Dylan Carter,553-30-4703,15184,"94174 Jones Street Suite 273 +West Rebecca, AS 64633-9593",1975-06-24 20:32:44,78:6e:7d:0f:f9:3b,josephhatfield@gmail.com,img/obama.jpg +Amy Rodriguez,030-48-4441,21313,"7798 Henry Field Apt. 785 +New Matthew, NH 63397",1924-06-14 15:44:18,32:99:ac:f3:02:e3,traceywatson@nixon-gilmore.biz,img/obama.jpg +Tanner Phillips,211-90-5069,48397,"050 Alexandra Rest +West Michelleland, GU 52812",1997-04-23 14:28:19,89:aa:7d:30:88:84,ujennings@gmail.com,img/obama.jpg +Donald Henderson,311-42-8222,74886,"529 Annette Cliff +Adamsberg, MA 34775-4937",1923-04-30 15:24:20,e3:16:83:bb:5b:03,vaughanamy@rogers-edwards.org,img/obama.jpg +Calvin Mahoney,062-62-9156,25017,"Unit 7764 Box 9101 +DPO AA 81003",1971-03-22 19:50:00,0a:79:93:49:b2:41,claytontaylor@yahoo.com,img/obama.jpg +Sheri Barker,877-30-1183,50728,"USNV Bailey +FPO AP 63823",1924-08-19 11:53:42,66:af:69:9a:7e:1c,rachelbrock@phillips-gardner.com,img/obama.jpg +Darin Mcdonald,428-66-3610,71218,"3976 Harris Plain +West Daniellemouth, MA 18286",1926-07-21 08:37:53,41:7e:23:2c:ae:b3,lbarnes@yahoo.com,img/obama.jpg +Edward Brown,854-13-7628,01464,"1967 Tony Roads Suite 787 +Port Jeremyborough, ID 00241",1976-06-29 13:48:01,9f:f4:a6:6a:42:0d,zmalone@holmes.com,img/obama.jpg +Stanley Short,121-81-9745,40264,"785 Troy Freeway +North Jamesborough, MI 04548",1981-04-23 06:29:30,59:09:54:e2:d7:e8,bowmananthony@hotmail.com,img/obama.jpg +Stephen Chandler,801-95-6615,67548,"74771 Scott Mount +Port Christopher, IA 82120-8623",1990-10-01 23:24:34,22:64:ea:58:c3:c5,jamiefowler@walker.info,img/obama.jpg +Brittany Johnson,847-19-8831,57212,"305 Tara Way +East Patricia, MD 12094-6577",1960-09-13 03:10:19,f9:85:57:54:5e:6b,rward@yahoo.com,img/obama.jpg +Jessica Burns,214-92-3321,57603,"510 Owens Circles +Port Jeanne, ND 57171",2007-01-13 21:07:52,7b:ca:19:f6:69:ca,feliciahorton@rice.com,img/obama.jpg +Steven Garner,890-87-4859,75352,"65071 Velez Throughway +Pierceborough, ID 45892-4453",1977-01-07 21:23:55,35:64:67:ff:c3:03,vwilson@francis.com,img/obama.jpg +Matthew Jones,899-69-8724,57377,"279 Danny Fall Suite 083 +New Vanessaview, CT 75386-1392",1942-10-22 17:31:50,90:fa:7a:86:1e:07,hartanthony@perkins-jones.com,img/obama.jpg +Thomas Carroll,385-75-3483,60998,"441 Richard Valley Apt. 749 +Amyborough, SD 14452-1806",1975-02-05 16:11:05,27:45:8b:36:83:e0,mrogers@graham-foster.org,img/obama.jpg +Steven Lamb,626-37-2146,80083,"1291 Brown Trail +Port Ryan, WA 67783-2602",1961-04-20 22:27:26,66:e7:6b:86:4a:d2,kimberly65@delacruz.org,img/obama.jpg +Michael Mcdaniel,438-33-7076,38287,"680 George Views Apt. 511 +East Michele, ND 06619",1921-03-05 09:53:33,49:b5:4d:44:9e:12,lindsay05@ford.net,img/obama.jpg +Michelle Carney,010-52-5317,38163,"769 Laura Club +Heatherland, PA 52620",1979-06-22 02:49:19,46:31:80:2c:9f:ae,jeffrey72@yahoo.com,img/obama.jpg +Christina Skinner,709-24-0466,23566,"549 Andrew Road +New Ryan, NY 07548-6707",1960-09-20 15:26:37,71:ed:89:2b:ae:b0,kevinnichols@gmail.com,img/obama.jpg +Allison Reed,252-91-9927,72837,"PSC 2274, Box 6427 +APO AP 73266-2718",1972-10-07 02:49:29,4a:66:13:1a:82:44,riley38@lewis.com,img/obama.jpg +Amanda Williams,503-75-9148,86041,"596 Sutton Centers +Lake Katrina, WY 66942",1985-07-27 18:01:55,7c:db:35:90:82:71,deborahsmith@hotmail.com,img/obama.jpg +Cassandra Castillo,611-97-1768,04968,"0389 Jennifer Club Apt. 389 +East Michaelhaven, GA 43334-9770",1973-01-01 22:27:49,6d:fb:37:ef:d7:f7,johnnyhuang@moore-brewer.com,img/obama.jpg +Zachary Allen,824-77-1725,66416,"8061 Smith Drives Suite 990 +Port Andrew, FM 07872",1949-02-09 06:48:10,f9:66:fc:94:6e:05,bradleytravis@yahoo.com,img/obama.jpg +Dr. Beth Hernandez,527-03-9770,36750,"24724 Leslie Manor Suite 508 +Gonzalezside, PW 22045-2940",1939-10-28 23:47:01,1e:79:77:9d:51:1c,stephensjamie@gmail.com,img/obama.jpg +Tyler Mclaughlin,166-53-8930,10023,"640 West Square Apt. 316 +Daviston, DE 05821",1999-11-03 01:30:42,64:7b:fa:7a:d9:6a,susan65@zamora.com,img/obama.jpg +Kelly Lutz,178-75-2348,24958,"92610 Lewis Hill +Wangbury, DC 15136-0441",1951-09-16 23:50:32,2d:96:7f:d6:e5:c1,estradaanthony@hotmail.com,img/obama.jpg +Christina Gamble,005-57-6183,07401,"658 Walker Hills +New Jessica, GU 65607-8277",1941-05-04 02:31:14,70:00:64:fe:9d:a1,janetwatson@li-miller.info,img/obama.jpg +Jennifer Johnson DVM,250-11-6121,36760,"193 Horn View Suite 534 +Allisonmouth, MH 97377-6966",2004-01-04 23:52:29,21:e3:3f:b6:ec:b9,johnsonphilip@gmail.com,img/obama.jpg +Ricky James,864-19-4065,82916,"86520 William Islands Suite 309 +Duketown, NJ 75405-9478",1926-01-24 11:55:21,b9:a4:f1:a9:da:99,coxjennifer@davis.org,img/obama.jpg +Matthew Lee,688-40-0183,89194,"1632 Laura Ville +Clarkton, MA 70446-0107",1935-09-24 10:29:22,47:ca:59:e5:f9:40,isaac34@yahoo.com,img/obama.jpg +Ann Palmer,562-75-0085,58807,"2326 Martinez Divide +Danielstad, VT 08919-1941",2009-07-07 04:11:51,c8:6d:08:fe:86:9b,xjohnson@gmail.com,img/obama.jpg +Samantha Lopez,034-50-8015,88392,"6379 Chandler Place +West Dawn, MH 59465-1417",1999-11-02 10:40:02,bf:66:71:4f:32:68,janicebeltran@yahoo.com,img/obama.jpg +Cassandra Tucker,383-65-0237,77192,"519 Adam Islands +Richardshire, VI 87818-9162",2010-09-23 18:09:32,1f:1e:5f:d2:9d:09,lshannon@bernard.info,img/obama.jpg +Michael Gregory,650-35-9906,81985,"USCGC Smith +FPO AE 84337-9302",1976-04-07 07:02:38,50:af:e5:c1:82:12,jgeorge@yahoo.com,img/obama.jpg +Angel Johnson,230-02-6439,49891,"083 Lopez Trail +Jessicabury, MI 05814",1935-09-05 16:05:18,e3:a5:0d:dd:eb:78,dennis33@mcclure.com,img/obama.jpg +Angela Russell,316-26-9986,75533,"807 Betty Row +Walterburgh, TN 13628-0893",1940-08-19 02:01:10,6c:38:0b:db:0d:46,becky22@gmail.com,img/obama.jpg +Vickie Peterson,672-98-8872,41070,"065 Ronald Knolls +Amytown, KY 61878-9566",1982-06-11 12:13:01,72:c9:3f:9f:c6:4b,torressusan@yahoo.com,img/obama.jpg +Vicki Rhodes,737-37-3547,85765,"2718 Smith Springs Suite 739 +Brentbury, FL 85919-5565",1937-04-13 09:27:46,65:2f:3e:1b:4d:24,ybell@martin-morgan.biz,img/obama.jpg +Brenda Grant,353-34-1551,97287,"3328 Brandon Valleys +Donnamouth, SD 95975",1954-05-10 20:33:38,22:46:7b:0b:5f:93,kathleenrodriguez@gmail.com,img/obama.jpg +Aaron Reyes,563-72-8089,70915,"40432 Evans Drive Suite 889 +Hoffmanberg, SD 28746",2015-09-14 08:22:45,36:f6:cd:bd:5f:10,kaylarobinson@jones.com,img/obama.jpg +Krista Morris,411-24-3205,80157,"910 Megan Shores Suite 499 +Port Erin, AL 24616",2001-08-12 12:04:19,f9:80:77:c9:1d:4d,haynesshelby@hatfield.com,img/obama.jpg +Kenneth Page,715-54-2013,15483,"0342 Joseph Light +Adamhaven, CA 73510-7387",2008-10-24 02:49:37,1c:bb:bb:8d:bb:c4,danielrussell@hotmail.com,img/obama.jpg +Jessica Daniels,869-90-2176,31409,"61346 Krista Walk +Nguyenshire, FL 66617",2013-02-20 03:54:21,0d:22:e9:6c:87:7f,tylerdunn@yahoo.com,img/obama.jpg +Kim Williams,402-69-5478,35077,"290 Blackburn Parkways Apt. 394 +Cranemouth, NH 03652-1209",1957-09-05 05:12:18,66:10:33:8b:be:1b,wnguyen@gmail.com,img/obama.jpg +Sarah Lopez,423-43-0856,27573,"5063 Ryan Radial Apt. 868 +Angelastad, CO 28792",1934-07-18 09:50:52,9a:eb:1f:f3:86:48,sbaker@thomas-thompson.com,img/obama.jpg +Gregory Wilson,344-42-8322,12938,"665 Jonathan Island +South Cynthia, DC 19906",1925-12-14 09:27:03,0e:8a:e1:65:be:f1,blakebreanna@brown.com,img/obama.jpg +James Porter,789-59-6439,13670,"08637 Collins Walks Suite 739 +Lake Roberto, MN 67891",1993-10-30 16:12:22,1d:ca:22:11:67:21,jason11@hotmail.com,img/obama.jpg +Ashley Coleman,273-20-2364,58399,"9448 Kristin Forks +Patrickmouth, PW 79013",1927-04-12 12:53:59,bf:28:3d:2e:60:c9,wgaines@hotmail.com,img/obama.jpg +Juan Hicks,435-43-9571,47286,"7901 Rebecca Field Apt. 356 +Sarahmouth, IL 78522",1966-10-06 15:37:04,9b:6f:a2:eb:54:9f,maddoxjane@hotmail.com,img/obama.jpg +Devin Newman,202-08-3864,55343,"4275 Hodges Spurs Apt. 811 +Tonyaview, NJ 71134",2013-12-30 12:44:33,3a:a6:bf:2a:68:79,stephenschristopher@banks.com,img/obama.jpg +Felicia Yang,667-71-8088,55823,"68366 Barrera Wells +Jessefurt, DC 14218",2015-10-22 21:07:26,25:3f:b0:fb:e6:41,websterdanielle@hotmail.com,img/obama.jpg +Matthew Johnson,105-33-1958,02482,"63330 Myers Mission +Hallbury, PR 48877",1963-07-28 09:51:18,40:46:b8:8c:94:06,bferguson@brown.net,img/obama.jpg +Paul Tran,602-68-4195,71500,"8009 Martinez Fort +East Sarahfurt, MI 90623-9686",1998-06-27 17:02:13,46:ce:09:48:79:0f,lsalazar@yahoo.com,img/obama.jpg +Eileen Wilkinson,299-70-5602,48351,"94735 Hannah Junctions +East Laura, WY 15913-4216",1929-05-25 15:30:14,6e:5d:39:ca:ba:22,sandra77@robinson-davis.com,img/obama.jpg +Andrea Reyes,518-98-4356,80862,"753 Brian Island Suite 358 +Port Timothy, IN 36484-3324",1978-01-02 02:53:44,f2:1a:37:b3:92:60,cheryl39@gmail.com,img/obama.jpg +Nicholas Martinez,368-83-3755,77995,"72854 Diaz Motorway Apt. 046 +Douglasborough, MH 50142-0350",1972-09-26 05:21:04,fb:06:e8:41:21:86,cummingsadam@jackson.com,img/obama.jpg +Robert Curry,510-06-2482,25739,"84843 Derrick Island Suite 201 +North Thomas, ND 36766",1951-02-01 16:04:25,05:1b:57:c3:22:cc,curtis07@taylor-johnson.com,img/obama.jpg +Charles Collins MD,078-37-0328,30800,"34747 Brianna Ranch +East Brenda, CO 71615-1164",2009-10-12 10:05:07,6c:95:39:d8:a2:8d,kathleenallen@esparza-morales.com,img/obama.jpg +Mr. Anthony Ortiz,195-09-2050,36284,"62141 Terry Rest +Leonardbury, MP 02929",1950-10-31 15:46:33,12:90:53:0a:cc:b3,rfowler@bowman-martin.com,img/obama.jpg +Ashley Smith,510-64-8480,99468,"85508 Craig Burg +South Sherri, NY 14979-5403",1945-08-18 03:02:28,5c:81:30:e1:df:64,stevenwilson@sanchez-aguilar.net,img/obama.jpg +Scott Valenzuela,708-57-8180,27277,"671 Brenda Viaduct +Lake Kristinamouth, CT 07701",1989-03-23 15:25:50,95:c3:b8:68:df:88,bbrown@nguyen.com,img/obama.jpg +Jonathan Mcdaniel,507-43-8344,53049,"27198 Rachel Squares Apt. 090 +Johnsonville, FL 16149-7977",1923-01-03 17:40:26,a9:f2:97:24:07:df,lmorris@hotmail.com,img/obama.jpg +Gail Greene,186-59-3119,99795,"6251 Lewis Spring +New Maria, OK 04594",1972-04-07 21:50:18,ec:4b:69:da:11:a2,smithsamantha@hotmail.com,img/obama.jpg +Brianna Aguilar DDS,186-25-7732,49234,"9723 Lisa Views +Kellystad, IL 30761-3318",1989-08-18 14:42:35,b0:44:06:f8:45:a5,melissa81@yahoo.com,img/obama.jpg +Bradley Norris,821-78-2570,61909,"5720 Richard Curve +Dennisberg, MD 38834-2950",1934-09-14 20:46:17,f8:9e:64:9a:d7:0b,sarellano@hotmail.com,img/obama.jpg +Miguel Morris,192-36-2270,69065,"53200 Forbes Center +Amandamouth, AR 70375-7459",2010-11-04 07:27:31,b3:b3:a6:83:d7:24,scottkaren@hotmail.com,img/obama.jpg +Ana Kramer,049-65-5709,41063,"3796 Natalie Way +Christopherstad, MA 27994",1999-01-03 21:11:50,bf:50:00:65:68:83,daniel94@yahoo.com,img/obama.jpg +Samantha Bond,520-50-4563,08591,"PSC 7126, Box 0663 +APO AP 72258-3873",1969-06-18 21:45:30,08:dc:d9:6d:24:ae,diane93@hotmail.com,img/obama.jpg +Diana Vaughn,046-42-0561,18977,"807 Hayes Alley +New Cherylborough, MA 79128-5385",1927-11-18 18:00:35,a3:6b:d5:1d:9c:9c,thompsontaylor@yahoo.com,img/obama.jpg +James Rose,499-43-9684,71879,"80418 Davis Street Suite 523 +Bakerview, IN 70494",1930-07-17 17:49:56,79:c5:7a:8b:70:76,jsmith@ayala.info,img/obama.jpg +Michael Luna,365-12-9933,04881,"394 Hernandez Estate +Wilsonchester, GA 67810",1934-11-06 16:11:56,18:65:33:a4:e8:88,donaldwalker@yahoo.com,img/obama.jpg +Alexandra Clark,627-62-2739,40931,"0664 Dawn Forest Suite 999 +Brendafurt, MI 36838-8256",1950-10-24 17:27:28,c4:88:c4:60:3a:0f,amberfrey@bowers.com,img/obama.jpg +Tiffany Evans,271-13-4368,30368,"800 Christensen Isle Suite 167 +North Hannah, OR 01238-9756",1926-12-16 06:51:58,b3:7f:17:32:e2:53,juan86@gmail.com,img/obama.jpg +Heather Fleming,616-17-2283,87285,"8442 Shepherd Vista +West Derek, DE 45726-9223",1975-12-09 18:10:54,0e:3e:8d:71:6b:5b,cynthia76@hotmail.com,img/obama.jpg +Fred Jones,600-15-2665,42195,"40737 Johnson Plains +Lopezton, MA 12638",2000-03-01 18:30:59,5b:f2:40:b6:49:88,jorgelee@gmail.com,img/obama.jpg +Matthew Harris,387-48-1609,17820,"25305 Joseph Passage Suite 462 +North Jessicaport, VI 04386",1932-09-01 00:27:46,d7:e7:99:15:2a:74,smithgary@chapman.biz,img/obama.jpg +Raymond Rodriguez,049-39-7301,79877,"7966 Conley Corner +New Kellyton, GA 20893",1962-09-02 15:52:34,2e:d0:e7:3e:dd:b2,bradley02@patterson.com,img/obama.jpg +Brittany Fuentes,199-09-0144,62978,"Unit 0555 Box 2083 +DPO AP 09530-4131",1961-07-10 18:00:39,21:b1:57:14:75:2d,bennettandre@hotmail.com,img/obama.jpg +Ryan Decker,017-08-6999,04022,"62853 Ritter Tunnel +Port Wyattview, TX 92997-2108",1961-10-26 20:28:23,30:6b:8f:7a:bb:2c,donnabutler@hotmail.com,img/obama.jpg +Kathleen Perry,775-64-1301,60606,"38838 Brown Passage Suite 532 +Hillchester, WA 38628",1947-05-24 00:09:37,d8:5a:f8:eb:d4:98,jamesturner@yahoo.com,img/obama.jpg +Miguel Hines,452-55-3134,97193,"72787 Hill Lodge +Butlershire, SD 88330-1437",1935-01-10 17:52:10,b6:d9:5c:01:e6:d8,higginsmadison@green.com,img/obama.jpg +Nicole Calderon,036-23-4799,87507,"20354 Cherry Mount +Mcdanielview, NY 58354",1947-12-11 17:24:51,8c:7a:91:55:97:8c,jeremybaker@yahoo.com,img/obama.jpg +Ian Manning,232-53-0754,77762,"5938 Alvarez Forge Apt. 163 +Laurabury, NE 85568-6408",1919-05-05 12:42:09,62:34:55:71:c1:93,katherine85@gmail.com,img/obama.jpg +Lisa Murphy,664-29-6003,54247,"815 Coleman Spring +Robertmouth, OK 26506-0685",1980-09-21 07:45:31,55:90:6c:f1:ae:a7,rhorn@goodman-wu.net,img/obama.jpg +Katelyn Diaz,340-79-9437,01104,"4010 Patricia Crossing +Jamestown, MO 74273-1364",1948-05-18 16:57:01,32:33:f3:6a:3c:de,thomascameron@nolan.com,img/obama.jpg +Daniel Kim,335-25-6982,79658,"6101 Jared Manors +Josephland, RI 11582",1957-01-31 15:06:58,16:7f:ec:47:f5:81,tonyajohnson@gmail.com,img/obama.jpg +Tracy Bowers,500-41-6686,24265,"0323 Cantu Harbor Suite 783 +South Angela, MN 02512",1964-06-15 14:16:32,0a:6f:6c:bb:a1:bb,myersvalerie@hotmail.com,img/obama.jpg +Douglas Martin,386-52-9963,55289,"5788 Shawn Dale Apt. 553 +Lindsayshire, FL 75491-3382",2001-09-25 00:41:03,ae:ff:0e:82:8d:a4,jesus17@gordon.biz,img/obama.jpg +Bobby Martinez,038-95-7408,90558,"5367 Shawn Road Apt. 258 +Jeffersonside, MH 03387-8889",1936-11-07 00:27:19,20:11:b0:8a:84:e0,schneiderjason@norton.biz,img/obama.jpg +Joan King,853-53-3714,88642,"69700 Anthony Divide +Kyleton, IL 08051",1994-05-12 18:23:45,a0:46:b3:a4:9c:05,ylevy@gmail.com,img/obama.jpg +Jose Harper,371-01-3097,99167,"9391 Deborah Drive Apt. 765 +Port Philip, CO 32953-8663",2012-06-30 12:27:37,ed:fe:95:88:63:83,charlesthompson@martin.com,img/obama.jpg +Stephen Santos,806-05-3651,59586,"3703 Catherine Inlet +Bradystad, NV 02737",1970-06-25 04:48:25,a0:54:08:04:45:51,paulagilmore@yahoo.com,img/obama.jpg +Philip Copeland,878-85-2401,75693,"160 Erickson Fort +Brucetown, CO 11951",1951-06-19 19:39:21,95:f2:73:41:4b:84,martin63@hoffman.net,img/obama.jpg +Rodney Gonzales,054-84-3735,55735,"98708 Miller Lakes +Morrisberg, ND 98467",1936-03-26 13:53:45,db:7d:cf:f2:2e:82,mercedesspencer@hotmail.com,img/obama.jpg +Jason Bradford,245-31-4968,21275,"212 Dana Points +North Jenniferchester, CA 66808",1962-11-04 13:52:47,18:50:b4:fe:6d:3c,riggsjennifer@parker-ballard.com,img/obama.jpg +Dr. Jacqueline Brewer,489-04-3589,62643,"4361 Jordan Crossroad +East Michelle, FL 17814-6511",1935-09-01 17:46:25,70:7b:6f:d2:cd:25,shelleybowers@hotmail.com,img/obama.jpg +Blake Murray,727-66-0880,20627,"713 Morris Garden Apt. 062 +New Jacob, TX 25689-2897",1935-09-25 19:39:54,eb:75:a0:8b:82:63,eatonpaul@gmail.com,img/obama.jpg +Mark Hill,739-72-2435,02332,"88073 Lloyd Dale Suite 507 +Smithport, PA 24904-1347",1951-10-16 11:02:41,c5:87:58:a8:9a:6d,johnshort@mcneil.org,img/obama.jpg +Brad Hernandez,051-36-1808,52432,"09898 Jones Views +Cookberg, MD 70887-8957",1988-03-29 22:33:50,4e:e6:b3:57:cb:d6,icardenas@smith.org,img/obama.jpg +Calvin Torres,288-05-0877,72228,"5732 Lauren Mountain +East Cynthiahaven, ID 15476-8400",1921-01-27 00:26:53,eb:28:17:da:d2:44,james60@gmail.com,img/obama.jpg +Sara English,844-72-1672,11301,"994 Taylor Corners +Richardsonfurt, SD 47456-1899",2002-12-31 00:07:37,4b:03:52:c4:0e:47,vmitchell@hotmail.com,img/obama.jpg +William Cain,117-85-9118,20403,"88919 Carlson Springs Suite 706 +New Karenfort, MI 15760-1324",1942-06-26 03:21:05,b3:11:0b:df:0b:38,howardbrian@hotmail.com,img/obama.jpg +Christina Valencia,554-31-3577,13646,"419 Allison Streets +Port Johnhaven, CT 51569",1984-04-18 10:58:39,f7:25:d7:88:9a:37,crosbytheresa@hotmail.com,img/obama.jpg +Joanna Strickland,147-16-9195,96714,"8209 Stephanie Track Apt. 551 +New Jeffrey, PR 92409-2107",2015-06-21 11:27:13,fd:c8:80:15:36:5b,bassjason@gmail.com,img/obama.jpg +Jason Alvarado,728-06-5436,01067,"741 Carlos Manor +North Dana, NE 15745-0871",1999-04-14 17:06:41,7e:f0:4d:5c:31:9b,oliverkathleen@romero.com,img/obama.jpg +Stephanie Conner,558-25-1973,66373,"0423 Shelly Well +West Harry, NC 76255",1984-11-21 01:26:43,46:cf:b7:9b:f7:0b,wendyclark@yahoo.com,img/obama.jpg +Jamie Wilson,758-04-8707,78856,"7413 Patricia Drive +Ruthshire, WY 20877-7752",1963-11-27 18:44:50,a0:1c:10:0e:fa:49,ldonaldson@hernandez.com,img/obama.jpg +Isaac Beck,132-82-0673,09968,"3407 Wendy Via Suite 293 +Daviesmouth, IN 80814",1962-08-22 18:45:23,df:f1:de:e6:ee:62,jonesglenn@wall.com,img/obama.jpg +Nicole Adams,325-50-7390,13861,"636 Megan Walk Suite 799 +Jasonberg, ID 00429-5639",2010-07-25 12:02:02,86:21:34:02:39:c0,christina71@munoz.info,img/obama.jpg +Luis Gibson,711-19-6461,24215,"422 James Square Suite 954 +Port Rhonda, PR 94677",1985-06-19 00:15:25,45:2a:94:0e:a6:a2,garciachristina@rodriguez.org,img/obama.jpg +Eric Myers MD,239-88-6266,35747,"9277 Sherry Green Apt. 962 +South David, ND 42981-5011",1985-02-09 12:38:18,be:69:34:8b:a0:54,pittmanmeghan@gmail.com,img/obama.jpg +Anthony Key,564-78-8096,62844,"Unit 8133 Box 9726 +DPO AP 97688",1954-04-16 11:31:05,22:68:f9:f9:d1:43,zachary14@gmail.com,img/obama.jpg +Patrick Ochoa,808-29-7050,13157,"876 Laura Key Suite 999 +Port Phyllis, SC 73950-8017",1926-05-24 12:39:24,dd:07:06:a9:d9:e5,xduarte@fox.com,img/obama.jpg +Christina Brown,502-33-0126,03116,"427 Bryant Rapids +Port Nicolemouth, DE 37775-4954",1967-12-20 22:11:05,74:bd:05:33:6c:2d,bnielsen@hotmail.com,img/obama.jpg +Amber Lewis,639-74-0665,75086,"8888 Jade Port Apt. 356 +Jacobbury, MA 32823",1979-05-23 20:42:03,44:7d:5f:50:27:fa,gina19@gmail.com,img/obama.jpg +Adam Cardenas,192-76-3213,38058,"Unit 3269 Box 2272 +DPO AE 48357-6697",1933-06-29 07:01:39,9f:35:7a:3e:b4:0e,xross@espinoza.biz,img/obama.jpg +Michael Anderson,549-44-7901,98402,"031 Rich Meadows +Port Jaclynburgh, NC 39019",1932-03-19 00:47:05,5e:40:87:b1:6f:ff,elizabeth85@gmail.com,img/obama.jpg +Samantha Leonard,015-22-6761,55932,"048 Jones Glen Apt. 432 +Port Heather, KS 52768-9218",1993-10-05 17:57:11,5e:61:ef:85:95:69,keith43@wilson.com,img/obama.jpg +Vanessa Walker,269-64-1668,34111,"PSC 6282, Box 2664 +APO AA 56488-2485",1926-10-12 14:36:39,33:f4:a1:d0:b0:5d,dclark@gmail.com,img/obama.jpg +Gregory Weber,267-73-1837,39763,"153 David Landing Suite 919 +Foxborough, VT 27356-6881",1985-04-05 00:33:03,c7:4d:8a:0d:07:b7,nsantana@romero.net,img/obama.jpg +Reginald Hays,669-18-7586,15297,"3864 Raymond Corners +Irwinstad, ID 37479-9712",2014-01-01 07:11:53,3f:d1:38:35:5a:d7,david63@gmail.com,img/obama.jpg +Hayley Rice,203-77-9635,57990,"048 James Neck +New Tonyberg, NH 70461",1976-10-16 17:17:12,b5:73:3b:ac:3a:ea,whitekelly@hotmail.com,img/obama.jpg +Katie Rogers,293-39-3458,25277,"26725 Hess Forge +Terrellmouth, CT 58759",1995-07-17 03:42:10,68:9c:46:a4:af:2e,jaderobertson@drake.org,img/obama.jpg +Bryan Douglas,367-75-0499,73025,"8834 Nguyen Tunnel Apt. 840 +North Jason, UT 60127",2009-09-27 14:01:20,cf:94:ca:dc:a7:6d,timothyblake@heath-newton.com,img/obama.jpg +Anthony Byrd,782-95-8371,51701,"Unit 4933 Box 2638 +DPO AA 61958",1944-06-02 05:19:42,ad:e3:4f:a2:88:72,richard92@hotmail.com,img/obama.jpg +John Hill,741-01-8226,94088,"USNS Sloan +FPO AP 38005",1939-03-16 23:58:24,fe:9c:07:a5:6c:bd,michaeljenkins@gmail.com,img/obama.jpg +Melissa Rodriguez,598-43-1621,12522,"USNV Williams +FPO AE 42801-8079",1952-06-02 05:31:23,ce:9b:0f:fb:52:b2,anna42@ayala.com,img/obama.jpg +Elizabeth Lee,839-85-7810,29823,"486 Jennifer Mountain +New Samantha, MI 00275-7917",1988-06-29 11:47:50,22:53:78:a8:f9:ad,lauramason@baker.com,img/obama.jpg +Lisa Walters,170-60-2786,45556,"6570 Maria Track Suite 497 +Hollyside, AL 22360",1991-04-08 03:57:24,39:d4:d3:5e:8f:a5,chughes@yahoo.com,img/obama.jpg +Tanya Williams,896-20-6540,30193,"933 Clark Island +East Jessica, VA 50733",1932-08-31 12:59:17,52:54:ed:a6:8d:90,blairmary@petersen.com,img/obama.jpg +Clinton Turner,202-16-8314,64543,"727 Jason Common +Matthewside, VI 50026-4097",1942-01-23 10:46:21,b0:64:6c:3e:4a:5a,clineryan@gmail.com,img/obama.jpg +Jessica Fritz,054-32-6056,63766,"6940 Payne Motorway +Lake Carolyntown, OH 02813",1928-08-23 05:21:03,65:b6:fe:d6:4d:ae,johnsanchez@gmail.com,img/obama.jpg +Juan Rocha,307-19-2285,36002,"11978 Alex Unions +Cabreraberg, IN 04733",1990-10-06 22:45:13,3c:4c:b9:b0:c6:3f,jacksonaaron@gmail.com,img/obama.jpg +Phillip Jackson,143-34-3144,18050,"850 Patel Estate +New Richard, IL 40108-7637",1994-03-10 11:07:29,a6:63:80:87:4c:76,hcastaneda@gmail.com,img/obama.jpg +Zachary Mueller,553-38-6248,40902,"5606 Eric Flat Suite 078 +Blackwellshire, VT 48672-2349",2004-12-03 22:33:42,94:81:12:d1:d9:97,gregory15@melton-cook.com,img/obama.jpg +William Key,859-36-3916,71870,"444 Morse Court +North Margaret, PR 19768-0231",1917-12-19 03:11:39,be:b5:c4:1e:2b:07,christinahill@daniels.com,img/obama.jpg +Christopher Davis,747-04-9231,55471,"4882 Mcclain Dale Suite 442 +Sarafurt, CT 34670",2012-12-16 13:59:22,9a:71:6a:29:b8:59,mhall@schultz.com,img/obama.jpg +Mr. Jonathan Cooper,150-26-5114,53729,"769 Rogers Path Apt. 894 +Hernandezside, VA 07011",1944-10-24 07:53:56,6f:85:62:4d:43:c2,elliottlisa@hicks.biz,img/obama.jpg +Kylie Perry,228-45-4849,10038,"190 Nicholas Port Suite 156 +East Gary, GA 65414-0426",1926-06-21 22:47:50,25:c2:f6:bc:f0:f7,rebeccarice@morton.org,img/obama.jpg +Joseph Wilson,539-60-8124,94102,"0020 Newton Corner +Kimberlyshire, AZ 95980-8602",2014-06-28 20:01:29,c6:89:ce:83:18:99,albert10@thomas.com,img/obama.jpg +Stephen Williams,865-24-5537,97911,"17052 William Course +Riceshire, CA 88481",1985-01-10 17:54:37,14:cf:e5:0e:d3:1c,zsmith@yahoo.com,img/obama.jpg +Joseph Williamson,830-38-8931,21230,"615 Phillips Dale +Lake Alison, VA 71200",1931-09-25 00:47:34,70:d3:78:fd:20:5e,coffeyjohn@fuller.info,img/obama.jpg +Tonya George,120-93-7005,59835,"57918 Lori Isle Apt. 944 +Lake Tiffany, FL 44508",2003-02-19 06:02:23,dd:68:a4:ce:40:01,austinbauer@hotmail.com,img/obama.jpg +Kayla Curtis,557-73-9564,68024,"061 Miles Lights Suite 379 +South Shanemouth, IN 42475-7576",1964-09-14 20:23:19,c1:38:6e:af:12:a7,brittany83@wall.com,img/obama.jpg +Timothy Williams,881-01-0670,36892,"18883 Casey Pike +New Marcusburgh, VI 26190-1571",1999-07-29 23:53:55,d6:72:2d:75:e4:7f,moodyantonio@williams.com,img/obama.jpg +Stephanie Williams,311-12-4163,01150,"373 Debra Passage Suite 648 +Hollandbury, MS 30032",1954-07-28 06:46:19,06:c1:d6:55:e6:32,emunoz@yahoo.com,img/obama.jpg +Michael Mccall,250-83-2471,45338,"294 Curtis Freeway +North Jameston, CA 66231",1924-05-24 01:58:04,cb:b4:6c:94:8a:ae,amanda59@gmail.com,img/obama.jpg +Frank Lawrence,184-90-1813,35251,"99247 Jessica Hills +Lake Jesse, PR 73571",1933-10-01 12:27:21,f1:9d:25:db:62:f3,buchananelizabeth@wilson.com,img/obama.jpg +Jacob Smith,078-65-5521,41213,"205 Moore Circles +Burnettville, AS 58203",1995-09-11 13:58:30,f6:ac:69:7c:d0:95,sbradshaw@gmail.com,img/obama.jpg +Jill Davis,074-93-4393,34976,"556 Miller Avenue +Elizabethmouth, MD 70568-6729",1995-12-14 16:25:10,b5:ab:41:8e:c7:65,mahoneynatalie@hotmail.com,img/obama.jpg +Erica Lopez,280-17-0340,56475,"52315 Jacqueline Greens Suite 007 +North Lisamouth, WY 30840-1556",1918-02-10 21:23:17,57:fc:2d:e2:f5:7e,amberrhodes@yahoo.com,img/obama.jpg +Kristi Mcdonald,097-51-0577,86084,"573 Cody Corner Suite 943 +New Brittany, MD 17547-8466",1957-06-25 21:46:18,24:96:10:63:97:fc,ramirezpeggy@smith-brown.org,img/obama.jpg +Heather Merritt,394-30-0245,54963,"6524 Sabrina Isle +Virginiaside, KY 07662",1989-07-07 19:15:33,0d:24:15:c8:5d:2a,brownjohn@hotmail.com,img/obama.jpg +Melanie Thomas,354-07-3561,87018,"USS Patrick +FPO AA 66772-4204",1994-03-18 20:27:16,be:82:2a:4a:4e:3e,moranadam@johnson.com,img/obama.jpg +Hayley Gray,467-63-1712,90822,"103 Sara Spur +Thomaschester, IN 34177",1935-08-12 15:35:50,ec:72:48:ba:b6:99,adamgates@richardson.com,img/obama.jpg +Kevin Allen,178-44-7506,60940,"PSC 4219, Box 5341 +APO AA 03794-3446",1970-01-05 21:27:31,a9:b9:d3:d0:c2:e9,dbell@butler.com,img/obama.jpg +Elizabeth Brown,216-55-7116,90534,"7805 Butler Highway +Webbmouth, MS 55694-1886",1945-05-01 15:06:30,a2:d2:16:a1:9b:86,hansonwilliam@gmail.com,img/obama.jpg +Steven Ramirez,471-36-2233,84730,"5084 Gross Rapid +Barnesmouth, NV 14866-0177",2011-04-11 23:11:12,35:5b:20:6c:79:5f,yhunter@baldwin.com,img/obama.jpg +Christine Mason,023-42-7597,53411,"874 Glenn Islands +Maloneberg, MH 42559-6439",2008-09-11 16:24:25,c0:0f:28:a2:f5:b3,tbaker@yahoo.com,img/obama.jpg +Jordan Wilson,010-89-4511,63716,"68951 Matthew Trail Apt. 493 +Lake Samantha, TX 19540-9703",1965-01-08 03:31:30,bb:6c:cc:bd:7f:0c,wendypace@hotmail.com,img/obama.jpg +Rachel Mejia MD,012-66-6855,70296,"25850 Michael Valley +Lake Moniqueville, WY 46450",1952-06-03 07:58:34,2e:82:24:24:80:87,roberthenderson@yahoo.com,img/obama.jpg +Patrick Copeland,507-82-0734,53258,"404 Clinton Lock Apt. 416 +New Donaldberg, LA 76656",1982-09-26 07:35:11,60:8a:ff:89:71:6c,brittanyyoung@hudson-thompson.com,img/obama.jpg +Daniel Carter,770-84-6842,88913,"440 Mueller Square Apt. 199 +West David, WV 06406",2006-08-27 22:52:57,23:f3:89:9b:20:43,deanna94@gmail.com,img/obama.jpg +Scott King,199-80-5087,51611,"00695 Thomas Parkways Apt. 184 +Davidport, GU 07233-1865",1936-07-24 02:29:58,31:23:ea:01:e2:72,gonzalesrussell@wells.com,img/obama.jpg +Steven Garcia,186-32-5818,48852,"858 Fuller Squares Apt. 381 +West Krista, VT 40397-1731",2012-09-13 09:50:48,99:c3:b7:7c:20:2b,ypayne@yahoo.com,img/obama.jpg +Ann Rowe,729-68-3371,98020,"PSC 1933, Box 3927 +APO AA 99718",1963-10-03 14:53:35,63:6d:a9:85:06:a9,rileymary@hotmail.com,img/obama.jpg +John Reeves,134-90-1178,34724,"Unit 8073 Box 5752 +DPO AA 07212",1962-09-06 18:24:31,01:11:88:0f:f1:16,pattysanchez@nelson-castro.com,img/obama.jpg +Christopher Rivera,507-61-7596,74442,"15780 Chen Inlet +Hallton, ID 16907",1929-12-16 05:06:22,5b:e4:b1:f0:a2:e5,hobbslinda@hotmail.com,img/obama.jpg +James Rogers,350-12-7195,62524,"457 Julie Plaza +Port Ernest, MA 88632",2012-09-12 11:46:18,f8:78:5b:f8:93:07,jonesmitchell@hotmail.com,img/obama.jpg +Darin Gray MD,338-36-1446,48404,"55820 Copeland Union +Sheilaville, OH 00763",2000-08-25 09:41:31,d5:d8:4d:60:b1:06,smithmonique@hotmail.com,img/obama.jpg +Alison Sandoval,842-12-6783,19243,"55914 Robinson Corners Apt. 034 +Tylerburgh, NY 92673",1994-12-09 08:14:02,7d:f2:c3:07:cb:0c,roy91@zamora-allen.info,img/obama.jpg +Bailey Anderson,888-70-8428,29885,"211 Heather Mountain Apt. 340 +South Matthew, DE 30633",1956-03-08 14:32:01,12:cf:e7:d0:4a:6b,benjaminchapman@yahoo.com,img/obama.jpg +Shawn Miller,347-65-1002,42383,"Unit 5187 Box 9475 +DPO AP 39053",1977-05-15 13:14:07,63:e4:00:0f:b8:91,englishphilip@gmail.com,img/obama.jpg +Amber Foster,391-14-5488,46730,"69041 Karen Highway Apt. 309 +Fisherberg, OK 24698-9340",1974-10-13 07:10:30,f9:69:29:bc:de:21,lnovak@rogers.com,img/obama.jpg +Bradley Conley,618-14-2839,32210,"2663 Karla Turnpike Suite 847 +Reynoldsfort, AK 42980-7338",1929-10-20 11:48:25,01:51:68:45:45:38,amandamcdaniel@hogan.biz,img/obama.jpg +Anna Rodriguez,605-56-5357,03713,"32463 James Ridges Apt. 458 +Anthonyview, NJ 99326-5701",1996-09-04 22:51:58,89:09:40:87:80:9b,bryanweber@gmail.com,img/obama.jpg +Ms. Jamie Fisher MD,055-28-9677,50297,"065 Jacobson Ferry Suite 813 +Alexandraborough, ME 18427-1809",1971-01-10 17:20:55,66:3c:89:f8:59:e1,melinda53@gmail.com,img/obama.jpg +Miss Heather Cox,859-05-3891,82541,"62320 Sanchez Falls Apt. 951 +Brownstad, CO 83938-7791",1961-05-27 18:30:36,e5:f1:4e:6d:74:f6,timothy08@ramos-figueroa.info,img/obama.jpg +Mitchell Maldonado,095-38-5946,60005,"PSC 5112, Box 6435 +APO AA 01080",1936-03-14 18:36:35,ce:90:a1:d6:14:72,boyercody@yahoo.com,img/obama.jpg +Donald Rowe,397-84-8189,98520,"910 Rivera Radial Apt. 451 +South Joyce, ND 29231",1920-05-19 04:03:29,71:27:af:1a:5a:b6,alyssa19@bonilla.com,img/obama.jpg +Pamela Frazier,094-74-6770,04682,"3693 Juan Spur +East Rebekahfurt, HI 09927-5458",1967-10-28 06:57:13,ca:95:88:3a:3c:43,kkaufman@swanson.org,img/obama.jpg +Carl Moore MD,349-03-9133,91073,"467 Mosley Club Suite 084 +Millerview, SD 22789-8922",1974-01-29 14:29:40,e7:75:dd:e2:e0:54,jessica38@hotmail.com,img/obama.jpg +Sarah Steele,433-29-9118,11755,"341 Andrew Radial Suite 292 +New Jessica, MO 71416",1917-06-27 04:57:03,34:fa:27:59:17:f8,john02@jensen.com,img/obama.jpg +Manuel Howard,443-73-0546,01462,"9728 Perez Courts Suite 460 +Travisport, OK 83756-7014",2010-10-04 02:52:09,34:ca:52:5a:5a:d3,michaelweaver@gmail.com,img/obama.jpg +Meghan Gonzalez,080-86-9655,52090,"Unit 0521 Box 1016 +DPO AE 08270-7058",2016-11-23 13:51:41,ce:29:41:63:e8:df,joseph99@hotmail.com,img/obama.jpg +Michael Chandler,095-60-7321,79213,"494 Rubio Burgs +West Sabrinabury, NC 39498-0486",1937-07-05 05:53:43,10:0e:55:05:c6:05,kimberlysmith@yahoo.com,img/obama.jpg +Elizabeth Becker,423-36-3751,32852,"94628 Ross Highway Suite 296 +Lake Charles, ID 73869",2016-11-26 00:26:23,59:57:26:6f:18:a8,blankenshipsusan@gmail.com,img/obama.jpg +Elizabeth Foster,514-77-7868,65270,"4673 Carrillo Course +East Nancymouth, IN 90545",1939-10-31 23:41:03,2c:6c:85:e8:7c:33,sheri99@yahoo.com,img/obama.jpg +Julia Simon,413-13-6229,06425,"9346 Carla Ports Apt. 568 +Thomasville, MH 18913",1934-09-03 11:49:12,d5:1f:94:bc:3e:ce,wongmarc@yahoo.com,img/obama.jpg +Glen Harris,365-81-5475,60263,"4412 Cole Spur Apt. 017 +Lake Desireeberg, NJ 33836-4423",1953-08-18 01:05:12,84:98:5d:ed:36:55,zritter@gmail.com,img/obama.jpg +Heather Todd DVM,163-30-7145,44986,"7949 Jordan Dale +Reedport, MN 51562",1933-10-07 11:29:29,01:12:48:f6:f7:67,hrobinson@gmail.com,img/obama.jpg +Olivia Thomas,742-75-5970,01694,"USNV Young +FPO AP 74895-1974",1962-02-22 11:24:09,b3:ce:cc:85:f8:9f,rgarcia@hotmail.com,img/obama.jpg +David Garcia,642-92-4553,36412,"PSC 5323, Box 1192 +APO AA 62429-5098",1941-11-18 11:57:37,1d:21:18:e5:c5:d7,codywilson@yahoo.com,img/obama.jpg +Julia Parker,559-93-1807,63304,"534 White Mill Apt. 602 +North Ryanside, NV 18808-7206",1987-11-04 16:56:43,d3:8a:78:f9:bc:fa,derek06@hotmail.com,img/obama.jpg +Kenneth Davis,485-93-0291,31168,"337 Henderson Rapid Suite 120 +Bennettville, NJ 87900-5810",2004-08-07 07:17:08,d1:87:b7:25:d4:f5,valerie13@yahoo.com,img/obama.jpg +Cheryl Phelps,087-35-2686,41282,"83033 Phillips Pines +Port Catherine, MH 36801-8342",1976-09-02 00:14:44,eb:45:7d:70:36:b5,mikeespinoza@sanchez-johnson.info,img/obama.jpg +Brittany Turner,271-25-9567,63804,"537 Patricia Row Apt. 238 +Port Markmouth, ME 61103-8789",1987-12-23 09:01:30,d6:50:85:4f:eb:da,davidbright@gomez.com,img/obama.jpg +Brian Benitez,324-86-0203,35704,"0939 Christopher Forge Suite 020 +East Tylerville, NV 81362-9925",2013-11-15 05:42:29,1b:50:3d:4f:03:c0,kellypamela@ramos.org,img/obama.jpg +Anthony Keith,566-24-1025,20858,"310 Lawrence Walks +Josephmouth, KS 74542-7999",1939-07-14 15:32:13,61:35:45:b5:3f:22,haydensara@gmail.com,img/obama.jpg +Alexis Wheeler,071-83-4721,23261,"241 Grant Meadows +Joeberg, KS 22519-4463",1921-08-17 17:43:59,a2:4d:06:1d:44:c9,ajohnson@young.biz,img/obama.jpg +Melissa Chase,246-30-8932,50111,"734 Sharon Ridge +Allenstad, VI 67432-6015",1932-08-27 04:13:49,09:dc:4f:73:1c:b4,christina80@hotmail.com,img/obama.jpg +James Patel,395-66-2459,85740,"Unit 1090 Box 5011 +DPO AA 00518-3048",1981-03-21 23:52:52,14:9e:f9:41:f1:2e,juanherrera@stone-waters.info,img/obama.jpg +Joyce Frost DDS,318-39-6937,74536,"4563 Thomas Square +Adamberg, NV 91033-7280",1925-07-15 09:55:32,80:26:03:69:fb:81,ericaburton@carroll-cook.biz,img/obama.jpg +Timothy Smith,217-85-5818,39073,"PSC 8274, Box 8756 +APO AP 92415",1934-04-09 05:56:24,57:40:a4:40:6e:7d,gomezgregory@ray-porter.org,img/obama.jpg +Jon Johnson,640-23-0962,83744,"4415 Cruz Loop +South Faith, SD 87320",1919-04-25 09:46:26,61:69:73:2b:92:e2,carlosholmes@hotmail.com,img/obama.jpg +Mark Buck,700-68-1793,59831,"0321 Jamie Radial +West Joseph, MS 94038",1973-08-07 05:55:17,29:b2:57:e2:a9:9d,sierrahowell@jennings-baker.com,img/obama.jpg +Kari Santiago,529-46-9232,86085,"243 Jason Manor Apt. 630 +Tylerfurt, NH 40972-1759",2014-05-29 06:17:18,8d:5b:d9:b7:d2:1f,wolfmartha@yahoo.com,img/obama.jpg +Michael Woods,710-37-6369,49224,"04098 Amy Coves +Griffinberg, NV 34560",2007-11-20 18:08:05,1c:1a:fe:db:12:c0,marksimon@gmail.com,img/obama.jpg +Ashley Shannon,774-36-2201,22408,"0946 Lee Ville Apt. 974 +Mooreside, AL 01065",1945-10-25 08:19:45,d4:e6:ad:07:62:d6,smithcaitlin@santiago.net,img/obama.jpg +Catherine David,006-52-3908,92528,"127 Dudley Station Apt. 807 +Robinsontown, IN 21138-0606",2013-03-09 05:05:34,32:6a:42:47:36:82,pattonashley@gmail.com,img/obama.jpg +James Moore,112-10-8067,98577,"3200 Tracey Meadow Suite 208 +Moorefort, VT 00347-1153",1950-03-18 14:24:29,2d:5b:8e:90:cd:56,xrusso@lopez.org,img/obama.jpg +Brian Payne,187-04-4066,86329,"399 James Radial +Moniqueburgh, TN 18594-8709",2010-04-27 19:06:47,e5:50:20:de:30:65,carpenteranthony@hebert.com,img/obama.jpg +Donna Houston,759-50-6462,60549,"Unit 9849 Box 6768 +DPO AP 24100-2151",2002-07-20 03:53:30,54:40:65:9b:11:a1,pauldavid@munoz.com,img/obama.jpg +Matthew Gillespie,850-72-2827,87022,"PSC 0941, Box 9333 +APO AE 28737-8321",1969-09-12 07:03:31,be:c9:81:72:0f:31,smithkelli@hotmail.com,img/obama.jpg +Keith Mccarthy,724-19-1443,70841,"234 Scott Plains +Lisatown, IN 34691-2697",2004-04-28 19:27:02,f8:96:d6:99:92:6c,mark37@nelson.com,img/obama.jpg +Kimberly Burgess,110-08-0864,38550,"793 Michael Mount Apt. 489 +East Jennifershire, WI 28579-9763",1952-02-03 09:11:35,66:0c:f4:3b:29:3e,phillipsdavid@thomas-johnson.info,img/obama.jpg +Dylan Foster,611-02-5940,30288,"61256 Murphy Cove +New Amyton, NH 09718-8266",2005-10-23 20:19:41,1a:35:c9:c5:cb:f6,villarrealjames@gmail.com,img/obama.jpg +Brian Ellis,576-44-6751,23314,"817 Taylor Spring Suite 466 +Tiffanyton, CT 28603",1980-06-26 18:18:22,15:57:72:4d:62:50,lauraingram@yahoo.com,img/obama.jpg +Laura Vazquez,713-53-0244,34588,"500 Nancy Walks Suite 029 +Port Jasontown, VA 42574",1935-03-12 15:11:26,ba:c8:a4:a1:be:65,smallteresa@hotmail.com,img/obama.jpg +Brenda Lee,450-87-8169,31234,"74641 Daniel Trafficway Suite 993 +North Alexandra, IL 80057",1956-04-03 16:29:25,de:a6:2f:ed:8c:55,taylorsteven@carroll.com,img/obama.jpg +Matthew Shepherd,405-61-6479,13663,"7732 Christopher Shore Apt. 074 +Abigailchester, VI 89485-2778",1971-03-23 00:20:54,aa:a6:b3:f5:fa:1c,davidnicole@yahoo.com,img/obama.jpg +Michael Harper,424-30-0565,43423,"65091 Brianna Row Suite 483 +Jensenton, DC 53669-1183",1919-11-08 05:47:13,44:b6:29:04:bc:98,hsellers@davis-gardner.org,img/obama.jpg +Shannon Todd,187-44-0509,80113,"02375 Ryan Keys Suite 868 +Lovetown, CO 37383",1957-12-10 12:40:19,b4:c6:88:df:f3:3c,mccannlauren@garcia-hill.net,img/obama.jpg +Christopher Turner,069-45-1544,19942,"3523 Michael Pike Apt. 755 +North Jeanette, CT 68617-9705",1952-02-28 06:16:19,ff:06:fe:08:4c:36,erica30@gmail.com,img/obama.jpg +Katrina Craig,373-23-1289,00637,"951 Gonzalez Gardens +Paulaview, ID 27879-1683",1954-12-01 22:25:42,4b:1c:b6:ce:cd:36,anitasmith@hotmail.com,img/obama.jpg +Elizabeth Armstrong,102-30-8469,70007,"555 Brown Hill +North Robert, SC 94472-9875",1985-11-03 20:02:58,8c:17:ec:33:e3:bd,leeeric@miller.com,img/obama.jpg +Danielle Howard,123-96-2419,94915,"97135 Melanie Point +Jessicabury, IL 39077-6907",2012-03-05 08:11:49,9c:cc:51:d7:41:92,jennifer18@hotmail.com,img/obama.jpg +William Harper,676-08-3747,56204,"07274 Nicole Dam Apt. 595 +North Ericland, NJ 00491",1922-05-19 03:21:57,f8:60:74:03:b9:24,pschmidt@lewis.com,img/obama.jpg +Micheal Morales,416-33-3567,05330,"242 David Way +North Kristiborough, IL 25019",2003-06-23 22:15:04,f3:50:8e:a2:41:8a,ashleyrogers@cox.info,img/obama.jpg +Peter Rhodes,542-50-9685,93514,"Unit 2636 Box 4729 +DPO AA 67139",1969-04-26 19:55:11,b4:0f:5c:8c:3a:9e,donald75@ballard-martin.com,img/obama.jpg +Emily Fowler,864-29-6807,58648,"7865 Diana Fords +Adamland, OK 87397",1959-09-08 16:15:13,a2:da:9c:4c:98:69,angela52@hotmail.com,img/obama.jpg +Rachel Torres,021-12-3218,64671,"PSC 2850, Box 0549 +APO AE 00310",1994-11-14 22:03:52,90:2d:ff:e0:e3:a4,robert73@gonzalez.org,img/obama.jpg +Amanda Johnson,227-01-7650,42436,"9054 Theodore Mission Apt. 936 +Petersonberg, AL 59856-0365",1986-01-22 09:52:20,0b:76:86:7a:fd:23,tjohnson@stein.com,img/obama.jpg +Michael Chambers,133-98-2741,06798,"76059 Steven Pass Suite 424 +North Melissafort, IL 30467-2511",1970-02-17 22:40:41,a7:63:52:6a:63:05,brandon76@hotmail.com,img/obama.jpg +Kellie Ortiz,804-65-0213,91358,"3068 Justin Inlet +South Nathan, LA 32539-1532",1956-03-26 23:48:46,66:f3:30:13:36:90,josephkrueger@yahoo.com,img/obama.jpg +Wesley Wilkerson,285-82-8356,46560,"029 Rebecca Coves +East Kimberly, IA 56790",1925-07-01 14:26:09,0a:bc:a7:8f:ff:dd,sandra68@adams-davidson.info,img/obama.jpg +Susan Jenkins,518-88-6001,10261,"57370 Denise Course Suite 731 +Davisberg, CA 04617-1892",1950-03-05 08:36:36,15:16:5d:2e:01:80,traceywright@yahoo.com,img/obama.jpg +Reginald Pierce,861-62-2476,14942,"51951 Riddle Creek Apt. 302 +Port John, FL 10973-0978",1957-10-02 05:36:37,6c:5c:1b:e5:21:3f,xbrooks@gmail.com,img/obama.jpg +Kristopher Thompson,106-27-5737,41501,"24739 Lance Groves +Ingramtown, GU 26368",2010-11-04 02:29:10,c4:a4:4d:de:24:5e,william41@johnson-burns.net,img/obama.jpg +Christopher Allen,511-43-1236,77514,"311 Melanie Burg +Tonyfurt, VI 37327",2008-06-27 08:26:56,d5:41:e5:f2:04:67,jasonanderson@burgess-ford.info,img/obama.jpg +Samantha Baker,325-59-3610,67796,"Unit 3768 Box 7363 +DPO AP 30153-5021",1931-03-22 02:56:54,2f:bb:bf:f1:ae:c0,camposmegan@evans-hutchinson.com,img/obama.jpg +John Byrd,636-98-6507,63534,"7780 Teresa Park Suite 928 +Lake Carl, VT 66127",1934-09-14 00:54:57,d2:7d:c9:87:5e:cd,robertmorse@shaw.com,img/obama.jpg +Andrew Becker,389-89-6652,82169,"USS Diaz +FPO AE 16221",1993-04-18 20:44:03,b3:af:74:9f:1f:f3,amandahouston@wilson.com,img/obama.jpg +Stephen James,369-99-6669,81990,"6062 Alexandra Trail Suite 198 +Mccormickfort, TN 72784",2004-10-06 21:52:58,d9:af:14:78:71:9f,christopheradams@gmail.com,img/obama.jpg +Gary King,605-69-6509,51007,"1096 Sara Camp +North Melissa, IA 27480",1948-09-14 12:51:11,47:33:5f:60:8c:d6,megan65@johnson.com,img/obama.jpg +Michael Riley,775-08-2618,51447,"22163 Walters Views +West Marieland, CA 97227",1971-10-14 15:31:11,44:ee:0c:3c:92:5f,andrew04@gmail.com,img/obama.jpg +Sergio Paul,710-57-9180,78308,"65340 Tonya Coves Suite 159 +Josefort, UT 07456-5899",1984-07-14 16:14:06,ae:b9:70:c5:f1:d5,kelli37@kelley-reynolds.biz,img/obama.jpg +Jose Hayes,855-35-9729,43972,"3787 Howard Views +Byrdport, MD 58522-6816",1939-08-26 21:33:42,80:e5:50:cd:e0:3f,joseph08@perez-taylor.com,img/obama.jpg +Catherine Smith,374-97-0115,69196,"5893 Sims Vista +Rojasside, ID 63621-9673",1939-08-20 10:58:26,6d:90:04:a9:64:52,umatthews@gmail.com,img/obama.jpg +Brian Rose,220-16-6514,21544,"485 Morgan Ferry Apt. 247 +South Heatherland, KY 48310-6003",1924-10-28 01:08:33,fc:90:85:bd:eb:36,shelby99@gmail.com,img/obama.jpg +Kimberly Kennedy,079-53-4175,91253,"66370 Scott Springs +Justinhaven, ID 52657",1984-08-17 05:07:07,62:f0:fe:21:af:12,frankbuck@gmail.com,img/obama.jpg +Renee Mccarthy,375-71-2156,56431,"49589 Chelsea Locks +South Juliaville, AL 23442",1968-10-25 01:40:20,7d:12:00:31:4e:fa,eburns@graham-obrien.com,img/obama.jpg +Katherine Montoya,467-83-6582,91891,"8915 Nelson Mission Suite 419 +New Brian, IN 72015",1935-12-09 01:32:25,ea:5c:fb:a7:c3:a9,qallen@yahoo.com,img/obama.jpg +Mitchell Chavez,843-18-2146,43214,"584 Kathleen Lock Apt. 624 +South Heatherville, KY 65785-3189",1999-10-16 20:47:29,07:d8:2c:42:e5:54,jvalentine@ward.com,img/obama.jpg +Carlos Green,620-93-6161,36676,"3342 Stein Lake +Port Jonathan, SC 15165",1918-08-29 20:38:06,a4:89:e0:c2:a1:49,robert42@hunt.com,img/obama.jpg +Zachary Stanley,085-60-2354,04080,"2935 Burns Extensions Suite 661 +Kimland, MN 04830-8225",1921-11-14 07:22:51,2c:b6:c4:b1:a5:fe,christinepennington@gmail.com,img/obama.jpg +James Harrison,096-64-9450,96309,"066 Dominguez Passage Suite 207 +New Robinburgh, DE 32063-2172",1934-08-01 16:30:09,ec:ef:1e:af:4d:24,greenpatrick@wheeler.com,img/obama.jpg +Dale Gonzalez,433-90-5268,04120,"5711 Freeman Streets +South Daniel, KS 20707",1981-03-02 15:24:45,66:85:2d:c3:e0:72,wilsonangela@gmail.com,img/obama.jpg +Patrick Martinez,470-14-2120,39787,"6686 David Trail +East Williamberg, IN 59412-6661",1974-09-14 22:00:37,b9:30:4a:22:4f:0f,sarahdawson@cuevas.biz,img/obama.jpg +Scott Morales,262-65-7087,73562,"193 Scott Valley Apt. 909 +Roweburgh, MI 68099-3818",1957-04-27 23:25:37,0b:46:d1:e6:01:03,nchase@hebert.com,img/obama.jpg +Stephen Rice,127-70-1988,74844,"7105 Park Drive Suite 391 +North Pamelaport, KY 90136-2303",1975-05-01 17:09:34,aa:bc:0f:2b:05:10,judymcmahon@gomez-padilla.biz,img/obama.jpg +Mary Peters,431-17-6869,23313,"5621 Timothy Circle +Jonathanmouth, PA 87645",1952-11-02 08:03:43,22:d7:e0:7e:81:d0,bondjohn@hotmail.com,img/obama.jpg +Eric Young,427-32-0639,65892,"968 Christensen Key +New Haley, CA 05450",1963-10-03 17:00:32,83:1b:c8:17:95:7a,meredith08@yahoo.com,img/obama.jpg +Jordan Fernandez,247-47-9106,45872,"3331 Williams River +Walkerhaven, SD 62098",1993-10-06 01:57:35,af:46:c3:4a:1a:ab,amybowers@lee.com,img/obama.jpg +Natalie Webster,180-59-5277,46802,"3921 Medina Hill Apt. 293 +Gabrielchester, VA 68328",1920-03-19 18:58:28,d4:96:0d:ca:ec:8d,joshua33@jones.com,img/obama.jpg +Ryan Greene,852-95-8407,47136,"48556 Wesley Pines +Johnstonside, MO 35815-3981",1998-02-15 11:25:26,03:94:21:c4:08:57,joseph74@white.net,img/obama.jpg +Daniel Reyes,555-65-2176,11648,"751 Jennifer Dale +New Chrishaven, MO 49615-0917",1944-10-04 06:08:22,19:dd:2f:f6:6d:5e,opalmer@yahoo.com,img/obama.jpg +Cynthia Wilson,104-61-6658,22222,"435 Amanda Forest Suite 179 +Burtonmouth, FL 79390-9827",1962-01-24 00:10:34,23:e6:94:a6:41:48,vmccarty@gentry.info,img/obama.jpg +Kelly Fletcher,147-91-2353,15693,"544 Sara Summit Apt. 196 +Gabrielview, AL 62820",2005-01-18 00:29:58,5e:ca:2c:df:af:e5,christopherlong@ramos.com,img/obama.jpg +Keith George,501-02-0617,93396,"85833 Miles Roads +South Thomasville, OK 60802-3410",1948-06-07 04:18:45,5a:25:55:a5:7c:9e,daniel24@ferguson-logan.com,img/obama.jpg +Andrea Jackson,801-36-9452,32794,"1867 Sarah Camp Suite 338 +New Shannonville, HI 02216-3058",2002-03-05 06:07:17,fb:e9:78:d1:b1:1d,rporter@yahoo.com,img/obama.jpg +Leslie Brown,135-92-8037,47858,"1032 Amy Course +East Davidtown, MI 75528",2004-12-11 11:30:02,39:4f:e3:10:bb:0d,smurray@yahoo.com,img/obama.jpg +Gregory Schneider,454-32-6173,77040,"Unit 6704 Box 2779 +DPO AA 16596-4421",2016-06-03 17:27:39,79:e9:cf:53:45:b9,mcknightthomas@yahoo.com,img/obama.jpg +Jacob Ryan MD,125-88-8166,26830,"6572 Velazquez Walks +Port Bethany, ND 29109-8134",1996-09-07 13:18:01,5e:e2:22:0f:3d:67,matthewwade@ramirez.com,img/obama.jpg +Christian Young,841-13-5035,76896,"945 Gerald Stream +New Jamesfort, AR 16539",1965-08-01 18:22:13,26:e4:f5:3b:78:db,nathanwalker@taylor.com,img/obama.jpg +Frank Mcguire MD,038-18-8207,81044,"212 Rios Drive Suite 659 +Lake Austin, VI 47660",1966-05-19 14:58:42,b9:dc:a3:32:58:fd,benjaminjoseph@gmail.com,img/obama.jpg +Derek Jones,611-35-3083,44928,"41920 Nicholas Point +South Melissa, MI 61783-1951",2017-02-11 19:59:09,ea:f7:09:be:9b:af,ruizjustin@smith-walker.com,img/obama.jpg +Bryan Arnold,538-81-4636,45467,"Unit 0203 Box 1613 +DPO AP 60081",1957-02-19 22:34:16,53:75:e7:3d:8c:78,carsonanna@massey.com,img/obama.jpg +Teresa Melton,829-28-6718,87303,"USNV Tucker +FPO AE 63351-6071",2009-06-29 05:00:07,fe:eb:79:87:21:63,vhouse@gmail.com,img/obama.jpg +Richard Gomez,723-13-0281,62353,"9110 Gordon Lake Apt. 932 +Paulburgh, AS 12768",1979-08-14 06:11:09,90:41:dd:28:04:ce,jeffreyfernandez@gmail.com,img/obama.jpg +Amy Baldwin,094-44-4692,87858,"9102 Luis Summit Apt. 048 +East Davidburgh, ND 60420-3656",1998-12-17 00:48:46,6b:79:ae:5b:7a:f9,colenatalie@hotmail.com,img/obama.jpg +Lisa Sanchez,019-33-0305,56818,"5472 James Glen +West Jennyshire, WV 98063-8277",1939-02-25 07:00:51,04:a7:f1:67:41:79,jmorris@hotmail.com,img/obama.jpg +David Preston,505-91-5472,85111,"92683 Allison Villages Apt. 393 +Millsfurt, MN 53057-1776",1974-01-31 09:00:38,8b:be:1a:ff:ba:aa,youngcandice@hotmail.com,img/obama.jpg +Deanna Thomas,820-65-8107,59310,"85799 Steele Streets +East Ashley, OR 36561-2080",1965-01-26 11:14:56,41:7a:72:75:67:cf,aprilmartinez@yahoo.com,img/obama.jpg +William Bullock,477-85-1578,92226,"5440 Thompson Junction +Lake Samuel, OR 07573-1144",1960-09-28 06:55:17,4c:9b:92:94:de:77,kevinbeard@gmail.com,img/obama.jpg +Kyle Oconnell,193-64-4966,52059,"PSC 0004, Box 2320 +APO AA 62480",1935-01-02 11:07:59,57:07:e2:61:85:f4,michaelhaynes@hotmail.com,img/obama.jpg +Ms. Sylvia Mueller,182-18-7323,84674,"933 Thomas Parks Suite 457 +South Alicia, CT 89795-0925",1948-02-07 11:20:49,7c:e3:6b:9f:b9:90,mendozakelly@yahoo.com,img/obama.jpg +Brian Martin,398-21-8345,26750,"14827 Kenneth Key Apt. 393 +Solomontown, FM 02289",1963-04-12 12:09:42,ff:17:03:c0:fc:06,thomassara@friedman.com,img/obama.jpg +Jessica Rodriguez,392-78-1567,24908,"986 Gloria Burg +New Emily, AS 45019-0262",1999-03-27 16:53:14,04:b0:61:31:00:22,brandon91@smith-lambert.com,img/obama.jpg +David Martinez,871-43-7163,90212,"086 Alison Drive Suite 745 +Hendricksport, VA 18766",1936-02-08 09:15:05,f9:4c:c3:b0:d5:10,hwolfe@yahoo.com,img/obama.jpg +Rita Jones,418-05-9557,38666,"581 Brian Loop Suite 473 +Lake April, AR 34404",1991-03-08 08:01:59,c8:fb:90:21:17:0c,tcarter@hotmail.com,img/obama.jpg +David Williams,523-94-2515,17232,"45904 Carlson Views +Sheppardview, FL 98838-6313",1926-02-22 05:19:05,c3:b7:3b:ab:30:02,ginaoneal@hotmail.com,img/obama.jpg +Joshua Ruiz,627-05-6137,94509,"38454 Johnson Points Suite 446 +New Tyrone, VA 50538-8832",1987-11-25 18:02:55,c0:f7:ae:9f:c2:37,edwardjennings@woods.info,img/obama.jpg +Peter Newman,845-05-7847,73125,"4100 Heidi Dale +South Davidton, MO 50634-4203",2013-07-12 20:54:11,a0:af:f8:dc:bf:32,cmiller@yahoo.com,img/obama.jpg +David Bell,593-09-6421,03563,"9910 Phillips Burg +Solomonshire, DC 67330",1944-03-21 11:24:09,a6:66:87:6a:32:55,carl85@hotmail.com,img/obama.jpg +Ashley Gilmore,311-91-3746,24133,"7085 Lucas Ports Suite 962 +Lake Scottport, CO 17586-5983",1987-02-21 00:22:16,d0:45:b6:c5:ba:c4,huntjennifer@jacobs.com,img/obama.jpg +Anthony Conner,218-71-1075,66984,"1995 Smith Squares Apt. 839 +Jamesfurt, WY 40856-5691",1967-05-06 23:44:07,b3:ac:67:e1:1c:db,jonathanparks@yahoo.com,img/obama.jpg +David Wu,467-46-8233,03320,"607 Jordan Walks +Deborahfort, NY 88380-6521",1952-09-21 23:05:14,57:46:54:03:8c:32,christopher67@hotmail.com,img/obama.jpg +James Mccarthy,340-50-1004,94224,"25275 Wilson Port Suite 641 +Lake Edward, PR 82988",1968-08-01 23:14:04,fb:b6:8e:25:78:18,cford@yahoo.com,img/obama.jpg +Maria Moss,758-24-7373,96811,"61783 Morgan Ferry Suite 306 +South Amyborough, NM 01920-8018",1960-08-25 02:41:15,97:f9:22:9d:0c:00,zwalker@gmail.com,img/obama.jpg +Teresa Gomez,135-51-8137,66759,"20776 Oconnell Burgs +Townsendtown, RI 45594",1922-03-24 11:12:24,0f:6f:72:fe:07:d5,martinezcharlene@beard.info,img/obama.jpg +John Howard,462-73-6633,14400,"4225 Price Mews Apt. 806 +Lake Brandy, DE 01997",1959-07-20 06:55:33,6e:74:bd:f6:25:17,schroederbrandon@kim.com,img/obama.jpg +Kimberly Zamora,454-50-4187,70916,"51619 Natalie Flats Suite 512 +Osbornemouth, MO 60607-2892",1964-12-03 14:43:08,e8:55:5a:7d:a2:4c,mshaw@hotmail.com,img/obama.jpg +Melinda Davis,309-91-2874,89116,"82711 Joshua Squares +New Davidburgh, OH 23621-6805",1918-11-26 05:53:26,b5:a9:a5:af:24:12,edward10@gmail.com,img/obama.jpg +Glen Marsh,445-40-2739,75747,"567 Michael Lights Apt. 188 +Davidmouth, TX 08876",1952-04-04 09:00:23,1b:f9:28:61:ce:53,orivera@campbell.com,img/obama.jpg +Jamie Swanson,734-12-7140,50436,"PSC 4418, Box 2394 +APO AA 81110-6561",1925-10-14 19:58:36,0b:b3:9f:57:7c:2d,ejones@beck-villarreal.biz,img/obama.jpg +Alyssa Clayton,206-81-3357,77418,"3563 Melissa Village Apt. 968 +West Danielshire, OR 58995-8077",2015-05-17 06:00:38,f4:a3:ba:28:8a:2a,joshua03@hotmail.com,img/obama.jpg +Karen Flores,685-81-6675,69585,"088 Davenport Bridge Suite 714 +North Steventown, WV 46318-2700",2003-12-30 00:37:18,5e:a0:d3:30:77:05,justin86@gmail.com,img/obama.jpg +Tiffany Richards,310-77-6262,98351,"80253 Mckinney Passage +Kimberlyport, TN 87811-3003",1987-11-16 20:13:56,17:1f:63:fe:e0:84,stephaniebass@hotmail.com,img/obama.jpg +Mr. John Ashley,489-55-5838,55517,"37641 Christopher Canyon Suite 654 +New Sharonport, MI 10836-6312",1945-02-28 10:50:14,31:a9:0a:8b:54:2c,paulcruz@dennis.com,img/obama.jpg +Katie Mcgee,828-42-8864,51100,"136 Carpenter Flats Apt. 085 +Petersonview, GA 28235",1980-04-15 19:52:28,dd:79:13:b5:a4:f6,dgallagher@gmail.com,img/obama.jpg +Marcus Salinas,073-47-2523,63376,"4059 Garcia Ville Apt. 539 +Lozanoshire, MA 04149",1950-09-19 03:10:32,97:78:15:27:3d:07,kleinjacob@smith-norris.com,img/obama.jpg +Vincent Mills,732-34-2483,83946,"9228 Taylor Alley +Pruittberg, MS 85708-7026",1925-04-08 16:46:31,fb:3c:93:3f:bf:39,jasonsandoval@hotmail.com,img/obama.jpg +Michelle Harris,808-33-7011,69106,"PSC 6159, Box 4663 +APO AP 35588",1933-06-02 07:27:13,10:20:bb:c3:e0:84,ramirezfelicia@phillips.net,img/obama.jpg +Patricia Cochran,612-89-6533,77677,"26212 Lewis Estates Suite 145 +South Bruce, NY 54462-3016",1999-06-02 10:09:46,5b:8c:09:f6:08:47,trevor50@hotmail.com,img/obama.jpg +Pamela Harris PhD,762-73-9188,29105,"132 Kathy Motorway +Aarontown, KY 62207-0021",1968-04-06 19:30:13,a9:50:29:de:27:8d,donna69@gmail.com,img/obama.jpg +Keith Oliver,334-17-5438,83897,"9279 Aaron Circle Apt. 123 +South Savannahmouth, CO 23593",1966-11-01 20:16:15,e6:6d:6b:b5:4c:b9,sharpamanda@yahoo.com,img/obama.jpg +Sean Ramos,755-02-1113,24532,"274 Mcmillan Forest Suite 145 +South Victor, MH 78450-0497",1934-11-19 07:46:59,12:16:c0:7a:e2:be,reynoldsmatthew@gmail.com,img/obama.jpg +Jessica Velasquez,153-44-6367,32179,"659 Jessica Cove Apt. 638 +Andreaview, NM 35310",1945-08-13 14:53:18,1c:ce:98:7c:c6:0f,heather70@hotmail.com,img/obama.jpg +Ronald Davis,478-86-2939,23134,"756 Abbott Run +East Annaton, GA 84881",1954-07-05 05:26:19,d0:d7:3e:0f:25:49,christopherlopez@hotmail.com,img/obama.jpg +Tracy Harrison MD,153-19-3542,66167,"295 Wheeler Square Suite 105 +Cynthiaberg, SC 46087-9185",1991-01-17 10:40:18,e7:24:96:1a:43:f2,thomas80@yahoo.com,img/obama.jpg +Sherry Williams,353-45-2136,67076,"96979 Stacy Islands Suite 857 +Lake Megan, NH 53813",1959-06-27 10:16:30,ba:ab:9f:a1:ea:cc,harrywarner@hotmail.com,img/obama.jpg +Tammy Wright DDS,775-97-1763,03533,"PSC 7825, Box 6866 +APO AE 19871-6752",2010-06-15 13:25:27,e7:27:a3:b1:6e:97,thomassanchez@shah-roberts.com,img/obama.jpg +John Best,254-40-1027,37654,"915 Kristin Roads Suite 628 +Fullerchester, RI 90807-7884",1961-07-18 23:50:17,f4:47:c8:d8:f8:c4,kellyjames@hotmail.com,img/obama.jpg +Lonnie Boyd,539-35-1009,60086,"6064 Bell Corners +Jerryfurt, WV 96059",1977-01-31 02:55:06,0d:5b:2f:bf:51:88,petersonjacob@sweeney.com,img/obama.jpg +Alexis Davenport,049-23-3466,01861,"10599 James Station +Lake Sandrahaven, OK 13893-8300",1988-03-09 02:35:57,b1:d3:9e:42:75:15,kjohnson@tyler.com,img/obama.jpg +Phillip Hernandez,597-82-4086,63359,"451 Erica Center +Wilsonburgh, AK 99532-0934",1969-11-21 01:50:06,2d:3a:ff:f3:fc:6c,yhowe@hotmail.com,img/obama.jpg +Donald Ferguson,327-68-2400,26474,"936 Kyle Ville Apt. 853 +Smithton, DE 00524",1976-04-02 11:36:19,a6:d9:b8:32:0a:37,alejandro08@vaughn.com,img/obama.jpg +David Wilson,070-76-7254,90349,"9744 Bowman River +Spencerton, NE 24644",1997-01-23 00:05:06,61:40:2e:7c:7c:aa,aaron34@hotmail.com,img/obama.jpg +Curtis King,442-60-4300,21663,"9026 Makayla Terrace +East Joseph, GU 91438",2014-07-21 08:45:18,29:f5:89:13:31:33,stacy14@miller.com,img/obama.jpg +Amber Campbell,213-79-2741,48347,"540 Weber Union +Erikburgh, WY 18699-3631",1922-05-22 15:51:20,ca:89:50:ab:2a:1f,ucastillo@yahoo.com,img/obama.jpg +Eric Green,616-67-1507,77224,"63083 Guzman Springs +Tinaberg, CA 32023-0548",1995-06-13 10:04:24,b6:1e:6a:83:99:38,david17@yahoo.com,img/obama.jpg +Tommy Mullins,388-39-5549,59960,"615 Juan Bridge Apt. 117 +Lake Spencer, NY 41069-1034",1965-12-25 22:41:43,76:3c:39:f7:2e:20,moorejack@mendoza.com,img/obama.jpg +Danielle Willis,568-94-3074,32027,"USS Cochran +FPO AE 37337-8413",1973-01-12 10:51:06,2e:83:7a:a6:8a:70,jordandiaz@oliver.org,img/obama.jpg +Jose Lee,308-46-8384,93772,"31701 Ramirez Manor Suite 079 +Jeffreyport, CA 21736",1986-01-27 18:44:11,1e:af:f7:ae:c0:84,sararay@hensley.com,img/obama.jpg +James Pruitt,258-88-9431,77609,"9969 Martin Forge Apt. 864 +Vangmouth, OH 54776",1919-06-09 00:33:25,10:60:6e:06:25:d9,tina44@peters.com,img/obama.jpg +Mark Jackson,599-55-1496,30552,"2177 Gregory Burgs Apt. 948 +South Lucas, TN 67227-8237",1975-07-25 18:37:53,3c:ed:81:c6:f0:38,hjohnson@smith-norman.com,img/obama.jpg +Whitney Trevino,303-16-2886,58104,"Unit 0602 Box 7039 +DPO AA 40689-6791",1924-04-01 00:01:01,7c:7f:f7:d3:15:5e,matthew76@yahoo.com,img/obama.jpg +Heather Franklin,569-39-1627,92482,"889 Trujillo Passage +New Gilbertton, MO 33897",1982-07-06 11:54:38,9a:a0:bb:b9:d3:65,bakerautumn@barnes.info,img/obama.jpg +Karen Weaver,153-48-8695,22997,"Unit 4549 Box 2208 +DPO AP 28692",1924-06-23 20:24:03,ed:d9:07:7a:90:76,jerry85@wallace-rojas.net,img/obama.jpg +Robert Weber,069-76-9295,12249,"42552 Torres Roads Suite 932 +Lake Richardmouth, CO 93057",1999-03-02 14:58:20,8f:95:68:19:04:f5,kendra57@cook.com,img/obama.jpg +Tiffany Stone,119-23-0155,27341,"Unit 5380 Box 2924 +DPO AP 58501-8307",1925-10-17 11:36:18,2b:62:e9:ea:c3:28,katherinefritz@yahoo.com,img/obama.jpg +Juan Garcia,346-39-9646,68755,"913 Cameron Bypass Suite 090 +Lake Jose, OH 47545",1919-12-26 23:02:18,4b:6d:81:e1:4a:11,cfitzpatrick@wilson-rodriguez.com,img/obama.jpg +Brian Baker,653-40-4364,97619,"91359 Garcia Views +East Ericaport, WA 41291-5326",1963-11-14 18:52:56,99:0c:c3:c8:41:7a,cadams@burke.info,img/obama.jpg +Amanda Horne DVM,027-74-4734,48306,"365 Stewart Unions Suite 401 +Alyssaport, NM 86496-3570",1994-10-02 04:53:59,ec:af:95:33:1e:d1,johnross@yahoo.com,img/obama.jpg +Joseph Perry,530-65-3095,07109,"7011 Cochran Plaza +Tateville, MO 72827",1951-01-26 04:56:20,26:28:ea:c1:72:fb,cynthiawood@doyle.com,img/obama.jpg +Erik Finley,833-76-8942,29501,"11319 Harvey Drive Apt. 521 +Port Rodney, ND 62202",1949-07-03 05:46:59,b0:56:23:14:34:bf,meyercorey@yahoo.com,img/obama.jpg +Sarah Holmes,277-19-3976,24226,"2761 Edward Crossroad Apt. 942 +Brittanyville, NC 14842",1970-03-16 20:43:41,fe:60:6b:b2:71:ce,christian65@yahoo.com,img/obama.jpg +James Simpson,351-53-0300,00912,"9332 Sharon Divide Apt. 910 +Robertville, OK 24057-8907",1983-08-15 23:04:22,58:39:0a:c8:d5:1d,victoria46@hotmail.com,img/obama.jpg +Elizabeth Reyes,254-52-2210,70495,"831 Alfred Way +East Jesse, DE 16145-2666",1943-08-25 17:12:51,f5:e7:c9:4b:42:64,jessica88@yahoo.com,img/obama.jpg +Allen Gomez,020-88-1923,70908,"239 William Brooks +South Toni, KY 88565-0992",1974-12-27 22:53:46,cb:96:ff:38:32:e5,andrea35@hotmail.com,img/obama.jpg +Lisa Anderson,417-33-4147,74174,"776 Robinson Lane Apt. 045 +North Ericberg, IL 81827-9048",1996-06-24 02:13:47,48:aa:8e:0f:e6:0b,darrellalvarado@wheeler-williams.org,img/obama.jpg +Cameron Zimmerman,650-79-6689,44063,"926 Choi Mountains +Elizabethburgh, IL 30853-1130",1938-05-28 17:12:53,78:e7:dc:5f:19:25,brian55@rivera-johnson.org,img/obama.jpg +Michael Baker,772-80-6217,91227,"832 Jones Landing +South Jamestown, TN 76851-7514",1986-10-28 16:10:12,3d:9c:35:f3:6f:50,jason23@thomas.com,img/obama.jpg +Tiffany Schneider,878-32-9814,97299,"013 Michael Oval +New Jessicaport, PW 55737-2300",2011-04-26 10:54:13,39:b2:2b:45:d7:85,murphyjason@richardson.com,img/obama.jpg +Richard Schmidt,819-55-4591,21141,"16541 Anderson Hills +New Jennifer, IA 75360",1988-08-26 06:54:24,ab:3c:45:f3:b8:bf,hmcintyre@edwards-king.com,img/obama.jpg +Carlos Owen,788-19-6941,23679,"5717 Conrad Key Suite 441 +Buchananburgh, CO 18321",2005-09-06 16:28:10,37:0f:d4:cb:86:3d,colemanbridget@rogers-rollins.com,img/obama.jpg +Tracy Smith,217-29-2659,18841,"79963 Tammy Wells Apt. 184 +North Lucas, KS 30580-2501",2015-12-13 20:08:53,f9:e9:58:0e:9b:a8,zgarcia@gmail.com,img/obama.jpg +Joseph Hernandez,892-19-2976,78488,"358 Robert Run Apt. 154 +Evanstown, NM 34615",1952-10-25 02:31:07,93:90:f2:cb:6f:f9,donald40@yahoo.com,img/obama.jpg +Kristi Contreras,465-27-8225,79072,"53375 Buck Flats Suite 163 +Lake Jerry, IN 64630-9027",1975-01-05 02:25:26,8b:8e:78:5b:b2:ec,lisa17@hayes-cole.com,img/obama.jpg +Jeffery Estrada,060-30-1930,23375,"758 Joshua Avenue +Lake Edward, NC 15352",1993-07-30 11:14:12,b5:01:27:64:7b:cb,jamiekelley@gmail.com,img/obama.jpg +Alexandra Thomas,010-01-0862,60404,"251 James Ridges +North Roberthaven, KS 87220",1970-07-27 11:25:22,d6:bd:61:66:ac:33,xkaiser@hotmail.com,img/obama.jpg +Tiffany Norton,597-12-9492,42719,"57193 James Cove Apt. 252 +Lake Deborah, LA 33354",1977-11-07 12:50:19,92:9b:43:73:28:a3,stephaniewebb@johnson.com,img/obama.jpg +James Smith,615-43-7367,67961,"3464 Arthur Trafficway +Wilcoxville, VT 48012",1919-04-02 07:06:04,3f:d5:2b:d9:ac:92,olsonpaul@yahoo.com,img/obama.jpg +Janet Price,605-10-9916,89280,"USCGC Greene +FPO AP 95121-6231",1934-05-16 06:48:36,33:c9:99:ef:3d:46,aaron87@brown-adams.info,img/obama.jpg +Linda Green,275-58-7532,03860,"13710 Mitchell Knoll +Younghaven, MO 92361-2800",1942-10-22 01:01:11,4d:fa:f9:0f:6a:0f,russellclark@price-campbell.com,img/obama.jpg +Julie Kramer,224-97-8681,84185,"22712 Michelle Rest +New Jonathan, MS 97481-8159",1965-01-15 14:07:32,be:cc:b4:59:69:6d,hmartinez@riley.com,img/obama.jpg +Eddie Cox,138-80-3358,89174,"088 Stephen Plain +Clarkmouth, WA 97357-5622",1964-01-26 21:00:11,b1:10:fc:f2:7c:d8,brucesamantha@huber.com,img/obama.jpg +Amy Tucker,262-96-7787,04251,"91671 Christopher Ridge +Priceland, WI 39897",1949-10-03 17:49:30,b8:b2:ec:6c:dd:ba,lawrencewalters@fowler-franklin.org,img/obama.jpg +Jillian Love,404-13-4832,92181,"108 Gray Grove +East Stefanie, SD 10551-8625",1970-09-28 03:36:36,1b:a6:62:5c:36:53,latoyaroberts@walker.com,img/obama.jpg +Peter Stanton,512-89-8916,19767,"298 Martin Locks Apt. 625 +Robertchester, TX 70696-1675",2015-04-30 04:37:45,b0:93:48:31:9a:4a,chasehill@lopez-vazquez.com,img/obama.jpg +Melody Flowers,717-73-0307,40206,"02235 Edward Prairie Suite 000 +Raymondberg, GU 28323-0493",1919-09-27 14:33:59,8c:b7:1e:e9:cd:e0,estradanicole@hotmail.com,img/obama.jpg +Andrew Carey,204-84-2569,47662,"0736 Gomez Hollow +North Matthew, WA 66845-3354",1932-07-13 09:53:38,23:41:ce:b9:34:ce,steven84@hotmail.com,img/obama.jpg +Nicole Chambers,086-57-7899,71212,"53920 Parker Viaduct Apt. 538 +Gibbsfort, AR 44336",1959-09-16 18:10:02,5e:a3:de:d8:0c:55,gobrien@trujillo.com,img/obama.jpg +Michael Schultz,349-70-8141,85405,"36813 Paul Point Suite 450 +Gallaghertown, VT 72435-9434",1959-12-08 07:53:53,78:30:4e:73:6d:a0,kflowers@gmail.com,img/obama.jpg +John Johnson,842-60-9322,29314,"804 Ashley Drives +Michaelborough, DC 11551",1936-09-03 01:20:20,69:2b:09:b9:24:3d,perezsusan@rodriguez-church.com,img/obama.jpg +Eric Brown,706-07-0051,19348,"474 Craig Stream +New Jennifer, WY 77142-9568",2011-08-27 12:58:10,de:2e:0c:78:ef:36,pday@hotmail.com,img/obama.jpg +Monica Knox,884-37-6187,18652,"993 Allen Mission +Lake Debbieview, LA 36769-0316",1944-09-02 04:27:13,2f:f5:4f:c9:ad:cd,walkeraustin@gmail.com,img/obama.jpg +Drew Charles,325-17-2695,35145,"350 Johnson Loop +North Bobby, WV 87186",1938-12-03 07:11:41,0d:a2:e2:dd:96:4f,nreed@tanner.com,img/obama.jpg +Carmen Chase,302-18-2688,17163,"89887 Kevin Canyon Suite 823 +West Cindychester, MO 43541",1934-04-30 07:10:44,1d:c5:2e:9f:70:3d,kmoore@gmail.com,img/obama.jpg +Melissa Nunez,050-56-6094,88043,"190 Odom Hills Apt. 036 +Michaelview, NM 09802",2014-07-31 07:06:28,34:a6:49:de:13:92,petermccormick@gmail.com,img/obama.jpg +Dennis Barker,382-75-0063,35080,"193 Amanda Creek +South William, SC 17996-5886",1930-04-15 12:35:55,06:0c:6d:51:f3:db,qcervantes@andrews.com,img/obama.jpg +Brittany Miller,028-25-5557,73630,"479 Carol Loaf Apt. 762 +Johnnyburgh, DC 20945-2024",1995-11-11 03:00:11,65:44:15:10:5f:89,aguerrero@gmail.com,img/obama.jpg +Pamela Robertson,564-82-8739,06372,"8017 Amy Glen +Pricemouth, AK 65904-8776",1997-02-22 14:37:43,1a:84:38:86:7d:1a,kevinwilliams@walker.com,img/obama.jpg +Maureen Gray,503-33-8354,03375,"14845 Jenkins Run Suite 372 +Allenton, MS 35395-6795",2009-12-20 11:32:16,8e:41:f1:b4:91:5c,philipwalker@lopez.com,img/obama.jpg +Heather Fuller,452-81-0294,98042,"8190 Marissa Square Apt. 315 +South Michaelberg, MD 76646",1958-02-10 10:07:24,57:cc:dc:61:b1:2c,richard69@webb-mcconnell.com,img/obama.jpg +Katherine Rodgers,694-23-7617,19926,"56166 Joseph Plaza +Danielborough, NE 59112-0822",2014-09-05 12:05:04,fd:81:75:08:77:bf,jennifer89@hotmail.com,img/obama.jpg +Robin Stewart,826-82-7977,55027,"398 Scott Rest +Lake Stacey, MP 41704",1952-01-02 12:07:51,3d:5e:c9:87:c9:b9,wileybrent@gmail.com,img/obama.jpg +Dustin Lam,771-86-0553,54868,"150 Serrano Causeway +Destinyhaven, MI 39779",1993-06-27 14:51:35,07:40:10:77:da:3b,ytapia@hotmail.com,img/obama.jpg +Nicholas Lowe,827-71-4783,93733,"6456 Turner Mall Suite 202 +North Kaitlynhaven, MI 77595",2001-07-07 14:38:52,3a:e7:af:8b:9a:bf,blackwelltammy@crawford-sanders.com,img/obama.jpg +Barbara Bartlett,881-56-3543,03732,"358 David Motorway Apt. 869 +Careyton, WA 07589-7515",1960-02-23 00:25:05,63:95:00:2d:74:90,jennifer01@gmail.com,img/obama.jpg +Ashley Schwartz,617-10-0797,12668,"4031 David Lakes +South Daniel, NE 12750",2010-07-18 00:19:34,09:a1:b8:98:de:97,mary17@yahoo.com,img/obama.jpg +Justin Rodriguez,800-85-4167,25609,"7126 Davidson Court Suite 036 +Markport, NV 02467",1948-03-03 21:36:42,95:1a:da:d4:05:37,watkinsnathan@ford.com,img/obama.jpg +Heather Shannon,570-93-2900,35168,"745 Church Mission Apt. 020 +South Sarahville, MT 05267-1728",1961-02-23 00:55:18,b1:c5:69:14:b6:4a,davidbailey@yahoo.com,img/obama.jpg +Ronald Williams,719-72-3765,42503,"870 Andrew Plaza +Williamsville, AS 00173-3524",1998-10-10 18:50:34,b5:73:e5:14:a5:02,mturner@west.com,img/obama.jpg +Madison Wilson,369-49-9780,45255,"788 Pearson Wells +Port James, NM 59066-1200",1967-09-09 07:18:45,87:e7:9b:74:5e:6c,theodorefritz@wilson.com,img/obama.jpg +Brooke Richards,682-61-8110,10827,"527 Ross Well Apt. 827 +Nicholasmouth, UT 63140",1935-07-11 12:49:52,3b:6e:3b:e4:b0:1a,stacycole@york.org,img/obama.jpg +Allen Nunez,481-05-1303,73515,"07669 Clark Islands Apt. 352 +East Richardburgh, AR 78834",1939-09-03 15:24:39,82:39:f3:12:b1:5e,farrelltodd@yahoo.com,img/obama.jpg +Veronica Brown,361-31-1532,74220,"108 Carroll Manors Apt. 163 +Lisafurt, IA 13087-7849",2010-04-18 13:42:46,56:4f:17:d9:12:7c,jwebster@gmail.com,img/obama.jpg +Aaron Houston,570-84-8132,63655,"9307 Joel Way Suite 314 +Lewisborough, MA 31267",1972-11-25 17:06:37,a0:f1:e5:b4:6f:0b,jessegilmore@yahoo.com,img/obama.jpg +Christine Callahan,130-89-9502,95545,"PSC 9694, Box 3736 +APO AA 93060-3837",1942-12-18 10:52:30,41:c5:ee:94:d4:93,qlong@yahoo.com,img/obama.jpg +Jasmine Ramos,312-10-3339,87618,"1060 Johnson Hollow Suite 365 +Lake Georgemouth, AL 48859-7275",1970-12-04 01:31:53,ef:9e:97:ce:cf:84,qhansen@miles-lopez.com,img/obama.jpg +Robin Roman,689-38-2387,03768,"9264 Dawn Grove +New Vicki, WI 13742-4852",1976-02-10 23:08:39,44:ae:9e:90:8a:e6,dbarron@dean.com,img/obama.jpg +Emily Ward,840-85-0850,05501,"740 Todd Roads +Port Jamesmouth, SD 21354-9646",1957-07-06 23:57:33,c4:23:1c:85:4f:20,ifloyd@bruce-owens.com,img/obama.jpg +Jessica Hart,020-57-4801,00988,"Unit 8244 Box 0033 +DPO AE 52301",2010-10-30 09:13:15,ed:8f:7b:9d:f6:db,dcannon@garcia.net,img/obama.jpg +Howard Franklin,444-77-6768,10650,"38609 Eric Dale +New David, PW 30705",2003-08-31 16:56:45,7c:6c:fc:13:06:ef,frederickjose@weaver.com,img/obama.jpg +Claire Ramos,381-49-4457,19430,"0879 Robinson Tunnel Apt. 615 +Lake Daisy, MO 44610-2500",1932-03-31 07:54:01,9f:88:ab:36:8d:68,gwilliams@yahoo.com,img/obama.jpg +Joseph Levy,216-31-7684,68942,"54300 Janet Camp +Dixonport, UT 46241",1951-07-12 06:26:35,60:86:7d:a8:1d:a0,ohowe@yahoo.com,img/obama.jpg +April Carter,409-87-8667,60199,"50322 Martinez Squares +Stricklandborough, MD 92636-4701",1985-10-20 09:29:23,cc:7d:09:2d:ac:3e,davenportnancy@yahoo.com,img/obama.jpg +Dan Chang,190-80-4325,51553,"6570 Jenkins Stravenue +Port Valeriemouth, OR 63613",1967-12-04 20:23:33,43:0e:01:9d:dc:0f,brian83@gmail.com,img/obama.jpg +Debra Webb,070-44-3622,69461,"0948 Patrick Common Suite 308 +South Jameschester, MS 00445",1925-12-11 04:08:13,b5:1a:c0:f1:7d:47,stephaniewilliams@parker-garrett.com,img/obama.jpg +Javier Copeland,263-59-6845,17760,"36275 Daniel Port Apt. 791 +West Michaelview, NH 49675-7233",1978-12-15 08:35:26,7c:82:75:3a:4c:a9,mwhitehead@gmail.com,img/obama.jpg +Mike Rivera,820-04-2219,76476,"74566 Brown Ways Apt. 748 +West Samuel, WV 42956-2920",1966-02-12 20:50:59,59:98:6f:5b:df:a8,tracy52@juarez.net,img/obama.jpg +Christopher Young,728-18-7000,95949,"7418 Ramirez Ports +Lake Juan, NV 23076",1948-10-17 02:16:13,06:f9:c8:38:f4:6f,torresbrianna@gmail.com,img/obama.jpg +Jaclyn Black,246-16-9904,01074,"69012 Stuart Hollow +East Anna, MH 82534-1708",1961-12-29 20:46:36,f5:59:cb:e0:e6:60,mcgeerichard@long.com,img/obama.jpg +Brandon Duarte,375-23-4397,72335,"6828 Mcgee Underpass Apt. 350 +Lake Wendyberg, TX 44736",1961-08-24 05:33:23,6e:70:8a:37:ab:62,afoster@yahoo.com,img/obama.jpg +Todd Bailey,156-07-2058,38887,"97568 Brittany Squares +Aaronview, CA 24837",1969-11-18 06:58:39,2a:72:11:f6:60:36,livingstondonna@gill.org,img/obama.jpg +Jacqueline Davis,114-10-6460,41129,"4870 Harrison Freeway +West Monicaport, ID 16556-8567",1952-01-13 08:31:13,a4:97:2f:d9:ae:a1,harrisonscott@hotmail.com,img/obama.jpg +Alison Mercer,217-44-8993,78879,"2392 Ronald Place Suite 464 +Eduardoport, CT 35517-2857",1990-04-16 23:51:59,34:c6:15:91:b3:e2,ngregory@hotmail.com,img/obama.jpg +Katherine George,018-99-6165,81398,"931 Patton Brook +West Alexandra, ID 62619-8508",1920-12-25 18:52:23,4a:db:39:c1:0e:5c,hterry@gmail.com,img/obama.jpg +Kaitlyn Baird,337-29-2365,80223,"14653 Barrera Isle Suite 828 +Chaneybury, SC 69486",1995-02-28 18:55:10,b9:32:48:aa:1b:f7,william62@hotmail.com,img/obama.jpg +Melissa West,214-08-0999,50389,"Unit 5324 Box 4587 +DPO AE 95786",1960-09-16 23:08:35,6c:13:95:70:5d:35,cpatrick@simmons-allen.biz,img/obama.jpg +Michele Walker,200-64-5137,30671,"513 Barnes Camp +Andersonland, NJ 61436",2013-02-02 05:37:21,5c:3e:f3:d4:84:15,caitlin29@lamb-long.com,img/obama.jpg +Donna Smith,108-74-9930,62584,"3069 Catherine Mission +Rickyside, MH 91992-5754",1954-09-18 16:24:45,f9:f0:71:ce:64:4e,xmarquez@meyer-doyle.com,img/obama.jpg +William Robertson,199-83-5897,61493,"502 Deborah Rapid +New Ryanshire, OH 41648-2054",2013-02-01 05:32:16,5a:77:bb:23:72:3c,josephpena@zimmerman-riggs.com,img/obama.jpg +Angela Coleman,794-58-2124,26986,"9802 Hernandez Bypass Suite 370 +East Benjamin, HI 49879-7933",1976-07-26 22:30:25,74:81:b0:57:3e:a1,zwhite@yahoo.com,img/obama.jpg +Steven Rubio MD,409-80-3530,16730,"0066 Samantha Square +East Eric, MT 69770",1958-09-10 11:42:16,95:c4:d9:f9:70:ee,johncook@yahoo.com,img/obama.jpg +Matthew Castro,094-73-3773,94667,"0446 Thompson Ridges +Deniseton, MP 61738",1991-07-10 15:54:01,8a:7f:4b:ee:7e:fa,ihunter@herring.com,img/obama.jpg +Kim Warner,782-93-2858,54190,"18382 Sarah Estates Apt. 335 +East Aprilhaven, AL 89972-4244",1920-05-09 01:06:29,ce:34:d6:91:ed:e5,hcastillo@hotmail.com,img/obama.jpg +Cynthia Frost,876-10-5966,13435,"547 Joshua Green +Kyliemouth, MO 68994",1934-07-23 20:17:15,75:8b:71:ad:70:4f,noahfisher@hunter.biz,img/obama.jpg +Donna Johnson,777-20-0655,33476,"3532 Robert View +Port Debramouth, WV 80633",1918-12-28 07:25:11,3b:6d:81:61:31:a1,sheachad@yahoo.com,img/obama.jpg +Brandon Rodriguez Jr.,170-11-1712,25781,"Unit 8094 Box 2593 +DPO AA 95206",1930-08-20 17:05:52,47:66:00:bd:4f:1d,kristin10@yahoo.com,img/obama.jpg +Kathryn Moore,575-23-5233,47814,"319 Hunt Grove Apt. 588 +Lake Johnmouth, OH 18838-8124",2005-07-21 16:08:36,39:3e:84:97:26:6d,amandaobrien@gmail.com,img/obama.jpg +John Lynch,502-56-3270,38201,"0357 Megan Highway Suite 847 +Lake Ryanmouth, MP 06213-6606",2007-01-20 05:56:54,c3:32:f3:1d:83:53,garcialatoya@davis.com,img/obama.jpg +Kayla Glenn,772-01-2718,67952,"372 Brandi Well Apt. 427 +Colleenfurt, VI 11722-9239",1933-11-25 01:44:55,20:48:3d:be:38:9e,buckleymichael@yahoo.com,img/obama.jpg +Gregory Robertson,567-81-9210,90559,"310 Cox Valleys Apt. 501 +Haileyfort, KS 59608",1936-04-24 20:43:28,63:e2:9e:34:b9:af,ricejohn@hotmail.com,img/obama.jpg +Jonathan Johnson,058-30-3799,25826,"5148 Brenda Motorway Suite 158 +Cookville, WV 08410",1953-02-01 19:32:30,f7:da:07:e3:38:d2,gwyatt@hester.com,img/obama.jpg +Sonia Sandoval,404-19-6598,55596,"3820 Alyssa Underpass Suite 485 +Estradaland, WY 73069",1941-07-20 00:45:11,bf:fe:61:b2:39:0c,mwhite@hotmail.com,img/obama.jpg +Caitlin Wilson,488-39-7601,77344,"76909 Stephanie Pines Suite 933 +Port David, WV 67526",1948-12-20 14:56:42,72:64:f4:15:ee:b3,richardklein@yahoo.com,img/obama.jpg +Dr. Jessica Lee,194-79-7623,87423,"500 Ashley Forest Apt. 619 +Lake Johntown, NC 41263-2332",1948-04-01 11:29:11,c9:fe:db:f5:a4:d0,john74@yahoo.com,img/obama.jpg +Kelly Hodges,865-86-0391,40009,"554 Walker Dale +Greeneport, RI 17736-5756",2008-01-20 22:46:33,16:64:b0:16:94:72,mdickerson@moreno.com,img/obama.jpg +David Alvarez,520-04-9987,93206,"26133 John Point Apt. 311 +Snydermouth, IA 07673-5195",1930-02-21 05:09:42,70:9a:dd:52:d9:66,scott70@carpenter.com,img/obama.jpg +Samuel Bush,460-77-1566,64664,"59580 Hendrix Motorway Apt. 764 +New Andrea, IA 46657-5055",1992-08-21 02:49:36,20:e3:58:8c:0d:fe,vincentthornton@yahoo.com,img/obama.jpg +Douglas Rodriguez,210-16-2156,61504,"637 Garcia Lodge +Lake Tarahaven, MN 16625-5386",2000-07-28 12:25:07,87:0d:d2:75:ab:e5,lambertsusan@yahoo.com,img/obama.jpg +Amber Fields,534-20-8707,71212,"00058 Vanessa Stream +Shannonborough, VA 00233-1831",1978-09-02 07:59:43,84:91:36:ee:38:5a,juan06@medina-gonzalez.com,img/obama.jpg +Hannah Dennis,408-38-5670,98187,"61937 Evan Plain +Pattersonville, MH 81825",1951-07-21 19:35:03,88:cf:ce:f9:7a:d1,bellmichael@hotmail.com,img/obama.jpg +Aaron Crosby,260-32-9437,36128,"649 Jeremy Estate +Rodriguezmouth, TN 73898-2078",2015-09-20 17:48:02,b7:12:f7:94:96:21,pughashley@gmail.com,img/obama.jpg +Brian Schwartz,546-42-5751,83465,"84764 Jane Ports +Myersburgh, PA 38066",1921-06-07 21:34:44,00:59:d3:65:ba:b8,scoleman@yahoo.com,img/obama.jpg +Kim Townsend,713-02-8651,03574,"PSC 1749, Box 4005 +APO AP 70077-1641",1968-01-04 06:47:51,73:48:bc:c7:26:0f,meyerraymond@yahoo.com,img/obama.jpg +Stephanie Pearson,632-81-1374,81059,"2840 Cook Viaduct +New Robert, CA 89192-8244",1921-10-30 09:20:02,9d:76:99:0b:ec:24,williamskristin@yahoo.com,img/obama.jpg +Erica Brown,885-01-0405,85612,"822 Barrera Crest Suite 429 +North Lynnberg, AL 23567",1980-07-08 14:16:08,5c:d0:f9:9a:9c:71,perezronald@white.com,img/obama.jpg +Joseph Richardson,503-42-4821,96317,"0254 Stein Lakes +Port Baileyfurt, VA 01948-5205",1982-07-11 19:00:09,71:16:f6:12:45:06,michaelrodriguez@leblanc.com,img/obama.jpg +Richard Williams,624-50-5866,43508,"USNS Hall +FPO AE 11769",1997-05-16 17:10:53,9c:df:61:a6:20:5a,dbates@brooks.com,img/obama.jpg +Carrie Duarte MD,412-30-6797,01527,"34648 Horton Hills +Lake Diana, IN 52737-2967",1992-06-13 04:32:11,94:90:9c:4c:51:76,washingtongeorge@andrade.com,img/obama.jpg +Shane Myers,451-88-2831,97348,"146 Michael Ferry +North Shannon, AR 04162",1962-09-22 18:13:43,ad:c9:c2:c5:e2:27,ppeters@chavez-smith.org,img/obama.jpg +Nicholas Brown,308-72-0696,67164,"704 Hall Mountain +Bradfordmouth, NC 43547-7675",1991-04-20 17:47:33,f9:a3:c7:4d:94:23,georgecarter@rush-johnston.com,img/obama.jpg +Michael Carey,607-89-6737,05666,"USNV Cox +FPO AA 59979",1969-05-16 01:26:01,4d:e3:6c:cc:8e:fb,emily02@browning-wagner.com,img/obama.jpg +Mr. Roger Ashley,240-92-9020,48732,"3443 Angela Underpass +Howardfort, MO 04513-0573",1969-05-13 07:50:58,79:dc:7c:bf:43:81,vstevenson@yahoo.com,img/obama.jpg +John Fuentes,410-27-2747,52061,"82251 Jose Lights Apt. 072 +Millerchester, MO 50121-6692",1934-03-24 08:38:16,6c:cb:53:14:64:84,markmoyer@robinson.com,img/obama.jpg +Jason Leonard,134-40-0675,34997,"349 Daniel Alley Suite 728 +Sheilahaven, NC 83201",1959-11-02 23:03:50,c8:59:69:d7:35:03,jacksoncraig@hotmail.com,img/obama.jpg +Bryan Evans,413-53-0285,74324,"57371 Moore Camp +Guzmanmouth, MP 74264",1917-11-09 01:26:00,b7:26:e3:61:9e:7c,austin58@gmail.com,img/obama.jpg +Kevin Sullivan,200-33-4481,47996,"PSC 9464, Box 7292 +APO AE 91385",1955-06-14 12:16:12,a4:f0:db:af:34:be,amandarichardson@singleton.com,img/obama.jpg +Joel Ryan,272-64-3822,87436,"87540 Daniel Mount Suite 626 +Matthewmouth, AK 21333",1986-05-04 11:51:56,1c:fe:ec:05:43:bc,irobles@gmail.com,img/obama.jpg +Phillip Joseph,431-12-7425,44176,"0919 Grant Creek Apt. 582 +Jonesmouth, OK 86359",1935-05-13 10:08:10,99:a6:fa:75:7e:7a,wcastro@burns.net,img/obama.jpg +Kathleen Gray,411-41-1815,20945,"37723 Evan Springs +West Howard, MT 96236",1949-10-07 13:47:39,b6:2d:10:f3:7a:6e,walkerpaul@yahoo.com,img/obama.jpg +Anthony Chavez,057-67-1754,19080,"1832 Dennis Divide +North Joy, CA 16476",2015-09-24 18:52:23,60:cc:ff:d4:ca:4d,alyssamccoy@hotmail.com,img/obama.jpg +David Mayer,800-95-1170,50784,"5674 White Isle +Nancytown, FM 80817-7136",1964-03-21 18:20:19,46:8a:36:56:db:43,douglasstevenson@yahoo.com,img/obama.jpg +Richard Johns,554-49-6780,83743,"282 Samuel Ranch +Laurastad, HI 56130",1999-01-22 00:46:17,5d:11:01:a6:c7:15,meganpham@ashley-martin.com,img/obama.jpg +Devin Miller,615-23-5500,81223,"1565 Jonathan Plain +Mathismouth, PW 40017-1013",1923-08-08 19:07:58,92:8e:f6:40:4d:17,katrina57@hotmail.com,img/obama.jpg +Christina Cohen,777-51-3215,64113,"293 Lindsay Trail Apt. 518 +West Nicoleborough, MN 06544-8066",1920-12-25 17:25:38,93:13:59:1a:be:2c,johnsanders@gmail.com,img/obama.jpg +Mark Reese,493-20-9560,82386,"777 Rachel Cape Apt. 461 +East Jasmineside, MI 65693",1941-09-08 13:25:40,ad:4f:cd:b3:d6:6e,uvega@garcia.info,img/obama.jpg +Michael Campbell,446-35-2449,52947,"4994 Kent Walks Apt. 623 +Port Ronaldport, KS 54492-4484",1945-07-18 22:28:05,20:80:3f:0f:41:97,michelle60@brown-ortiz.org,img/obama.jpg +Christopher Montes,194-53-8624,92451,"81423 Katherine Views Suite 190 +Bennettview, OR 16539-8354",2002-07-26 01:22:58,ad:b7:da:8a:13:00,michaelmay@hernandez.com,img/obama.jpg +Tina Reid,678-71-0722,65269,"89778 Michael Place Apt. 546 +Port Kristin, MT 46754-9021",1999-04-07 12:34:42,43:11:18:4d:41:d2,tuckerlinda@gmail.com,img/obama.jpg +Melissa Schultz,659-97-1080,43003,"1775 Michele Ferry +Moodyville, KY 88532",1985-05-31 12:26:20,c0:2d:c9:7e:1c:b3,egarza@gmail.com,img/obama.jpg +James Barber,360-92-4705,26928,"32412 Fischer Ridge Suite 739 +West Amy, MA 27052",1984-01-17 13:59:51,b4:32:17:57:a9:57,christopher44@lang.info,img/obama.jpg +Jennifer Rose,437-90-1954,21289,"286 Justin Square Apt. 119 +Connorfort, AK 90070-6131",1992-05-31 18:32:26,fc:12:12:fb:3a:d0,llyons@johnson.net,img/obama.jpg +Nathan Harrison,797-26-5535,52150,"873 Hill Pines Apt. 025 +West Kristenland, WI 63982",1922-10-10 20:26:31,0f:18:c1:18:84:7e,bettywhite@gmail.com,img/obama.jpg +Randy Myers,298-49-2861,98698,"USCGC Sampson +FPO AP 46337",1978-08-01 23:12:06,7e:4f:7f:e8:b7:d2,joshuasmith@scott.com,img/obama.jpg +Kevin Ramirez,168-37-5572,88956,"817 Shaw Lake +Lake Christopherberg, ID 03504-1201",2000-07-26 16:49:38,d6:2c:94:f6:30:95,burchbradley@gmail.com,img/obama.jpg +Marissa Johnston,020-53-1238,10674,"45169 Morgan Circles Apt. 944 +Scottport, WI 89037",1968-02-28 23:46:45,25:e9:0f:7e:75:c9,scott94@gmail.com,img/obama.jpg +Amy Sanders,053-69-9178,93101,"80025 Gardner Island +Reidmouth, IA 77053",1936-02-14 14:05:13,5d:19:f1:2b:dc:92,hillrandy@washington-washington.biz,img/obama.jpg +Amy Contreras,385-52-7032,86619,"853 Wright Place +Port Anthonymouth, PW 27629-0796",1995-06-09 13:09:48,dc:91:ff:58:c5:27,ufowler@archer.com,img/obama.jpg +Anna Yoder,803-67-5828,99454,"13817 Ryan Lodge Suite 546 +Williamsmouth, AS 12401",1976-06-11 07:11:05,b4:a0:4e:20:bf:76,katherinemccullough@gmail.com,img/obama.jpg +Michelle Mcdonald,405-09-2963,94502,"22251 Friedman Falls Apt. 056 +South Kristenburgh, MP 94096",2014-10-28 18:20:23,8b:9b:d5:b1:ba:86,salasjesse@gmail.com,img/obama.jpg +Jordan Doyle,621-29-3459,29295,"Unit 9249 Box 4771 +DPO AE 35859-1696",1980-11-14 07:26:48,2e:0b:32:0c:b1:6b,bakerzachary@hotmail.com,img/obama.jpg +Louis Johnson,048-40-7104,64161,"168 Jason Alley Suite 907 +Taylorberg, NE 58426-3130",1960-03-23 16:41:04,85:3c:fd:6b:e8:e7,benitezgordon@yahoo.com,img/obama.jpg +Jose Christian,404-29-3412,55193,"063 Oconnell Forks +Lisafort, WA 22421-2983",2015-10-15 12:25:18,0b:86:e2:c8:8e:62,seanbeasley@yahoo.com,img/obama.jpg +Jamie Smith,232-96-0263,39071,"31866 Robin Mountain +Mayschester, VI 48632-9779",1972-09-05 16:45:54,e6:48:c4:99:80:53,joshua44@hotmail.com,img/obama.jpg +Carla Jensen,141-66-1745,49596,"189 Jackson Forges Apt. 125 +South Rebecca, AK 05366",1939-10-08 22:08:04,d9:b7:29:9c:43:7c,jennifercarroll@yahoo.com,img/obama.jpg +Kim Hayes,360-10-0877,33280,"479 Alexandra Mill Suite 304 +Malloryburgh, NM 42023-5060",1921-07-18 19:53:04,e6:36:64:87:94:70,nicole43@yahoo.com,img/obama.jpg +Caroline Harris,737-27-0108,27125,"335 Williams Light Suite 520 +North Lauraburgh, NY 72749-1623",1935-12-07 01:43:05,a7:2e:38:a8:67:dc,vasquezronald@yahoo.com,img/obama.jpg +Ricky Mcdonald,510-41-3162,78871,"PSC 0215, Box 5602 +APO AP 79120",1986-12-17 14:58:12,59:d1:c3:b1:b8:f7,michaelchambers@kim-johnson.org,img/obama.jpg +Julie Richardson,862-87-5149,83505,"581 Cheryl Mission +Patricktown, TN 58297",2013-07-07 11:54:56,14:fe:6b:35:3e:fa,xthompson@saunders-walker.com,img/obama.jpg +Michael Palmer,316-74-6045,38065,"6580 Thomas Track +Port Raymondfort, OR 30346",2015-08-27 09:35:55,c4:4f:13:d2:e4:e1,romanlaura@douglas.org,img/obama.jpg +Leah Sanchez,707-06-5580,39720,"6995 Delgado Ford Apt. 076 +Smithbury, VA 75690-1319",1922-11-09 14:21:05,60:48:24:54:74:d3,angelakemp@garcia.info,img/obama.jpg +Wesley Gay,368-95-4253,47003,"USNS Mcguire +FPO AE 20993",1962-12-03 05:00:01,8a:b9:48:b5:82:54,howen@miller.info,img/obama.jpg +Dorothy Phillips,309-77-3584,29573,"75266 Benjamin Manors +East Kimberly, WA 02731",1960-05-16 13:57:04,b2:87:96:b6:91:37,barrypruitt@valentine-bautista.com,img/obama.jpg +George Estrada,558-05-2972,45336,"81977 Rebecca Shoal +West Wanda, OK 23100-4259",1940-07-12 07:57:53,5c:73:dd:72:49:92,uvasquez@gmail.com,img/obama.jpg +Philip Taylor,491-03-8079,82265,"337 Smith Harbors Apt. 649 +Port Michaelton, SD 01122-3619",1958-01-26 18:44:45,2b:2e:7e:6b:7c:69,jasonmiller@bishop.com,img/obama.jpg +Donald Irwin,543-37-9636,33867,"28735 Robert Rapids +West Kelly, OK 14937",2005-02-10 07:58:43,85:51:59:bc:13:c3,kayla76@yahoo.com,img/obama.jpg +Deborah Ruiz,873-92-6190,19711,"47134 Sharon Ranch Apt. 306 +Lake Edwardberg, ID 89264",1978-05-05 02:22:44,4a:d5:6b:f7:59:0d,comptonjohn@yahoo.com,img/obama.jpg +Kim Gill,772-84-8032,85966,"PSC 5475, Box 3042 +APO AA 63741-5325",1957-07-11 06:25:28,32:37:66:52:dc:6e,wsmith@yahoo.com,img/obama.jpg +Holly Graham,502-93-5173,88842,"56172 Jonathan Glens Suite 862 +Youngstad, NJ 68451",1972-08-19 11:43:54,b8:1b:04:aa:51:2e,zbrady@reid.com,img/obama.jpg +Heidi Moyer,185-80-3612,04143,"108 Christopher Ways Apt. 224 +Dorothyborough, CT 50252-9420",1960-03-29 13:01:29,15:3f:fb:13:7f:49,melissa65@harrison.com,img/obama.jpg +Patricia Harvey,831-99-4976,35376,"4258 Lopez Meadow Suite 011 +Galvanburgh, GA 83798",1985-04-09 18:38:03,c4:9a:a3:5a:2b:ac,hillthomas@gmail.com,img/obama.jpg +Robert Lopez,741-57-1575,67670,"883 Shawn Terrace +Martineztown, MN 73805-8249",1972-02-06 17:43:51,32:a4:37:d7:12:e5,morenojulie@flowers.org,img/obama.jpg +Robert Klein,496-38-0322,13682,"5850 Stephanie Estate +East Ann, FM 41700",1992-08-22 19:59:51,ef:de:a8:e6:41:9c,toni70@yahoo.com,img/obama.jpg +Debra Sexton,845-65-2928,84002,"385 April Forges +Jacobchester, TN 28735",1930-09-21 17:11:55,24:75:c5:fe:09:84,dburton@henderson-bond.com,img/obama.jpg +Dylan Wilson,298-91-6275,55870,"088 May Skyway +Lake Sarah, AR 24601-1930",1918-10-09 23:23:28,22:76:28:14:57:1b,pmartinez@pearson-ellis.com,img/obama.jpg +Kathleen Meadows,657-57-9264,11676,"31991 Thornton Overpass +Port Williemouth, NH 57954-6638",2010-09-30 15:58:58,a2:2b:1c:32:dc:65,melissamacias@cooper.info,img/obama.jpg +Bryan Nelson,608-79-5186,13776,"11405 Tommy Passage Apt. 771 +Rossmouth, AL 44861-5618",1940-08-02 21:19:08,40:0a:c1:8f:9b:d2,russelldawn@russo.info,img/obama.jpg +Micheal Miller,356-48-6354,06185,"233 Duffy Terrace Suite 228 +Mcculloughburgh, IL 20202-8252",1963-11-11 11:36:22,73:4b:df:85:51:11,steven56@gmail.com,img/obama.jpg +Adam Bell,817-82-2207,42230,"USS Higgins +FPO AP 15075",1984-08-31 02:14:43,40:65:cc:d7:83:12,david48@gmail.com,img/obama.jpg +Aaron Morales,374-95-9359,54319,"25557 Heidi Valley Suite 761 +Salazarmouth, SC 57619",1979-03-14 14:57:12,5f:54:1f:d0:33:28,wgonzalez@nguyen-chambers.com,img/obama.jpg +Jose Hall,652-75-3638,94837,"3044 Hammond Harbor +Wattsstad, PA 40610",1943-11-17 19:30:46,76:5c:72:18:00:e8,briansoto@gonzales.com,img/obama.jpg +Diana Greene,667-94-0061,70036,"25619 Wise Island Apt. 999 +East Todd, PW 76453",2003-04-21 01:26:35,a4:01:29:22:3d:30,jennifer43@skinner-nolan.com,img/obama.jpg +Natalie White,331-41-2293,75023,"86644 Jennings Key Apt. 323 +Lake Donald, ME 62953-9344",2010-11-28 04:17:28,8c:9f:e0:5e:30:61,morganlinda@hotmail.com,img/obama.jpg +Joseph Nguyen,319-20-1803,97741,"237 Ward Light Suite 222 +Rogersport, PR 05253-4780",1936-08-29 18:36:07,6b:44:35:3f:b2:ef,mannsandra@gmail.com,img/obama.jpg +Bradley Jones,474-93-0965,39505,"3014 Carey Viaduct +West Amandahaven, MT 29291",2005-01-21 01:42:40,30:23:ff:3b:ba:ab,nicholasmoore@anderson.com,img/obama.jpg +Samuel Thornton,575-63-5545,66179,"PSC 2058, Box 4667 +APO AE 05783-1829",1957-05-18 19:48:03,73:e8:c8:03:f4:a4,elizabethdecker@roberts.info,img/obama.jpg +Michael Miller,808-13-9353,85473,"1113 Michael Wells +East Angela, AK 57880",1986-03-18 20:54:47,47:a9:12:b2:f6:63,jmurphy@yahoo.com,img/obama.jpg +Paul Chapman DVM,296-53-4364,60170,"12944 Mosley Dale +Tammyton, TX 73508-6753",1954-04-23 20:45:59,35:87:58:fc:b9:c6,wendy54@gmail.com,img/obama.jpg +Angela Price,499-42-1960,37972,"2341 Frederick Squares +Williamsberg, OK 36341-6773",1927-04-17 08:23:50,9c:14:a4:51:3c:24,belljasmine@scott.com,img/obama.jpg +John Morris,456-42-1317,02256,"PSC 6834, Box 9791 +APO AA 43761",1942-03-14 09:58:41,c8:26:12:64:36:dc,alec60@hotmail.com,img/obama.jpg +Richard Fisher,832-71-1552,58499,"968 Conway Stream Suite 637 +New Frankville, GU 44607",1979-03-06 20:19:13,15:7b:c7:13:93:a1,stevenjames@gmail.com,img/obama.jpg +John Donovan,202-39-0941,16409,"65250 Perez Pike Apt. 129 +Blakebury, ME 94997-5828",1981-10-27 08:42:57,0e:ca:87:6b:c8:b6,porterkenneth@gmail.com,img/obama.jpg +Carolyn Robinson,712-17-4012,02310,"883 Anderson Brook +Hammondburgh, NE 38111-1284",1933-04-24 00:44:57,a5:ca:db:56:29:59,ejames@gmail.com,img/obama.jpg +Mary Cervantes,005-67-1077,23059,"6747 Williamson Orchard +Matthewsside, AZ 81374",1936-02-12 04:54:58,47:f1:d6:90:cc:d1,corey44@gmail.com,img/obama.jpg +Lisa Wheeler,442-03-9519,27013,"3105 Roberts Rapid Suite 788 +Hebertborough, TX 89226-0014",1971-02-15 12:16:10,d3:0a:e8:f7:3b:18,tranchristine@yahoo.com,img/obama.jpg +Jay Richardson,509-23-9249,70196,"650 Harper Ferry Suite 503 +West Jason, HI 98623-6333",1924-11-14 20:09:14,6c:8a:72:44:01:7a,matthew06@smith.com,img/obama.jpg +Isabel Powell,176-69-4462,65248,"734 Christina Wall Suite 728 +Bergertown, NC 45312",2004-11-07 15:34:48,27:8b:b6:84:71:67,harrisdavid@martinez.com,img/obama.jpg +Megan Curry,820-27-8587,46115,"0952 Katherine Villages Apt. 419 +Loveberg, VT 03907-5472",1985-10-17 11:22:23,a2:e2:e6:66:36:a5,rgarza@dixon-armstrong.com,img/obama.jpg +Nicholas Delgado,457-14-2843,07046,"19201 White Bridge Apt. 354 +West Alexanderstad, MS 25096-9165",1979-08-28 22:43:23,f8:95:dd:60:55:0c,ricemichael@hotmail.com,img/obama.jpg +Kristen Jones,755-87-7877,95305,"4855 Leroy Harbor Suite 640 +West Kyle, MA 63511",2002-10-04 19:32:20,35:07:7c:ee:23:4d,erin59@bryant-gutierrez.com,img/obama.jpg +Eric Brown,289-07-2618,99589,"3490 Ashley Islands Suite 700 +Sandersmouth, WV 29438-1412",1972-05-23 02:08:47,11:0e:27:66:8f:13,fordjeremy@martinez.com,img/obama.jpg +Sierra Cook MD,652-86-3302,44890,"696 Chambers Drive +Austinshire, IN 22462",1927-08-21 05:13:23,3d:5f:10:d2:35:0b,jonathannguyen@gmail.com,img/obama.jpg +Derrick Schneider,840-97-3205,06210,"PSC 9484, Box 6397 +APO AA 84223-0916",1970-10-03 21:26:50,61:cd:79:27:89:d2,kayla42@yahoo.com,img/obama.jpg +Jessica Carson,160-05-5570,85175,"PSC 8274, Box 5131 +APO AA 07110",1935-03-11 12:55:08,3d:b5:92:3b:14:e6,baileykristin@gmail.com,img/obama.jpg +Reginald Martinez,839-50-8402,78404,"01758 Derek Heights +Hillville, PW 09615",1966-08-26 01:48:27,41:42:71:e0:62:8e,scarpenter@atkinson-alexander.biz,img/obama.jpg +Patrick Gomez,779-98-1263,53911,"99524 Valerie Crossing +Port Samantha, KY 84698",2008-01-30 07:12:05,61:56:9c:16:3c:c8,timothy98@yahoo.com,img/obama.jpg +Terry Brooks,821-64-7387,99453,"51219 Lydia Gateway Apt. 665 +East Danielside, MI 14234-4548",1921-04-01 06:51:03,f4:70:e7:a4:85:94,xcollins@hotmail.com,img/obama.jpg +Chris Nelson,298-09-5937,33700,"925 Daniel Brooks +Lopezfurt, MA 17864-4612",1950-08-16 07:41:18,45:b7:d1:cb:ab:62,frydanielle@wolf.com,img/obama.jpg +James Rice,112-15-1847,41052,"021 Joshua Fork +North Sherry, PR 80640",2001-04-16 02:54:17,25:0a:dd:93:82:48,alexanderweaver@murphy-romero.biz,img/obama.jpg +Mrs. Melissa Adams,016-73-6575,52107,"7940 Logan Springs Apt. 070 +Emilystad, MO 04099-3549",1977-08-01 04:41:54,60:c0:90:93:64:0e,knoxwilliam@mitchell-smith.com,img/obama.jpg +Troy Singleton,880-02-9464,05398,"USNV Evans +FPO AE 86863",1977-04-08 04:03:59,ce:da:d2:04:61:dc,aaustin@yahoo.com,img/obama.jpg +Vanessa Harvey,309-25-0830,39094,"207 Jason Alley +Andersonstad, LA 11096",1973-11-10 07:27:39,21:f6:39:3b:a4:e2,kimberlycannon@campbell.info,img/obama.jpg +James Thompson,594-12-5536,89432,"50583 Harris Crossroad +New Shelbyborough, NJ 29397-4924",1951-08-11 22:45:26,71:ca:f0:42:ac:46,michaelyoung@hotmail.com,img/obama.jpg +Jason Peters,442-68-7094,74245,"63682 Harvey Court +Lake Jerry, WY 60236-6740",1998-03-05 16:04:24,59:6a:7b:1a:57:eb,juliacooper@turner-johns.com,img/obama.jpg +Dawn Edwards,883-27-2975,05662,"881 Robert Pike Apt. 257 +North Mirandafurt, NC 97919-5279",1999-10-24 02:45:40,bf:6a:c4:76:6d:21,alexandrahoward@harrison-crawford.com,img/obama.jpg +Joshua Zamora,577-34-9959,46916,"339 Chavez Cliffs +Richport, RI 95773",1936-04-06 15:29:47,eb:8b:5b:1e:3f:71,mreese@gmail.com,img/obama.jpg +Jacob Jackson,536-30-7796,08289,"4550 Gonzalez Plaza Apt. 450 +Andreafurt, PA 61075",1990-05-04 18:45:44,94:6f:1e:15:7b:48,jcummings@perez.com,img/obama.jpg +Alicia Young,649-59-1978,07007,"596 Jones Curve Suite 039 +Rodriguezstad, LA 24522",2009-08-14 00:53:15,e9:e1:47:15:ac:03,tracy50@yahoo.com,img/obama.jpg +Christopher Moran,874-26-3509,13478,"473 Welch Gardens Apt. 605 +East Evan, ND 74968",2016-07-29 02:54:16,29:43:4d:00:a3:0a,greenerichard@gmail.com,img/obama.jpg +Megan White,838-90-1608,94920,"461 Morgan Junctions +Tammyburgh, ND 22377",1984-03-03 18:53:01,b5:98:70:df:d2:51,charlotte05@patterson-murray.com,img/obama.jpg +Christopher Briggs,421-90-4974,45605,"531 Nicolas Heights Apt. 974 +North Sarahside, VT 38748",1935-11-21 13:47:48,61:cd:6f:5c:4c:da,jonesandrew@yahoo.com,img/obama.jpg +Amanda Clark,620-33-4672,31670,"88746 Carolyn Mountains Suite 708 +Port Nicholas, FM 88478-8242",1941-08-31 19:22:31,b3:4e:0f:c5:0b:02,sanchezstacy@yahoo.com,img/obama.jpg +Desiree Hughes,388-04-1874,20047,"3338 Madden Crescent +Jameschester, DC 37913",2003-09-24 03:10:50,77:dc:b2:ce:fd:a1,powelltimothy@johnson.com,img/obama.jpg +Joshua Garcia,750-83-0833,09648,"7054 Smith Landing +Lake Michael, VI 81477-0401",1993-10-13 14:56:04,52:a8:83:77:5a:f0,jamie34@washington-harris.info,img/obama.jpg +Deborah Price,482-44-3281,32025,"618 Rodriguez Mission Suite 539 +West Matthew, PR 04241",1979-07-24 04:46:51,a4:d9:03:15:46:79,billyduran@yahoo.com,img/obama.jpg +Julie Anderson,209-64-5640,06972,"6818 Vega Valley +North Danielleton, WI 30479",1923-04-01 20:48:28,4c:b6:b2:5f:8e:44,fperez@johnson.org,img/obama.jpg +Brianna Wilson,190-90-2092,81002,"503 Patricia Ville +Juliashire, WV 40534-9504",1922-06-05 17:15:55,bb:14:72:f5:5a:eb,jamesrodriguez@sexton.org,img/obama.jpg +Gregory Torres,884-33-0408,44255,"9836 Hall River Suite 158 +Lake Timothytown, AZ 03179",1992-02-10 01:36:54,61:3e:16:09:4c:89,megan27@santiago-white.biz,img/obama.jpg +Derek Guzman,194-96-4141,29109,"649 Amy Keys Apt. 457 +South Kimberly, MI 39326-7995",1935-04-17 20:53:39,66:a5:77:66:0c:15,felicia29@clark.com,img/obama.jpg +Lisa Ward,788-65-7331,73116,"11583 Michelle Corner Suite 201 +Michaelberg, OR 62588-1852",1952-04-27 10:17:42,c7:bf:10:00:50:97,hcole@yahoo.com,img/obama.jpg +Timothy Peters PhD,003-04-2105,08413,"14501 Jeremy Loaf Suite 524 +Sherryland, CA 58722",1934-09-16 19:47:32,ab:8b:45:01:85:35,jennifergriffith@taylor.info,img/obama.jpg +Amy Carter,308-12-9108,45069,"15125 Michelle Radial Apt. 331 +East Tara, KY 47393-9767",2002-03-19 10:35:38,ff:23:1b:a4:9a:38,harrisonmonique@yahoo.com,img/obama.jpg +Teresa Terry,878-09-8722,45425,"Unit 1196 Box 6196 +DPO AA 18610-0805",1997-07-16 18:00:50,f8:4a:32:d9:24:2c,kenneth17@thompson-chavez.com,img/obama.jpg +Tyler Edwards,205-44-6421,53381,"718 Tiffany Freeway Suite 381 +West Amberburgh, WV 83807",1930-08-26 11:04:50,ba:63:9d:37:7d:f4,larry17@dixon.com,img/obama.jpg +Anna Mcdonald,492-58-7927,39563,"25832 Ronald Ramp Suite 757 +Kevinland, AK 95287-2939",1945-05-01 22:47:18,d8:fa:81:6b:ad:1e,cjordan@gmail.com,img/obama.jpg +Rhonda Snow,209-78-6774,91291,"798 Black Prairie +Duncanfort, VI 55250",2012-05-22 18:06:07,3d:51:41:ca:ef:d1,kwoods@anderson-morales.com,img/obama.jpg +Jeffrey Rosario,440-53-0680,98975,"PSC 1870, Box 3687 +APO AP 95581",1995-10-04 00:48:13,9c:77:5d:60:24:58,acostascott@yahoo.com,img/obama.jpg +Carlos Walker,699-03-8463,86785,"872 Walker Coves Apt. 933 +Duncanfurt, WV 87855",1998-08-31 13:22:28,eb:ca:10:4a:e1:cb,maria44@hotmail.com,img/obama.jpg +Jesse Bridges,559-48-1379,11702,"6598 Paul Extension +South Brittanyfort, CT 68256",1973-04-25 10:05:04,2f:a8:4e:6b:b6:d6,cwhite@hotmail.com,img/obama.jpg +Eric Williams,255-63-4197,40422,"1092 Oconnor Fork +Christineburgh, OR 58830",1941-09-14 09:05:37,22:5b:c1:f5:02:92,reyesjoshua@gilbert.com,img/obama.jpg +Matthew Potter,324-27-5103,01252,"6615 Henry Walk +Lake Heatherview, WV 67508-7322",1969-08-24 16:53:10,fa:bd:9b:0a:48:4d,jonesmichelle@gmail.com,img/obama.jpg +Daniel Daniel,229-02-9587,67116,"241 Gordon Mountain Apt. 451 +Andersonbury, NE 76353-5808",1969-09-07 13:56:12,99:82:0d:7d:12:e5,qjackson@walters.org,img/obama.jpg +Anne Austin,354-79-4644,90095,"92540 Weaver Knoll +Lopezbury, ID 25911-6346",1918-04-15 06:03:52,72:ab:1c:0b:11:8b,robert71@rodriguez-wood.com,img/obama.jpg +Jeffrey Perez,250-79-4722,35069,"17784 Mayo Tunnel Suite 384 +Meadowston, MN 32127-1090",1968-10-11 11:38:57,d1:9e:4b:e8:7f:a5,brownshawn@hotmail.com,img/obama.jpg +Richard Flores,311-71-1170,20279,"67035 Mary Junctions Apt. 839 +Kochburgh, IL 79166",1958-06-14 17:51:23,11:5d:fa:a7:6b:e8,kristen51@yahoo.com,img/obama.jpg +Shelby Bailey,756-18-7933,59163,"155 Walter Points +East Isabella, OH 61568-3611",2011-04-04 16:29:57,a3:3e:5d:e1:90:5c,wigginsdestiny@fritz.com,img/obama.jpg +Christopher Smith,609-50-6766,70708,"533 Soto Lane +Victoriahaven, CO 70801",1923-11-11 07:32:25,80:24:8a:bc:5f:d9,kevinhobbs@yahoo.com,img/obama.jpg +Savannah Sherman,772-36-6317,19513,"341 Ashley Fort +Kevinport, NE 57025-1804",1930-10-06 09:03:07,c3:51:5e:47:91:ef,lance95@rocha-white.com,img/obama.jpg +Gary Mitchell,112-44-2875,06270,"05850 Blackburn Mews Apt. 696 +Calvinfort, MP 69000-5251",1975-04-07 02:20:38,da:be:75:1d:74:9d,brittany89@gmail.com,img/obama.jpg +Edward Nichols,381-25-4296,48413,"557 Reed Spur Suite 503 +Jamesview, IN 46385-9431",1985-08-26 18:51:42,d2:d1:94:2d:37:3f,foxkyle@cain.com,img/obama.jpg +Kathleen Mann,495-91-9375,70861,"8868 Mcgee Place Apt. 016 +Brownville, MN 14126",1918-12-13 02:34:33,b5:6e:69:de:61:4b,hicksjennifer@gmail.com,img/obama.jpg +Cindy Morales,820-35-3309,12648,"936 Bradley Stravenue +East Andrewberg, GA 11319-8182",1988-08-29 01:34:50,38:36:df:93:3f:50,schmidttroy@hess.biz,img/obama.jpg +Brenda Richards,030-89-2238,95848,"083 Smith Lodge +New Brendashire, NJ 65575",1986-10-22 09:13:50,71:10:0d:38:de:c5,valerie52@gibson.org,img/obama.jpg +Kathryn Strong,859-54-6069,35318,"6497 Miller Squares +Michaelville, MO 44610",1992-03-05 12:51:31,5e:cb:c0:e0:03:de,lindacain@hotmail.com,img/obama.jpg +Bradley Wheeler,036-56-3460,40109,"612 Rebecca Tunnel Apt. 477 +New Kristinview, SC 29207-5355",1923-04-16 10:56:32,8b:ac:e3:3a:7e:bb,christina23@bass-moore.com,img/obama.jpg +Dustin Summers,075-41-3644,15121,"6186 Amanda Points +North Teresa, TX 29536-6024",1986-02-01 11:53:57,8d:55:c9:cc:73:a9,ohouston@spencer-scott.org,img/obama.jpg +Lorraine Perez,502-06-6911,20879,"79190 Seth Plaza Suite 784 +East Omarbury, PA 29783-1733",1973-03-02 09:07:25,6d:81:cb:3a:dd:c9,lauren71@rivas.com,img/obama.jpg +Jessica Zamora,447-58-4097,63311,"9282 Garcia Square +Chelseastad, DE 47808-0813",1919-02-28 01:30:37,3a:e4:65:cd:50:f0,brendanroberson@wilson.info,img/obama.jpg +Robin Benitez,126-35-6424,15158,"76146 Cannon Terrace Suite 120 +South Robertton, WY 09473-5339",2015-04-07 20:27:14,f9:48:59:4f:ac:8d,fhill@hotmail.com,img/obama.jpg +Christopher Peterson,131-76-6652,19460,"8915 Brent Shores Suite 009 +Munozton, IN 66930-4118",2005-04-24 03:39:57,22:b4:a6:e3:b8:88,zhines@yahoo.com,img/obama.jpg +Jennifer Bailey,221-42-9834,89664,"08114 Laura Villages Apt. 065 +North Andrew, NV 49902-2683",1965-04-30 08:56:35,85:6d:b6:da:89:c1,william23@farrell.com,img/obama.jpg +Reginald Gibson,212-84-5386,29493,"42941 Jimenez Spring Apt. 944 +Rollinsside, RI 69423-9016",1957-01-17 17:10:10,0e:e3:cd:ae:a5:05,gaybrandi@gmail.com,img/obama.jpg +Brandon Robertson,228-95-7368,51990,"85308 Anna Brook +Matthewbury, DC 66032-9325",2005-04-22 00:18:54,b6:d0:06:68:f3:1e,zrussell@blankenship-anderson.info,img/obama.jpg +Jamie Molina,671-57-2148,90382,"62349 Chang Squares Suite 940 +New Jill, OR 19713-7748",1924-04-23 08:05:25,74:bd:8c:64:b7:1d,kathy29@baxter.com,img/obama.jpg +David Hunter,348-77-0528,89811,"03631 Samuel Hill +Jenniferbury, MH 70375-6702",1918-08-27 00:28:25,c9:4a:c9:88:65:57,melissa74@cook-diaz.com,img/obama.jpg +Donna Carroll,639-02-1101,11339,"10127 Elliott Trail +Vanessaport, VA 11060-3334",2000-05-18 23:02:04,e1:b7:06:ce:c6:f4,thomas05@hill.net,img/obama.jpg +Donald Heath,186-09-9195,38980,"12331 Vanessa Avenue Apt. 724 +North Jeremyfurt, MA 07312-6292",1977-04-15 20:48:12,65:5d:7d:04:0f:97,katherinejenkins@cooper.com,img/obama.jpg +Donald Parker,848-72-8567,16895,"763 Sara Circle +West Molly, FM 42149-1905",1970-03-21 14:56:06,f7:09:0c:c6:9c:90,patricia95@kelly.biz,img/obama.jpg +Alexander Reynolds,461-02-2802,02151,"USCGC Sutton +FPO AE 13573-2127",1977-08-30 16:04:44,fd:d9:c5:84:99:92,martinchristopher@hotmail.com,img/obama.jpg +Crystal Stewart,278-70-6107,15868,"02257 Shaw Coves Apt. 671 +Kevinfort, MP 58107-7341",1970-08-06 11:30:12,07:6e:a1:78:89:14,pbell@michael-dixon.com,img/obama.jpg +Linda Harper,247-79-6183,97140,"71263 Harrell Shores Apt. 125 +Michaelfort, MN 35858-2283",1964-08-24 00:14:26,77:5d:88:f2:c2:5a,benjaminmora@barnett.biz,img/obama.jpg +Rachel Higgins,653-57-5766,83261,"53204 Rose Underpass Suite 919 +East Sean, RI 34694",2003-07-04 03:56:54,d9:0b:34:43:8f:67,bensoncorey@gmail.com,img/obama.jpg +Stacey Sullivan,814-64-1286,64542,"199 Brandon Dale Suite 468 +New Erika, KY 28035-2678",1923-09-02 02:53:24,d1:94:ef:e9:49:e8,willisnorman@peterson.com,img/obama.jpg +Derrick Richardson,685-48-5293,02015,"00043 Rodriguez Park Suite 421 +North Katherine, OH 32410-2638",1944-12-23 22:55:57,9b:b3:96:06:34:3a,robertsmiguel@gonzalez-booker.net,img/obama.jpg +Latoya Ross,228-59-5611,51902,"888 Bailey Mount Suite 670 +Port Brenda, IL 39694-6109",1984-12-31 18:38:14,1d:4f:f3:7f:a3:f9,marc57@gmail.com,img/obama.jpg +Jenny Smith,117-67-8418,84463,"7496 Curtis Hills +Myerston, OH 74153",1933-08-03 16:54:21,1f:c6:3d:a3:2a:b1,cameron35@hotmail.com,img/obama.jpg +Ryan Cameron,026-60-1805,42730,"57667 Edward Junctions Suite 959 +Brittanyburgh, IA 99268",2001-10-06 06:55:38,87:a4:56:6c:99:33,garciaemily@swanson.net,img/obama.jpg +Jessica Cruz,345-01-9534,04762,"73214 Steven Ford +Robertside, WV 83052",1952-10-15 08:05:20,41:7a:3e:36:6b:14,glynch@baker.com,img/obama.jpg +Wyatt Brown,402-96-0621,52977,"104 Amy Station Suite 331 +Port Kevinfort, CO 74943-6906",1931-02-10 03:17:42,05:68:93:78:71:b9,rhonda61@gmail.com,img/obama.jpg +Leah Holmes,793-58-3841,66000,"133 Wang Drive Suite 485 +East Christopherberg, UT 72940",1943-06-06 11:05:33,01:59:ed:a3:31:02,fernandezkatelyn@lewis.info,img/obama.jpg +Kevin Lee,185-60-4410,68021,"698 Mitchell Ports +Mercadoton, PR 66577",1988-01-11 09:45:38,bf:d0:99:a3:e8:c9,nmiller@trujillo-meadows.com,img/obama.jpg +Patricia Bell,163-82-1468,30678,"6179 Kelley Street +Jacobville, IL 31024",1998-07-30 19:48:27,ca:c7:7d:ee:b4:1c,kimhunter@hotmail.com,img/obama.jpg +Vincent Le,181-57-2486,07541,"90759 Campbell Stravenue +Bensonland, MS 45974",1948-02-06 07:04:33,40:d3:21:7a:10:60,stephaniehorn@yahoo.com,img/obama.jpg +William Garza,855-20-4763,07634,"5235 Sweeney Mall +East Ronaldberg, MA 87387",1976-12-11 23:13:06,1f:f6:78:ff:c2:4f,wesleyweber@gmail.com,img/obama.jpg +Brenda Barr,173-01-5316,04308,"684 Rivers Underpass Apt. 178 +New Brettside, KY 12630-9965",1959-07-20 14:24:14,9a:6d:f6:72:f7:6a,michellejones@gmail.com,img/obama.jpg +Patricia Lewis,287-23-4415,52883,"0796 Cassie Route +Stevenmouth, KY 51209",1963-03-14 07:50:59,71:4e:28:1a:cd:07,mercedeslin@gmail.com,img/obama.jpg +Ralph Rodriguez,363-21-2264,79636,"82488 Regina Walks +South Ashleytown, ND 53323-3308",1946-10-19 03:41:23,f7:5d:16:a6:27:11,vperez@sanchez.com,img/obama.jpg +Roger Mahoney,434-62-2150,81084,"05682 Woods Fork Suite 450 +East Christina, GU 53777",2012-11-27 17:12:35,aa:33:10:d9:ee:b9,shaun26@yahoo.com,img/obama.jpg +Linda Carroll,073-95-4082,18549,"9231 Robert Cliff Suite 571 +North Angelaberg, SC 09596-0459",1958-05-15 19:01:44,01:8e:0c:0a:c0:97,markfoster@davila.info,img/obama.jpg +Madison Tate,787-27-2226,01861,"USNV Phillips +FPO AE 75394",1971-11-20 22:42:58,a4:3b:5a:26:8f:7a,margaret84@yahoo.com,img/obama.jpg +Jennifer Zuniga,383-34-2122,99179,"9757 Matthew Drive Suite 260 +West Virginia, MH 25388-7640",2000-12-23 11:24:14,04:5c:05:0f:24:83,smithwilliam@hotmail.com,img/obama.jpg +Rachel Brown,320-93-9836,15223,"722 Katelyn Squares +Bennettchester, SC 23119-0834",1991-01-17 19:30:03,88:1a:83:7a:99:39,jennifercrosby@black.info,img/obama.jpg +Peter James,020-24-6999,07805,"38944 Mueller Dam +Dianestad, CO 28467-6174",1980-01-14 19:03:48,5f:6c:1d:0b:0d:9c,michael34@gmail.com,img/obama.jpg +Michelle Thompson,565-85-9713,02793,"9301 Chelsea Summit +Port Erika, MI 83984",1971-07-12 18:20:58,a8:99:df:70:c9:9d,lindaclements@gmail.com,img/obama.jpg +Thomas Sanchez,536-85-4342,93514,"290 Ellis Ranch +North Richard, MS 29163",1943-05-05 03:08:54,ec:46:18:7c:36:bc,beth83@brown-turner.com,img/obama.jpg +Amber Walton,324-24-5874,09117,"67819 Holly Prairie Suite 899 +Lake Elizabeth, OR 98781-9810",1963-03-10 17:46:42,22:0a:7d:0b:9f:1e,milleredward@hotmail.com,img/obama.jpg +Evan Greer,455-94-1127,42185,"347 Cynthia Fields Suite 486 +Laurenborough, CA 71818-6113",1979-06-26 11:32:56,71:84:42:4d:03:40,michael02@arnold.com,img/obama.jpg +Richard Arroyo,609-08-2883,26396,"034 Amanda Isle +Grosstown, NY 11632-0751",1954-07-21 14:20:51,f8:85:43:a0:d6:2d,wgraham@gmail.com,img/obama.jpg +Angela Benitez,781-36-6908,44079,"392 Christopher Harbor Suite 853 +Paceside, ND 50754",1971-09-13 14:37:05,cf:2a:ac:5d:a4:62,zmiller@hotmail.com,img/obama.jpg +Matthew Hurst,765-29-8074,39278,"986 David Summit +South Sarahport, MO 04207-0379",1924-04-03 15:44:41,5f:90:6a:16:67:1e,williamreed@collins-hayes.biz,img/obama.jpg +Gary Howard,890-89-3171,02141,"181 Brown Extension +Jessicafort, IN 21109",1975-07-02 20:30:50,e3:40:26:49:b5:84,nicholasconner@gmail.com,img/obama.jpg +Dana Rubio,547-48-5230,79830,"16401 Bonilla Orchard +South Brandon, GU 91642-4344",1970-11-10 01:49:47,6b:b4:c3:2b:ae:cf,zoneill@cameron-murillo.com,img/obama.jpg +Christian Alexander,799-05-1100,79745,"240 Heath Extension +Martinchester, PR 63169",1950-08-08 03:13:00,80:2d:12:3a:5b:86,ghurst@yahoo.com,img/obama.jpg +Kevin Hall,899-70-9160,82731,"093 Rebecca Views Apt. 975 +East Julieport, NM 87898-2908",1971-02-16 18:03:10,34:e0:ce:c0:94:2f,matthewhawkins@gmail.com,img/obama.jpg +Marie Jimenez,333-29-4620,70156,"66410 Tanner Pine Apt. 621 +Lukestad, IN 47100",1978-06-08 14:16:58,85:bd:b5:a1:56:a4,warnerrobert@hotmail.com,img/obama.jpg +Tim Ford,725-70-5108,16144,"36455 Foster Manor +Port Meganburgh, PR 23500",1940-09-17 09:07:31,8a:44:37:86:b6:04,kramerkelly@george.com,img/obama.jpg +Miguel Rodriguez,213-46-5108,32256,"32600 Davis Islands +Marshallbury, MI 95823",1977-09-02 03:21:27,2e:27:31:39:04:3f,fgreene@yahoo.com,img/obama.jpg +Rachel Wilson,567-21-9926,95960,"88437 Delacruz Station Suite 362 +West Raymondtown, NC 55860",2000-01-26 13:09:24,35:6c:c4:86:55:86,sarah08@martinez.com,img/obama.jpg +Eileen Zuniga,655-66-1686,82903,"Unit 3478 Box 7224 +DPO AP 19329",1988-11-26 08:39:46,7b:cb:1a:87:2b:fa,tammytucker@hutchinson-foster.biz,img/obama.jpg +Morgan Hawkins,018-77-6182,19575,"6742 Webster Squares Suite 880 +East Maureen, VA 35133-3280",1998-03-22 19:54:25,7a:0e:c6:2f:bd:c2,lauren23@spencer-hawkins.com,img/obama.jpg +Jessica Mcdowell,610-36-4568,19736,"83302 Rice Branch Suite 981 +Lake Kimfort, HI 72347-4077",1937-10-25 23:45:16,ef:eb:3f:92:04:c5,zharrell@smith.org,img/obama.jpg +Matthew Bennett,755-33-7985,31020,"52409 Osborn Summit +Port Christine, WA 13816",1942-10-28 15:24:38,e3:e2:6e:25:0b:64,lisawelch@bennett-hill.net,img/obama.jpg +Kayla Gonzalez DDS,569-25-2228,33169,"Unit 1029 Box 5588 +DPO AP 39697",2010-12-27 09:04:57,bf:e3:93:ee:09:18,gomezkatherine@yahoo.com,img/obama.jpg +Natalie Burton,355-75-9515,36361,"536 Tonya View Suite 257 +New April, IA 20095",1955-05-07 12:47:03,a6:3e:ba:68:be:2d,thomaseric@burns.org,img/obama.jpg +Kenneth Mcguire,359-25-6159,26521,"48029 Barker Centers Apt. 544 +Port Christine, AK 02857-5644",1979-06-10 03:21:45,d5:32:c8:b0:9a:47,rowedavid@yahoo.com,img/obama.jpg +Rachel Patel,262-54-7925,14819,"661 Megan Plains Apt. 968 +East Williamland, AS 51587-3767",1966-05-21 02:27:00,eb:71:a3:a8:11:3e,robinsontiffany@hotmail.com,img/obama.jpg +Wanda Blackburn,506-33-1473,70800,"930 Ferguson Glens +Pottsborough, TX 61145-7637",2007-11-18 08:36:32,ab:72:40:ff:c8:5f,arivera@yahoo.com,img/obama.jpg +Ryan Baldwin,729-50-2613,93905,"80439 Porter Avenue Suite 916 +Garzaville, WV 77569-5300",1982-03-17 09:30:55,2e:73:d6:6d:af:e9,cruzjeffrey@hebert-carrillo.com,img/obama.jpg +Joshua Boone,781-37-1971,99864,"USNV Miller +FPO AA 74890-7908",2010-07-03 14:51:04,f4:bc:13:53:2a:1a,victoriaford@gmail.com,img/obama.jpg +Katherine Bauer,457-12-6689,39493,"78937 Rice Divide Apt. 369 +Norrishaven, MT 98312-9719",1925-07-30 20:41:27,a6:4c:4a:7f:b5:d8,nathanjuarez@hotmail.com,img/obama.jpg +Aaron Bell,486-26-4327,53667,"8014 Debbie Square +New Davidstad, MN 76462-2886",1937-10-17 21:48:56,7a:2d:50:55:cb:8f,bethpierce@yahoo.com,img/obama.jpg +Stephanie Schultz,112-70-3953,60100,"6554 Allison Plains +Timothyland, AR 29210",2016-12-23 02:59:23,a8:bf:6c:a9:54:e7,fcampbell@harris.info,img/obama.jpg +Sara Vega,394-77-6625,31076,"9863 Greg Views Suite 235 +Port Dalefort, DE 63173-2840",1960-03-04 05:50:04,ef:21:69:48:f8:f9,qjohnson@morris-perez.com,img/obama.jpg +Derek Wilson,793-75-6482,52298,"9085 Massey Mountain Apt. 344 +Powellberg, NY 33272-1436",1994-08-08 16:57:46,c9:1b:5b:dc:46:45,rodriguezsamantha@yahoo.com,img/obama.jpg +Alex Frey,600-54-6106,61434,"50076 Dylan Mission Suite 393 +Maryside, MO 65330-0197",1995-10-14 14:39:31,00:fc:45:8e:e8:f2,barbarajones@hotmail.com,img/obama.jpg +Stephen Snyder,822-36-6810,95419,"73996 Amy Junction +Josephton, NJ 47685",1942-11-08 19:27:20,9e:3b:4a:c3:f0:60,derek58@stafford.com,img/obama.jpg +Ethan Harris,323-10-8011,97095,"6040 Weiss Village Suite 875 +South Donnaburgh, NV 37981",1981-08-14 07:43:20,e1:be:26:56:25:51,john30@vargas.org,img/obama.jpg +Kristen Daugherty,012-66-8532,74885,"USNS Odom +FPO AE 04150-0800",1952-07-29 10:30:45,3b:1c:53:fa:1e:90,shelbywilson@foley-baldwin.net,img/obama.jpg +Jason Goodwin,046-68-6502,61504,"9343 Scott Wall +Jenkinshaven, OK 80513",1994-06-12 05:47:14,de:25:20:58:b8:02,meyersjason@yahoo.com,img/obama.jpg +Denise Taylor MD,760-18-5093,24569,"730 John Track Apt. 874 +Martinezfort, IN 66957-7385",2007-05-07 16:44:01,e0:01:35:a3:e3:18,williamsnathan@yahoo.com,img/obama.jpg +Adam Silva,419-19-0814,81019,"618 Natalie Station Suite 107 +West Sethberg, TN 71397",1995-03-06 16:30:28,7c:60:cb:d5:c8:26,jacksondaniel@wells.com,img/obama.jpg +Susan Vincent,598-06-5279,28187,"00804 Baker Point Suite 182 +Flynnberg, WI 11161",1993-07-24 01:56:03,27:84:49:3a:12:f1,ashleymurphy@yahoo.com,img/obama.jpg +James Smith,502-66-4371,05335,"284 Taylor Ville Apt. 382 +Bruceberg, DE 25310",1955-05-30 08:38:11,77:20:72:73:89:f1,dharrell@bowen-patrick.com,img/obama.jpg +Christopher Bates,134-83-4826,04282,"54597 Margaret Trail Apt. 352 +Bryanchester, CO 60167-2556",2017-03-17 18:55:52,ac:a8:83:d0:6d:aa,shelbyarmstrong@yahoo.com,img/obama.jpg +Heather Daniel,084-82-7233,92694,"24175 Cassandra Center +Port Davidtown, UT 31217",1957-07-26 21:04:44,0b:ac:88:4e:dc:0a,mperkins@yahoo.com,img/obama.jpg +James Bryant,097-13-6274,81024,"63847 Justin Causeway +Haroldburgh, ND 97124",1939-11-02 01:21:13,cd:45:ed:41:94:7b,jonesalan@yahoo.com,img/obama.jpg +William Martinez,715-82-9832,23837,"162 Leroy Trace +Jamesmouth, MI 06508-0061",1931-07-19 11:29:12,c5:19:98:0c:be:17,tmunoz@wright-cooper.org,img/obama.jpg +Brittany Johnston,553-60-2402,15589,"60115 Jessica Highway Suite 241 +Williamsberg, OK 11559-9293",1932-10-01 02:26:23,d2:4e:54:43:63:be,myersmatthew@gmail.com,img/obama.jpg +Clifford Williams,171-83-5915,11767,"90137 Baldwin Circles Suite 344 +South Anthonyburgh, VA 82351-9206",1994-07-27 07:17:12,31:66:95:b1:e1:ff,andersonrandall@woodward-soto.com,img/obama.jpg +Andrew Mayer,379-49-2295,16472,"2549 Wilson Trail +West Richardborough, MS 58904-2433",1939-05-05 17:38:23,31:9b:1d:66:97:05,ckelly@mack-george.net,img/obama.jpg +Matthew Klein,648-22-4165,81756,"54050 Black Road Apt. 100 +Perryton, CO 45092",1958-07-28 09:10:41,9b:7b:67:5d:6e:ee,robert62@gmail.com,img/obama.jpg +Tina Brady,659-75-8087,68031,"9656 Charles Ports Apt. 595 +North Kevin, PA 60649",1948-08-04 08:44:33,12:66:bf:4b:fb:a6,kentangela@hotmail.com,img/obama.jpg +Debra Jones,137-41-4276,23534,"6945 Williams Extensions Suite 327 +Gomezburgh, LA 64355",1926-03-19 19:53:34,d8:29:75:ec:ff:a2,gary41@padilla.com,img/obama.jpg +Caleb Stout,681-46-4881,81948,"1207 Woods Dam Suite 405 +Lake Johnberg, VT 93592",1968-06-09 03:38:36,dd:79:c1:db:05:cd,hallroy@gmail.com,img/obama.jpg +Nicole Gregory,899-30-5686,60661,"45063 Frey Neck +Lake Bradley, OR 90845-2943",1937-10-24 09:03:52,2a:14:f8:20:7e:74,burnsdenise@hill.com,img/obama.jpg +Christopher Decker,512-67-2227,06410,"66157 Lauren Street +Millerbury, HI 94564-0110",1934-09-12 16:01:58,a0:91:6c:e8:0a:0b,gcardenas@rodriguez-avila.com,img/obama.jpg +Robin Davila,290-15-7317,51422,"716 Miller Trail +New Anthonytown, VA 14628-7866",2011-03-22 23:37:59,54:b3:68:38:dd:38,briggskeith@baird-young.info,img/obama.jpg +Jennifer Miller,621-01-7446,52400,"38202 Dustin Heights Apt. 500 +East Danielle, FL 92407-2725",1966-08-26 00:17:45,6b:95:f1:59:e7:a8,benjamin41@cooper-simmons.com,img/obama.jpg +Jennifer Bryan,377-97-1860,09620,"66942 Mcdaniel Lights +Susanside, VT 64620-7135",1966-09-25 15:28:57,4f:42:a1:39:77:62,michaelholt@graham-ochoa.com,img/obama.jpg +Jonathan Strong,418-24-7201,65238,"6739 Luis Place Apt. 234 +Sheriview, UT 55294-9671",1933-10-28 07:12:25,77:f9:ea:59:f0:03,griffincassidy@hotmail.com,img/obama.jpg +Adrienne Sims,008-16-8388,14563,"5850 Kelly Rapids +New Miguelchester, FM 60252",1945-04-10 19:44:50,2c:08:6b:ef:82:b6,wilsonheather@hensley-rivas.com,img/obama.jpg +Brittany Morgan,607-02-2530,81992,"584 Green Circles Suite 318 +Lake Williamstad, ID 38365-6030",1976-11-11 01:24:58,3a:ff:51:eb:e9:b2,timothyanderson@hotmail.com,img/obama.jpg +Jeffrey Powell,814-74-0230,82684,"601 Bullock Vista +Janetbury, TN 69577-7082",1956-08-03 12:47:24,65:b6:60:56:1c:98,nwallace@young.com,img/obama.jpg +Michael Hays,497-37-3300,23440,"Unit 5184 Box 2485 +DPO AA 56796-5870",1992-08-22 06:44:59,58:8c:fb:47:95:b0,josephlauren@hotmail.com,img/obama.jpg +Danielle Howard,276-33-6648,26212,"626 Valenzuela Vista +Chelseashire, MN 19446-5193",1979-01-02 08:34:02,5d:b7:a8:e0:89:25,huffmanjennifer@shaw.com,img/obama.jpg +Michelle Lopez,273-57-2504,63799,"USNV Hudson +FPO AA 51901",1952-07-31 17:40:00,d8:f7:03:46:93:0e,matthewgraves@hotmail.com,img/obama.jpg +Shane Green,297-37-1413,13920,"680 Moore Parkways +Phillipsfort, DC 09044",1986-04-03 23:21:45,b2:41:01:ce:bc:f5,james48@aguilar-hamilton.com,img/obama.jpg +Tracey Fleming,867-50-1347,10216,"502 Erik Parkways +Jesusmouth, IL 73473-6836",1939-03-27 03:24:25,20:96:7b:7a:3f:3f,malikjimenez@gmail.com,img/obama.jpg +Peter Moore,648-53-2443,79241,"62746 Nancy Well Suite 199 +New Monica, DC 28709-4931",1969-07-31 09:29:05,6a:dc:28:fc:ec:fa,kyle17@hotmail.com,img/obama.jpg +Terri Pearson,377-72-5027,68767,"8414 Ashley Fords Suite 741 +Arianatown, NV 18858-8723",1928-10-31 05:41:48,c2:f2:5b:4f:9d:6d,danielhumphrey@crawford.com,img/obama.jpg +Thomas Dickerson,339-94-3629,82388,"7032 Williams Motorway +New Kathrynshire, AL 39483-7665",1953-02-03 12:40:33,0a:6b:c4:70:4b:19,colin87@rowe.com,img/obama.jpg +Nicholas James,555-22-2299,39837,"07205 Janet Brooks Apt. 427 +Juliamouth, AK 42003",1975-10-02 04:06:22,35:96:59:49:d6:6c,cortega@morrison-sampson.biz,img/obama.jpg +Brian Jones,810-12-6761,97093,"PSC 6042, Box 8867 +APO AP 41793-7152",1996-04-29 13:32:42,a7:57:2e:b0:45:a5,donna54@morgan.org,img/obama.jpg +Marisa Tucker,234-33-7769,86568,"559 Amanda Expressway +Toddfurt, MH 22174",1992-03-06 10:43:16,b5:2e:d0:b5:f1:5e,jeremiahwilson@parker.info,img/obama.jpg +Lucas Mccormick,709-24-8848,72113,"187 Brown Ranch +Thomasborough, WV 88308",1958-07-22 20:51:00,98:63:a2:5d:5b:35,carlosyang@yahoo.com,img/obama.jpg +Alexander Thomas,085-25-9924,89941,"54585 Watkins Curve Apt. 823 +Marktown, NJ 94716",1921-12-02 00:24:59,37:0c:bd:66:ec:e7,ibeard@williams.org,img/obama.jpg +Nancy Hernandez,251-50-7608,01100,"5718 Amber Walk +Johnsonland, AR 07250",1932-12-31 05:24:35,01:cd:09:9c:e7:39,sabrinahammond@yahoo.com,img/obama.jpg +Jennifer Ramirez DDS,683-45-6213,35136,"11553 Charles Light +East Daniel, NV 24424",1978-01-05 04:09:20,82:81:0e:19:6b:34,mitchelleileen@yahoo.com,img/obama.jpg +Lori Chen,168-88-3639,24830,"Unit 2210 Box 3166 +DPO AE 06720",1921-08-27 20:35:35,f6:ab:67:5d:a6:ae,stevenblanchard@hotmail.com,img/obama.jpg +Isaiah Middleton,568-05-3941,08972,"Unit 8146 Box 7296 +DPO AE 97666",1998-06-21 19:34:39,77:37:33:3f:08:9d,james31@hotmail.com,img/obama.jpg +Robert Brown,265-72-7601,24375,"049 Scott Wells +Williamchester, IA 11919-7184",1972-04-10 20:22:43,23:c8:98:85:73:10,cturner@hotmail.com,img/obama.jpg +Justin Olson,360-31-0950,20704,"1288 Monique Garden +Aprilshire, MI 77404-3727",1950-11-07 20:20:02,e9:e2:4c:ab:b6:7b,tylerrodriguez@hotmail.com,img/obama.jpg +Joseph Stout,810-81-7737,40742,"Unit 6004 Box 9703 +DPO AP 21436-2512",1920-10-01 01:28:39,f5:d8:1b:7f:e8:1c,chapmancarol@johnson.com,img/obama.jpg +Thomas Gibson,635-37-8727,54967,"USS Adams +FPO AE 14604-0179",1968-12-31 02:32:47,12:22:ad:9e:1c:d1,pcompton@trevino.com,img/obama.jpg +Darryl Prince,641-49-8214,33993,"7771 Joseph Fields Apt. 923 +Colechester, VA 01935",1986-11-18 14:12:47,73:a4:48:d6:e1:3d,tmccann@martin.com,img/obama.jpg +Rhonda Perez,770-10-7780,55996,"Unit 7708 Box 5742 +DPO AA 64497-2843",2011-11-25 05:11:01,14:c4:d7:b8:23:fa,danielle96@estrada-pace.net,img/obama.jpg +Benjamin Young,345-11-2432,52071,"23363 Cline Hollow Apt. 735 +Susanchester, IN 55798",1991-02-26 14:05:02,ac:10:86:e2:05:32,karicrane@turner-martinez.com,img/obama.jpg +Christopher Henderson,144-62-7538,26378,"19492 Hopkins Common Apt. 898 +West Kylemouth, AR 71648-6898",1941-01-06 19:05:26,ca:7b:07:6c:86:e3,richard92@perez.com,img/obama.jpg +Jonathan Valdez,414-56-1509,24903,"8067 Roberts Via Suite 613 +Lake Lisa, WA 00270",1998-01-06 22:06:20,e9:41:15:1c:76:f9,janet18@gmail.com,img/obama.jpg +Rhonda Allen,625-49-9281,59186,"3796 Hill Fall Apt. 533 +Teresaville, SC 48350-5709",1935-07-13 16:10:14,5e:ed:26:d4:8e:f6,stepheningram@frazier-chandler.com,img/obama.jpg +Jenna Boyle,561-14-9893,70671,"21012 Keith Mall Apt. 178 +Aliciamouth, ID 02119",2013-03-11 10:51:51,9c:98:8e:f3:18:df,vickihunt@gmail.com,img/obama.jpg +Ronald Turner,144-84-8381,99711,"072 Olivia Highway Apt. 431 +Taylorstad, OH 48706-7436",1982-08-17 20:01:08,7f:ad:b2:e6:3d:8a,alex26@richardson.com,img/obama.jpg +Justin Bass,433-42-4041,84051,"0267 Donald Light +Jimmyport, GA 95654-4355",1960-01-27 20:22:15,e3:1a:53:56:e2:21,diane81@hernandez.info,img/obama.jpg +Kristine Rivas,102-66-8959,03489,"USS Wolfe +FPO AA 16834-5250",2004-10-03 21:16:18,27:5a:24:06:fe:32,breannajones@miller.net,img/obama.jpg +Erin Kerr,253-20-0142,68964,"329 Felicia Groves Suite 213 +West Richardville, IL 35776-8893",1989-11-03 22:19:45,a7:67:0e:75:f2:21,christophermoon@hotmail.com,img/obama.jpg +Arthur Pittman,435-31-8271,83390,"925 Wendy Shore +Morganport, VT 70096-0336",1984-10-20 15:48:33,88:5d:28:56:72:fd,joshua11@martinez-morgan.com,img/obama.jpg +Michelle Krueger,522-65-1315,53268,"635 Morris Causeway Apt. 686 +East Samantha, VA 10565-1032",1976-08-14 23:27:17,3c:40:7c:a4:53:6b,karadiaz@gmail.com,img/obama.jpg +Amy Holder,795-99-4741,03932,"122 Matthews Coves Apt. 632 +Johnsonburgh, GU 56606-4567",1967-07-01 22:27:38,65:9a:f3:34:25:5c,salazarsara@yahoo.com,img/obama.jpg +Cindy Sanchez,449-29-7330,98340,"1199 Bean Parkways Apt. 149 +East Amandabury, IN 72421-7563",1994-11-30 10:27:52,b7:72:57:ef:c6:e7,trose@hotmail.com,img/obama.jpg +Hunter Walsh,336-26-3179,72796,"Unit 0397 Box 2411 +DPO AA 71562-3048",1967-03-25 22:50:13,52:dc:93:e1:a1:72,yrivera@kirk.net,img/obama.jpg +Marc Patrick,552-84-0410,68614,"2452 Williams Locks +Morrisonfurt, MT 62882-5847",1968-12-13 21:57:11,4a:b0:f2:47:fe:c6,sandracurtis@gmail.com,img/obama.jpg +Joseph Barajas,285-94-9245,12939,"756 Curtis Spur Suite 280 +Michellechester, ID 31760-5391",1998-01-31 04:48:26,7b:a1:0d:5a:1f:94,davidthompson@barnett.com,img/obama.jpg +Gwendolyn Williams,372-40-8546,10465,"7792 Archer River Suite 506 +Haleyberg, OR 38784",1976-06-06 09:01:47,a2:2a:10:98:9c:b2,karlagarcia@pineda.com,img/obama.jpg +Ashley Green,756-50-1075,14127,"PSC 1485, Box 4107 +APO AE 40229",1965-12-05 11:16:42,63:53:d4:ce:a6:36,paulfitzgerald@robertson.com,img/obama.jpg +Joseph Bell,665-59-2235,67629,"2616 Meza Throughway Suite 841 +North Samantha, NM 73460",2010-10-17 05:20:37,c6:e2:61:93:cf:b3,theresaarnold@barton.com,img/obama.jpg +Zachary Osborne Jr.,729-91-3057,45143,"52866 Moore Orchard +Lauraland, RI 66225-6608",1934-02-05 21:06:34,60:04:37:a5:1a:e7,jasmin54@yahoo.com,img/obama.jpg +Jennifer Meza,729-64-6782,07320,"4774 Ramos Junction Suite 798 +New Edward, NH 76082",1958-10-27 11:32:58,49:b9:87:c4:12:e0,mossmark@gmail.com,img/obama.jpg +Emily Sheppard,260-88-7005,48101,"898 Williams Club +Victoriafort, MS 57503-8927",1966-12-09 22:49:46,0a:cf:e6:9e:88:be,christine84@gmail.com,img/obama.jpg +Teresa Byrd,757-80-8094,12300,"080 James Fords +East Jennifer, NC 19523-0982",1979-02-28 10:52:25,db:bc:d2:ae:2b:0b,vmorrison@yahoo.com,img/obama.jpg +Joseph Galvan,189-71-6704,33247,"18362 Henry Locks Suite 590 +Port Cheryl, ND 04609-6853",1994-07-27 21:06:52,bb:db:9d:bb:f3:b0,austinhale@yahoo.com,img/obama.jpg +Troy Baker,244-32-7723,15113,"80943 White Streets +New Paul, PA 95972",1945-07-04 12:25:44,91:fc:16:31:ca:7e,diana75@yahoo.com,img/obama.jpg +Patricia Frederick,624-82-1497,38779,"79645 Debbie Ranch +North Michael, GA 31883",1955-06-16 21:52:32,e2:10:51:b9:c9:63,leslie95@yahoo.com,img/obama.jpg +Christina Thompson,169-50-6222,04285,"79171 Jacob Lane Suite 842 +Port Eric, ME 01016",1958-02-06 19:11:44,bb:d9:df:b3:a0:78,edwardharding@gmail.com,img/obama.jpg +Alexandra Mcbride,867-90-1090,46838,"367 Bethany Mountain +Pateltown, MD 29216",1979-09-07 10:55:48,25:01:7a:e7:d4:36,gonzalezjonathan@gonzalez-garcia.com,img/obama.jpg +Matthew Tapia,870-39-5576,61873,"7034 Burke Oval Suite 235 +Foleybury, NC 86131-0333",1949-02-21 09:53:33,cc:0f:13:ee:3d:11,robin12@lewis.org,img/obama.jpg +Samantha Day,043-47-8784,99778,"132 Melissa Rapid Suite 265 +Angelfort, OR 14251",1940-11-21 06:49:12,7e:d1:49:16:00:5b,berryronald@hotmail.com,img/obama.jpg +Vanessa Jones,844-85-9205,19651,"658 Hernandez Parkways +South Abigailbury, VA 47507-3583",2011-03-09 17:21:51,13:0c:01:e4:fb:0a,knightrichard@hotmail.com,img/obama.jpg +Sally Meyer,301-72-6973,41470,"697 Mcmahon Vista +Davidberg, VA 78401-4938",1970-11-18 11:44:17,31:81:4b:58:42:08,wgoodwin@yahoo.com,img/obama.jpg +Lauren Moore,716-81-3593,44979,"56629 Matthew Spurs Suite 264 +West Dawnmouth, LA 81275-7980",1962-08-14 21:33:02,1c:29:b8:ec:62:2d,jeannepalmer@yahoo.com,img/obama.jpg +Kyle Porter,580-61-2774,97305,"127 Fields Forge Apt. 810 +New Jeffrey, TN 27838-1196",1989-07-29 18:57:04,99:66:45:fb:be:39,morgancharles@hurley.com,img/obama.jpg +Crystal Huffman,752-12-0628,67304,"58419 Williams Islands Suite 632 +South Sophia, FM 44729-2273",1993-07-04 07:56:56,47:8f:31:2d:56:82,dmartinez@foley.biz,img/obama.jpg +Thomas Archer,328-13-9045,48080,"47378 Michael Forest Apt. 370 +North Stephanieport, WI 33525",1971-05-03 02:27:40,91:b0:06:6e:76:5c,danielgarcia@flores-rodriguez.com,img/obama.jpg +Christopher Palmer,096-90-2608,45799,"318 Rogers Shoals +North Dawn, OH 00755",1968-03-31 00:23:30,85:fa:88:3e:27:b6,garrettreynolds@holland.com,img/obama.jpg +John Sanders,437-74-0275,94611,"211 Estrada Islands +Lake Jeremy, VA 36636-7445",2012-04-03 12:29:01,b0:9f:d8:83:5e:fd,matthew15@hotmail.com,img/obama.jpg +Anthony Leonard,677-81-8876,25572,"08160 Deborah Spur Suite 527 +Heatherton, PW 88191",1983-07-12 20:42:23,f8:32:1b:8f:56:3e,pwoods@hotmail.com,img/obama.jpg +Paul Taylor,891-26-9027,80851,"93627 Tammy Oval Apt. 620 +North Chad, MT 72982",2005-12-31 18:13:58,2e:5d:39:9f:b0:e1,davisdonna@hart.com,img/obama.jpg +Sabrina Schmidt,161-70-9071,37912,"5330 Young Estates +North Anthonyburgh, VT 92163-3087",1958-04-22 16:45:49,37:91:bc:28:a3:9d,fharris@hull.biz,img/obama.jpg +Keith Johnson,228-95-7718,21078,"424 Sandra Knolls Apt. 265 +Matthewchester, TN 87047",1948-07-21 09:56:45,55:14:be:65:5d:02,helen72@savage.com,img/obama.jpg +Sara Mccann,324-02-4947,13754,"374 Theresa Brooks Apt. 413 +Simonbury, CT 70840",1976-02-21 06:25:03,f0:87:15:70:79:81,maureen13@yahoo.com,img/obama.jpg +Sean Brown,484-89-2550,40439,"694 Wiley Trafficway Apt. 690 +North Julian, PR 70918-8912",1958-10-01 07:55:13,f7:0f:1d:ea:c6:89,cainjames@richardson.com,img/obama.jpg +Sean Gilmore,871-11-1073,60379,"PSC 4066, Box 5812 +APO AE 02254-1857",2000-07-16 01:31:57,55:73:3b:96:c0:ae,johncarter@higgins-wright.org,img/obama.jpg +John Osborn,345-61-7042,37243,"669 Dennis Walks Suite 210 +West Christopher, MT 05916",1988-04-02 20:21:34,59:2b:8f:af:52:b3,christine32@hart.org,img/obama.jpg +Julia Lyons,455-05-9503,66896,"09865 Nathaniel Forge Apt. 099 +South Loriside, MI 11455-3937",1922-11-03 13:17:35,d1:ed:8a:36:ae:a2,jason83@raymond.com,img/obama.jpg +Anthony Duarte,197-49-6282,43049,"92797 Glenn Manor +Duaneport, AS 30336-0203",1966-02-02 09:34:18,75:86:80:5a:31:59,xmunoz@terry.com,img/obama.jpg +Patricia Phillips,013-21-3748,44913,"54519 Alicia Manor +North Jacob, WY 20835",1918-05-17 00:25:49,df:0a:c2:d8:2f:8f,susan61@cook.info,img/obama.jpg +Ryan Glass,890-30-8508,25756,"99931 Kari Course +East Samantha, SD 18060",1988-06-05 07:35:50,b0:b8:d0:8c:00:aa,adougherty@yahoo.com,img/obama.jpg +Jeremy Christian,802-46-7397,53673,"7980 Dennis Expressway Suite 020 +Bryantfurt, ND 30333",1999-07-25 18:25:14,f4:47:87:5c:7f:5e,jenkinsgregory@mclaughlin-murphy.com,img/obama.jpg +Jacob Rubio,695-38-4014,10674,"290 Bowen Rapid +West Vincent, NE 24178",1954-04-13 05:16:53,ad:0e:4e:8c:bf:ca,marqueztimothy@yahoo.com,img/obama.jpg +Ana Flores,054-73-3960,17642,"5835 Elizabeth Park +Jonesberg, GA 81858",2015-09-07 06:03:30,dd:39:04:bb:68:1f,daniel50@yahoo.com,img/obama.jpg +Marc Barrett,436-18-8259,01640,"92285 Lowery Shoals +Mossmouth, RI 32026",1949-05-13 21:38:19,f2:ee:6a:3c:87:e8,jjackson@haas.info,img/obama.jpg +John Cohen,458-50-0918,77111,"9494 Cindy Trail +Christophermouth, WI 36003-4223",1950-09-27 00:13:09,1c:53:69:d3:9a:c3,jackson77@simpson.com,img/obama.jpg +Devin Gardner,645-64-0098,18740,"3181 Garcia Parkways +North Williamborough, VA 26566",1939-09-04 23:01:28,85:6f:67:73:9a:77,dsmith@durham.com,img/obama.jpg +Patricia Dixon,097-56-6485,47271,"USCGC Oconnor +FPO AE 07531-4663",1957-07-23 20:01:22,fa:bb:04:9f:c2:a2,jack44@anderson.com,img/obama.jpg +Melanie Boyer,874-18-9219,76354,"40727 Franklin Street +Angelicastad, SC 98774-5074",1952-01-08 14:11:16,36:50:a0:2a:c0:6c,ashley70@gmail.com,img/obama.jpg +Maria Knight,279-62-8420,53882,"547 Perez Viaduct Suite 756 +Port Joshua, SD 30687",1984-05-28 22:48:56,60:07:57:c2:b8:96,margaretwoods@goodwin.com,img/obama.jpg +Steven Mccarty,628-70-8537,81504,"6314 Brian Gateway +South Emily, AZ 73902-7621",1933-08-04 18:35:40,e0:dc:7e:b0:7c:02,joshuamurray@yahoo.com,img/obama.jpg +Karen Wilson,161-71-1455,48426,"9497 Kyle Views Suite 471 +Brendaview, CT 02005",1954-11-23 08:47:48,d8:6f:1e:18:b9:b2,heidigarcia@hotmail.com,img/obama.jpg +Christopher Smith,557-76-7184,99721,"1550 Oconnor Extension +East Melissaview, NH 20738",1954-02-03 14:15:00,f8:c8:e9:eb:83:7d,dannysullivan@yahoo.com,img/obama.jpg +Keith Miller,200-19-9533,01985,"78292 Smith Keys +Christopherfort, MA 46526-4594",1927-03-18 09:13:38,bf:72:dc:2d:39:12,andrewsmith@li.com,img/obama.jpg +Bonnie Barnes,020-35-7157,76713,"53884 Kristina Mount +Alexisland, GU 87531-7296",1945-11-26 01:45:31,76:b9:94:b5:e7:0b,deannamiller@king-harris.com,img/obama.jpg +Sherri Mueller,228-82-2717,23708,"5558 Norman Square Apt. 345 +Robertfurt, IL 28768-3920",2004-12-01 03:56:55,f1:62:64:bc:81:5a,maryleonard@hunt.org,img/obama.jpg +Teresa Ramirez,214-56-4396,09048,"7964 Anthony Highway Suite 324 +East Jamie, AR 48289-4166",2011-10-03 01:44:55,0b:90:e9:6c:66:83,pwilliams@gmail.com,img/obama.jpg +Scott Lang,767-28-6360,70298,"710 Michael Passage Suite 516 +South Erica, WY 30593-5376",1979-09-06 20:50:05,a2:9f:42:a4:c9:46,bradley29@hotmail.com,img/obama.jpg +Philip Smith,125-05-3152,53557,"0347 Connie Junction +Jacksonfurt, RI 83928",1970-11-23 23:54:35,4e:b6:4c:60:cc:b5,michaelharrington@hotmail.com,img/obama.jpg +Brad Villarreal,658-03-0488,14456,"140 Nelson Corners Suite 821 +Williamsmouth, CO 95179",1985-07-29 03:55:22,f4:c4:fe:0b:07:45,daniel48@hotmail.com,img/obama.jpg +Hannah Jones,671-56-1812,24196,"499 Thomas Circle +Karenmouth, NJ 34187-8011",1922-10-31 09:34:01,52:ee:1b:0b:55:4c,jade16@yahoo.com,img/obama.jpg +Jason Henderson,420-59-2832,15997,"7984 Thornton Points Apt. 454 +Lake Miguel, WA 38294-8993",1966-03-30 06:25:34,75:cb:89:02:3b:73,jennifer96@williams.com,img/obama.jpg +Paul Washington,759-01-4713,98310,"34330 Smith River +Lake Normaport, IL 51354",2016-11-18 15:08:09,7d:8c:9d:5e:1c:11,sotokayla@campbell.com,img/obama.jpg +Scott Vincent,636-59-2896,79362,"67965 Christopher Dam Suite 336 +East Richard, CO 13003",1937-10-20 05:11:34,98:8e:94:76:f1:b4,ewheeler@hotmail.com,img/obama.jpg +Kimberly Mcdaniel,846-92-9732,72613,"988 Felicia Rapid +West Thomas, VI 13343",1935-04-20 00:10:21,0b:91:2b:d8:12:36,staylor@yahoo.com,img/obama.jpg +Rebecca Keith,430-26-5267,01470,"USNS Myers +FPO AE 90815-4039",1967-10-28 04:53:31,30:aa:31:f4:8a:cd,jonesmichael@hotmail.com,img/obama.jpg +Cindy Estrada,049-44-2111,28502,"29443 Smith Common Suite 905 +South Amberborough, NC 45028",1933-07-27 05:58:33,c9:ba:18:ca:04:5e,jeffreysanchez@yahoo.com,img/obama.jpg +Isabella Lowery,146-16-2096,62224,"USCGC Paul +FPO AA 15884",2003-07-23 03:00:39,0f:45:21:20:a6:4f,marcweiss@braun.com,img/obama.jpg +Angela Elliott,668-70-2620,94814,"898 Mary Pass Suite 706 +Jenniferbury, ID 39422-7640",1999-01-26 16:34:58,db:a5:80:03:c9:f2,heatherwilson@rocha.com,img/obama.jpg +Hannah Higgins,142-43-9957,01016,"271 Carr Extensions Apt. 610 +East Michelleberg, NV 83558-2111",1996-09-21 15:53:19,b2:86:71:76:c6:12,zalvarez@yahoo.com,img/obama.jpg +Brett Bishop,640-85-0567,52824,"72527 Juan Ridges Suite 628 +Christopherville, WV 08918-4907",1956-06-16 08:06:27,12:a8:5c:f5:ba:cf,smithricky@yahoo.com,img/obama.jpg +Mandy Terry DDS,066-11-3005,70790,"1587 Maxwell Wall Suite 510 +North Mason, AR 33850",1978-06-01 20:01:21,38:65:39:ac:2b:c4,davidsmith@yahoo.com,img/obama.jpg +Michele Wright,814-76-6462,59335,"74128 Hill Brooks Suite 886 +East Ryanburgh, AR 73013",1949-09-26 03:40:33,e9:d5:06:0d:41:b7,jose11@alexander.info,img/obama.jpg +Maria West,308-26-9443,07807,"286 Taylor Locks Suite 793 +Maloneland, FL 34412-0593",1953-06-08 07:48:27,21:55:f4:4c:22:af,pellison@gmail.com,img/obama.jpg +Janice Gordon,553-69-9965,07410,"49259 Vincent Rue Apt. 571 +Shaunberg, MS 32396-4437",1950-08-20 14:11:10,24:ec:e4:6f:78:2c,leamanda@hotmail.com,img/obama.jpg +Megan Campbell,380-88-6393,14336,"5505 Ashley Mall +West Brendan, OK 04187",1964-01-31 18:56:11,d4:2b:2f:52:65:fe,porterandrew@hotmail.com,img/obama.jpg +Christina Wallace,865-84-0526,97918,"USCGC Gutierrez +FPO AA 14449-5566",1974-05-03 11:47:54,de:5b:69:82:f4:be,debrajimenez@gmail.com,img/obama.jpg +Brian Wilson,715-79-0186,45388,"341 Sanchez Ferry +Hollandburgh, GU 49251",2002-04-14 02:48:10,8d:b3:a9:aa:92:f7,jacqueline49@taylor-hudson.biz,img/obama.jpg +Linda Patel,225-83-5534,93542,"98898 Maynard Pines +New Michael, NE 10673-7965",1997-09-11 07:56:13,53:bf:07:f9:8e:6f,kbutler@oliver.org,img/obama.jpg +Robert Harris,702-19-2522,77414,"56387 Desiree Drive +Clayburgh, PW 61115",1967-09-21 21:58:03,00:4b:c5:50:5d:e5,gnguyen@brown.com,img/obama.jpg +Tracey Osborne,142-36-2499,72248,"90737 Zuniga Trafficway Suite 320 +South Troy, CT 86333",1975-05-13 16:08:49,9e:8f:5e:5c:af:f1,terrancegraham@marshall.info,img/obama.jpg +Carlos Montgomery,464-41-7228,14803,"3691 Phillips Centers +Thompsonville, DC 66980",1930-12-12 06:38:00,df:35:11:11:8f:62,caldwellangela@hotmail.com,img/obama.jpg +Lauren Richards,278-89-4716,40306,"183 Hardin River +Lake Lindsey, FL 81464-9425",1944-10-07 09:01:40,49:e1:94:48:3e:53,sarah50@yahoo.com,img/obama.jpg +Margaret Fisher,717-50-7343,63957,"804 Thompson Run +Lake Hunterview, ME 86724",1967-11-22 06:13:30,7e:82:12:7e:ec:25,keith05@love.info,img/obama.jpg +Shannon Andersen,874-41-1440,11655,"8529 Jessica Streets Suite 848 +East David, CO 51850",2004-04-19 08:42:38,95:5f:71:20:7e:74,jeremy05@perez.com,img/obama.jpg +Susan Edwards,804-31-5242,33697,"072 Sutton Loop Suite 131 +New Nicole, IN 90708-4859",1982-05-28 20:02:02,f6:72:ae:85:55:c9,deannaperez@ryan.com,img/obama.jpg +Jordan Richardson,187-42-1658,27587,"61868 Valenzuela Gardens +Lake Crystalburgh, FL 47671-2341",1949-09-30 14:34:50,3f:45:aa:30:36:af,wgreen@yahoo.com,img/obama.jpg +Cesar Liu,259-74-7895,46464,"04937 Jeffrey Crossing +Lake Theodore, TX 44183-2371",1955-03-03 21:26:41,22:04:a6:d7:a6:7c,hartmanthomas@alexander-howard.com,img/obama.jpg +Christopher Oneill,155-09-8687,03628,"6340 Sean Centers +New Lauraberg, MI 28422",2015-04-30 14:53:04,51:fc:7f:7b:6e:19,jerry63@melton.org,img/obama.jpg +Jessica Harrison,392-71-0305,89271,"018 Flores Glen +Lopezburgh, CA 06851-5418",1946-01-26 09:52:17,b8:f5:04:43:26:42,browningjessica@gmail.com,img/obama.jpg +Anne Rogers,243-51-1380,59743,"257 Brewer Pike +East Kimberlymouth, NH 22709-9683",1951-04-16 16:06:53,66:e0:8e:bb:8c:13,joshua19@hotmail.com,img/obama.jpg +Erica Flowers,633-69-4671,05086,"2038 Velez Light +New Margaret, SC 07198-1554",1976-07-07 13:06:28,c8:f7:8b:dd:7a:84,xgray@smith.com,img/obama.jpg +Timothy Freeman,381-67-7703,07732,"1449 Timothy Canyon Apt. 146 +Mollybury, ID 55391-9929",1976-06-27 16:49:55,94:fa:f8:c6:a5:08,amy18@mora.com,img/obama.jpg +Ellen Tran,687-47-9368,48399,"4075 Amanda Highway Suite 415 +East Allisonchester, ME 80841",1966-06-21 09:57:16,95:95:13:ab:e5:e3,crystalfreeman@hotmail.com,img/obama.jpg +Taylor Mcdaniel MD,301-62-2304,49420,"302 Rodriguez Crescent +Jacobview, SD 13675",1929-06-29 13:19:42,bd:a2:fa:44:91:90,samantharamos@schaefer.com,img/obama.jpg +Donna Jones,525-64-6927,52604,"59861 Ramos Harbors +North Sergioton, WY 79301",1994-07-30 15:36:17,9e:0c:e9:a4:f0:3e,fritzdavid@weber.com,img/obama.jpg +Michele Gomez,073-78-8481,61248,"79177 Kimberly Street Suite 469 +Parrishton, AL 09714-8840",1971-04-16 13:14:05,c4:60:34:59:fe:9d,kennethbraun@thomas.com,img/obama.jpg +Edwin Williams,651-31-9049,53920,"9376 Barbara Springs Apt. 545 +Griffithchester, IA 18439",1921-02-12 23:19:01,cf:f7:55:32:02:88,pettyscott@yahoo.com,img/obama.jpg +Ashley Lee,485-42-1611,54016,"683 Christina Port +East Robinbury, OK 27917-5503",2015-02-08 08:48:42,ac:99:ac:61:20:d0,yellis@ewing.com,img/obama.jpg +Amber Arnold,586-59-2323,52747,"41478 Edwards Crescent +West Deborahton, ME 91970-4622",1992-10-23 12:35:37,84:f3:9e:bb:6e:c1,katherine10@yahoo.com,img/obama.jpg +Debra Hardy,702-20-7133,78066,"083 Christopher Wells +Jeffersonhaven, NJ 47645",1983-06-03 15:09:11,f7:99:2f:1f:16:fe,warnerheather@snow.biz,img/obama.jpg +Jonathan Cisneros,867-91-9971,86556,"083 Crystal Meadow +New Stevenstad, IN 02502",2011-08-23 13:32:29,18:4e:47:50:e7:ec,ynichols@caldwell.biz,img/obama.jpg +Monique Stevens,488-13-5172,23064,"01437 Mcfarland Dam +Victoriafurt, OH 87922-7099",1939-05-24 12:15:55,c8:ab:3a:15:ac:64,dianarodriguez@yahoo.com,img/obama.jpg +Lisa Castro,859-14-1740,33806,"251 Ward Course +Calderonberg, ME 18989",2013-12-27 02:02:16,d2:83:53:2a:d5:ee,donaldkirk@cortez.biz,img/obama.jpg +Michael James,218-63-6664,34771,"USNV Higgins +FPO AA 91693",1939-09-28 15:54:13,b1:e9:5e:14:1f:e1,lauragreen@peterson-rice.com,img/obama.jpg +Maria Drake,085-20-9733,14854,"08198 Anderson Harbor +Port Ronald, GU 50279",1952-11-02 13:51:02,07:88:23:19:e0:1d,timothy04@hotmail.com,img/obama.jpg +Matthew Nguyen,644-69-6101,40927,"834 Evans Springs +Dianeport, PR 55330",1949-11-30 13:24:54,85:9b:b1:25:b4:6b,ojohnson@erickson.com,img/obama.jpg +Tina Edwards,166-98-1609,23142,"Unit 2028 Box 3368 +DPO AA 83297",1919-07-26 01:56:41,0c:be:62:54:b7:d5,uwalker@alexander-archer.net,img/obama.jpg +Danielle Cobb,468-78-2977,22755,"5214 John Drives +South Bruce, OH 01142",1933-02-24 02:00:58,cd:ce:90:2e:c7:2a,smithdaniel@rivera-anderson.net,img/obama.jpg +Angel Morris,871-59-6694,49757,"871 Scott Orchard +Lake Jodyport, CT 15748",1961-10-30 15:11:56,ab:4a:8e:e5:64:df,sbailey@anderson.org,img/obama.jpg +Phillip Small,207-08-9975,29958,"4061 Whitaker Square +Kristiburgh, UT 01952",1974-04-07 22:03:23,f1:67:7d:51:38:5f,ryan75@richardson.org,img/obama.jpg +Cassie Rivas,433-63-1035,40816,"7286 Brown Curve +Lake Aaron, SD 57939-0125",2012-03-06 09:01:17,5d:db:3f:15:db:9f,crystalgross@rose.com,img/obama.jpg +James Curry,848-32-8410,11094,"967 Amy Terrace Suite 405 +Greenfurt, NE 77351",1973-12-02 03:27:05,84:df:8e:45:47:ad,thomas99@yahoo.com,img/obama.jpg +Brittany Mitchell,733-54-6745,30433,"15107 Pham Summit +Sarahberg, GU 25819-6777",1922-04-22 22:10:47,6d:f6:6a:0d:c5:b4,edwin48@thompson.biz,img/obama.jpg +Brenda Robles,268-63-1608,55943,"163 Scott Circle +South Donald, WY 58549",1924-10-27 01:31:11,3f:31:ea:b4:f8:22,jacksonashley@chan.com,img/obama.jpg +Elizabeth Manning,842-50-9620,55986,"484 Christopher Freeway +South Laura, CA 32885-7347",1937-09-27 22:56:07,c4:8a:b7:2c:64:7b,kimberlyharvey@yahoo.com,img/obama.jpg +Christopher Campbell,832-78-1951,24788,"4862 Larry Forks +Danielfurt, AK 67500",2005-08-03 18:50:59,8f:d9:0d:31:88:7d,christopher24@fields-maxwell.com,img/obama.jpg +Thomas Hernandez,537-83-9409,23715,"10352 Shaw Glens +Olsenport, WV 72460",1977-05-10 21:21:21,03:9c:ce:6c:4e:bd,gonzalezkendra@hotmail.com,img/obama.jpg +Brandon Sosa,244-98-1042,17044,"2345 Nicholas Curve Suite 485 +East Sara, LA 28123-2131",1980-10-12 20:30:25,16:b6:c8:db:bf:e9,jill80@bailey-morrison.com,img/obama.jpg +Glenn Moody,783-56-0087,78647,"96501 Kristen Viaduct +West Mariehaven, HI 44502-1179",1966-10-05 09:54:53,95:0e:cd:ac:c5:51,barbara66@espinoza.org,img/obama.jpg +Anthony Burke,750-58-9564,78856,"42670 Martin Canyon Apt. 381 +Robertchester, AL 35146-0761",1990-03-31 15:04:37,84:1d:9b:7b:fb:6f,christina40@yahoo.com,img/obama.jpg +Dr. Ryan Smith DDS,302-25-2001,92733,"18658 Maldonado Plaza Suite 605 +East Amyborough, FL 33404",1990-02-08 04:32:47,ae:0e:b3:4d:dc:37,thomasjason@yahoo.com,img/obama.jpg +Elizabeth Pollard,068-56-8698,58997,"6924 Kyle Way +Richardstad, GA 49949-3918",1994-12-06 03:32:28,0b:5f:d4:7d:4c:58,diane23@long-edwards.com,img/obama.jpg +Lisa Johnson,644-47-0691,97259,"03579 Harrison Loop Suite 184 +East Brettville, NM 08226",1936-09-25 01:40:13,37:01:0b:12:f5:91,mario44@taylor-king.com,img/obama.jpg +Taylor Jones,575-48-3904,53038,"96482 Samantha Flats +Westtown, PW 19576",1933-10-23 20:53:40,9b:ea:47:ec:f3:c3,jasonmcfarland@gmail.com,img/obama.jpg +Luis Lynch,589-39-1861,25333,"0095 Hoover Knoll +Ambermouth, LA 97316",1987-03-22 13:54:06,1d:bd:f9:01:20:5a,thompsonmelanie@hotmail.com,img/obama.jpg +Christine Stone,839-51-9632,88017,"450 Jason Lodge Suite 573 +North Cynthia, MI 54355",1942-05-08 16:26:10,d3:af:4f:68:17:a9,christopher62@gmail.com,img/obama.jpg +Robert Chung,111-82-2190,05879,"93652 Bean Spring +Port Eric, WV 33188-3514",1925-01-25 06:07:39,c5:95:b2:60:2e:46,rosehuang@hotmail.com,img/obama.jpg +Robert Fields,359-99-1257,87401,"5783 Shannon Bridge +Hartshire, UT 65837-5670",1918-06-17 07:49:18,f5:6b:a3:00:96:48,tina33@hotmail.com,img/obama.jpg +Margaret Stewart,668-26-9399,66962,"138 Jones Lodge +East Matthew, MI 79817-3680",1942-07-22 01:25:38,71:da:b1:a6:dc:ed,ybowman@hotmail.com,img/obama.jpg +Leslie Sullivan,038-49-8701,57811,"USCGC Brown +FPO AE 16552",2006-04-22 11:52:30,b2:b0:78:73:c7:e0,tara93@ellis-reed.com,img/obama.jpg +Andre Gonzalez,804-10-0442,81002,"1492 Mathews Ports Apt. 638 +Johnsontown, CA 15992",1977-11-16 09:08:12,ea:2c:97:df:84:44,iwoods@jones.net,img/obama.jpg +Janet Taylor,886-46-4193,68216,"160 Peterson Square +Amberborough, RI 25972-5505",1934-10-19 19:52:28,b0:5f:67:92:ff:4b,angela01@diaz-ruiz.com,img/obama.jpg +Michelle Hodge,371-97-7262,04302,"2818 Carr Drive +Victoriafurt, NV 34895",1949-12-28 13:49:39,55:02:7d:e8:da:87,hullbrian@rios.com,img/obama.jpg +Kristin Gonzalez,334-86-3696,45280,"239 Joseph Stravenue Apt. 267 +East Jesuschester, IN 28397-0662",1969-09-13 07:57:32,cf:1d:41:e1:06:8e,markkelly@gmail.com,img/obama.jpg +Ryan Harris,337-10-9370,26250,"508 Nicole Lane Suite 714 +Andrewstown, HI 86935-7482",1918-12-16 01:35:21,f4:5b:d8:9c:9c:6a,hayeskatelyn@hotmail.com,img/obama.jpg +Stephanie Oliver,469-60-1749,65202,"8479 Lauren Rapids +West Erichaven, GU 49278-3734",2007-12-14 13:05:35,4c:5c:dd:12:c6:af,beth83@gmail.com,img/obama.jpg +Carla Sexton,197-82-6560,97366,"1682 Victoria Turnpike Apt. 071 +Port Michael, AL 57128-6601",1921-02-21 13:59:06,79:04:b3:3b:73:c3,richardselizabeth@gmail.com,img/obama.jpg +Ricardo Frank,062-31-5445,10873,"84921 Ward Grove Apt. 302 +South Melissaport, WI 56006",2007-05-28 19:14:37,b7:e5:3a:61:62:73,oedwards@yahoo.com,img/obama.jpg +Matthew Torres,256-07-7804,87467,"16103 Jesse Junctions +Pamelaton, NH 91771",1933-02-20 22:22:46,6f:1e:41:be:dd:18,robertgreen@gmail.com,img/obama.jpg +Mr. Andrew David DVM,593-08-3243,84757,"65327 Kimberly Throughway Apt. 423 +Emilymouth, CT 82099-3277",1939-09-27 10:01:10,18:72:8d:0a:17:6b,juliedodson@gmail.com,img/obama.jpg +Brenda Knight,664-68-0049,74960,"7974 Brandt Ports +Heatherview, AZ 35246",1954-03-12 20:54:14,0a:0c:fd:27:35:39,jeff25@oliver-johnson.net,img/obama.jpg +Amy Ruiz,045-43-8137,94185,"USNS Robinson +FPO AA 38319-7660",1922-04-14 13:51:00,31:77:5c:85:57:9a,qpowell@gmail.com,img/obama.jpg +Jennifer Mayer,517-16-5492,22326,"PSC 8999, Box 1589 +APO AE 38856-4837",2014-05-23 21:29:44,47:5e:7e:6a:75:95,teresa20@barr.net,img/obama.jpg +Christopher Stephens,593-38-5671,45537,"262 Buchanan Run Apt. 745 +East Ryan, CA 08704",1953-01-06 19:00:14,af:bd:ee:78:e2:04,judy48@gmail.com,img/obama.jpg +Janice Davidson,033-82-3044,46957,"PSC 1570, Box 3034 +APO AA 38480-7611",1954-12-21 01:54:30,4d:df:4d:63:90:3a,browndavid@kim.net,img/obama.jpg +Katherine Porter,029-51-9150,50847,"861 Jennifer Creek Apt. 105 +West Daniel, AS 17607",1957-05-14 06:52:27,d9:46:3f:41:b6:ee,beasleyjessica@gmail.com,img/obama.jpg +Tracy Horne,072-79-2366,83036,"915 Emily Vista Suite 663 +Davidshire, DE 68046",1993-06-03 21:38:05,f1:3f:a8:bc:ad:ae,bryantdeborah@trujillo.com,img/obama.jpg +Nicole Evans,381-17-3279,12507,"8390 Michelle Crescent +Andreashire, MN 77529",2003-05-04 12:22:18,8c:79:33:b3:61:3e,julia40@stevenson.com,img/obama.jpg +Henry Jackson,270-53-1462,30779,"66128 Desiree Ville +Thomashaven, AS 84975",2004-10-20 21:38:35,47:9a:74:9e:f3:3e,garzabrenda@yahoo.com,img/obama.jpg +Joshua Martinez,645-15-9196,90213,"40731 Franklin Via Suite 030 +New Raymouth, DE 77033",1946-10-30 18:44:43,bd:e3:e1:aa:a6:b1,rachelmeadows@york-brown.com,img/obama.jpg +Brandon Gonzales,199-07-1004,64806,"250 Hinton Tunnel +Dominguezfurt, LA 95858-0925",1973-02-15 05:53:31,85:4c:05:4e:02:77,smithjames@hotmail.com,img/obama.jpg +Sandra Navarro,392-43-7625,63110,"Unit 5587 Box 8636 +DPO AP 02104",1990-08-29 19:05:47,de:6d:1c:4d:a2:ae,kaguilar@yahoo.com,img/obama.jpg +James Gibbs,832-80-5294,99602,"38082 Williams Bypass Suite 086 +Carlsonville, NM 49228",2011-09-09 05:38:36,69:4b:a1:62:89:59,amanda39@hotmail.com,img/obama.jpg +Sheena Jones,305-90-2850,44123,"9467 King Station Suite 503 +Blairshire, WI 94036",1997-10-18 10:23:36,29:ab:9b:9e:d4:d1,denise08@morse.com,img/obama.jpg +Thomas Marshall,764-93-9267,13556,"416 Anne Villages Apt. 724 +Lake David, VI 35726-9081",1920-09-06 10:11:27,72:81:55:5f:f2:91,dominiquemartinez@obrien-leblanc.net,img/obama.jpg +Kelsey Evans,188-17-1804,89670,"355 Jeffrey Mills Apt. 886 +Port Elizabeth, SC 04320-7011",1949-10-12 14:18:27,10:e0:06:97:ae:42,timothy38@gallegos.com,img/obama.jpg +Anita Morgan,720-81-9944,61783,"27717 Rogers Locks +Walkerfurt, WA 00242-7120",1995-08-16 04:31:59,58:5c:5e:cb:a4:3a,jcalhoun@gmail.com,img/obama.jpg +Sharon Brown,442-36-6356,18440,"8538 Robert Plain Apt. 838 +East William, TX 89434-6409",1920-06-15 16:53:37,6f:e6:2f:01:5a:6a,mfrederick@edwards.info,img/obama.jpg +Amanda Reyes DVM,207-85-6653,92484,"USNV Ray +FPO AP 92956",2000-11-15 06:39:49,ea:a4:67:67:e2:27,cynthia61@hotmail.com,img/obama.jpg +Jonathan Hanson,417-67-7548,98717,"2788 Keith Oval Suite 700 +South Tiffany, PW 36308-6376",1976-09-03 22:04:01,d0:d1:89:a8:e8:e6,davidrodgers@grant.com,img/obama.jpg +Taylor Cabrera,191-85-3547,27635,"89537 Rose Grove +East Sonyafurt, AZ 64526",1964-05-09 01:58:23,66:e7:12:13:1b:b5,gabrielle14@pearson.biz,img/obama.jpg +Anthony Gonzalez,801-95-4613,27398,"38477 Kidd Light +Port John, NY 93632",1936-08-04 08:04:34,44:1c:52:52:2e:be,sierracarrillo@gmail.com,img/obama.jpg +William Horne,698-32-2476,07446,"USCGC Obrien +FPO AP 57076-4713",1995-01-27 06:42:03,64:79:eb:c5:b1:7f,jessica85@yahoo.com,img/obama.jpg +Alexis Mcneil,289-07-4135,40822,"55156 Hernandez Freeway Suite 647 +Petersview, CA 73525",1935-12-25 15:08:48,29:b5:a6:a4:c8:5f,monroenathaniel@gmail.com,img/obama.jpg +Rebecca Ray,477-13-3109,22591,"Unit 8458 Box 3568 +DPO AA 21207",1923-07-18 17:45:54,57:73:37:eb:5f:d2,ybarrera@gmail.com,img/obama.jpg +Donna Clark,386-23-3224,83796,"11111 Erica Cape +Andrewsborough, HI 51192",1934-10-28 04:59:33,c8:c2:e8:47:4a:6f,sjohnson@shelton.info,img/obama.jpg +Marc Thomas,589-43-1344,93217,"5527 Sandra Lock +Angelabury, WI 74050-3651",1934-09-23 05:42:28,c3:80:06:37:b2:3c,tdonovan@morse.com,img/obama.jpg +Michael Schroeder,591-49-2306,76017,"63314 Soto Way Suite 981 +Port Bobbychester, NY 25016",1926-08-19 23:14:03,19:c4:b6:c4:f5:b0,coreywallace@hotmail.com,img/obama.jpg +Amy Cox,073-96-0079,27470,"56067 Jamie Canyon +Stevenborough, OR 38232-5870",1927-05-25 09:18:15,ad:38:8c:af:b7:83,qjones@lopez.com,img/obama.jpg +Laura Barber,243-69-4253,75850,"3158 Romero Hollow Apt. 943 +Walkerhaven, SD 87512-4289",1944-11-13 03:27:39,b1:57:be:b4:d3:7d,madisonhamilton@yahoo.com,img/obama.jpg +Michele Powers,748-48-5788,56638,"573 Joseph Cliff +Sosabury, KS 95987-3390",2015-04-13 22:14:16,3d:ef:d7:e2:f1:81,bryancarter@hotmail.com,img/obama.jpg +David Wheeler,643-99-0215,71703,"386 David Flats +North Nicole, AR 04776",1979-07-11 21:14:11,47:26:19:7e:ef:d9,amymoore@hotmail.com,img/obama.jpg +Michael Mills,341-32-7248,35607,"0079 Kimberly Curve Apt. 901 +New Brendaview, NV 64287-8455",1923-12-26 21:16:01,c3:f6:24:b3:6b:ad,karahunt@hobbs-hernandez.com,img/obama.jpg +Diana Hatfield,033-19-4810,61105,"493 Steven Pines +North Seanfort, IN 20822-6730",1994-12-19 08:15:08,e4:90:ae:b8:50:43,xking@hotmail.com,img/obama.jpg +Shannon Bean,486-38-7697,53731,"6597 Edwards Divide Suite 714 +Port Ericchester, CO 99967-0850",2009-08-24 17:01:37,05:96:b4:ec:89:e9,lewiskenneth@yahoo.com,img/obama.jpg +Amanda Evans,274-27-3840,05655,"9803 Jacob Mill +Bradleyfurt, WI 39416-6794",2011-04-20 19:22:37,49:b5:f8:36:9a:f8,anthony74@gmail.com,img/obama.jpg +Joseph Cooley,101-52-3095,73883,"9517 Kevin Throughway +New Ashley, MI 27440-3472",1961-02-07 00:16:36,1b:a3:7c:30:b8:05,tortiz@smith.com,img/obama.jpg +Mariah Martin,045-33-0575,74202,"6306 Richard Creek +North Marcoside, MT 70961",1983-09-17 10:33:33,d5:b8:c7:99:f8:fb,amy53@gmail.com,img/obama.jpg +Nancy Carter,644-48-4504,92997,"92163 Scott Harbors Apt. 667 +Ashleymouth, LA 46474",1945-06-05 02:29:34,74:5c:16:98:79:54,chad38@hotmail.com,img/obama.jpg +Megan Young,408-83-4687,79024,"915 Lawrence Drives +Lake Mark, OK 42261",1953-01-28 07:08:58,90:ec:24:0a:a2:60,cherylwilliamson@young-peck.com,img/obama.jpg +Nancy Vang,275-47-6705,75847,"45733 Nicole Green Suite 557 +Dianamouth, ME 66072",1970-05-23 17:42:29,d4:22:0d:74:e7:13,barrettkatherine@yahoo.com,img/obama.jpg +Ashley Shelton,876-11-3167,58977,"2819 Hart Junctions Suite 106 +Lake Courtneyton, NM 33627-3648",1981-04-25 22:45:43,a0:8f:27:b3:da:e4,suzanne86@gmail.com,img/obama.jpg +Antonio Carter,627-60-6108,68311,"0773 Ortiz Rapid Apt. 372 +North Edward, NY 83933",1964-12-29 06:31:12,0b:6f:40:bc:de:70,theresaellis@gmail.com,img/obama.jpg +Brandon Fisher,417-33-0897,06417,"77533 Nancy Stream Apt. 753 +Ruizmouth, MS 61801-0546",1942-10-20 19:52:57,87:92:6e:15:3b:ec,joshua10@brooks-russell.com,img/obama.jpg +Jennifer Bowman,555-64-5659,06162,"Unit 6533 Box 1989 +DPO AA 57940",2006-11-14 17:59:30,5e:02:87:cf:ff:1c,stacey67@yahoo.com,img/obama.jpg +Tim Hall,350-13-2865,75541,"24481 Shane Lodge +Huangfort, NE 38448",2012-06-10 19:05:34,34:e3:75:f7:94:84,belindapowell@sellers.org,img/obama.jpg +Lauren Ellis,404-80-7675,53488,"299 Robert Canyon +North Julieshire, OK 43008-2075",1980-04-18 11:32:47,92:bf:aa:73:b4:3f,ypreston@hotmail.com,img/obama.jpg +Marc Daniel,809-97-9958,22005,"858 Shaffer Extensions Apt. 983 +Port Aaronland, CO 84816-3415",1959-07-27 05:55:24,ff:43:88:88:c2:4e,samuel22@hotmail.com,img/obama.jpg +Brianna Jones,556-59-6016,78887,"778 Richard Orchard +West Dean, NE 54820-5436",1972-05-04 21:27:05,78:37:d5:38:99:59,michaelcampbell@moss-hill.com,img/obama.jpg +Laura Fleming,015-54-1614,29231,"USS Shepherd +FPO AE 71940",1951-10-30 07:15:54,4c:93:ed:87:b8:bc,susanmartin@gmail.com,img/obama.jpg +John Black,830-36-6279,82578,"1397 Sarah Way Apt. 097 +Smithstad, IL 45998",1998-06-22 07:26:43,46:ac:63:ab:6e:19,derek95@hotmail.com,img/obama.jpg +Mary Small,732-61-9869,78634,"83638 Natalie Cliff Apt. 630 +South William, ID 27947",2005-10-05 16:29:09,9b:7e:7c:b5:39:fc,francisjanet@gray.net,img/obama.jpg +Sarah Hughes,461-53-5140,67238,"45088 Jennifer Gateway +Sullivanland, MS 72740",1926-09-15 14:58:55,68:ef:8d:e5:85:13,christopherchan@alvarado.biz,img/obama.jpg +Patrick Mays,006-84-7349,58108,"967 Anthony Cove Apt. 878 +Lake Patricia, MA 10986-1945",2009-02-02 20:44:41,8b:70:d8:1f:83:5a,emoore@hotmail.com,img/obama.jpg +Suzanne Walker,644-61-1941,49339,"PSC 3917, Box 3436 +APO AE 94267-9802",2013-12-16 09:13:36,4d:1a:08:46:49:3d,marymitchell@rasmussen-frazier.biz,img/obama.jpg +Anna Giles,404-69-8611,16825,"105 Melanie Radial +Williechester, PA 99887",1978-07-02 18:17:20,b2:16:39:00:43:70,reginaldcross@yahoo.com,img/obama.jpg +Zachary Arellano,049-81-5909,78601,"87255 White Roads Suite 712 +New Monicaland, ND 65029",1930-11-09 18:25:52,0c:8d:60:d9:6c:16,ryan81@gmail.com,img/obama.jpg +Benjamin Smith,640-29-9085,82523,"842 Oneal Wall Suite 256 +Johnborough, UT 99276-7788",1951-10-10 16:27:17,79:a0:84:63:c5:11,susan92@yahoo.com,img/obama.jpg +Deborah Hernandez,188-94-7897,60991,"7512 Ferguson Glens +Clayberg, CA 93228",1921-03-01 09:42:47,49:b1:6a:9b:a6:ff,cooksydney@vasquez.com,img/obama.jpg +Jose Boyle,685-55-3135,87726,"Unit 3185 Box 6005 +DPO AA 93960",2011-03-03 19:20:22,fa:56:fc:e3:07:e8,connieglenn@lucas-flores.org,img/obama.jpg +Daniel Moore,321-62-0509,65972,"180 Peterson Shoal +North Stephen, PR 46331-7603",2001-12-25 11:42:32,93:fc:63:88:aa:ff,diana23@yahoo.com,img/obama.jpg +Jacob Lee,049-13-4777,27691,"535 Kim Viaduct Suite 255 +Santiagoville, CT 67181",2012-12-19 17:22:29,58:97:cb:eb:d5:ec,hickmanjoseph@yahoo.com,img/obama.jpg +Vanessa Reese,120-40-9361,61245,"999 Bridget Isle +Jasonborough, RI 62336-6731",1955-06-27 18:45:49,19:c4:b2:42:66:16,michaeljackson@wise.com,img/obama.jpg +Natalie George,667-67-7809,18631,"8005 Rowe Ford +South Juanview, PW 81588-6072",1984-10-15 02:45:16,23:4a:e4:7b:1c:9d,velazquezmichael@yahoo.com,img/obama.jpg +Brandi Lopez,558-96-8519,45568,"811 Torres Road Apt. 799 +West Christopherview, KY 07464",1926-09-10 15:32:54,07:6e:d5:9e:c5:2c,bowengerald@gmail.com,img/obama.jpg +Paula Silva,531-06-2411,18369,"8704 Kimberly Brooks +Marytown, WV 70779",1959-12-01 08:37:41,f0:0f:bc:90:fe:ed,plivingston@yahoo.com,img/obama.jpg +Denise Miller,211-01-1287,91180,"2600 Haley Roads +South Susanport, MT 51832",1956-07-15 18:03:39,10:b7:fa:5d:de:d6,jonespaul@guzman.com,img/obama.jpg +Cesar Clark,088-13-9263,63184,"944 Leonard Canyon +Port Daisymouth, IN 59938-1276",1920-01-10 04:01:57,a3:e6:9c:e1:2b:84,melendeznicholas@gmail.com,img/obama.jpg +Tonya Hamilton DVM,766-04-4151,21774,"955 Mary Ville Suite 740 +Gabrielbury, WI 20321-1735",1963-09-05 04:59:01,04:da:a5:d5:56:b8,andrew43@yahoo.com,img/obama.jpg +Michelle Jones,193-77-0965,43695,"043 John Villages +North Josephshire, WV 06878-0062",1993-08-22 10:05:12,5e:72:35:2e:37:1f,jamesgeorge@hunter-jones.com,img/obama.jpg +Jose Ferguson,291-45-1354,55625,"45766 Jackson Place Suite 649 +Cisnerosview, MP 05714-0248",1956-10-28 00:23:54,e7:5f:cc:46:3c:04,terrencelong@hotmail.com,img/obama.jpg +Jennifer Cameron,756-02-8896,97853,"14543 Schultz Plains Apt. 588 +Carrollville, MO 88092-7221",1938-11-15 02:02:32,e6:96:b1:38:68:f0,melissagrant@hotmail.com,img/obama.jpg +Andrew Torres,759-81-8411,79210,"0565 Phillip Islands Suite 367 +Port Sherriborough, AS 04807-5324",1987-09-29 17:31:51,f5:15:5f:98:9d:a0,bburgess@hotmail.com,img/obama.jpg +Amber Ortega,480-65-5095,71231,"9604 Fernandez Point Apt. 200 +Ortizside, CT 59190",1931-09-14 13:43:07,c0:28:69:23:d6:38,justin33@gmail.com,img/obama.jpg +Rebecca Chambers,318-80-5987,96734,"8401 Stevenson Junction +Lake Kelly, NC 20700-2404",1976-10-14 17:39:05,26:2e:9e:46:7d:89,carneydavid@wagner-nash.com,img/obama.jpg +Jessica Weaver,187-57-8520,04489,"5434 Heidi Lodge +Carlsonhaven, MO 57627",2002-11-11 10:57:22,e1:1f:fd:cc:b6:92,apadilla@johnson.com,img/obama.jpg +Melissa Gomez,175-39-6490,03502,"986 Tyler Bridge +Denisestad, NC 80995-9696",1970-12-25 21:49:19,f7:7d:40:65:25:05,ericpeterson@cardenas-gibson.com,img/obama.jpg +Catherine Gonzalez,150-48-4393,24102,"30975 Robertson Summit +East Melanie, NJ 30475-8103",1992-08-21 01:34:15,e2:ba:cb:de:86:00,stephenmartinez@schmidt-marks.com,img/obama.jpg +Sandra Deleon,566-70-1534,60356,"083 Mason Cape Suite 545 +West Lisa, WV 76334-6991",1990-01-02 09:54:11,9c:fe:56:76:fc:fc,odavid@smith.com,img/obama.jpg +Patrick Fox,881-09-8434,91298,"2215 Gutierrez Ridges Suite 898 +North Kayleeland, AS 01025",1982-02-16 21:38:53,1b:fe:c0:79:26:2e,egonzalez@melton.net,img/obama.jpg +Logan May,451-72-8413,17969,"854 Morris Lakes +Hawkinsland, DE 04172",1935-05-18 17:57:42,f2:b8:23:56:e6:a9,crystal40@gmail.com,img/obama.jpg +Danielle Dorsey,427-41-4116,85100,"690 Gomez Prairie Apt. 371 +New Victoria, NC 34415-4740",1919-12-12 09:46:04,fa:35:e2:08:9c:6f,emilychristian@powell.org,img/obama.jpg +Alexandra Anderson,104-95-1104,74498,"928 Hernandez Port Apt. 506 +Christophermouth, NM 98902-7470",1976-05-16 04:35:15,5c:00:2f:96:cc:0c,susanthompson@hotmail.com,img/obama.jpg +Richard Cruz,707-34-1711,97459,"706 Hammond Overpass Suite 806 +Salazarmouth, IN 63119",1996-02-16 19:35:28,58:db:e4:20:85:04,brianadorsey@cox.com,img/obama.jpg +Angelica Logan,802-57-7676,28181,"073 Martinez Parks Suite 030 +East Vicki, RI 75342",1949-01-25 13:17:26,93:32:ed:0b:a1:8e,wattsjohnny@hotmail.com,img/obama.jpg +Michelle Mendoza,233-19-4555,83780,"6948 Angela Common Apt. 203 +Herreraton, HI 00628-5553",1985-08-24 11:02:48,f5:0b:7f:ee:9a:a2,erik05@hotmail.com,img/obama.jpg +Michael Lopez,835-61-7641,33270,"5881 Alex Forest Apt. 888 +Lake Miguel, LA 81141-0807",1973-09-12 09:48:39,22:02:eb:82:bb:99,andrewmathis@yahoo.com,img/obama.jpg +Cameron Walker,273-70-1795,47030,"796 Charles Plains +Maldonadostad, PW 50031",1992-04-14 21:02:03,79:fa:0c:69:86:b0,melissarios@walker-webb.com,img/obama.jpg +Wendy Watkins,190-36-3103,33191,"85654 Jon Pike +Tammyland, MP 69371",2014-03-30 22:06:41,0e:48:c2:f7:14:e3,shawdanielle@gmail.com,img/obama.jpg +Jason Scott,197-64-8530,18916,"630 Craig Hollow Suite 309 +East Christopher, VT 72777-4785",1932-04-07 22:08:00,5e:9b:8e:b8:9b:59,brittanycarter@klein.com,img/obama.jpg +Stephanie Jones,677-89-9717,27138,"8362 Miller Bridge +Port Kimberly, WV 33912",1960-07-31 20:55:55,7f:5d:a6:28:e2:58,rnelson@davis.com,img/obama.jpg +Mrs. Mary Le,881-59-8328,10352,"23103 Justin Streets +Antoniomouth, GU 47328",1959-01-19 13:26:55,da:62:65:c7:20:f7,brooksmichele@marshall-rivers.com,img/obama.jpg +Danielle Cruz,206-98-3931,89106,"45528 Sydney Isle Apt. 661 +Lake Troy, NC 83865",1922-03-18 19:00:27,8d:e9:bb:b0:77:c7,derrick18@hotmail.com,img/obama.jpg +Susan Mcmillan,719-63-5776,89680,"159 Gutierrez Lock Suite 593 +Jamiestad, OH 97688",1998-01-11 08:36:44,72:0f:37:d0:10:82,brooksleslie@gmail.com,img/obama.jpg +Natalie Austin,560-58-0004,94051,"31001 Morales Walk Apt. 214 +West Alexander, ME 27426-1766",2005-05-25 18:00:58,f3:75:ca:58:91:02,hendersongary@gmail.com,img/obama.jpg +Pamela Johnson,569-15-9473,32785,"259 Russell Road Suite 654 +Amyview, OR 75397-6491",1954-05-25 02:04:09,da:33:49:01:20:45,mendozajulie@hotmail.com,img/obama.jpg +Holly Matthews,413-96-1205,81081,"03645 Amy Knolls Apt. 237 +Mathewtown, TN 75846",1966-12-15 06:38:33,12:dc:5d:f2:ef:8e,romerodarrell@hotmail.com,img/obama.jpg +Randy Snyder,396-20-3474,31334,"78540 Wilson Village Suite 067 +Lisamouth, MD 95917",1977-03-15 11:02:24,fd:9c:62:04:64:f0,briggstiffany@hotmail.com,img/obama.jpg +Melissa Peck,281-60-8543,19184,"61336 Kemp Underpass Suite 014 +Dianafort, IA 39262",1949-06-27 08:07:41,de:76:b3:da:9b:6d,havery@phillips.com,img/obama.jpg +Melissa Moss,558-20-4584,19623,"USNV Perry +FPO AE 89180-1353",1980-03-02 04:21:57,c8:51:45:e8:d6:a9,ynelson@hansen.com,img/obama.jpg +Benjamin Gardner,133-49-8002,40336,"5964 David Villages +New Michael, WV 56941",2014-08-26 14:12:52,23:57:34:5a:1e:c2,christinacollins@hotmail.com,img/obama.jpg +Norma Greene,410-97-0430,14033,"73976 Lynn Rapids +Ruizstad, VA 05138-2437",1978-11-12 23:42:28,a8:bc:dc:4e:77:03,jensenrobin@hubbard-anderson.com,img/obama.jpg +Sarah Elliott,503-58-3659,96534,"429 Julia Curve +Stewartport, MP 33788",2007-06-01 06:58:37,8a:bc:71:d4:c9:da,roycamacho@gmail.com,img/obama.jpg +Jeffrey Levine,303-37-4053,96391,"927 Koch Crossroad +South Gary, NJ 69110-2798",1966-01-16 17:28:54,fd:b8:db:f0:c9:fd,briggsjonathan@yahoo.com,img/obama.jpg +Tony Stokes,782-01-2045,83343,"167 Meyer Inlet Suite 381 +Lake Davidtown, HI 25909",2005-04-20 20:27:39,66:35:b3:53:6a:9c,laurajackson@hansen-osborne.com,img/obama.jpg +Cassandra Mcpherson,688-27-7865,01828,"1962 Martinez Square +Sarahmouth, ID 40126",1942-10-11 07:45:58,f0:6a:34:a0:42:4d,matthew06@yahoo.com,img/obama.jpg +James Everett,581-62-3414,66064,"413 Campos Plains Suite 319 +Lake Karentown, FM 52088",1925-01-02 20:47:29,be:46:ee:74:8b:07,johnsonann@ferguson-glover.info,img/obama.jpg +Amanda Boyer,660-17-9132,21646,"3514 Austin View +Sanchezchester, UT 49556",2006-04-13 06:58:48,fe:92:d3:50:0c:1b,sarahsanders@gmail.com,img/obama.jpg +Angela Greer,748-25-6828,55109,"303 Cheryl Burg Suite 570 +Mariaport, MA 17396-5299",1945-09-21 14:35:48,f6:0b:c7:3c:bd:2b,halejoan@davis.com,img/obama.jpg +Barbara Robinson,196-05-4871,57512,"7717 Allen Gateway Apt. 835 +Williamland, IN 02319-4656",1943-10-28 12:17:19,15:a6:98:78:e8:46,pinedadavid@hunter.com,img/obama.jpg +Christina Grant,348-65-1058,86443,"6456 Williams Viaduct +Donaldview, AR 14372",1930-09-05 10:19:30,98:90:2c:29:a0:6f,trobinson@galloway.com,img/obama.jpg +Mrs. Kristine Ashley DVM,823-78-0367,37175,"902 Ballard Avenue Apt. 578 +Lake Michael, MP 53817",2014-01-06 04:28:55,78:7f:47:82:31:be,dayshawn@acosta.net,img/obama.jpg +Anthony Lewis,492-98-0105,07914,"70553 Joshua Land Suite 162 +Lake Stevenstad, OH 95423",1944-09-15 19:50:34,76:79:63:24:3d:97,annette33@hotmail.com,img/obama.jpg +John Watson,559-60-0737,98696,"038 Stephanie Islands Suite 565 +New Jacqueline, WV 50998-4602",1940-02-20 12:10:29,f3:73:b6:24:ac:64,courtney09@pena-garcia.info,img/obama.jpg +Brooke Bush,323-82-6909,72582,"113 Diaz Summit +Kathrynside, TX 28944-2877",2007-08-02 23:21:50,b9:75:80:08:25:f0,kylestone@gmail.com,img/obama.jpg +Pamela Martin,530-91-6703,34571,"82509 Peters Corners Suite 831 +East Sarah, PW 55203-5108",1981-06-20 07:55:34,68:85:81:8e:98:39,johnsonmarie@yahoo.com,img/obama.jpg +Nina Gutierrez,633-20-6439,41975,"Unit 0863 Box 4303 +DPO AE 52839-6408",1953-12-26 04:14:25,e1:75:5d:81:94:51,campbellmatthew@taylor.biz,img/obama.jpg +Alexander Anderson,060-06-1340,43598,"7170 Hailey Divide +Port Randy, PW 90571-8206",1924-12-26 12:32:30,10:9f:f6:34:d3:b9,wbartlett@hotmail.com,img/obama.jpg +Jonathan Ortiz,004-54-4792,31653,"8634 William Garden Apt. 191 +Leeshire, OK 41319",1992-06-14 08:28:59,32:e0:d5:6d:91:a8,smithjoel@bryan-benitez.org,img/obama.jpg +Barbara Wilson,595-13-1990,59199,"430 Lane Views Apt. 639 +Martinchester, PA 04800",1962-09-28 17:50:52,b5:57:6a:b9:8a:89,xgomez@mcdonald.com,img/obama.jpg +Johnathan Vargas,460-34-5148,72935,"19326 Gibson Estate Apt. 418 +Meghanmouth, CT 59077-5622",1998-05-16 18:25:47,cc:dd:c7:21:71:ae,tylerdonna@gmail.com,img/obama.jpg +Gregory Benson,600-87-3377,87553,"Unit 2454 Box 5118 +DPO AE 22912",2008-11-02 16:41:45,34:68:f2:ec:b7:f1,keith93@hotmail.com,img/obama.jpg +Eddie Allen,430-47-2723,72663,"54426 Gary Ford Apt. 689 +West Catherine, PW 22085",1969-07-01 03:20:46,49:02:43:dc:6c:e9,alisoncarter@lewis-dyer.com,img/obama.jpg +Isaiah Santos,510-76-1911,99049,"397 Samuel Street +Ashleymouth, NE 03754-3556",1954-10-16 01:16:12,42:97:b5:1f:85:ca,lfleming@yahoo.com,img/obama.jpg +Judy Campbell,755-25-0405,40151,"476 Charles Track +Hollandport, GA 58474-0197",1953-07-07 05:07:41,2f:46:ea:49:01:e8,thughes@gmail.com,img/obama.jpg +Christina Ferguson,828-48-4356,40099,"USCGC Fitzpatrick +FPO AE 14589-7178",1952-06-18 16:37:49,fb:6d:fe:a3:b8:e0,bethwallace@yahoo.com,img/obama.jpg +David Thompson,372-90-0338,64018,"63138 Byrd Prairie Suite 895 +Dixonchester, SD 37124-4030",1972-06-10 23:27:37,8f:1a:f3:d8:98:1c,natalie56@clark-kaufman.com,img/obama.jpg +Michelle Shea,120-54-4116,67054,"5649 Bradshaw Motorway Suite 985 +South Katieberg, OR 31159",2009-02-22 15:43:15,55:90:e8:e3:ed:2f,adamstaylor@hotmail.com,img/obama.jpg +Kenneth Stevenson,825-66-1438,56473,"0718 Hubbard Run Suite 842 +Helentown, PA 64901",1980-08-29 08:01:56,df:de:54:18:53:f3,yvette96@smith.biz,img/obama.jpg +Bryan Cunningham,123-07-7099,21553,"394 Holly Unions +Kennedyside, WY 42298",1999-11-11 20:36:32,42:d9:30:07:ca:40,bakerpatrick@cuevas.com,img/obama.jpg +Sierra Garza,260-62-7459,08411,"41195 Howell Hills Apt. 068 +Lake Gabriel, SC 95048-0669",2008-08-16 03:22:34,ec:53:5c:8d:29:ab,jaytaylor@hotmail.com,img/obama.jpg +Samuel Riley,863-75-2151,42213,"18118 Lewis Harbor +Jillland, TX 28915",1998-02-23 12:12:25,58:76:5b:ba:f0:05,frederickwilliams@hotmail.com,img/obama.jpg +Gabriel Rodriguez,367-75-2957,71706,"USCGC Ferguson +FPO AP 97524-0902",1974-09-08 18:19:25,e9:c6:ed:9e:13:e9,franciscokoch@hotmail.com,img/obama.jpg +Antonio Berry,024-24-6436,64869,"470 Jackson Grove +Melissamouth, NY 31090-8865",2015-08-14 05:58:48,4c:ad:b6:42:32:56,larsonkelly@yahoo.com,img/obama.jpg +Laurie Melton,305-89-4015,69145,"7643 Mendez Station +West Michellemouth, TX 27764-3670",1941-05-27 14:21:28,05:75:f6:35:2f:9b,washingtonalyssa@sawyer.com,img/obama.jpg +Karen Gay,854-42-9397,00882,"45028 Rebecca Island Suite 847 +Briannahaven, WV 82423",1973-10-31 17:59:18,66:d6:dd:b1:5f:55,carlaserrano@norton.com,img/obama.jpg +Sara Smith,333-05-1814,59486,"012 Jamie Mews Suite 652 +East Williamview, SC 20429-9690",2007-12-23 17:05:58,a8:7c:d2:4f:73:40,gharmon@hotmail.com,img/obama.jpg +Jackie Lin,060-42-3922,70199,"03747 Daniel Loaf Apt. 730 +New Coryland, NY 65277",1955-08-10 19:38:51,7a:cc:1a:78:8b:08,ruizkatrina@jacobs.org,img/obama.jpg +Katelyn Murray,511-54-5608,43066,"410 Davis Station +New Timothy, NH 12332",1945-01-27 01:55:40,a9:67:a9:ac:53:fe,christophernelson@yahoo.com,img/obama.jpg +Jesus Miller,311-96-2773,24777,"PSC 7987, Box 4308 +APO AA 11719",1935-09-29 16:36:20,10:31:0c:2b:b2:7f,acarpenter@gmail.com,img/obama.jpg +Donna Salas,020-59-2850,79040,"8885 Johnston Mills Suite 352 +Terrystad, VT 49328",1957-03-16 10:00:35,d4:ad:fb:35:70:a6,calebpatel@wright.com,img/obama.jpg +Caroline Andrade,805-69-3010,37435,"0576 Dean Circles +Timothyfurt, AZ 66290",1999-11-06 07:53:23,cd:ab:b6:69:7b:5a,jillmeyer@snyder-smith.com,img/obama.jpg +Melissa Russell,150-11-5166,41186,"085 Kelly Garden Suite 435 +Lake Maryfurt, AZ 29729",1971-01-18 17:44:34,89:73:93:01:06:fc,stanleyvazquez@weiss.com,img/obama.jpg +Christopher Kennedy,222-39-0638,61169,"6088 Ruiz Villages +Port Amberbury, AS 45581",2012-08-25 09:13:16,d4:72:c8:a0:e2:a8,hmartinez@kim.com,img/obama.jpg +Erik Thompson,740-18-8272,99415,"769 Justin Mission +New Dennis, GA 98815-6061",1934-02-12 05:05:11,8c:7c:0e:bf:b5:1d,brennanmichael@yahoo.com,img/obama.jpg +Randall Norris,683-71-6871,47610,"239 Watson Loaf Suite 354 +Shermanhaven, VT 27923-5375",1988-01-23 15:38:32,d7:87:6d:21:aa:c3,fsmall@schaefer-hanson.net,img/obama.jpg +Jill Carter,248-87-2843,89483,"4736 Rodriguez Fall +Paigehaven, AZ 78722",1996-01-18 04:21:51,3a:31:85:84:72:d6,kathleen70@tucker.com,img/obama.jpg +Jack Bennett,661-19-8010,89331,"208 Raymond Fort Suite 125 +North Cynthia, ND 00641-9745",1957-04-02 23:40:31,36:70:cc:15:64:81,jim89@howard-christensen.net,img/obama.jpg +Kristina Bradford,440-63-8987,95521,"22230 Smith Hollow +Karenland, SC 06599-0941",1973-05-12 15:45:05,2c:48:63:f3:b8:85,odavis@gmail.com,img/obama.jpg +Patricia Gonzalez,846-46-3836,97437,"0656 Dawn Groves +Lopezfort, UT 85792",1917-08-18 01:10:05,28:c9:07:b5:86:44,amy88@hotmail.com,img/obama.jpg +Jonathan Sanchez,334-19-7062,81750,"126 Butler Extensions Apt. 901 +Brandontown, OH 55743-4039",1949-10-13 02:49:13,37:30:2b:b5:ac:56,christopher33@herrera.org,img/obama.jpg +Patricia Herman,528-62-2012,61824,"064 Felicia Inlet +New Robertville, NE 54018-8594",1948-01-05 11:41:24,7c:b7:b2:90:44:24,rhodeslance@gmail.com,img/obama.jpg +Brad Peterson,109-22-6572,32331,"Unit 9249 Box 7776 +DPO AA 26020-3789",1927-07-09 03:41:47,f6:a5:93:2c:56:ba,mirandadurham@hamilton.com,img/obama.jpg +Taylor Harrison,625-46-1612,02756,"6335 Larsen Turnpike Apt. 969 +New Candice, HI 13590",1998-06-30 12:06:43,b1:2e:27:c7:cd:e0,ryan76@smith-whitehead.com,img/obama.jpg +Denise Lawson,516-91-0935,60947,"378 Vance Row +Port Jodimouth, NM 21390",1953-10-31 01:26:00,77:64:dc:23:64:18,lisa07@floyd-jones.com,img/obama.jpg +Alisha Gibbs,557-97-9094,26884,"Unit 3328 Box 9367 +DPO AA 96061-7710",1935-08-15 20:49:22,b7:3a:6f:f7:08:d2,qmorrison@hotmail.com,img/obama.jpg +Brian Mcconnell,441-84-2661,78424,"9442 Johnson Pines Suite 954 +New Joanna, CA 59366-0676",1967-01-23 08:12:47,01:01:6f:6a:86:8d,gonzalezmelanie@yahoo.com,img/obama.jpg +Alexandra Jones,818-04-8564,56856,"9519 Brenda Ford Suite 995 +Lake Heatherberg, FM 03028",1965-01-02 16:36:59,16:64:fe:cb:0f:94,lunacarol@hotmail.com,img/obama.jpg +Jimmy Dunn,313-65-6084,11401,"2983 Tammy Ways Apt. 281 +East Christineview, MT 56809-7387",1931-07-26 15:45:02,11:b4:99:74:c7:a4,malloryconley@yahoo.com,img/obama.jpg +Taylor Spears,418-38-2364,82681,"5729 Michael Stravenue Apt. 054 +Fischerborough, WA 24724-4524",1962-12-15 06:40:32,7d:fc:70:fe:89:42,vserrano@hunter.com,img/obama.jpg +Jeffrey Johnson,303-01-4401,31776,"875 Beth Views Suite 261 +New Eugene, HI 85984-5313",1930-09-26 07:25:26,95:3a:a7:65:30:43,geraldcortez@hotmail.com,img/obama.jpg +Angela Lopez,822-01-5872,05845,"864 Cynthia Forges Apt. 933 +New Amber, NH 96922",1950-12-08 06:23:12,28:11:47:ff:88:a5,ronald22@graham.com,img/obama.jpg +Michael Hunter,535-12-9627,02701,"730 Susan Stravenue +Mcdonaldborough, MD 73540-4429",1984-11-15 22:34:08,f3:fc:66:bc:33:d5,robertgillespie@gmail.com,img/obama.jpg +Catherine Johnson,721-62-7030,49161,"974 Ford Land Apt. 752 +East Rebeccamouth, VI 02795",1984-06-26 19:56:56,ff:13:7d:ed:a3:45,tayloraaron@hotmail.com,img/obama.jpg +Alexandra Smith,378-39-2816,80477,"937 West Tunnel Apt. 980 +New Wendyhaven, IL 29096-8075",1978-01-31 04:20:18,05:7f:12:92:a6:c0,richard92@yahoo.com,img/obama.jpg +Virginia Mendoza,088-90-9536,20743,"2245 Nathan Drive +Port Shane, AZ 81991-8573",1922-11-27 18:45:37,f9:64:09:b3:df:f7,keithcox@cantrell.com,img/obama.jpg +Mrs. Katherine Lee,559-96-5241,91955,"130 Mark Lights Apt. 072 +Howardview, GA 22102-8174",1982-07-25 13:58:38,34:c9:59:78:d8:eb,michaelshepard@hotmail.com,img/obama.jpg +Shirley Rodriguez,653-10-4971,58998,"56814 Tara Manors Apt. 446 +Patriciabury, ND 23659-9034",1962-05-11 00:25:09,ae:a4:5c:a6:38:90,alejandro18@yahoo.com,img/obama.jpg +Mckenzie Nelson,655-25-3732,05841,"40619 Barbara Springs Suite 297 +Williamsfort, NE 44718-0738",1952-09-30 20:27:08,e8:61:f0:e7:fd:10,braycindy@gmail.com,img/obama.jpg +Mrs. Angela Dickson,758-24-8227,73310,"7642 Kevin Gardens Suite 044 +Olsonhaven, PA 16264",1950-08-07 10:37:30,81:f3:3e:0b:ae:0d,mkane@reynolds.net,img/obama.jpg +Sandra Leon,245-67-2688,59908,"9698 Francisco Fort +West Gerald, PR 29600-8285",1939-02-20 13:02:09,6f:a1:ca:d7:00:51,gavinwalsh@yahoo.com,img/obama.jpg +Andrea Reeves,768-31-7826,36391,"0303 Young Row +Davisbury, ID 38195-9613",1971-12-20 11:05:13,b7:86:44:de:68:35,tsmith@hotmail.com,img/obama.jpg +Regina Taylor,284-36-1663,38237,"115 Jeffery Park Suite 942 +Dixonton, TN 14771",1959-06-22 23:20:07,38:b2:84:cf:7e:c4,kturner@hendricks-dean.net,img/obama.jpg +Debra Nunez,477-68-2652,74334,"165 Craig Viaduct +North Isaac, MD 42270-0035",1949-05-16 16:21:24,8e:1f:43:12:e8:08,webbleslie@hawkins-robinson.net,img/obama.jpg +Nicole Garrett,746-10-2714,73600,"Unit 4481 Box 7240 +DPO AE 52935",1922-04-02 11:59:36,e7:74:49:b7:cd:e3,joneswendy@mills-murphy.net,img/obama.jpg +Mitchell Wilkins,104-25-8543,53041,"847 Mitchell Falls +Lindseybury, VT 90193",2015-06-23 15:06:47,4b:c5:ee:02:ab:36,marvinhenderson@hotmail.com,img/obama.jpg +Amy Jones,520-36-5911,74619,"31700 Samantha Fork Apt. 597 +Nortonport, ID 43283",1930-08-17 20:35:14,fe:3d:c0:5b:14:3c,brittanygarcia@reed.com,img/obama.jpg +Stephanie Koch,559-51-6079,30099,"47444 Larsen Junction Apt. 738 +North Ricky, NJ 41966-2706",2009-08-02 10:17:22,01:88:38:36:81:6a,fieldsjoshua@griffin-haley.com,img/obama.jpg +Melissa Douglas,345-60-9964,76936,"080 Logan Walks +Watsonborough, HI 10795-3382",1942-03-19 10:18:20,eb:35:60:bf:26:5c,palmerkevin@gmail.com,img/obama.jpg +Katherine Sanchez,520-47-6771,50134,"5703 Wilson Light +Joneschester, MS 36598-9516",1936-09-08 13:25:16,ba:d2:14:31:b1:99,ediaz@gmail.com,img/obama.jpg +Danielle Evans,333-19-1554,07268,"712 Taylor Groves +South Jamesstad, FL 10036-2499",1999-05-28 20:00:42,37:fb:a3:cd:49:89,darrylcameron@hotmail.com,img/obama.jpg +Beverly Lindsey,355-64-9198,73113,"2196 Jacobs Plaza Suite 377 +Nicholashaven, TN 67099-7964",1955-02-24 22:35:24,34:42:9a:0f:83:3f,xthomas@nicholson.net,img/obama.jpg +Christina Williams,644-49-9383,99890,"3665 Little Knoll +Port Samantha, ND 12894",1978-03-26 16:14:29,9f:c6:24:68:6d:2a,tyler81@coleman-mendez.com,img/obama.jpg +Gregory Becker,129-20-5853,20854,"16907 Melanie Parkway +Williamsburgh, VI 86587-6769",1971-05-18 12:37:18,47:4f:6e:65:64:ed,debraallen@daniel-clark.org,img/obama.jpg +Dean Norman,636-74-1980,03121,"19114 Vang Field +Port Amanda, KY 64426-8961",1930-06-28 01:39:15,c7:2f:17:9f:e6:07,downsjanice@baker-lee.com,img/obama.jpg +Tiffany Wilson,606-74-2452,22994,"293 Jordan Hill Suite 685 +Anthonybury, VT 09838",1996-09-05 09:36:16,9c:90:2c:12:71:18,shane30@dudley-case.com,img/obama.jpg +Shane Gonzalez,753-76-3332,50197,"USNV Olson +FPO AA 35925-6143",2013-02-17 17:01:24,e0:81:19:a8:65:3d,snyderrachel@leon.com,img/obama.jpg +Yvonne Scott,043-44-1900,61208,"381 Jeffrey Drive Suite 801 +Clarkshire, NC 94363-0303",1972-11-11 20:18:27,c2:6a:a3:02:d4:77,qramirez@melendez.com,img/obama.jpg +Emily Williams,687-48-3136,71713,"0079 Pierce Trail +Drewton, NV 15257-8156",1990-06-11 20:11:37,8f:1b:ba:ac:15:16,jeanne87@yahoo.com,img/obama.jpg +Gary Jones,357-28-8237,05094,"956 Stacie Locks Apt. 295 +Cherylport, OH 42606",1942-08-27 10:33:30,1a:d0:38:72:6d:8f,maciassteven@patterson-marquez.org,img/obama.jpg +Kevin Webb,780-79-3437,21598,"142 Casey Lodge Apt. 527 +Lake Alyssa, MI 38015",1938-07-13 04:32:54,4d:6d:96:31:24:33,langkim@gmail.com,img/obama.jpg +Scott Diaz,368-25-5993,76632,"384 Wood Burg +East Jillian, NC 22923-4607",1929-01-06 16:02:15,96:0f:20:9b:a0:87,ambercopeland@jones-rangel.net,img/obama.jpg +Michael Thomas,488-27-4592,63725,"Unit 8674 Box 2206 +DPO AE 58919-2115",1949-12-20 21:54:19,2f:a5:9a:8c:97:25,kim95@gmail.com,img/obama.jpg +Jason Anderson,068-46-6767,08206,"9789 Ballard Circles +East Tammy, RI 47263",1922-10-06 17:51:09,b0:2d:c4:2c:53:18,parkermichelle@hotmail.com,img/obama.jpg +Victoria Collier,524-85-9830,30632,"USNV Clark +FPO AE 11995-6431",1978-03-28 22:06:19,82:92:3c:12:80:05,joneserica@cobb-wheeler.com,img/obama.jpg +Holly Jones,512-95-6014,78803,"03388 Austin Burgs Apt. 889 +Cameronview, TX 76757",1923-09-09 15:45:24,49:f8:61:fd:fd:60,erindonovan@walker.net,img/obama.jpg +Tara Brown,403-97-6953,87183,"3108 Williams Light +Morseport, HI 43491-8726",1955-07-05 20:45:13,c1:1e:32:44:69:b0,julie14@hotmail.com,img/obama.jpg +Ronald Le,243-78-7385,92714,"14276 Donna Forge +Jonesfurt, RI 03302-0409",1964-09-22 15:28:53,6f:de:72:ae:51:29,eddieedwards@chavez-cooper.com,img/obama.jpg +Morgan Watson,125-55-0468,01954,"02119 Rose Roads Apt. 012 +Laurafort, NM 67718-0378",1971-09-23 07:34:23,14:27:ba:8b:e2:6e,mary99@yahoo.com,img/obama.jpg +Samuel Pruitt,066-10-8008,36418,"871 Charles Rapid Apt. 624 +East Cheryl, MS 73920",1937-09-15 08:38:41,9e:98:bd:46:9f:57,nphillips@smith-shaw.com,img/obama.jpg +Jennifer Glenn,064-63-9272,39511,"3274 Simpson Wells +South Charleschester, AZ 39341",1953-08-04 07:38:43,dc:e3:7c:c0:e0:b8,michael18@wilson-cooper.com,img/obama.jpg +Joshua Wiggins,541-60-0800,74987,"90812 Wright Lake Suite 305 +South Davidberg, MD 20613",1997-12-30 17:24:51,8c:32:6d:fd:c1:97,andersongail@olsen.com,img/obama.jpg +Eric Lamb,849-26-3621,18287,"4422 Michael Spring +Cooperburgh, NM 18464",1984-07-03 21:52:53,a9:06:2c:18:7a:18,carriealvarez@hotmail.com,img/obama.jpg +Mark Deleon,138-81-0039,19593,"778 Walter Drive Suite 701 +Thompsonchester, CA 93766-1430",1936-12-24 15:28:00,23:d6:83:bd:c3:c2,smccoy@hoover.org,img/obama.jpg +Zachary Ritter,693-41-2112,73122,"2227 Williams Lakes Apt. 211 +Lake Desiree, IN 74737-6893",1993-08-23 06:48:55,02:b1:db:81:77:4e,qramirez@mccoy-mcguire.biz,img/obama.jpg +Linda Vazquez,449-22-7757,52968,"10187 Mcclain Village +East Brandon, CT 60061-3252",1986-04-04 22:07:50,2d:33:5f:06:20:5f,charlesray@ruiz-moyer.net,img/obama.jpg +Patrick Carlson,450-62-6864,33427,"9392 Watson Squares +Mcconnellchester, AS 36984",1926-03-16 15:30:34,8c:2d:e4:d6:d5:5d,jacksonpatrick@anderson-smith.com,img/obama.jpg +Kevin Parks,792-46-7553,53571,"99872 Kathleen Lodge +West Regina, UT 89016",1919-04-27 10:27:40,5b:ea:a3:3c:c3:47,millertodd@gmail.com,img/obama.jpg +Thomas Werner,453-78-2567,52815,"99014 Sharon Islands Apt. 871 +Debbiebury, DC 55119-2281",1964-05-21 21:33:17,aa:b0:bb:99:52:db,riversjessica@gmail.com,img/obama.jpg +Brandi Chavez,058-85-4152,25253,"PSC 6397, Box 2841 +APO AP 58336-8460",2017-01-24 00:25:30,18:18:95:03:67:fe,parkersteven@dean.info,img/obama.jpg +Kerry Whitaker,776-16-0831,65963,"3926 John Cape Suite 061 +Kaylafurt, NM 77362",1984-07-28 17:19:15,ab:04:69:8b:e1:14,cartertheresa@wise-smith.com,img/obama.jpg +Bryan Rodriguez,669-59-8520,33246,"17169 Schneider Alley Suite 731 +Audreytown, IL 22801-1503",1918-03-02 03:36:55,3b:5a:c7:6e:05:b3,mccarthykeith@yahoo.com,img/obama.jpg +Kevin Fox,611-21-2001,09323,"4233 Griffin Squares +New Debraland, PW 12429",1951-09-09 11:52:10,ac:21:f3:65:03:df,kathy08@stewart-chavez.org,img/obama.jpg +Darren Gould,121-46-5743,33363,"5735 Sean Roads +West Coreyfort, MS 11894-1177",1986-10-06 05:56:30,b5:d0:ab:08:be:c9,kmathis@yahoo.com,img/obama.jpg +Thomas Roberson,246-65-2078,85976,"849 Corey Trail Apt. 852 +South Donnaborough, VI 52000",1920-06-24 21:59:36,f6:45:a3:8a:81:4d,gcampbell@gonzalez.biz,img/obama.jpg +Spencer Rowe DVM,477-11-9823,97393,"04652 Fox Coves +Stewartport, GA 29452",1919-05-26 12:37:21,75:26:e1:bd:99:da,sgarcia@parker-shepard.com,img/obama.jpg +Ryan Wells,146-34-8773,11096,"97495 Bryan Stravenue Apt. 332 +Harrellstad, NM 42985-1291",1977-03-23 06:04:01,3e:3f:9c:48:17:3f,wcase@murray.net,img/obama.jpg +Todd Thompson,318-29-4996,78759,"04053 Ramsey Dam +Allenchester, ID 83954-4811",1986-10-26 01:55:44,83:ac:55:1f:17:63,rebeccagarcia@hotmail.com,img/obama.jpg +Jeremy Carter,226-95-9433,61020,"9778 Philip Ports Apt. 796 +New Jesusburgh, CO 35166-1104",1975-12-19 07:56:51,60:db:e2:3d:96:6b,laura55@gmail.com,img/obama.jpg +Patricia Vazquez,112-78-9654,10138,"4937 Richard Shore Apt. 151 +Steventon, MD 94356-8368",1985-09-13 07:38:11,fd:68:b7:8f:24:3e,fporter@zuniga.org,img/obama.jpg +Michael Reynolds,710-52-2233,88462,"PSC 9286, Box 4722 +APO AP 56378-4587",1922-03-29 18:26:45,95:ae:11:81:1b:b5,westtiffany@baker.com,img/obama.jpg +Scott Shepherd,193-91-0236,59028,"21265 Santos Parks Apt. 619 +Myershaven, WV 14213-1392",1959-03-04 06:17:54,0b:91:4e:d8:5f:91,daniellezamora@lynch.org,img/obama.jpg +Angel Miller,881-10-4951,05418,"7177 Christopher Squares Suite 233 +New Ericmouth, OR 26180",2010-01-22 02:36:37,9e:c9:f7:15:bc:9f,staceykelley@sullivan-hicks.com,img/obama.jpg +Patricia Lloyd,385-54-3873,77386,"PSC 7653, Box 4757 +APO AE 28895-8800",1967-04-21 07:20:48,8e:d4:af:f5:d4:e4,justintyler@yahoo.com,img/obama.jpg +Daniel Zamora,334-22-3985,04904,"8714 Kimberly Spurs Apt. 339 +Mullinsborough, MI 14244-9373",1994-10-03 10:58:11,16:16:2f:4c:87:c4,sarahblack@walker.com,img/obama.jpg +Dr. Michael Quinn MD,477-93-6354,08580,"95101 Wright Via Suite 789 +South Jennifer, IN 60758",1958-04-19 02:48:46,60:2a:3b:42:e2:5c,kevin35@smith.com,img/obama.jpg +Alexandra Bennett,303-51-2807,90399,"PSC 3043, Box 8395 +APO AE 52774-4828",1957-04-24 18:44:41,0f:86:bc:a7:0d:3d,emilyharper@gmail.com,img/obama.jpg +Edward Thomas,039-97-7003,91783,"9674 Rodriguez Crest Apt. 990 +Edwardsville, SD 31722-8957",1933-11-22 07:01:49,23:22:da:4f:ac:54,gordonjason@smith.info,img/obama.jpg +Douglas Mcintyre,086-41-8364,20967,"1960 Connor Groves +Alexandriamouth, SD 84544",1977-11-20 16:15:00,a8:fc:e3:58:a2:b4,ksmith@johnson.com,img/obama.jpg +Matthew Gates,593-17-3709,40817,"68925 Gary Plaza +Perezbury, WY 30355-7365",1950-05-12 14:49:52,83:87:79:0a:77:32,johnstevens@harrison.com,img/obama.jpg +Malik Riley,243-46-0204,04333,"37460 Kimberly Light +Sandraville, IA 97769-2999",1944-04-24 06:30:43,d3:66:b9:b8:85:ed,kristinagaines@gmail.com,img/obama.jpg +Alex Gray,862-89-6530,38615,"Unit 7624 Box 0011 +DPO AP 39249-7704",1981-09-08 22:12:13,76:58:e0:bf:cb:f9,howardkristie@hayes.net,img/obama.jpg +Benjamin Walker,381-78-0716,11797,"1271 Green Glen +Ruizhaven, HI 56023",1942-09-05 02:43:12,0f:23:6b:f8:a0:9e,jerrycarpenter@burns.com,img/obama.jpg +Robert Foster,545-17-1930,81268,"30046 Dana Viaduct Suite 331 +Lisafort, TX 55848",1991-01-09 00:11:15,2d:f5:32:70:e1:a1,jessicawatson@chan-rios.com,img/obama.jpg +Ruben Hale,793-37-1091,35655,"579 Stephen Roads +Lake Nichole, RI 64942",1938-12-10 20:49:12,69:3b:e8:1e:7e:23,claireeverett@ashley.org,img/obama.jpg +Joshua Taylor,644-72-3012,80213,"7682 Emily Fall +Bradport, ID 24935",1933-08-07 08:33:07,76:20:c9:93:b3:af,larry42@gmail.com,img/obama.jpg +Kara Herrera,216-93-3572,85413,"6886 Jessica Bridge +Higginsview, MT 78322-7334",1966-09-22 20:03:03,4f:a3:41:ae:b9:f2,graysamantha@davis-hoover.com,img/obama.jpg +Michael Erickson,328-61-4950,60936,"822 Nunez Groves +Cruzside, UT 15348",2015-11-08 19:22:10,80:15:50:7f:56:e3,erikrichardson@ramos-brooks.biz,img/obama.jpg +Brian Williams,073-77-4479,99106,"28013 Christopher Burg +Christineville, FM 15217-8248",2012-12-22 20:52:36,7a:b3:e8:59:90:5c,morganrobert@bell.org,img/obama.jpg +Ashley Miller,194-71-3379,42562,"24597 Cassandra Row +Hawkinsstad, PA 30566-5771",1917-08-12 14:14:40,32:2a:f8:3b:1a:26,rlutz@riggs.com,img/obama.jpg +Jason Spencer,720-15-1098,11023,"4172 Rodriguez Extensions Suite 996 +Danielmouth, MT 20601-8319",1997-02-25 13:00:14,32:34:2c:cd:b2:44,hwang@jones.com,img/obama.jpg +Melissa Richmond,418-61-2461,64760,"PSC 6793, Box 7261 +APO AA 86821-7572",1949-05-13 18:59:12,1d:c7:ab:d8:9b:5c,donnalee@lopez.com,img/obama.jpg +Jennifer Zimmerman,147-28-2537,61847,"4678 Robin Underpass +Martinchester, MI 99278",1973-02-10 06:13:51,7e:87:23:fa:e0:c1,sandraaustin@gibson.net,img/obama.jpg +Melvin George,344-29-7137,59021,"560 Rebecca Crest +Lake Johnbury, MA 74490",1946-04-28 07:57:18,be:71:cd:e7:00:b9,haynesjohnny@white.com,img/obama.jpg +Jesse Brown,747-71-8683,00747,"80837 Gay Extension +Sullivanside, NM 63837-3832",2001-12-20 06:26:49,44:54:c6:26:29:c8,nicholas24@palmer-montes.biz,img/obama.jpg +Eric Kelley,133-15-9910,52741,"PSC 6090, Box 4165 +APO AA 55700",1965-01-28 18:32:15,6d:ad:d6:fb:0f:7d,michael14@fletcher-price.com,img/obama.jpg +Rhonda Price,207-81-8794,24148,"559 Smith Harbors +North Stephanie, MA 13644-2660",1952-12-11 18:01:54,7f:a5:3e:a4:dd:b8,matthewallen@cruz-ortiz.info,img/obama.jpg +Gloria King,775-03-1901,20743,"2798 Danielle Lodge +East Debbie, GA 99797",1953-11-12 21:00:39,8b:17:53:fd:e8:bc,michael16@tyler.org,img/obama.jpg +Elijah Smith,644-92-3775,93186,"676 Carolyn Hills Apt. 920 +Quinnfort, HI 40094",1947-06-15 07:48:47,53:bf:e4:d4:40:c1,grahamgrace@yahoo.com,img/obama.jpg +Dana Webb,203-42-5083,36255,"356 Darren Turnpike Apt. 443 +Perezton, OK 54058",1995-11-03 23:44:10,14:45:44:35:d1:0a,dlopez@miller.com,img/obama.jpg +Chelsea Arnold,726-45-4526,22175,"584 Green Stravenue +West Pamela, WV 73889",1973-11-14 01:29:17,d4:79:7e:de:b7:e0,ngibbs@yahoo.com,img/obama.jpg +Stephen Gutierrez,796-74-9435,22991,"99043 Leon Plain Suite 300 +Ronaldhaven, MO 80983",2000-08-28 03:07:28,45:cf:a0:dc:55:3e,ryansamuel@hotmail.com,img/obama.jpg +Shane Carson,218-58-6122,55895,"9621 Gutierrez Knolls +New Christina, MS 48236",2004-02-19 16:32:47,3a:5d:4b:67:5c:06,deckerpaul@taylor-brennan.biz,img/obama.jpg +Lisa Santos,675-40-6176,55149,"30442 Brewer Camp +Lake David, PW 05804-1788",2009-07-13 11:56:47,7d:cc:24:e9:17:26,olivia40@mcmillan.com,img/obama.jpg +Jennifer Barker,738-18-7780,15688,"55739 Jerry Drive +Warnerborough, MN 25313-4074",1934-08-19 13:28:33,d0:4d:c1:ab:2e:3f,benderbrittany@estes.net,img/obama.jpg +Stephanie Johnson,317-36-5267,54976,"174 Thompson Course Apt. 333 +Aprilberg, DC 97146-9515",1919-01-21 02:34:02,29:b3:6d:ea:4c:66,mitchelldecker@hart.org,img/obama.jpg +Rose Smith,831-20-1963,15604,"Unit 5049 Box 4504 +DPO AP 45946",1950-11-10 16:00:00,a9:96:7f:95:4b:1f,danielthompson@bates-jenkins.net,img/obama.jpg +Bradley Torres,163-77-7288,46858,"1241 Ashley Hill +Dennisberg, AK 48556",1934-01-06 23:50:02,47:67:65:ed:10:4a,lukebrooks@gmail.com,img/obama.jpg +Christian Smith,440-84-2638,72308,"630 Mcintyre Streets Suite 563 +North John, IL 50286-3466",1948-08-07 15:22:50,09:e7:10:92:47:34,markwalker@gmail.com,img/obama.jpg +Marisa Middleton,177-10-4305,92847,"6893 Briana Skyway Suite 075 +Cynthiaport, AZ 82179-3536",2012-10-09 19:32:37,2e:54:12:7f:50:90,mitchellkyle@hotmail.com,img/obama.jpg +Steven Aguilar,220-33-2260,86324,"55604 Daniel Pass +East Josephland, SC 84942",1958-10-12 03:13:31,02:39:4c:01:a4:b4,davidlopez@yahoo.com,img/obama.jpg +Julie Underwood,425-72-9148,12999,"5809 Thomas Camp +New Amandamouth, DC 42044-9748",1940-11-01 22:18:57,4e:54:8f:40:5e:5a,adam73@dunlap.com,img/obama.jpg +Amy Sullivan,242-96-1655,08930,"USS Johnson +FPO AA 72566-7329",1972-01-12 11:42:13,75:35:ae:c4:cd:af,jessica90@castillo.com,img/obama.jpg +Jamie Jones,555-55-9083,43070,"56294 Moore Hollow Suite 698 +Port Ryan, FM 44060-3104",2001-04-28 20:29:12,32:8b:eb:d9:c5:d5,travis40@perkins.com,img/obama.jpg +Kenneth Webster,148-03-0331,31957,"4793 Scott Plaza Suite 356 +Seanfurt, CA 06313-4075",1999-10-09 12:29:17,eb:45:51:10:f2:62,ghill@brown-lewis.com,img/obama.jpg +Tara Wong,449-42-2689,81958,"705 Green Land Apt. 260 +Rollinsville, OH 81806-1378",2015-09-15 13:44:26,c9:82:b3:d4:80:09,steve63@vega.org,img/obama.jpg +Steven Adams,298-64-2067,22101,"7835 Burton Land +New Matthew, MT 78120",1996-06-08 22:46:22,53:7c:79:7e:19:b3,nicholascordova@gmail.com,img/obama.jpg +Jennifer Thompson,485-70-9237,42129,"349 Perry Well Apt. 008 +North Deborah, OK 17146-8180",1971-09-29 21:24:02,b8:0e:2f:13:50:2f,donaldsanchez@gmail.com,img/obama.jpg +James Bird,690-47-5135,43515,"7232 Brown Isle Suite 499 +South Cody, HI 64834-4142",1938-12-23 17:42:30,31:7a:2f:6e:a8:13,william06@roberts.net,img/obama.jpg +Lisa Meza,487-59-0499,63009,"93470 Katherine Burgs +Michellehaven, CO 12133",1931-09-17 18:00:19,01:26:9e:3d:bb:1f,cpark@yahoo.com,img/obama.jpg +Erika Wright,696-24-5515,85102,"1324 Nguyen Valley +South Justinborough, WY 79269-4217",1953-11-28 05:40:02,ac:df:fd:7d:f8:79,oedwards@gmail.com,img/obama.jpg +Ellen Powell,256-63-0475,95754,"54211 Tammie Gardens Suite 175 +Oconnorfurt, TN 11585",1918-10-13 07:18:13,e0:b3:94:59:53:00,sheilamorse@hotmail.com,img/obama.jpg +Katherine Lopez,591-45-7057,37938,"30703 Bender Trafficway Suite 719 +South Amanda, NJ 51538-0192",1952-09-15 00:45:40,ee:e3:b9:2e:99:87,isosa@stone.com,img/obama.jpg +Destiny Johnson,323-47-3134,90281,"414 James Landing Suite 000 +Port Deniseside, KY 06551-8948",1971-06-18 02:59:30,40:96:45:e5:ec:f4,gregg22@mcdaniel.com,img/obama.jpg +Jesse Sullivan,267-96-2797,54638,"3993 Mills Square +Audreyport, RI 81711",1917-10-24 11:10:11,53:84:82:e5:af:fa,powellapril@wilson.com,img/obama.jpg +Robert Pierce,228-37-1469,24255,"8005 Marissa Fields Suite 009 +North Sandraville, NJ 92586-2293",1947-08-18 22:18:46,e6:5b:87:fd:95:68,clarkkevin@hotmail.com,img/obama.jpg +Francisco Sparks,855-66-7079,85514,"59807 Steven Harbor +New Scott, NJ 94230",1982-06-03 12:06:29,b7:ef:e8:fc:16:b1,hernandezjamie@yahoo.com,img/obama.jpg +Ronald Johnson,112-94-2356,30901,"67991 Hudson Points Apt. 883 +West Roberthaven, AZ 93067",1991-01-14 08:38:20,c9:dd:ae:37:ec:7d,jon83@yahoo.com,img/obama.jpg +Amanda Nguyen,839-83-8407,01627,"3736 Daniels Stravenue Apt. 393 +Wagnerfort, RI 85975",1990-07-13 18:38:28,d2:66:78:10:81:b7,jmunoz@hotmail.com,img/obama.jpg +Dawn Salazar,465-10-8478,43405,"PSC 7723, Box 7366 +APO AE 49456",1987-01-10 03:58:40,1e:b0:ba:30:a4:9a,james95@hotmail.com,img/obama.jpg +Lynn Anderson,873-61-5482,64101,"33005 Alicia Village +Deanport, WA 61660-8570",1953-11-09 06:03:43,51:f8:5c:92:a7:a6,rebecca98@williams-baker.org,img/obama.jpg +Eric Lewis,075-12-3476,67255,"6203 Warren Plain Apt. 264 +South Danielland, CT 59438",1923-03-11 12:57:50,1e:06:51:0c:b8:75,karen90@davenport.com,img/obama.jpg +Paula Stewart,544-27-1812,67372,"0124 Ritter Mission Apt. 949 +East Jesusstad, OK 04030-1593",1984-03-17 10:10:41,08:22:f0:08:5a:21,clarkholly@yahoo.com,img/obama.jpg +Amber Anthony,738-14-8935,50897,"64515 Willie Haven +New Paulbury, IL 94543-4862",1992-10-09 13:00:17,c4:f6:f4:b5:2d:49,briancamacho@hotmail.com,img/obama.jpg +Daniel Cruz,030-22-1022,89196,"4872 David Drive Suite 637 +Kellystad, OK 03592",1918-04-29 02:20:08,86:64:5f:9f:59:02,jjackson@washington-hines.com,img/obama.jpg +Michael Sullivan,541-41-7139,88478,"602 Cynthia Shores +Port Christopherberg, CA 17469-6784",1945-06-12 12:55:15,51:90:c3:0d:7b:8a,ihuff@huff-perez.com,img/obama.jpg +Carolyn Nelson,055-14-9734,19958,"797 Pamela Expressway Apt. 279 +Mahoneymouth, TN 72100",1991-10-10 02:38:30,64:39:34:9e:e4:cb,olarsen@stevens-garcia.com,img/obama.jpg +Katelyn Edwards,761-48-3723,48609,"5428 Kristy Walk +Perezhaven, PA 48833",2009-05-21 05:14:22,3a:87:bb:b7:81:1a,anthony64@peters.com,img/obama.jpg +Michelle Robinson,621-82-4108,60828,"585 Kaitlyn Light +South Stephen, MO 84669",1977-10-02 05:54:02,82:3f:c8:21:4f:ad,natalie17@hicks.com,img/obama.jpg +Robert Bruce,570-78-2581,72545,"29253 Jacobs Parks Suite 008 +New Robertland, RI 94770-6302",2009-08-26 14:08:30,56:e3:0b:78:98:d4,pchoi@gmail.com,img/obama.jpg +Ashley Moore,586-70-1170,23997,"492 Anderson Skyway Apt. 860 +Batesberg, AR 50810-5619",1926-01-17 01:44:53,e6:95:96:34:f8:68,hnelson@gmail.com,img/obama.jpg +Taylor Brown,309-35-9493,64697,"732 Jose River Suite 169 +Nelsonton, WI 08468-5408",1991-01-02 04:28:19,17:4a:aa:88:18:c5,reedreginald@cummings.com,img/obama.jpg +Steven Elliott,212-09-3612,38534,"3618 Peters Mountain Apt. 006 +Lake Brandon, VA 76641",1920-08-26 03:55:55,61:a9:d6:7d:07:6c,markbell@gmail.com,img/obama.jpg +Kelly Holmes,759-26-7182,61310,"27740 Solomon Wall Apt. 612 +Port Jamesbury, KS 45570",2001-02-26 21:01:39,58:3b:5e:56:3f:bd,rojastanya@hotmail.com,img/obama.jpg +Timothy Drake,617-69-0413,21028,"45331 Jamie Hill Suite 764 +Lake Joshua, NY 23054",2004-04-02 11:50:59,04:a4:21:ea:f7:00,scottpaul@yahoo.com,img/obama.jpg +Nicholas Bradford,560-80-5348,72692,"8511 Krista Underpass Apt. 378 +Perryburgh, FL 89894-7560",1980-09-03 22:01:29,1b:44:70:e0:6b:d3,twarner@alexander-mccormick.net,img/obama.jpg +Hailey Leon,746-07-0081,68478,"65317 Marcus Burgs Apt. 444 +Kimside, WV 02495-9712",1970-09-09 01:42:47,06:84:f3:a3:af:9c,gregory26@gmail.com,img/obama.jpg +Beverly Richardson,324-19-5236,56863,"488 Jennifer Crescent Suite 339 +Port Thomas, UT 99317-4598",2001-02-04 16:29:34,61:4e:7b:0b:8b:c4,gbaker@harris-jimenez.org,img/obama.jpg +Stephen Gray,877-52-9232,65778,"5800 David Vista Suite 347 +Wrightshire, NH 72911-5399",2010-12-31 20:17:12,5d:52:d3:ca:31:2f,lguerrero@hotmail.com,img/obama.jpg +Maria Valdez,804-59-2981,59903,"77815 James Ridges +East Brandonbury, AL 83447",1943-11-05 00:45:08,c3:06:37:06:5d:8b,deborah33@evans-gordon.org,img/obama.jpg +William Marks,376-43-2249,23360,"56321 Mary Island Apt. 231 +Aliciafurt, OH 05670",1963-02-11 23:19:54,d2:c0:f6:5f:ab:46,bakermichael@sellers.org,img/obama.jpg +Patty Burgess,830-49-9979,67477,"4686 Virginia Knolls +Kelseyville, MO 22967",1956-07-01 11:03:33,61:99:95:96:95:38,davidsloan@baxter.net,img/obama.jpg +Aaron Hall,664-44-1165,43748,"378 Andrew River Apt. 603 +South Sarah, WA 78884-4443",1974-05-23 16:29:33,5f:ae:bb:7d:30:3b,reyescrystal@gmail.com,img/obama.jpg +Shane Morrison,564-72-1625,17400,"2881 Amanda Canyon +West Rachelstad, LA 44638-8015",1981-05-25 06:29:20,aa:07:38:45:a7:86,jflynn@brown.com,img/obama.jpg +Lydia Moore,477-84-4703,91049,"9826 Guzman Street Suite 803 +Dannyfort, TX 24198-4912",1975-07-07 23:51:19,02:fc:39:a9:51:1d,jstewart@davila-hunt.biz,img/obama.jpg +Scott Jordan,141-88-4791,06538,"0740 Dawson Club Suite 719 +New Jose, NV 47791",1988-11-07 17:27:52,ab:4d:02:1f:f0:46,miranda29@coffey-douglas.net,img/obama.jpg +Christopher Pearson,467-26-6065,85406,"186 Amanda Mission Suite 026 +North Benjaminfurt, FM 04806",1939-09-07 01:27:04,d3:12:13:6a:ca:03,victor93@johnson.com,img/obama.jpg +Gary Clark,004-25-6677,88588,"606 Juan Island +New Jesse, MP 11882-2819",1984-08-25 16:52:19,1d:8f:8d:a3:89:9a,johnsongloria@dalton-aguilar.info,img/obama.jpg +Laurie Barajas,134-37-7010,33295,"054 Hale Harbor Suite 367 +East Wandaside, PA 82811-5667",1929-10-31 07:36:25,b6:80:e6:61:63:7e,lisareed@hotmail.com,img/obama.jpg +Edward Friedman,501-78-8451,56838,"536 Joshua Street Suite 263 +Port Alexandra, AL 89026",1934-12-05 20:20:21,82:44:5d:f4:f3:ee,pattersonmatthew@yahoo.com,img/obama.jpg +Christian Rivera,142-05-8905,73269,"3502 Holmes Mill Apt. 005 +Pagetown, NV 12815",1927-07-28 09:41:39,b9:b6:5e:3e:a4:c0,zthompson@gmail.com,img/obama.jpg +Linda Knox,425-30-9534,48080,"249 Porter Union +West Michael, WI 55740",1948-08-05 12:54:42,7a:13:6d:70:40:b7,normaflowers@baker-knight.net,img/obama.jpg +Brett Phillips,868-17-7413,84443,"4136 Hogan Lodge Apt. 589 +Smithside, KS 13700",1946-08-07 12:20:15,9c:d2:d0:f3:aa:22,jenkinsdanielle@walker.com,img/obama.jpg +Kelly Jones,720-23-5474,60002,"20261 Bryant Crest +Flynnborough, WV 47838-8850",1971-01-27 05:44:56,5d:4e:f5:68:17:01,crasmussen@ortega-hall.com,img/obama.jpg +Justin Estes,654-72-8674,56164,"2665 Cox Ranch +Port Christopher, UT 91740-5818",1970-07-20 20:15:34,47:c7:26:d8:a1:b6,lowecharles@hotmail.com,img/obama.jpg +Stephen Bowen,630-07-9292,42807,"61472 Cole Court +North Erin, ME 28111",1944-07-25 16:55:45,28:09:0a:5a:b4:c3,cameron71@yahoo.com,img/obama.jpg +Kenneth Kline,869-45-8746,71463,"1785 Jessica Heights Suite 342 +Port Colleenmouth, IL 21856-2310",1994-02-14 19:54:23,ac:9b:0e:22:8c:05,scott75@gmail.com,img/obama.jpg +Jennifer Riley,674-03-4756,69412,"08460 Ramos Cape Apt. 194 +New Kristinshire, MI 55112",1970-11-22 21:56:33,90:12:0e:b3:f9:7b,lowerysteven@little.net,img/obama.jpg +Steven Williams,248-76-5692,99002,"5219 Evans Mall Apt. 531 +East Katieborough, MS 20684",1978-09-16 07:13:46,ee:d1:13:4b:2a:e0,alimargaret@sutton.net,img/obama.jpg +Jonathan Jimenez,050-87-1777,98100,"69468 Edwin Gardens Suite 780 +West Jeffreyfort, CT 36075",1997-10-21 20:01:52,9f:fb:9d:a9:2e:05,whitetiffany@yahoo.com,img/obama.jpg +Alexandra Wolf,843-71-3056,87885,"3425 Jeffrey Cape Apt. 716 +Christianhaven, TN 27113",1945-07-24 10:22:48,b7:c0:b8:44:c3:e4,joseph79@johnson-banks.com,img/obama.jpg +Matthew Bell,630-04-6078,43192,"6973 Cynthia Flats Apt. 706 +Nelsonville, NJ 93725-4203",1989-01-02 01:46:58,41:36:c4:71:8a:ec,kathy88@castro.com,img/obama.jpg +Isaac Williamson,565-65-9830,33544,"8994 Keith Brook Apt. 883 +New Ralphborough, TN 22325-9706",1942-12-20 23:15:32,25:f9:6d:0b:d1:e6,ruizerin@yahoo.com,img/obama.jpg +Paula Boyd,897-04-1216,66330,"325 Lopez Field +West Jakestad, PR 18627",1929-04-23 03:14:53,42:89:27:8c:d9:4f,silvashaun@wilson-santiago.org,img/obama.jpg +Robert Garcia,085-63-9215,64328,"158 Byrd Fort +Barryburgh, MT 84161",1925-04-10 20:56:54,20:f0:85:53:36:30,catherine09@gentry-miller.com,img/obama.jpg +Robert Garcia,049-38-9314,16313,"60351 Zimmerman Parkway +Port Amy, IN 81794-2644",1943-05-06 10:05:34,db:e1:e8:6d:ff:8c,dwright@morse.com,img/obama.jpg +Gina Tate,838-45-3519,20211,"USNV Valdez +FPO AP 32323",1950-03-18 10:31:23,c9:07:4d:65:c8:1c,wilkinsonmiranda@reynolds-davis.com,img/obama.jpg +Mitchell Simon,374-19-5063,26257,"73813 Jackson Flat Apt. 690 +Brittneybury, CT 76160",2010-04-12 23:42:57,4d:f8:83:69:6a:f3,fosterjulia@hotmail.com,img/obama.jpg +Donald Hill,575-25-0778,61737,"7822 Fleming Villages +Watkinsfort, ME 72980-5802",2002-05-05 09:01:42,e3:06:2f:06:fc:a4,tracy76@graham-gill.com,img/obama.jpg +Alexander Blackwell,141-94-5530,45003,"58900 Melissa Wall +Richardfurt, NM 53489-9444",1926-10-26 12:22:45,22:8f:15:2b:96:cd,alyssa40@love.com,img/obama.jpg +Mary Nichols,062-32-8850,17388,"Unit 1398 Box 1038 +DPO AP 04268",1931-05-31 00:33:57,76:4e:70:0a:21:cb,tim51@yahoo.com,img/obama.jpg +Nicholas Ramos,149-96-0430,49127,"623 Christopher Unions Apt. 769 +Johnsonborough, NC 87728-9287",1997-02-01 10:35:31,41:0a:e3:d9:6a:bd,escobarheather@gmail.com,img/obama.jpg +Dennis Turner,315-29-6370,02743,"299 Perez Point Suite 830 +East Nataliehaven, ND 26048",2014-05-05 06:16:20,19:96:89:48:c2:ee,chelseylong@gmail.com,img/obama.jpg +David Doyle,367-46-5692,15278,"21373 Morrison Estates +Kennethchester, AS 56631-8472",1980-10-16 22:34:58,9e:c3:64:16:e7:22,thomasshelly@good-walter.com,img/obama.jpg +Alexa Gutierrez,841-57-3410,04103,"85658 Daniel Summit Apt. 862 +Port Jeremy, AR 69486-5403",1961-12-25 08:47:20,7d:17:24:2e:a4:6c,scottbuchanan@hotmail.com,img/obama.jpg +Collin Carroll,349-49-1120,16862,"75458 Brown Row Apt. 178 +Amymouth, IN 06802-1934",1945-02-20 21:00:58,2d:66:b4:f1:4e:8e,llittle@bennett.com,img/obama.jpg +Susan Grant,524-82-7012,91732,"6786 Sarah Ferry Suite 980 +Lake Tracy, GU 07642-5984",1968-10-30 21:51:14,20:ef:d9:a2:1d:6c,michelle98@harris.com,img/obama.jpg +Norma Hale,865-86-8396,48232,"94984 Michael Mission +New Briannaborough, AK 29682-7842",1951-11-05 22:02:03,df:0f:d5:3d:7e:90,gregory42@payne.com,img/obama.jpg +Carrie Adams,641-20-4327,52463,"2741 White Fall +Port Dylan, OK 12016-3863",1926-09-02 16:35:54,1b:70:b8:8c:61:11,tyler79@bautista.com,img/obama.jpg +Alicia Adams,368-36-7140,01225,"1410 Douglas Mountains +South Michelleland, MH 66216-4637",1974-04-27 02:22:10,e7:76:50:36:be:bc,wattsdaniel@williams.com,img/obama.jpg +Leslie Warren,425-27-6556,17136,"3128 Troy Place Suite 928 +Smithshire, CA 99959",2004-06-17 08:00:26,1c:42:fe:e8:57:60,rachelalexander@hernandez.com,img/obama.jpg +Justin Delgado,732-83-3121,36574,"057 Santos Corners Suite 348 +North Sheilastad, PW 44789-3657",1969-03-17 14:33:22,61:86:90:1c:ed:18,smithlawrence@cain-bailey.com,img/obama.jpg +Jeffrey Byrd,314-15-8062,31626,"97037 Terry Run +Thompsonport, MT 14701-2331",1965-04-25 05:48:47,2b:cf:38:d3:a5:d4,obrown@gmail.com,img/obama.jpg +Natalie Williams,664-60-4216,88797,"813 Elizabeth Mews Apt. 158 +West Codyfort, VT 51378-5186",1948-10-12 22:13:03,99:b8:87:2b:f1:be,hector89@kim-bond.com,img/obama.jpg +John Adams,829-20-2273,69446,"2505 Pace Stream Suite 017 +Port Jillianside, FM 22398-0149",1974-05-07 10:31:30,ec:38:24:bb:4c:48,jessica72@collins.net,img/obama.jpg +Jordan Cunningham,357-34-1999,07757,"1596 Lynch Circle +New Erin, VA 33255",1984-04-21 23:16:16,eb:94:a7:9c:7b:5b,woodcheryl@fletcher-cole.com,img/obama.jpg +Mr. Thomas Flores PhD,425-07-7033,04483,"USNV Garcia +FPO AP 43285",1964-09-24 10:11:55,4e:d0:96:e3:02:7f,warren00@banks-bowman.info,img/obama.jpg +Dustin Wang,713-52-7542,79046,"56964 Kevin Lakes +South Danielberg, SC 30424",1933-12-24 21:50:08,0a:45:30:7a:bf:fe,charles97@moore-poole.biz,img/obama.jpg +Richard Moore,897-95-7496,59748,"4150 Taylor Mountain Apt. 064 +Sallybury, OH 75408",1941-04-28 16:32:10,6b:e4:80:ad:d5:3a,qleonard@ross.com,img/obama.jpg +Brandon Jones,059-04-7241,20221,"62613 Andrew Stream Apt. 979 +South Andrea, ID 07805-1018",1924-07-21 22:37:12,e2:c2:b2:f6:83:0a,michael14@garrison-burnett.com,img/obama.jpg +Jamie Anderson,828-90-6601,68216,"54216 Mason Isle +Figueroaborough, DC 92791-8879",1960-10-31 18:33:55,21:6a:5d:9c:ee:e7,wellsanthony@gmail.com,img/obama.jpg +Michael Hunt,844-09-5520,82662,"14220 Hawkins Unions Suite 630 +North Jeffrey, MT 06917",1997-12-04 02:14:10,38:08:27:e1:65:31,denisemcintyre@hotmail.com,img/obama.jpg +Sarah Santos,075-29-3480,43760,"10958 Gary Lodge Apt. 620 +Port Angela, DC 51903-4077",1974-09-05 20:04:49,d1:cb:a8:d3:61:75,zwhite@rivera.org,img/obama.jpg +Kevin Cox,846-28-4881,13730,"0782 Rachel Point +East Patrickport, CA 02352-1802",1940-08-07 10:11:33,09:41:4f:e3:d1:29,jameshess@hotmail.com,img/obama.jpg +Angela James,661-69-2224,76125,"849 Price Alley Suite 183 +Jeremyside, IA 95927",1954-04-22 21:40:13,09:83:a8:5b:46:17,kevin47@lopez.com,img/obama.jpg +Mary Mcdaniel,834-02-1793,88499,"844 Maddox Plains +Nicholasville, NE 61810-7359",1953-05-13 05:47:07,73:4c:df:8c:39:ec,dmurray@dunn.info,img/obama.jpg +Alexandria Briggs,597-24-3472,64273,"69053 Smith Place +West David, KY 40918",2015-07-04 00:09:11,67:d9:7b:5d:b7:7b,curtis09@yahoo.com,img/obama.jpg +Jonathan Carter,355-61-1225,51050,"8076 Dean Valleys Suite 281 +Port Rhondamouth, WY 72547",1982-06-26 03:44:47,ae:57:24:94:7e:cd,scottheather@hampton.com,img/obama.jpg +Patricia Johnson,083-28-5463,11077,"3104 Heather Track +North Gregoryshire, VA 63342",1976-08-01 01:58:02,7a:de:56:8e:f3:3b,armstrongcody@white.com,img/obama.jpg +Louis Stone,448-35-8028,96672,"Unit 7378 Box 3724 +DPO AP 09655-2475",1951-09-15 02:04:55,09:17:7a:2c:29:ca,jamesadkins@yahoo.com,img/obama.jpg +Andre Lewis,194-39-8338,65430,"86921 Jones Dam Suite 604 +South Rebecca, NV 33093-1618",1944-09-22 14:03:26,9b:ed:5e:94:93:ad,iclark@james.com,img/obama.jpg +Jessica Harris,594-79-7693,93362,"77535 Little Neck +Port Jasonville, SD 02231-0835",1970-09-06 04:34:18,94:93:b1:2b:20:0b,jason15@yahoo.com,img/obama.jpg +Carrie Steele,493-09-8871,55634,"2951 Scott Ports Suite 234 +Lake Jamesfurt, WV 10969-3823",2003-10-31 14:38:08,70:36:2b:23:ce:d4,evanscharles@gmail.com,img/obama.jpg +Blake Stewart,447-47-6161,48846,"804 Velasquez Island Suite 723 +Matthewborough, VT 26699-4575",1926-09-20 04:24:33,d7:40:8d:0f:53:c8,smithduane@lam.com,img/obama.jpg +Jessica Marquez,873-68-3887,52797,"582 Palmer Trafficway +North Faith, PA 07320",2000-05-17 02:33:10,3c:5c:c5:d7:1e:3c,anewman@hotmail.com,img/obama.jpg +Kevin Green,336-43-6667,18579,"4121 Laura Cove +Lake Thomasbury, ME 39730-7719",1977-12-04 14:10:04,53:b5:87:53:00:04,bobbystanton@oconnor.com,img/obama.jpg +Christopher Johnson,207-77-6556,41608,"00765 Brittany Cliff Suite 351 +North Maria, MH 49591-7300",1922-01-12 15:31:28,43:ca:e9:e5:b1:01,nancymonroe@gmail.com,img/obama.jpg +Shane Williams,452-38-6403,14698,"916 Taylor Loaf +East Diana, NM 98336",1988-12-15 13:16:17,ae:22:c9:1a:dd:cd,robinbutler@yahoo.com,img/obama.jpg +Jessica Hooper,786-36-3893,99378,"8684 Bradley Hill +East Wendyshire, ND 76436",1973-07-13 12:07:27,ce:42:04:ff:a5:b6,zgarcia@nolan.net,img/obama.jpg +Ryan Randall,716-64-4176,85352,"31250 Warner Plains Apt. 454 +New Robert, RI 35386-0262",1989-05-12 11:27:00,7e:28:cf:7d:85:67,rmason@yahoo.com,img/obama.jpg +Dennis Thompson,676-15-7612,65617,"619 Green Manor Apt. 641 +Williamfurt, MI 36308",1929-01-17 18:53:12,5c:fb:f7:bf:8f:d0,deannayoung@anderson.net,img/obama.jpg +Holly Lindsey,827-03-3277,85425,"0217 Andrew Knoll Suite 151 +Hornton, PR 40883-9696",1946-11-10 07:30:41,dc:91:ba:d4:1e:a4,rick09@hotmail.com,img/obama.jpg +Kimberly Jones,244-26-9433,83892,"87845 Kristen Parks Suite 114 +Lake Katherine, NY 40721",1927-11-14 14:56:29,df:3d:53:7e:c1:e7,matthew46@mathews-vargas.org,img/obama.jpg +Jared Rios,439-04-2454,56282,"115 Lawson Parkways Suite 021 +North Teresaside, CO 58958",1929-04-11 18:06:38,e7:84:d6:d8:83:46,cameron27@gmail.com,img/obama.jpg +Nathaniel Shaw,009-94-5174,44464,"16418 Fowler Rapids Suite 041 +Davisstad, PA 69786-8572",1954-01-17 08:07:17,50:6d:41:8f:98:e7,csutton@yahoo.com,img/obama.jpg +Stacy Mullins,887-59-2979,91803,"412 Best Hill +Garciatown, NC 70766-7132",2014-05-22 00:39:26,3d:b4:ea:41:94:4a,sgarcia@hamilton-heath.org,img/obama.jpg +Robert Adams,398-29-5919,19651,"0810 William Plains +Mcbrideland, ME 75154",1996-03-30 22:19:14,e9:53:cd:5a:48:e7,milleramber@mitchell-miller.com,img/obama.jpg +Taylor Palmer,199-79-5134,43606,"7970 Michael Greens +Reneeburgh, NY 13379",1984-03-26 01:22:12,20:f4:89:99:94:38,hortonlauren@acosta.com,img/obama.jpg +Angela Martinez,300-04-3034,03118,"46031 Porter Lock +Peggybury, AR 09927",1982-11-16 22:02:03,34:71:88:97:50:e7,jeremyalvarado@ward.info,img/obama.jpg +Lisa White,273-40-0757,62537,"707 Key Way Suite 126 +Andrewshire, MO 45344",1920-08-07 15:45:50,28:f0:5f:c1:e7:70,jessewright@walker.biz,img/obama.jpg +Misty Hampton,371-06-6004,76034,"4384 Long Heights Suite 834 +Stephenmouth, IL 57116-7677",2003-12-27 14:29:29,c9:2a:99:5a:33:f6,douglas44@bryant-dalton.net,img/obama.jpg +Luis Wong,041-75-0976,81162,"3431 Rogers Turnpike +South Amanda, NM 14393-5907",1930-02-18 12:10:37,ba:50:1d:9e:eb:ec,evelynstephens@hotmail.com,img/obama.jpg +Lori Martinez,402-38-0189,74327,"867 Garrett Stravenue Apt. 705 +East Edwinhaven, MI 86016",1948-01-28 03:32:15,3c:e5:c1:84:da:12,stephanieho@fuller.info,img/obama.jpg +Rachel Bell,332-35-7957,30650,"232 Cooley Fields +Jacobsmouth, MS 89470",2016-06-14 17:40:14,de:b4:17:68:35:eb,james93@gmail.com,img/obama.jpg +Cory Warren,004-34-2608,98021,"08672 Hunter Shores Suite 753 +Esparzatown, NM 64701-7099",2005-09-07 01:30:46,19:91:d0:70:37:b4,dale52@hotmail.com,img/obama.jpg +Henry Obrien,430-36-3173,11667,"1928 Linda Valleys Suite 105 +Deborahborough, PA 75548-6706",1994-10-10 20:17:19,d1:89:54:6c:9e:10,fberry@moore-brown.net,img/obama.jpg +Kathryn Pratt,523-39-9315,79195,"5290 Stephanie Point Apt. 918 +Port Pamelaville, NY 53288-6452",1943-04-09 11:42:43,81:b2:14:6a:d1:1f,burtonjustin@gmail.com,img/obama.jpg +Karen Kramer,387-91-2497,57140,"74956 Dunn Ranch Suite 480 +Port Victoria, AZ 40054",1943-11-11 03:52:36,57:af:ba:32:a1:1c,padillamarco@yahoo.com,img/obama.jpg +Veronica Little,605-56-1170,08926,"7963 Wong Meadow Suite 263 +East Rachel, MO 18137-4757",1919-04-01 23:58:38,a7:94:32:07:80:7d,baileywilliam@gmail.com,img/obama.jpg +Laura Simpson,309-37-8097,47486,"USS Wright +FPO AE 87119",1928-08-18 07:55:28,52:a4:4c:6b:55:e7,hernandezbruce@yahoo.com,img/obama.jpg +Sarah Hayes,801-59-5802,03083,"66326 Rachel Unions Apt. 015 +Wilsonland, NC 41591-1920",1996-10-08 12:02:14,35:5c:ed:35:fc:bc,hmalone@yahoo.com,img/obama.jpg +Susan Key,517-02-2033,60706,"422 Elizabeth Shores Apt. 234 +New David, FM 39401",1957-07-11 15:29:42,36:d1:35:08:a7:b2,murraymike@hotmail.com,img/obama.jpg +Scott Mann,239-24-9877,41446,"06748 Kelley Mountain Suite 688 +North Russellberg, IN 67332",1969-11-27 00:36:39,53:0b:bf:c4:91:a2,lauren30@hotmail.com,img/obama.jpg +Jennifer Lewis,238-98-1905,53751,"166 Lyons Lake Apt. 659 +Lake Wendyview, NE 58887",2009-09-06 04:54:05,9a:19:0f:be:8b:aa,michaelbass@hotmail.com,img/obama.jpg +Jennifer Hernandez,551-59-3926,62397,"0793 Thomas Bridge +Harrisbury, MN 98881-6061",1938-12-10 13:29:52,8a:01:d4:f0:31:81,ebailey@johnson-pierce.com,img/obama.jpg +Ashley Walker,027-36-0495,16081,"41481 Ward Fork Suite 005 +South Joshua, ND 73358-2588",1978-01-17 04:15:27,2a:7f:94:5a:8a:a7,fwebb@henson.biz,img/obama.jpg +Matthew Brooks,480-11-4025,49404,"23209 Carson Ports +West Christinatown, LA 42919",2007-04-14 15:28:45,06:e7:a8:a6:ee:92,johnsonkimberly@jackson.net,img/obama.jpg +Marc Robinson,207-61-2170,20921,"6488 Martinez River +Taraview, FL 26831-1140",1952-01-01 08:10:45,aa:51:78:ca:2e:f4,kwu@hotmail.com,img/obama.jpg +Jessica Hudson,351-64-3754,56271,"49155 Walters Fords +Melanietown, MA 24233",1937-06-15 16:35:42,4e:38:b4:bf:3c:a6,kenneth77@moran.com,img/obama.jpg +John Mack,829-12-3037,70804,"0194 Cole Summit +Moraleschester, DC 12083",1987-06-14 05:33:18,4b:f9:c5:ec:cf:3f,feverett@wiggins-krause.info,img/obama.jpg +Stephanie Rocha,379-59-5192,38274,"49890 David Plain +Port Shawn, NH 49681-3514",1942-09-05 02:54:24,a3:c0:a6:76:e1:b5,michelle90@yahoo.com,img/obama.jpg +Eric Mccarty PhD,473-60-5325,72986,"63267 Ryan Island +South Josephshire, ND 43544",1967-01-10 22:32:16,06:31:db:66:5b:43,martinezmaria@yahoo.com,img/obama.jpg +Zachary Bryant,342-71-0588,28050,"4693 Elizabeth Burgs Suite 293 +New Davidbury, TN 77722-7181",1919-01-18 22:42:19,3f:bc:85:b2:8d:3d,laura64@hotmail.com,img/obama.jpg +Joseph Strickland,173-65-4087,83710,"49368 Woods Stravenue Suite 804 +East Erin, NE 35203",1970-07-21 14:15:13,41:fd:f9:4f:a1:21,thomasjames@williams.com,img/obama.jpg +Claire Madden,520-48-8269,97951,"USCGC Nixon +FPO AA 25890-1095",1996-09-29 07:35:04,12:95:a4:25:79:c3,sarahmiles@garrett-smith.com,img/obama.jpg +Jennifer Mason,048-33-6543,79452,"5192 Katherine Tunnel Apt. 508 +Mathistown, FM 24307-6294",1917-09-08 12:35:10,39:a1:1c:b9:32:b7,monicarogers@mccoy.org,img/obama.jpg +Jason Calhoun,896-07-1130,77827,"48258 Tyler Skyway +North Kristy, AZ 37215",1955-02-17 06:02:08,84:9e:d9:55:7f:38,turnernancy@yahoo.com,img/obama.jpg +Andrea Bowman,078-74-5458,92355,"PSC 4348, Box 9785 +APO AA 54777-1215",1988-05-04 03:36:27,fe:33:e3:0c:1f:9d,hlee@hotmail.com,img/obama.jpg +Amanda Hamilton,364-04-9841,86522,"950 Brandon Drive +West Laurafort, KY 31682",1941-10-05 15:51:01,55:0f:fa:8a:1a:11,smithkelsey@clay-davila.biz,img/obama.jpg +Jose Orozco,309-91-4891,25283,"03452 Laurie Knolls +South Ronaldfurt, TN 18892-1849",1954-09-16 04:41:50,b4:3d:94:b8:7a:8e,douglaswilliams@hotmail.com,img/obama.jpg +Roy Knight,395-33-8032,63339,"0369 Nguyen Fort Apt. 963 +Rothview, OH 02138",1992-02-18 06:25:42,39:2b:a7:5f:75:09,otran@gmail.com,img/obama.jpg +Joy Lewis,750-85-8537,27302,"391 Pierce Park +New Cassandraside, KS 15127-1320",1947-05-07 20:12:49,07:8c:b2:82:c4:9c,tonychandler@yahoo.com,img/obama.jpg +Brenda Williamson,887-29-0001,55321,"21203 Snyder Crest +Lake Robertshire, UT 68921-4287",2004-10-21 07:37:02,04:a1:be:b8:0a:c4,matthewvalencia@hotmail.com,img/obama.jpg +Andrew Moss,520-64-7795,45360,"23252 Perez Plains Apt. 976 +West Rachel, VA 81905",2015-12-20 02:33:12,e4:25:04:b6:cd:a7,cnavarro@gmail.com,img/obama.jpg +Todd Sanchez,567-43-2914,12891,"USNV Archer +FPO AA 21804-2875",1977-03-24 15:46:59,6d:68:a7:d4:6f:89,kenneth96@yahoo.com,img/obama.jpg +Jenny Blanchard,689-44-5442,49805,"0223 Candice Forges Apt. 402 +Mcdanielmouth, ME 74937-3750",1936-04-23 21:41:47,80:b5:45:6e:ca:a6,gregorypark@hotmail.com,img/obama.jpg +Andrew Cunningham,769-09-1337,65436,"97926 Wilson Cape +Gabrielmouth, KS 59218",1927-11-13 02:19:25,07:b1:56:a0:57:d9,holly54@kane.com,img/obama.jpg +Daniel Reeves,539-95-3040,70203,"61413 Cummings Ways Suite 945 +North Katieton, UT 33141",1920-04-04 01:01:01,1c:00:df:8b:ef:3d,paulbooth@yahoo.com,img/obama.jpg +Michael Hernandez,689-76-8059,82235,"614 Judith Corner +Port Melissa, PA 03680-4218",1996-03-17 21:59:09,c1:0d:c9:8a:64:ee,fernandezjennifer@benitez-fitzgerald.com,img/obama.jpg +Brandon Wood,184-72-8511,05258,"15924 Lindsay Estates Apt. 955 +North Courtneyview, HI 84176-0903",1975-10-03 06:36:58,bf:3e:32:4b:14:c6,lopezthomas@hotmail.com,img/obama.jpg +Dylan Armstrong,756-80-6241,26775,"7203 Goodman Stravenue +Richardsonport, OH 41832-2754",1987-07-13 13:23:39,97:d4:b1:70:d7:fb,lorigaines@mason.com,img/obama.jpg +Jennifer Mcdonald,281-73-8723,60301,"51559 Davis Tunnel Apt. 132 +Lewisfurt, NH 69708",1924-08-09 16:16:02,f8:8c:6c:96:19:a5,david43@johnson.com,img/obama.jpg +Jacqueline Watson,818-54-4111,17049,"175 Meghan Roads +South Amy, MT 78864",2009-06-15 17:56:11,21:b7:83:77:56:35,pmason@gmail.com,img/obama.jpg +Christopher Green,590-86-3590,06016,"74627 Kayla Garden Suite 490 +New Jennifer, MN 63069-1433",1929-10-24 17:01:10,84:11:13:f5:a5:a4,pinedajames@williams.com,img/obama.jpg +Scott Holland,243-01-2173,03939,"74567 Barbara Knolls +West Mark, NY 88104-0895",1931-01-15 21:16:38,5e:70:45:7d:65:e6,johnsonstacy@gmail.com,img/obama.jpg +Jose Chambers,791-63-5311,47457,"519 Anthony Brooks +North Kelly, RI 66432",1997-12-03 09:07:07,23:a0:ed:5d:98:fd,swilson@drake-espinoza.com,img/obama.jpg +Nathan Reynolds,638-02-7835,34182,"2436 Sarah Way Apt. 286 +Fullerbury, NE 37045-7011",2012-08-16 07:05:55,dc:86:c9:74:e5:d6,lewismarisa@schmidt.com,img/obama.jpg +Renee Medina,068-46-9388,09527,"20255 Heather Dale +Michaelmouth, GA 07870-7019",1945-10-11 07:56:01,fd:8a:fd:d3:ab:08,robertsalexandra@hotmail.com,img/obama.jpg +Jeanne Torres,407-93-5108,70071,"PSC 6219, Box 3050 +APO AA 12007-5458",2005-03-02 04:16:31,d1:13:0c:14:6a:28,jturner@rivera.com,img/obama.jpg +Nicholas Thomas,648-57-8249,69649,"219 Lisa Union +New Patriciaborough, NE 34362-1951",1930-08-06 13:34:15,7d:76:3e:34:47:86,cunninghamcarol@richardson-west.com,img/obama.jpg +Erin Wolfe,621-01-8838,23759,"260 Jimenez Spurs +West Ashleyfort, UT 27582-9990",2000-02-02 14:17:10,fe:5b:8f:b5:42:fd,lindabrown@gmail.com,img/obama.jpg +Dr. Karen Green,509-04-9816,94835,"07721 Marissa Isle +Keyside, GA 49659-8498",1971-12-22 10:31:20,06:71:ce:0a:56:3e,johntaylor@holden.com,img/obama.jpg +Lisa Herman,502-79-9384,78795,"6409 Maria Garden +Jasonchester, NC 10531-3635",2008-08-18 19:41:35,3c:3e:13:6e:9e:65,msantiago@taylor.org,img/obama.jpg +Keith Austin,568-27-1923,38138,"724 Jonathan Roads Apt. 638 +East Loretta, NH 68318",2012-03-23 10:28:35,23:d0:e5:b9:39:82,allison37@wade.biz,img/obama.jpg +Michael Norris,261-97-3177,05815,"1327 Murphy Centers +New Nicole, DC 55991",1955-07-09 17:25:59,41:8c:fb:83:23:20,hmoore@gmail.com,img/obama.jpg +Ryan Lyons,305-39-9170,30118,"627 Johnson Plaza Apt. 812 +West Gregorybury, MI 07232-5033",1976-11-03 11:55:28,a7:ed:ab:c0:37:94,christinepeterson@gmail.com,img/obama.jpg +Alexandra Santos,266-53-4746,99607,"5517 Figueroa Fort Suite 389 +Stephenchester, SC 96166-4845",1950-06-01 09:23:58,ce:26:69:b1:8d:3a,garciagabriel@garcia-nelson.com,img/obama.jpg +Scott Townsend,418-73-4968,77587,"986 Holloway Parkways +Lake Dominic, WY 61205",1988-04-15 14:46:52,50:38:32:fa:be:e5,rebekah11@washington.info,img/obama.jpg +Lauren Johnson,257-02-6324,77581,"61630 Figueroa Plains Suite 652 +West Tinaview, GU 38148",1926-10-28 00:30:44,e1:07:24:24:4d:bf,davidcollins@davila-williams.com,img/obama.jpg +Sharon Young,617-66-0471,57102,"502 Rivera Shore Apt. 728 +Stevenhaven, HI 20527",1969-12-13 07:37:59,3b:71:77:40:0f:11,huynhbrian@brown.com,img/obama.jpg +Desiree Smith,458-10-8598,38361,"PSC 6056, Box 1032 +APO AE 78562",1925-08-19 18:42:07,0b:8f:35:42:55:83,zsingleton@gmail.com,img/obama.jpg +Dr. Aaron Graham,180-54-2766,15285,"72482 David Drive +Port Nicole, AR 97896",1926-08-12 08:12:07,0b:5d:7d:fd:b6:3f,omarorozco@walker-garcia.net,img/obama.jpg +Daniel Barrett,880-47-1324,65282,"683 Brandi Gardens +Lake Karenberg, WI 28118",2015-11-21 12:51:46,25:0e:28:94:fa:7a,gloria07@jones.info,img/obama.jpg +Bobby Jacobs,230-06-1427,67510,"662 Gilmore Circles Apt. 684 +South Angelabury, VI 85155-4982",1998-08-06 18:37:24,f1:53:d4:cf:28:43,wchase@gmail.com,img/obama.jpg +Joshua Valentine,437-48-8057,28088,"20107 Belinda Garden +Port Jackieborough, MD 82978",1926-02-25 06:02:38,cd:4f:9d:6f:da:b2,gbrown@hotmail.com,img/obama.jpg +Charles Murphy,603-17-5539,07033,"98601 Brooke Pike +Veronicabury, IN 48996-1665",1922-08-24 10:03:19,ba:8a:f1:82:e6:0d,danielcoleman@yahoo.com,img/obama.jpg +Connie Miller,220-78-5407,30553,"282 Sheila Branch Apt. 984 +West Lynn, AS 40195",2003-12-10 22:58:56,df:79:b8:58:22:e3,jamesberger@garcia.net,img/obama.jpg +Tracy Rios,201-56-1316,25086,"USNS Bailey +FPO AP 30014-0169",1965-09-22 00:04:38,45:ae:0e:e5:58:3a,stevenevans@boyle.com,img/obama.jpg +Tina Maldonado,514-50-9747,40224,"83357 Sandra Drive +Lake Adamfort, MP 55754",1928-03-04 06:16:08,b0:8f:6e:f7:de:68,sharonjackson@munoz-ewing.info,img/obama.jpg +Diana Harris,656-17-5653,22750,"721 Megan Drive Apt. 783 +Riosstad, HI 57652-9696",2001-04-07 08:14:25,93:95:bd:b2:81:08,esmith@sawyer-shields.com,img/obama.jpg +Gabriella Thompson,222-13-4294,55577,"738 William Gateway Suite 137 +Lake Stephenhaven, MS 98484-1136",1952-12-10 01:27:44,99:e4:c1:6c:2f:bc,groberts@gmail.com,img/obama.jpg +Kenneth Hawkins,470-03-2909,55523,"6119 David Junction Apt. 231 +West Moniqueville, NH 68318-2710",1982-01-20 21:03:34,4a:94:04:36:87:d8,mclaughlinscott@lin-torres.com,img/obama.jpg +Veronica Rios,066-57-7188,03759,"6069 Jodi Mount +South James, NY 87853",1918-04-16 16:13:38,ee:62:25:a2:7e:17,webbronald@yahoo.com,img/obama.jpg +Kelly York,213-17-4907,80997,"9062 Lori Radial +South Lisabury, VA 65910-1293",1935-03-18 23:15:02,34:60:4d:4c:40:33,michaellane@hotmail.com,img/obama.jpg +Christina Adams,537-82-2978,72134,"4142 Webb Locks Suite 890 +North Amandaside, ID 65385-2761",1922-09-26 13:43:05,92:77:d2:e2:ff:89,qguzman@yahoo.com,img/obama.jpg +Cory Davis,205-65-1721,58953,"32643 Stephen Isle +Jonesfurt, LA 01016-9133",2000-01-17 13:11:15,59:d3:4c:d7:3f:bb,erobinson@hotmail.com,img/obama.jpg +Jill Carson,054-10-4082,99303,"2933 Marcus Center Suite 437 +Matthewbury, ME 98792",1976-04-09 07:35:24,39:92:aa:79:08:9c,hharris@gmail.com,img/obama.jpg +Peggy Allen,327-86-7360,22621,"6512 Dunn Forks Suite 481 +Davisshire, MN 04612",1991-10-22 04:08:20,e1:f7:2e:65:57:b8,jennywhite@gibbs-owens.com,img/obama.jpg +Christy Harvey,370-13-3563,94783,"278 Kevin Underpass Apt. 957 +New Brianna, MI 80246",1985-09-17 18:02:01,3d:a5:ba:4d:c3:62,amanda67@yahoo.com,img/obama.jpg +Eric Reid,164-90-6085,42838,"3244 Lin Wells +Gardnerhaven, MI 48301-1587",1978-08-02 06:58:11,e7:5d:f5:49:62:92,hugheskaitlyn@gmail.com,img/obama.jpg +Dr. Kevin Hahn DDS,291-29-8711,08399,"118 Michael Garden Apt. 743 +Browntown, ND 83035",1960-04-24 00:38:47,51:5e:16:11:71:23,zperez@lee.com,img/obama.jpg +Douglas Murphy,709-75-5288,92117,"1471 Roy Curve +New Courtney, NE 53131",1956-06-29 05:36:34,b1:35:10:7f:0e:31,meganfitzgerald@turner.com,img/obama.jpg +Michael Hale,053-59-8973,66577,"06992 Jackson Isle Apt. 032 +West Stacyview, WY 30548-5632",2006-03-26 19:45:54,13:8c:8c:5a:e4:a1,parkerpatricia@hotmail.com,img/obama.jpg +Regina Sullivan,648-54-8008,69649,"1897 Hart Stravenue Apt. 760 +Harringtonshire, WV 37035",1999-05-12 15:32:46,d1:1a:6f:10:32:ba,laurenclements@gilmore.net,img/obama.jpg +Daniel Solis II,898-46-6499,18984,"17907 Moore Pine Apt. 687 +Lake Claytonchester, OH 68626",1933-04-06 04:03:40,9f:a7:7a:43:f7:38,karenjohnson@gmail.com,img/obama.jpg +Stephanie Lewis,715-05-2234,68019,"1825 Connie Crossing +West Kim, AS 75271-6869",2006-11-06 17:55:21,45:b3:bf:25:68:2c,joseph68@yahoo.com,img/obama.jpg +Robert Moreno,606-79-0347,85691,"4497 Amanda Cape +Trujilloland, VA 19373-7764",2002-08-18 15:22:58,6f:11:e6:d1:90:87,mpowell@hotmail.com,img/obama.jpg +Jason Baker,807-13-8964,86694,"0209 Christopher Courts +New Laura, NE 49574-5089",1969-08-07 01:59:58,f3:cb:64:91:c6:d2,joseph96@lopez.com,img/obama.jpg +Olivia Thomas,852-43-3326,23420,"998 Benton Lakes Suite 531 +Amandaburgh, TN 10879-1323",1923-07-01 03:07:18,a3:59:5b:84:fd:e6,davissteven@hotmail.com,img/obama.jpg +Haley Smith,222-81-1807,57628,"2472 Johnson Circles +Reillytown, NC 99119-4821",1988-09-02 09:25:50,fc:96:b0:6a:da:4c,ericchavez@torres.com,img/obama.jpg +Jacob Sandoval Jr.,281-79-0447,37770,"5289 Nelson Shoal +Spencerland, MI 67110",1930-11-30 03:20:14,66:85:ca:c4:ec:0f,kleinnathaniel@white.com,img/obama.jpg +Courtney Barnett,679-53-0733,57126,"7911 Doyle Canyon +West Davidmouth, VA 62262",2005-03-08 23:08:07,56:0f:23:9d:a1:a6,ijohnson@washington.com,img/obama.jpg +Cynthia Lucas,442-01-5173,01949,"09672 Patty Crescent +Harpermouth, NM 32404-5674",1960-03-16 03:35:36,24:e5:31:9f:02:8d,jacqueline81@hotmail.com,img/obama.jpg +Pamela Bradley,125-23-0376,92257,"6018 Bennett Mills Suite 105 +New Lisa, CO 17850",1972-07-24 21:53:53,5a:07:54:60:bd:29,smiller@yahoo.com,img/obama.jpg +Erica Williams,283-30-1312,10638,"93925 Lisa Place +Grantberg, FM 01571-6823",1948-07-26 23:54:39,ec:e1:2c:a9:14:6b,mariah52@owens.com,img/obama.jpg +Monique Fisher,093-24-4599,99318,"9812 Williams Meadows Suite 275 +Port Cassandraberg, VT 15701",1975-06-01 02:32:58,90:d6:33:2f:87:04,emily76@stevenson.org,img/obama.jpg +Brittany Hernandez,545-33-9194,88039,"3946 Parker River Apt. 412 +Reyesmouth, FL 27967",1921-07-26 08:32:08,6e:53:c2:99:ef:90,juliejames@gmail.com,img/obama.jpg +Elizabeth Perez,397-17-0350,83125,"PSC 6547, Box 1420 +APO AP 00347-1640",2014-07-10 09:28:40,5c:34:1b:5b:b1:46,marycastillo@yahoo.com,img/obama.jpg +Michael Anthony,110-24-6269,30688,"USNV Gonzales +FPO AP 85520-2725",1998-03-31 02:47:32,da:1f:b5:24:af:0f,mikaylamoore@hotmail.com,img/obama.jpg +Brittany Cox,621-21-5799,43567,"715 Luke Park Suite 351 +West Coreymouth, FL 51436-7549",1955-01-05 03:20:23,92:3d:94:5b:97:70,lunamichaela@hotmail.com,img/obama.jpg +Kenneth Anderson,233-75-5292,84327,"34616 Hopkins Pine Suite 680 +South Evan, MP 01435",1990-11-05 16:40:38,c9:77:b7:ce:cc:db,djackson@adams-keith.com,img/obama.jpg +Kyle Miller,842-13-9596,93313,"23493 Reed Road Apt. 799 +East Michael, DE 83206-2345",2015-04-28 18:29:10,28:d7:bc:d1:8e:fe,fosterjacqueline@yahoo.com,img/obama.jpg +Andrea Powers,410-51-0332,44723,"27840 Denise Station +Parkerview, NJ 51732",1958-04-19 01:48:08,fe:58:4f:a0:23:29,briangarcia@li-boyle.com,img/obama.jpg +Thomas Hoffman,230-18-5456,81360,"187 Herman Trail +Robertview, TX 19282-1682",1940-11-10 03:01:38,ee:4c:33:f5:fc:1e,kross@gmail.com,img/obama.jpg +Lisa Manning,500-90-5117,47330,"9085 Webster Lake Suite 310 +New Alison, VT 05586-9114",1960-12-28 06:09:48,51:f0:76:10:6e:68,adam70@hotmail.com,img/obama.jpg +Robert Horn,083-12-9042,02723,"4301 Turner Mountain +Lake Barbara, IN 61522",1936-07-25 13:35:18,86:15:b4:ee:3e:4a,nathaniel42@gmail.com,img/obama.jpg +Jeffrey Ward,134-72-0175,15173,"USCGC Phillips +FPO AA 58132-2026",1932-04-04 12:41:21,1c:f1:bd:4a:d9:57,jeffrey30@hotmail.com,img/obama.jpg +Connie Davis,811-52-7245,98463,"30530 Lee Coves Apt. 812 +Port Michaelberg, VT 31141",1943-07-09 05:16:39,2f:82:80:e9:e5:6c,triciapage@yahoo.com,img/obama.jpg +Jerry Boyd,132-55-6157,28954,"71634 Christopher Unions Apt. 819 +South Johnborough, NH 60049-8275",1991-09-21 11:34:53,2d:66:c6:d7:fc:a9,ashleypham@yahoo.com,img/obama.jpg +Andrew Morales,524-89-4272,60806,"507 Dawson Trace +Lake Ryan, NJ 58407",1950-04-06 21:56:13,12:78:0e:e3:14:b1,heidicrawford@pittman.com,img/obama.jpg +Nicholas Smith,240-84-7969,10427,"9578 Lauren Village +Thompsontown, AZ 84037-8591",2006-11-12 08:15:06,44:8d:7b:cf:7a:b5,williamroberts@jones.com,img/obama.jpg +Tyler Carroll,834-71-7479,22998,"5079 Haas Camp Suite 466 +Wayneberg, SC 33817",1970-09-27 11:15:54,26:75:4a:20:90:11,john65@gmail.com,img/obama.jpg +Roy Conner,073-40-2676,11382,"4011 Timothy Plaza +West Juliehaven, ID 53393-1699",1927-09-15 12:13:02,d6:dc:75:f0:54:7f,traceysanchez@medina.com,img/obama.jpg +Leslie Chen,516-23-6680,40369,"01630 Patterson Mills +Carrollshire, VT 33716",1932-10-28 20:02:25,c4:1b:17:2a:67:66,rebeccarobles@gmail.com,img/obama.jpg +Samantha Brown,223-09-6720,78270,"591 Smith Mountains +Daughertyberg, MP 94580",1999-08-16 14:49:57,8e:d0:f6:4b:7a:7d,joseph29@small-hall.info,img/obama.jpg +Brandy Miller,449-73-5709,11217,"PSC 1704, Box 7202 +APO AE 26590-4983",1938-04-05 15:06:13,1d:c5:2e:4b:2b:f3,kenneth29@yahoo.com,img/obama.jpg +Mark Patel,701-14-2482,74258,"30527 Adams Gardens Apt. 077 +New Kyle, MD 59404-0117",1931-02-06 13:06:28,c2:17:28:fd:79:54,scotthill@hotmail.com,img/obama.jpg +Karen Bryan,578-69-1875,75606,"950 Bryant Dam Apt. 172 +Port Joseph, TX 04460-3574",1989-06-27 18:05:56,1e:1c:9e:42:fc:66,hopkinsryan@harvey.com,img/obama.jpg +Crystal Snyder,442-63-2415,72710,"76255 Wright Mountain Suite 341 +New Keithville, PW 40203",1987-04-25 03:26:05,82:a2:6f:da:af:c6,harrellgabriella@hotmail.com,img/obama.jpg +Gary Perry,622-03-6255,18729,"8392 Cynthia Wells +West Frankfort, AL 62405",1974-11-20 16:40:39,a4:52:b1:b0:9f:c9,proberts@hotmail.com,img/obama.jpg +Jessica Calhoun,410-37-8035,41130,"USNV Murillo +FPO AP 07303-6326",2014-09-23 12:35:43,79:c2:0b:71:dc:cd,brennanwilliam@gmail.com,img/obama.jpg +Derrick Clark,684-82-3968,16701,"280 Miguel Fall Suite 089 +Lake Brian, IN 86875",1941-04-06 20:33:34,d8:7f:1d:50:64:33,seanmeyers@gonzalez.org,img/obama.jpg +Richard Stevens,459-46-3831,34183,"313 Pitts Underpass +Port Donald, MN 45980-9090",1994-11-11 19:55:26,03:d9:1e:db:76:f3,williamsrebecca@hotmail.com,img/obama.jpg +Patrick Arias,606-35-0073,04779,"387 Howard Pike Suite 455 +Lake Ronaldburgh, CO 24824-1764",2003-08-07 12:39:15,d6:e7:3d:28:e7:19,padilladavid@hotmail.com,img/obama.jpg +Sheryl Norton,664-39-5492,22093,"49633 Ortega Spur Apt. 165 +North Jay, GA 86541-5431",1973-09-05 03:06:57,04:50:9b:c8:77:22,michael12@yahoo.com,img/obama.jpg +Joshua Todd,453-39-5740,77700,"3270 Wheeler Shoal +South Christopher, VT 18288",1940-06-04 06:12:02,dd:2f:87:28:4e:8f,nwood@hayes-jones.com,img/obama.jpg +Christine Henry,737-94-2234,52098,"56510 Jones Causeway Apt. 794 +Laurenside, MD 16870-3976",2001-11-08 15:37:30,87:ab:3e:5d:59:87,gjohnson@hotmail.com,img/obama.jpg +Brooke Manning,410-58-1359,12393,"271 John Plain Suite 538 +Moorefurt, TX 10236",1943-09-15 19:36:01,25:30:f5:07:f7:19,bhoward@gibbs.net,img/obama.jpg +Kimberly Brown,394-94-6288,42885,"2610 Fernandez Ridges +Kristinafurt, WA 56518",1930-06-25 22:43:12,ef:8e:7f:8f:04:af,robertarmstrong@knox.net,img/obama.jpg +Tamara Rowe,374-07-9376,12412,"PSC 5650, Box 9652 +APO AE 85803-9799",2014-09-20 17:33:20,87:cc:2b:7a:32:51,peterbooker@garcia.com,img/obama.jpg +Miss Audrey Williams,407-68-7908,15892,"75198 Rodriguez Pine Apt. 770 +Lake Paula, HI 38230",1953-08-13 20:52:49,1e:c4:a7:ea:92:55,david62@yahoo.com,img/obama.jpg +Jonathan Kaufman,598-26-1296,33641,"5931 Clayton Stream +North Vincentport, GA 56824",1923-04-16 17:59:46,5a:8e:f6:40:72:90,robinsonmark@davis.com,img/obama.jpg +Toni Smith,299-46-5785,54166,"133 Timothy Row Apt. 577 +Nealbury, WV 08742-4528",1986-10-09 20:37:52,d0:2c:20:42:7e:84,zavalacharles@yahoo.com,img/obama.jpg +Miranda Williams,379-04-1077,74917,"453 Kristopher Mill +South Jenniferchester, CO 22196-6855",1957-01-04 06:55:37,8a:98:25:03:1d:25,christopherwilcox@gmail.com,img/obama.jpg +Eddie Moore,568-69-7920,00780,"239 Gaines Green +Amberborough, CA 31810",1937-03-09 02:28:17,1e:a4:c5:16:5f:51,morgan43@owens.net,img/obama.jpg +Bobby White,239-29-7135,21943,"956 Jesus Corners Suite 715 +Smithmouth, VA 49616",1983-02-06 21:36:27,ae:17:0e:3b:c4:18,sheiladiaz@gmail.com,img/obama.jpg +Andrew Campos,735-40-5902,80428,"108 Christine Greens Apt. 881 +Meganburgh, AS 32321-0141",2004-03-26 00:21:08,6f:16:ff:ca:0a:8e,kjones@gordon.com,img/obama.jpg +Judith Williams,559-53-2299,70455,"260 Garcia Squares Apt. 609 +Port Christinastad, WI 99064",2007-07-07 18:54:33,ec:34:df:d3:02:39,lorirandall@taylor-russell.biz,img/obama.jpg +Katrina Stafford,752-64-4442,18134,"0862 Sean Meadows Apt. 418 +East Paulachester, MT 09715",1918-07-17 23:06:10,7c:a0:c6:73:21:fb,travis05@ward.com,img/obama.jpg +Timothy Ryan,201-15-7789,80152,"5010 Charles Manor Suite 861 +West Danielmouth, KY 37186",1945-08-20 10:48:21,37:ca:38:0a:06:34,sarahwilson@bender.com,img/obama.jpg +Stephanie Cain,855-75-1542,37417,"97613 Heidi Ridge +Sarahfort, MN 60735",1954-08-18 19:36:00,92:02:8b:3d:a4:04,christopheringram@yahoo.com,img/obama.jpg +Diane Bautista,149-32-4554,26574,"1993 Bridges Fords Apt. 250 +Russellview, MS 79763-3284",1926-04-06 11:40:37,fc:e3:da:cb:24:90,eric71@roman.com,img/obama.jpg +Brian Smith,324-92-8642,71039,"PSC 9807, Box 2061 +APO AA 30597",2010-07-15 18:47:17,d4:ff:7b:d8:86:09,sharrington@hotmail.com,img/obama.jpg +Amber Parker,682-51-7130,30332,"858 Mann Avenue Suite 602 +Christophertown, LA 01298-2608",1956-01-18 07:40:03,93:14:a0:ed:e8:eb,williamslaura@gmail.com,img/obama.jpg +Wendy Smith,230-55-2979,14015,"822 Kathryn Path +West Larry, VT 56724-1336",1920-07-18 15:12:22,7d:ba:76:42:4c:0c,zburton@cooke.net,img/obama.jpg +Courtney Johnson,776-10-3730,54854,"507 Mckinney Alley +South Ericfort, SC 06032-3836",1946-11-16 02:39:01,20:63:06:41:24:71,cmurillo@yahoo.com,img/obama.jpg +Jay Mckenzie,229-42-5717,21105,"5326 Barnes Divide +Lake Markville, CT 51071-2172",1937-04-07 02:05:50,e2:f6:ea:91:ba:7a,lindsayolson@hotmail.com,img/obama.jpg +Gwendolyn Green,593-01-5080,89182,"0540 Dalton Crossroad Suite 910 +West Kendra, MI 54988",1959-10-03 08:56:59,b3:07:4e:b2:41:cf,theresamitchell@hester.biz,img/obama.jpg +Jennifer Carroll,177-39-2677,68157,"5589 Mitchell Ridge Suite 395 +North Brianfurt, ME 21711-4586",1960-05-23 20:35:04,17:35:0e:4c:af:d2,krobinson@davis.com,img/obama.jpg +Adrian Pope,211-51-5805,95721,"134 Parker Shoals +West Marthaville, MA 21743",1995-05-30 09:27:53,3c:dc:18:55:14:0e,longjacob@hernandez.com,img/obama.jpg +Ashley Brown,397-23-8698,01442,"PSC 8793, Box 8831 +APO AE 97888-5804",1974-05-06 01:23:52,f5:bb:dc:15:88:22,wflowers@nolan.net,img/obama.jpg +Derrick Warren,106-59-2686,18039,"25776 Amanda Islands +West Johnhaven, NH 95524-7970",1996-11-23 10:15:14,cc:ad:54:78:4c:b3,hrichardson@gmail.com,img/obama.jpg +Nicole Tran,220-94-6413,95513,"2329 Becker Harbor Suite 831 +Hoburgh, MT 12050",1972-08-19 19:19:43,df:cb:05:30:e5:2e,anthonycampos@hotmail.com,img/obama.jpg +Adam Dunn,288-20-6747,97079,"7428 Gray Dale Apt. 613 +East Crystalberg, KS 25544",1951-10-06 09:32:44,73:8c:86:e6:92:eb,chriscummings@cameron-cameron.biz,img/obama.jpg +Michelle Smith,350-27-0133,69564,"88274 Shepard Mission +West Danielchester, FL 86849-6737",1926-04-16 19:08:29,a5:f2:20:00:cf:a2,freemanlarry@yahoo.com,img/obama.jpg +Jimmy Santana,860-99-0153,78524,"86988 Tran Alley +Dudleybury, AL 63142-4498",1948-05-29 23:58:29,39:e0:b8:68:88:6c,wyatt83@yahoo.com,img/obama.jpg +James Garcia,761-18-3895,21198,"100 James Forks +Lake Michelleview, WY 71412",1990-02-03 20:15:18,69:95:18:0b:3e:78,scott48@yahoo.com,img/obama.jpg +Russell Riley,779-50-0197,10170,"620 Bass Mills Apt. 522 +Toddtown, SC 65354",1995-01-11 14:21:41,4a:5d:7d:2f:ad:f7,kennethpatterson@juarez.com,img/obama.jpg +Amanda Spencer,400-72-5986,25735,"Unit 4015 Box 6204 +DPO AP 64754-6777",1996-10-03 15:45:52,c2:61:e6:53:13:c6,pshannon@gmail.com,img/obama.jpg +Courtney Farley,072-60-3727,87827,"USNS Bright +FPO AP 59110",2013-07-31 04:24:40,ba:5e:68:6f:26:79,johnsonbrenda@williams-brown.com,img/obama.jpg +Anthony Walker,702-35-1157,31199,"65330 Bruce Garden Apt. 277 +Lake Emilymouth, AK 34433-9873",1989-06-03 21:50:31,1f:94:31:1a:87:0f,boydmatthew@yahoo.com,img/obama.jpg +Ashley Thompson,435-50-8377,25453,"9137 Erickson Path Apt. 366 +Burgessmouth, MO 70288",1973-06-06 20:36:56,07:c6:df:79:31:14,browngwendolyn@hotmail.com,img/obama.jpg +Lisa Brown,439-35-3008,13690,"30213 Jessica Estates Suite 301 +Lake Lynnland, CO 20211-8741",1985-02-28 23:05:00,0c:c4:76:5a:4c:6a,garciarebecca@hernandez.org,img/obama.jpg +Kyle Reynolds,277-25-6258,77333,"214 Allen Stream +West Juliechester, NE 49311",1970-09-11 18:08:15,b2:e1:d8:31:33:4d,millerbrian@cobb.info,img/obama.jpg +Ana Sutton,637-99-4783,12071,"41634 Aaron Freeway +Jenningsside, NM 72982-2193",1978-04-05 08:33:42,e8:a6:02:31:6d:32,mcdonaldsavannah@yahoo.com,img/obama.jpg +Shawn Pittman,640-81-7814,56492,"388 Mary Estates +Teresaside, NV 27356",1962-09-19 22:27:01,1f:9c:60:39:d1:9c,carla84@howell-snyder.com,img/obama.jpg +Sara Carlson,802-20-0718,42170,"3231 Christopher Pine Suite 996 +West Joseph, MO 56534",1994-03-07 05:29:18,61:70:0e:cc:be:e1,diana82@guerrero.com,img/obama.jpg +Leslie Jacobs,030-82-6365,73985,"069 Angela Parkways +North Stacey, NV 38309",1954-01-26 11:53:02,c6:01:92:2d:e3:14,lisa18@daniels.org,img/obama.jpg +Jordan Keith,686-79-0034,50225,"6894 Ronald Street +Port Johntown, DE 61394",1947-07-29 22:42:14,87:9c:b4:95:92:6f,alicia14@hoffman.biz,img/obama.jpg +Sean Strickland,192-46-4136,18722,"91917 Mcdowell Well Suite 986 +Hannahtown, IL 04051-1855",2010-05-07 23:31:56,98:fa:54:8d:33:86,david93@yahoo.com,img/obama.jpg +Mrs. Christina Baker DDS,133-42-6580,38955,"66269 Gonzales Shoal Suite 794 +Flemingmouth, ND 57787-9300",1991-08-29 05:50:18,d2:f8:3c:21:95:2e,vsexton@gmail.com,img/obama.jpg +Jason Salinas,473-66-9344,78863,"654 Daniel Streets Suite 115 +North Stephaniestad, WA 55034",1937-02-04 15:22:34,c1:ab:9f:5b:e6:26,christopherhaas@roberts-powers.org,img/obama.jpg +Samantha Ware,899-98-8288,08531,"763 Wood Bridge +Lake Kimberlyberg, IL 74537",1926-09-15 02:18:51,58:5f:ad:c5:a2:b4,gpatrick@roberts.biz,img/obama.jpg +Carol Santos,652-79-6638,17066,"1397 Ray Overpass Suite 285 +Schroederchester, AK 57957-7546",1963-03-18 07:46:34,3b:95:81:6d:d9:44,tbrown@cook.com,img/obama.jpg +Mr. Mark Kaiser,390-95-5476,14900,"916 Marshall Skyway Suite 062 +Lake Markbury, LA 15736",1984-04-23 13:37:09,47:44:ce:9a:e1:12,scott24@brown-medina.com,img/obama.jpg +Angela Hernandez,812-22-0438,34830,"88986 Oconnell Mountain Suite 637 +South Elizabethstad, AK 11835-3616",2014-05-28 10:40:06,71:b0:6f:0a:86:7a,richard67@hotmail.com,img/obama.jpg +Felicia Jones,102-93-8138,64032,"6568 Fitzgerald Ranch Suite 774 +Kristamouth, IL 39547-6284",1964-07-29 20:33:40,fd:30:23:7d:dd:ce,gruiz@jones.com,img/obama.jpg +Kathleen Hammond,081-05-8635,34458,"94531 Leah Drive Suite 003 +Williamsland, CT 04069",1925-12-24 18:50:04,da:48:b3:2a:f3:cf,jade69@morris.net,img/obama.jpg +Marissa Krueger,519-03-4733,97065,"3630 Jacob Walks +New Jennifer, SC 85518-8445",2016-11-05 13:45:33,d1:f6:82:c1:d2:d0,monicaaustin@hotmail.com,img/obama.jpg +Sarah Hurley,264-83-1083,68564,"825 Jones Ports +Ramoston, MD 28133-9800",1928-01-28 04:31:19,86:fc:59:1c:2a:a2,wedwards@yahoo.com,img/obama.jpg +Daniel Sellers,353-43-2665,00869,"USNV Berger +FPO AP 83626-7735",2009-11-10 21:20:44,1e:f6:fd:58:cc:71,kpeterson@hotmail.com,img/obama.jpg +Tammy Lee,425-97-6724,09112,"622 Dale Land +Johnsonmouth, GA 07582-6258",2001-06-13 01:43:26,e1:37:d7:3c:90:a5,klawrence@gonzalez.info,img/obama.jpg +Mark Jones,780-60-3238,51758,"9341 Vanessa Parks +Allenview, MD 29277",1922-01-20 22:58:31,cb:7d:3b:7e:92:ad,npitts@gmail.com,img/obama.jpg +Scott Williams,844-59-3486,30988,"48674 Michelle Extensions Apt. 310 +South Allisonville, WY 40096-3714",2013-05-11 13:46:15,e8:50:67:8d:b2:07,markjohnson@lang.net,img/obama.jpg +James Malone,759-43-9709,32087,"3664 Daniel Ridges Apt. 463 +West Amyhaven, PA 01537",1985-12-09 22:16:21,88:b7:04:68:2f:c3,isaac15@yahoo.com,img/obama.jpg +George Silva,565-10-4049,54200,"01819 Lewis Way +Thomastown, SD 39243",1984-11-12 04:26:11,a3:24:73:73:af:63,dunlaplinda@ramirez-meza.com,img/obama.jpg +Russell Jenkins,389-11-9851,66070,"698 Francis Well +Markbury, KY 63204",1999-12-24 06:16:43,d1:c7:c4:93:8c:48,williamcamacho@yahoo.com,img/obama.jpg +Andrew Thomas,419-38-2302,63212,"1442 Green Shoals Apt. 285 +North Jenniferhaven, HI 01771-5268",1942-12-08 14:39:25,9c:b4:3a:f7:cb:26,valeriereyes@little.org,img/obama.jpg +Karina Long,248-53-0787,81178,"4854 Allen Brooks +Sarahburgh, NE 61720",1956-01-28 15:49:19,b5:23:ba:4d:5d:25,xwyatt@beasley.biz,img/obama.jpg +Thomas Neal,396-32-1564,67973,"8155 Darrell Cove Suite 844 +Thompsonfurt, NH 45680-9144",1925-02-18 18:38:44,67:7c:f6:12:7a:20,sylviavaughn@edwards.org,img/obama.jpg +Mark Johnson,803-05-3786,20116,"115 Obrien Corners Suite 222 +Acevedoshire, UT 16798-4416",1983-03-15 01:04:02,72:9f:8c:b1:4b:90,stacey99@gmail.com,img/obama.jpg +Andrew Chapman,147-67-4056,23245,"86442 Massey Plaza Apt. 887 +Maryborough, NH 49617-6746",1969-08-04 19:52:19,d1:bd:1f:06:bc:01,joannmitchell@lewis.com,img/obama.jpg +Jason Oliver,125-63-4347,71459,"0823 Cooper Via +Port Sarahstad, MH 24377",1924-09-24 03:46:16,52:ed:b3:33:fc:6e,austinhatfield@hernandez.com,img/obama.jpg +Rebecca Parrish,394-49-2368,87253,"777 Sherman Way +Romeroport, NC 83615",1975-07-05 19:11:05,79:c8:bc:3f:96:f5,rogersanchez@burgess.com,img/obama.jpg +Antonio Phillips,652-64-2854,20614,"Unit 9113 Box 3219 +DPO AP 60307",1945-02-08 20:04:13,3f:dd:9f:1a:66:cc,katherinediaz@johns-morris.com,img/obama.jpg +Pamela Anderson,636-01-1938,27387,"617 Mary Roads Apt. 470 +Lake Rogerport, NC 59599-0278",1937-06-18 09:46:16,f1:62:97:25:df:72,bakerallen@coleman-obrien.com,img/obama.jpg +Teresa Boyd,682-79-1324,05399,"910 Karen Gardens +West Scottbury, MP 82875-9835",1979-09-11 05:24:22,e1:07:9f:af:1c:67,sonya10@yahoo.com,img/obama.jpg +Brent Lawson,881-58-3176,27338,"0443 Jennifer Cliffs Suite 420 +New Tyler, AR 80326",1935-09-13 07:39:36,20:5f:b5:97:ca:60,brittney88@jones.org,img/obama.jpg +David Holland,097-19-9772,56018,"212 Steven Camp +Lake Rebeccafort, PR 80869",1968-02-14 02:41:07,72:3e:27:2b:20:78,oconnorthomas@mason.org,img/obama.jpg +John Gray,256-82-4282,47321,"541 Nicholas Cliffs +South Tonya, AL 20928-3392",1974-09-18 06:33:27,58:3d:a5:dd:83:e6,ievans@myers.com,img/obama.jpg +Debbie Gonzalez,217-60-0573,01165,"715 Diane Mountains Suite 477 +New Lori, PR 51194",1925-08-30 03:57:09,7c:84:23:af:aa:33,vpayne@jackson.org,img/obama.jpg +Amanda Parks,008-49-2398,64492,"629 Lindsey Tunnel Suite 272 +Kennethburgh, CT 27447-9589",2003-10-31 15:41:32,df:d3:8e:48:02:2c,pamela53@yahoo.com,img/obama.jpg +Robert Smith,062-91-0858,76430,"590 Woods Point +Riosstad, UT 09085",2000-03-12 01:07:09,d4:af:2d:3b:8c:7f,deborah32@martinez-wilkinson.biz,img/obama.jpg +Morgan Smith,357-06-5601,66564,"3411 Elizabeth Mountains Apt. 797 +West Colleen, MA 55581-0154",1985-03-03 18:52:53,4c:e4:a5:84:0d:10,briannadillon@gmail.com,img/obama.jpg +Gabriela Ayala,048-90-7946,97451,"55167 Wilson Rue Suite 943 +Christineberg, OR 85840-2459",1944-12-22 15:05:45,b5:e0:11:6b:e6:2b,matthew42@yahoo.com,img/obama.jpg +Gloria Patrick,499-49-3470,17160,"1947 Gordon Crossing Apt. 016 +East Anna, NC 54705-4909",1959-01-11 19:00:42,a0:6a:63:21:2b:84,amber95@cook-ortega.com,img/obama.jpg +Amy Campbell,581-30-0979,89408,"73106 Joshua Circles +Lake Vanessa, OH 68343",1981-07-24 01:00:33,d7:b6:87:01:23:8c,awoods@yahoo.com,img/obama.jpg +Lisa Gonzalez,131-35-0290,04743,"1180 Sanchez Extension +Nicholasborough, WI 84873-5557",1987-03-02 20:33:12,d8:1f:ee:df:ee:16,taylor02@johnson.com,img/obama.jpg +Elizabeth Sweeney,794-38-2120,61948,"1559 Jeff Unions Apt. 159 +New Lindsay, PA 90002",2003-10-09 09:54:59,92:a0:c6:6b:8a:35,teresawatson@rodriguez.org,img/obama.jpg +Edward Johnson,523-04-8848,72500,"5774 John Cliffs +Sarahberg, WI 02064",1932-11-17 17:59:44,e5:72:01:22:4a:12,ashley52@webb-estrada.com,img/obama.jpg +Mr. Jeffrey Dalton,358-01-8843,85633,"3151 Mack Turnpike +Cindymouth, MI 81663-5875",2000-02-13 05:13:27,56:b0:4b:a5:74:d5,jenniferreyes@brewer.com,img/obama.jpg +Joseph Patrick,708-31-4348,71073,"789 Thompson Lake +Janetborough, WA 65261",1965-06-04 10:22:03,07:61:14:74:f8:58,jperry@gmail.com,img/obama.jpg +Cindy Austin,197-02-6405,39644,"18478 Gilbert Stravenue Suite 539 +Michelletown, GA 19702",1922-05-09 19:18:49,2f:14:8a:48:89:25,nmorgan@david-stewart.com,img/obama.jpg +Jennifer Foster,194-13-0373,68060,"926 Stout Trafficway Apt. 388 +Davidhaven, MP 07281-0823",1938-11-08 02:47:16,7b:a1:de:af:3e:73,mauricehartman@yahoo.com,img/obama.jpg +Kimberly Larson,836-85-7697,55100,"52673 Sarah Terrace +East Anthonyview, FL 09216-5299",1997-02-23 14:45:33,a8:d4:65:4f:ce:02,nicholas83@yahoo.com,img/obama.jpg +Jessica Horton,500-95-4467,56031,"910 Ashlee Coves Apt. 321 +South Justin, ND 46205-9105",1946-09-19 23:38:11,f9:ad:6a:ff:e8:12,pramirez@gmail.com,img/obama.jpg +Eric Sanders,179-06-0666,23041,"Unit 4777 Box 2413 +DPO AE 38569",1995-12-14 05:25:48,48:6c:5d:03:c6:a6,richard35@mitchell.info,img/obama.jpg +Thomas Barnett,141-16-8648,02974,"1392 Robert Islands Apt. 990 +West Jason, DE 88372",1977-03-10 19:15:41,28:05:13:e4:87:8d,fhill@carrillo.com,img/obama.jpg +Denise Banks,522-25-8786,83807,"08891 Contreras Island +Romeroton, PA 83852",1957-08-26 18:12:40,e2:2c:34:44:f7:fb,tgolden@benitez-daniels.com,img/obama.jpg +Priscilla Griffin,039-35-2260,33799,"Unit 3895 Box 2383 +DPO AE 40167",1997-08-24 14:42:38,b7:d0:a2:26:12:57,rvaughan@hotmail.com,img/obama.jpg +Lisa Rivera,494-30-5956,88705,"4635 Paul Glens Suite 700 +Austinport, WV 22734-4108",1957-01-23 20:52:50,82:82:a2:c7:33:8b,whowe@hall.com,img/obama.jpg +Brett Moran,280-72-5272,86916,"56860 John Mall Suite 247 +North Mary, VI 51101",1960-08-19 19:24:56,e0:7a:3a:ea:b8:11,jeremypearson@gregory-nguyen.com,img/obama.jpg +Joseph Lawrence,518-35-9418,20454,"7284 Vernon Loop Apt. 894 +Lake Stevenmouth, LA 35019-6262",1989-01-09 03:55:15,be:34:e0:ea:39:a5,gerald24@grant.com,img/obama.jpg +Dominic Moore,349-08-8454,43841,"8260 Clark Brooks Suite 600 +West Alexanderville, AL 74423",1992-04-14 11:28:08,4e:1d:53:66:73:78,khoward@hotmail.com,img/obama.jpg +Michael Nichols,336-90-4832,11464,"431 Mcclure Court +North Vanessa, PA 57310-2093",1952-11-17 02:22:10,bd:96:62:68:47:aa,ramireztyler@gmail.com,img/obama.jpg +Kayla Henry,424-78-4741,34724,"7173 Rios Keys +New Danielville, MT 69542-1346",1995-09-12 02:01:44,c8:2f:e4:9e:e5:ce,gardnercourtney@hotmail.com,img/obama.jpg +Craig Anderson,470-34-4914,98739,"48852 Jones Station +New Benjamin, TX 15949-3054",1944-08-22 07:44:48,2c:8e:5f:a3:83:47,uwilliams@gmail.com,img/obama.jpg +Jodi Obrien,893-66-6360,47575,"627 King Neck Suite 211 +North Donnaberg, NY 95067",1985-06-30 04:52:32,66:32:b8:47:6e:f4,aaron80@yahoo.com,img/obama.jpg +Todd Davis,267-77-2338,58204,"PSC 6640, Box 0794 +APO AE 59419",1963-01-30 22:39:01,73:87:ca:a4:df:54,april68@flores.biz,img/obama.jpg +Robert Vargas,011-92-8215,05799,"670 Ashley Valley Suite 486 +Carolynmouth, OK 50017-1518",1931-03-09 00:29:07,c8:d7:95:b9:b9:cf,friedmandawn@yahoo.com,img/obama.jpg +Andrea Allen,041-19-7879,67137,"26022 Taylor Gateway Suite 555 +North Thomasfort, OH 04909-5555",1929-11-16 22:28:14,a3:1f:29:0b:e0:ee,donna86@hotmail.com,img/obama.jpg +Joel Brown,587-11-9910,88807,"569 Robert Plaza +Wallacehaven, PW 55718",1929-08-12 18:24:20,7d:b9:fe:93:27:d9,dixonjulian@johnson.com,img/obama.jpg +Mark Bond,259-62-1019,40038,"224 Tyler Ports +Carolland, ID 17297-9221",1928-01-26 09:30:24,cc:1f:8b:88:3b:a4,qguerra@hill.info,img/obama.jpg +Robert Mann,049-45-0003,21908,"9873 Michelle Camp +North Jill, CT 48548",1933-05-17 14:45:29,14:e8:7a:f7:52:c1,willischristopher@ramos.com,img/obama.jpg +Johnny Blair,859-30-1931,08364,"493 Vanessa Oval +South Deborahborough, MA 71355-0898",2011-09-13 11:43:55,de:29:a1:ba:65:15,jacqueline68@yahoo.com,img/obama.jpg +David Palmer,753-98-3341,11477,"9444 Anne Valleys +Rogerport, UT 50749",2008-11-30 09:22:11,25:ce:2b:30:d3:19,jennifer24@gmail.com,img/obama.jpg +Melinda Johnson,050-27-2315,56433,"34490 Douglas Hills Suite 529 +Port Michael, AS 40608-7653",1932-04-13 21:28:09,cd:50:13:05:ad:a6,aaronjackson@yahoo.com,img/obama.jpg +Michael Solis,763-22-9176,46540,"9247 Donna Gardens +North Andreaport, WA 51511-4591",1953-11-02 05:00:56,e4:d7:fb:cf:0f:14,wbarry@hotmail.com,img/obama.jpg +David Davis,029-45-5648,41659,"5534 Olson Crescent Apt. 299 +Greenland, IL 47995-7442",2013-09-01 21:42:26,8c:62:8e:1a:1a:46,caitlingonzalez@hotmail.com,img/obama.jpg +Julie Trujillo,043-25-6908,59060,"662 Campos Park Suite 017 +Thomasview, WV 38265",1967-06-05 10:22:59,52:95:cf:0e:8f:54,rodney01@hotmail.com,img/obama.jpg +Nicole Skinner,668-63-0658,16553,"29253 Phillip Causeway +Pearsonmouth, WI 38051",1918-02-13 13:56:29,03:c5:ac:d4:b3:67,erindavila@gmail.com,img/obama.jpg +William White,875-14-5929,42936,"87901 Jones Divide +Heidihaven, VT 90346-2379",1976-01-29 04:42:43,59:62:cf:f8:d4:ce,deborahcurry@pugh-harris.org,img/obama.jpg +William Escobar,635-05-0657,46680,"03354 Lewis Parkways Suite 670 +West Yolanda, AS 73532",1955-09-26 23:28:52,98:fb:3c:da:66:10,michael62@yahoo.com,img/obama.jpg +Elaine Moore,879-59-6930,10844,"18739 Juarez Heights +Hughesburgh, MD 34915",2012-09-21 05:37:14,d1:6a:b3:76:41:d9,sharptony@gmail.com,img/obama.jpg +Patrick Thomas,569-45-6560,40169,"22290 Jeffery Skyway +West Edwardberg, NV 34518-1061",1998-08-10 19:07:34,b4:da:aa:09:8b:40,jsmith@garcia.com,img/obama.jpg +Steven Diaz,720-47-0268,58965,"USNS Jones +FPO AA 33471-9800",1957-03-20 15:57:45,04:4e:e0:3d:00:6c,williamstiffany@mccoy.com,img/obama.jpg +Cynthia Moore,493-45-5389,85431,"472 Cynthia Divide Apt. 232 +Wallerview, MN 54287-3146",2000-08-06 14:54:31,1e:5b:5a:a6:ad:bb,francis48@grant-coleman.com,img/obama.jpg +Christopher Bender,185-78-9215,97698,"9404 Liu Locks Suite 077 +Pearsonchester, CT 48040-2461",1963-10-29 00:09:37,25:fa:31:93:1f:8a,megan37@yahoo.com,img/obama.jpg +Glenn Fischer,282-16-1914,17320,"09323 Duncan Heights Apt. 402 +East Jeffreyport, LA 28155",1956-08-21 07:25:03,9b:68:90:04:8b:0d,christopherlee@moon.com,img/obama.jpg +Angela Wright,184-38-0222,13595,"00359 Becky Isle +Mendezhaven, NH 01248",1994-01-04 00:59:27,0a:c0:58:cf:86:0c,ibrady@mckinney-michael.com,img/obama.jpg +Anthony Bishop,288-09-8859,70923,"208 Nathan Stravenue +Matthewsfort, OK 92984",1919-06-25 14:49:06,00:3d:a6:66:4f:8d,taylorjames@morales.net,img/obama.jpg +Douglas Smith,183-65-9953,65107,"869 Osborne Lodge +South Cynthiamouth, AZ 45342-0557",1989-08-30 20:16:10,c4:19:49:09:bf:31,tgutierrez@phillips.com,img/obama.jpg +Crystal Graham,192-95-7664,99755,"161 Cruz Square +Rebeccamouth, NM 49208-1845",1975-09-11 00:27:59,25:60:c5:13:43:c3,georgeadams@snow.com,img/obama.jpg +Catherine Luna,407-11-7348,82372,"PSC 1138, Box 9490 +APO AE 96112-8894",1992-12-15 20:23:53,51:df:6d:34:8c:50,martinezgordon@erickson.biz,img/obama.jpg +Richard Duncan,826-12-7404,89664,"040 Brooks Center +North Kellie, NV 30047-9144",1955-12-16 03:09:14,2e:2c:b2:12:74:56,tonya64@yahoo.com,img/obama.jpg +Keith Becker,075-27-8517,15062,"7779 Brooke Drives Apt. 823 +Huffmantown, IL 05625",1946-05-10 11:25:03,1b:d6:c4:e3:6b:0e,walkerwendy@hotmail.com,img/obama.jpg +Carl Dixon,527-33-7857,89138,"70375 Bowers Isle +Larryfort, DC 57856",1958-02-04 22:36:34,15:9b:dd:c1:a4:57,joshuavelez@williams.com,img/obama.jpg +Andrew Dalton,109-58-1955,43832,"8057 Kimberly Rapids +North Ashleymouth, VT 84274",1953-07-18 09:01:23,37:9b:c2:1d:42:f6,angela71@hotmail.com,img/obama.jpg +Robert Hughes,541-08-0196,34132,"496 Mary Forks +Sarahchester, RI 69455",1935-10-01 16:14:26,1b:4f:1f:8b:8a:30,brian98@vang.biz,img/obama.jpg +Michael Bruce,411-79-1480,63852,"USS Smith +FPO AA 28865-7103",1929-05-18 19:36:38,b8:30:b6:9c:d2:f4,wilsonmarie@yahoo.com,img/obama.jpg +Stacey Jones,368-74-1856,97890,"304 Michele Tunnel +Anthonyborough, AS 99879",1975-06-10 16:08:51,87:a5:41:9b:ec:0d,cartertommy@gmail.com,img/obama.jpg +Dr. Ebony Williamson,239-51-7273,75015,"6070 Mills Spurs Suite 442 +Port Megan, OR 25121",1926-11-09 11:37:18,a5:ed:a1:35:41:2b,rebeccahorn@hotmail.com,img/obama.jpg +Ashlee Mcknight,821-46-7324,80160,"4209 Colleen Mission +Lake Alexanderfurt, AS 55098-8839",2010-04-14 16:08:57,6f:a0:f4:5a:7f:a0,dean83@riley.com,img/obama.jpg +Catherine Ramirez,821-22-9804,70452,"PSC 7296, Box 1969 +APO AA 88193-4332",1989-05-18 11:10:45,35:02:42:03:15:dc,caseypowell@gmail.com,img/obama.jpg +Sandra Schmidt,855-08-7947,77635,"Unit 4588 Box 4736 +DPO AE 27409",1932-09-28 12:14:39,04:32:e8:80:3d:ce,ewingsarah@white-baker.com,img/obama.jpg +Michael Reyes,301-25-2132,82417,"4292 John Prairie Suite 698 +Deborahshire, MH 59167-9862",1957-08-16 04:14:39,f6:03:4c:ca:63:fb,misty79@hill.com,img/obama.jpg +Elizabeth Manning,345-63-8755,33636,"USNV Johnson +FPO AE 47359",2012-11-22 01:28:16,33:ef:f3:80:0f:92,lauracross@williams-allen.com,img/obama.jpg +Elizabeth Williams,285-09-8658,63588,"5054 Faulkner Courts Suite 157 +East Marissa, OK 15972-0120",2010-01-17 22:36:50,0f:2e:34:47:77:a6,oscarterry@martin.com,img/obama.jpg +James Glenn,743-79-4431,94398,"25414 Jackson Street Suite 742 +Mcguireshire, MT 95715",1970-12-24 04:19:56,68:94:34:de:87:4a,fgomez@flores.com,img/obama.jpg +James Bass,594-09-1746,33260,"5559 Jones Rapids +Christinamouth, DE 83774-1848",1988-11-29 06:41:56,42:e1:3f:6f:23:89,jacksonclaire@gmail.com,img/obama.jpg +Jessica Elliott,812-74-2047,09892,"2264 David Ramp +Lake Lisa, KS 79488",1994-09-04 09:59:24,74:aa:5b:2a:8d:a8,ramirezmaria@hayes.com,img/obama.jpg +Anthony Black,304-44-2713,70225,"968 Long Forest Apt. 492 +Lake Gwendolynburgh, SD 44641",1925-04-02 02:53:30,4c:ea:1d:d0:8e:2e,laura46@robinson.com,img/obama.jpg +Mike Thomas,750-97-6658,61544,"PSC 9512, Box 3771 +APO AP 20968-0620",1946-05-07 05:33:55,76:4b:3b:92:73:86,wevans@yahoo.com,img/obama.jpg +Patrick Thomas,361-92-6926,48953,"296 Ashley Valley Apt. 180 +East Bethmouth, NV 97501",2012-03-31 03:15:45,5c:0c:b0:58:ca:fc,hopkinsmanuel@tucker.com,img/obama.jpg +Michelle Ponce,699-32-0222,93559,"777 Frank Highway +North Sarahchester, NV 12728-1151",1956-09-04 11:55:02,45:bc:cc:ba:9a:3b,kentcraig@guerrero.com,img/obama.jpg +Jennifer Mills,329-32-4152,82114,"2770 Powell Point Suite 461 +Marthamouth, WA 70590",1922-08-25 02:19:44,34:b8:1a:6b:fa:db,zstokes@yahoo.com,img/obama.jpg +Tasha Villa,891-75-5408,89388,"32826 Alison Glens +Port Roy, MP 07091",2013-11-12 11:32:25,d4:f4:3f:ff:d2:a5,jglass@hughes-stout.com,img/obama.jpg +Christina Beard MD,223-93-0457,37524,"USNS Owens +FPO AP 11829",1934-01-18 17:45:37,d0:8a:1a:f5:f1:42,elizabethgray@morales.com,img/obama.jpg +Douglas Cook,496-34-9035,49123,"63763 Michael Island +Staceyfort, NY 45350-1952",1965-03-03 09:33:00,bd:3a:71:c2:c0:10,qgonzales@hotmail.com,img/obama.jpg +Stephen Mitchell,536-65-2799,44720,"04982 James Mount +Port Vanessa, AZ 13114",1954-09-06 01:48:28,be:54:2e:f2:83:a7,julie02@yahoo.com,img/obama.jpg +Nicole Harrell,680-16-6214,86896,"07573 Mercado Burg Apt. 200 +Murphyberg, FM 93806",1968-06-04 09:23:42,45:3e:91:a0:34:19,heatherhall@cabrera-sanchez.info,img/obama.jpg +Pamela Ross,816-04-6409,78159,"27748 Michael Turnpike Suite 752 +Shaneview, MS 86656-4161",1988-11-11 04:15:37,76:87:be:68:24:6c,robertflores@house.com,img/obama.jpg +Marcus Willis,033-27-8666,67568,"06492 Freeman Drives +Jessicafurt, VI 14387",1989-05-03 19:34:45,0f:2f:a0:83:88:2b,dawngardner@gmail.com,img/obama.jpg +Kathy Reynolds,050-91-7252,49980,"2455 Michael Fall +Pamelafurt, FL 68104-7089",2006-04-19 23:25:59,b1:36:f4:01:49:70,emoran@daniels.org,img/obama.jpg +Victoria Silva,615-80-8691,85298,"2220 Henry Cape Apt. 871 +West Huntermouth, AZ 53874",1963-02-21 14:01:42,eb:14:f6:62:ab:9c,fosterannette@hotmail.com,img/obama.jpg +Dennis Williams,842-62-4825,70580,"51144 Patricia Squares Suite 011 +Brewerchester, NC 74455-6876",1950-05-09 09:26:13,be:4a:d6:f5:ec:7c,jeffreybryant@johnson.net,img/obama.jpg +Charles Stewart,821-22-4516,02120,"836 Kerri Road +Maryborough, TN 67393-2266",1977-08-04 01:02:31,88:bc:88:61:7e:5c,natashajones@hansen-green.info,img/obama.jpg +Lori Reyes,791-23-1564,28594,"333 Edwards Way Apt. 431 +East Amberborough, PA 56660",1924-09-16 00:27:53,9c:1e:07:84:7b:52,stacey31@yahoo.com,img/obama.jpg +Shannon Bates,586-99-4350,94319,"495 Kenneth Mills +Randolphbury, IA 51665",1995-02-15 05:42:41,90:71:bd:25:34:df,hnguyen@foster.com,img/obama.jpg +Nicole Boone,501-01-0670,06324,"0072 Sheryl Course +West Seanfort, IA 87921",1973-09-16 15:25:06,a3:6f:cc:6d:7b:a4,zstephenson@hotmail.com,img/obama.jpg +Ryan Forbes,732-12-9662,95309,"5341 Banks Forge +West Jessicaborough, PA 43018",1948-10-15 04:37:13,8e:81:8f:80:94:6f,russell48@hill.info,img/obama.jpg +Jeff Hill,395-50-6237,60626,"266 Stewart Locks Suite 253 +Johnfurt, IA 00891-1779",1939-09-11 20:56:46,da:88:ff:1d:eb:20,rhughes@hotmail.com,img/obama.jpg +Daniel Flores,633-71-7189,71407,"7258 Jeffrey Branch +Hoffmanshire, FM 81827",1927-03-04 08:26:43,dd:35:0d:4b:cc:c3,iwoods@hotmail.com,img/obama.jpg +Shelby Decker,362-09-8879,28960,"7416 Teresa Lane +West Julie, MD 27916",2000-11-16 23:53:00,36:d5:4b:87:92:cd,kristenswanson@hotmail.com,img/obama.jpg +Sarah Kelly,803-88-1593,45953,"03004 Amanda Roads +Fernandezview, WV 41439",1925-11-10 17:48:24,52:a2:91:87:07:0d,jonesedward@hotmail.com,img/obama.jpg +Samantha Lewis DDS,536-72-8617,49815,"7300 Holmes Summit +Chavezmouth, ND 30963-3676",1995-02-18 12:06:10,0e:4c:cb:e1:c1:c1,pricejohn@moses.com,img/obama.jpg +Michael Briggs,631-06-0243,01299,"400 Campbell Throughway Suite 378 +Royside, FM 86769-5983",1955-06-04 08:53:34,cb:31:e0:20:46:b9,browndavid@ballard-berry.com,img/obama.jpg +Timothy Day,584-38-0295,74548,"091 James Coves Suite 611 +West Scottton, FM 80823-0154",1918-05-23 06:44:22,6b:45:26:03:4d:57,kevin68@hotmail.com,img/obama.jpg +Diana Chambers,834-12-9641,27886,"29378 Tina Corners +North Heather, OK 68888-5599",1928-03-09 07:57:10,d3:cd:50:04:12:78,loritorres@gmail.com,img/obama.jpg +Mike Brown,583-54-6553,38728,"USNS Mcguire +FPO AP 04760",1985-01-04 07:09:24,66:0f:9f:1e:42:fb,amatthews@yahoo.com,img/obama.jpg +Jeremy Marshall,846-60-3479,22831,"PSC 3531, Box 8891 +APO AE 34439-4933",1982-06-22 14:28:44,b6:ff:cf:38:a0:ba,blakekathryn@payne-wheeler.info,img/obama.jpg +Andrew Garcia,677-09-1766,42101,"159 Leslie Mills +East Lawrenceport, CA 42364",1979-03-28 16:47:03,2b:04:5f:30:8c:7b,afletcher@yahoo.com,img/obama.jpg +Ellen Campbell,591-72-0922,32028,"734 Holly Harbor +East Natasha, WY 05755",1979-03-14 19:08:33,11:4a:ba:ce:f2:77,christian48@gray-yu.com,img/obama.jpg +Brian Coleman,532-74-6999,94484,"7169 Cooper Haven Apt. 677 +East Alexandria, AL 12796",2008-01-27 23:46:13,01:b4:bd:80:c9:04,nhorn@hotmail.com,img/obama.jpg +Jason Davis,595-45-4834,07560,"24054 Lang Way Suite 887 +New Anne, ME 72193-2011",2005-11-03 06:00:36,bb:cb:fc:ba:12:06,letroy@yahoo.com,img/obama.jpg +Eileen Williams,236-29-5522,53055,"275 Robert Island Suite 051 +Justinberg, ID 59509",1980-03-11 08:33:09,c5:c0:00:3f:fb:58,davidcummings@yahoo.com,img/obama.jpg +Kimberly Yoder,431-13-8741,32903,"01018 Alexander Flat +East Jasontown, VT 49279-7517",1979-02-02 14:11:48,8f:0d:f4:b0:87:b0,dgoodwin@chandler-gonzalez.info,img/obama.jpg +Christine Walsh,093-73-1911,80325,"4635 Pittman Land +West Jennifer, PA 57337-4393",1956-04-28 16:41:19,b6:6a:e4:61:a7:58,tmurphy@gmail.com,img/obama.jpg +Terri Reynolds,743-99-6090,85895,"159 Robles Ports Apt. 154 +Lake John, MI 24253",1920-11-22 23:49:22,ad:9e:a3:db:53:f1,brian09@rice.com,img/obama.jpg +Benjamin Nguyen,436-81-2459,40879,"96972 Avila Spur +Port Jessica, ND 47463",2001-02-04 00:44:02,9b:60:30:d9:33:05,marc55@davis-davidson.com,img/obama.jpg +Laura Flores,586-14-7756,40563,"2786 Kevin Station +Mariaborough, NE 61795",1996-04-01 17:58:40,37:5c:c6:59:0b:74,dianaolson@whitaker-williamson.com,img/obama.jpg +Michelle Mcclain,617-41-5146,27995,"82106 Tammy Divide Suite 516 +Burchtown, NV 82614",1920-01-07 01:18:01,f7:f0:45:f8:f0:e1,qparks@hotmail.com,img/obama.jpg +Hunter Martinez,125-53-1329,39781,"5389 Gregory Fork Suite 666 +Raymondchester, PA 85546",1919-10-29 17:11:20,d6:f8:2f:29:bb:1c,zsmith@wilson.com,img/obama.jpg +Tonya Wright,810-55-0131,89241,"395 Medina Fields Apt. 219 +Michealshire, MS 50126-4988",1961-04-10 12:10:08,52:3f:ae:ce:9c:ee,bryancosta@hotmail.com,img/obama.jpg +Gina Hall,257-64-0104,24906,"0392 Brown Haven +Edwardschester, IN 10280",1971-04-07 14:13:07,01:07:16:d6:c7:13,tlam@tran.info,img/obama.jpg +Scott Miller,708-86-6149,05136,"490 Rivera Dam Suite 756 +Tonyshire, NM 14427-9566",1951-01-01 02:36:09,23:e3:4c:10:d5:0c,drios@gmail.com,img/obama.jpg +Elizabeth Michael,226-39-0409,90961,"81957 Daniel Falls Apt. 583 +Lake Georgeborough, NM 20186-3517",1968-09-15 11:50:13,06:f5:57:b2:8a:3d,dhernandez@gmail.com,img/obama.jpg +Allison Fuentes,573-27-7566,11534,"PSC 8669, Box 0546 +APO AA 67876-7721",1930-04-19 01:35:34,a8:f0:17:ad:23:06,garmstrong@gregory.org,img/obama.jpg +Danny Jones,636-06-3864,20582,"716 Snyder Fort +Tonyaville, OR 53939-0815",2008-07-12 09:19:02,c8:da:41:6c:87:52,whitney82@heath.com,img/obama.jpg +Kevin Keller,650-28-8531,52277,"48259 Samuel Gardens +North Karen, AL 48406",1988-12-19 01:08:54,f8:f0:f4:31:86:98,richard97@murray.com,img/obama.jpg +Linda Reed,615-08-2463,03200,"USNV Powell +FPO AE 60300-9569",1932-08-17 10:39:41,16:15:00:1c:e3:cb,parkandrew@middleton-peterson.info,img/obama.jpg +Michelle Smith,446-70-5152,78416,"7620 Donovan Divide +North Melissafurt, TX 58123",1958-01-13 04:06:34,a0:de:d5:a5:59:ba,medinadenise@drake.biz,img/obama.jpg +Stacy Clark,258-96-6981,41756,"823 Thomas Trail Apt. 688 +North Janiceborough, OH 01840-7707",2000-03-20 06:57:28,ea:2a:aa:ca:b8:d1,johnquinn@lee.com,img/obama.jpg +Vincent Diaz,378-31-4203,73756,"692 Oconnell Gateway +Whitefort, CO 48357",1996-05-01 22:30:41,1a:5f:18:47:cc:1b,wongandrea@hotmail.com,img/obama.jpg +Alexander Wilcox,609-47-5520,68225,"554 Emily Valley Apt. 930 +Deborahview, DE 02692",1979-09-07 03:28:33,37:66:fc:28:9c:f8,richard82@smith.com,img/obama.jpg +Brian Clark,242-84-6545,54759,"297 Matthew Mountains +North Kaitlyn, ND 32095-0053",2012-03-31 11:16:17,59:0e:33:e0:c4:e2,mooremichael@ingram.com,img/obama.jpg +Joshua Garcia,652-18-7507,50623,"83115 David Expressway +Johnsonville, MO 32328-1191",1981-01-03 01:49:02,ad:49:36:cc:a7:93,kimberlyhancock@yahoo.com,img/obama.jpg +Bradley Phillips,201-19-7979,57542,"PSC 0375, Box 1418 +APO AA 89226",1975-07-24 18:27:12,55:ad:a6:83:d4:ab,robert47@yahoo.com,img/obama.jpg +Bailey Harris,546-32-7394,91804,"PSC 1355, Box 1740 +APO AA 65450",1957-05-23 03:55:53,ca:52:73:64:28:81,philipolson@hotmail.com,img/obama.jpg +Brandon Sanchez,525-17-6804,05263,"47188 Williams Passage Suite 824 +Lake Davidport, NY 92708",1966-05-04 23:00:26,c2:7d:f2:32:1b:8a,travis23@yahoo.com,img/obama.jpg +Samuel Baker,843-61-5049,21766,"03451 Montes Row +East Billy, GU 51547",1928-10-08 08:30:47,96:3c:c7:65:da:7e,tnewman@yahoo.com,img/obama.jpg +Jorge Hanson,780-80-3042,46344,"35596 Scott Mission Apt. 453 +Port Andrew, GU 06691",1996-05-22 08:58:42,0b:4b:40:6b:30:af,yryan@yahoo.com,img/obama.jpg +Jessica Stevens,140-26-7534,29052,"189 Thomas Street Suite 179 +Simpsonfurt, MN 68529",1991-11-08 17:13:15,80:05:5b:18:27:58,william62@yahoo.com,img/obama.jpg +Richard Jones,514-50-5050,49636,"5662 Lindsey Landing Suite 950 +East Cindymouth, AL 35882-8534",1921-12-19 20:14:40,e6:16:13:04:14:6f,luis91@gmail.com,img/obama.jpg +Jeffrey Proctor,307-34-6499,54718,"28358 Tammy Branch +Anthonymouth, UT 95437-5532",1977-04-07 15:57:47,5a:93:4a:30:4e:68,cbrown@vasquez.com,img/obama.jpg +Crystal Barnett,814-66-0349,36397,"02039 Morgan Glens +West Robin, SD 35349-9389",1997-02-16 18:42:50,70:83:ef:f8:e2:87,jenniferwilliams@hotmail.com,img/obama.jpg +April Turner,169-83-6820,66241,"9612 Leah Circles +East Kristenstad, MT 36835-5401",1933-11-02 13:18:27,86:9a:5c:2e:34:5d,chelsearuiz@yahoo.com,img/obama.jpg +Jessica Johnson,230-99-1722,71430,"03371 Kristina Creek Suite 019 +South Andrew, MP 06592",1918-10-15 03:25:51,f6:5e:23:01:b3:11,michellespencer@gmail.com,img/obama.jpg +Ashley Wood,055-61-0172,78759,"158 Jeffrey Forges +Grossshire, NC 27809-7188",1978-11-21 21:32:50,20:c8:26:4d:9a:30,pooledarren@yahoo.com,img/obama.jpg +Tina Gray,791-18-5315,88380,"95509 Garrett Mountains Apt. 140 +New Barry, CO 48909",1985-09-13 07:54:27,ec:75:79:ea:da:88,james76@johnson.com,img/obama.jpg +Jessica Giles,472-65-2137,29507,"3985 Archer Manor Suite 683 +North Michellemouth, UT 42289-7471",1932-10-06 20:31:45,7f:1d:1c:16:65:14,kristinclark@holden.com,img/obama.jpg +Angelica Taylor,594-41-6951,55218,"005 Michael Keys Suite 035 +Pricestad, PR 14359-3900",1921-06-06 16:36:30,f6:92:b7:47:79:06,brian93@tucker.com,img/obama.jpg +Kevin Watkins,163-54-5570,28816,"14547 Harper Circle +Port Kimberlyton, FM 83094-1079",1954-10-02 13:53:02,0b:16:04:f4:f0:73,anthony95@bailey.com,img/obama.jpg +Jeffrey Green,502-25-9591,12053,"620 Hudson Cove Apt. 379 +Josephton, PA 93227-2712",1949-05-09 06:30:17,36:5f:b9:64:92:43,alexa49@barnes.com,img/obama.jpg +Lisa Dorsey,080-44-3261,08360,"1904 Mary Mill Apt. 005 +New Jenniferport, AS 62978",1951-07-11 07:28:51,05:6d:bf:40:07:c4,meghanmoore@yahoo.com,img/obama.jpg +Benjamin Morris,220-30-0075,29306,"2920 Patty Causeway Suite 371 +Strongberg, NY 21940-9334",2005-11-17 00:36:16,a3:a7:2d:38:aa:97,tbuchanan@yahoo.com,img/obama.jpg +Nathan Reed,763-52-3774,09519,"411 Sean Harbor Apt. 036 +North Jessicaside, PR 01935",1950-06-05 16:04:43,62:6f:e7:31:83:35,hansonsean@jacobs.com,img/obama.jpg +Nicholas Nguyen,686-82-3869,27640,"66977 Brewer Ferry +Jacquelineside, PW 91810",1947-12-01 08:53:33,b5:35:68:c5:e4:44,nhamilton@parker-snyder.info,img/obama.jpg +Charles Jackson,712-38-5476,67712,"57388 Hernandez Center Suite 528 +Tiffanyfurt, TN 05877-0653",1938-04-29 03:36:42,c5:19:b7:cc:28:0f,skinnerevan@yahoo.com,img/obama.jpg +Ashley Lee,657-57-1102,71962,"07328 Hall Avenue Suite 552 +West Matthew, MT 98179-1415",1948-03-10 10:12:40,5f:99:91:2e:27:b3,bpearson@rivas.net,img/obama.jpg +Connie Robinson MD,113-70-1664,70622,"9821 Clark Dale +South Jeremy, TX 18169-9570",1969-07-07 15:17:12,ac:d1:8d:b3:aa:e0,michaelmyers@hotmail.com,img/obama.jpg +Stacy Livingston,809-81-4127,85121,"432 Andrew Rest Suite 127 +East Tylerfort, MN 74929-0471",1974-09-07 23:35:54,15:a2:f2:5a:37:d8,shelley34@vincent-moore.biz,img/obama.jpg +Robert Gordon Jr.,383-79-7644,90136,"409 Danielle Drives +East Jesse, MA 71468-8444",1993-04-15 02:45:30,7e:07:5d:f9:86:b9,kaguilar@gmail.com,img/obama.jpg +Heather Decker,745-30-1695,49412,"360 Butler Points Apt. 620 +East Derekfort, LA 96215",2003-08-26 08:12:19,72:e8:7f:5b:d3:57,ggilbert@sloan.com,img/obama.jpg +Jennifer Hernandez,433-47-1731,35440,"3076 Cheryl Village Apt. 565 +Charlesborough, RI 19066",1958-11-02 14:00:33,e1:24:0b:db:af:ea,adamrodriguez@mann.com,img/obama.jpg +Cesar Henry,174-12-8778,17502,"Unit 8678 Box 9143 +DPO AE 40801-4905",1996-07-10 21:48:06,7e:4e:9b:58:04:67,pooledustin@yahoo.com,img/obama.jpg +David Adams,209-26-3226,91973,"77028 Heather Dam Suite 118 +Jonesburgh, DC 22217-7305",1949-02-23 00:45:34,77:b9:00:81:97:66,elizabethanderson@miller-marshall.com,img/obama.jpg +Scott Santiago,684-73-0980,10057,"1338 Roger Port +Lake Jeffreyport, MA 99887-6777",1986-06-07 14:29:39,e8:5f:25:17:95:47,gdavis@gmail.com,img/obama.jpg +Erica Graham,036-82-0595,19194,"54844 Murphy Passage Suite 670 +Joshuaville, WV 88316",2004-01-21 07:43:45,3a:cb:0e:07:a6:82,danielgriffith@yahoo.com,img/obama.jpg +Linda Conley,419-35-6519,20932,"09784 Tammy Ferry Apt. 710 +West Seanbury, MO 97633",1986-10-29 15:06:08,07:97:8d:f9:1c:b8,daniellewade@garcia-stone.com,img/obama.jpg +Jason Petty,063-27-9285,75561,"27282 Jennifer Mountains +Port Calvin, NE 30908",1952-02-22 22:36:56,6f:d9:02:93:72:a4,joanne10@price-clark.biz,img/obama.jpg +Michelle Tran,728-94-0559,07873,"90666 Veronica Creek +West Ashley, TN 41040",1960-08-11 06:56:07,50:75:fd:fd:23:9c,kenneth68@mcdonald.com,img/obama.jpg +Tyler Carroll,778-50-4067,44275,"171 Daniel Groves +North Christopher, KY 38118-8027",2009-10-03 02:03:38,f9:92:2b:6f:4f:a4,diane12@sanchez-thomas.net,img/obama.jpg +Victor Pennington,515-57-0851,70829,"367 Laura Mission +East Diamond, HI 27227",1938-10-26 18:58:40,d6:f6:19:0a:47:98,morrisderrick@smith-vasquez.com,img/obama.jpg +Bill Richard,053-40-1112,54623,"7131 Troy Union Suite 805 +Port Vanessaburgh, MA 46506-9459",1960-10-15 02:21:54,de:48:17:8c:4d:9b,kristin38@ortiz.com,img/obama.jpg +Natalie Pearson,722-56-5140,28461,"31951 Pearson Fort +Jeffreybury, VA 50878",1958-02-19 08:21:09,32:77:54:5e:2f:57,craig88@hotmail.com,img/obama.jpg +David Nunez MD,694-86-2865,04526,"33905 Patrick Turnpike +North Theresa, FL 82249-0976",1984-11-22 22:17:14,ef:b6:be:00:b0:fc,scunningham@gmail.com,img/obama.jpg +Heather Gray,488-30-5425,85815,"7456 Rodney Crescent Apt. 493 +Huberhaven, MO 34537",1990-02-10 02:22:47,01:2b:bf:5f:57:e2,kathryndean@ortiz.biz,img/obama.jpg +Katherine Montgomery,886-17-6203,28649,"016 Brenda Mall +New Roger, FL 72857",1951-11-03 19:53:49,d9:ad:07:68:b3:cf,anna38@johnson.com,img/obama.jpg +Mr. Daryl Webb,193-05-7879,65804,"76862 Donald Place Apt. 881 +Alexisville, IN 03767-7829",1943-09-03 14:02:37,1d:16:da:f7:9c:7f,jorgeallen@hotmail.com,img/obama.jpg +Phyllis Morris,115-57-0441,92225,"040 Martinez Roads Apt. 666 +Port Kelly, WV 63264-0911",1918-11-23 10:37:15,c0:02:37:9f:3a:ea,shelleyadams@olson-parks.info,img/obama.jpg +Abigail Lee,599-37-4696,62401,"096 Dylan Ridges +East Rachelmouth, MA 31252",1920-01-26 09:11:00,8c:82:6b:9e:77:54,swebb@roberts-silva.com,img/obama.jpg +Eric Bowers,758-49-3260,29023,"23712 Robinson Villages +Martinberg, ME 28033-2011",1984-05-21 13:57:43,86:ed:be:96:7e:8b,courtney80@gregory.com,img/obama.jpg +William Weaver,831-34-1875,37330,"979 Moore Turnpike +South Roberto, FM 00126-9273",1928-11-04 19:01:59,5e:14:d4:ea:ef:34,martha64@hotmail.com,img/obama.jpg +Suzanne Smith,726-66-7023,20108,"146 Derek Fort Apt. 496 +Rebeccafort, MO 27722-7410",1945-04-13 15:54:59,e4:6b:54:d3:1c:cf,karen63@sanchez-lee.com,img/obama.jpg +Maurice Perry,708-72-0127,35754,"1188 Huffman Mews +Lake Michelle, NC 16956",2016-05-16 14:42:04,d4:81:0a:cf:0d:3e,jenningsrobert@martin-garcia.com,img/obama.jpg +Terri Hayes DDS,421-28-4301,12097,"6087 Berg Gardens +East Jacqueline, OH 77641",1936-07-11 20:42:01,15:99:1b:bf:f6:3f,cyoung@curtis-ruiz.com,img/obama.jpg +Christopher Watkins,207-05-6285,82178,"7716 Derek Drives +Amyhaven, HI 85398-2821",1930-10-02 22:58:15,57:58:cb:56:e6:a1,jenkinsphilip@reed.com,img/obama.jpg +Mark Ashley,040-24-3939,58937,"PSC 6867, Box 5222 +APO AP 48064",1985-07-19 04:06:59,e2:2f:c5:e5:84:11,matthew34@gmail.com,img/obama.jpg +Matthew Benson,695-64-2075,86851,"134 Benjamin Green +Matthewsmouth, ME 05455-2879",1951-11-21 05:34:01,50:6a:aa:03:18:af,jacob12@smith.biz,img/obama.jpg +Nathan Williamson,542-65-5417,31745,"775 Osborne Square Suite 755 +Port Ian, NC 28925",1961-01-07 23:54:34,84:53:99:32:1c:a9,colliermisty@yahoo.com,img/obama.jpg +Katie Ryan,592-02-1854,01956,"843 Carlos Glens +Andrewside, AL 67327-2926",1956-10-11 12:02:27,ba:0a:10:8c:d6:74,lsmith@gmail.com,img/obama.jpg +Mr. Malik Mason,699-87-7691,54257,"244 Tracy Stream +Amandahaven, NV 31502-9589",1963-12-31 20:38:55,12:fb:fa:cc:bc:37,samueleaton@love-cooper.com,img/obama.jpg +Kelsey Hall,702-54-6560,07464,"245 Grimes Passage Apt. 036 +East Lynn, MD 72967",1969-04-07 14:18:09,80:a9:73:17:ba:88,pbaker@thompson-mejia.net,img/obama.jpg +Jennifer Hartman,753-20-8866,80416,"42182 George Parkway +Lake Tammy, CT 63053",1928-04-30 15:41:09,55:a0:e1:14:03:6a,mendozamolly@mendez.com,img/obama.jpg +William Alvarado,777-04-7209,12485,"02813 Woods Meadow +Jennifertown, MO 31404-1173",1936-09-30 09:55:34,2f:0b:04:8e:c1:ff,lgreen@bailey.com,img/obama.jpg +Chad Carter Jr.,265-74-4104,79159,"246 Robert Place +Morrisonport, DE 71642-0693",2005-02-06 00:22:11,5f:2d:7f:95:d7:e2,matthewstout@hotmail.com,img/obama.jpg +Mr. Christopher Harmon MD,169-01-0891,16514,"82041 Parker Square Apt. 576 +North Eugeneville, CO 52841-4687",1943-01-15 14:18:51,e9:4b:82:69:c6:ae,kathleensmith@morris.com,img/obama.jpg +Haley Jackson,804-04-7412,30793,"69076 Johnson Common +North Anthonyport, AL 54495",1983-02-09 18:19:09,d0:fc:ab:f3:47:e8,mary25@allen.com,img/obama.jpg +Charles Ryan,367-50-9966,77719,"557 Rocha Greens +Colemanmouth, GA 51625",1965-03-07 16:56:39,7b:34:44:70:64:21,andrewhernandez@lloyd.com,img/obama.jpg +Lynn Rowe,184-10-5745,94041,"8491 Kelly Via +North Natashaton, NY 38074-0383",1920-02-21 15:06:03,7f:2e:7a:f7:7c:8a,bradleyjames@ellis.com,img/obama.jpg +Alvin Manning,646-78-7124,86087,"873 Jamie Spring Apt. 906 +Lake Bryanmouth, RI 93958-9049",2007-01-16 14:17:24,f6:43:b2:7e:c9:d1,randy11@smith-smith.org,img/obama.jpg +Patricia Jackson,633-67-3124,00865,"221 Michele Cliffs +Travischester, IL 68289",2006-09-26 00:05:14,99:1c:74:f4:91:41,tyrone86@jones-mendoza.com,img/obama.jpg +John Butler,577-14-3978,72683,"2578 Zachary Crest Suite 733 +West Anthonybury, GA 14832",1978-01-19 17:21:06,cd:3d:2c:ec:a1:9c,pattersonsierra@price-goodwin.com,img/obama.jpg +Julie Barber,357-51-9345,07541,"58561 Briana Via +East Jenniferview, MO 11225-1183",1985-10-01 10:37:08,8c:8a:50:d4:11:5e,delacruztanya@gmail.com,img/obama.jpg +Jessica Price,320-87-2850,87639,"PSC 4118, Box 3706 +APO AE 70568",1993-11-29 03:24:16,1c:69:ec:20:99:43,brownkimberly@robinson.net,img/obama.jpg +Jamie Phillips,703-52-3982,95584,"1466 Elliott Camp Apt. 173 +Davidchester, MS 62809-7491",1933-12-18 12:12:24,53:61:e2:97:46:f5,ronald47@yahoo.com,img/obama.jpg +Charles Parker,474-61-7076,48236,"8344 Rodriguez Falls Apt. 730 +Olsenbury, MH 98495",1933-10-06 09:15:38,39:d4:8f:30:4c:03,jordankurt@schwartz-hawkins.com,img/obama.jpg +Leslie Jensen,450-10-4195,94219,"1822 Hoover Ports Suite 883 +West David, ID 16460-1306",1998-05-01 21:36:28,5f:e0:89:3a:78:bd,david33@hotmail.com,img/obama.jpg +Laura Myers,831-21-9180,69480,"09758 Kelly Roads Suite 362 +Joelmouth, WY 45731",1955-02-28 03:01:09,08:fe:f4:d9:a0:0d,zblackwell@hotmail.com,img/obama.jpg +Jacob Jackson,831-74-0664,36752,"6795 Campbell Mission Suite 064 +North Nathanhaven, PR 66691-5897",1992-12-11 01:18:34,64:b0:50:55:70:6d,aguilarelizabeth@cole-harris.com,img/obama.jpg +Bruce Campbell,336-50-0548,06939,"060 Andres Unions +Hannahfort, SC 24355-7344",1984-03-10 21:07:26,3c:67:7a:15:64:16,andrew22@yahoo.com,img/obama.jpg +Robert Mejia,378-01-9129,23934,"020 Meyers Plaza +South Donna, MD 32485",1950-01-21 04:50:02,8f:ba:39:c8:23:e9,dylanmorris@yahoo.com,img/obama.jpg +Lorraine Valdez,488-92-3640,99738,"7848 Felicia Ville Suite 716 +Gomezberg, AK 70529-7878",1999-04-05 12:34:37,d5:d6:a7:c8:f2:27,brianwashington@lane-coleman.biz,img/obama.jpg +Paul Edwards,445-22-5619,02722,"381 Salazar Causeway Suite 215 +South Brittany, MH 71671",1974-08-01 05:15:04,13:eb:30:de:af:55,angelamiranda@robinson.com,img/obama.jpg +Latasha Melendez,575-65-0672,96680,"11407 Ortiz Turnpike +Johnmouth, MI 10138",1937-02-23 21:11:56,a3:9f:8c:65:62:5d,marco21@hotmail.com,img/obama.jpg +Melissa Waters,027-68-0905,79731,"7765 Woods Fork +Pattersonmouth, VT 95994",1929-05-04 04:51:46,b1:f0:28:61:c3:bd,anthonyray@henderson-young.com,img/obama.jpg +April Hubbard,132-31-0674,32244,"61414 Moreno Forest +Lucerobury, CO 75553-6079",1939-03-22 21:27:36,f9:6a:cd:46:cc:7c,rvelazquez@gaines-miller.org,img/obama.jpg +Todd Hunter,382-83-8681,39493,"42928 Robinson Crossroad Apt. 175 +Port Christinaborough, MH 83551-7588",1945-11-03 13:19:02,33:e5:c6:c9:86:88,samuel09@hotmail.com,img/obama.jpg +Stacy Black,653-32-7403,62280,"7857 Spencer Coves +Lake Matthewbury, FM 84432-2155",1985-12-23 11:59:16,e3:10:e4:e4:82:d3,yjackson@hotmail.com,img/obama.jpg +Teresa Terrell,124-10-0535,47493,"693 Robert Canyon Apt. 531 +Melissahaven, ME 87919",1950-12-07 11:33:25,0f:b5:e8:08:53:fa,conniebrown@gibson-jones.com,img/obama.jpg +Matthew Chapman,614-40-0658,70038,"9656 Nicole Fort Suite 990 +South Sharonport, WI 93204-8048",1955-04-23 00:56:15,41:3a:ef:db:08:ce,gonzalesguy@gmail.com,img/obama.jpg +Autumn Romero,777-77-8462,94489,"64784 Nguyen Pike Apt. 264 +Lake Joshuatown, FL 32827",1952-10-15 22:54:49,b6:94:a8:c7:56:5f,leelisa@yahoo.com,img/obama.jpg +Donna Smith,647-98-4011,57911,"7639 Reyes Squares +Anthonyhaven, NY 39884-6846",1918-11-21 16:31:37,39:9d:6f:4e:3d:28,cooklisa@yahoo.com,img/obama.jpg +Mitchell Holland,688-62-3872,72640,"2026 Gross Port +West Christinamouth, ND 24585-3542",1983-10-10 19:49:48,43:53:22:93:66:26,fordmegan@farrell-pierce.com,img/obama.jpg +Anthony Drake,837-47-3236,68227,"386 Sherry Forks Suite 312 +Lake Brucechester, GA 71087",1953-08-10 10:27:36,fc:83:b6:60:90:7d,timothy19@yahoo.com,img/obama.jpg +Michael Marsh,179-44-0830,49033,"26870 Andrew Village Suite 115 +North Stephenmouth, MS 48513-9938",1992-12-06 01:17:48,02:ad:2e:6a:9f:ce,john60@phillips.org,img/obama.jpg +David Burgess,142-11-1606,63864,"3518 Hayes Row Apt. 792 +Padillamouth, WI 27451",1947-07-19 15:03:59,b9:01:0c:4c:16:1d,elizabeth79@yahoo.com,img/obama.jpg +Alison Lewis,755-20-2625,42622,"95560 Timothy Cliff +New Joshuahaven, MS 77464",1959-03-10 00:34:21,84:29:16:f7:aa:a7,robertpeterson@horne-smith.org,img/obama.jpg +John May,220-62-7981,76224,"674 Chambers Shoals +Valeriestad, IL 73010-7941",1991-09-12 08:24:35,d1:48:a7:77:d5:99,rileypamela@hotmail.com,img/obama.jpg +Timothy Gordon,632-17-2908,68023,"837 Tracy Drive +North Amandaton, ND 71807",1951-01-29 18:26:41,b6:83:d1:f9:c5:19,iwilliams@yahoo.com,img/obama.jpg +Bruce Duncan,079-68-4101,24205,"81403 Becky Plain Suite 199 +South Markmouth, ID 46866",1959-08-01 23:57:09,7c:a2:f6:1f:6f:d0,williamsdenise@gmail.com,img/obama.jpg +Brandon Frazier,330-30-1516,95141,"5454 Jose Locks Suite 205 +North Kathleen, PA 28481-6916",1965-10-17 10:54:43,4a:cb:f9:e2:14:81,fmatthews@gmail.com,img/obama.jpg +Thomas Stephens,886-12-8884,19888,"49498 Richard Wall Suite 086 +Arellanoville, MD 27422",1993-12-30 11:18:37,51:8c:9d:76:80:2c,larsonryan@gmail.com,img/obama.jpg +Catherine Chavez,038-40-8656,17283,"5082 Hughes Bridge +Lake Stephanie, AK 72678",1936-01-25 22:40:01,fe:30:31:dd:04:ee,christophergomez@hotmail.com,img/obama.jpg +Tina Pittman,463-28-6299,48613,"401 David Tunnel Suite 150 +North Michaelburgh, MO 86734-1181",1939-04-27 01:21:59,ca:67:1c:a4:0f:75,paul90@gmail.com,img/obama.jpg +Joanna Munoz,035-47-4845,70747,"76556 Harris Tunnel +Kramerside, AS 72795-3737",1994-10-28 20:23:07,a2:a7:79:ad:93:a4,hbutler@hotmail.com,img/obama.jpg +Cindy Lopez,303-08-2849,02692,"1537 Juan Views +Robinsonview, MD 20186-4941",1973-04-08 17:44:19,9b:cf:12:a8:82:36,susanmaldonado@smith.com,img/obama.jpg +Marissa Sparks,890-80-6563,05573,"35191 James Highway Suite 956 +North Katherinestad, VA 45468",1991-01-11 07:44:08,93:6f:6a:54:d0:be,lwalker@johnson.com,img/obama.jpg +Ryan Casey,127-42-4709,59558,"80499 Mckay Springs Apt. 768 +Lake Shannonside, FL 60294",1956-12-08 06:38:30,0f:39:d7:d0:04:e1,lesliealvarez@gmail.com,img/obama.jpg +Jessica Hayes,623-77-6913,67368,"657 Bowman Route +South Lindseybury, OH 28733-0502",1931-11-22 23:53:19,22:1e:bb:1c:f6:64,owenjennifer@blackwell.org,img/obama.jpg +John Patel,845-67-3999,63232,"8703 Todd Circles Suite 318 +East Keith, OK 96590-3959",1956-10-03 12:38:12,bb:b0:9d:35:80:21,aprilbailey@stevens.biz,img/obama.jpg +Aaron Stein,746-62-1571,07438,"321 Amy Squares +Rhondamouth, SD 90271-8181",1941-06-30 20:51:55,52:6b:a8:21:7d:51,shaffershawn@weaver.biz,img/obama.jpg +Dr. Melvin West,095-89-9945,67639,"22278 Scott Glens Suite 183 +North Vanessabury, AL 78926-5924",2009-03-09 01:02:09,ae:42:43:a0:01:ec,qrodriguez@hotmail.com,img/obama.jpg +Benjamin Lopez,866-81-7446,72372,"Unit 7127 Box 0267 +DPO AA 91698",1919-08-29 19:35:17,f2:e4:19:e9:e5:64,ityler@greer.com,img/obama.jpg +Nathan Zamora,448-03-8303,55121,"1010 Lisa Crossing Suite 117 +Port Luisfort, KS 80420",1993-10-17 05:29:26,29:79:0d:21:dd:26,marybarton@gmail.com,img/obama.jpg +Kristin Hernandez,428-41-1941,04270,"1204 Fowler Crossroad Apt. 653 +Katherinemouth, MS 92572-7736",1925-11-26 01:37:54,00:65:b3:c6:55:fb,michelle36@chen.com,img/obama.jpg +Tina Hill,566-33-8866,20508,"19437 Dawn Dale Suite 453 +Lake Daniel, AK 10382",1954-09-24 03:51:35,33:11:06:2e:2d:2c,zacharygreen@mejia.net,img/obama.jpg +David Ortiz,604-04-0983,25208,"310 Sanders Mill Suite 472 +Mccormickstad, WA 74139",1929-12-30 07:48:22,91:0b:f9:96:c9:54,aguilartiffany@yahoo.com,img/obama.jpg +Christine Tanner,837-38-5079,61929,"00177 Michael Drive +Royton, KY 59131-9440",1973-08-03 18:24:37,98:58:bc:89:04:a4,matthewscatherine@hotmail.com,img/obama.jpg +Teresa Gomez,262-76-7877,93383,"9605 Claudia Cliff Suite 829 +Megantown, GA 01526",1963-08-09 21:58:23,bf:ad:a2:a6:79:66,denise97@dodson.com,img/obama.jpg +Michael Jones,368-41-1918,23592,"94482 Kelly Via +North Emily, IN 22532",1990-08-15 22:27:01,b2:63:f8:fe:67:72,owhitehead@mclaughlin.com,img/obama.jpg +Gabriel Harrington,355-42-7300,53826,"607 Jose Stream Suite 555 +New Allenchester, CO 16439",2006-03-15 10:04:34,32:9c:52:6b:b2:55,brett37@davis.biz,img/obama.jpg +Matthew Ho,359-44-1200,49083,"7573 Caitlin Shoal Apt. 178 +Smithville, RI 75657",1977-08-29 20:22:10,5f:10:69:f3:88:49,holly53@gmail.com,img/obama.jpg +Deborah Martin MD,073-91-2747,78790,"22379 Howard Well +North Whitneyburgh, MA 98067",1964-04-18 03:27:33,ae:18:3e:35:5b:7c,ronald70@yahoo.com,img/obama.jpg +Natalie Cohen,033-04-8261,82937,"19945 April Shore Apt. 258 +Hillborough, TN 01928-7103",1981-01-17 00:41:33,24:67:5d:28:e3:45,krodriguez@butler.com,img/obama.jpg +Whitney Green,296-42-8773,69876,"10310 Edwards Flat +South Michaelmouth, VT 04308-6963",1933-01-03 04:33:01,38:08:2a:95:fb:cc,matthew05@gmail.com,img/obama.jpg +Dustin Griffin,375-85-3499,99651,"50368 Connie Extensions +Robertville, HI 12911",1984-07-09 08:29:34,b0:1d:15:0b:bb:38,osmith@hotmail.com,img/obama.jpg +Brett Taylor,684-97-7853,31317,"963 Natalie Locks Suite 707 +New Christopher, NY 82397",1986-05-27 21:34:27,26:57:31:af:f5:87,hsmith@gmail.com,img/obama.jpg +Tyler Thomas,104-85-5581,08639,"0326 Teresa Streets +North Staceymouth, TN 01660-0265",1948-03-23 02:42:58,60:3f:bc:be:39:b6,webermark@walton-murphy.com,img/obama.jpg +Stephanie Stewart,689-01-4182,52136,"241 Johnson Fields +Rodneyburgh, DE 21930-0352",1927-07-27 22:19:13,24:9d:23:4f:ee:61,wtyler@yahoo.com,img/obama.jpg +Marc Newton,218-60-8405,45118,"507 Peters Squares +Stewartview, NY 44148-1224",1925-08-26 16:39:55,fd:9e:94:b5:16:d4,simmonsanthony@young-hernandez.com,img/obama.jpg +Julia Miller,581-50-5222,57622,"45360 Kevin Stravenue Suite 035 +Dustinfort, MT 05837",1926-12-01 07:26:49,bd:06:18:f1:f4:ba,valvarado@gmail.com,img/obama.jpg +Dylan Hurst,829-53-1589,17309,"18103 Laura Track +Jimenezborough, PA 37050-9974",1931-09-07 21:13:18,6a:3b:99:fd:50:fc,alyssajackson@flores.com,img/obama.jpg +Rachel Skinner,770-40-6680,34735,"Unit 5189 Box 3813 +DPO AA 78888-3415",1935-12-19 03:33:39,6a:27:ad:24:cb:1e,rayjessica@gmail.com,img/obama.jpg +Nancy Marshall,123-59-2228,57933,"11981 Mitchell Shore Suite 955 +New Stacyport, PA 93776",1937-07-27 08:42:36,2a:04:3b:4e:7d:06,rmitchell@yahoo.com,img/obama.jpg +Karen Wells,423-18-8371,55004,"718 Holly Parks Suite 409 +Port Catherine, MN 65374",1979-11-05 11:44:45,c4:45:02:45:06:19,floresdawn@roy.biz,img/obama.jpg +Margaret Olson,638-96-5451,99467,"470 Hayley Village Apt. 726 +New Audreyfort, CA 45009",1952-09-14 18:10:18,bf:79:0a:99:7e:ab,steelerenee@yahoo.com,img/obama.jpg +Heather Delgado,497-50-3543,77218,"Unit 9571 Box 2733 +DPO AP 67669",2009-01-23 16:08:01,ed:76:93:48:4c:0e,sheltonronnie@grant-walls.com,img/obama.jpg +Nicole Smith MD,075-10-1035,89367,"990 Sanders Harbors Apt. 404 +Joshuaton, MN 98363-7162",2006-12-20 05:20:19,6e:33:f7:b8:8f:e5,ywilliams@gmail.com,img/obama.jpg +Karen Huynh,609-15-8290,59134,"3628 Mendoza Street +Rivasstad, UT 80002",1980-10-17 18:00:58,38:b8:37:83:bc:93,jmckenzie@hotmail.com,img/obama.jpg +Pamela Bryant,694-71-1746,21854,"12604 Lisa Ville Suite 593 +North Daniel, NH 97990",1981-07-08 18:57:55,78:b9:69:f1:8c:9a,smithsteven@yahoo.com,img/obama.jpg +Charles Johnson,210-52-3055,82324,"361 Coleman Island Suite 962 +Ayalachester, CT 19961",2009-06-16 16:19:51,e0:2a:ef:76:4d:e3,vroberts@yahoo.com,img/obama.jpg +Jonathan Sandoval,085-57-4389,98244,"988 Madison Ville Suite 302 +Timothymouth, CT 26417",1970-10-31 04:23:01,a7:7b:a9:f8:21:26,erika08@hotmail.com,img/obama.jpg +Jason Reyes,678-90-1520,84924,"560 Laura Green Apt. 622 +Brownview, MO 13559",1924-12-13 16:34:27,9e:2f:ab:d5:8b:77,margaret20@gmail.com,img/obama.jpg +Veronica Brown,111-80-0946,36417,"764 Mary Coves +Lauraburgh, LA 90659",1923-07-09 19:31:51,f3:f7:71:d4:7c:ab,nielsendesiree@oliver.com,img/obama.jpg +Charles Gonzalez,605-35-6915,62208,"056 Zimmerman Pass +Lake Michaelfort, UT 78736-8255",1992-12-31 04:30:52,51:14:44:48:5d:d4,simpsontaylor@moyer.com,img/obama.jpg +Nathan Williams,774-29-2443,49088,"8429 Compton Meadows Apt. 226 +East Mikeville, MP 88085",1939-12-15 05:27:25,74:32:f7:a1:d1:ae,glloyd@wise.com,img/obama.jpg +Grace Roach,507-33-9458,60917,"3348 Brandon Centers Apt. 975 +Port Christopher, ME 83257-8851",1924-04-30 13:16:14,07:65:c5:ec:4e:42,cmcfarland@smith-olson.com,img/obama.jpg +Ryan Cruz,596-83-8731,91362,"43837 Caleb Valleys Apt. 805 +North Brian, IA 10691-8245",1964-06-17 05:49:32,8c:07:3f:10:6e:3e,xhayden@yahoo.com,img/obama.jpg +Paul Wilson,525-07-8631,05947,"842 Smith Island Apt. 333 +Lake Kerristad, GU 14964",1991-05-15 11:42:30,f2:17:bd:71:34:d5,yolanda05@horn.com,img/obama.jpg +Mark Williams,550-21-5143,82544,"11962 Angela Manor Apt. 511 +Williamston, OK 70358-3063",1949-02-13 17:08:47,4a:32:5c:a1:8d:69,vking@hotmail.com,img/obama.jpg +Arthur Reynolds,084-49-1823,11748,"972 Carter Plains +Katiefurt, WV 36854-4551",1994-11-21 21:32:56,a7:2b:fa:82:6b:fc,reedrandy@perry.com,img/obama.jpg +Matthew Miller,546-35-6968,24589,"739 James Squares Apt. 351 +Port Martin, OK 11016-0800",1986-07-28 18:24:28,e9:61:0d:c1:e0:16,gchavez@gmail.com,img/obama.jpg +David Booker,654-55-4191,11048,"738 Oconnor Junction +Lake Robert, PW 93503-7257",1977-03-11 20:02:37,2b:5c:3d:d7:64:38,knightandrea@hurley.org,img/obama.jpg +Andrea Pace,291-25-4457,00890,"5785 Ibarra Causeway +South Jacobburgh, MS 65853-9179",1965-05-13 10:06:59,e3:cf:9a:1a:5f:ee,martinamanda@gmail.com,img/obama.jpg +Kayla Price,402-72-6584,85992,"1707 Patricia Expressway +North Brandy, WV 72864",1984-05-26 01:06:53,3a:e6:06:76:a1:fd,gonzalezanthony@james.org,img/obama.jpg +Melanie Tyler,323-75-4300,99631,"98079 Mark Burg +East James, ID 84513-5229",1934-09-12 01:50:38,dc:72:dd:60:b6:ce,alexisthomas@callahan-owens.net,img/obama.jpg +Christopher Porter,656-46-5140,90387,"0254 Willis Lakes +Jimenezfurt, VA 12696",2003-04-17 23:52:52,d9:7a:0b:8f:37:cd,kaylee90@mckinney-rivera.com,img/obama.jpg +Sandra Campbell,604-13-3317,78646,"617 Miller Throughway +West Anthony, NJ 44244-8103",1955-09-23 21:18:39,bf:05:68:f9:4e:f8,gonzalezkenneth@nguyen.com,img/obama.jpg +Eric Sloan,245-79-8229,56926,"PSC 6536, Box 0705 +APO AE 75027-7469",1921-12-11 19:08:05,dd:de:5c:99:07:b5,francisschroeder@yahoo.com,img/obama.jpg +Mr. Christopher Knapp,861-34-8383,82451,"052 Jared Orchard +Johnsonview, NY 12200",2002-01-16 10:11:01,79:6b:fb:e5:9c:de,jessica18@gmail.com,img/obama.jpg +Christina Guzman,136-69-2088,73729,"073 Klein Curve +East Lindaville, FL 38313",1941-08-17 21:59:59,6e:b0:66:ed:3a:e7,anthony04@mejia-estrada.info,img/obama.jpg +Wayne Rogers,231-59-2793,84143,"3856 Abigail Isle +Campbellborough, WI 91648-0006",1964-02-10 05:08:45,c7:13:b7:1c:16:c7,wrightnicole@hotmail.com,img/obama.jpg +Kristie Moreno,751-19-2740,29537,"369 Henry Oval Suite 969 +Ryanberg, MI 75887",1921-10-24 16:07:01,11:b5:d0:27:8b:d3,garciavictoria@robertson.com,img/obama.jpg +Scott Hunter,183-94-8162,80934,"5866 Montgomery Crossroad +Harrellburgh, WY 65088",1919-12-04 10:22:52,27:f3:81:a3:14:c6,smithronald@gmail.com,img/obama.jpg +Dawn Moss,625-37-5128,59656,"409 Hampton Plain +Stevensfort, MH 37172",1964-10-09 15:09:36,3d:ab:68:c9:29:e3,jamie31@hotmail.com,img/obama.jpg +Ian Hood,873-38-2034,25730,"703 Stewart Corner +Victoriashire, OR 30075-5277",1921-04-17 16:26:52,eb:b1:bc:32:fb:03,michellemcdaniel@rivera-webb.com,img/obama.jpg +Susan Williams,225-85-8848,29859,"31961 Stewart Landing Apt. 703 +West Alanport, MI 00051-7327",1990-12-15 23:34:57,38:98:78:c1:ff:10,daniel76@hotmail.com,img/obama.jpg +Megan Cochran,773-75-6493,08022,"1269 Hays Coves Suite 298 +Reedberg, LA 29227",1979-06-08 15:03:54,80:a9:4f:a6:3c:b5,david62@gmail.com,img/obama.jpg +Brittney Porter,788-30-0258,88764,"368 Holly Mountain +North John, ID 81275-7317",1945-03-29 12:44:05,31:db:66:43:a6:6e,jennifer94@webster-rogers.biz,img/obama.jpg +Mr. Tyler Buchanan MD,079-03-1434,51904,"27436 Murray Stream +Sheilaside, IA 71454",2017-03-29 03:49:21,8a:b4:b9:c4:b7:67,hgraves@yahoo.com,img/obama.jpg +Alyssa Bell,100-98-1606,92288,"3734 David Underpass +West Laurenview, WY 97049",2007-10-28 19:36:36,69:a7:ee:d0:0d:f1,martinezaaron@christensen.com,img/obama.jpg +Matthew Harper,620-54-0477,83680,"84824 Mills Common Apt. 894 +Lake Karen, SD 00059-5428",1969-10-21 19:34:23,33:37:d3:e0:89:08,ysantiago@hayes.com,img/obama.jpg +Benjamin Jones,701-43-3327,12650,"716 Nancy Meadow +Lake Amy, NH 98943",2003-11-29 15:56:16,d0:dc:f4:27:a1:ca,saundersshawn@smith.com,img/obama.jpg +Brandon Robinson,044-69-0434,15970,"199 Mary Mews +Santanashire, IA 39394",1966-09-22 16:19:26,19:8e:5b:30:81:a7,zholt@hotmail.com,img/obama.jpg +Debra Martin,099-34-5839,01568,"52742 Christopher Hill +Thompsonton, WA 11488-9355",1978-10-09 21:36:18,22:18:49:5f:c0:3a,jacksonmichelle@hotmail.com,img/obama.jpg +Anna Robertson,151-67-5521,73562,"2324 Stephens Shores Apt. 426 +West Ricky, LA 22666",2015-07-12 22:41:57,1c:41:f8:6b:1c:7d,matthewwalker@lawrence.com,img/obama.jpg +Maria Shea,283-60-0131,80897,"28819 Wilson Parkways Suite 014 +Lake Donald, MN 28680",1996-01-09 12:05:38,95:89:33:c1:3f:88,fuentesmaxwell@durham-huff.biz,img/obama.jpg +Savannah Vasquez,826-60-0259,28969,"685 Rodriguez Branch +New Gabriel, NJ 45296",1955-10-02 00:47:30,ff:35:e8:d0:15:9a,fduke@gmail.com,img/obama.jpg +Joshua Rodriguez MD,055-57-1705,91048,"12801 Yvonne Wells Suite 370 +Port Darren, NM 28815-5029",1936-03-01 00:06:36,c7:dc:ab:67:6b:4f,hfletcher@gmail.com,img/obama.jpg +Joseph Knox,584-16-7217,47377,"51077 Anderson Highway +East Christophertown, NC 47319",1973-02-16 19:37:49,85:3b:2d:ac:d3:7d,melissa41@yahoo.com,img/obama.jpg +Jennifer Sanchez,577-03-7296,38241,"3787 Bailey Crest Suite 773 +South Emilyville, IN 67240",2014-09-20 18:50:48,2b:b7:80:ce:38:dd,gjacobs@carter.com,img/obama.jpg +Laura Price,387-71-6112,21969,"073 Scott Shore +Blacktown, DE 11738",1925-10-31 08:09:34,b1:8d:55:ed:8a:47,jscott@anderson.net,img/obama.jpg +Larry Greene,888-98-2807,04261,"611 Mary Brook +Clarkstad, AL 94020",2011-09-29 08:22:25,0e:0c:b6:41:49:d9,andersonmorgan@yahoo.com,img/obama.jpg +Evan Cobb,249-86-3773,74313,"8783 Mayo Isle +New Matthewbury, GU 75044-4563",2007-10-12 16:58:44,ad:a4:64:56:59:ac,zwright@ball.info,img/obama.jpg +Jennifer Cross,481-39-1581,97604,"28929 Pace Fork +Josephport, MD 88262",1995-12-27 20:02:10,d3:d2:85:1f:29:8c,joshuahowell@wood.com,img/obama.jpg +Dr. Edward Parker,480-74-2727,75822,"1800 Andrew Key Suite 814 +Yutown, MP 39376",1978-12-08 17:50:17,ef:5d:c9:ab:92:d9,april47@young-quinn.net,img/obama.jpg +Gregory Valdez,335-75-0998,30828,"1084 Stewart Path Apt. 157 +East Jeffrey, TN 36699",1963-05-29 19:01:38,0e:1f:a4:ea:25:69,erichogan@yahoo.com,img/obama.jpg +Victoria Miranda,855-11-8354,39483,"4850 Perez Ranch Apt. 467 +Walshhaven, MH 49499",1975-09-13 13:48:11,4c:aa:d2:3a:ef:a6,farleynatalie@turner.com,img/obama.jpg +Tammy Smith,602-24-6441,97681,"284 Steve Island +Kylestad, VA 38545",1923-04-03 15:17:37,63:e5:fc:89:b9:e2,dixontodd@hotmail.com,img/obama.jpg +Michael Lyons,871-50-7012,58188,"8643 Amanda Flat Suite 056 +Melissaborough, KY 21471-0339",1986-11-28 19:34:13,1d:91:8e:a4:92:aa,seanwilson@elliott-soto.com,img/obama.jpg +David Aguilar,031-81-6547,73125,"58058 Lauren Circles Apt. 213 +Weberstad, FL 41805",1934-04-01 07:03:49,26:cb:3f:1d:20:46,mary58@yahoo.com,img/obama.jpg +James Carter,092-28-6977,28006,"4766 Anderson Mountain Suite 769 +West Pamelachester, NE 80798",2000-09-30 13:02:50,fd:36:2b:91:90:bd,roger69@gmail.com,img/obama.jpg +Henry Smith,374-74-3717,70010,"511 Russell Orchard Apt. 544 +North Jenniferburgh, OH 48800",2009-06-26 04:32:10,40:7e:8d:3b:44:86,rdeleon@gmail.com,img/obama.jpg +Brandy Patterson,379-13-6144,46429,"858 Chad Island +Velasquezmouth, ND 59393-7937",1931-06-29 07:21:41,a5:76:d9:13:35:53,rcampbell@hotmail.com,img/obama.jpg +Rodney Ramirez,487-25-0844,66287,"3130 Nicole Village +Johnsfurt, IA 23326",1973-02-14 03:30:08,ad:d0:9e:10:fd:c8,jodirussell@goodwin-velazquez.biz,img/obama.jpg +Aaron Henderson DDS,258-31-4001,45488,"244 Nicholas Terrace Apt. 447 +Davidmouth, NV 55051",1941-03-09 11:36:51,29:ae:33:d6:d0:75,welchbrian@gmail.com,img/obama.jpg +Janet Nelson,392-08-0289,80947,"7364 Allen Center +Port Jason, MS 95974-7604",2005-04-04 10:10:00,ce:9c:57:74:43:7a,lisa69@hawkins.biz,img/obama.jpg +Ashley Brown,533-04-6229,70767,"Unit 7181 Box 7788 +DPO AP 89711-4952",1940-07-09 04:32:11,8d:2a:f7:eb:b6:3d,grace26@gonzalez.com,img/obama.jpg +Albert Sherman,385-79-9342,37745,"6935 Steven Harbor Apt. 508 +East Stevenland, KS 20306",1954-04-10 05:29:31,da:56:d7:53:8b:55,brianfisher@wilson-davis.net,img/obama.jpg +Heidi Atkins,735-04-4144,13554,"2208 Nancy Meadow Apt. 439 +Edwardsstad, OK 72439",1969-09-04 18:18:53,9b:9c:76:f7:4c:40,jason89@hotmail.com,img/obama.jpg +Allen Garrett,822-03-3220,35076,"33388 Lee Drive +North Jason, NC 70286",2002-02-11 14:46:34,b5:12:03:d6:f4:68,simmonsadrian@caldwell.net,img/obama.jpg +Danny Willis,790-81-0125,54019,"235 Frederick Mission +South Lisaberg, AR 55573",2015-11-16 11:06:56,34:a3:03:6b:1a:49,kathryn03@salinas-brown.biz,img/obama.jpg +Rebecca Myers,493-67-7583,52234,"81377 Erin Park Apt. 171 +New Markfurt, SC 53418",1996-01-06 02:29:24,ee:17:e4:5a:a5:4f,jonjohnston@yahoo.com,img/obama.jpg +Steven Wilson,466-96-3789,80561,"163 Scott Lake +Port Taylormouth, AS 83063",2006-04-27 00:44:53,93:eb:aa:95:aa:4e,nicole98@hotmail.com,img/obama.jpg +Linda Edwards,891-85-7690,96394,"2341 Fred Viaduct +South Alfredfort, AZ 27896",1994-12-25 21:35:58,c1:0d:bc:8c:19:94,william09@yahoo.com,img/obama.jpg +Sharon Baldwin,546-62-2361,32884,"51494 Stephanie Wall +Adamsfort, OH 31661",1927-04-18 05:39:31,f4:86:eb:6c:48:45,kenneth26@gonzalez-murphy.biz,img/obama.jpg +Raymond Miller,244-65-5299,25447,"7296 April Rapid +Porterberg, NC 33047",1943-01-29 00:00:27,8c:1a:ad:63:9b:86,parsonsjessica@gmail.com,img/obama.jpg +George Clark,775-20-7434,58804,"7268 Dan Harbor Suite 297 +South Cheyenneshire, PR 33915",1948-09-07 19:37:46,ff:5e:15:66:97:26,zharris@gmail.com,img/obama.jpg +Christopher Orr,412-10-5094,52983,"84331 Shirley Valleys Suite 982 +Ashleyberg, MT 49988",1986-03-02 09:36:26,c3:22:55:f8:60:a2,jordangilbert@williams-cunningham.com,img/obama.jpg +Samuel Keith,424-43-4493,01284,"PSC 2540, Box 2513 +APO AE 12996-2800",1989-11-11 02:51:37,bc:98:62:21:f1:63,amanda01@hotmail.com,img/obama.jpg +Jacob Christensen,634-78-3378,87307,"79334 Hubbard Well +Port Sherichester, CT 37997",2007-09-17 14:06:45,8b:b5:a8:d0:c6:d0,amberrobinson@smith.org,img/obama.jpg +Sonya Gallegos,328-35-5708,23934,"61959 Oconnell Forest Apt. 052 +Allisonstad, VA 63646",1931-12-03 05:54:05,6a:31:31:f3:a0:a8,sgates@schultz.com,img/obama.jpg +Todd Morrison,227-88-4441,63167,"4088 Brown Haven +Woodsland, PR 89447",2005-02-10 02:28:28,7e:da:6d:f0:3f:5f,martinezallen@gmail.com,img/obama.jpg +Amanda Palmer,455-93-2186,91446,"8268 John Ford +New Glendaport, IA 61871",1940-11-24 23:19:37,27:3f:5a:6a:f0:0a,brownchristine@ryan-herrera.com,img/obama.jpg +Heidi Flynn,296-93-9895,03423,"27193 Stanley Lodge Apt. 753 +North Megan, MH 55132",2000-03-13 14:38:22,1d:84:74:f8:f0:a5,danielthompson@levy-friedman.com,img/obama.jpg +Kelly Gonzalez,413-18-0534,36370,"2771 Mitchell Road Suite 545 +East Jonathan, WY 88720-9966",1967-07-10 21:17:29,03:94:12:23:6c:28,hollowayamber@dorsey.info,img/obama.jpg +Michael Ortiz,590-87-7010,44694,"503 Jordan Light +North Jacobmouth, WY 24682-2713",1945-11-16 04:09:45,ef:60:1a:68:88:60,millscourtney@hawkins.com,img/obama.jpg +Robert Patrick,490-32-8224,11740,"6791 Cook Valley +Waltonhaven, AZ 77883",1993-07-29 16:50:48,cf:6f:58:ac:c4:bb,jacksontodd@russell-mcdaniel.info,img/obama.jpg +Patrick Riley,883-09-3931,84357,"PSC 7627, Box 8805 +APO AA 94099-7102",1992-03-24 16:56:15,d1:29:6f:f2:a5:4c,torresconnie@moses.com,img/obama.jpg +Jennifer Reynolds,343-09-0089,11709,"937 Kiara Rue Apt. 168 +Port Johnburgh, LA 00217",1987-10-29 13:17:48,26:d7:35:bd:4e:bd,carl28@nguyen.com,img/obama.jpg +Jacob Cox,673-14-9194,06379,"Unit 4575 Box 4388 +DPO AA 07559",1953-05-24 01:47:34,85:50:fa:7e:b9:cf,masseynancy@lewis.com,img/obama.jpg +Cameron Rocha,434-51-4936,81565,"8357 Sullivan Drives +Paulatown, AS 97227",2013-06-04 01:06:56,bd:3a:ab:fa:99:98,robertsjohn@yahoo.com,img/obama.jpg +Gregory Stewart,148-85-8478,80765,"219 Rebecca Well +New Julie, IN 11895-5798",2004-08-13 12:39:45,7e:a6:93:53:ad:19,walkererin@lara.com,img/obama.jpg +Matthew Franklin,347-79-2594,85334,"12408 Sara Springs +New Jerryland, PW 51659",2005-07-27 02:20:36,cd:25:b2:5e:69:e1,njones@anderson-garcia.com,img/obama.jpg +Jonathan Bryant,809-11-3344,72294,"991 Christina Avenue Suite 252 +Kimhaven, GA 77732-8554",2010-09-23 17:17:07,a7:bf:b0:14:36:d9,michaelmatthews@norman.com,img/obama.jpg +Thomas Goodwin,763-98-0276,52430,"5870 Rodney Hollow Suite 749 +Port Christopher, MO 43616-2687",1946-05-29 02:25:30,61:9a:bf:41:5d:d7,petersonwilliam@harris-perez.com,img/obama.jpg +Jared Morales,227-88-8539,03297,"9121 Baker Streets Suite 020 +Kristinafort, MI 96191-6661",1954-03-11 05:32:26,8c:4d:9e:89:12:34,danielcontreras@hotmail.com,img/obama.jpg +Mark Stewart,276-88-5317,53437,"9569 Goodwin Street Suite 233 +Jenniferview, NH 79525-8821",1937-08-07 13:13:23,7d:97:d3:4c:d6:92,blake77@gmail.com,img/obama.jpg +Casey Benton,004-52-4283,44631,"616 Aimee Inlet +Port Michellebury, AK 73965-5177",1928-09-03 20:21:15,78:1a:cf:43:06:c1,mary15@leon.com,img/obama.jpg +Randall Santos,478-60-2448,30850,"0274 Mills Fork +East Kevin, MT 11624",1997-07-17 15:21:11,5d:62:b5:71:2a:ad,amandablackwell@chan.com,img/obama.jpg +Alexandria Carr,358-52-1458,21989,"930 Joshua Spur +Port Rachelstad, NY 84625-5403",1993-08-08 06:42:36,6b:49:fd:a3:f4:44,hector77@yahoo.com,img/obama.jpg +Eric Lewis,867-90-9708,23612,"48303 Berry Ville +Tannerfort, NC 30252",1955-09-22 05:15:59,df:ae:ee:bc:60:dc,martinezterri@aguilar.com,img/obama.jpg +Sherri Schwartz,135-60-6856,99287,"376 Johnson Lodge +West Micheleshire, LA 25027-3864",1929-12-09 15:42:22,81:a1:30:fc:7f:3f,opope@lopez-burns.com,img/obama.jpg +Matthew Ford,219-84-2635,68752,"920 Welch Overpass +Cooperland, MA 55894",1965-03-30 00:09:59,dc:99:c9:05:f7:fb,ramseyjennifer@douglas.com,img/obama.jpg +Ashley Johnson,879-15-1547,44386,"2237 Kevin Square Suite 094 +Alexisview, MI 71694",2003-02-22 15:41:26,64:b0:c6:f5:73:f4,christopher30@yahoo.com,img/obama.jpg +Amber Petty,037-53-3377,22416,"787 Patty Isle Apt. 195 +Colemanfort, PW 28272-7393",1937-02-26 09:30:56,4a:7e:00:25:a9:17,kimaustin@yahoo.com,img/obama.jpg +Taylor Hart,178-35-9201,79936,"1252 Rhonda Terrace +Cherylton, KS 00163",1976-09-23 18:35:32,11:f5:f9:20:69:0f,samuelwalker@yahoo.com,img/obama.jpg +Hector Hansen,003-32-7778,95500,"8878 Samuel Villages Suite 513 +East Lisafurt, WY 98238-7680",1997-12-31 06:09:50,ac:d9:3d:2a:37:47,zmorris@hamilton.com,img/obama.jpg +Emily Sexton,445-11-0984,29893,"477 Mills Parkways +Danielview, NY 81573",1965-10-17 00:35:14,6d:ce:6b:aa:07:e2,smithbill@gmail.com,img/obama.jpg +Todd Hahn,073-09-5114,39844,"35356 Rogers Mountains Apt. 234 +North William, MH 32680",1951-09-07 03:15:18,04:0c:10:f1:c0:84,pmcguire@wilson-smith.com,img/obama.jpg +Angela Smith,857-31-3077,56700,"25999 Fisher River Apt. 909 +Jenniferfort, MI 79262-2044",1991-03-27 07:51:12,fe:f9:70:db:27:fd,dukealexandra@hotmail.com,img/obama.jpg +Troy Bates,497-72-8544,01832,"21543 Jones Manor +Port Samanthafurt, CT 55721",1993-02-21 03:30:35,b4:f2:df:c8:55:a2,ashley09@warren.net,img/obama.jpg +Elizabeth Gray,585-66-5758,64878,"565 Patrick Trafficway Suite 946 +West Lori, KY 85688",1927-12-27 07:16:58,b3:f0:a9:57:3d:12,sharihutchinson@miller-cunningham.com,img/obama.jpg +Robin Howard,159-79-7821,93352,"84899 Robert Drives +East Kevinview, NC 77220-8086",1918-03-08 14:44:48,c0:f4:8b:49:4a:83,currymichelle@gmail.com,img/obama.jpg +Jeffery Jordan,007-22-9336,39415,"3413 Michelle Lodge Apt. 853 +East Taylorburgh, SD 19264",1933-10-21 15:11:12,de:14:e7:67:7a:ad,patrick09@gmail.com,img/obama.jpg +Lisa Mcbride,022-69-5947,32322,"89796 Danielle Knoll Apt. 405 +Walkerside, OK 49806-7619",1951-05-17 17:10:34,4c:04:be:92:6e:c7,stephanie73@jones-ramirez.net,img/obama.jpg +Melissa Christensen,160-76-9562,30715,"8723 Thomas Roads +West Veronicaview, OR 65397-3914",1929-12-22 14:17:42,08:ec:16:6b:8e:a3,ncarter@dominguez-schultz.com,img/obama.jpg +Joseph Frank,548-17-3341,67354,"PSC 7921, Box 9682 +APO AE 08042-0520",1992-12-04 12:26:08,d3:a9:53:dc:dc:25,ramirezstephen@thompson-mitchell.com,img/obama.jpg +Kenneth Tate,174-72-4480,29161,"PSC 8160, Box 1222 +APO AE 38083",1989-12-28 07:45:58,84:73:54:60:c0:13,julietorres@hotmail.com,img/obama.jpg +Judy Mata,726-22-1596,58468,"34650 Ortiz Course Apt. 773 +Lake Kristina, VI 92849",1926-09-04 15:43:35,c5:84:75:7a:b5:00,brian23@richardson-kelly.com,img/obama.jpg +Willie Wood,036-65-1205,33443,"38981 Jose Ways Apt. 014 +Lake Christinaside, MI 16109",1941-08-01 23:44:36,57:d6:f9:cd:65:57,churcherica@mueller.info,img/obama.jpg +Kevin Moses,645-39-2563,06476,"7818 Pamela Burg +Joyceburgh, MT 54331",1927-01-02 17:11:34,57:84:ee:aa:3c:fd,pbutler@gmail.com,img/obama.jpg +Dawn Green,664-02-6565,19855,"121 Alicia Dam +New Joshuabury, MT 43398",1917-09-06 13:12:11,27:c8:98:21:d0:9b,dmoore@yahoo.com,img/obama.jpg +William Hughes,466-92-3101,76021,"004 Christina Branch Apt. 161 +New Timothymouth, FL 16403",1985-05-12 11:05:20,53:34:67:9b:e2:b8,sullivanvictoria@yahoo.com,img/obama.jpg +Travis Stephens,797-90-3672,32126,"625 Timothy Wall +Alyssaland, NE 19069-5810",1982-10-27 12:34:13,e3:fb:52:72:96:da,hernandeznicole@martinez.com,img/obama.jpg +Samantha Booth,404-79-7984,71355,"91666 Pamela Canyon Suite 940 +Glennbury, IA 47909-4542",1971-09-14 07:43:00,03:10:df:08:bb:07,fanderson@phillips-vance.com,img/obama.jpg +Jennifer Jones,534-10-3583,08788,"022 Jose Well Suite 910 +Michaelberg, ND 22664-2804",1953-05-04 03:40:42,81:f0:2e:d4:d3:a3,woodanita@bullock-short.org,img/obama.jpg +Carolyn Matthews,069-78-5460,37897,"6509 Christina Creek +South Darrell, MH 64856-3851",1919-06-16 02:34:12,65:5d:c6:4e:10:a8,lisa77@hotmail.com,img/obama.jpg +Katie Anderson,220-89-3801,67568,"0901 Michelle Rue Apt. 336 +Harriston, RI 54861",1967-06-22 02:42:55,e1:98:0d:45:bb:16,heather78@harris.net,img/obama.jpg +Elizabeth Flores,836-35-4237,06846,"Unit 2720 Box 8424 +DPO AA 15925",1920-08-01 03:55:29,19:9e:bd:56:2f:80,jeffery86@lewis-odom.org,img/obama.jpg +Richard Wells,534-59-7250,31984,"PSC 9347, Box 2272 +APO AP 06963",1998-10-05 20:36:00,3d:fc:03:47:c5:4b,mistycohen@harrell.com,img/obama.jpg +Terry Graham,607-92-5366,55064,"USNV Colon +FPO AA 17259-0190",1994-09-22 23:25:47,2d:67:8a:88:0e:79,rebeccamason@smith-williams.com,img/obama.jpg +Dakota Ayers,506-02-7343,47529,"927 Williams Lodge +Perezburgh, NV 75122",1962-09-17 18:01:07,d2:c5:56:c7:f6:71,larry76@walker-lopez.net,img/obama.jpg +Ryan Gibbs,777-20-0704,80181,"6892 Bradley Dale Apt. 261 +Delgadoview, FM 85452-1144",1984-10-21 11:06:58,d1:65:26:65:f9:85,ashley08@hotmail.com,img/obama.jpg +David Willis,338-56-4903,73647,"317 Tanya Station Apt. 269 +Bradyview, MD 75521-2207",1923-01-31 18:26:23,fd:2d:1e:b4:ed:58,grussell@morrow.com,img/obama.jpg +Diane Harris,479-66-0669,33417,"324 Davis Knoll +Smithchester, ID 56814-3492",2004-03-19 06:21:21,a9:5d:f3:5c:ab:1b,zjones@caldwell.com,img/obama.jpg +Christina Mccullough,079-73-9966,24480,"519 Miller Street Suite 575 +Jasminetown, NV 49881-6224",2008-11-28 03:52:47,7d:d4:e0:69:7c:82,kelly27@gmail.com,img/obama.jpg +Daniel Evans,281-18-7868,66971,"9033 Mcclain Mountains +North Julie, FM 56514-5503",1955-12-09 00:04:15,1d:6c:77:b3:a2:79,bentonsheena@greene.com,img/obama.jpg +Brandon Gibson,501-34-0418,47985,"82092 Teresa Lock +Conniestad, AL 87250-6592",1982-12-07 05:26:30,4e:b9:b0:79:c7:7a,stacey69@yahoo.com,img/obama.jpg +April Mckay,210-55-3859,32221,"529 Caroline Hills Suite 572 +West Jenniferchester, NJ 58301-3649",1947-06-30 20:30:49,55:2d:cb:a1:59:5e,tewing@jones.com,img/obama.jpg +Susan Cole,368-93-1254,41847,"1338 Johnson Via Apt. 904 +Mcconnellstad, MH 52739-0289",1953-07-07 23:45:21,64:c4:c6:84:8e:00,ericmassey@sanchez-richardson.com,img/obama.jpg +Kelly Johnson,427-24-8971,88754,"3857 Estrada Brooks +East Tyler, GU 80395",1943-10-26 16:48:29,dd:bf:2a:42:c7:94,bnewton@bell.biz,img/obama.jpg +Brian Stone,274-08-0084,14679,"906 Sandra Hills +South Ashleymouth, RI 87568-2283",1939-04-15 14:41:28,88:e0:bc:54:e2:6b,nicole67@gmail.com,img/obama.jpg +Randy Mosley,252-87-7480,87412,"1767 Lin Stravenue Suite 414 +Phamborough, IN 36845",1987-08-19 10:46:29,8a:1d:18:ba:53:ba,eburton@hotmail.com,img/obama.jpg +Joanne Hampton,864-70-6080,92973,"2801 Timothy Mount Apt. 241 +Brianland, WI 27784-6301",2013-11-29 21:33:23,22:33:1c:e2:96:0d,cameron04@walsh.org,img/obama.jpg +Jason Jordan,370-46-6938,51906,"03391 Caroline Road +Port Emily, IL 89199-7287",1965-05-06 20:02:17,93:8b:10:c0:7f:5c,monica74@black-scott.com,img/obama.jpg +Andrew Fox,316-90-3989,50593,"4482 Steve Brook +Port Lisa, UT 74803-6822",1984-07-15 15:41:46,45:3a:db:1e:3e:52,dawsonmary@le.com,img/obama.jpg +Calvin Hall,690-52-4542,13676,"Unit 0341 Box 3413 +DPO AA 95794",1946-10-15 11:35:51,44:7e:49:be:9f:ba,coxedward@gmail.com,img/obama.jpg +Thomas Kelly,408-45-9609,89596,"USS Wallace +FPO AA 15452",1947-05-31 12:38:31,ab:99:42:c4:4e:05,thompsonbrandon@yahoo.com,img/obama.jpg +Gerald Rivera,832-35-6678,89943,"99675 Miller Mountains +Chrismouth, MS 57348-8523",1945-04-16 15:40:54,ed:16:41:df:f3:d6,kent57@yahoo.com,img/obama.jpg +Jonathan Nguyen,739-47-0116,25303,"903 Kayla Walks Apt. 544 +Michaelstad, HI 70269",1974-06-20 14:32:46,c1:37:0b:21:fd:11,henrybrenda@gonzalez-hernandez.com,img/obama.jpg +Craig Yoder,450-17-3818,34333,"910 Simpson Creek +North Scott, MT 67447-8160",1968-07-19 18:45:40,30:6a:ec:38:4b:3e,gkelly@yahoo.com,img/obama.jpg +Victoria Michael,526-26-6720,45021,"8420 Thomas Avenue +Allenshire, PR 35704-6077",1940-10-10 18:53:45,76:d1:52:f9:4e:23,ohamilton@macias.com,img/obama.jpg +Jennifer Vargas,718-48-6794,23280,"USS Navarro +FPO AE 80344",1920-01-02 21:56:35,43:41:02:4e:b7:53,sharon65@yahoo.com,img/obama.jpg +Michael Brown,182-20-6214,90780,"61017 Mccarty Canyon +Smithton, AK 82282",1972-01-13 08:45:51,6f:fc:d1:ef:68:90,douglasalyssa@hotmail.com,img/obama.jpg +Jeremy Young,751-22-5837,09686,"6405 Velasquez Radial Apt. 775 +Martinmouth, WY 83496-4522",1934-04-14 09:40:52,bb:4a:70:6f:ed:dc,owebb@hotmail.com,img/obama.jpg +Angela Thompson,618-39-7870,21147,"155 Mark Port Suite 395 +Lake Ryan, NV 38919",1950-09-23 06:57:00,05:95:04:fb:f2:89,andrew99@gomez-hill.com,img/obama.jpg +Zachary Fritz,361-56-3224,19203,"6122 Andrews Plains Suite 567 +Andrewville, MS 15651-7038",1957-03-04 21:08:09,b9:4e:4f:e0:3d:4a,pageautumn@gmail.com,img/obama.jpg +Mark Williamson,165-22-2244,24862,"79657 Elizabeth Villages Apt. 900 +Kathrynmouth, CO 54593",1959-12-18 16:46:58,89:ae:0e:60:ea:b3,christensenanthony@lara-jackson.net,img/obama.jpg +Daniel Price,505-86-2543,67925,"82868 Steve Squares +New Tanyaview, GA 24607-4941",1953-06-12 15:12:58,b4:5c:9d:4a:3f:e9,tayloramanda@yahoo.com,img/obama.jpg +Dean Michael,609-96-7623,92395,"06382 Garcia Plains Suite 792 +Mcmillanberg, CT 82579-2062",1964-08-24 01:58:16,de:19:71:7d:71:4e,hjackson@carlson.biz,img/obama.jpg +Sharon Price,707-41-1516,75177,"7258 Nicholas Trafficway +Tylerstad, MH 41987",1985-08-26 14:51:35,0c:1d:50:76:a9:67,huangjennifer@yahoo.com,img/obama.jpg +Nicole Valdez,607-48-6744,47340,"PSC 4776, Box 0769 +APO AA 12175",2003-12-12 03:36:15,92:78:d9:2e:a9:d3,raythomas@gmail.com,img/obama.jpg +Michael Nichols,193-99-4506,04338,"9918 Christie Mountains Suite 685 +Morrisstad, NJ 37008",1950-12-07 15:10:17,ff:27:73:b1:dd:75,bmarshall@hotmail.com,img/obama.jpg +Kristopher Kelly,038-29-0954,45330,"574 Graves Village Suite 406 +Brandonville, AR 52037-5949",1942-07-22 22:53:30,78:68:bc:a6:d2:11,james99@horton.com,img/obama.jpg +Tyler Skinner,079-53-9716,80801,"3667 Francisco Road Suite 592 +New Mary, AZ 48875-9131",1941-06-16 01:36:44,0c:d8:9b:ea:14:99,sandy10@garcia.com,img/obama.jpg +Randy Williams,547-17-0812,47716,"565 Brian Neck Suite 634 +West Evelyn, NE 55953-1720",1963-02-19 18:54:02,ea:a2:09:dc:00:a9,john02@yahoo.com,img/obama.jpg +Taylor Fuller,736-87-5047,40338,"5127 Thomas Port Suite 692 +Lake Peterton, MA 68744",1935-01-09 14:29:11,ea:8b:e8:1c:ba:e4,cruzsteven@contreras.info,img/obama.jpg +Julie Owens,129-63-4195,74078,"566 Marquez Forge Suite 548 +Port Alicia, PR 58014",1945-04-10 11:44:10,af:dd:9b:86:2b:f3,lanesteven@allison.biz,img/obama.jpg +Samuel Marshall,037-94-4589,06554,"753 Linda Extensions Suite 167 +Port Kylechester, ID 71575-6772",2015-07-27 09:26:45,15:37:5b:2b:4a:08,zyoung@yahoo.com,img/obama.jpg +Casey Zimmerman,370-30-4327,31273,"104 Leslie Road Apt. 404 +Evansborough, NH 15772-6439",2004-05-12 01:04:58,21:81:90:fb:f8:3f,desiree89@gmail.com,img/obama.jpg +Colleen Fuller,117-42-7007,80810,"222 Williams Greens +North Casey, AS 88859-9272",1991-06-22 18:25:10,5e:9b:95:e9:19:93,efields@smith.com,img/obama.jpg +Jillian Wallace,286-99-4373,07313,"4944 King Villages Apt. 461 +Stoneland, CO 62704-8211",1960-03-26 08:42:33,a6:7c:87:7d:aa:d8,madeline55@lynn-ponce.com,img/obama.jpg +Carolyn Powell,742-10-8109,17486,"1095 Hunter Avenue Apt. 314 +Randallmouth, OH 07547",1975-04-02 16:45:25,ef:da:a0:17:fe:8e,pamelasims@fowler-orr.biz,img/obama.jpg +Justin Chavez,693-63-9796,61120,"13776 Smith Road Suite 942 +Lisaburgh, NE 02800-4433",1979-07-31 00:33:09,af:24:e2:c3:de:66,nbutler@gmail.com,img/obama.jpg +Debra Bush,466-74-3071,62701,"5002 Hughes Camp +Lake Jason, NY 79774",1962-04-26 00:33:34,b2:72:1a:e6:53:6f,ashley91@jackson.com,img/obama.jpg +Steven Lee,328-20-2218,43771,"3975 Peter Knolls +Lake Christophershire, AL 87492-7205",1989-11-06 00:38:59,97:56:98:01:a0:2f,wallacemichael@george.com,img/obama.jpg +David Gutierrez,435-58-9726,41838,"Unit 0293 Box 4594 +DPO AA 71939-6844",1976-06-10 16:34:03,3b:d0:ca:02:10:d2,kgreen@hotmail.com,img/obama.jpg +Wendy Peck,364-84-2194,42001,"99191 Flores Drives +Louistown, MA 09044",1944-09-15 23:14:09,80:0e:90:df:58:4a,darlene22@lane.com,img/obama.jpg +Calvin Wolf,111-70-4507,21965,"Unit 8423 Box 3035 +DPO AA 25740",2017-01-01 18:47:57,a4:37:57:b8:bd:f2,ruizmichelle@oconnell-bradshaw.biz,img/obama.jpg +Joseph Martin,053-39-0353,08124,"69600 Jill Ports +New Heathershire, MI 53709-1514",1937-08-04 23:54:24,b2:2f:9b:03:dd:c7,pughdaniel@yahoo.com,img/obama.jpg +Laura Rivera,051-09-1256,07698,"73966 Meadows Knoll +Hawkinston, NJ 71556",1985-03-28 08:14:18,65:17:6b:0f:17:a1,kevin03@jackson.com,img/obama.jpg +Andrew Jacobs,166-28-5249,62912,"Unit 4595 Box 1599 +DPO AP 72648-9521",1973-01-06 05:25:16,61:b5:2b:d4:a3:58,jdavis@gmail.com,img/obama.jpg +Aaron Rose,586-85-1628,35756,"523 Allison Ports +West Kathryn, CA 98628-3589",1985-08-22 17:02:26,6c:97:5c:c5:de:59,danielle63@yahoo.com,img/obama.jpg +Lauren Hunt,500-39-6245,39667,"20935 Linda Radial Suite 294 +Port Brittany, AZ 80292-8799",1948-05-15 20:48:36,48:10:81:75:e6:8d,logancharles@yahoo.com,img/obama.jpg +Brittany Combs,578-88-5478,74691,"92553 Larry Bridge +New Ronaldburgh, MI 77144",1990-08-21 20:39:54,08:28:00:85:46:e9,smithbrenda@yahoo.com,img/obama.jpg +Elizabeth Rodriguez,428-32-1572,29642,"7458 Christina Forks Suite 672 +Kyleborough, WI 04854-2637",2000-02-08 05:14:27,07:ed:35:07:6a:b0,amyosborne@hotmail.com,img/obama.jpg +Craig Cameron,172-50-6966,55235,"77003 Massey Corner +East Juliebury, AZ 43176-2151",1983-10-23 07:28:20,92:9e:f2:34:20:cb,cheryl33@myers-bennett.biz,img/obama.jpg +Erik English,423-61-7883,01074,"6154 Andrew Light Apt. 568 +Jeremiahberg, CA 15412-3065",1956-04-26 06:35:11,15:82:b9:ef:f3:4e,cynthia67@hotmail.com,img/obama.jpg +Timothy Young,239-09-1573,45124,"420 Richard Throughway Suite 291 +Evanberg, MP 89567",1969-04-30 16:39:16,7b:66:0f:1e:d7:07,nicholasmiller@gmail.com,img/obama.jpg +Melissa Edwards,204-95-0249,35426,"843 Bates Expressway +Lake Amanda, VA 68176",1984-02-04 17:33:46,74:85:e9:fc:08:f9,cindyross@white-harris.com,img/obama.jpg +Michael Romero,795-85-0597,54645,"295 Megan Turnpike Suite 153 +South Christopher, NY 10204-5924",1990-09-27 03:21:22,ab:35:fa:bf:0c:03,ibeltran@yahoo.com,img/obama.jpg +Alison Rivers,490-77-7447,32180,"PSC 4496, Box 7365 +APO AP 70164",2001-05-09 16:49:42,00:1d:45:8d:88:0c,loveamber@bentley-grant.com,img/obama.jpg +Ryan Ingram,290-49-8704,47698,"15989 Valerie Turnpike Suite 213 +West Steven, ND 42300-3901",1980-11-08 12:54:56,8e:92:4b:dd:cf:8b,lpham@rios.com,img/obama.jpg +Alison Jones DVM,712-31-0540,00586,"46590 Steven Cove +Angelton, UT 99197",1938-06-07 18:43:04,81:6e:2e:71:6a:47,edwardray@yahoo.com,img/obama.jpg +Jessica Baldwin,512-98-6668,04550,"05358 Alan Overpass Suite 389 +South Latoyashire, NJ 75902-7743",1942-03-22 19:59:45,e1:c8:44:27:a4:60,jvillanueva@yahoo.com,img/obama.jpg +Nicholas Johnson,546-50-0534,33063,"4285 Wilson Springs +Jacobmouth, VI 12211-6424",1949-08-14 06:19:08,05:cc:5f:ae:76:c8,amyspears@johnson.net,img/obama.jpg +Katelyn Russo,029-77-2632,29406,"PSC 3408, Box 5935 +APO AA 01734-5068",1956-08-03 18:21:12,34:f3:e9:01:64:c4,cbowman@hotmail.com,img/obama.jpg +Janet Mccormick,829-91-0658,93784,"525 Jennifer Views Suite 864 +New Joanneside, PA 17334",1944-05-07 12:50:23,4d:c2:8a:00:96:55,miranda07@gmail.com,img/obama.jpg +Jennifer Sparks,558-20-1863,57434,"378 Tiffany Plains +Port Kelsey, AL 77739",1953-06-28 02:38:24,c6:34:76:21:14:dd,andredavis@yahoo.com,img/obama.jpg +Jacqueline Flores,670-41-4757,03170,"05170 Oliver Coves +Lake Patricia, DE 24334",1946-04-03 07:28:06,f6:fa:fa:b6:0c:be,parrishsusan@gmail.com,img/obama.jpg +Ryan Jennings,165-16-1427,10739,"7348 Frye Orchard Apt. 474 +North Mia, IN 10390",1966-10-05 15:03:32,a3:b9:1f:31:2c:21,brooke51@johnson.net,img/obama.jpg +Christopher Ward,445-79-7488,92951,"292 Howe Tunnel Apt. 184 +Craighaven, PA 45228",1941-05-10 02:26:24,63:02:84:97:70:e6,harrismichael@hicks.com,img/obama.jpg +Kristopher Anderson,872-89-1228,02470,"57327 Daniel Forge +Rachelport, NM 79841-9095",2008-01-15 16:45:24,05:76:cf:64:86:9b,xramos@bentley.com,img/obama.jpg +Reginald Fowler,558-64-7376,58846,"5358 Melissa Land +South Victor, UT 53691-2232",1950-07-01 22:51:18,e0:44:c9:6c:51:38,austinkaitlin@schroeder.com,img/obama.jpg +Christopher Foley Jr.,345-37-9919,70069,"4145 Susan Club Apt. 725 +Lewisburgh, WY 53236",2009-05-10 21:43:31,38:f2:99:14:09:9e,williamthomas@hotmail.com,img/obama.jpg +Shirley Harvey,565-72-8149,40032,"06389 Alicia Lane +Port Gregory, FM 22578-9857",1992-12-07 18:30:40,62:6f:db:1c:11:e3,amandagarcia@hotmail.com,img/obama.jpg +William Gibson,487-62-8300,31234,"94631 Guerra Pike Apt. 744 +South Kayla, PW 58027-8849",2013-05-14 02:11:17,06:50:13:59:01:99,benjamin81@collins-richardson.com,img/obama.jpg +Adam Doyle,794-97-7750,02696,"18690 Mitchell Land +Lake Danielport, CT 77667-7551",2001-08-02 08:28:13,77:f2:6f:9f:7a:2a,maysjeffery@yahoo.com,img/obama.jpg +Patricia Bowen,356-30-4914,57466,"8936 Gregory Rest Suite 391 +Port Carla, VT 09878",2012-08-19 03:16:43,93:b6:81:3a:19:59,tanner19@hotmail.com,img/obama.jpg +Brett Richardson,533-42-2347,42112,"38230 Robert Glen Apt. 418 +North Joseland, VA 97416-8250",1929-05-13 18:10:55,f6:9c:f4:de:83:19,ygarcia@garcia-west.com,img/obama.jpg +Dr. Debra Roberts,721-38-2025,52761,"PSC 8783, Box 6549 +APO AE 70231-4785",2013-12-29 07:47:55,e5:09:88:50:48:20,dylanbrooks@leonard.com,img/obama.jpg +Shelby Phillips,733-60-1463,66378,"430 Watson Ridges Apt. 212 +Port Jeremy, NH 97034-4538",2005-05-15 01:32:12,22:7a:e4:a2:14:20,shaun62@gmail.com,img/obama.jpg +Bradley Bridges,147-89-3618,60536,"Unit 2202 Box 8007 +DPO AE 22612-3640",1923-08-30 19:58:41,b8:6f:2c:b0:d7:05,palmerhenry@harrell.com,img/obama.jpg +Lisa Saunders,621-74-2848,60172,"466 Thomas Mall Apt. 821 +Aprilport, NV 50717",1927-03-27 05:02:37,9e:55:97:34:80:25,joshuavaldez@owens.org,img/obama.jpg +Jacob Trujillo,595-23-9742,05039,"86464 Melanie Center +Loriborough, MO 47184-4233",1946-11-07 18:18:12,0a:50:d0:74:25:ba,jacksonkristin@hotmail.com,img/obama.jpg +Gary Morris,583-99-1425,90092,"89997 Heather Plaza Suite 180 +New Dannybury, RI 26102-5462",1980-10-16 23:06:54,29:d3:17:7a:d3:37,vwilliams@yahoo.com,img/obama.jpg +Luis Nelson,249-85-0295,06210,"123 Daniel Avenue Apt. 818 +Melindaton, KY 42490",2014-10-24 15:05:22,67:80:f8:ed:95:ba,maddentheresa@yahoo.com,img/obama.jpg +Amanda Wright,723-86-5224,06600,"2855 Mcconnell Stravenue +Lake Molly, MP 60576",1943-12-22 17:18:54,99:8e:67:e8:b1:4e,clarkamy@hotmail.com,img/obama.jpg +Heather Nichols,332-55-6160,09062,"066 William Valley +Williamsbury, NV 18465",2002-09-07 02:22:09,bd:3d:6e:9c:ef:98,mirandafernandez@gmail.com,img/obama.jpg +Gregory Perez,843-17-7383,46165,"953 Dorothy Island +West Stephanieton, ND 52331-3143",2003-03-09 17:29:52,39:21:10:0b:4c:ab,ricardo56@gmail.com,img/obama.jpg +Phyllis Galvan,005-10-2093,92551,"5646 Theresa Ferry Suite 129 +North Robert, MH 37858",1972-10-04 23:22:29,3c:98:b1:01:b0:2a,zthompson@wright.com,img/obama.jpg +Patricia Griffin,864-50-5874,19655,"39424 Matthew Mission Suite 021 +South Omar, GU 42388-8410",1970-10-06 08:44:25,88:ef:e9:fa:90:bd,christophercline@yahoo.com,img/obama.jpg +Robert Hall,225-24-3902,70506,"7003 Jones Brooks Apt. 365 +Ochoabury, VI 90327-9360",1959-11-29 17:00:44,3b:b0:04:e1:8d:79,erin05@gmail.com,img/obama.jpg +Rachel Flores,273-18-6644,95182,"37782 Adam Hill Suite 412 +Frazierton, VA 14573-4229",1926-07-28 03:00:08,21:ab:bc:73:81:8f,rebecca42@yahoo.com,img/obama.jpg +Patrick Hill,689-39-1124,76013,"4321 Marsh Shore Apt. 461 +Franciston, NV 66543",1993-03-25 10:27:24,31:66:41:2f:5f:02,jamie13@gmail.com,img/obama.jpg +Derek Sanders,218-60-5325,40370,"659 Burgess Loop +Peggyshire, CT 99937",1925-03-07 14:36:17,1d:48:2b:9f:56:f0,lcherry@haney-lopez.net,img/obama.jpg +Heather Gomez,239-60-7616,60954,"84952 Amanda Motorway Apt. 587 +Lake Kimberlytown, NM 11310-7738",1961-02-14 11:26:09,f5:19:57:7e:cd:9d,timwest@burch.com,img/obama.jpg +Brian Rodriguez,240-81-7028,74773,"5392 Nicholas Unions Apt. 294 +South Angela, CT 56987-9852",1954-10-18 16:03:03,03:20:c8:8e:35:ec,kristopher95@yahoo.com,img/obama.jpg +Rhonda Martinez,195-74-1401,49715,"24536 Brianna Skyway +Webbside, VA 78452",1968-04-01 17:23:26,4f:60:16:5f:90:f6,kiddkelly@gutierrez-petersen.biz,img/obama.jpg +Meghan Mckenzie,151-33-9118,57835,"50687 Javier Pines Apt. 134 +Richardsfurt, WA 73133-3237",1938-06-14 10:16:33,44:0f:0c:ac:b6:f6,rodriguezmariah@hall-blake.biz,img/obama.jpg +Ryan Andrews,791-27-9255,37205,"096 Johnson Ports +Juliefort, LA 27402",1922-08-18 20:38:15,6a:c1:11:f0:0a:47,lori74@hotmail.com,img/obama.jpg +Martin Solomon,483-28-5113,66137,"24343 Nicole Islands Apt. 757 +Garretttown, PW 34494-7325",1921-06-03 21:56:55,0c:d0:46:79:c7:26,cory73@hotmail.com,img/obama.jpg +Brandon Simmons,383-54-2969,81014,"21226 Hunter Parkway +East Crystalbury, MA 53243-3745",1928-10-03 14:08:48,e5:fc:5e:80:a0:a4,lynn26@gmail.com,img/obama.jpg +Dylan Ray,096-34-3329,63297,"9816 Sherry Ramp +Port Kellyland, NM 31308",1943-02-25 21:44:19,19:d4:05:e3:48:b9,lindseyali@hotmail.com,img/obama.jpg +Jeremy Jackson,319-99-2585,89738,"PSC 0231, Box 8936 +APO AP 39043-1955",1949-08-05 14:40:07,fd:72:a7:1c:bc:64,pmunoz@bradshaw-sanders.com,img/obama.jpg +Mark Fox,888-09-2335,53746,"Unit 6401 Box 7235 +DPO AP 01593-1510",1988-05-19 11:46:05,6f:bc:1b:ee:3d:bb,reneeleonard@lindsey.com,img/obama.jpg +Shannon Nichols,446-33-5773,72347,"359 Patel Turnpike Apt. 038 +Port Jenniferfort, KS 20239-8239",1962-06-07 12:45:49,f8:c3:18:6b:ae:4b,nicholas96@hotmail.com,img/obama.jpg +Erin Morris,431-64-8230,64449,"342 Amanda Island Apt. 983 +Jessechester, ME 39168-3139",1979-11-04 07:45:51,fe:04:ec:b2:15:26,louis63@evans.com,img/obama.jpg +Heather Schneider,086-90-5952,62434,"Unit 9838 Box 2348 +DPO AP 85521-2366",1951-01-17 05:32:39,1a:2b:38:df:7e:0c,wardjames@hotmail.com,img/obama.jpg +Christopher King,177-33-5216,50934,"2307 Sandra Hills Suite 536 +Port Roger, NH 64414-5572",2015-12-09 18:08:32,3a:21:b3:a0:80:90,janemoses@howell.info,img/obama.jpg +Mrs. Hannah Pena DDS,215-38-5991,13413,"5149 Amy Springs Apt. 342 +Port Heatherton, ID 05085-7234",1958-01-15 15:55:48,ee:e0:6d:17:70:2b,ryanharrington@hotmail.com,img/obama.jpg +Brandon Stanley,416-11-7069,09475,"150 Tracy Curve +Kendraborough, OK 19287",1993-09-18 23:21:15,cb:7a:5d:09:48:50,heidi49@watson-martin.com,img/obama.jpg +Terry Stewart,797-73-3668,78494,"916 Wright Fall +Lake Kennethland, OR 08889",1954-07-15 13:34:09,7c:4d:0d:77:a6:49,stephen48@farmer.com,img/obama.jpg +Jenna King,171-45-5258,34936,"Unit 9806 Box 3625 +DPO AP 79312",1954-06-23 09:37:50,6c:97:5e:5d:84:3e,fred05@noble-lewis.com,img/obama.jpg +Paula Warner,394-69-6782,39937,"947 Lisa Circles +Port Tiffanymouth, ID 99699-1531",1917-08-21 02:07:12,d5:71:89:39:f8:63,ncarson@stanley.com,img/obama.jpg +Julie Williams,082-30-2211,11719,"047 Green Parkway +New Timothyview, NV 39184-1332",1940-05-20 11:53:12,39:58:1f:72:57:a8,kellyluna@gmail.com,img/obama.jpg +Catherine Cox,318-05-8264,42153,"87651 Nathan Key +West Brittanychester, TN 69486-8145",2014-01-07 12:45:48,82:83:03:ca:51:c8,owhitaker@white.com,img/obama.jpg +Kayla Jackson,475-89-1299,64054,"2947 Wilson Circles +South Kimberlyland, PR 11971-2310",1951-01-10 08:27:50,2f:36:7c:90:1d:6b,thompsonanna@hotmail.com,img/obama.jpg +Carlos Foster,451-21-8321,46735,"USS Griffin +FPO AP 98765-3820",1986-03-25 17:36:12,4b:20:f5:cd:52:7b,rodgerslarry@yahoo.com,img/obama.jpg +Lynn Williams,212-98-9252,17076,"06115 Jennifer Skyway Apt. 930 +Hallville, PR 65848-4954",1924-04-17 22:40:04,55:cf:f3:30:38:f0,megan33@hotmail.com,img/obama.jpg +Michael Good,176-06-0817,11390,"267 Donald View Suite 365 +Mcdonaldhaven, AK 02516",1953-02-25 04:16:16,d4:07:7c:a6:e4:28,woodwardjimmy@hotmail.com,img/obama.jpg +Jane Morse,306-17-3046,04158,"971 Carr Roads Suite 210 +Port Eddiefurt, PR 49647-9625",2001-07-23 16:57:25,dd:a3:ed:4f:a4:86,hyoung@hotmail.com,img/obama.jpg +Zachary Ward,374-08-1059,49024,"76618 Garner Tunnel Suite 528 +Melissaton, MN 94902",1969-07-29 14:15:52,06:10:eb:fc:82:c8,ambersanchez@gmail.com,img/obama.jpg +Darius Gibbs,280-03-1720,58850,"02302 Christina Haven Apt. 229 +Lake Lisa, FM 03334",2001-04-14 22:47:49,b9:f3:18:e3:5d:d0,matthewguerrero@flynn.com,img/obama.jpg +Travis Rivera,762-77-7803,00687,"08320 Thomas Rapid +New Kaitlynhaven, MO 59457",1961-02-09 23:01:13,80:49:01:c2:c3:63,chenbenjamin@yahoo.com,img/obama.jpg +Caleb Anderson,727-77-4811,67139,"8199 Benjamin Garden Apt. 372 +Lake Andrewville, TN 62063",1921-06-22 03:22:05,c1:1c:c6:f3:a8:78,codyscott@ramirez.net,img/obama.jpg +Nicole Carter,341-47-1239,81745,"272 Allison Plains Apt. 158 +South Holly, GU 38525",1962-09-28 13:11:14,45:fb:11:6a:8e:25,fosborn@gmail.com,img/obama.jpg +Dwayne Jones,687-43-3394,27393,"35594 Jonathan Bridge Apt. 166 +South Ashleyfurt, ID 31202",1970-01-21 05:49:20,bd:83:72:27:63:d3,francojennifer@yahoo.com,img/obama.jpg +Timothy Underwood,084-44-6402,71136,"428 Alexa Mount Suite 407 +Allenview, NJ 35511",1983-02-16 10:00:35,7e:f2:13:a2:48:f1,fishermelissa@gmail.com,img/obama.jpg +Mark Washington,741-79-4865,09416,"52962 Hart Inlet Suite 710 +East Johnbury, FL 79122-3024",1926-02-04 05:06:09,cd:1b:e4:93:b7:90,karen24@gmail.com,img/obama.jpg +Andrew Sullivan,153-96-2065,42744,"5178 Joseph Hill +East William, KY 25175",1959-04-01 21:16:09,dc:28:ab:97:8d:95,pwhitehead@hotmail.com,img/obama.jpg +Donald Griffin,357-51-5616,51728,"07650 Gregory Shoals Suite 567 +West Jasonfort, AL 72393",1994-12-11 04:16:31,bc:cf:a9:c8:15:7d,boydchristine@gilmore.com,img/obama.jpg +Rebecca Cunningham,191-11-1825,51245,"670 Peter Islands Apt. 488 +Deniseland, SD 55046",1925-09-22 19:41:04,8e:f8:b5:6c:29:bf,adrian96@taylor-phelps.com,img/obama.jpg +Ashley Howell DDS,394-62-5669,92276,"42023 Andrade Estate +Mullenbury, MN 18173",1942-08-06 01:25:36,3f:16:b2:16:ca:d8,jenniferbrown@yahoo.com,img/obama.jpg +Mrs. Madison Harrington,801-85-2455,52594,"86872 Jeffery Stream Apt. 252 +West Carolyn, AR 54855",2017-04-29 07:26:41,ad:8d:e8:b8:6c:b1,mchase@yahoo.com,img/obama.jpg +Angela Collins,651-98-3689,30515,"05389 Jacob Ranch +Luistown, VT 82392-8712",1961-06-13 00:42:34,5a:0b:14:06:69:d3,jessicahays@powell.net,img/obama.jpg +Kelly Smith,515-98-3442,56845,"403 Jackson Dam +Natalieland, VT 84806",1993-03-20 21:40:50,07:23:0e:3d:5e:31,cwilliams@yahoo.com,img/obama.jpg +Dr. James Hines,002-28-9739,89290,"262 Mckenzie Course Apt. 298 +East Jaredshire, ME 36444",1972-08-04 21:10:17,a4:66:f0:b5:08:b5,april04@rodriguez.com,img/obama.jpg +Christopher Dixon,657-58-3771,03663,"47111 Stephanie Locks +Port Lori, OK 68728",1974-09-23 22:10:39,4e:52:59:27:a7:68,lorraine23@hotmail.com,img/obama.jpg +Julie Acosta,533-22-1340,04676,"Unit 2816 Box 3925 +DPO AA 32843",1988-01-13 01:17:31,1a:25:22:94:06:fe,robertknox@deleon.com,img/obama.jpg +Laura Martin,702-02-0793,58598,"36200 Brent Park Suite 079 +Griffinborough, MD 43708",1935-10-01 19:49:46,bf:b7:9d:a6:8b:81,kaylee62@yahoo.com,img/obama.jpg +Zachary Carter,799-68-2382,24309,"905 Laura Gateway +Gabrielfurt, SC 37933-3644",1918-11-08 06:50:19,04:43:c2:d6:03:0b,elewis@yahoo.com,img/obama.jpg +Jose Walker,792-88-5735,27563,"99636 Carolyn Wells +Brettview, NE 96282-9470",1918-02-06 03:48:11,1e:a9:9f:3b:af:44,tracykey@dawson.com,img/obama.jpg +Robin Martinez DDS,223-03-6291,97294,"174 Russell Avenue Suite 114 +East Linda, VI 60026-8174",1950-06-24 04:24:47,8f:9a:93:da:2b:ff,stevenjones@hotmail.com,img/obama.jpg +Alexis Flores,186-60-5619,97142,"158 Matthew Gardens +New Andrea, LA 64331-6388",2011-12-30 14:38:31,5c:d5:1f:8a:0a:4b,jacob16@hernandez.biz,img/obama.jpg +Evan King,821-05-5221,40858,"31019 Jason Heights Apt. 349 +South Dannyport, TX 32765",1919-09-13 19:52:00,96:d8:58:60:52:1c,pcampos@hotmail.com,img/obama.jpg +Jacqueline Jackson,420-93-2028,95084,"32303 Juan Freeway +Port Ariel, ME 67691",1937-05-15 18:01:36,35:93:db:8c:2d:0d,qmartin@gmail.com,img/obama.jpg +Crystal Rose,375-14-3985,96827,"3636 Harvey Circle +Simstown, GA 70023",1994-05-27 19:51:20,15:0e:44:92:60:46,melindakirby@cabrera.com,img/obama.jpg +Victoria Stevenson,614-19-4742,74148,"762 Williams Estates Suite 044 +Williamville, SC 80265",1976-07-06 11:51:28,68:2c:21:e4:3d:aa,davidalexander@thornton.com,img/obama.jpg +Michelle Garza,011-69-3574,16933,"10536 Byrd Well +Kellychester, FL 32666-4986",2015-12-29 05:49:15,42:d7:90:53:7a:c8,wruiz@gmail.com,img/obama.jpg +Debra Guerrero,413-18-3842,74265,"755 Martin Station +Mooreview, WI 11194-5238",1969-10-08 16:36:51,a2:33:da:49:15:1b,vazquezstephanie@hotmail.com,img/obama.jpg +Jorge Dorsey,410-73-8359,50218,"0728 Andrews Landing Suite 343 +North Rodneyside, MN 25561",1951-11-20 20:16:21,95:cd:a9:90:29:d4,baldwinbradley@gibson-hunt.info,img/obama.jpg +Elizabeth Hudson,533-96-1180,40787,"3386 John Fork Apt. 102 +Amyport, NE 47002-2516",1929-02-23 05:22:38,92:d0:5d:f8:72:17,mathisduane@rowe-johnson.info,img/obama.jpg +Michelle Lawrence,100-77-4364,27119,"57268 Hill Plain Suite 956 +Brendaburgh, LA 23017",1969-07-23 01:33:46,64:76:27:11:a7:91,peterspeter@allen-gomez.com,img/obama.jpg +Emily Beasley,843-73-6965,84064,"08078 Tate Shoal +South Lauren, IL 68050-3006",1939-11-13 05:41:27,25:0c:18:74:f1:1f,laurawhite@hutchinson.biz,img/obama.jpg +Sara Davis,479-22-3501,64559,"1977 Macias Groves Suite 297 +South Lauren, VT 42665-8064",1949-08-12 07:46:39,ec:53:be:6c:9a:38,elliottbrent@moreno.com,img/obama.jpg +Nicole Kim,880-49-8868,63629,"72299 Christopher Club Apt. 084 +North Laura, MH 67817-1932",1943-09-15 20:17:16,a9:5f:39:d2:36:33,holson@torres-coleman.com,img/obama.jpg +David Benson,085-32-9028,94555,"506 Vasquez Hills +Solomontown, DE 82021-6995",2015-08-05 05:38:54,49:11:e4:42:c3:7a,zfox@gmail.com,img/obama.jpg +Erica Montoya,697-30-9987,69493,"4284 Molly Grove +Brandonton, FL 72856-2380",1921-06-30 00:09:08,64:11:39:ec:76:11,andrew56@yahoo.com,img/obama.jpg +Paul Lopez,566-48-1794,15809,"260 Tracy Divide +East Chadton, SC 70840-0339",2005-12-22 21:52:23,81:62:af:05:a8:8b,benjaminaustin@hotmail.com,img/obama.jpg +Chelsea Dunn,553-24-1300,14165,"USNV Krause +FPO AA 07572",1922-03-09 05:13:25,d2:2a:76:21:0f:c5,phess@stout.com,img/obama.jpg +Lisa Morris,190-34-5493,09407,"707 John Orchard +East Davidtown, DC 85904-4460",1993-04-17 01:23:44,73:91:76:61:a2:d5,pamelasanchez@yahoo.com,img/obama.jpg +Deborah Vaughan,124-27-6109,96764,"Unit 0112 Box 1968 +DPO AA 91623",1970-03-20 03:36:58,5d:cc:76:01:01:a5,nsmith@cohen-deleon.info,img/obama.jpg +Dana Mckay,179-38-5551,64700,"671 Tina Fords +North James, PW 54003",1959-11-30 10:35:44,3c:e6:be:b2:9b:80,moorethomas@hotmail.com,img/obama.jpg +Jeremy Simpson,469-27-8634,79956,"521 Rachel Manor Apt. 660 +East Sarahshire, NH 94999",1989-02-14 07:50:35,70:e4:b5:39:13:58,odaniel@torres.com,img/obama.jpg +Elizabeth Holmes,784-29-8597,41142,"91536 Le Islands Apt. 668 +South Michelle, TX 48343",2011-06-27 09:26:59,fb:c3:29:b0:62:23,michael05@hotmail.com,img/obama.jpg +Megan Baird,241-68-9466,65539,"18433 Tina Burgs Suite 062 +Lake Katrinafurt, PR 16011",2013-04-29 23:06:41,97:fd:5c:e5:52:2a,ycarpenter@gmail.com,img/obama.jpg +Justin James,777-17-0209,68960,"805 Kevin Rapid Suite 250 +Lake Raymond, FL 26482-2405",1948-09-23 18:12:23,23:6c:7c:ca:c8:08,wpeterson@yahoo.com,img/obama.jpg +Belinda Jackson,080-02-3283,66365,"Unit 5505 Box 7737 +DPO AA 09794-8531",1987-12-29 00:51:47,f1:f5:23:d9:ef:ff,brianwilliams@gmail.com,img/obama.jpg +Megan Stewart,022-81-7948,83594,"86932 Caroline Landing +East Adamchester, SC 42495-9661",1999-12-26 05:12:06,1f:1e:63:22:28:05,donnaspears@yahoo.com,img/obama.jpg +Sandra Smith,056-40-4452,59149,"8290 Michelle Inlet Suite 313 +New Marialand, CT 47323-7059",1965-03-26 12:20:46,54:d3:67:4c:45:f8,thomas66@gmail.com,img/obama.jpg +Stephen Stone,427-55-0352,84858,"07445 Joy Square Apt. 392 +Lake Malik, VT 42893",1971-07-02 00:23:19,87:2d:25:4d:68:ca,matthew62@schmidt-guerra.org,img/obama.jpg +Joshua Price,598-89-7847,41512,"USNV Hart +FPO AE 85212-1188",1995-01-26 08:58:25,b1:ea:80:88:f2:ed,spencer12@gmail.com,img/obama.jpg +Susan Riley,439-95-8414,23374,"0661 Heather Pike Suite 946 +Jenniferview, AS 54031-9420",1921-06-07 23:57:50,17:41:52:df:fa:f8,kristinyoung@gmail.com,img/obama.jpg +Charles Young,100-73-6908,34783,"Unit 1254 Box 8026 +DPO AE 12924-1173",1938-02-07 02:39:15,87:56:59:a4:96:ca,muellerchristopher@wood.org,img/obama.jpg +David Martinez,317-24-4702,77059,"572 Hayes Field Suite 874 +Lake Jessicaville, SD 22904",1937-02-27 17:45:08,e8:92:93:ce:6b:2a,adamdunlap@bird.com,img/obama.jpg +Linda Soto,789-56-6217,91544,"20888 Phillips Mission +Jonesland, FL 96002-8908",1990-01-05 22:19:33,22:2e:63:cb:ac:b7,sandra15@hotmail.com,img/obama.jpg +Alyssa Salas,572-22-8948,96282,"USS Moore +FPO AA 35398-1066",2006-04-18 16:49:32,2b:2f:8e:3f:74:73,scottfoster@hotmail.com,img/obama.jpg +Amanda Rios,641-02-9795,67797,"81230 Thomas Street +New Tinaside, MO 24870",1991-07-26 18:07:42,7f:6a:44:6b:c0:89,jeffreycooper@hotmail.com,img/obama.jpg +Anthony Jefferson,492-34-1915,59155,"75456 Woodward Drive +Barbaramouth, SC 43559-0068",1925-05-05 08:15:52,ce:b0:18:50:32:7a,hamptonbradley@hotmail.com,img/obama.jpg +Jeffery Smith,380-74-8803,74402,"486 Olivia River Apt. 254 +South Christopher, MN 21486",1926-03-25 16:25:33,cf:d7:15:18:61:80,jennifer59@butler.com,img/obama.jpg +Mary Martinez,047-71-3675,56993,"221 John Terrace +Moorechester, FM 52742",1932-11-02 01:25:58,b4:09:e1:42:1d:db,juliagonzalez@gmail.com,img/obama.jpg +Mary Ray,001-93-5811,48217,"45051 Sandra Well Suite 835 +East Daisyfort, KS 19097-4955",1922-09-11 22:03:17,3e:73:d8:c2:36:ca,sandra76@gmail.com,img/obama.jpg +Kevin Patel,159-65-5905,43933,"61081 Steven Streets Apt. 574 +Joetown, NE 83898-6252",2001-08-05 07:59:35,1c:0a:3e:19:48:57,zcunningham@gmail.com,img/obama.jpg +Brent Kelly,264-38-4543,24394,"512 Crystal Mountain Suite 465 +North Derekview, DC 63163-2803",1984-08-27 11:04:56,17:12:a0:8d:32:16,james48@greer.com,img/obama.jpg +Michael Rodriguez,828-41-1700,34337,"972 Julie Lakes Suite 118 +West Christopher, KY 27984-1255",2004-07-23 08:45:20,9d:6c:88:5c:a7:c4,mark86@morgan.com,img/obama.jpg +Catherine Short,436-57-4420,95660,"1122 Charlene Crest Suite 331 +Jesseton, ID 14212-6621",1982-11-24 01:08:15,d6:9d:81:6d:dd:9a,pageshane@hotmail.com,img/obama.jpg +Michael Fisher,299-49-8073,36263,"91557 Duke Haven Suite 861 +Michaelport, PW 16097-2244",1972-02-14 23:15:22,01:d2:05:98:84:a2,adamsjennifer@yahoo.com,img/obama.jpg +Kelly Holloway,007-28-3035,32262,"5751 Bruce Isle +New Philliphaven, FM 59153-0703",1933-09-08 21:14:42,a3:50:93:e4:5f:9e,penacody@yahoo.com,img/obama.jpg +Katherine Medina,737-65-0191,22977,"6689 Warner Hollow +East Billyhaven, VA 60181-2732",1961-12-07 23:01:28,d3:50:5e:b6:b1:70,dmurray@henry.com,img/obama.jpg +Veronica Hernandez,321-60-9813,81444,"34422 Shane Center +Lake Zacharyborough, MH 31818",1928-12-10 12:35:40,97:55:fd:13:56:a0,christopherhanson@hotmail.com,img/obama.jpg +Jeremy Thomas,855-49-9359,27868,"1223 Karen Drive +Emilyfort, MO 19962",1970-07-06 21:46:36,53:8f:bd:9e:f6:8f,alice33@figueroa-wright.com,img/obama.jpg +Stephen Hutchinson,218-20-6655,73818,"443 Hess Keys Suite 795 +Micheleborough, MP 48132",1924-06-17 01:27:30,c7:ef:8d:03:de:16,barrjames@frost.com,img/obama.jpg +Mark Cook,399-30-7396,44321,"69227 Cindy Haven +Douglasberg, WV 04606-2219",1968-05-26 21:06:26,2f:ef:0f:3f:51:42,morgan57@parker.com,img/obama.jpg +Jeremiah Vaughn,803-63-4272,24194,"PSC 5101, Box 6236 +APO AE 73124-9098",1961-10-10 13:28:50,c4:a1:d0:3b:25:ef,huangjennifer@hernandez-lee.com,img/obama.jpg +Evan Hall,715-18-6404,83833,"5403 Heather Wall Suite 970 +Johnsonbury, GA 23096-7575",2000-06-08 01:48:58,ba:2c:78:9f:12:46,dgentry@yahoo.com,img/obama.jpg +Clinton Mitchell,838-74-9754,60023,"1226 Colin Court +South Carol, UT 77013",1988-02-26 12:05:11,78:ff:89:42:9c:99,richardmedina@hotmail.com,img/obama.jpg +Margaret Knight,554-60-6416,22795,"PSC 2222, Box 9358 +APO AE 11030-5899",1982-10-05 23:41:33,d0:e7:80:20:63:0a,ann40@levy.biz,img/obama.jpg +Micheal Summers,895-89-6796,87013,"Unit 5114 Box 2526 +DPO AA 55337",1934-08-19 17:46:28,31:ff:92:a4:04:37,nancy58@hotmail.com,img/obama.jpg +Lindsey Little,838-26-0795,92234,"6197 Lewis Stravenue Suite 285 +Ayersside, KY 77677",1932-12-07 02:10:30,db:cc:8a:d9:05:26,patricia50@yahoo.com,img/obama.jpg +Elizabeth Gibson,782-35-2000,76670,"80922 Angela Pike Apt. 522 +Frankchester, OH 19644-3256",1959-05-21 01:43:14,71:da:4c:f2:1c:d7,kaylaschmidt@romero-costa.biz,img/obama.jpg +Renee Howe,030-93-1951,98365,"7355 Crane Common Apt. 957 +Dukemouth, MH 16952-7532",1983-08-23 23:44:51,c4:2a:77:f8:26:78,jessica57@perez.info,img/obama.jpg +Nicholas Garrison,573-50-1539,54545,"271 Ford Camp Apt. 352 +Tuckerberg, IN 15789",1971-10-16 00:53:29,b0:84:2e:2a:cf:09,ashley18@king.net,img/obama.jpg +Erica Hall,367-46-6185,28422,"5437 Karla Plaza +Port Benjamin, AK 52009",1939-01-13 18:16:17,b0:11:eb:55:79:55,daniel21@yahoo.com,img/obama.jpg +David Meyer,113-12-2689,30283,"697 Harris Port +Port Jennifer, MS 21815-0498",1921-02-22 23:45:34,88:b7:3e:87:43:c8,paulgutierrez@gmail.com,img/obama.jpg +John Vargas,116-13-2005,65365,"41242 Renee Rapids Suite 462 +South Joshuaton, CO 40520",2012-10-07 21:42:05,56:e5:d9:7b:6f:41,mthomas@gmail.com,img/obama.jpg +Jose Perry,323-25-2888,52371,"04913 Long View +New Randyport, PA 20138-8938",1979-04-25 14:29:40,ac:f7:a4:16:a5:9c,jacksonsean@hotmail.com,img/obama.jpg +Amanda Grimes,799-69-9976,90175,"74570 Catherine Ford +Palmerborough, AZ 29695-3924",1964-02-11 23:23:04,54:67:9a:04:f1:56,sandersjill@vang.com,img/obama.jpg +David Weber,722-23-9380,30727,"6234 Richard Shores Suite 422 +Jamesborough, NC 16247",1935-05-19 00:30:22,e4:ee:b6:ae:9c:98,amy79@gmail.com,img/obama.jpg +Gary Smith,101-85-0745,90078,"50409 Perez Village +Lake Rebeccachester, PR 71843-9228",1973-02-23 05:07:58,38:19:65:71:a2:58,marisa24@hotmail.com,img/obama.jpg +Angela Velazquez,228-57-4470,65059,"USCGC Tucker +FPO AA 69800",2011-05-26 15:30:09,78:84:73:0a:bc:ee,taylorjesus@garcia.com,img/obama.jpg +Rachel Hubbard,533-09-9673,16464,"9413 Taylor Mill +Hamptonbury, MH 59343-7680",1923-05-19 19:33:11,77:0d:91:09:de:8d,bradyronnie@gmail.com,img/obama.jpg +Joshua Vega,241-28-2240,51041,"29145 Roberts Trace +New Ericburgh, NH 12428-6335",1938-01-05 08:11:14,b2:18:63:46:32:17,svargas@cuevas.com,img/obama.jpg +Donna Martinez,282-55-1030,70180,"873 Peterson Trace Suite 455 +Kimberlyberg, ID 39947",1946-12-21 08:21:15,0b:b2:49:5b:5f:8b,taylormonroe@reed-dawson.com,img/obama.jpg +Zachary Ramirez,047-90-1573,44753,"70948 Bradley Views +Victoriamouth, SD 90856",1941-12-25 09:00:06,88:8e:7b:29:d0:b7,thomasrodgers@miller.info,img/obama.jpg +Thomas Cooper,525-27-0106,68703,"Unit 6505 Box 7179 +DPO AA 84632",1928-11-22 19:52:53,ce:1f:74:a7:a7:f0,prodriguez@daugherty.net,img/obama.jpg +Kurt Spence,046-79-7831,91222,"2109 Emily Shoal Suite 133 +Jonathanville, PA 12911-5166",1995-08-23 00:51:46,d3:2d:cb:c5:48:a2,joshuawheeler@yahoo.com,img/obama.jpg +Charles Bailey,690-96-6353,22319,"239 Joshua Mountains +New Tamara, FL 52924-3483",2002-06-12 04:34:42,b6:21:e0:4a:ce:bc,barbaramartin@hotmail.com,img/obama.jpg +Tanya Hall,095-45-2733,92473,"1706 Smith Meadows Apt. 866 +Parkport, NM 89819",1970-10-10 11:32:26,3d:fa:e5:c4:03:2a,xkirk@yahoo.com,img/obama.jpg +Dustin Evans,361-99-3101,53834,"USS Moss +FPO AA 19105",1956-08-02 23:46:11,ae:ec:d4:60:06:de,johnpeters@rios.com,img/obama.jpg +Sara Allen,064-42-1951,08889,"PSC 8948, Box 7158 +APO AP 32236-5302",1990-06-28 01:58:06,16:3e:b1:eb:15:bf,vphillips@gmail.com,img/obama.jpg +Heather Nunez,859-24-3715,79948,"1239 Gerald Fork Apt. 948 +New Pamela, WY 54797-8576",1939-05-23 11:03:46,c9:28:80:33:25:fa,raymondwilliams@glover.com,img/obama.jpg +Misty Baldwin PhD,872-79-4050,78344,"64951 Rubio Walks Apt. 200 +Rebeccaborough, IL 01868",1982-03-05 06:19:07,02:38:13:49:f7:d5,jhartman@gmail.com,img/obama.jpg +Darlene Gonzalez,186-81-3185,36023,"94877 Zachary Wall Suite 828 +East John, IA 51072-7442",1984-04-23 21:58:00,23:2e:07:bd:9b:7d,fosterlisa@campbell.com,img/obama.jpg +Richard Moreno,237-71-3603,39534,"1276 Shaw Lane +North Tracy, LA 44750",1982-04-29 23:01:34,32:1d:d0:7c:55:e1,gilbertmackenzie@hotmail.com,img/obama.jpg +Kevin Wong,280-67-0459,23135,"5489 Preston Roads +Port Carrie, WY 49245-9566",1923-12-09 22:39:30,f1:29:79:58:da:d7,mariobrown@yahoo.com,img/obama.jpg +Daniel Lang,768-22-6072,21079,"PSC 8277, Box 4610 +APO AP 17678",1958-04-08 01:28:08,8f:71:de:83:7e:79,znicholson@gmail.com,img/obama.jpg +Eric Combs,516-17-1136,20170,"3008 Emily Camp Apt. 144 +Port Laura, VA 03793",1970-09-29 00:41:36,c0:a0:16:c6:97:7f,diamond96@parker.info,img/obama.jpg +Debbie Dickerson,367-63-6086,54050,"26573 Mark Path Suite 341 +Dunlapview, MH 80602-2300",1991-02-12 02:21:00,f4:04:53:01:ca:f6,maria84@flores.com,img/obama.jpg +Jonathan Carroll,397-93-0824,16764,"51430 Holt Summit +North Willie, ND 28569",2001-06-16 12:46:26,32:67:e8:f0:97:f9,cody33@gmail.com,img/obama.jpg +Jessica Choi,595-79-7813,37409,"789 Miller Crest Suite 853 +Lake Douglasfurt, SC 95640-6187",1974-02-13 06:48:02,b6:60:e6:2a:f9:c4,lisa66@hotmail.com,img/obama.jpg +Wayne Edwards,619-65-4088,91105,"USNV Rogers +FPO AA 08193-0676",1951-04-16 18:39:25,e3:11:c4:37:2c:d6,owensmichael@santos.org,img/obama.jpg +Michael Baker,651-38-6959,90447,"Unit 0573 Box 7657 +DPO AA 85601-1848",1947-06-14 05:50:48,48:e2:54:b1:2c:75,christineparrish@gmail.com,img/obama.jpg +Heather Turner,357-45-8536,68674,"87764 Joshua Gateway Apt. 304 +Brownport, WI 90590",1977-12-27 05:53:41,e4:97:b1:ef:c3:04,serranobilly@melendez.net,img/obama.jpg +Selena Gilmore,117-85-8870,17998,"388 Michael Ford +Katherineland, WV 21915-6165",1949-04-11 23:35:17,de:e4:0f:0a:b6:a1,laurenrobbins@robinson-sanchez.com,img/obama.jpg +Melissa Foster,615-59-6838,47011,"84760 Hall Stream Suite 582 +Floydborough, AR 63557-6014",1976-04-17 00:00:03,6f:94:29:ab:28:d5,jonathan24@gray-hunter.info,img/obama.jpg +Daniel Hernandez,414-63-5799,12556,"1304 Tracy Fords +Ashleystad, RI 26526",1976-07-10 01:43:08,71:45:24:f1:3e:71,paulbush@garcia.com,img/obama.jpg +Michelle Leon,338-89-6812,60890,"469 Harris Greens +Ramirezton, AS 50814-9704",1966-06-03 12:55:11,f1:ac:e0:2e:4e:a4,antonio49@reyes-brady.net,img/obama.jpg +Eric Cunningham,445-53-0589,12481,"USS Terrell +FPO AP 11749",1995-10-02 02:48:24,60:4f:88:13:4c:6a,wendy18@coleman.com,img/obama.jpg +Samantha Goodman,568-25-1421,39911,"56996 Tiffany Locks +Dunntown, NH 46178",2012-03-29 05:14:42,16:97:21:68:3c:ff,radams@hotmail.com,img/obama.jpg +Todd Ray,785-66-0019,88079,"4012 Mary Track Suite 230 +Port Patriciamouth, MO 39707-9358",1938-05-18 16:14:29,2d:a6:2f:c1:1c:b0,gallagherjennifer@sanchez.com,img/obama.jpg +Christina Jacobs,767-91-2774,86415,"703 Stevens Creek Suite 177 +Buchananview, CT 21224",1996-12-09 08:21:01,d7:4f:59:49:80:5d,lesliefletcher@gmail.com,img/obama.jpg +Vanessa Williams,115-68-0442,71210,"68049 William Islands +Castanedaton, SD 49599-6726",1999-02-27 19:25:34,a7:00:e3:4f:44:4a,cfrank@gmail.com,img/obama.jpg +Rodney Lopez,422-35-3574,59046,"USS Marshall +FPO AE 33660",1918-01-11 22:59:53,ee:4c:a8:29:14:c0,daniel75@maynard-dalton.biz,img/obama.jpg +Matthew Morris,117-55-3351,54057,"5086 Young Track +Shermanview, NM 00944-1144",1930-07-19 21:21:23,57:f2:f0:f2:f3:77,lsmith@gmail.com,img/obama.jpg +Heather Robertson,062-57-0395,53996,"159 Bruce Bypass +Port Chelsea, TN 50303-2439",1949-03-02 14:41:14,53:a0:03:7e:c5:0d,palmeradam@hotmail.com,img/obama.jpg +Leslie Mendoza,616-73-7107,61301,"483 Bailey Lodge +Lake Marytown, MP 98581-6741",2015-01-05 19:38:03,74:8b:77:29:a3:0e,jbrewer@hotmail.com,img/obama.jpg +Stacie Cameron,570-95-1925,90084,"083 Melissa Plaza Apt. 780 +Hansenchester, ND 61431-7733",1927-09-03 20:28:27,6a:50:fa:ca:1f:ec,clarktiffany@hotmail.com,img/obama.jpg +Adam Gillespie,723-99-8476,68007,"2449 Lopez Walks +Lunaside, WA 25111-3369",1996-11-09 00:13:13,ac:06:94:7f:65:6b,wayers@hotmail.com,img/obama.jpg +Laura Robinson,221-36-5851,48594,"7576 William Trafficway +North Ryanberg, FL 49563-8748",1940-05-25 11:48:35,dc:c9:bf:46:19:e7,debra18@gmail.com,img/obama.jpg +Kevin Martin,584-23-9673,28527,"0071 Richard Pike +Port Arianaburgh, NY 23562",1946-05-31 18:32:03,c7:92:7e:49:17:5a,garretthoward@gmail.com,img/obama.jpg +Margaret Jones,693-24-7027,92325,"436 Moses Causeway +Port Jordan, NE 23855-2571",1941-12-18 15:55:12,ce:18:1f:f2:22:bf,robinporter@hotmail.com,img/obama.jpg +Christine Howard,640-35-2690,81888,"89711 Sarah Point +Riveraside, AK 65569-3235",1982-04-02 01:48:23,df:11:3f:8c:3d:0b,emorton@hotmail.com,img/obama.jpg +Lauren Reese,108-87-1150,32732,"552 Matthew Land Suite 977 +Port Angel, WV 79232",1973-10-24 15:10:58,c2:a4:9b:9f:d6:ff,stephanie29@taylor.com,img/obama.jpg +Justin Roberts,598-22-2766,63919,"3298 Jason Land +Stantonport, ND 98797",1996-03-03 19:28:41,4b:87:68:8e:65:86,thomasjeffrey@gmail.com,img/obama.jpg +Kristi Leon,788-53-1243,84453,"037 Taylor Isle +New Jonathan, NE 07156",1926-11-12 17:40:34,72:e5:5a:cd:05:23,colin67@lee.biz,img/obama.jpg +Shannon Galvan,458-41-0391,76324,"28245 Ellis Rapids Suite 722 +Christineberg, AS 63716",1928-03-10 18:22:53,cd:22:56:0c:6d:96,eharris@tran.com,img/obama.jpg +Elizabeth Walters,715-88-8870,11004,"865 Flores Square +West Tammy, VI 98080",1940-06-25 12:23:48,7a:f5:f6:71:f2:a1,blackcurtis@hayes.org,img/obama.jpg +Jerry Watson,483-22-8884,97702,"499 Matthew Ville +Garyville, NC 07426-4829",2016-06-24 08:48:39,da:9e:63:ef:38:54,erica02@gmail.com,img/obama.jpg +Laura Reyes,194-20-8619,60828,"02862 Delgado Spring +Liufort, AS 50886",1985-07-02 10:56:57,9b:b0:82:3c:66:cc,jessicawilson@estrada.com,img/obama.jpg +Jessica Garcia,179-11-6578,01634,"3712 Best Camp +Port Rebecca, HI 49484",1922-12-14 02:33:33,4d:d7:b8:18:0a:20,matthewvargas@gmail.com,img/obama.jpg +Larry Campbell,350-68-6940,40133,"3605 Garrett Curve +Kimberlyhaven, DE 97196",1981-10-16 21:46:14,dc:aa:00:86:46:d8,scott55@hotmail.com,img/obama.jpg +Suzanne Brown,735-23-5706,94638,"340 Trujillo Crescent +Jasminemouth, AK 69818",1928-01-28 12:49:54,95:15:92:9b:4f:d1,joshua50@hotmail.com,img/obama.jpg +Kaylee Vargas,359-08-5143,12775,"351 Pope Road Suite 592 +Gregside, WV 53348",1928-06-28 12:17:26,db:96:92:8f:88:9e,tiffanynguyen@wolf.com,img/obama.jpg +Ronald Randall,700-64-4094,08087,"53817 Julie Park Suite 912 +Nicholasview, MH 74634",1983-08-01 17:56:19,6f:a7:bc:e5:54:6b,lisaanderson@gmail.com,img/obama.jpg +Eric Oliver,767-34-1377,90381,"5817 Coleman Highway Apt. 445 +East Davidbury, CA 20030-7603",1955-11-02 16:32:15,08:2c:3f:bc:be:ed,brianhubbard@smith-flynn.org,img/obama.jpg +Stephanie Durham,590-21-1224,13153,"94610 Manning Stream Suite 339 +South Sharon, MT 17184-7605",1938-07-18 08:07:55,3e:f1:82:db:d8:20,tylerperez@gmail.com,img/obama.jpg +Kimberly Garcia,899-57-2677,77434,"42666 Sawyer Haven Suite 473 +Murrayville, WV 06299-7121",1945-03-02 11:40:05,b4:82:30:7f:ab:cf,hjordan@taylor.info,img/obama.jpg +Eric Mcmillan,089-88-6691,95656,"455 Robertson Port +Dodsonchester, AZ 55365",1984-12-24 07:28:46,36:fe:2a:0e:b5:56,timothycollins@gray-padilla.com,img/obama.jpg +Mary Ramsey,801-03-1410,20367,"0964 Dana Bypass Apt. 500 +Markmouth, TN 14289",1920-09-05 14:43:44,b6:bf:34:77:15:41,miranda75@martin-tucker.biz,img/obama.jpg +Shawn Newton,495-95-1148,12640,"1365 Hoover Lane Apt. 683 +New Feliciaside, OK 70954",1934-06-27 09:55:37,ce:64:3c:89:f2:0a,pmckay@hotmail.com,img/obama.jpg +Heather Evans,330-81-1583,44828,"0016 Kim Tunnel Suite 433 +East Sarah, MI 51374-7074",1991-03-29 03:00:32,66:77:9e:f7:aa:29,christopher67@yahoo.com,img/obama.jpg +Brent Lane,520-85-1761,49277,"46610 Shawn Camp +East Stephanieside, FL 05989",1970-07-03 10:18:15,98:7a:46:4a:71:35,yrose@yahoo.com,img/obama.jpg +Monica Smith,835-52-5399,73591,"540 Donald Estate Suite 753 +Anastad, NJ 95104",1971-12-18 12:20:15,25:33:84:68:a7:51,paul43@castro.com,img/obama.jpg +Lisa Reynolds,209-13-1093,08503,"056 Wilson Viaduct Apt. 500 +Cookview, CT 63992",1995-11-27 01:02:13,5f:63:0d:ff:89:1f,hbailey@walker.com,img/obama.jpg +Carlos Moore,340-45-9465,54440,"726 Steven Pine Suite 736 +Billyhaven, WA 39680",1954-07-13 03:01:54,bb:74:ed:30:cd:39,michaeljones@gmail.com,img/obama.jpg +Susan Roberts,728-08-8585,15427,"1628 Kenneth Rapid Suite 779 +Baldwinfort, AK 92794-8956",1990-11-05 07:16:25,a7:0a:75:b3:20:12,alidalton@hotmail.com,img/obama.jpg +Allen Logan,825-01-0934,39707,"PSC 2767, Box 0148 +APO AE 80872",1992-10-28 02:22:02,45:6b:b1:75:8d:b1,wallacejose@yahoo.com,img/obama.jpg +Jeffrey Taylor,886-71-8261,77382,"264 Montes Key Apt. 058 +New Carrie, MP 01774-8220",2015-12-18 21:24:11,ef:20:fa:e0:bd:5b,qleblanc@gmail.com,img/obama.jpg +Arthur Williams,155-23-0281,93218,"8029 Wolf Run Apt. 558 +Paigetown, MH 90444",1975-11-18 03:12:56,b0:3f:6f:f1:d6:f3,robertahernandez@bell.com,img/obama.jpg +Pamela Davis,321-56-9997,37840,"181 Amy Squares +Joshuatown, VT 40018",1948-11-18 12:51:04,ef:ba:60:74:3f:5e,melissaramos@stanley-krause.biz,img/obama.jpg +Michelle Allen,192-12-2282,36061,"0280 Jeffrey Circles +West Jose, UT 90498",2014-07-11 15:28:58,e3:79:b6:44:30:b5,christiansoto@yahoo.com,img/obama.jpg +Roberto Long,826-81-7374,13579,"Unit 7014 Box 4442 +DPO AP 43679",1977-03-28 01:01:10,cd:52:0b:46:d5:ca,dharris@yahoo.com,img/obama.jpg +Larry Berry,703-68-2812,99929,"29215 Shelley Brook +New Matthewborough, VA 06873",1968-02-17 15:51:44,c2:f2:dd:96:c4:21,gwilliams@gmail.com,img/obama.jpg +Craig Bauer,840-58-8715,79051,"611 Betty Knolls +Hunterstad, WY 73368",1924-12-27 09:30:31,a5:88:27:60:30:c4,justinheath@jackson.com,img/obama.jpg +Nicholas Martinez,405-94-5371,66905,"12818 Schroeder Village +Patrickstad, MS 78386-3181",1954-02-18 17:55:12,5d:b3:7c:33:44:87,zwaters@yahoo.com,img/obama.jpg +Linda Smith,603-11-7668,19610,"15983 Richard Mountains Suite 203 +New Lauren, FM 02637",1937-03-30 02:56:54,86:e0:c2:48:f2:8a,kristishaw@crosby-green.com,img/obama.jpg +Patricia Fischer,605-48-1680,54812,"PSC 9504, Box 4718 +APO AP 99437",1925-10-02 13:08:23,59:36:6f:83:41:f8,alexandersaunders@yahoo.com,img/obama.jpg +Melissa Jones,273-24-5993,84623,"USS Roman +FPO AP 63329",1919-01-13 19:18:58,ac:79:8a:6f:29:e5,amanda14@gmail.com,img/obama.jpg +Susan Goodwin,117-47-5834,75941,"26030 Tracy Junction Apt. 340 +Hatfieldville, MI 28546-6610",2006-01-03 09:01:49,8f:36:42:98:4a:51,christopherjohnson@anderson-miller.com,img/obama.jpg +Tara Chaney,574-36-1222,24155,"041 Aaron Cape +Johnstonchester, MS 58634",1974-01-22 06:14:12,42:57:61:3c:1b:2a,mvincent@whitney-ortiz.com,img/obama.jpg +Hayley Mahoney,468-84-9991,47677,"222 Amanda Valleys +West Amber, DC 39280-2977",1943-12-21 22:30:24,ec:4b:59:17:5e:82,browngary@hotmail.com,img/obama.jpg +Samuel Palmer,580-59-6204,23798,"6006 Tyler Drive Suite 818 +Jimmyton, ID 55942",1992-03-15 18:47:32,2f:4c:fe:74:ef:f9,joannajackson@gmail.com,img/obama.jpg +Maria Rodriguez,153-52-0627,97652,"139 Cynthia Road +West Marc, AK 43043-7228",1981-01-03 17:31:04,5e:cf:db:d9:25:35,cwallace@hotmail.com,img/obama.jpg +Joanna Crane,667-15-8065,66639,"34331 Villanueva River +Davisborough, MN 47845-5206",1953-07-11 20:32:33,ae:4b:4a:50:be:ae,danielterry@gmail.com,img/obama.jpg +Brandi Bailey,428-44-9051,16304,"Unit 1325 Box 2352 +DPO AA 26703-3537",1982-04-07 13:45:29,13:38:bd:a7:02:fc,gravesrachel@gmail.com,img/obama.jpg +Paula Sanford,556-55-2585,11184,"359 Brittany Roads Apt. 993 +East Kaitlyn, WV 76204-3319",1921-12-01 20:46:52,b1:2c:29:b9:6b:25,waynejuarez@yahoo.com,img/obama.jpg +Michelle Murray,676-69-2338,73354,"926 Salas Mountain +Lake Michaelport, WI 18832",1947-05-27 14:22:28,f1:65:1c:29:bc:c6,cmarshall@torres.org,img/obama.jpg +Lauren Riley,723-53-9122,23494,"273 Cross Alley Suite 299 +New Daltonland, NC 64703",2017-01-13 07:20:54,bf:26:5c:08:08:8d,longchristy@gmail.com,img/obama.jpg +Jeffrey Walker,454-75-0146,78123,"USNS Jones +FPO AA 43018",1926-05-01 20:03:42,b7:6c:e2:68:27:4a,acostajason@brown.net,img/obama.jpg +Kyle Booth,079-72-7899,74838,"USNV Cole +FPO AE 07159-1327",1949-10-21 17:28:23,62:1a:75:4e:e9:e4,hornelinda@gmail.com,img/obama.jpg +Elizabeth Coleman,448-11-1103,74105,"6360 Connie Views Apt. 065 +Shannonstad, OK 43290-1891",1998-12-21 08:10:24,1c:b4:06:42:20:ab,romeroscott@sanders.info,img/obama.jpg +Destiny Watson,264-34-3209,03605,"12774 Ward Track +South Staceystad, GU 62004",1975-10-20 14:34:29,1f:49:5a:1b:47:46,tammylewis@west.com,img/obama.jpg +Derek Johnson,202-97-6239,75477,"36546 Sullivan Mission Apt. 562 +New Matthewville, MI 12312-2224",1933-03-15 23:40:27,67:b5:02:08:dc:86,christophergutierrez@hotmail.com,img/obama.jpg +Danielle Avery,883-64-1985,30720,"40332 Jeff Villages +Port Mariohaven, TN 84550-8751",1985-09-03 09:29:46,7e:22:fe:81:a9:f9,ashleymoran@yahoo.com,img/obama.jpg +Mrs. Stephanie Bryant,417-44-5597,95083,"0462 James Overpass Apt. 070 +South Stephenview, NM 95916-3452",2007-08-23 20:12:40,70:de:e7:5c:72:32,todd53@olsen-perez.info,img/obama.jpg +Sonya Powell,196-16-1831,41113,"073 Sean Crossroad Suite 335 +Robinland, NH 82631",2013-01-11 10:13:41,02:c2:ce:1e:07:43,murrayjessica@wyatt-mora.com,img/obama.jpg +Kimberly Swanson,209-99-6639,61499,"07355 Abigail Forges +Kellyborough, CT 01441-3978",1935-11-06 08:38:53,df:04:32:4e:60:97,lisavargas@gmail.com,img/obama.jpg +Marisa Williams,874-73-8562,34671,"95145 Black View Apt. 435 +Jensenstad, VI 04731",1943-03-27 18:34:15,9c:2f:27:23:c4:08,rowlandnicholas@baker.com,img/obama.jpg +Anna Bradshaw,686-87-9764,58943,"PSC 8021, Box 1835 +APO AA 22153-1408",2000-11-07 15:52:58,f3:3b:48:27:d9:c3,pkemp@lewis.net,img/obama.jpg +Clinton Rasmussen,815-66-7503,50141,"3906 Morse Streets +North Brianville, VI 11616",1954-04-09 05:28:56,3d:2f:de:2d:b3:c3,angelamorris@yahoo.com,img/obama.jpg +Jeffrey House,108-24-4026,00852,"8458 Morton Landing Suite 963 +New Jessica, NC 00858",1984-03-02 19:41:40,81:af:b4:9d:f8:37,starkkaren@cruz-castillo.com,img/obama.jpg +Gregory Little,533-26-5841,95560,"825 Foley Creek Suite 603 +South Kellyhaven, IL 63247",1968-12-27 15:58:40,18:09:e0:49:7a:d5,jeffrey50@hotmail.com,img/obama.jpg +Isaiah Swanson,038-81-3181,86778,"59328 Julie Light Suite 740 +Pughmouth, ID 35620",1918-10-15 23:04:09,d2:a4:2f:16:26:13,michael88@murphy-park.com,img/obama.jpg +Lee Nelson,802-59-5822,58948,"65543 Katherine Radial +Morganview, OR 40395",1962-12-17 14:17:54,ba:a3:c1:14:f9:98,amandabernard@hendricks-morris.com,img/obama.jpg +Charles Moore,763-18-8443,32436,"82683 Matthew Points Suite 316 +South Jessica, ND 67051-5911",2011-02-24 12:58:46,96:70:42:67:d6:ff,heather04@smith.info,img/obama.jpg +Adam Simon,629-81-9549,90071,"6313 Roberts Streets Suite 279 +North Suzanne, AS 00035-6528",1941-08-20 13:48:44,19:8e:f8:8d:06:d0,buckwanda@collins.info,img/obama.jpg +Casey Lee,899-11-0825,84890,"3000 Hughes Islands Suite 067 +North Brittany, LA 08311",1958-08-06 18:42:43,83:ef:b9:04:8c:00,choichad@yahoo.com,img/obama.jpg +Larry Gibbs,222-61-7429,22293,"PSC 3947, Box 6832 +APO AA 87717-4315",1977-03-01 21:10:49,75:71:56:99:20:24,simpsonphilip@yahoo.com,img/obama.jpg +Robert Gibson,352-06-0087,00746,"USCGC Carroll +FPO AA 94180-7695",1931-06-07 15:31:56,94:5b:bd:d3:4a:8e,kevin80@hotmail.com,img/obama.jpg +Andrea Warren,234-74-5881,31218,"8952 Reed Groves +Kathleenborough, IL 55868-6112",1925-02-25 21:37:50,e2:31:2e:89:b7:6f,ricardomurphy@yahoo.com,img/obama.jpg +Stephen Smith,255-47-6557,28577,"Unit 1042 Box 4264 +DPO AE 98643-1970",1920-12-18 12:16:10,b8:e0:30:73:2b:d3,andreamiller@stephenson.info,img/obama.jpg +Stephanie Ross,051-57-2597,03220,"6288 Zhang Island +Dustinport, VA 28120-0378",1950-06-22 16:21:03,57:ca:29:f6:1a:51,randall29@holmes-james.info,img/obama.jpg +Alicia Olsen,196-78-4705,82254,"846 Lowery Trail Suite 569 +South Melissa, NJ 72656",1937-10-31 07:29:25,c1:61:59:c8:90:07,christiankimberly@arnold.com,img/obama.jpg +Krista Villegas,480-98-4942,69215,"3663 Hector Trafficway Suite 967 +Cooktown, OK 42884",1937-09-20 01:31:57,49:99:17:e9:05:c0,dana22@gmail.com,img/obama.jpg +Michael Williams,006-25-3169,72021,"263 Salazar Wall +Carolmouth, NM 75097",2008-07-12 14:59:53,5d:78:2c:e7:fc:42,arnoldpatricia@smith-dunn.com,img/obama.jpg +Kevin Miller,682-05-5014,57221,"03792 Jones Roads Apt. 942 +North Christopher, DC 35330-2303",2013-01-15 22:58:52,dd:eb:7a:b5:e3:ad,hwilliams@anderson.com,img/obama.jpg +April Jones MD,160-06-8246,62927,"8145 Lindsey Ford +North Carlos, MA 75431-4385",2008-08-31 22:28:08,e2:04:ef:d4:48:b8,blackanna@wright.org,img/obama.jpg +Sarah Trevino,342-64-8889,16262,"089 Daniel Meadows Apt. 029 +East Hannah, OR 65813",1951-09-27 22:44:43,ad:44:8e:2c:f4:c7,ahart@yahoo.com,img/obama.jpg +Andrea Delacruz,498-82-8889,99081,"8805 Thomas Oval Suite 408 +East Alejandro, MH 19844",2006-12-03 02:57:54,30:76:71:b1:c5:2f,rileyerica@yahoo.com,img/obama.jpg +Sarah Moreno,270-82-8962,19206,"Unit 4924 Box 3364 +DPO AP 58661",1974-03-20 03:10:21,85:b9:f0:bf:9d:a5,madisonfleming@jones.com,img/obama.jpg +Michael Keller,377-02-5889,09477,"PSC 7450, Box 9538 +APO AA 59823-6818",1941-10-21 22:28:49,c7:ef:33:cf:01:8a,kristin76@thompson.com,img/obama.jpg +Lindsay Campbell,631-86-4314,61666,"280 Matthew Mall +Frankside, RI 69200-1281",1927-10-13 13:01:39,24:9e:5c:27:e2:a9,abigail34@hotmail.com,img/obama.jpg +David Burns,606-36-9032,73706,"52284 Heather Prairie Apt. 911 +North Brianchester, SC 34072-1758",1924-09-05 03:22:52,2a:1e:43:39:4c:c0,omarthornton@bennett.com,img/obama.jpg +Eric Lloyd,706-81-8618,42169,"USNS Miller +FPO AA 92213",1925-11-08 04:43:26,96:ab:41:f8:ad:3f,stephanie81@bass.com,img/obama.jpg +Casey Gay,193-16-7884,66724,"PSC 3840, Box 3447 +APO AE 86817-0295",1942-03-17 07:18:44,4a:85:8b:ae:c5:5f,idean@thompson.com,img/obama.jpg +Kevin Velasquez,363-42-7407,84525,"USCGC Vincent +FPO AP 95095",1987-04-30 15:47:53,09:d2:77:af:a3:66,cdunn@gmail.com,img/obama.jpg +Karla Chaney,585-78-9469,30737,"5784 Beth Locks Apt. 323 +East Jose, AK 50794-8491",1986-10-06 23:44:39,54:b3:7f:fc:1e:f7,gabrielawilson@johnson.biz,img/obama.jpg +Michelle Lee,810-93-7760,31080,"97461 Charles Mountains +Butlerfort, KY 53329",1961-05-06 16:00:37,f6:35:d6:df:8c:81,hodgesmelissa@hotmail.com,img/obama.jpg +Lori Lynch,691-30-1989,13655,"255 Roberts Junction Suite 855 +Toddstad, PR 24507",1940-03-23 13:49:47,18:33:03:0e:f4:f4,jmurphy@gmail.com,img/obama.jpg +Crystal Fitzpatrick,117-25-8792,38035,"449 Hannah Trail +New Sarah, DE 64274",2002-05-26 06:51:26,b9:69:c0:51:04:ac,ywilson@davis.com,img/obama.jpg +Richard Berry,190-16-4196,30262,"316 Robles Rest Apt. 142 +East Michael, DC 48457-1261",1929-05-08 09:17:06,0b:c1:08:07:77:a7,wdaniel@gmail.com,img/obama.jpg +Desiree Hill MD,695-77-7854,48828,"10258 Garcia Stream +East Jamiemouth, MO 48080",1932-06-30 20:14:37,73:59:d2:3a:e5:86,scottbriggs@evans.biz,img/obama.jpg +Karen Lee,046-85-5611,26958,"2033 Nichole Valley Apt. 730 +Graceview, MN 92079-3863",2013-05-28 21:03:50,74:be:1a:48:bc:1e,masonjames@yahoo.com,img/obama.jpg +Allison Matthews,856-65-4284,67256,"12331 Barrett Stream +Leroyfurt, AS 49258-8805",1931-02-21 06:21:32,5f:ba:75:b7:51:28,stephanie65@gmail.com,img/obama.jpg +Donna White,235-13-3625,46026,"789 Bailey Rue +Lake Kyle, TX 68312",1933-08-15 23:46:07,ce:c7:02:b1:06:15,mscott@smith-johnson.info,img/obama.jpg +Michael Little,046-60-2580,35309,"PSC 3214, Box 4935 +APO AP 85066-6161",1972-04-22 05:15:25,25:24:da:a4:ae:84,sarahmendoza@yahoo.com,img/obama.jpg +Amanda Skinner,340-32-8757,67987,"361 Jonathan Walk Apt. 433 +Amberburgh, NC 79808-7545",1997-12-03 12:56:33,22:13:e5:54:1b:2e,millerjorge@hotmail.com,img/obama.jpg +Nicole Richardson,611-01-2630,01561,"86132 Heather Forge +Leeview, ND 63916",1991-04-05 08:41:07,dc:ed:c6:ef:71:04,hatfieldbob@yahoo.com,img/obama.jpg +Crystal Wilkerson,272-13-8415,38425,"28940 Isaiah Forge +Ramseytown, GU 08064",1944-09-25 05:58:11,5b:0a:cc:05:a3:0b,jgibson@douglas.com,img/obama.jpg +Michael Frey,062-45-9733,48156,"PSC 6268, Box 5773 +APO AP 52578",1919-09-04 16:43:58,e5:ae:7d:44:c1:95,shawnharmon@gmail.com,img/obama.jpg +Terri Hughes,293-15-5783,21436,"37286 Gregory Court Apt. 847 +New Samantha, HI 08294",1924-11-23 16:43:13,98:63:79:45:e2:cd,vsimmons@gmail.com,img/obama.jpg +Trevor Bradley,195-25-0791,87320,"663 Delgado Corner +West Kylehaven, MS 11978",1980-12-11 22:30:46,61:23:c0:36:81:a5,elizabethbaldwin@yahoo.com,img/obama.jpg +Wanda Flowers,111-85-8006,55247,"9958 Tara Shores +North David, KY 49756-4643",1922-07-30 04:19:11,e9:69:c6:87:01:56,kelsey19@mays.org,img/obama.jpg +Brianna Contreras,807-77-4290,90292,"7827 Ryan Locks Suite 583 +South Mark, SC 48934",1918-07-20 06:53:04,6f:0b:18:53:c1:df,ahampton@duarte-chavez.com,img/obama.jpg +Andres Mueller,146-91-1770,69082,"55522 Parks Glen Suite 178 +North Jeromeborough, RI 42343-8449",1943-11-15 08:42:12,61:e9:0b:7d:d1:09,wardsonya@nguyen-simon.info,img/obama.jpg +Nicholas Brown,308-21-3380,88486,"9069 Rodriguez Lake Apt. 725 +Tracyshire, MD 56082-1045",1961-09-14 21:40:42,93:ec:e1:98:d9:19,michelehernandez@yahoo.com,img/obama.jpg +Aaron Chan,499-38-5369,71834,"01268 Brown Ranch +Lake Amy, MD 41864-8445",1958-04-21 10:52:57,54:84:5d:dd:5c:18,guerracynthia@hotmail.com,img/obama.jpg +Dorothy Mitchell,597-59-6423,39947,"052 Adams Manors Suite 014 +Port Stephenfurt, IL 73666-5943",1953-05-10 15:46:06,cc:f2:8d:f6:f5:73,stephenhansen@gmail.com,img/obama.jpg +William Mcdowell,426-80-6101,35092,"403 Lisa Islands Suite 774 +West Justinfort, UT 58594",2003-10-07 02:21:21,03:38:cc:ce:89:84,aaron74@marshall.com,img/obama.jpg +Crystal Ramos,747-12-5245,35974,"9540 David Burg Apt. 240 +Smithstad, NJ 74363-7444",1932-10-10 03:07:05,76:1c:f3:a2:f6:8e,ronaldmartinez@gmail.com,img/obama.jpg +Mary Clark,040-44-4960,29416,"04305 Matthew Roads +Malikland, PW 04344-0181",1979-09-29 07:07:04,51:f9:a1:0d:3c:b9,trujillojoseph@hotmail.com,img/obama.jpg +Crystal Watson,407-22-8479,38397,"049 Strickland Pike +Dawnville, FL 53925-6272",1980-09-08 14:38:16,5f:b3:cb:b4:2a:71,lewischeryl@tyler.com,img/obama.jpg +Ryan Kim,335-22-0474,07321,"445 Kristin Divide +North Chelsea, VI 17266",1920-11-07 05:21:01,e1:29:63:46:82:a6,ricky52@hotmail.com,img/obama.jpg +Daniel Brennan,308-88-5939,76948,"022 Jenna Bypass +West Jayhaven, SC 36237-6150",1965-02-04 20:32:16,5f:ac:b9:27:b2:88,martinezanthony@hotmail.com,img/obama.jpg +Edward Payne,488-59-1027,13988,"48034 Kristina Crest +Santosland, DE 90674",1924-09-21 18:29:53,ef:eb:39:52:30:70,sara59@perez-todd.net,img/obama.jpg +Jane Morrison,575-59-2088,89476,"1213 Morrow Cliffs +Catherinehaven, OH 41360-5058",1973-02-15 02:05:06,e8:55:ea:e0:45:d1,yfarmer@terry.com,img/obama.jpg +Juan Anderson,626-67-3773,31972,"8185 Scott Branch Apt. 917 +Tonyashire, CO 44711",1980-04-06 21:34:24,35:af:17:a4:bd:83,priceedward@yahoo.com,img/obama.jpg +Christopher Middleton,680-87-1711,20732,"490 Daniels Lodge +Rodneyport, DC 33358-5335",1975-11-15 13:35:42,7c:96:fb:ed:2f:1c,angela05@yahoo.com,img/obama.jpg +Julie Cruz,061-01-7607,01488,"Unit 5694 Box 5896 +DPO AA 16380",1927-11-02 09:38:10,17:f3:83:b1:6b:69,sarahflores@smith-glover.info,img/obama.jpg +Jacqueline Gonzalez,714-08-3927,11165,"89671 Ross Point Apt. 563 +Richardsonport, UT 18516",1931-06-21 12:22:51,fa:df:4a:38:60:6b,ericabradley@schroeder-daniels.com,img/obama.jpg +Frank Kim,655-48-9247,13815,"3984 Collins Fords +North Johnstad, AR 96066",1928-11-16 03:04:51,46:c0:62:2c:b9:70,georgenelson@yahoo.com,img/obama.jpg +Billy Escobar,086-57-7442,27791,"3141 Alan Wall Suite 822 +Walkerberg, MP 61331",1924-08-27 02:11:34,8a:1f:8f:3e:f3:53,mcgeelisa@hotmail.com,img/obama.jpg +Charles Perez,748-30-8126,92871,"1605 Jared Flats +Kerryview, MI 60473",1962-08-13 07:30:54,4f:31:54:bc:9e:a3,sararamos@christian-turner.com,img/obama.jpg +Gloria Parker,111-83-3494,32765,"25930 Eric Trafficway +Nicolemouth, OH 56971-6464",1983-03-24 21:41:30,8e:1f:67:cf:3b:80,heather30@roberson.com,img/obama.jpg +Brian Fields,722-53-8081,50964,"6004 Stark Ridge +New Theodoreside, RI 88780-5204",2003-05-08 05:47:55,c8:6e:09:ec:48:1a,fanderson@taylor.biz,img/obama.jpg +Diana Morales,391-86-4499,14432,"309 Katherine Throughway +New Michaelport, AS 96403-8969",1982-10-12 17:27:06,5b:0f:53:a7:43:3f,jonathan15@simon-kemp.com,img/obama.jpg +Jamie Olson,174-03-2260,53119,"3390 Campos Shore +Ayersstad, FL 70648-3479",1930-04-29 00:33:32,c7:42:6b:00:78:e0,brendagallagher@hotmail.com,img/obama.jpg +Brittany Melton,389-05-0532,82189,"858 Stacey Wall +Butlershire, OK 15673",1978-04-14 17:57:26,0c:9d:4a:07:28:90,jill26@gmail.com,img/obama.jpg +Samantha Brown,636-79-2725,46000,"72500 Smith Shore Apt. 729 +Amyville, LA 16486-3379",1947-02-22 08:22:23,97:19:78:e3:de:49,daniellee@yahoo.com,img/obama.jpg +Savannah Smith,082-72-6030,66836,"7310 Terri Street Apt. 942 +North Christopher, IN 11309",1931-02-06 04:07:21,34:a6:b4:e3:56:e8,connor59@burke.com,img/obama.jpg +Roger Montes,205-57-9176,09522,"4015 Castro Extensions +Paulmouth, MN 73548-4800",1918-10-31 15:47:33,11:a2:a5:6a:2c:0d,mdominguez@taylor-cooper.com,img/obama.jpg +Rachel Barnes,003-29-0779,91622,"5838 Christopher Knoll Suite 805 +Alisonborough, NE 39464",1981-08-14 18:05:57,7c:f3:2e:a2:ca:1d,lewiszachary@yahoo.com,img/obama.jpg +Lori Wolf,271-76-7585,70553,"3851 Macias Port +New Scott, FM 73199",1966-06-19 09:15:21,6a:6b:3f:9c:af:cb,david66@hotmail.com,img/obama.jpg +Paula Jackson,597-25-0326,69901,"73040 Holloway Alley Suite 742 +Hallchester, IL 33679-0763",1929-02-07 03:02:18,3e:97:c9:4a:47:63,stephaniewilliams@bass.info,img/obama.jpg +Bryan Mason,753-40-3485,00959,"9463 Courtney Walk +Lake Alexanderport, IA 89020",1927-03-07 16:11:07,28:ad:df:50:d7:d5,kevin11@gmail.com,img/obama.jpg +Zachary Mcdonald,547-16-9923,23443,"14407 Jimenez Road +East Cassandra, MP 95879-6510",1923-01-27 23:34:12,65:31:d9:8e:27:ba,johnsonadam@hotmail.com,img/obama.jpg +Connie Vasquez,682-92-0604,08962,"Unit 2096 Box 0304 +DPO AE 35143",1935-08-21 11:25:00,cd:54:80:ff:16:ac,frank75@gmail.com,img/obama.jpg +Susan Brown,018-48-5752,59507,"35714 Payne Plain +South Matthew, HI 30999-5187",2015-06-17 00:15:26,6f:1c:bc:eb:84:b4,hharvey@allen.com,img/obama.jpg +Richard Martin,758-58-8596,92185,"9048 Kevin Meadows Suite 013 +Lindseyview, FL 98164",1980-04-14 17:52:32,5d:23:ea:c2:15:36,zachary15@yahoo.com,img/obama.jpg +Alexis Whitehead,066-54-7757,63311,"637 Jennifer Street +Meltonton, OH 88953-2887",2010-11-06 19:42:29,44:59:f8:78:ea:59,angelawilson@gmail.com,img/obama.jpg +Veronica Watkins,385-87-1973,27236,"347 Hays Mountain Apt. 308 +East Nicole, AZ 13156-1495",2012-05-24 05:23:38,31:f1:67:b9:35:c9,keithperry@nielsen.com,img/obama.jpg +Daniel Peterson,473-17-9680,57581,"64108 Shannon Fort Suite 855 +Gregoryport, WV 34243-3572",1952-03-04 10:03:12,87:38:f1:78:18:58,lwalker@yahoo.com,img/obama.jpg +Danny Meyer,127-74-2975,07689,"31708 Matthew Square Suite 455 +Chelseachester, MS 68257",2000-08-20 18:02:53,1f:4e:e2:03:c4:35,olivernicholas@yahoo.com,img/obama.jpg +Derrick Gonzalez,890-55-2557,80804,"397 Cowan Vista +Yangmouth, OR 00737",1926-10-12 17:06:03,3a:fe:77:0f:74:83,tatekathy@gmail.com,img/obama.jpg +Chase Barber,195-09-6508,78153,"43978 Brianna Prairie +Figueroafort, RI 24629-5230",1936-01-12 14:42:13,fc:40:87:d3:bf:4a,shelley70@gmail.com,img/obama.jpg +Darren Bailey,179-77-2811,19896,"998 Mason Rue +Reidshire, OK 08964",2007-01-26 12:29:52,f0:57:ec:8a:71:a5,jamie36@yahoo.com,img/obama.jpg +Lucas Holland,313-84-2199,71385,"778 Virginia Glen Suite 193 +North Michael, PR 78908",2010-01-02 22:13:58,40:ec:e9:98:be:e6,reneeroberts@yahoo.com,img/obama.jpg +Stacie Chung,358-70-1896,25751,"7430 Michael Ville +Ochoaview, AL 05805",1927-03-11 07:24:27,2f:c7:48:0e:b8:bd,katiewheeler@jimenez.net,img/obama.jpg +Adam White,256-94-9996,53653,"902 Murphy Field Apt. 546 +New Derrickville, FL 39578",2008-05-21 11:24:22,3c:e9:3a:14:d8:b5,hulljason@gmail.com,img/obama.jpg +Albert Khan,446-36-9715,39698,"091 Carter Lane Suite 594 +Deckerview, GU 26021",1952-08-15 06:09:06,fe:ea:24:6a:d8:d7,ldixon@yahoo.com,img/obama.jpg +Jodi Gill,682-98-1632,32602,"52808 Ballard Port Suite 465 +Liumouth, NY 51320-0425",1933-09-14 18:47:44,da:aa:2f:1a:e7:f1,hortondonna@yahoo.com,img/obama.jpg +Michelle Brown,720-28-2417,34017,"5104 Fred Trafficway Suite 247 +East Spencerside, NC 83239",1973-05-11 00:53:27,1e:66:56:52:06:bd,walleranthony@gmail.com,img/obama.jpg +Mr. Zachary Nguyen,137-57-9045,77810,"USNV Chavez +FPO AE 80258",1925-12-19 12:22:11,85:a2:d9:96:16:9e,leslie18@richardson-smith.com,img/obama.jpg +Jeremy Sloan,187-90-6721,03714,"11634 Schwartz Trail Apt. 287 +Bethanyfort, GU 33634",1944-06-25 23:10:52,09:3e:4a:da:28:62,bridgetrichards@hotmail.com,img/obama.jpg +David Matthews,253-01-5531,49196,"USNV Green +FPO AE 90417-4542",1996-05-29 21:05:03,4b:0f:68:92:13:76,crystalwalter@hotmail.com,img/obama.jpg +Alyssa Collier,615-25-9944,90515,"4291 Lisa Underpass Suite 947 +Williamsbury, MO 08301-7599",1981-09-19 23:22:42,93:96:80:26:b6:b4,ddodson@parsons.com,img/obama.jpg +Gary Cook,175-99-7522,05561,"9547 Robert Ridges Apt. 667 +Jennifershire, FM 59681-4962",1976-01-19 17:03:11,71:5d:76:02:c1:16,asims@yahoo.com,img/obama.jpg +Carol Garcia,477-63-1637,27095,"666 Duke Pike Suite 322 +Mcdonaldview, CT 45999",1979-04-15 11:33:36,06:60:86:58:25:c9,amydavis@yahoo.com,img/obama.jpg +Leslie Mcclain,077-14-7538,39526,"2689 Michael Springs +Lake Rachel, MP 01465-0490",1942-06-06 13:16:02,6a:5c:42:2b:3a:19,tphillips@williams-rice.net,img/obama.jpg +Kristie Golden,583-98-4900,48360,"8549 Gary Lock +North Gabriel, AK 62613-5632",2013-10-23 09:18:14,03:a6:12:95:f2:0f,townsendanthony@yahoo.com,img/obama.jpg +Louis Salinas,327-25-1696,63281,"223 Geoffrey Viaduct +Gainesville, FL 16658",2005-09-30 21:15:45,6d:30:ad:8d:a0:b4,debra28@shaw-allen.info,img/obama.jpg +Andrew Lindsey,420-57-9988,84280,"6896 Shirley Pines Suite 547 +East Jeffrey, SD 12226-4152",1972-02-04 14:13:27,05:1a:54:10:b5:d8,sandralarsen@evans.com,img/obama.jpg +Tony Long,394-88-2497,79077,"6702 Lance Springs Apt. 231 +Jasonton, IA 91609",1932-06-10 01:03:22,ce:de:a1:56:39:96,pwright@hotmail.com,img/obama.jpg +Melissa Smith,100-10-0328,20540,"0622 Stephen Club +Timothymouth, VT 63457",1989-10-21 23:45:52,2a:90:4c:fc:02:28,garretthicks@bowers.com,img/obama.jpg +Travis Zhang,704-81-5774,12335,"366 Martinez Ramp Suite 483 +Petersonfort, NC 03014",1933-06-22 12:05:13,21:f8:37:a7:2e:82,michael95@villa-nash.com,img/obama.jpg +Ryan Castro,002-41-2970,34572,"07283 Washington Ways Suite 435 +Sabrinabury, ME 55647",1929-08-19 03:16:20,8c:df:ed:0a:d1:e1,zvelez@harris-doyle.info,img/obama.jpg +James Cisneros,507-84-1304,10590,"28875 Lisa Garden +West Jamieburgh, PW 91127",1978-11-27 03:37:46,88:1d:5b:57:6a:5e,kathrynwhite@yahoo.com,img/obama.jpg +Shawn Olson,733-41-3826,99504,"92226 Williamson Island Apt. 472 +East Anne, MO 28999",1957-08-20 05:46:58,56:79:42:c9:e5:52,jason23@hotmail.com,img/obama.jpg +William Williams,691-67-2688,96024,"867 Tyler Row Suite 988 +South Christopher, NC 34501",1984-01-18 11:22:54,b9:83:83:10:7d:bb,mooreanita@yahoo.com,img/obama.jpg +Hunter Mitchell,171-44-4820,44966,"847 Le Village Apt. 948 +Chambersshire, OR 09745",1921-07-13 06:13:34,e4:3f:9a:db:59:76,heather21@gmail.com,img/obama.jpg +Amanda Hayes,467-37-4413,32509,"79888 Lopez Way +Lopezland, MH 13925-9311",1933-06-29 11:50:15,43:a1:a9:99:1d:0b,hernandezstacey@gmail.com,img/obama.jpg +Natalie Martin,681-81-6770,72408,"0849 Laura Knoll +Lake Michael, WY 54958",2010-04-23 10:26:20,c2:70:7d:b4:09:35,steven57@keller.com,img/obama.jpg +Jo Smith,264-89-1535,87952,"6762 Kenneth Field Suite 084 +Port Keith, MT 66418-4485",1960-02-17 01:01:34,fa:a4:1a:3c:90:da,christinefriedman@hotmail.com,img/obama.jpg +William Jones,678-95-4445,18365,"294 Cassandra Streets +Danielleshire, OH 50547-9703",2009-04-22 07:07:19,84:ff:3d:0a:61:bb,sharpclifford@hotmail.com,img/obama.jpg +Krista Murray,098-02-7039,71781,"575 Higgins Estates +Mccormickshire, MD 93304-6131",1988-07-30 08:43:09,53:db:6a:b2:3f:80,pmarquez@hotmail.com,img/obama.jpg +Christopher Acosta,776-48-3923,85217,"0732 Manning Springs +Frazierside, AZ 58413-4414",1922-11-01 23:35:44,5b:66:1c:45:7d:53,richard45@yahoo.com,img/obama.jpg +Cynthia Howard,395-76-5892,79734,"338 Helen Streets Apt. 295 +Daviesland, MD 23516-4684",1967-03-30 11:28:39,df:ca:c9:57:b4:b5,marissatorres@gmail.com,img/obama.jpg +Paul Morris,158-53-4806,55390,"30833 Goodwin Trail Apt. 546 +Stephenberg, GA 80293-1612",1975-06-29 04:38:00,f6:fc:8e:b9:0d:9e,martinezdana@hotmail.com,img/obama.jpg +Kimberly Gould,190-64-8007,96231,"67457 Ramirez Mission +South Nancy, MI 39896-0005",1960-12-09 07:49:15,90:53:9f:8a:24:9a,alisongraves@murillo.org,img/obama.jpg +Annette Rose,737-82-4164,59136,"4382 Moreno Ridges Apt. 676 +Greenchester, IA 40389",2015-03-19 19:04:57,92:6c:3e:30:36:7e,rmcgee@garcia.com,img/obama.jpg +Brian Brown,819-53-9200,49710,"PSC 6082, Box 8457 +APO AE 56017",1988-05-26 00:16:26,81:2f:24:38:54:ba,mary81@gmail.com,img/obama.jpg +Peter Ford,606-77-7867,73047,"804 Anita Orchard +Doughertyland, PA 70278-5052",1955-04-18 10:08:34,68:c4:36:53:fd:a1,xrodriguez@butler.com,img/obama.jpg +Heather Fuller,145-44-6156,02423,"18493 Tyler Ramp Apt. 042 +Franklinhaven, OR 49233-7307",2015-02-20 15:23:41,40:3a:5e:1e:fa:22,jonesregina@evans.net,img/obama.jpg +Sandra Farrell,371-06-7528,07683,"999 Jenkins Isle +New Tyler, ID 19189",1997-11-08 09:54:08,14:55:a2:5e:33:e4,haroldbriggs@barrett.info,img/obama.jpg +Zachary Steele,198-24-1751,82221,"Unit 7328 Box 6640 +DPO AP 51520",1935-01-26 11:46:00,78:84:11:68:83:f3,jcohen@yahoo.com,img/obama.jpg +Jonathon Myers,518-55-1820,42953,"998 David Underpass Apt. 854 +New Melissamouth, TX 24642-3379",1960-05-19 04:04:33,42:6f:5c:3e:d2:a5,adamscrystal@hotmail.com,img/obama.jpg +Amy Watson,890-14-8493,73125,"Unit 6016 Box 5976 +DPO AE 38036",2016-12-29 07:49:07,d4:4f:18:ed:a6:59,tammyhansen@hotmail.com,img/obama.jpg +Jennifer Dean,793-91-4979,88273,"64866 West Port +Andersonland, KS 55659-1599",1985-03-07 00:04:35,cd:9e:87:03:2c:69,catherinegray@sparks-edwards.com,img/obama.jpg +Karen Shah,596-94-1170,30263,"33784 Jessica Meadows +East Erik, AZ 70249",1942-09-07 00:40:01,fc:ec:dd:dd:50:35,jonesrichard@yahoo.com,img/obama.jpg +April Campbell,131-44-0958,96265,"57932 Joshua Isle Apt. 195 +South Petertown, AK 99315-5721",1948-05-28 12:11:23,5e:98:ce:d2:2d:bd,conniejohnson@scott-cardenas.biz,img/obama.jpg +Robert Byrd,899-25-7289,39290,"Unit 5323 Box 4850 +DPO AE 66486",1985-03-21 21:22:51,e0:fb:3c:33:42:8d,joanna26@gmail.com,img/obama.jpg +Alicia Reeves,628-73-0585,10410,"9417 Thomas Shoals Suite 258 +Alanfort, TX 20476",2004-02-13 01:53:24,f7:2f:f7:f0:8d:74,sosborne@griffin.com,img/obama.jpg +Richard Johnson,549-58-4322,80262,"369 Micheal Glens +East Michaelland, AR 88082",1980-11-14 07:33:22,96:a2:6c:da:0c:cf,welchjack@gmail.com,img/obama.jpg +Timothy Callahan,653-05-5993,16375,"394 Megan Brooks +Lake Rhondashire, VT 22835-5132",1994-04-18 03:05:55,b5:c1:2c:3b:06:f1,vhuffman@gmail.com,img/obama.jpg +Kelly Jimenez,071-42-6292,46338,"PSC 6001, Box 0070 +APO AA 15130-3415",2000-11-02 00:05:00,a6:02:91:61:13:cc,bnixon@gmail.com,img/obama.jpg +Robert King,791-29-4608,51068,"3472 Stacy Glen +Benjaminstad, NV 55797-2107",1988-08-18 16:58:04,3d:b7:a4:fc:09:cc,julia24@hotmail.com,img/obama.jpg +Christine Rogers,267-12-5214,25050,"144 George Causeway +Daughertytown, VI 97344-3038",1940-11-22 12:33:36,9d:90:75:6e:7a:f9,hmoore@wolfe.info,img/obama.jpg +Brian Martin,536-49-9780,26465,"41768 Waters Island Apt. 067 +New Michaeltown, AS 24411",1929-04-06 07:52:50,7d:3a:e7:08:1e:00,bmullins@hotmail.com,img/obama.jpg +Abigail Collins,090-40-7789,07413,"09245 Victoria Glen Suite 427 +Cynthiastad, WY 30646",2002-06-20 08:07:11,c5:f0:d1:63:e9:5c,michaelfritz@hotmail.com,img/obama.jpg +Jordan Hawkins,434-48-9626,49678,"93427 Friedman Canyon Apt. 984 +Greenmouth, NV 07996-2470",2012-04-22 07:22:33,1a:13:09:c3:04:ad,kim56@brown.info,img/obama.jpg +Patrick Jordan,368-91-7897,92515,"826 Smith Mountains +Jacobmouth, VT 43603-1537",1955-10-26 06:33:07,99:c6:42:4a:04:2a,steve91@carr.net,img/obama.jpg +Katherine Martin,804-23-8570,41933,"27211 Hector Common +Williamstad, PA 38534-1135",1993-11-24 06:44:35,43:75:e3:ef:3e:60,emily41@burton.com,img/obama.jpg +Clayton Armstrong,714-40-7226,78213,"4420 Baker Viaduct +East Glennmouth, MT 24712-4997",1957-04-27 21:05:24,e8:d9:99:a4:e2:2d,amartinez@hotmail.com,img/obama.jpg +Thomas Whitney,196-46-2646,67007,"88523 Gross Greens +Dennismouth, AZ 26450",1978-10-14 06:42:49,2c:6b:3d:8d:ba:91,michaelwilson@haynes.net,img/obama.jpg +Cristina Davis,782-21-8317,84774,"Unit 9582 Box 9791 +DPO AA 40360",2008-11-14 16:52:28,3d:46:c2:3b:87:7f,edwardsantiago@hotmail.com,img/obama.jpg +Joseph Mcdonald,306-33-2373,23788,"192 Darren Passage Apt. 692 +Deborahville, KS 06353",1941-08-30 11:46:45,c1:29:71:21:92:d4,suarezamanda@smith.com,img/obama.jpg +Steven Stewart,297-50-9919,36192,"2874 Zavala Ranch Suite 252 +Kimview, KS 87617-7251",1954-09-17 16:53:09,44:0e:51:2c:34:76,drewmontgomery@chase-nunez.com,img/obama.jpg +Guy Murray,052-24-3423,99861,"1127 Bender Junctions Suite 697 +Dariuschester, MP 57062",1973-11-18 18:19:49,87:1d:1d:7b:ae:d0,mcmahondavid@anderson-kim.info,img/obama.jpg +Nicole Patel,648-61-0975,04073,"672 Manning Points Suite 914 +East Chelsealand, AR 28786",1986-01-03 00:45:11,ce:6b:5a:57:00:7a,vasquezjoseph@mays-walker.info,img/obama.jpg +Pamela Mclaughlin,401-32-9101,18611,"5273 Bartlett Mill Suite 434 +Frazierton, GA 68812-1362",1958-09-05 10:44:55,67:0f:e9:02:26:37,courtneycollins@hotmail.com,img/obama.jpg +Tammy Giles,036-51-3776,38294,"48220 James Bypass Apt. 092 +Adamberg, NC 11492-0750",2001-12-04 16:55:12,9b:8c:e0:c3:39:d8,skelley@duffy-soto.com,img/obama.jpg +Adrian Nelson,260-87-5005,95959,"1739 Richard Corners Suite 874 +Jacksonstad, NV 63677-1263",2014-04-14 02:39:21,d7:e4:72:a2:20:63,fletchereric@hotmail.com,img/obama.jpg +Kara Rivera,423-89-5854,85210,"79146 Katherine Alley Suite 791 +East Ericburgh, IL 73432",1998-12-10 16:37:51,69:ea:40:9f:6f:7c,wkelly@yahoo.com,img/obama.jpg +Alyssa Pruitt,768-46-6180,79894,"7947 Patrick Path +Mortonberg, UT 52536-7637",1971-02-13 08:42:56,ca:47:48:ed:11:f7,kathleen31@yahoo.com,img/obama.jpg +Ann Simpson,170-11-1455,38729,"6712 Bell Spurs +Jasonfort, AK 57732",1965-12-08 08:52:29,f7:0d:3f:3c:74:28,torreskaren@yahoo.com,img/obama.jpg +Dylan Austin,357-08-6793,79934,"367 Bradley Dale +Lake Melinda, FM 73584",1977-12-31 23:39:22,43:34:5a:91:e3:29,awarren@gmail.com,img/obama.jpg +Diana Patterson,708-37-5899,28963,"904 David Plaza Apt. 543 +Mooreland, MD 39866",1950-10-20 20:13:16,79:dc:58:41:a0:e5,nperez@hotmail.com,img/obama.jpg +Jenna Allen,528-24-6409,93339,"7713 Kelly Well Apt. 411 +Wesleyshire, WY 37312-1422",1991-12-27 11:27:44,0b:d1:6e:4b:c9:f8,david74@mathis.com,img/obama.jpg +Maxwell Chavez,259-75-8564,68695,"806 Garcia Curve +New James, IL 76762",2013-12-09 19:24:51,6c:60:3f:52:63:a6,garciaalex@wall.com,img/obama.jpg +Nicole Chandler,031-54-9449,72696,"Unit 4818 Box 8644 +DPO AP 07629",1945-05-18 23:32:08,ac:b3:c6:b8:6c:90,bethany85@armstrong.com,img/obama.jpg +Willie Frost,033-73-2982,76721,"PSC 9772, Box 3647 +APO AE 02373",2012-10-03 12:04:42,e7:8e:75:a7:f4:6b,william61@yahoo.com,img/obama.jpg +Mary Bennett,137-39-8369,90317,"74082 Lopez Islands Apt. 927 +Davisborough, MH 76689",1923-07-10 14:21:57,df:f7:b5:7a:1b:47,hallmichael@yahoo.com,img/obama.jpg +Melissa Weaver,748-68-1470,83129,"6182 Douglas Mews +New Josemouth, ID 67876",1919-01-26 04:25:55,dc:6b:0a:f0:8b:8d,rosehernandez@hotmail.com,img/obama.jpg +Jennifer Davenport,299-70-2403,55925,"60710 Makayla Centers +Lake Dennis, MP 66357",1943-04-30 18:34:48,8e:8a:65:b1:d1:0a,boydjane@gmail.com,img/obama.jpg +Austin Fernandez,669-43-3889,26600,"8157 Nicole Shore +Dennismouth, PW 40443-0758",1993-06-07 08:26:35,83:31:37:53:b7:d2,whitelinda@horton.com,img/obama.jpg +Melissa Collins,711-10-5212,26358,"80081 Lee Island +Markstown, OR 69007",1954-05-19 01:17:48,27:7d:d3:4c:f4:64,hilleric@david-wilson.com,img/obama.jpg +Megan Wilkins,552-01-5981,77638,"501 Bailey Gateway +Hensonhaven, DE 57215-0706",1929-02-16 19:13:22,b7:e3:7e:19:d4:1e,bowenkyle@gmail.com,img/obama.jpg +Timothy Morales,795-06-3142,91862,"6380 Travis Shoal Apt. 909 +East Shaunborough, CO 21073-5601",1979-11-13 02:25:44,56:61:00:59:bf:d3,crystalhawkins@gmail.com,img/obama.jpg +Brittney Barnett,298-82-9276,34808,"57405 Murphy Freeway Suite 637 +Alexanderburgh, MD 19422",1997-10-09 00:50:02,5c:38:16:30:2e:c2,kirsten06@gmail.com,img/obama.jpg +Katie Perez,822-21-6941,64011,"1441 Shaw Plaza +New Jameston, CT 51243",1929-09-28 11:55:19,93:b3:be:55:67:3f,stacey30@fernandez-hopkins.com,img/obama.jpg +Steven Smith,363-43-5585,17040,"43058 Christopher Point Suite 790 +Adamstad, LA 21232",1931-11-20 16:32:52,9f:59:10:35:3f:99,kevin42@gmail.com,img/obama.jpg +Ashley Church,190-87-2002,64272,"739 Kim Inlet Apt. 773 +West Elizabethtown, VA 60984",1930-09-20 16:24:50,2d:54:08:eb:b0:f4,travisadams@ramirez-brown.com,img/obama.jpg +Regina Beard,195-51-9663,47218,"34384 Thomas Crest +Dylanview, CO 99194",1921-02-07 02:27:47,9f:d1:bc:cd:ca:35,glen85@gmail.com,img/obama.jpg +Allen Duran,327-02-9759,40001,"782 Alice Rapid Suite 687 +Caseton, ME 11311",1989-04-12 12:36:53,2c:9e:f2:1c:2d:2e,dylan89@gmail.com,img/obama.jpg +Mark Haley,410-37-1717,36958,"Unit 4378 Box 1439 +DPO AP 38097",1960-10-16 21:00:24,4c:51:5b:70:4a:79,ysanchez@gmail.com,img/obama.jpg +Teresa Cox,182-76-0709,56400,"58477 Miller Tunnel Apt. 390 +West Monica, PW 89375-8820",1971-11-15 07:23:16,3d:80:d5:22:6c:a9,ljohnson@gmail.com,img/obama.jpg +Paul Pierce,109-43-9317,58008,"USNV Bell +FPO AE 29703-6179",1936-11-06 11:50:08,6f:2f:1a:aa:ac:77,thomas70@west.org,img/obama.jpg +Gary Frey,293-57-7383,92134,"USCGC Jefferson +FPO AE 07590-8830",2012-07-19 08:42:25,fd:69:c3:dd:ef:55,jameslivingston@yahoo.com,img/obama.jpg +Samantha Shah,657-07-2416,38099,"387 Smith Hill +North Jonathanton, AR 02053-8838",1940-08-14 19:52:44,0b:98:29:12:2e:19,riceryan@gmail.com,img/obama.jpg +Roberta Cox,400-20-1760,69064,"076 Christopher Pass Suite 452 +Port Alexis, GA 02291-9061",2016-11-07 19:40:37,b1:ee:f7:f7:6a:54,morgan07@garner.com,img/obama.jpg +James Davis,651-69-7997,78631,"37930 Anderson Burg +Lake Christopher, IN 37367",1944-05-10 17:51:51,9e:64:86:bc:91:48,phillipstracy@webb.com,img/obama.jpg +Brandon Bonilla,863-28-5730,69003,"1847 Lori Shore Suite 281 +Millsview, AZ 36936-4095",1917-09-04 21:26:44,bc:69:56:e8:27:1b,barbara13@anderson.com,img/obama.jpg +Alexandra Rojas,125-95-4659,14683,"298 Dickson Glens +Lisatown, CA 55347",1924-03-30 16:44:54,9d:17:07:26:74:d8,norma48@hotmail.com,img/obama.jpg +Ronnie Mcdonald,639-38-6768,93348,"890 Renee Meadow +Anamouth, MH 08804",1950-01-17 16:41:21,3b:b8:cf:6d:09:77,ulee@yahoo.com,img/obama.jpg +Megan Davis,539-33-5694,09728,"75649 Jensen Causeway +Vangland, MO 34172-9526",1943-11-26 00:44:25,be:00:73:28:d3:63,tammyferguson@yahoo.com,img/obama.jpg +Joshua Riggs,767-05-4142,42573,"1249 Jonathan Inlet Suite 749 +Jenkinsland, MO 26926-1168",1938-02-20 23:40:51,35:c4:c7:e2:37:5b,danielrodriguez@ferguson.net,img/obama.jpg +Rhonda Johnson,895-98-1681,32076,"PSC 8166, Box 6679 +APO AA 67999-1315",1962-11-21 02:13:54,e1:7f:37:58:10:1e,john16@hanna-herman.net,img/obama.jpg +Molly Glover,786-03-9902,54782,"4664 Christina Curve +Danielsland, NC 55156",1978-03-04 10:35:02,11:da:c7:64:dd:40,scottpollard@campbell.org,img/obama.jpg +Troy Brady,665-32-1645,35133,"582 Tucker Fork +Wallerbury, KY 33804",1946-07-17 02:46:54,4b:16:ce:c9:0c:4c,pricekathleen@gmail.com,img/obama.jpg +Nancy Rush,144-56-9034,36877,"72190 Hall Ridges Apt. 019 +Rodriguezburgh, AS 89111-0114",1950-06-18 09:56:59,c4:ab:64:43:57:20,rjohnson@williams.com,img/obama.jpg +Samantha Martin,045-90-7320,69209,"7989 Lucas Hill +West Diana, MA 53948",1954-11-07 14:43:46,fa:e4:8c:91:0d:97,lydia97@yahoo.com,img/obama.jpg +Gerald Graham,462-53-7205,32359,"5141 Bush Stravenue Suite 412 +Port Glen, DC 94229-5473",1963-12-22 15:10:56,15:e1:1d:c8:b1:56,georgejones@hotmail.com,img/obama.jpg +Cory Heath,306-95-4383,65420,"23163 Gina River +Johnsonmouth, NH 31471-9298",1979-10-19 09:53:28,47:7c:f7:ae:b7:ec,joe43@yahoo.com,img/obama.jpg +David Robinson,887-39-4158,47840,"6928 Hamilton Ford +East Melindaton, MS 36331-6609",1973-09-09 10:04:22,80:a7:3b:35:5f:7e,lmiller@yahoo.com,img/obama.jpg +Joseph Reyes,749-38-3460,91741,"16446 Sharp Garden +Whiteview, TX 69882-5303",1960-08-01 07:36:01,52:0a:a3:a4:0a:75,rpowell@yahoo.com,img/obama.jpg +Ariana Smith,796-69-0910,50213,"266 Paul Tunnel +Janiceville, IN 89860",1982-07-25 07:43:45,b9:8c:03:20:f2:da,phill@yahoo.com,img/obama.jpg +Brett Fuentes,438-77-2477,82133,"634 Nicolas Coves Apt. 234 +Bakerport, MD 79504",1989-07-31 18:58:10,4c:7d:f2:24:b5:10,james70@lewis.com,img/obama.jpg +Stacy Williams,615-26-0040,20090,"PSC 3770, Box 5143 +APO AE 00210-3367",1977-12-18 21:47:24,04:3b:73:bf:a0:3c,michaelmcdonald@harris.com,img/obama.jpg +Martin Ortiz,284-45-7349,89099,"USNS Olson +FPO AA 00574-6039",1951-04-22 03:15:08,02:a8:96:ad:c8:32,johnsonlori@gmail.com,img/obama.jpg +Richard Rhodes,441-54-1735,56199,"3725 Patton Extension Apt. 994 +North Jo, ND 99822-7384",1951-06-30 00:43:53,ba:2e:5b:1a:46:69,hannah57@gmail.com,img/obama.jpg +William Hanna,473-88-7770,09365,"3286 Graves Plain Apt. 219 +West Nicoleborough, ID 84225",1997-08-21 12:22:12,61:ee:01:66:03:29,thomastodd@gomez.com,img/obama.jpg +Nicole Cooper,624-93-4709,90478,"383 James River Suite 240 +Chadview, IA 67766-8505",1934-08-23 02:33:02,69:eb:5a:65:31:29,sarah89@yahoo.com,img/obama.jpg +Joanne Garcia MD,022-47-6180,62866,"28861 Maria Square +South Matthewfurt, ID 13971-7475",1959-11-13 01:28:36,17:d5:96:33:99:7e,davisdavid@hotmail.com,img/obama.jpg +Joshua Green,597-37-5334,83938,"9127 Orozco Mission +Earlfurt, ND 38199",1964-03-07 22:37:34,d7:7f:6d:c0:77:28,paulmurphy@bailey.com,img/obama.jpg +Austin Edwards,208-09-4707,33271,"2757 Kristina Glens +Kelleyport, KS 12384-1605",1923-08-23 21:02:03,00:0e:f3:58:55:2f,bhernandez@kelley.org,img/obama.jpg +Alexis Hoover,343-47-4078,09091,"PSC 2784, Box 0734 +APO AE 87012-5628",1992-04-22 17:26:49,5d:c0:df:61:4a:79,corey51@randall-hall.net,img/obama.jpg +Steven Cox,646-12-3305,11917,"5999 Scott Road +New Robert, PW 00310-1121",1936-03-11 01:24:33,db:50:00:86:c6:27,sarahwest@cooper.com,img/obama.jpg +Dr. Justin Campbell,894-88-3733,14634,"149 Todd Island +Kaylaland, NJ 48737-6313",1946-09-27 00:32:30,43:26:22:91:55:ce,johnsonalyssa@yahoo.com,img/obama.jpg +Brianna Murray,326-09-3968,10934,"PSC 2753, Box 7943 +APO AE 21580-3673",1958-04-21 12:56:28,e6:09:b5:08:c9:dc,pattersonmichael@hotmail.com,img/obama.jpg +Kristen Benson,731-20-1422,81692,"1250 Sean Plain Apt. 857 +South Cody, WY 78847-7245",1979-04-03 15:40:56,bb:ad:37:2d:b4:11,jessica00@hotmail.com,img/obama.jpg +Crystal Mullen,619-80-9116,87293,"3230 George Viaduct Apt. 237 +Marshallstad, VA 81095",1956-04-30 16:26:03,31:12:a9:90:3d:6c,rshea@hotmail.com,img/obama.jpg +Brandy Cooper,183-30-2401,85711,"0018 Fuller Centers Apt. 038 +West Robert, MI 59890-0563",1927-08-30 23:36:18,81:af:a9:a6:e2:8e,brianphillips@hotmail.com,img/obama.jpg +Renee Rodriguez,700-01-6403,38346,"82063 Payne Vista Suite 261 +Port Robertbury, IN 82428-3290",1966-09-17 18:59:18,d6:7c:76:65:58:1e,akemp@young.com,img/obama.jpg +James Johnson,160-89-4198,43499,"USCGC Turner +FPO AA 97482",1969-06-19 08:22:33,fe:9c:04:4c:ef:62,kfoster@cox.com,img/obama.jpg +Crystal Morgan,165-23-0857,54047,"697 Tabitha Hills Apt. 396 +Connorchester, VA 03063-3034",2015-12-18 17:46:37,61:28:75:90:30:99,melissapalmer@hotmail.com,img/obama.jpg +Juan Ellis,857-67-4793,76758,"3211 Rose Run Suite 919 +Meyerschester, MN 79381",1965-04-20 07:09:16,9f:0b:2b:c9:f8:7b,kevin67@dunn.com,img/obama.jpg +Misty Martinez MD,324-43-3509,30802,"123 Martin Ridges +Montgomeryville, KY 52979-4836",2000-09-01 04:13:49,5e:67:e0:20:1b:29,jessicawarren@hotmail.com,img/obama.jpg +Jerry Garcia,433-07-1146,50561,"793 Jennifer Mall Apt. 781 +Waltonburgh, NC 08535",2007-09-13 14:12:27,81:eb:bd:4b:dc:d3,kevin67@shelton-bell.com,img/obama.jpg +Karen Davis,181-46-7385,91515,"334 Amanda Parkway Suite 966 +Williamsonfort, DE 48701-2646",2015-12-09 20:36:53,1f:30:eb:61:16:44,vcurtis@smith.info,img/obama.jpg +Stephen Duran,400-40-2967,62856,"835 Kenneth Parks +West Matthewport, MT 11960",1931-02-22 19:07:06,59:43:eb:ff:3d:46,bradshawtheodore@gmail.com,img/obama.jpg +Kayla Strickland,772-01-5700,37708,"30408 Pierce Pine +Port Gabriel, AL 93857-3477",1929-10-27 06:29:30,06:9b:f1:bd:0d:9c,vphillips@yahoo.com,img/obama.jpg +Vanessa Burke,758-20-4190,57861,"328 Douglas Lakes +New Larry, ND 35145",1971-06-27 04:46:36,f9:c4:c1:7d:a0:dc,qgarner@yahoo.com,img/obama.jpg +Patrick Goodwin,267-87-4373,99399,"4618 Gordon Lakes Apt. 286 +North Patricia, IL 72215",1987-01-09 12:39:11,f7:b5:db:38:8a:45,dale89@yahoo.com,img/obama.jpg +Dana Hill,466-16-2957,18829,"4893 Brown Road +West Julia, CT 12032",1958-11-04 00:30:46,35:f0:04:a0:83:eb,laura23@ruiz-parks.com,img/obama.jpg +Robert Lewis,043-54-4977,57299,"017 Fox Lodge +Cynthialand, ID 89501",1923-06-28 13:47:14,ee:cf:b3:ed:82:dc,tinaherrera@ramirez.com,img/obama.jpg +Kim Ruiz,538-54-9534,67149,"USS Lopez +FPO AE 49389",1999-08-27 15:54:27,af:eb:fd:38:ab:01,megannewton@strickland-rogers.com,img/obama.jpg +David Crane,090-25-5197,91770,"421 Warner River Apt. 470 +New Josephmouth, TX 81410-0424",1958-12-19 17:45:18,8f:70:d3:16:8d:89,sheltonjames@king-powell.com,img/obama.jpg +Elizabeth Mejia,311-50-0947,45472,"055 Paige Pike +New Brookemouth, AS 11247-1128",2002-04-15 17:41:14,af:7b:0e:e7:75:79,morganjeremy@bradley.com,img/obama.jpg +Julie Sanchez,317-15-6738,06656,"USCGC Williams +FPO AP 89432",2007-09-15 14:59:17,06:84:3a:33:51:89,ycarter@hernandez-rodriguez.com,img/obama.jpg +Sydney Moreno,372-86-4339,65786,"211 King Meadow +South Stephanie, MO 41203",1975-11-23 08:45:47,87:5c:3d:20:36:09,mariajohnson@hall.org,img/obama.jpg +Wendy Hodge,859-34-2052,64514,"82077 Woods Radial Suite 469 +Port Valerie, HI 82649-4295",1981-08-09 07:58:02,54:3f:b7:46:ec:f7,wdaniels@baker.com,img/obama.jpg +Michael Myers,710-04-3637,59764,"442 David Spring Apt. 730 +Kochmouth, CA 05361-4660",1979-08-18 15:48:29,5b:d9:49:c6:7e:75,sandymontgomery@lane-miles.net,img/obama.jpg +Kathleen Campbell,358-61-4250,36068,"668 Lewis Highway Apt. 474 +North Nicolefort, MI 35096",1990-09-07 00:03:29,20:29:50:d6:7f:43,rebeccagillespie@yahoo.com,img/obama.jpg +Daniel Gray Jr.,698-69-0853,69406,"USS Hayes +FPO AP 17510",2015-07-04 20:00:47,70:3c:5f:63:c4:65,thomasbaxter@valencia.net,img/obama.jpg +Kristin Wilson,162-74-6035,57020,"93202 Stacy Heights +South Scottberg, VI 01775",1953-02-14 21:04:57,e3:f6:2c:16:ac:44,justin76@palmer.info,img/obama.jpg +Elizabeth Navarro,116-05-3877,95922,"423 Landry Burg +Wellsbury, PW 93839",1940-02-12 12:04:53,9c:bb:a7:f3:a6:ad,brucekathryn@grant.com,img/obama.jpg +Megan Prince,103-52-1736,76348,"1226 Lindsey Islands +Kristenburgh, WV 86278",2001-03-09 05:00:16,60:c5:3b:e1:eb:b0,tammy89@harris.com,img/obama.jpg +Jordan Wilson,441-98-4295,94885,"17132 Archer Inlet Apt. 602 +Simpsonmouth, PW 90016",1933-07-05 16:01:57,9e:59:34:60:9c:0f,ckennedy@hotmail.com,img/obama.jpg +Christine Herrera,280-06-6800,99524,"1377 Hernandez Hills Suite 720 +Lauramouth, MS 16940",1929-07-04 09:07:57,eb:76:7e:00:4b:e0,marissaanderson@moore.com,img/obama.jpg +Thomas Olson,001-27-6709,95713,"USNS Pham +FPO AA 91301-4731",1951-11-14 16:49:10,b6:e2:e0:7d:b5:e4,kingheather@yahoo.com,img/obama.jpg +Timothy Schultz,651-08-1180,32555,"561 Robles Cove Suite 154 +North Shaneport, AK 62928-9495",2013-01-18 22:35:55,82:3e:7d:f6:5e:62,graykim@hotmail.com,img/obama.jpg +Bradley James,159-28-5076,16485,"871 Blake Spur Apt. 230 +Jamesland, WA 58886-4761",1957-05-08 19:11:25,48:ce:6f:b3:d4:25,igreen@miller.net,img/obama.jpg +Morgan Shaw,123-06-7105,03042,"41315 Lee Shores Apt. 456 +South Vanessa, IL 05794",1938-09-01 21:08:40,80:6b:a1:46:49:97,paigemcmahon@warner.com,img/obama.jpg +Laura Smith,594-91-7746,42018,"PSC 1760, Box 2196 +APO AP 24232",1925-05-26 01:29:40,12:19:00:0c:d5:7f,janetgriffin@gilbert.org,img/obama.jpg +James Leonard,021-97-1276,61030,"7291 Brent Views +East Theresa, VA 30762-1716",1978-08-11 02:14:44,6a:fe:c7:be:3a:c0,danielsbrian@hotmail.com,img/obama.jpg +Tamara Wilcox,490-79-1132,61026,"095 Payne Brook +New Lindsay, TX 36247-4950",1968-03-03 14:48:01,0c:af:d4:dd:ce:95,erica59@gmail.com,img/obama.jpg +Nicole Pennington,891-15-1174,29239,"695 Sarah Centers +West Danielleland, HI 89296",1935-03-27 13:51:48,aa:90:23:d6:fa:67,dawnortiz@yahoo.com,img/obama.jpg +Stephanie Holden,874-31-1449,59904,"64099 Daniel Village Apt. 916 +Griffithberg, AZ 61458",1947-09-11 12:35:03,47:14:a4:b4:28:4c,washingtonraven@hernandez.info,img/obama.jpg +Jason Fernandez,747-05-1180,80685,"USCGC Cole +FPO AE 95648",1952-11-25 01:47:40,c1:71:2b:af:3a:5a,michelle57@hotmail.com,img/obama.jpg +Dana Green,035-88-4720,69822,"0883 Herring Rapids +Jonathanport, AS 38348",1980-05-14 08:16:02,d8:92:0d:e9:2b:26,nelsontodd@galvan.net,img/obama.jpg +Christine Brown,799-17-4819,95987,"95729 Jeffrey Loaf +Jeffreyview, NH 08360-1016",2004-10-30 02:39:58,89:82:76:c9:aa:52,patricklyons@hotmail.com,img/obama.jpg +Kenneth Smith,288-51-5408,84478,"05878 Johnson Gardens +Jenniferstad, AR 23616",1990-12-19 11:23:43,ef:07:ec:b0:e2:29,devinglover@hotmail.com,img/obama.jpg +Jessica Yoder,725-10-0687,64579,"351 David Station +Holmeshaven, GA 28568-7871",1936-07-21 16:36:55,4c:3d:f3:98:52:b8,burnstammie@smith-lambert.com,img/obama.jpg +Jared Serrano,862-66-1091,94728,"7042 Wong Run +West Sarah, IA 20589",1935-04-26 22:08:25,42:a2:5a:f5:f9:dd,mjones@moore.com,img/obama.jpg +Kelsey Evans,600-30-6865,42057,"71824 Katrina Villages Apt. 537 +Burgesshaven, WA 06326-3271",2008-03-01 11:00:53,21:91:00:e2:3f:d7,jonathan81@yahoo.com,img/obama.jpg +Seth Farley,101-51-0997,37269,"898 Rachel Turnpike Suite 573 +Wallacefurt, AK 93557-5387",1988-06-02 23:54:33,51:d7:e8:a2:a0:7c,yangmelissa@bradley.net,img/obama.jpg +Wendy Short,625-97-2377,96340,"1086 James Course +New Gary, MA 88080",1997-01-02 05:17:26,2f:1f:8f:cf:16:ec,oowen@yahoo.com,img/obama.jpg +Henry Martinez,881-01-1840,47268,"259 Oneal Mountain Apt. 246 +Lake Ashley, NH 00357-9269",1920-10-28 10:47:47,bb:80:d9:ca:3c:a6,olivia94@gmail.com,img/obama.jpg +Vanessa Benitez,539-56-1005,46788,"683 Jeffrey Creek +Lake Lisaland, NC 19188-9940",1942-02-16 23:50:03,be:6d:92:e5:96:83,victoriabridges@gonzales.com,img/obama.jpg +Christine Gray,040-67-5068,15071,"USCGC Campbell +FPO AP 59704",1945-02-13 13:28:20,da:39:cf:e0:62:9e,sethcooke@gmail.com,img/obama.jpg +Stephen Wright,856-85-5798,35554,"70964 Kidd Trail Apt. 413 +Lawrencestad, PA 55411-7835",1926-04-27 19:30:14,c5:76:a7:37:48:26,katherinebrown@brown.org,img/obama.jpg +Alison Ellis,758-39-7048,75519,"623 Paul Gateway Apt. 464 +Masonville, NJ 13897-9656",1971-03-01 14:59:12,55:66:44:fc:6e:75,jcrawford@gmail.com,img/obama.jpg +Michelle Ellis PhD,386-79-1205,56695,"3699 Daniel Mountains +North Alexanderton, KS 89922",1997-06-04 20:00:08,25:6a:d0:de:d8:78,christopherbrown@decker-williams.com,img/obama.jpg +Harold Hammond,790-20-6312,23191,"429 Jones Track Apt. 548 +North Alicia, UT 60821-4684",1964-01-12 14:44:29,c7:f2:04:3d:f6:1d,kingkari@humphrey-thompson.org,img/obama.jpg +Jennifer Bennett,019-02-6406,65390,"36867 Shannon Passage +New Charles, CO 92012-4349",1970-03-17 00:06:06,fd:cf:1b:7f:c0:02,ffowler@collins.com,img/obama.jpg +April Wood,479-73-9784,92549,"Unit 4155 Box 9985 +DPO AP 92594",1946-08-04 04:17:27,b1:c2:19:67:2d:68,catherinemccullough@herrera.info,img/obama.jpg +Diana Perkins,652-64-1643,58570,"PSC 5881, Box 4927 +APO AE 00074-3395",1975-03-04 19:07:29,f6:24:bc:61:6a:b3,christophermalone@hotmail.com,img/obama.jpg +Brandon Solis,824-56-0487,34792,"06111 Fitzpatrick Inlet Suite 711 +Lake Jose, VA 60551",1936-01-03 12:15:05,4f:02:75:0d:b7:57,jessica26@macdonald.com,img/obama.jpg +Nicole Mccann,172-24-0782,27909,"0866 Hunt Shore Apt. 420 +Aprilberg, CT 24798-1001",2000-09-17 07:41:49,83:f2:39:8b:d8:12,sheilaquinn@gmail.com,img/obama.jpg +Jose Griffin,245-83-0238,16440,"Unit 2734 Box 9298 +DPO AP 87992",1931-09-11 15:57:24,6c:a7:29:01:65:0a,rubiomaria@moore.com,img/obama.jpg +Elizabeth Porter,115-40-4033,78769,"5887 Garza Walks +Port Donald, VA 63132",2008-12-01 03:30:20,fc:50:71:33:e1:fb,lindseyhernandez@schultz-harris.com,img/obama.jpg +Teresa Scott,639-94-0590,80244,"69517 Wallace Dam Suite 868 +Lake Jeffrey, TX 88409-2398",1981-02-26 10:52:58,1f:05:15:da:93:9d,warrensteven@maynard.com,img/obama.jpg +Kimberly Ramirez,615-11-3797,78305,"511 Jared Manors Suite 022 +Thompsonhaven, IN 88442-9856",1958-10-18 12:21:11,4c:c6:76:b8:ed:54,jenniferalexander@gmail.com,img/obama.jpg +Miss Christine Lawrence PhD,290-22-1124,44947,"904 Smith Forge Apt. 104 +East Lorimouth, MP 10629-6182",1981-11-16 12:32:14,1c:34:b0:26:98:61,hinesjennifer@olsen.org,img/obama.jpg +Gabriel Stewart,357-33-9829,18701,"399 Adam Keys Suite 450 +South John, MT 15446",1933-11-11 05:39:16,0a:d0:fa:56:3c:7d,dickersonkyle@rose-thompson.org,img/obama.jpg +Marcus Thompson,209-37-6483,20457,"4415 Moore Vista Apt. 516 +Joneston, AK 19956",2003-05-09 10:15:01,15:46:50:9c:4a:89,logan58@jacobson.info,img/obama.jpg +Darrell Brown,106-24-4833,88221,"42199 William Island +East Stephanie, ND 49805-2327",1952-07-20 21:06:38,90:44:6b:15:ff:cf,samuel30@gmail.com,img/obama.jpg +Marcus Schwartz,464-07-7252,79379,"80023 Matthew Fall Suite 527 +Jenniferborough, NY 98504",1983-06-08 06:59:54,81:26:76:59:a3:0d,xmckinney@yahoo.com,img/obama.jpg +Allison Smith,216-29-1544,90750,"14149 James Islands Apt. 093 +Oscarborough, OR 26493",1954-05-20 08:50:47,0f:de:97:51:e7:4f,cummingsamanda@yahoo.com,img/obama.jpg +James Moss,849-17-2709,23748,"97969 Lane Square +New Brandonland, VI 76179-0594",1967-09-21 17:44:07,ce:16:3c:b5:98:07,trujillobridget@yahoo.com,img/obama.jpg +Barbara Brown,817-87-4494,69969,"3736 Harrison Gardens +Lake Steven, TN 40744-2922",1985-11-29 01:27:35,69:ff:6b:d7:8a:ed,paulconrad@yahoo.com,img/obama.jpg +James Hunter,606-01-1402,46603,"4330 Parker Passage +Brooksmouth, CA 64390-3869",1987-11-02 21:45:51,ac:62:93:be:18:86,kevin66@yahoo.com,img/obama.jpg +Steven Beck,854-21-4165,45993,"93101 Kayla Glens +West Stephanie, NE 34288-6793",1953-11-18 05:24:27,14:74:52:d0:2f:42,christopherhahn@manning.biz,img/obama.jpg +Anthony Banks,637-93-3916,88207,"801 Mary Haven Apt. 051 +Tammyshire, PR 09191-9615",1946-09-04 04:03:41,65:7a:ef:1b:5b:bd,walkercatherine@gmail.com,img/obama.jpg +Jessica Daniels,846-32-7869,48720,"42970 Nicole Streets +Lake Michael, WV 93104",1941-08-23 23:25:12,aa:6e:c3:55:3a:70,alvarezchristopher@bennett-strickland.com,img/obama.jpg +Catherine Hall,252-14-3243,28229,"2152 Thomas Overpass +Aprilborough, HI 46217-5454",1948-05-16 05:30:29,70:1a:79:6a:a0:d2,zmartinez@gmail.com,img/obama.jpg +Catherine Rich,150-31-5939,89673,"PSC 5074, Box 1098 +APO AP 85550",2009-05-09 14:10:27,cd:14:4b:b7:fb:6c,tgreen@hotmail.com,img/obama.jpg +Christopher Cunningham,209-99-1610,03467,"30763 Jonathan Corner Suite 318 +Elizabethburgh, MI 27203-1081",1993-06-10 00:32:53,65:58:7b:5e:f7:3b,julia97@yahoo.com,img/obama.jpg +Angelica Anderson,364-43-5304,09226,"87766 Holly Lake Suite 472 +New Jose, OR 66337",2004-07-12 07:35:08,dd:78:62:e3:94:f5,dharris@kirk-marshall.com,img/obama.jpg +Jeremy Phillips,101-05-3640,79633,"658 Joseph Rest Apt. 980 +East Alicia, KY 58059",1940-12-09 13:55:39,6b:56:ca:75:c3:d9,anthonyjackson@gmail.com,img/obama.jpg +Jason Ferguson,231-94-6327,18086,"9282 Joe Stream Apt. 510 +Port Christopherstad, KY 52563-6893",1965-04-12 11:09:19,f9:d4:ec:a5:a3:c7,martin51@edwards.info,img/obama.jpg +Shannon Arroyo,525-22-4742,79932,"830 Jennifer Gateway Suite 817 +South Brianamouth, SC 65713",2006-05-04 05:41:50,80:6d:f9:ca:02:9b,harperjennifer@gmail.com,img/obama.jpg +Miss Marissa Hernandez MD,070-01-9918,03046,"741 Howard Ports Suite 365 +New Kennethberg, KS 93133",1960-11-26 16:04:18,46:09:3b:9a:9d:e8,sean11@hotmail.com,img/obama.jpg +Nicole Hill,453-82-2706,54416,"064 Ryan Route +Lake Krista, VT 92834-7901",1993-09-23 20:19:56,33:b2:87:9d:68:04,johnsontroy@gmail.com,img/obama.jpg +Miss Terri Mcbride,891-41-1981,07158,"359 James Terrace Apt. 420 +Aguilarmouth, VI 91529-0842",1921-05-27 23:14:51,4f:36:41:7e:01:a1,dawn17@macdonald.net,img/obama.jpg +Donna Graves,849-11-0956,43563,"3372 Linda Island +South Shawn, HI 68402-0849",1973-12-30 06:26:40,1b:62:0a:49:e1:26,thomasnancy@conway.org,img/obama.jpg +Christopher Brooks,808-28-0703,24486,"161 Sandra Inlet Apt. 447 +Kristimouth, KY 35806-8048",1934-04-11 03:19:57,c9:45:08:c2:ae:74,stephenwheeler@yahoo.com,img/obama.jpg +Jason Diaz,263-10-4448,07890,"8314 Murphy Station Apt. 097 +North Denise, OH 52967",1996-03-07 19:01:40,3b:8e:46:44:70:86,jason82@hotmail.com,img/obama.jpg +Scott Wilson,456-73-7579,65000,"6571 Gilbert Track Apt. 442 +West Barry, SC 60471",1934-03-14 07:33:59,e0:72:8b:78:5f:e3,anthony54@hotmail.com,img/obama.jpg +Kevin Young,603-65-9623,73906,"976 Fields Walks Apt. 835 +East Kimberly, VA 90428-7459",1991-12-07 01:09:39,ae:4a:59:87:1f:d8,hpaul@gonzalez.org,img/obama.jpg +Catherine Brennan,564-17-3945,89912,"176 Phillips Well +Andersonmouth, SC 06741-1622",2009-06-20 00:50:04,fc:79:dc:f1:a0:fb,rhonda09@hotmail.com,img/obama.jpg +Nicole Lopez,009-85-0675,91061,"997 Mary Burg Apt. 574 +Brittneymouth, GU 46869",1924-01-08 03:48:03,85:fd:aa:54:cb:92,yshah@gmail.com,img/obama.jpg +Elizabeth Johnson,677-33-2329,48922,"8602 Hogan Springs Apt. 027 +West Patriciafort, WA 78596",1919-12-30 15:13:59,a7:8a:f3:cb:f5:1b,harrisjeffery@gmail.com,img/obama.jpg +Shannon Campbell,008-96-3897,59780,"04738 Misty Run Suite 373 +Port Russellshire, KS 78301-5176",1932-08-31 11:42:11,fb:6a:07:54:88:5f,pclark@kim.com,img/obama.jpg +Emily Mason,899-65-0066,73496,"585 Hurley Cove +Nathanmouth, MN 76517",2017-03-20 18:54:10,39:45:ec:53:66:c9,dalton72@hotmail.com,img/obama.jpg +Emily Gonzalez,076-06-4411,15154,"85514 Alexis Locks +Greenmouth, NJ 97783-0011",2006-11-07 07:46:48,c4:7a:e3:f8:cc:7f,williamsdamon@conley-flores.com,img/obama.jpg +Colleen Peterson,262-36-0483,23101,"Unit 4286 Box 4554 +DPO AP 35924",1928-06-17 11:46:49,9b:20:0c:7e:7a:f4,jeremyquinn@yahoo.com,img/obama.jpg +Todd Barker,531-04-6077,88583,"38957 Terry Valleys Apt. 803 +Kennedyport, MO 09973-2958",1975-12-10 13:10:11,98:25:8f:ae:cb:31,xbaker@gmail.com,img/obama.jpg +Terry Robinson,076-26-7866,19786,"61165 Cunningham Ridge +North Nicholas, IN 83636",1939-07-26 20:31:17,7c:86:0b:ea:20:5e,rossalejandra@hotmail.com,img/obama.jpg +Crystal Campbell,036-53-0648,13708,"2998 Katelyn Highway +Goodwinchester, SD 17771",1972-08-31 07:25:05,d0:2a:25:01:ca:40,qhart@garcia.biz,img/obama.jpg +Anne Nelson,489-58-6943,79372,"7979 Richardson Mount +Alanborough, NE 18605",1950-07-11 13:21:21,3c:13:f8:d5:cc:2b,uelliott@hotmail.com,img/obama.jpg +Kelly Hall,750-58-6815,12967,"8037 Jose Neck +South Ronaldtown, NV 23386",1979-02-25 11:31:21,70:3c:f4:66:b6:0a,kleblanc@estrada-roberts.com,img/obama.jpg +John Sanders,088-35-4916,09595,"95424 Maria Garden +Robertport, DE 42980",1951-07-30 01:14:00,87:ca:3b:c3:93:71,kjordan@yahoo.com,img/obama.jpg +Christine Allen,801-74-7751,88534,"790 Grant Isle Suite 098 +North Thomasmouth, DC 01294-0413",2002-02-19 03:46:11,ce:e7:d4:5f:3c:35,crossrichard@scott.com,img/obama.jpg +Ryan Noble DVM,706-64-4435,19150,"4754 Christine Squares +Port Markville, MP 77245",1988-08-25 11:21:47,e9:ef:9d:f5:c8:2d,ariana88@johnson-martin.com,img/obama.jpg +Michael Gray,599-76-6370,83410,"69688 Williams Field Apt. 894 +Anthonybury, OK 04176",1947-07-29 21:15:50,9a:c7:bd:4b:0a:21,claudia01@hotmail.com,img/obama.jpg +John Randolph,492-88-5171,58498,"08303 Carmen Lock Suite 755 +Maryside, WV 71996-5979",1945-09-24 15:34:07,b6:aa:4f:09:16:d1,morgan61@hotmail.com,img/obama.jpg +Steven Franklin,435-09-2350,35573,"70529 Jones Fords +South Christopherburgh, UT 91328",1962-04-13 07:47:02,b7:c0:b0:93:27:7f,christophershaw@gmail.com,img/obama.jpg +Barbara Wood,022-89-8426,77634,"24146 Amber Isle Apt. 786 +South Megan, HI 74848",1930-01-27 12:57:26,d5:28:dc:18:89:b5,graymelissa@young.info,img/obama.jpg +Denise Banks,231-84-0382,24280,"19932 Benjamin Islands +Port Makaylaville, PR 86888-8410",1968-09-17 02:54:30,6e:24:04:f4:dc:0b,mark91@yahoo.com,img/obama.jpg +Carrie Espinoza,216-04-8751,35649,"521 Kimberly Stream Apt. 409 +Wellsshire, NC 96542",1976-09-19 13:00:28,0c:7e:89:d8:68:08,julie79@hotmail.com,img/obama.jpg +Justin James,082-70-3911,23096,"515 Ortiz Turnpike Suite 987 +Rodneyville, KS 86781-7131",1922-07-01 18:37:02,bd:32:92:2b:e2:07,millerlogan@graham-jordan.com,img/obama.jpg +Jonathan Holt,516-18-1680,69777,"26956 Lee Valleys Suite 427 +Smithbury, NM 31902-1651",1943-12-20 15:01:07,64:c5:b4:c2:52:c5,pollardjesus@gmail.com,img/obama.jpg +Alison Harvey,279-94-6544,51199,"014 Rodney Brooks +Lake Renee, NE 47860-6096",1963-01-03 08:48:26,33:96:f1:c5:28:5a,reynoldsmichael@hotmail.com,img/obama.jpg +Sheila Green,486-04-6216,88531,"0410 Mary Ville +Barreraville, AS 00354",1986-09-03 09:32:33,b4:46:25:77:e0:77,millercraig@yahoo.com,img/obama.jpg +Dr. Nancy Dixon DDS,668-86-2911,92904,"71427 Clark Ways +Andrewberg, MS 47452-7820",1923-04-01 20:40:44,d1:48:92:c4:7c:35,marshanthony@miller.net,img/obama.jpg +Sharon Estrada,547-42-3813,88304,"2363 Bradshaw Mills +East Tony, OR 67256-1009",1948-11-22 02:33:58,b6:2c:ee:3a:14:a0,adam33@gmail.com,img/obama.jpg +Kristen Berry,533-90-3181,24102,"9789 Schultz Street Apt. 258 +Gouldburgh, MP 44524",1940-10-17 02:16:09,50:10:2a:c4:d6:68,johnsonlauren@green.com,img/obama.jpg +Julia Collins,346-10-1333,10414,"969 Jimmy Garden +West Timothyton, NJ 23163",1940-07-08 09:15:02,84:ca:54:ea:86:80,kingmia@robbins.com,img/obama.jpg +Robin Ramirez,075-85-4150,18206,"1095 Hernandez Ports Suite 334 +Reyeschester, AK 16909-4969",1929-12-24 18:41:13,e1:a5:12:87:d2:c8,jensenjennifer@gmail.com,img/obama.jpg +Todd Jenkins,653-74-0360,83758,"Unit 0370 Box 7516 +DPO AP 88044",1990-01-16 11:21:10,46:05:b5:f5:bc:62,dustinhernandez@walker.org,img/obama.jpg +Lauren Wright,437-79-1585,26464,"454 Ryan Prairie Apt. 717 +Watsonside, MT 74482-2313",1971-02-15 03:04:13,7f:67:e4:4c:b3:5c,carmen28@rosario-maddox.info,img/obama.jpg +Victoria Morrison,669-97-7001,65387,"83558 Mark Burgs +North Derrickside, NV 47167-4902",1931-04-16 02:03:37,8f:99:9e:c1:11:64,robert27@gonzalez.net,img/obama.jpg +Katherine Waller,072-78-4008,21789,"904 Ashley Summit +Port Elizabeth, VA 98139",1986-08-04 09:55:38,51:ba:21:f9:d8:62,jacobevans@jackson.com,img/obama.jpg +Randall Ashley,321-61-6029,12195,"321 Wilson Plains +Port Carlaton, VA 44894",1936-04-24 08:17:00,41:a9:d8:da:c6:3e,vwhite@hotmail.com,img/obama.jpg +Jessica Martin,163-88-9063,41922,"27453 Sharon Forest Apt. 732 +Jessicamouth, FL 08658-4599",1933-03-11 03:44:33,ff:e8:2d:02:34:61,lharris@ramirez.com,img/obama.jpg +Melissa Williams,422-42-0378,02863,"0786 Kimberly Motorway +West Alexa, ME 22237-3165",1941-03-27 06:14:41,9d:f3:ec:db:cf:cb,eric66@gmail.com,img/obama.jpg +Monica Drake,013-09-2423,58104,"76451 Sandoval Corners Apt. 991 +Hicksberg, GA 55645-2083",2008-09-08 20:31:21,e7:2a:32:b4:a9:94,brookehayes@yahoo.com,img/obama.jpg +Rachel Cole,174-69-5246,43435,"PSC 4613, Box 9340 +APO AP 83820",1954-09-28 19:12:27,ea:a6:4d:d1:ae:3a,nfoster@gmail.com,img/obama.jpg +Andres Maldonado,215-38-7142,32060,"1544 James Ridges Apt. 495 +Aguilarhaven, NE 50336-0147",1994-02-22 04:39:16,f1:13:21:fb:44:6f,adamsmith@yahoo.com,img/obama.jpg +Michael Blankenship,063-12-2250,22882,"16347 Thompson Island +New Charlesmouth, OR 52269",2001-12-03 03:51:03,82:7c:71:ee:39:a0,christophervalencia@romero.com,img/obama.jpg +Robert Smith,363-57-8141,49814,"PSC 3733, Box 4201 +APO AP 90154",1923-01-21 18:29:26,7e:44:db:19:e8:ec,robertwilliams@williams.org,img/obama.jpg +Brian Gonzalez Jr.,559-91-3487,57266,"990 Stone Shoal +South Amanda, ND 59059",1972-11-29 18:13:23,24:aa:08:ec:3f:e1,xjackson@gmail.com,img/obama.jpg +Jessica Stevens,033-57-7923,72228,"053 Marsh Way Suite 454 +Lake Lisabury, ME 34620-3677",1968-02-12 07:10:30,90:f9:3e:1d:0a:a2,hallkeith@hotmail.com,img/obama.jpg +Lisa Marshall,523-16-0306,66711,"6334 Lauren Tunnel Suite 534 +Brianstad, NE 48100",1958-06-30 17:06:12,7e:4d:b8:75:39:7c,marcoballard@yahoo.com,img/obama.jpg +Linda Anderson,808-64-8779,32425,"65325 Wong Plains +Josephtown, AL 39184-7726",1925-11-09 06:57:52,61:f0:b7:41:9e:46,kyang@hotmail.com,img/obama.jpg +Alexander Wilson,731-84-7778,44746,"68678 Amanda Rest +Samanthafort, IA 96765",1959-04-17 09:19:51,72:3d:d9:fb:3a:39,jillglenn@smith-brown.com,img/obama.jpg +Justin Jones,148-32-8672,37232,"9617 Wanda Wall Apt. 377 +Port Rebecca, WA 38560",1986-11-22 16:20:39,47:50:6d:fb:08:bc,sanchezregina@gmail.com,img/obama.jpg +Nancy Christensen,634-56-3931,07756,"0682 Thomas Prairie Apt. 232 +Lake Kelli, CT 91726-5368",1984-11-03 10:02:07,15:4e:4d:03:e4:c3,elizabeth80@griffin.info,img/obama.jpg +Clinton Jimenez,117-10-1209,76932,"4242 Jonathan Fork +West Jamesmouth, MP 46062-4730",1992-01-29 11:32:34,20:3f:b9:0d:a4:60,christy53@gmail.com,img/obama.jpg +Elizabeth Davis,196-14-1395,08191,"Unit 4130 Box 6496 +DPO AE 91555-5083",1944-01-20 07:13:27,e7:69:24:0e:8c:5f,qwalker@yahoo.com,img/obama.jpg +Tracy Warren,025-77-4177,50598,"USS Meyer +FPO AE 57113-9122",1929-07-06 20:06:50,14:42:cc:08:39:9f,johnphillips@yahoo.com,img/obama.jpg +Kimberly Wood,038-90-8035,39204,"085 Figueroa Harbor +North Stephen, OR 15216-5190",1926-05-01 05:17:37,2f:3a:53:49:d8:4b,maria52@gmail.com,img/obama.jpg +Matthew Baker,769-28-6015,89568,"831 James Ranch Apt. 448 +Williamston, FM 01129",2002-04-10 07:30:22,fa:c8:63:40:38:08,bennettjesse@baker-smith.net,img/obama.jpg +Jessica Davis,273-97-0981,95028,"8321 Peter Roads Apt. 306 +Aaronside, PR 76261-2142",1967-04-03 21:05:31,b3:d9:7f:66:93:1c,scottisaiah@gmail.com,img/obama.jpg +Mrs. Christine Delgado,728-40-4461,96419,"002 Elizabeth Street Apt. 869 +East Lisa, NH 49639",1952-06-19 00:28:34,01:eb:be:28:db:cf,uraymond@yahoo.com,img/obama.jpg +Joshua James,531-74-7659,38584,"562 Ann Squares Apt. 948 +Davisshire, PR 50577",1971-04-03 08:44:37,b9:f6:08:6d:bf:ff,alexanderlee@gmail.com,img/obama.jpg +Vickie Smith,114-25-6715,15478,"42370 Steven Station Suite 334 +South Paulburgh, NM 15291-3841",1974-05-25 22:59:55,e8:1e:73:34:e6:47,patriciabecker@brown.org,img/obama.jpg +Derek Mayer,868-04-8033,13960,"4258 Reeves Valleys Apt. 078 +New Karenstad, NM 30411",2010-12-06 08:16:53,f1:c2:73:5a:86:84,uduncan@shah-williams.com,img/obama.jpg +Dillon Holmes,488-04-7606,51831,"65108 Erica Trail +Port Ashlee, RI 05853",2013-03-08 21:51:39,aa:22:b2:e6:5b:70,jcox@pope.biz,img/obama.jpg +Cynthia Woods,623-31-0783,39367,"79823 Kim Shoal +Dawntown, IA 66690",1931-06-21 01:20:46,6e:3d:fc:2a:e5:7e,john01@campbell-cantu.info,img/obama.jpg +Jason Hicks,031-73-9229,17873,"802 Alicia Summit +East David, NV 75805-4345",1945-04-06 04:29:41,5d:ec:34:3d:f7:8a,wgarcia@dodson-stone.com,img/obama.jpg +Crystal Bradley,424-31-2441,08886,"4457 Mueller Forges +Hughesside, IA 86000-6247",1965-04-02 04:54:40,3c:b4:52:ba:8a:6e,andersonanne@buck.com,img/obama.jpg +Marc Williamson,423-66-3947,80590,"6993 Annette Union +Sandraborough, OR 68200",1942-05-06 11:19:59,db:b3:89:74:45:64,mclaughlinrobert@smith-harper.net,img/obama.jpg +Michele Day,667-89-9301,23803,"4182 Ruth Ports Suite 317 +Lake Richardborough, NY 73012-4464",1954-01-30 01:14:14,f2:d3:87:b3:c3:84,xbrown@yahoo.com,img/obama.jpg +Cheyenne Weaver,007-68-8902,60924,"976 Nicole Fort +Jordanhaven, TX 62755",1937-08-23 07:02:02,15:8a:56:27:a9:0e,sydney51@smith.com,img/obama.jpg +Christian Vega,550-77-4765,23269,"50410 Bryan Ford Apt. 420 +Rodriguezchester, PW 98123",2002-03-26 10:29:06,41:1b:0b:9c:f6:5e,dennis42@reilly-sanchez.org,img/obama.jpg +Edgar Thompson,695-60-1573,76539,"1270 Evans Forks +North Jamesfurt, GU 35684",2008-06-27 21:25:48,26:b7:81:aa:94:ea,xgarrett@hotmail.com,img/obama.jpg +Jennifer Hood,481-40-6707,36250,"3010 John Views +Lake Laura, ND 63228-4843",1960-04-30 00:10:42,e9:2f:78:92:c0:0a,mcontreras@hotmail.com,img/obama.jpg +Rebecca Contreras,237-02-5008,94945,"631 Patrick Estate Suite 407 +Lake Jamestown, OR 33931-5852",1966-05-23 01:59:43,e1:78:1b:53:ab:f0,lisawaters@gmail.com,img/obama.jpg +Bradley Griffith,344-11-6063,84221,"726 Charles Hills +Port Kaitlin, DE 99270",2003-02-20 14:57:46,38:e7:99:ff:e7:ac,nancymiller@hotmail.com,img/obama.jpg +Penny Stokes,581-30-8400,10968,"8925 Victoria Views Apt. 746 +Anthonychester, ID 02473",1965-04-18 00:45:54,74:75:a2:a5:81:fe,ryan87@shepherd.com,img/obama.jpg +Michael Medina,675-98-4507,62013,"319 Reed Summit Suite 430 +East Rachel, WA 12356-4672",1974-01-27 16:26:15,05:23:13:18:99:f0,ashley93@adams.com,img/obama.jpg +Heather Sanders,584-79-3099,19146,"125 Yvonne Junction +Roblesberg, MI 34053",1974-06-07 01:47:26,2c:79:b4:04:ba:5e,reedamy@hotmail.com,img/obama.jpg +Ryan Travis,552-88-9496,51482,"65771 Frank Fort Apt. 774 +North Lynn, AS 85827",2005-10-22 06:13:05,29:11:ad:f2:b2:19,rodneyvargas@martinez-carson.info,img/obama.jpg +Jose Ruiz,525-05-8973,26123,"6286 Walton Passage Apt. 800 +Krystalchester, MI 96874-6268",1967-02-01 18:01:45,e6:32:29:df:14:5f,jennifer41@durham.org,img/obama.jpg +Barbara Ballard,005-43-1687,46685,"13016 Anderson Squares Apt. 572 +Sarahland, WI 20723",2003-06-09 01:19:09,6d:66:46:bc:32:c5,vickijenkins@harris-mathis.com,img/obama.jpg +Jermaine Cooke,580-99-5046,47480,"28780 Richard Isle Suite 169 +Gonzalestown, VI 75190",1985-01-30 19:13:33,e6:ab:eb:d6:08:4a,debrablackwell@nicholson-fleming.com,img/obama.jpg +Emily James,243-59-9595,08932,"217 Cassandra Landing +New Mitchell, KS 04020-2501",1946-10-14 04:50:07,84:e9:04:aa:d9:b9,richard05@hotmail.com,img/obama.jpg +Stephanie Williams,312-64-8624,36001,"9343 Stephen Lake Suite 222 +Richardhaven, AK 93638",1982-05-28 17:56:21,e4:5c:74:c0:1f:25,richard82@gmail.com,img/obama.jpg +Patricia Massey,551-60-1448,83308,"26999 Caleb Plains Apt. 824 +Hurstchester, CT 00712",1996-01-13 02:15:07,e8:b1:8c:39:7f:c3,qrobinson@robertson.biz,img/obama.jpg +Catherine Fuller,512-32-6329,05575,"15224 Anderson Oval +South Jasmine, SD 08826-9628",1983-10-19 15:50:44,cc:75:5d:a8:22:9e,matthew80@harvey-turner.com,img/obama.jpg +Jennifer Glenn,726-88-4680,03993,"4184 Tyler Inlet Apt. 368 +Michaelmouth, ID 44379",1951-06-28 02:28:55,c4:84:c4:dd:87:02,singletonmegan@wilkinson-chandler.com,img/obama.jpg +Sarah Miller,032-63-7459,98728,"34809 Miller Forks Apt. 531 +Edwardtown, NJ 88082-1248",1971-06-24 17:14:51,ba:cb:42:31:9c:ff,lnguyen@hotmail.com,img/obama.jpg +Scott Brock,592-82-2105,41394,"5381 Mallory Spurs +Lake Christophershire, NM 91796-8175",1939-07-13 23:47:06,97:71:5f:35:2e:28,cshields@cohen.biz,img/obama.jpg +Richard Kerr,768-37-6966,23965,"798 Atkinson Via +Martinezburgh, GU 10537-5553",1922-10-24 21:22:45,59:70:39:b3:19:d5,wsweeney@becker-webb.info,img/obama.jpg +Jody Webb,461-16-9331,76546,"062 Curtis Vista Suite 904 +South Scott, SD 52991",1918-03-16 03:28:47,7d:78:fe:80:0b:fd,jnunez@evans.com,img/obama.jpg +Kevin Herrera,667-87-5620,89867,"0175 Brandi Motorway Suite 591 +Taratown, AK 39764-8166",2006-06-04 01:34:39,75:21:46:e8:cc:8b,jonesheather@salazar.info,img/obama.jpg +Hannah Blanchard,475-22-7394,57911,"5589 David Gardens Apt. 690 +Collinsfurt, CO 17646-8665",1944-08-02 06:53:26,12:0c:45:d3:51:80,ewilliams@long.org,img/obama.jpg +Elizabeth Smith,844-28-1658,14316,"139 Kelsey Ferry +Lake Eric, GU 70485",1955-08-26 21:02:23,10:01:5f:03:eb:a8,crystal27@gmail.com,img/obama.jpg +Nicole Nelson,004-50-5896,19605,"28715 Margaret Rue Suite 750 +New Dianastad, SD 82417-6822",1938-03-02 03:35:33,3e:5c:29:e3:5b:33,vbrown@hotmail.com,img/obama.jpg +Danielle Foster,796-81-6953,33905,"4825 Meyer Branch Apt. 221 +New Mathewmouth, AS 64081-2463",1942-08-27 03:02:49,72:3d:e6:38:d8:f7,davidbrown@gmail.com,img/obama.jpg +Susan Wilson,273-49-2212,89960,"05160 Gibson Run Suite 691 +New Ariana, SC 08925",1949-08-31 20:19:33,d4:27:cd:33:88:0b,morganyoung@williams.com,img/obama.jpg +Jason Arnold,609-94-5461,11689,"Unit 5054 Box 3695 +DPO AP 65062-0414",1961-12-19 01:07:29,87:c3:4e:44:30:fb,joneslaura@wells.net,img/obama.jpg +Elizabeth Hensley,461-87-0925,40054,"Unit 1122 Box 5241 +DPO AP 25209-9682",1994-12-08 19:43:59,b8:18:c7:9e:c2:26,antoniowu@smith-lozano.org,img/obama.jpg +Amber Murphy,432-92-4549,51586,"841 Christopher Hollow Apt. 158 +Laurenbury, OK 60337",2014-02-03 17:39:22,e2:38:b8:ba:4f:81,jeffersonvickie@fields.net,img/obama.jpg +Matthew Dillon,212-03-4414,85635,"5979 Jason Valley Suite 764 +Simsport, FM 07295-4928",1984-07-24 02:54:16,37:67:0d:27:bc:c1,callahanadriana@gmail.com,img/obama.jpg +Brandon Pacheco,053-80-1525,57446,"55835 Tucker Glen +Grahamfurt, IL 28783-6977",1996-05-30 06:50:22,75:0f:5c:d4:4a:7b,sarah32@cook.info,img/obama.jpg +Elizabeth Baker,627-87-9945,68671,"5624 Scott Springs +Simstown, GA 23029",1979-10-03 02:41:29,dd:0f:a1:3a:bd:e9,michaelharris@gmail.com,img/obama.jpg +Lori Henderson,134-29-1317,05314,"9928 Rojas Ways Apt. 097 +North Tiffany, PW 03048-5541",1923-04-11 12:39:34,85:66:97:a0:36:12,imedina@hotmail.com,img/obama.jpg +Yolanda Williams,450-64-3521,61280,"4770 Richard Ridges Apt. 480 +Port Stephanie, HI 76392-7787",2015-08-08 06:05:37,48:84:6a:4f:ca:88,jonessuzanne@yahoo.com,img/obama.jpg +Sarah Pham,210-31-1725,91350,"709 Kelly Squares Suite 964 +Johnmouth, MN 84644-2801",1957-11-25 02:55:39,24:50:d5:2d:10:4e,nknight@evans-jimenez.com,img/obama.jpg +Amber Johnson,646-40-4275,73837,"041 Michael Port +Jonathanmouth, GU 16869",1963-12-31 17:24:21,a8:0b:36:b7:40:17,gblair@yahoo.com,img/obama.jpg +Dawn Coleman,549-92-7451,17914,"Unit 7003 Box 5675 +DPO AA 94233-5510",1955-07-04 09:43:59,70:ce:4d:02:62:62,kimglen@pittman.com,img/obama.jpg +Tyler Mitchell,138-42-0397,48514,"3211 Diamond Stravenue +Traceyside, TN 81261-8735",1935-12-20 17:43:55,31:0c:45:58:d2:ca,ehorton@gmail.com,img/obama.jpg +Kenneth Rice,187-50-9959,94182,"51277 Ray Knolls +Kevinville, MD 02964",2005-06-18 17:31:03,a4:59:62:80:84:23,xreid@garcia-mitchell.info,img/obama.jpg +Rebecca Thompson,696-31-0094,06466,"57337 Anderson View +Hallbury, MT 04820",1926-11-13 18:17:34,5c:4a:b8:1e:d4:d6,gdavis@yahoo.com,img/obama.jpg +Kelly Rocha,520-15-7747,41180,"55016 Debra Crossroad +North Karenborough, MO 22950-7503",1947-02-10 05:04:37,bb:02:56:a9:d8:c3,austin07@hotmail.com,img/obama.jpg +Laura Fisher,636-12-1296,11552,"971 Jason Harbors Suite 071 +Kimstad, RI 04703-0672",1965-01-18 05:19:39,d4:56:34:d9:76:46,tlopez@foley.com,img/obama.jpg +Laura Ortiz,837-55-8011,35584,"85758 White Gateway Suite 145 +Vegafort, IN 06129",2001-02-22 16:14:17,ca:63:8d:f6:41:0d,lguerrero@gmail.com,img/obama.jpg +Mary Harris,861-53-0627,09983,"78069 Anthony Mountains +New Jesse, HI 08357",1968-08-28 05:09:29,2d:e1:16:f9:95:11,scottwilliams@brown.com,img/obama.jpg +Robert Cervantes,664-51-7563,71497,"192 Amber Loaf Suite 117 +Heatherberg, OH 51035-5868",1991-02-28 03:35:34,7c:64:5a:42:b8:33,alejandrasilva@hotmail.com,img/obama.jpg +Michael Petersen,716-62-8447,83756,"578 Michael Avenue +East Brandi, MI 48353",2012-03-10 04:39:33,2b:65:73:1e:9d:77,derek70@gmail.com,img/obama.jpg +Christian Cain,294-38-5347,39053,"PSC 3234, Box 9157 +APO AA 71225",1989-12-14 03:49:42,14:92:c6:01:0e:16,meganpatterson@taylor.com,img/obama.jpg +Joseph Tapia,411-62-8038,65967,"47213 Hill Key +South Susanmouth, CO 80388",1922-05-16 02:41:47,cf:df:48:a9:69:1b,isaiah31@gill.com,img/obama.jpg +Regina Perkins,001-35-4656,20270,"989 Philip Vista +Lake Michaelhaven, IA 33107-2638",1963-02-23 05:21:43,75:77:f5:03:6c:f7,richardramos@gmail.com,img/obama.jpg +Allison Collier,280-95-0851,14959,"043 Good Vista Suite 450 +East Dana, NV 80962",1964-01-17 00:44:31,6d:df:ea:24:ba:bc,rodriguezsteven@gmail.com,img/obama.jpg +Andrea Hull,777-98-9792,13466,"10701 Norman Cliff Apt. 407 +Hernandeztown, DE 10721-1649",2011-06-30 23:35:31,06:6f:b1:29:71:3c,edward06@yahoo.com,img/obama.jpg +Ronald Flowers,419-87-8376,05452,"Unit 8058 Box 4249 +DPO AA 43173-2735",1942-06-25 21:41:57,17:e9:7d:ce:10:38,bryan57@anderson.net,img/obama.jpg +Frederick Adams,865-86-8156,46688,"686 Guy Lakes Suite 080 +Port Amberview, MD 90857",2004-08-23 04:21:43,9a:9d:9c:c5:1a:49,lawrencejohn@gmail.com,img/obama.jpg +William Savage,654-47-5349,13542,"65261 Banks Burgs Apt. 261 +North Monicafurt, AZ 43253-9915",1949-08-25 01:17:47,34:03:34:c1:f9:1a,kristensims@gmail.com,img/obama.jpg +Jesse Herman,615-96-7206,38325,"3385 Moss Ranch +Shawnchester, IA 06350-6415",2011-10-01 21:47:46,f3:53:0c:a3:ff:25,sanchezlisa@gmail.com,img/obama.jpg +Ann Houston,660-76-2951,88350,"65716 Peterson Canyon +West Loriberg, UT 55366-1128",1947-06-30 10:15:31,38:33:12:df:e1:a8,dunnmichael@collins.com,img/obama.jpg +Lisa Blair,029-04-5830,48268,"1255 Michaela Freeway Apt. 465 +Lake Jennifer, AR 81563-4483",1919-01-31 07:42:34,e8:d2:ab:55:b4:76,robertgonzalez@gmail.com,img/obama.jpg +Walter Mccall,460-42-8689,59755,"890 Morrison Manors +New Dannyfurt, AZ 06354",1988-02-22 06:13:15,ff:3b:c8:4f:78:7e,josephwilliams@gmail.com,img/obama.jpg +John Pena,349-81-8270,42948,"8258 Lisa Ramp Suite 531 +Sherryville, UT 23693",1938-07-09 10:37:46,02:26:ea:24:e3:d6,gilljohnny@yahoo.com,img/obama.jpg +Christine Duran,539-51-7102,41699,"972 Harris Fields Apt. 239 +Gregoryhaven, MT 70647-0376",1972-02-19 07:08:05,ce:a5:5b:be:06:08,christopher57@yahoo.com,img/obama.jpg +Alexa Douglas,630-48-5340,33304,"42058 Robinson Motorway Apt. 974 +New Jessica, NE 26505-9880",1986-12-21 23:43:55,90:2c:55:8b:b7:28,anitaramsey@gmail.com,img/obama.jpg +Matthew Hernandez,774-04-0876,85303,"16983 Lisa Forges +East Robert, KY 76010",2008-11-30 03:29:42,08:40:de:3e:65:44,scottrogers@gmail.com,img/obama.jpg +Kelly Dean,471-55-1689,15376,"29071 Soto Plains Apt. 588 +Edwardborough, WV 81172",2006-04-05 05:41:09,b3:0b:22:e3:08:09,theresa93@butler.org,img/obama.jpg +Katrina Hayes,152-57-8199,99549,"9724 Ortiz Summit +South Adam, PA 08594-5930",1968-07-29 22:32:11,7c:a1:3b:54:46:a6,phillipsaudrey@knight.com,img/obama.jpg +Lisa Hull,718-38-2352,97766,"7344 Peter Plain Suite 627 +West Jon, VT 97567",1963-10-27 03:11:30,db:4e:2a:3e:3c:34,damon26@brown-armstrong.org,img/obama.jpg +Ryan Beck,235-56-3849,58800,"75461 Lisa Harbors +North Tannertown, ID 64188-2319",1927-11-15 00:57:36,43:b7:b6:c0:9c:58,wilsonstacey@mack.com,img/obama.jpg +Jorge Robinson,426-13-9476,87544,"467 Soto Landing +East Amymouth, NM 88106",1992-08-27 09:56:17,3b:5f:df:5c:6c:15,bpalmer@harris-pratt.com,img/obama.jpg +David Foster,623-75-0752,03900,"8103 Brenda Rapids +Jasonfort, GU 87824",1928-10-14 08:06:29,15:b0:9f:f7:69:ba,gbates@dominguez-vaughn.com,img/obama.jpg +Jean Martin,333-15-4104,84218,"98197 Williams Light +Evanberg, UT 27907",1989-11-27 11:30:17,35:92:a1:a5:6a:de,kaylamoore@garcia.com,img/obama.jpg +Christopher Brennan,792-92-8392,96031,"63785 West Mission +Sharonbury, NE 55205-7341",2008-11-28 03:59:02,02:ad:ca:84:ef:1d,jenniferobrien@gmail.com,img/obama.jpg +Jeffrey Torres,450-41-2098,03089,"382 Michael Harbor +Port Meghan, CO 78600",1928-10-24 10:57:44,0e:2d:af:2c:53:02,wilsontimothy@mullen.com,img/obama.jpg +Melissa Hines,255-98-4577,53285,"05824 Lewis Overpass Apt. 898 +Susanburgh, FM 63196",1983-12-16 02:34:43,25:a5:f0:7f:88:5c,john88@hotmail.com,img/obama.jpg +Kimberly Lewis,730-05-1815,54525,"514 Michael Loop +Thompsonton, ID 32264",1979-02-08 16:22:46,fa:15:33:bb:36:03,vglass@hotmail.com,img/obama.jpg +Linda Perry,254-57-3952,73401,"429 Shannon Estates +South Trevor, NJ 91895-9072",1997-09-06 13:42:34,09:0f:7b:9e:d2:e4,zcastillo@thompson.com,img/obama.jpg +Deborah Brown,622-46-9628,78304,"28820 Waters Lock Suite 464 +Klineshire, MT 19539",2015-04-25 06:16:58,e5:13:7a:0a:4e:c0,ooliver@yahoo.com,img/obama.jpg +Derrick Montoya,424-44-1223,38073,"298 Marshall Square Suite 016 +Vegamouth, SC 11885-9577",1965-09-05 22:10:31,13:bc:c1:bc:ea:44,bmartinez@gmail.com,img/obama.jpg +Cameron Huff,736-77-9272,94322,"373 Eric Loop Suite 091 +New Christopher, SD 91457",1943-01-02 01:41:15,66:7e:78:a1:81:39,edgar34@gmail.com,img/obama.jpg +Lisa Mcneil,493-74-9045,80912,"0106 Linda Mills +South Jeffery, MN 52237-3530",2003-05-08 15:59:07,02:b6:ec:f8:cd:46,carolynmacias@riley.com,img/obama.jpg +Brian Montgomery,173-69-1680,50814,"7890 Maureen Lane Suite 717 +West Sarah, OH 06088",1977-03-13 19:34:21,52:73:44:23:31:fe,jason04@yahoo.com,img/obama.jpg +Jordan Ochoa,693-79-2254,70522,"655 John Trail Apt. 662 +West Laura, PR 43928-2890",1945-01-05 12:44:00,cd:4d:33:a2:f4:f8,sierramiller@yahoo.com,img/obama.jpg +Melissa Dickerson,019-80-8477,35857,"90480 Russell Lake +Collinsbury, SD 34698",1957-08-20 20:36:59,10:ff:e4:65:6e:94,thomasobrien@pierce.com,img/obama.jpg +Brittany Vega,693-30-1031,92871,"PSC 0488, Box 2896 +APO AA 39357-0585",1929-07-10 17:26:10,ea:9e:54:3d:e2:22,mbailey@beck.com,img/obama.jpg +Michael Moore,752-61-0928,01176,"193 Smith Road Suite 864 +Port Benjaminside, WV 69272",1973-08-30 07:03:56,d0:f7:4f:93:cc:23,ojordan@walker-aguilar.com,img/obama.jpg +Regina Gutierrez,831-31-0311,17221,"40267 Johnson Pass Apt. 977 +East Ericmouth, OK 62136-2473",1939-03-29 11:22:12,58:59:79:fd:a4:2a,rachelespinoza@peterson-holmes.info,img/obama.jpg +Scott Webb,364-27-5613,56323,"29283 Virginia Falls Suite 907 +Jeremyshire, WV 95716",1964-06-04 20:17:14,3f:86:a3:4a:8b:ee,melissa04@hotmail.com,img/obama.jpg +Samuel Mata,561-82-2509,33357,"7462 Cruz Rapids Suite 356 +Josephtown, LA 47026",1975-05-10 06:14:27,fd:bf:16:3d:cf:8e,omartinez@hotmail.com,img/obama.jpg +Nicole Arnold,189-92-8373,46448,"28601 Lee Branch +Dudleyshire, OR 67981",1977-02-22 09:11:34,6f:10:db:04:4a:52,shernandez@perry.com,img/obama.jpg +Joann Taylor,472-36-6966,34359,"16623 Price Camp Suite 242 +Woodstown, PR 46095-4191",1921-08-25 02:48:01,ff:54:ba:d3:6e:41,peterparker@brown-peters.net,img/obama.jpg +Christopher Williams,376-90-0029,26013,"5217 John Rue +North Yvette, LA 34762-1821",1979-08-13 13:46:56,30:6d:5f:13:0a:b7,gonzaleseric@yahoo.com,img/obama.jpg +Andrew Pineda,865-62-2798,85013,"52422 Nicholas Canyon Suite 201 +Rickyport, MH 75815-8322",1954-05-14 12:37:53,b7:08:60:fc:56:38,johnlarson@cruz.com,img/obama.jpg +Sharon Newton,178-15-4164,71404,"PSC 0567, Box 6328 +APO AE 46590",1977-09-28 03:00:22,8a:81:fa:5a:bd:e9,deborah18@kramer-diaz.org,img/obama.jpg +Dana Walker,790-95-4972,48307,"0358 Salazar Viaduct +North Albert, CT 82486",1924-04-13 16:26:24,fa:70:b3:39:0b:b6,dennis32@hotmail.com,img/obama.jpg +Terry Thompson,334-37-3092,72919,"USS Mann +FPO AP 48981",1988-03-08 10:08:00,82:bc:11:63:e6:4c,kathleen87@martinez.com,img/obama.jpg +Gregory Mata,654-11-3940,02579,"46857 Johnson Road Apt. 679 +Suzannemouth, NE 27402-7213",1974-12-23 07:42:01,e4:9b:3f:8d:95:b0,barbara58@alvarado.com,img/obama.jpg +Angel Roberson,068-66-3981,99357,"75305 Reese Trace Suite 380 +Littlechester, FM 16828",1917-12-15 07:22:59,a2:30:0a:78:87:03,fred04@yahoo.com,img/obama.jpg +Laura Hanna,509-46-8249,75346,"051 Moreno Passage +East Wendy, HI 03784-8321",1978-01-08 19:06:15,a1:63:42:16:97:fb,tiffanymoreno@yahoo.com,img/obama.jpg +Gary Aguirre,514-75-3451,71593,"4792 Holder Court Apt. 672 +Brandonmouth, PR 11601",1917-11-03 17:45:41,48:14:e0:16:dc:f6,dhenderson@vazquez.com,img/obama.jpg +Melissa Brown,617-09-4755,95136,"39545 Cynthia Glens Suite 881 +Lorishire, WI 35323-2369",2016-10-10 10:06:43,60:ea:53:cb:07:42,rduke@maynard.com,img/obama.jpg +Stephanie Rowe,182-98-1072,44882,"448 Lewis Junction +Noahhaven, NV 06178",1968-08-18 05:47:49,3c:3a:46:24:ac:47,marythompson@baker-smith.com,img/obama.jpg +Leonard Dean,754-62-5260,57691,"92039 Hall Brooks +Ericafort, ID 23266-3513",1956-05-14 08:16:45,d6:40:27:46:8f:f2,cestrada@gmail.com,img/obama.jpg +Joshua Meadows,083-95-1357,75120,"4863 Lewis Creek Apt. 537 +Mortonside, MS 00238-2795",1967-12-15 12:19:35,0c:04:f5:28:ab:42,hallmegan@hotmail.com,img/obama.jpg +Jonathan Morris,547-24-3931,87989,"66524 April Fall Suite 772 +Brewerport, PA 47985-6165",1937-03-12 11:20:12,4b:20:ba:05:fb:14,bobbyoneill@ferguson-garza.com,img/obama.jpg +Dennis Warren,267-44-9034,40690,"679 Joseph Radial +East Georgechester, KY 01772",1965-09-21 10:20:32,e3:78:28:7f:45:6f,zdawson@hotmail.com,img/obama.jpg +Terri Downs,070-59-8662,78439,"386 Sexton Views +Williammouth, DE 82021",1960-06-16 05:36:33,a2:71:e3:f8:dd:ad,williamweaver@yahoo.com,img/obama.jpg +Juan Phillips,757-33-6016,34777,"PSC 2938, Box 7611 +APO AA 06000",1944-05-08 04:47:39,0f:b1:bd:04:22:a6,qford@hotmail.com,img/obama.jpg +Antonio Glass,665-01-4415,21725,"05144 Laura Freeway +Sheppardburgh, SD 45749",2001-05-11 15:28:38,2d:88:a7:0c:92:cc,oharmon@hotmail.com,img/obama.jpg +Ms. Regina Diaz,175-30-2453,71876,"08507 Mcgrath Fort +Lake Veronica, MA 70475-5093",1943-08-01 10:10:09,29:21:12:ee:04:00,shannonholt@gmail.com,img/obama.jpg +Austin Thompson,095-26-9974,24986,"9885 Nathaniel Passage +Adamsfurt, DE 66911-4828",1965-05-19 08:23:40,76:c3:f6:b4:6f:00,wendy90@owens-wong.com,img/obama.jpg +Terry Carter,425-51-5968,43293,"740 Olsen Road Suite 150 +North Scottchester, MO 32808-9308",2014-03-17 07:28:33,d7:24:fc:60:03:54,cantukelly@crawford-palmer.com,img/obama.jpg +Benjamin Lee,685-12-9756,03969,"596 Mills Way +Youngton, CT 16069-3829",1956-02-15 03:36:00,d6:a8:5b:d8:2c:03,kevin24@quinn.com,img/obama.jpg +Erin West,034-35-3509,45164,"386 Julia Centers +Spencerbury, MT 85702",1927-01-27 15:16:04,ab:dc:53:fa:fa:1e,alansmith@yahoo.com,img/obama.jpg +Donald Stevenson,335-07-8795,92549,"015 Park Keys Apt. 392 +West Tiffany, CT 21290-2526",1986-01-26 14:05:18,71:2b:20:a2:b5:2b,jillcherry@hotmail.com,img/obama.jpg +Nicholas Cook,401-24-7122,29641,"PSC 9231, Box 7346 +APO AE 24347",1972-02-27 21:40:26,cb:7c:10:c9:6d:cf,bridgetrodriguez@yu.com,img/obama.jpg +Jeffrey Sullivan,543-48-4095,68012,"7488 Ethan Run Suite 250 +Lake Jeffrey, NY 29898",1964-09-03 10:17:12,fb:1b:54:2c:0a:7a,mathewsanchez@yahoo.com,img/obama.jpg +Christian Kim,245-28-7752,33559,"968 Michael Walk +Melissaside, NY 59055-4756",1983-03-03 00:18:53,fb:9c:50:ad:dc:59,ysilva@yahoo.com,img/obama.jpg +Cesar Hall,193-22-2683,82506,"06322 Hamilton Spur Apt. 582 +Robinton, NJ 08340-9807",1980-12-30 20:10:22,19:dd:bc:82:bb:db,nathan71@hurst-howard.com,img/obama.jpg +Karen Franco,512-19-4482,12591,"50418 Melissa Throughway Suite 351 +Richardview, TX 62711-7322",2013-06-29 21:47:57,c6:03:ea:80:5e:76,danielsdavid@gmail.com,img/obama.jpg +Kevin Gonzales,210-28-6947,63407,"67780 Reid Highway Apt. 800 +Lake Charles, VT 98900",1980-04-18 22:09:43,27:c0:6b:2f:c5:41,debbiewalton@yahoo.com,img/obama.jpg +Brandon Jones,754-70-9179,66477,"415 Douglas Ridges +South Michael, AR 07024-6046",1927-01-19 10:16:14,0a:bc:c6:25:ad:a8,wwilson@gonzalez-acosta.org,img/obama.jpg +Christopher Montes,014-58-1285,85439,"739 Ross Tunnel Suite 622 +Lake Ashley, MN 32959-3272",1930-11-07 08:49:33,10:99:f9:81:62:96,charlesmoyer@hotmail.com,img/obama.jpg +Miguel Duran,888-84-1162,77993,"2461 Brooks Passage Apt. 083 +East Robertmouth, NM 65276-2203",1943-03-12 18:38:39,2f:59:0a:23:10:41,ashley00@gmail.com,img/obama.jpg +Melissa Peters,572-05-2117,30043,"76050 Gonzalez Court Apt. 413 +Lisachester, DE 98281-9462",2015-04-30 06:56:02,59:26:05:1e:a9:bf,zbass@alexander.net,img/obama.jpg +Christopher Gonzalez,600-26-7429,09703,"914 Keith Passage +Victoriaview, PW 90361-9952",1980-07-19 00:54:22,b8:8b:40:61:54:06,edward01@smith.info,img/obama.jpg +Jennifer Martinez,799-27-3077,26084,"2328 Henry Stream Suite 779 +Port Lisa, VI 08662-1752",1964-03-03 07:51:46,bf:35:fe:91:c9:f9,vwoods@bowman.com,img/obama.jpg +Nicholas Daniels,624-05-2542,52499,"22030 Brown Forges +Mcintyreport, CT 69073-0557",1982-03-26 11:14:44,82:00:65:bd:58:62,jacksonlaura@gmail.com,img/obama.jpg +Kristine Carter,276-06-9309,16220,"Unit 6456 Box 5569 +DPO AP 23654",2007-04-12 05:48:39,d4:39:0a:bf:ff:10,fcollier@yahoo.com,img/obama.jpg +Jason Sanders,083-15-8874,94873,"12221 Shannon Locks +East Justinton, MT 02876-6371",1979-01-07 01:40:02,e9:74:5d:ed:59:91,gateslindsay@ortiz.com,img/obama.jpg +Wesley Clay DDS,264-14-4089,48023,"38805 Martin Stream Suite 499 +North James, MD 43723",1997-07-02 22:23:25,c5:21:a6:a4:7e:bc,lawsonlori@yahoo.com,img/obama.jpg +Darlene Wheeler,502-78-1973,47952,"509 Alvarez Stravenue +Port Edwardstad, MH 93344",1979-10-01 20:02:35,a3:0e:65:1b:18:6e,michaelfrench@hotmail.com,img/obama.jpg +Stephen Henderson,592-61-9707,46261,"031 Mcpherson Ferry Suite 127 +Amyport, GU 85228-0243",1997-11-14 17:27:55,1a:a0:7c:e1:4f:41,walter31@hotmail.com,img/obama.jpg +Justin Cole,392-55-2821,81981,"52459 Michael Way Apt. 627 +New Christianport, DE 76787-4619",1930-02-02 11:54:17,d8:f9:8e:87:a6:ad,melissafrancis@yahoo.com,img/obama.jpg +Kim Morse,879-79-8815,80369,"4626 Vargas Island Apt. 822 +Danielleton, MN 75722",1986-06-30 09:24:45,de:99:67:86:28:a1,tombrown@yahoo.com,img/obama.jpg +Michael Key,541-06-8697,46675,"82259 Brenda Fields Apt. 352 +Lake Brandiland, PR 40517-0258",1960-08-03 22:46:14,3c:43:72:28:5a:5d,craig81@gmail.com,img/obama.jpg +Heather Chapman,182-18-8861,08425,"207 Bartlett Circles +Christinaton, VT 37295-9178",1960-12-27 05:28:43,0d:64:d9:a9:76:fa,reidjordan@rodriguez.biz,img/obama.jpg +Michelle Bennett,591-19-6663,26417,"326 Kristina Ridges +North Victorport, NC 03025-8452",1990-06-03 23:06:04,8e:e5:62:4b:31:d4,garciaalyssa@davis.info,img/obama.jpg +Lisa Rose,179-67-2225,22443,"780 Palmer Bypass +South Nicholas, UT 36014",1990-05-07 15:04:20,c9:4f:38:75:e8:4f,ronaldjones@wilson.net,img/obama.jpg +Tiffany Jenkins,614-56-6956,98346,"8187 Gonzalez Street +South Christine, RI 40991-4716",1928-11-18 20:32:33,f2:a2:c0:97:0a:13,fischerronald@gray.com,img/obama.jpg +Gregory Johnson,864-20-5180,54198,"800 Stephen Forge +West Holly, TX 35789-1865",1966-03-07 04:26:11,0a:cb:82:e3:98:87,amanda87@gmail.com,img/obama.jpg +Janet Rice,396-98-9899,80447,"6356 Wright Road Suite 089 +Murphyfort, KY 63275",1986-02-18 15:58:47,f6:b7:ab:be:b8:4e,carternathaniel@yahoo.com,img/obama.jpg +Mark Cardenas,594-30-3778,13960,"42283 Freeman Club +South Dawnborough, NH 34621",1982-08-14 01:28:06,06:ff:04:8e:f6:3f,maryfry@hotmail.com,img/obama.jpg +Harold Jones,462-95-4284,85488,"989 Carolyn Tunnel +Rayburgh, WY 47786",1976-02-01 18:16:46,e7:47:9f:27:17:2d,armstrongdenise@ramirez.net,img/obama.jpg +Elizabeth Mcbride,636-73-3598,74341,"38981 Johnson Highway +Baileyview, DE 74095",1966-12-09 22:21:01,7d:67:66:86:40:b1,melissa39@hotmail.com,img/obama.jpg +Ashlee Warren MD,243-91-3997,44747,"4872 Ortiz Drive Suite 912 +South Angelamouth, WY 28506-3187",1997-08-28 18:06:44,2e:dd:89:39:62:98,aaron51@cline.com,img/obama.jpg +Matthew Johnson,151-68-7619,08125,"05133 Wright Ramp +Tiffanyborough, IL 72641-5093",1997-04-22 00:39:35,c8:ca:e2:1c:44:a6,lisa44@hotmail.com,img/obama.jpg +Steven Fernandez,335-89-0778,80363,"23783 Eric Station Apt. 105 +New Franciscoville, AZ 37140",1969-06-18 13:34:30,8f:6d:b7:88:23:fb,davidclark@harris-scott.org,img/obama.jpg +James Lee,449-52-8787,54648,"8766 Roberts Viaduct Suite 642 +West Claudia, MN 82442",1940-01-16 12:34:24,cc:3d:7d:e8:94:9c,andrewayala@johnson.com,img/obama.jpg +Brooke Brown,460-47-4668,70949,"99723 Eugene Stravenue +New Theresa, MO 11705-5594",1972-06-01 07:53:19,0c:78:49:ad:d2:b1,donovankaitlyn@yahoo.com,img/obama.jpg +Kimberly Snyder,249-65-4339,60645,"04540 Newton Knoll Apt. 442 +Reynoldsfurt, NJ 04393-2643",1973-07-14 14:59:54,39:4f:1b:05:56:1a,spencerbethany@hotmail.com,img/obama.jpg +Dominique Franco,217-25-7914,32904,"11907 Smith Summit +Ryanbury, KS 94992",1943-11-24 17:49:59,b0:76:89:72:c4:14,robertlevine@hotmail.com,img/obama.jpg +James Clements,154-44-3160,84752,"846 Graham Ridges Suite 287 +East Anthonybury, ME 06393-3862",1937-05-17 06:06:37,35:56:34:1d:8c:d3,lopezdaniel@ballard.biz,img/obama.jpg +Ellen Hansen,006-45-1652,05797,"0354 Danny View +New Austin, AZ 15711-6733",2011-08-01 14:19:10,c2:29:f6:f3:74:80,sharon89@yahoo.com,img/obama.jpg +Mr. Charles Daniels,487-98-6932,14700,"2077 Felicia Shore Apt. 513 +Williamschester, OH 22497-0446",2001-11-08 20:53:03,d1:52:38:8d:74:f3,clarkclaire@gmail.com,img/obama.jpg +Franklin Werner,218-61-7352,15461,"794 Mckenzie Drives Apt. 706 +Dixonton, NM 56800-9135",2010-07-04 03:45:10,86:f3:97:89:ed:cf,lopezryan@williamson.info,img/obama.jpg +Ashley Cooper MD,520-03-5938,68216,"7328 Perez Mill Suite 828 +East James, NM 95714",1939-08-09 02:10:28,27:fb:04:08:fe:4b,lisa67@dennis-banks.com,img/obama.jpg +Thomas Young,721-02-3138,07731,"PSC 4105, Box 0607 +APO AP 62023",1922-06-07 17:10:22,cf:c9:b9:6a:eb:65,ireilly@gmail.com,img/obama.jpg +Teresa Hall,799-44-2308,26454,"874 Zachary Centers +Marktown, MI 11850-1937",1991-06-22 04:51:18,60:9d:6b:24:e5:6b,georgecowan@hotmail.com,img/obama.jpg +Cynthia Roberts,670-09-2047,28435,"624 Whitaker Spurs +Annamouth, NY 42678-3045",1979-09-11 14:52:33,24:f2:3d:5b:89:a4,wallrachel@burns.com,img/obama.jpg +Jeffrey Reed,557-54-2420,12642,"7153 Andrew Valleys +North Laura, NH 63697",1948-10-06 08:57:31,61:36:cd:fc:ae:07,pricesamantha@tyler-figueroa.com,img/obama.jpg +Stephen Johnson,720-39-5832,05839,"93328 Phillips Port +New Laurenshire, TN 10473-1722",1987-05-12 22:41:25,8a:fc:00:55:ce:ed,christinamorales@douglas.com,img/obama.jpg +Robert Wolfe,205-04-1657,54825,"USS Patterson +FPO AA 62931",1970-06-22 22:39:11,07:98:3c:c3:a9:40,cgray@schneider.com,img/obama.jpg +Taylor Edwards,773-63-4363,77082,"9891 Graham Island Apt. 888 +West William, SD 25475-5180",1967-03-26 20:34:14,07:ed:dc:db:c6:62,dwood@yahoo.com,img/obama.jpg +Julia Sanford,161-40-1664,43745,"19707 Kathleen Rue Suite 106 +Blackwellland, SC 92337-1078",1922-05-09 15:12:22,72:f2:50:28:82:83,rdrake@perez.com,img/obama.jpg +Julia Webster,627-96-2279,06644,"90855 Miller Terrace Suite 188 +Joseport, TN 88171",1983-10-24 04:57:01,eb:8d:c5:89:f7:34,wpalmer@yahoo.com,img/obama.jpg +Maria Powell,524-68-9901,34418,"97049 Brian Heights Apt. 529 +Lake Miranda, SC 37418",1993-11-23 16:28:06,b0:29:ac:2a:e3:b2,mariawright@anderson.com,img/obama.jpg +Ryan Andrews III,335-32-6460,58103,"1546 Jacobson Port +Bergershire, CA 22693-3198",1958-03-08 11:56:43,38:df:57:1c:5c:d9,alexander92@yahoo.com,img/obama.jpg +Hannah Spencer,680-66-2394,00888,"95673 Jenna Hollow +New Josephview, GA 78725",1952-12-01 12:45:46,7f:b6:e0:de:0c:96,moniquemoses@smith-rivera.com,img/obama.jpg +Jennifer Villarreal,083-58-3755,49492,"201 Reed Mall +Larsonside, AK 68513-6084",1959-09-17 15:06:41,39:3a:8b:16:1a:eb,kanderson@gmail.com,img/obama.jpg +Candace Harris,532-65-9115,34634,"1270 Turner Ville Apt. 967 +Port Davidstad, CO 26486",1984-12-24 06:01:49,a5:3d:25:4d:b3:7d,erin00@gmail.com,img/obama.jpg +Reginald Dixon,422-52-0563,88658,"6149 Erica Summit Apt. 702 +North Karenside, HI 48910-0516",1998-10-30 16:07:21,b1:61:f5:00:84:b4,brownjessica@yahoo.com,img/obama.jpg +Tabitha Neal,381-65-2326,95938,"8096 Baxter Meadows Apt. 863 +Wellsberg, CA 48546-2278",1925-02-20 10:07:40,49:e7:33:95:5c:15,stephen97@yahoo.com,img/obama.jpg +Molly Miller,482-74-7405,35915,"28748 Margaret Harbor +North Christopherville, AR 36542-2172",1986-04-22 14:47:42,9e:fd:84:0c:2d:21,kpineda@hotmail.com,img/obama.jpg +Susan Roberson,868-20-7579,91095,"987 Sloan Via +Jonathanton, TX 95413",1995-06-13 06:59:03,65:ff:b4:52:e1:a9,tsmith@perez-lutz.org,img/obama.jpg +Christopher Simmons,711-68-2378,58541,"1204 Mary Burg Suite 339 +Briannachester, MI 27776",1982-09-06 00:31:34,d4:63:af:0e:8a:2a,jeanetteross@hotmail.com,img/obama.jpg +Eric Zimmerman,044-61-9991,18596,"0222 Willis Place Apt. 134 +Dennisberg, RI 53734-3535",1920-05-25 15:34:12,50:3c:e7:84:05:f8,ryan53@estrada.com,img/obama.jpg +Mr. Frederick Roberts,466-26-9506,69117,"0339 Rebekah Row +South Patriciaport, ID 11033-3035",1930-10-30 04:39:18,18:21:fe:b1:78:f3,danielleknox@yahoo.com,img/obama.jpg +Michael King Jr.,837-41-5120,09864,"4497 Reyes Fords +East Brianhaven, WY 30552",1921-09-08 10:51:19,1b:8f:c6:a4:23:96,patricia17@young.org,img/obama.jpg +Mary Coleman,258-62-8443,79525,"0092 Austin Neck +New Robert, NY 58712",1931-11-26 12:23:21,89:60:4e:18:96:ae,oduarte@gmail.com,img/obama.jpg +Michael Montoya,201-72-4048,86519,"6028 Anthony Spurs Apt. 032 +Deannafort, ND 56643-8627",1971-02-16 20:46:17,f8:c1:11:c2:47:13,paultaylor@yahoo.com,img/obama.jpg +Jesse Walter,889-08-5539,70316,"116 Lang Stream Apt. 341 +Port William, DE 48907",1945-03-25 00:12:04,0d:ac:fc:13:3d:b8,christopherbond@wheeler.org,img/obama.jpg +Marco Wilson,286-23-0900,18036,"PSC 5083, Box 0130 +APO AE 64161",1924-04-07 04:07:46,e4:cc:6d:15:1a:51,vsoto@hotmail.com,img/obama.jpg +Janet Wilkinson,209-77-9665,50429,"888 Green Villages Apt. 700 +Port Joe, RI 37614",1939-11-14 13:15:56,c8:0c:89:d6:fa:60,andersonjennifer@brown.info,img/obama.jpg +Tyler Flores,311-85-0391,58264,"118 Davis Mountain Apt. 303 +Sharonmouth, OK 01560-9338",1926-07-25 07:34:04,19:c8:c0:31:30:8b,hgutierrez@gmail.com,img/obama.jpg +Corey Roman,737-28-5467,85853,"646 Roberts Roads +North Janefort, GA 27064-0030",1963-08-19 23:38:50,f7:87:10:be:4f:09,stewartthomas@yahoo.com,img/obama.jpg +Virginia Hanson,360-70-2611,31258,"04155 Gonzalez Spur Suite 266 +Bowmanchester, CO 27325",1925-03-21 23:18:32,75:34:e1:d0:7b:73,cynthiawhite@liu.com,img/obama.jpg +Tamara Parker,759-52-9374,94603,"4245 Joseph Lane Suite 153 +South Justin, RI 72034-6929",1955-07-03 04:40:20,18:84:3e:fd:83:cb,sandraenglish@torres.info,img/obama.jpg +April Peterson,536-04-0003,87321,"73272 Michael Islands +South Sarah, PR 38036-5518",2008-05-20 10:09:42,d3:ed:3b:7e:b2:dd,aliciamyers@gmail.com,img/obama.jpg +Noah Obrien,219-25-1937,37333,"8214 Elizabeth Island Suite 559 +Mclaughlinmouth, FL 03451-9621",1922-02-28 15:32:41,95:3e:03:22:1e:eb,utaylor@morrow.com,img/obama.jpg +Samuel Gould,023-91-7368,31113,"7774 Casey Overpass Apt. 382 +Christinashire, AR 82873",1993-11-19 17:33:37,0d:27:a0:17:bc:b2,janet42@hines.net,img/obama.jpg +Joseph Ford,306-97-5382,49415,"4596 Melody Viaduct Apt. 997 +West Brendafort, IN 50401-6704",1937-08-04 04:39:43,b1:21:dd:dc:7b:5c,ktaylor@yahoo.com,img/obama.jpg +Leslie Jackson,031-45-9824,07825,"12065 Jordan Rapids Suite 067 +Williamland, DE 70138",2000-01-10 03:59:49,6c:0d:56:37:e6:96,monica00@hotmail.com,img/obama.jpg +Dawn Keller,718-32-4262,21714,"501 Gonzales Mount Suite 156 +Taylorfurt, ND 08488",1957-04-25 17:51:58,9a:db:db:fb:bd:3a,ronald66@herman-small.com,img/obama.jpg +Cheryl Martinez,557-66-5999,14199,"573 Hayes Ridges Apt. 271 +Port Josephton, WV 15063-7699",1962-08-19 10:29:03,25:41:7b:c5:27:b9,manuel01@reyes.com,img/obama.jpg +Jonathan Nelson,608-24-3656,70041,"593 Jessica Summit Apt. 348 +Lake Stephaniemouth, PW 95748",1969-08-23 23:24:54,39:e9:c1:eb:38:71,qbradshaw@gaines.info,img/obama.jpg +Benjamin Lee,525-27-1560,87966,"707 Whitehead Haven +Sanchezbury, WY 49494-8575",1973-09-29 05:52:16,5c:81:66:94:c8:a6,huangwilliam@hotmail.com,img/obama.jpg +Dawn Cannon,055-59-2809,10710,"66046 Melissa Crest +West Amanda, MO 43791",2009-12-16 20:46:08,08:c7:78:12:31:c7,josewilson@jones.com,img/obama.jpg +Douglas Black,366-56-8452,06874,"517 Taylor Street Suite 318 +South Ianport, ID 49508-6054",2003-04-03 16:08:46,48:1d:05:85:23:ff,pgray@hotmail.com,img/obama.jpg +Brian Farmer,072-40-3187,72819,"1498 Blake Key +Brookeville, AS 83600-0808",1924-07-21 03:25:43,a8:f1:ff:df:64:6c,glennwallace@yahoo.com,img/obama.jpg +Gregory Nunez,493-94-2730,13764,"35994 Wright Parkway Suite 043 +Port Traci, ME 65454",1947-10-20 10:27:18,ab:25:22:0f:07:6e,brownjason@yahoo.com,img/obama.jpg +Mr. Nathaniel Rangel,893-61-9780,12442,"8429 Mark Center Apt. 156 +Gutierrezmouth, AK 33190",1945-02-16 15:30:54,c5:a7:85:5a:d1:56,kimberlyjones@hotmail.com,img/obama.jpg +Jason Villegas,160-38-4053,06646,"13406 Amanda Prairie +Lake Jacobbury, KY 14517",1968-01-11 04:45:30,a8:1d:6c:07:f5:26,brownjorge@bryan-graves.info,img/obama.jpg +David Smith,268-88-7652,70352,"7800 Nathan Run Apt. 056 +Matthewstad, LA 64245",1930-11-08 19:16:09,26:a6:a6:64:ab:48,olsonandrew@yahoo.com,img/obama.jpg +Amber Zamora,291-03-0699,97203,"46787 Hernandez Mountains Suite 335 +Ryanfurt, NC 37912",1919-11-28 23:02:38,40:61:27:22:e8:03,rgordon@green.org,img/obama.jpg +Pamela Walker,812-24-5683,37300,"75121 Sheila Drive Suite 847 +New Mark, OR 51189-9799",1954-10-04 21:11:06,63:4d:a8:a3:d6:68,michelleshepard@hotmail.com,img/obama.jpg +Brett Duncan,395-71-2830,18221,"061 Ford Inlet +North Zachary, AZ 99393",1998-02-28 19:41:53,5b:81:7f:e7:40:99,thompsondarrell@munoz-bean.com,img/obama.jpg +Krystal Smith MD,604-10-7421,70592,"95786 Black Lakes +Valentinetown, MN 49451",1936-01-19 14:05:58,ef:01:d6:69:8b:5f,taylor74@yahoo.com,img/obama.jpg +Anna Stewart,559-46-3327,31369,"29676 Jonathan Land +Wellsview, NV 28344-4331",1986-06-18 03:20:55,fe:1a:a0:85:b3:cf,bonnie30@gmail.com,img/obama.jpg +Joseph Wilkinson,378-48-5962,43734,"323 Roy Pine Suite 443 +Davidport, AS 84513-9751",1959-08-17 14:36:03,9e:50:20:d8:26:4e,thomasgregory@thompson.info,img/obama.jpg +Douglas Jensen,321-43-3154,83953,"186 Taylor Square Suite 318 +Watsontown, MI 70306-9860",2010-03-11 15:16:15,04:19:11:14:92:7e,david82@moore.com,img/obama.jpg +Theodore Murray,456-14-4648,60788,"2281 Robert Expressway +Brianmouth, IA 80012-9149",1951-09-27 17:09:42,8c:f8:75:d7:b5:2a,ybrooks@yahoo.com,img/obama.jpg +Julia Gibson,657-81-0858,30676,"737 Eric Villages Suite 902 +Petermouth, CT 63027",1990-09-14 13:40:12,76:e7:27:0e:4d:35,randy66@hotmail.com,img/obama.jpg +Sandra Knapp,446-52-3441,45725,"839 Myers Station Suite 103 +South Scottfurt, NH 34961-8244",1999-07-30 01:46:24,dc:90:16:d0:d9:0b,tcox@yahoo.com,img/obama.jpg +Frank Gibson,398-89-3881,87274,"14028 Sean Road +West Zacharyburgh, MS 02889",1977-10-20 10:32:01,d7:41:f8:ff:58:e2,bondsteven@hahn.com,img/obama.jpg +Shawna White,480-76-7777,97266,"8704 Austin Land Suite 029 +Palmerville, VA 81587-0964",1932-11-02 05:35:58,49:7c:a9:95:cc:79,owilliamson@hotmail.com,img/obama.jpg +Jacob Chambers,478-75-0404,79979,"618 Rachel Valleys Apt. 765 +Lake Karina, ND 14614",1941-06-09 10:53:50,bf:69:26:ab:8e:e4,qsmith@parsons.org,img/obama.jpg +Jennifer Underwood,195-74-0791,35985,"272 Tina Court Suite 277 +Mejiaport, WA 35926-5432",1933-06-30 00:28:25,34:82:d4:b4:d8:2a,umullins@gmail.com,img/obama.jpg +Maria Porter,209-69-2530,22325,"997 Brady Shores Suite 568 +Port Jonathan, PW 98534-2172",1976-08-15 03:48:05,62:91:36:fa:62:b2,anacarpenter@gmail.com,img/obama.jpg +Michael Evans,704-20-8334,15600,"115 Spencer Hollow Suite 990 +West Davidbury, RI 84938",1923-01-25 15:53:58,45:1f:08:62:d5:08,katiebaker@gonzalez.net,img/obama.jpg +Stacey Mueller,238-98-0337,08517,"USNV Woodward +FPO AP 02270-3652",1920-02-28 23:08:12,f3:17:05:ac:43:7a,christopher30@duncan-jordan.info,img/obama.jpg +Christopher Carter,145-92-0082,15591,"PSC 6402, Box 8200 +APO AE 50347-9319",1991-12-05 23:44:46,82:44:53:e1:67:76,velazquezdillon@davis.com,img/obama.jpg +Christopher Ray DVM,540-63-7039,60238,"64642 Robin Rue Suite 576 +Stephaniebury, PW 97853-2648",1982-01-01 08:38:25,a9:13:ad:41:c1:1a,kayla77@chang.com,img/obama.jpg +David Chung,324-25-2375,74978,"97178 Michael Village +Michelleville, NJ 97584",2010-01-19 06:11:25,ae:60:a4:af:b1:71,jreynolds@kennedy.com,img/obama.jpg +Kimberly Owens,306-07-4506,42939,"138 Mark Ports Suite 459 +West Mark, AS 16152-2485",2006-02-11 13:03:49,5f:9f:6a:06:f0:ba,vsmith@forbes-berry.net,img/obama.jpg +Brady Brock,037-50-6249,10587,"1114 Warren Forest Apt. 211 +West Robertaburgh, WY 27371",2004-10-04 23:43:09,f5:03:68:c1:b8:a5,myoder@hotmail.com,img/obama.jpg +Benjamin Reese,183-32-0931,15257,"78636 Schmidt Branch Apt. 534 +Greenton, KS 06960",1980-10-26 12:33:44,dd:ab:aa:2c:ae:b6,rita97@hotmail.com,img/obama.jpg +Emily Wright,472-63-9665,83045,"9929 Herman Throughway +Seanmouth, OH 80608-9116",1919-08-01 02:52:26,6c:6a:cd:a6:da:1f,harriseric@gmail.com,img/obama.jpg +Jacqueline Drake,156-25-2874,40040,"USNV Solomon +FPO AE 77924-1332",1931-06-18 10:15:29,15:47:fe:9c:0c:de,morenoanna@gmail.com,img/obama.jpg +Rachel Smith,768-26-5793,28033,"687 Kim Manor +Kennethbury, IN 07825",1943-10-03 23:36:54,60:cf:c6:a5:24:49,rwilliams@gmail.com,img/obama.jpg +Emily Stewart,738-50-6541,56635,"10068 Rogers Ford +Douglasshire, ID 96670-4547",1965-12-04 13:47:14,74:da:2d:9b:7a:d8,staffordernest@yahoo.com,img/obama.jpg +Michelle Morales,442-02-7367,41774,"885 Moore Forge +Port Denise, DC 49128-4571",1935-03-26 10:30:51,ba:f5:5d:57:89:58,fburton@yahoo.com,img/obama.jpg +Christina Simpson,235-95-5786,04766,"128 Emily Groves Apt. 779 +North Rachel, ID 89572-0647",1918-11-11 12:47:36,67:50:41:00:ae:27,richsusan@hotmail.com,img/obama.jpg +Sandra Cabrera,371-35-8526,28806,"Unit 0997 Box 6275 +DPO AP 21107",2015-08-21 17:14:41,4f:05:b3:74:7c:ac,carl19@gmail.com,img/obama.jpg +Stacy Cantrell,437-13-6274,14958,"1401 Patterson Course +New Angela, HI 76359-1032",2001-05-25 16:58:28,55:be:7b:c6:70:a4,jessicareese@gmail.com,img/obama.jpg +Wesley Baker,815-27-4965,36983,"103 Brittany Parks Suite 169 +New Karenview, PA 75600",1945-03-18 12:06:02,bc:66:6e:b5:9e:58,steven61@bennett-becker.org,img/obama.jpg +Taylor Cooper,098-18-2679,78034,"71224 Weber Shore +New Charlotteberg, PR 44334-9390",2011-08-08 10:14:20,3d:4f:e3:36:e7:1c,larsenkathryn@yahoo.com,img/obama.jpg +Paul Tran,737-58-8763,23672,"283 Kayla Throughway Apt. 441 +Lake Emily, ID 41446-1699",1995-02-09 13:03:49,f9:ee:9a:21:a0:c8,michaelparsons@underwood.com,img/obama.jpg +Matthew Miller,830-90-1505,35712,"777 Megan Key +Jonathanborough, MT 19635-3569",1965-08-05 21:41:52,dd:31:b5:45:13:de,kelly10@gmail.com,img/obama.jpg +Robert Morris,140-29-2524,10571,"547 Veronica Estates Suite 155 +Melissaview, HI 16625",2016-03-30 22:17:50,58:9c:80:b2:12:77,rgillespie@yahoo.com,img/obama.jpg +Mr. Russell Conner,635-89-1802,22059,"56551 Armstrong Shore +East Kristopher, MO 85306",1962-05-14 08:37:47,87:4a:a9:e4:da:f8,vaughndenise@hotmail.com,img/obama.jpg +Lindsay Hughes,146-90-3989,89360,"879 Daniels Views Apt. 063 +Arnoldtown, IN 54322-8448",1925-03-10 02:33:27,00:5c:cd:73:bf:f0,joannelee@hotmail.com,img/obama.jpg +Morgan Miller,179-09-1692,85787,"1174 Christopher Fords Suite 181 +New Michellemouth, AS 89501-0800",1983-10-16 23:46:32,bf:66:9b:e2:cd:06,miguel36@yahoo.com,img/obama.jpg +Suzanne Hess,398-13-8862,40567,"8367 Lisa Brooks Suite 033 +Port Connie, CO 71729-8637",1948-12-11 02:22:04,4f:ed:d7:0a:9d:ef,tracywalker@hotmail.com,img/obama.jpg +Louis Waters,332-23-4032,41461,"4546 Valdez Curve Apt. 834 +North Katelyn, MT 88466",2008-08-29 10:26:42,32:5f:e9:67:8d:c8,waltersandra@gmail.com,img/obama.jpg +Maria Mcbride,538-66-4156,11164,"81790 Zachary Stream Apt. 813 +West Marcuschester, OR 98072",2007-03-04 14:23:31,fd:b6:83:7a:37:83,anita73@maddox.net,img/obama.jpg +Julie Davis,747-67-0008,47694,"9739 Carl Passage +Riosland, WA 59800",1976-03-30 01:31:06,57:cf:9c:33:4a:00,shelley28@gmail.com,img/obama.jpg +Brittany Jackson,768-96-8089,68864,"294 Gray Dale Suite 893 +Hayesberg, MH 99411-8011",1984-06-29 03:22:59,8c:6d:ba:77:09:cc,bdeleon@smith-dickerson.org,img/obama.jpg +Jean Willis,289-04-2478,70556,"390 Nichols Squares +West Jacob, WI 88350-2848",2012-03-17 01:41:48,14:22:34:4f:27:ef,pfarrell@gmail.com,img/obama.jpg +Keith Nelson,214-27-2966,57282,"74190 Frederick Squares Suite 120 +Lindsayshire, PW 19286-3061",2012-09-05 19:33:32,ea:47:36:ef:63:34,zsteele@gmail.com,img/obama.jpg +Catherine Mueller,691-70-0250,28812,"491 Cheryl Station +Lisastad, NY 46846-8245",2007-03-03 11:20:25,3b:81:55:a1:33:29,simsedward@hotmail.com,img/obama.jpg +Maria Wise,179-82-0950,77637,"62211 Bullock Cliff +West Kaitlinville, NE 46372",2009-02-06 08:26:28,7b:a3:78:91:71:42,tfernandez@ward-hernandez.net,img/obama.jpg +James Martinez,281-55-5117,17502,"0862 Robert Neck +Cortezbury, NV 23899-3760",1980-06-02 17:32:29,bc:c3:1a:07:09:37,john15@hotmail.com,img/obama.jpg +Bradley May,592-64-6636,39747,"5883 Garrett Track +New Robert, VI 38569",1944-04-22 17:39:12,af:b3:51:47:69:92,reneetaylor@gray-coleman.info,img/obama.jpg +Diane Peterson,462-10-2258,53561,"226 Vang Green Suite 217 +West Kylefurt, MP 34388",1943-03-10 22:38:42,04:13:d0:93:d8:bf,charles06@phillips.com,img/obama.jpg +Jonathan Martin,470-15-3334,14633,"USS Fisher +FPO AA 69264",1965-07-06 01:51:53,6a:6f:a7:01:4f:57,christineellis@payne-hobbs.com,img/obama.jpg +James Smith,815-45-9082,21671,"2545 Lindsay Drive Suite 146 +Jasonfort, NM 24357-9882",1921-11-15 23:42:35,f3:82:72:c2:fc:95,kenneth78@clark-ford.com,img/obama.jpg +Rebecca Williams,749-08-1048,63470,"45023 Williams Throughway Apt. 385 +Scottberg, WI 90162-9757",2014-10-19 23:46:13,b8:84:b3:d2:96:4f,michaelcunningham@hotmail.com,img/obama.jpg +Christina Mendez,189-68-8460,22105,"27558 Kevin Club Suite 043 +West Bonnie, DE 79682",2006-01-13 04:01:02,e7:e8:bc:13:d6:b2,kimberly40@yahoo.com,img/obama.jpg +Sarah Reese,512-41-2827,48955,"4363 Sanchez Lock +South Elizabethfort, WI 31283-9221",1949-09-25 16:24:36,d9:83:6e:cc:b2:f1,sarahserrano@hotmail.com,img/obama.jpg +Kelly Parker,227-68-3446,63660,"055 Angela Camp Apt. 709 +New Alexandraborough, NV 40614",1979-10-17 08:12:25,90:4e:2f:68:24:c0,urivera@carson.com,img/obama.jpg +Adriana Banks,503-61-9101,55597,"157 Gentry Parks Suite 985 +Lake Michaelmouth, MT 10058",1999-08-26 00:50:34,75:70:95:c0:79:44,jyoung@chapman-walker.info,img/obama.jpg +Kristen Kelly,674-29-4694,31587,"11254 Christopher Mills +Port Tanya, ME 15451-9844",2016-06-25 02:57:27,e8:65:74:51:2d:fa,garciajody@yahoo.com,img/obama.jpg +Heather Gonzalez,058-30-9514,30300,"USNV Collins +FPO AE 15860",1966-02-21 21:15:51,5d:aa:47:65:58:c9,ugarrison@wright.com,img/obama.jpg +Cassandra Harvey,573-83-1574,33751,"482 Dixon Isle Suite 414 +Phelpsside, PW 13718",1973-04-09 18:47:48,81:17:3e:43:c3:29,kelly63@yahoo.com,img/obama.jpg +Amber Williams,164-16-7934,19220,"9854 Chris Club +North Randallchester, MT 56859-2408",1962-09-14 22:07:36,5e:4a:a1:2a:08:0a,hwatson@miller.com,img/obama.jpg +Ashley Williams,582-13-1088,81038,"79337 Scott Isle Suite 264 +Johnsonshire, WI 59389-9005",1957-06-13 15:45:24,9c:d9:bb:5b:96:49,smcdonald@yahoo.com,img/obama.jpg +Andre Powell,817-81-2399,52983,"710 Veronica Station Suite 334 +North Markfurt, AK 35941",1924-04-09 05:46:03,7b:3a:bd:46:a1:d6,gnguyen@gmail.com,img/obama.jpg +Karen Ray,045-13-1345,78769,"156 Rodney Stream Suite 771 +Ballview, NM 15265-2796",1971-02-13 02:38:26,61:c4:c6:79:e0:18,destiny45@hickman.com,img/obama.jpg +Calvin Bright,465-42-4900,49088,"9706 Fowler Burg Suite 504 +Wagnerchester, OH 12744-6332",1931-03-03 04:47:54,ac:fd:9b:c5:aa:c5,nelsonlaura@morales.org,img/obama.jpg +Mrs. Jennifer Mccormick,725-20-8719,89123,"4001 Carney Road Apt. 439 +Pamelaville, WY 66008-0101",1997-09-06 20:57:38,37:c4:be:a2:29:f9,charris@gmail.com,img/obama.jpg +Kathy Hughes,566-64-5489,25881,"USNS Espinoza +FPO AE 45047-7090",1990-09-21 20:22:38,90:9c:e3:4d:f7:1b,rodriguezjamie@davidson.com,img/obama.jpg +Sandra Miller,556-77-3642,26066,"4034 Barnes Ways +Lake Justin, GA 19611",1947-06-09 04:51:09,9c:6d:e8:0d:36:28,vyu@burke.org,img/obama.jpg +Andrea Mccarty,137-58-5015,18571,"71025 Walton Oval +Scottport, UT 51841",1999-07-22 10:35:16,59:b2:2e:87:cc:6c,michaelburton@hotmail.com,img/obama.jpg +Matthew Cunningham,854-39-4373,65803,"935 Sara Fords +New Scottfort, CO 66958-8412",1917-05-11 09:32:19,9c:93:cc:d9:1b:c8,carlsonalex@herman-mccormick.com,img/obama.jpg +Judy Sanchez,358-42-7862,87540,"445 Nicole Run +West Alexander, AZ 03915-9954",1961-12-28 04:33:44,78:8c:68:29:b1:3f,ernestrose@hotmail.com,img/obama.jpg +Olivia Fuller,334-16-0011,81861,"43684 Villanueva Groves Apt. 174 +North Stacy, TX 42146",1968-05-06 23:40:23,0b:1f:63:83:2c:de,ijohnson@hotmail.com,img/obama.jpg +Brian Parks,807-35-9836,79375,"821 Douglas Heights +Lake Corey, FL 56513-0465",1986-11-08 14:51:31,9f:5e:f8:90:e0:4e,imartin@hotmail.com,img/obama.jpg +Michaela Martin,869-52-5975,50350,"76519 Roberts Stravenue Suite 794 +West Michaelmouth, NV 89706-9596",1943-01-19 10:32:26,d2:17:78:58:bc:24,ellismichael@white.info,img/obama.jpg +Erik Powell,408-49-4301,38393,"83602 Daniel Mission Suite 649 +Charleshaven, KS 87312",2003-10-12 03:28:29,9c:ec:6c:fe:9d:31,joseph16@orozco-jones.com,img/obama.jpg +Darlene Hudson,729-16-7943,05283,"7685 Jesus Highway Suite 445 +New Staceytown, AL 77873",1983-01-18 17:12:38,c4:5e:41:42:19:4d,qvaughn@hotmail.com,img/obama.jpg +Cheyenne Martinez,191-03-9178,74240,"808 Caleb Course Suite 772 +Benjaminmouth, MP 34621-2614",2009-06-30 00:21:13,90:49:8a:1a:1d:82,shawn93@bernard.com,img/obama.jpg +Jessica Gay,658-11-3832,18281,"473 Curtis Parkways +Wadeville, NY 61374-3642",1936-06-20 17:36:44,70:23:33:f7:2b:7f,ppineda@yahoo.com,img/obama.jpg +Justin Morrison,061-09-4058,53161,"26516 James Lights Apt. 180 +Port Victorhaven, ND 44243",1961-02-06 03:17:11,09:9d:8f:4b:09:80,michael19@moore-lambert.com,img/obama.jpg +Sarah Munoz,739-65-2079,66756,"6018 Brandon Rapid Apt. 529 +Alvarezmouth, SC 65309-8983",1984-09-28 19:28:53,0b:67:fa:3c:43:aa,stephaniehanson@hotmail.com,img/obama.jpg +Margaret Herman,661-98-9598,64713,"743 Hernandez Grove +South Rachel, WI 20097",1924-04-25 02:59:38,36:79:d2:b6:3a:a5,brianhall@yahoo.com,img/obama.jpg +Robert Pineda,898-62-2610,69848,"619 Sandy Burg +Lake Gailshire, VA 53050",2012-11-18 02:39:10,0c:fe:b0:70:42:f6,thomasphillips@hotmail.com,img/obama.jpg +Hunter Downs,044-67-4824,57316,"669 Jones Station Suite 617 +Port Lindaberg, NC 24479",1977-06-29 23:53:13,dc:59:4e:09:ae:20,preynolds@green.biz,img/obama.jpg +Jacqueline Mclaughlin,190-37-0836,35270,"555 Schaefer Trafficway Apt. 956 +Hansenstad, LA 67579-4733",2001-01-02 03:53:07,5a:7c:2e:cd:2c:f0,hbutler@marquez.biz,img/obama.jpg +Christine Griffin,557-66-4417,40126,"829 Johnson Park +North Joseph, AK 22629",1942-12-03 07:38:11,c9:2a:53:0a:f3:4a,baileyjesus@gmail.com,img/obama.jpg +Joshua Webster,837-39-1928,80447,"482 Mcconnell Drives Suite 249 +South Hectorborough, NC 09734",1978-11-14 05:45:40,42:64:64:e1:33:86,jason13@schroeder.info,img/obama.jpg +Lawrence Middleton,708-28-7546,37041,"0605 Heather Streets Apt. 513 +Youngmouth, MD 05739-7877",1956-04-06 23:27:13,a2:38:a7:b6:5b:59,andersoncolleen@wright.com,img/obama.jpg +Karen Hunt,238-47-8216,20863,"18349 Tyler Walks +East Rebeccaborough, NM 57285",1993-04-02 18:27:41,41:4a:5e:51:52:01,jeanettecase@gmail.com,img/obama.jpg +Jane Cooper,048-06-4077,58371,"02558 Kelli Creek Apt. 449 +Bernardton, NY 35958",1965-01-04 21:00:02,33:dc:4c:b6:f3:d2,davidjones@hotmail.com,img/obama.jpg +Wesley Good,454-30-2424,82991,"245 Rasmussen Rapid Suite 206 +Port Lisabury, MO 14890",1953-02-26 00:28:53,e4:e4:2b:e8:c6:16,brett73@wright-sanchez.com,img/obama.jpg +Wendy Sanchez,275-16-7958,15608,"USNV Frost +FPO AP 32639",1985-03-26 15:23:08,3e:9b:76:9d:0e:34,jeremymoore@hotmail.com,img/obama.jpg +Karen Brewer,090-29-8982,58226,"339 Simon Curve Apt. 781 +Lake Barbaratown, AK 61689-9935",1967-11-23 16:25:11,ff:b7:d1:19:9c:cd,castanedasusan@yahoo.com,img/obama.jpg +Elizabeth Garcia,327-67-0133,08180,"0337 Ashley Highway Suite 164 +Timothyfurt, WI 19487-9540",1950-03-19 04:41:14,29:82:27:bc:25:ba,mjohnson@yahoo.com,img/obama.jpg +Nancy Clark,262-99-8106,75770,"USS Salinas +FPO AE 96435",1973-01-02 18:42:24,18:32:32:b6:59:9b,waltersterry@yahoo.com,img/obama.jpg +Mark Williams,317-17-0281,72410,"023 Scott Roads Apt. 541 +Holmesmouth, NH 19267",1953-10-23 05:28:10,60:73:cb:f1:f0:a8,usimpson@yahoo.com,img/obama.jpg +Erin Beltran,814-97-6726,99197,"2253 Mckenzie Place +Lake Dawnhaven, NY 47948",2014-10-07 02:06:00,3d:47:77:9b:a1:2f,shawn82@yahoo.com,img/obama.jpg +John Meyer,352-70-4765,88396,"54454 Brenda Drive +East Alex, NC 69623-3738",1927-03-07 08:54:22,52:15:e5:bd:00:7a,fandrews@hotmail.com,img/obama.jpg +James Miller,171-15-0216,76553,"256 Lori Lane Suite 612 +West Jacquelinemouth, PA 69847-4922",2012-10-17 18:14:20,e4:25:52:bb:59:a8,steven31@bowers.com,img/obama.jpg +Neil Clay,560-77-4273,64430,"05734 Adam Lakes Suite 051 +Brandonland, ND 51595-2203",1920-10-26 07:58:51,36:0e:09:ac:d3:6a,derek68@yahoo.com,img/obama.jpg +Sandra Holmes,740-71-7191,32976,"80141 Gabriela Isle Apt. 340 +Michaelburgh, AK 61677",1933-05-17 13:25:50,ae:6a:71:1f:4b:e7,erin97@yahoo.com,img/obama.jpg +Taylor Mayer,070-03-8408,92291,"55343 Campbell Rest Suite 908 +Dylanland, MH 70356",1986-07-27 10:16:42,ce:57:01:07:d4:fc,stephaniehernandez@zamora.com,img/obama.jpg +James Morrow,763-44-8622,84913,"843 Woods Estates Suite 841 +Michaelhaven, PW 22141-3454",1934-03-05 19:01:11,3c:57:9e:c5:24:ac,williamsmichael@mclaughlin.com,img/obama.jpg +Kathy Brown,090-75-5941,97486,"98013 Michael Ridge Suite 615 +Timothychester, HI 40242-6942",1959-07-13 19:06:04,fd:41:2d:01:00:23,jeffreybailey@walter-miller.net,img/obama.jpg +Charles Dominguez,244-39-0582,05161,"917 Jeremy Unions Suite 627 +Lake Andrewton, WI 17617",1966-11-17 21:30:15,f3:fe:9f:b9:52:c8,christopherdickerson@hotmail.com,img/obama.jpg +Charles Petersen,155-28-7955,47459,"8697 Katie Meadows Apt. 442 +Jamietown, MI 25698",1920-11-28 12:31:22,33:21:ab:ef:4f:de,natalie18@torres.com,img/obama.jpg +Catherine Gomez,592-34-2055,26011,"26805 Thomas Coves +Port Connie, MS 16191",1976-02-03 08:22:14,9e:ed:9c:48:b3:94,cynthiasteele@gmail.com,img/obama.jpg +Yvonne Benitez,489-10-4335,83875,"PSC 6878, Box 0105 +APO AP 54628-0494",1974-11-01 15:56:10,6d:c2:61:a2:34:d8,michaelpratt@hotmail.com,img/obama.jpg +Daniel Clark,111-55-8967,71550,"PSC 4598, Box 5093 +APO AP 67849",1937-08-07 21:23:45,54:7e:2f:f0:62:f2,wesleypratt@mccoy.com,img/obama.jpg +Thomas Garcia,822-27-5509,40516,"1423 Anderson Prairie +Lake Christopherburgh, MS 73007",1960-04-18 18:19:46,8e:50:b6:50:bd:1f,wjohnson@sims.com,img/obama.jpg +Kevin Sherman,183-77-5034,55100,"1089 Joshua Streets +Walshbury, NJ 10717",1996-02-24 09:35:00,f6:91:98:a1:f3:8f,marc33@jones-castro.info,img/obama.jpg +Ronald Nichols,838-52-2327,74858,"4327 Ortiz Garden Suite 985 +Jenniferburgh, MS 18285-7259",1943-06-08 08:14:52,6a:d8:b0:4c:7b:97,singletonvernon@gmail.com,img/obama.jpg +Daniel Butler,044-13-3393,17914,"844 Christensen Lane +Richardtown, LA 37903-6585",1931-06-19 00:19:00,49:e1:80:84:30:7d,tiffany27@peters-roach.com,img/obama.jpg +Ana Gordon,732-70-4036,26526,"145 Ward Plains Apt. 945 +West Gregoryton, WA 32065",2013-08-19 14:49:14,66:a9:d0:80:ef:2c,ericboyd@hotmail.com,img/obama.jpg +Jared Mitchell,315-34-6801,20364,"30299 Karen Expressway +Piercetown, KY 10740",1940-05-05 05:07:59,81:87:72:76:62:e1,anthonyhancock@yahoo.com,img/obama.jpg +Eduardo Campbell,732-46-2791,57499,"71570 Taylor Forks +Ryanland, MN 02216",1923-12-08 06:45:48,56:4e:8a:57:54:75,lisa36@galvan-skinner.com,img/obama.jpg +Jason Mullins,755-89-2479,03009,"7777 Alexandra Parkway Suite 532 +South Amandaville, AL 48904-4038",1980-02-20 03:16:55,b4:1e:f4:07:6f:47,garciaseth@huynh.info,img/obama.jpg +Jennifer Chung,345-33-7739,68841,"44547 Rowe Neck +North Nicholas, MD 25757-8886",1938-09-17 12:41:02,c6:44:d5:45:8f:69,carneyrichard@yahoo.com,img/obama.jpg +Zachary Bailey,306-01-9048,28223,"199 Smith Vista Suite 728 +Port Victoriamouth, MN 42903",1940-03-31 16:11:54,d4:f0:2a:40:60:d1,ivan99@anderson.com,img/obama.jpg +Jasmine Booth,096-88-8749,42465,"01075 Collins Mall Apt. 993 +Meyerbury, CO 40746-9530",1983-03-18 09:31:32,a1:1a:0a:4c:f6:46,weaversavannah@hotmail.com,img/obama.jpg +David Jacobs,501-54-3398,03337,"PSC 6028, Box 0162 +APO AE 07374",1928-04-24 12:19:40,f4:84:c7:5a:95:47,rhughes@yahoo.com,img/obama.jpg +Aaron Peterson,197-75-3842,79133,"3752 Joshua Throughway Apt. 550 +East Virginiamouth, NC 88747",1965-01-10 15:58:04,f5:f7:7c:85:36:c0,martinschmidt@yahoo.com,img/obama.jpg +Kevin Russell,421-42-2569,59628,"652 David Rapids Apt. 915 +New Stephanie, ID 39955-2193",1936-09-16 03:24:05,e0:27:67:f6:e8:71,kanethomas@martinez-gonzalez.org,img/obama.jpg +Sheryl Marshall,409-32-2881,79678,"0566 Cheryl Ridges Suite 373 +Karenmouth, OH 07092-6389",1973-09-18 08:23:58,88:0e:89:23:a8:26,danieldavis@gmail.com,img/obama.jpg +Victoria Baxter,034-88-8472,71161,"46088 James Turnpike +North David, NJ 51762",1917-11-26 13:46:32,ed:25:7f:bb:ca:cf,lopezsean@richardson.info,img/obama.jpg +Linda Alexander,263-48-2171,93911,"PSC 1327, Box 0748 +APO AE 68938-1172",1985-04-19 01:34:31,67:73:c2:06:1a:6d,christinaskinner@henderson-patrick.com,img/obama.jpg +Christina Mathis,347-30-8405,77300,"95172 George Loaf Apt. 137 +Wisefort, ND 90466-1074",1947-05-27 09:23:02,0c:35:2f:4b:28:20,ljames@gmail.com,img/obama.jpg +Loretta Hunter,751-82-6306,07587,"7061 Gill Skyway Suite 021 +Port Melissashire, PW 68275",1990-01-23 20:16:56,22:b1:d0:d7:33:51,amandashaw@wright.org,img/obama.jpg +Erin Hunter,287-11-5648,93253,"1329 Tina Mills Apt. 879 +Michaelside, SC 97608-8845",1983-05-01 02:50:20,4a:45:d3:c2:9f:c9,john39@yahoo.com,img/obama.jpg +Dawn Andrews,656-13-6592,25661,"3396 Amanda Lights Suite 031 +Martinezborough, UT 68219",1938-09-30 08:09:34,b5:e5:b9:87:54:45,sellerskenneth@hoffman.com,img/obama.jpg +Amanda Lane,363-33-9535,51477,"2832 Bowman Islands +Port Diamondmouth, AZ 42818",1969-09-09 19:54:10,59:64:55:6a:85:27,vincent14@yahoo.com,img/obama.jpg +Claudia Gonzalez,450-59-2680,71911,"61747 Cohen Drives +Lake Kimberly, NM 36643",1933-02-03 19:55:11,34:16:29:5b:e6:dc,carlsonsarah@murray.com,img/obama.jpg +Joseph Sullivan,205-72-3821,39517,"138 James Falls +North Juanton, KY 24420",2008-04-18 17:58:03,eb:db:82:5d:cd:00,amandapaul@holland-smith.com,img/obama.jpg +Debra Scott,035-11-6185,92804,"427 Johnson Centers Apt. 650 +Amberhaven, CT 69507-9687",1918-08-16 12:07:01,e3:73:f3:8c:2e:92,tcarter@gmail.com,img/obama.jpg +Chad Brown,202-20-1350,49166,"6785 Rios Prairie Suite 978 +Caseychester, IL 38376-3133",1966-11-14 23:42:28,01:a3:49:fc:91:46,pnguyen@hotmail.com,img/obama.jpg +Patricia Peterson,663-17-6093,47829,"8793 Valentine Mills +Robertview, GU 49747",2008-07-16 09:06:05,bf:bd:31:4e:3e:fd,gabrielle33@martinez-newton.com,img/obama.jpg +Brooke West,002-14-1652,72842,"Unit 3684 Box 2572 +DPO AP 73842-9148",1969-12-20 09:30:49,50:2b:28:b4:40:4e,masonolson@yahoo.com,img/obama.jpg +Mckenzie Harrington,633-66-6061,40939,"51525 Paul Plains +Johnsonchester, MA 23349-5936",2001-05-24 12:19:58,d9:f0:67:9d:ea:67,carterdiana@wallace.com,img/obama.jpg +Katelyn Hayes,714-34-4872,96311,"7715 Hill Drives +South Ianmouth, CO 27813",1956-04-24 07:19:29,37:0c:36:11:5a:b5,karenschmidt@weeks.com,img/obama.jpg +Lauren Harris,651-78-8176,34141,"35903 Hernandez Court Apt. 032 +Port Rebekah, MT 19742",1996-02-08 07:51:49,60:13:e1:df:6f:12,ljennings@jenkins.net,img/obama.jpg +Don Rodriguez,688-55-1198,05258,"31423 Miguel Loop Suite 600 +South Danielland, OK 10922-8152",1964-01-21 17:58:08,1d:ba:81:a4:e2:f3,pking@reynolds.info,img/obama.jpg +Benjamin Smith,156-46-1215,11427,"902 Brooks Cliff Apt. 294 +Danielview, FL 96431",1957-10-16 01:41:26,eb:cb:14:c0:0f:23,kelsey03@davis-miller.org,img/obama.jpg +Heather Herrera,149-91-3819,12444,"7525 Davenport Roads +New Monica, OH 34212-8820",1917-12-21 16:12:04,22:1a:a7:c2:b4:35,aaronalvarado@gmail.com,img/obama.jpg +Dr. Jason Hall MD,048-75-7834,88467,"9085 Meghan Point Suite 505 +Howardshire, PW 77405",1990-05-17 09:07:36,87:a5:38:23:cf:09,donaldpierce@hotmail.com,img/obama.jpg +Peter Gray,689-80-3590,57675,"3577 Williams Plains Suite 001 +South Elainetown, VA 96133-5469",1997-10-01 18:09:08,11:c6:d8:60:81:e6,nicholasortega@sherman-freeman.com,img/obama.jpg +Dale Mckenzie,307-90-7748,47294,"5869 Deborah Crest Apt. 014 +Annettechester, RI 04775",1992-12-11 12:03:11,fd:18:5f:9a:1f:94,jamesmays@yahoo.com,img/obama.jpg +Todd Floyd,161-48-7398,26096,"7023 Salazar Expressway Apt. 992 +Codyfort, VI 10520-8122",1984-04-15 13:55:59,84:c2:93:f3:9a:da,myerscharles@hotmail.com,img/obama.jpg +Matthew Landry,346-81-2922,89103,"Unit 8438 Box 2322 +DPO AE 42122-4503",1981-06-07 09:55:53,ac:e1:3c:6e:b3:31,ericstevens@gmail.com,img/obama.jpg +Charles Watkins,620-92-5844,90384,"703 Smith Union Suite 570 +New Staceyhaven, FL 34962-4575",1928-07-24 03:55:56,28:e2:e2:20:3a:d9,adamsamy@austin.org,img/obama.jpg +Elizabeth Walters,184-08-2114,46309,"4869 Alvin Stravenue +South Matthewville, NC 25152-8012",1920-05-22 21:59:59,1a:9c:cd:44:94:31,david42@peterson.com,img/obama.jpg +Terry Diaz,140-68-8566,53409,"3925 Jessica Radial Apt. 714 +Lake Jasonton, MT 49376-0849",1990-02-13 10:20:39,49:cb:0f:93:78:39,alexberry@yahoo.com,img/obama.jpg +Daniel Mcintyre,193-76-6922,20402,"840 William Club +East Julie, OR 39504",1967-07-28 06:39:11,a2:ee:4b:d6:c4:e7,katherinedavis@hotmail.com,img/obama.jpg +Cory Mckenzie,278-44-1825,52104,"99275 James Mountain Suite 074 +West Jacob, VA 13282",1965-05-24 03:32:40,45:68:8d:59:13:7a,michael15@gmail.com,img/obama.jpg +Edward Cummings,769-35-0352,28248,"69584 Hayden Forges Suite 188 +Port Charles, WA 68459-3227",1981-10-09 19:35:28,47:9f:01:be:95:3a,jacobhoffman@martin.com,img/obama.jpg +Tyler Cain,888-15-6417,59759,"51269 Harrison Walks +Port Kathleenside, SD 18840-2817",1918-11-06 13:39:55,bc:32:d3:a6:c5:8c,rrodriguez@fisher.com,img/obama.jpg +Matthew Russell,710-28-7102,41465,"250 Nancy Village +North Sandraland, AL 43781",1957-09-07 06:49:38,15:67:e6:49:83:66,morrisontamara@taylor.com,img/obama.jpg +Ronald Willis,008-73-8774,68279,"712 Rush Junctions Apt. 762 +West Amy, KY 10469-0669",1926-12-04 16:10:45,1a:77:c2:2c:04:01,marshkelly@yahoo.com,img/obama.jpg +Joseph Moore,787-34-2112,82195,"776 Katherine Canyon Apt. 948 +Andersonville, KS 86738-1797",1962-05-25 12:01:06,b9:73:e8:b9:e3:2e,jennifer16@martinez.com,img/obama.jpg +Peter Williams,628-82-2287,65358,"0339 Kaitlyn Summit Suite 664 +North Ashley, NH 66307",1975-09-15 20:46:49,94:6d:30:3a:03:54,mullenzachary@paul.com,img/obama.jpg +Stephanie Kennedy,393-14-6820,87500,"772 Johnson Valley +Kennethburgh, CA 43038",1992-03-07 10:27:38,16:2c:6d:2b:46:33,robertbentley@wagner-miller.com,img/obama.jpg +Deborah Cruz,894-05-2251,02161,"USS Welch +FPO AA 64637",2016-05-03 05:15:06,fd:a9:25:f0:35:dc,juliesims@marshall.biz,img/obama.jpg +Maria Simpson,030-49-7970,28288,"80553 Joseph Wells Apt. 026 +Barnettshire, NC 02112",2011-01-21 12:34:45,c5:fa:9e:bf:92:5a,carrollkeith@gmail.com,img/obama.jpg +Jeremy Leonard,624-15-9692,06586,"926 Michael Highway +New Kaylaton, HI 38151",1981-02-25 05:34:40,a0:56:f8:aa:a9:61,turnerlori@hotmail.com,img/obama.jpg +Laura Holt,791-34-3957,01788,"9697 Hall Courts +North Julie, CA 14139",1952-05-13 07:03:51,39:b1:86:bb:12:67,sue98@little-hernandez.info,img/obama.jpg +Miranda Velasquez,690-54-9077,43790,"5855 Benson Dale Apt. 740 +North Davidmouth, AS 92172-0222",1989-12-16 00:32:06,ca:22:3c:f6:20:8d,denise02@jensen-daniels.com,img/obama.jpg +Robert Osborne,230-65-0643,62897,"404 Hardy Greens Apt. 400 +Hansenside, CA 00497",1970-04-25 06:51:57,56:5a:8b:1c:58:da,jacobdavis@coleman-morris.com,img/obama.jpg +Robert Davis,694-14-2352,76306,"7352 Theresa Highway +East Laurenfurt, AZ 21901-4046",1936-03-04 08:09:04,a5:61:69:5b:2c:d0,keithclements@yahoo.com,img/obama.jpg +Christopher George,582-41-0855,21104,"7085 Walker Walks +Edwardsfurt, ID 49785-6222",1986-06-09 00:38:19,49:0c:f0:1a:f0:c1,morganreynolds@garcia-robinson.com,img/obama.jpg +Mrs. Lisa Wallace,060-39-8686,92917,"993 Hoffman Hollow Suite 795 +Lopezborough, WI 21859",1968-03-10 02:37:34,6b:0c:1f:15:9e:f1,howard56@gmail.com,img/obama.jpg +Mark Liu,454-77-5445,89690,"815 Williams Throughway Apt. 593 +Woodberg, PA 83644-4851",1965-12-08 14:05:05,74:83:28:ab:f3:d9,wrightapril@yahoo.com,img/obama.jpg +Jennifer Khan,395-52-7602,25750,"9614 Matthew Forges +West Angela, PA 62483-1659",2003-03-13 12:42:51,5e:90:d6:5e:64:b9,mary31@yahoo.com,img/obama.jpg +Holly Martinez,178-24-3375,41245,"280 Austin Brook +South Raymondport, DC 81766",1931-05-17 17:11:10,6d:87:66:08:0a:74,valerie11@weaver.biz,img/obama.jpg +Robert Phillips,235-95-8809,90143,"075 Jackson Rapid +Pageview, FM 15636",1989-11-04 14:37:55,86:e6:f1:c9:98:50,mcgeeholly@hotmail.com,img/obama.jpg +Martin Hunt,612-46-1245,97104,"147 Nunez Fort Apt. 465 +West Douglasfort, AZ 67832",1926-11-06 13:43:35,04:93:1a:78:4c:08,wayne57@gmail.com,img/obama.jpg +Gabriel Glenn,572-31-3269,88783,"83119 Ballard Ville Apt. 353 +South Michael, AZ 46901",1955-08-30 16:32:41,33:58:b9:af:b7:f1,susanmoore@castillo-bowen.org,img/obama.jpg +Jeremy Mcfarland,831-27-4350,83866,"USS Perez +FPO AA 23079",1984-10-12 05:44:00,cc:7a:ab:4f:3b:d3,jessicaburns@yahoo.com,img/obama.jpg +John Baxter,537-01-3005,56703,"31869 David Forge Suite 053 +Ortizport, PW 60547-6144",1961-09-23 15:29:54,37:38:0c:80:16:19,richard30@hotmail.com,img/obama.jpg +Tracy Ford,283-10-7546,65240,"82605 Sandoval Oval Apt. 425 +North Austin, NJ 82172-0624",1992-08-28 18:10:02,57:be:ac:bb:9a:be,sarah50@jones-strong.info,img/obama.jpg +Sabrina Hernandez,899-63-2558,56873,"189 Robert Locks +Port Joseph, MS 91271-0639",1959-12-18 22:47:46,7d:5e:96:72:8d:bc,ashleynorman@gmail.com,img/obama.jpg +Deborah Perry,822-24-2575,71905,"969 Juarez Passage Apt. 188 +East Jasonhaven, MP 91677-7837",1935-04-11 18:42:13,81:96:93:cc:a1:b6,froberts@brown.biz,img/obama.jpg +David Perkins,189-23-6068,15654,"PSC 2672, Box 2571 +APO AA 57088-1709",2000-08-09 02:02:27,e8:32:37:59:23:88,wmartinez@yahoo.com,img/obama.jpg +Makayla Murray,571-34-1279,37046,"60819 Anthony Points Suite 228 +Kennethmouth, LA 61066-7632",1921-11-19 11:52:21,ed:01:c0:18:36:bf,johnsonkristen@wagner.com,img/obama.jpg +Mr. Luis Mcfarland,265-91-8627,32582,"4765 Paige Prairie Apt. 074 +Jacksonmouth, CO 73672",1936-06-16 02:01:32,21:cb:7c:b8:3d:10,jessicagallegos@bernard.com,img/obama.jpg +Melissa Hill,684-11-0769,67498,"932 Ellison Valley Suite 565 +Port Sharon, WV 50080",1922-07-21 20:55:56,b4:47:46:09:8b:c2,jstevenson@hotmail.com,img/obama.jpg +Mr. John Jones DDS,745-59-1821,76314,"72653 Nichols Ville +Zacharyside, DE 22865",1981-02-09 08:14:23,18:6a:a4:11:2d:42,brownmichelle@wilson-rivera.com,img/obama.jpg +John Stewart,320-32-6098,78055,"499 Acosta Track +Kaufmanmouth, GA 48349-3778",2004-05-06 22:25:38,7b:80:e2:56:8c:61,davidcunningham@williamson.info,img/obama.jpg +Kristen Lutz,345-84-9443,26230,"03253 Davis Crest +East Elizabethport, WI 07914",1993-11-24 09:58:43,74:a7:e2:93:b8:c1,stephengonzales@yahoo.com,img/obama.jpg +Tammy Hendricks,238-48-9879,60425,"761 Steven Drive +Parkchester, PR 04894",2008-01-12 11:21:44,11:4d:cb:82:16:01,regina97@gmail.com,img/obama.jpg +Robert Coleman,661-53-4315,90698,"38213 Patterson Island +Christineland, NM 51316",2011-05-08 14:39:54,47:88:7d:c0:93:87,cynthia74@hotmail.com,img/obama.jpg +Shawn Alvarado,230-98-0883,59815,"754 Ellis Underpass Suite 618 +New Johnburgh, KS 16124-2142",1978-03-06 17:58:43,38:d4:5a:96:54:e1,grios@gmail.com,img/obama.jpg +Keith Campbell,007-20-9399,58036,"5323 Matthew Roads +East Maureenbury, NY 85547",2009-09-25 13:37:32,59:db:b9:ec:63:fb,bernardlori@riley.com,img/obama.jpg +Laura Mason,850-12-8904,14381,"29325 Marks Neck Apt. 343 +South Anashire, CT 29180",1985-09-04 05:51:36,11:c6:a0:b2:8f:43,rodgersmorgan@barajas.info,img/obama.jpg +Chad Garrett,303-24-5456,02468,"Unit 3381 Box 3236 +DPO AA 30641",1926-04-15 20:31:14,e8:9d:b6:28:cb:4f,iunderwood@hotmail.com,img/obama.jpg +Laura Small,284-76-7553,79238,"234 Christine Creek Apt. 790 +West Rachelfort, OH 08145-1671",2008-11-03 04:42:57,f7:d7:73:74:24:26,qhunt@hernandez.net,img/obama.jpg +Thomas Brown,028-33-4401,84986,"0389 Cooley Trail +Port Zachary, ME 11026-2780",1981-05-16 01:43:34,52:6d:c2:ba:ff:94,chad93@yahoo.com,img/obama.jpg +Melissa Chambers,526-92-1876,59823,"PSC 9123, Box 3049 +APO AE 51171",1990-09-26 18:19:48,9e:03:d7:1b:cf:a9,gmiller@lang.com,img/obama.jpg +Michelle Torres,412-67-0712,13632,"PSC 9208, Box 9838 +APO AP 03055-9639",1962-03-18 00:17:42,6d:51:c7:6f:28:a0,spearsdanielle@webb.info,img/obama.jpg +George Robinson,453-67-9815,26612,"USS Castro +FPO AP 23788",1949-12-10 07:30:31,39:90:5f:33:9a:c2,murrayryan@cherry.net,img/obama.jpg +Richard Wells,268-61-4343,30625,"668 Horn Highway +New Donald, IN 66303",1985-12-04 13:50:31,5d:df:2e:df:38:4d,sean08@hotmail.com,img/obama.jpg +Katherine Woodward,268-40-0583,06455,"9435 Burgess Unions Suite 970 +North Briana, MI 24503-3022",2004-10-19 23:27:45,a3:35:10:74:a3:07,jessicapotts@williams.com,img/obama.jpg +David Freeman Jr.,441-58-7535,02883,"6871 Carolyn View Suite 503 +New Michaelhaven, CA 33953-6905",1971-05-05 08:47:57,8f:21:42:39:2b:e4,ijohnson@yahoo.com,img/obama.jpg +Cassandra Russo,460-79-5742,15797,"2118 White Estate +Bowmanville, LA 55542",1962-10-26 17:56:00,9c:32:c8:a1:b6:89,elizabeth88@archer.com,img/obama.jpg +Theodore Stewart,641-95-2581,44899,"982 Margaret Spur Suite 008 +North Danielview, ND 12302-1333",1992-01-10 23:46:52,e5:b9:b6:78:aa:91,amber28@hotmail.com,img/obama.jpg +Christopher Doyle,449-35-2255,36772,"9858 Tammy Crescent +Zacharyville, AR 34569",1945-04-09 04:59:06,ee:35:38:62:bc:f3,washingtonjames@hotmail.com,img/obama.jpg +Ethan Walker,531-89-4189,54099,"21538 Bradley Light Suite 065 +Collinsland, AZ 91289",1933-12-18 17:41:04,63:00:36:f8:28:19,aprilhampton@gmail.com,img/obama.jpg +Nicole Dawson,018-21-1219,16819,"587 Michael Trafficway +Whitneymouth, MO 11713-3210",1960-08-02 14:37:43,15:2e:75:2f:84:05,jonathan44@yahoo.com,img/obama.jpg +Dr. Vincent Williams MD,749-02-9485,49831,"Unit 9192 Box 6260 +DPO AA 80069-9277",1959-11-13 20:40:45,a5:7d:aa:b7:02:83,mbrowning@hotmail.com,img/obama.jpg +Scott Murphy,852-01-7922,70434,"61761 Thompson Parkway +Martinezhaven, ND 18939",1921-08-22 17:45:30,86:f7:54:ae:47:6d,natalie22@hotmail.com,img/obama.jpg +Jean Howard,381-83-8061,62158,"6412 Renee Village Apt. 130 +Taylortown, FM 73094-1829",1991-03-19 00:10:41,83:7b:d7:d7:a7:c1,hillmary@bowers.com,img/obama.jpg +Dana Cobb,016-62-4369,33574,"285 Colon Oval +Port Megan, CT 52364",2010-02-06 03:30:59,fb:53:e2:8c:02:1b,lindamyers@austin.net,img/obama.jpg +Danielle Burke,352-69-0685,46852,"5920 Hart Lights Suite 571 +West Robert, CA 76825-1817",1979-12-26 05:24:05,4a:c3:48:58:8d:3f,williamswayne@mitchell.com,img/obama.jpg +Charles Richards,241-22-5106,88545,"976 Amy Junction Suite 835 +New Amybury, VT 96592-1999",1976-06-22 11:19:03,d6:b1:e1:2b:1a:ca,erica24@yahoo.com,img/obama.jpg +Christina Wright,738-78-0041,45318,"14822 Andrew Corners +Amandashire, RI 48278-2224",2000-05-09 14:30:18,b3:a0:3b:df:33:75,michael28@smith-phillips.net,img/obama.jpg +Hannah Reyes,815-79-6820,04049,"998 Frederick Trafficway Suite 188 +North Justin, ND 32573-1639",1918-11-16 04:21:55,8c:53:75:ad:8b:a6,valdezmatthew@scott.biz,img/obama.jpg +Emily Swanson,016-88-4459,25309,"41524 Heather Center Suite 607 +Charlesview, FM 39168",1963-04-19 21:37:37,b1:96:ce:7b:28:e4,erika49@smith.com,img/obama.jpg +Mary Hunter,737-83-2441,36520,"8391 Nelson Harbors Suite 397 +Port Heather, MO 81754-1642",1989-08-15 12:10:33,9d:19:2d:df:ff:46,jerrychen@carey.com,img/obama.jpg +Aaron Schwartz,780-85-1712,59879,"5838 Villa Wells +Port Colleenside, PR 02988-8110",1941-08-21 12:05:44,fa:ad:de:19:2a:3e,gpatrick@yahoo.com,img/obama.jpg +Patrick Warner,650-08-7142,14122,"9089 Heather Port +Wellsmouth, VA 08965",1968-09-24 16:51:05,d0:7e:a2:96:7e:33,faulknermargaret@rodriguez-evans.com,img/obama.jpg +Kenneth Leonard,003-25-2012,38141,"86411 Allen Keys +West Tamiton, MT 01493",2007-07-23 06:04:18,44:38:e9:e2:63:1d,john60@yahoo.com,img/obama.jpg +Kelly Trevino,897-34-7392,77994,"159 Mark Well Suite 503 +East Maureen, WI 60274-4342",1922-06-07 05:35:02,1f:10:00:e6:db:db,sarah04@hotmail.com,img/obama.jpg +Victoria Miller,175-32-0347,42652,"526 Ashley Light +West Jose, OR 94705-2751",1939-10-16 03:31:12,3a:67:8d:52:95:e0,chenedward@hotmail.com,img/obama.jpg +Mark Perez,394-05-9074,03120,"742 Graham Via Apt. 314 +Jenniferfurt, VA 15873-9216",1975-06-30 02:39:15,ac:27:e0:8d:f0:74,xthompson@yahoo.com,img/obama.jpg +Adrienne Vasquez,672-29-9862,33555,"093 Jeremy Ports +Beckerburgh, AL 91685-3101",1949-12-02 23:14:31,80:a4:9b:ba:bd:6a,cheath@carter-robles.com,img/obama.jpg +Joseph Wallace,082-33-9579,12672,"7399 Jason Extensions Apt. 266 +North Reneestad, OH 93211-4107",1943-02-24 14:03:44,99:3b:00:ec:0a:88,tpowell@hotmail.com,img/obama.jpg +Jacqueline Pham,617-73-2728,66616,"309 Brenda Shoals +Port Kyle, NM 31133",2010-11-03 23:33:02,2a:63:f0:24:09:66,smithjohn@cochran-perez.com,img/obama.jpg +Shelby Allen,593-38-1005,17519,"5062 Phelps Junctions +North Charleneshire, MO 29934",2015-04-27 12:51:01,03:c2:d6:78:64:ec,kcole@lopez-bradley.biz,img/obama.jpg +Adam Watkins,769-54-9577,62887,"422 Morgan Ports +Emilyland, SC 08201-2393",1936-04-27 20:42:19,a1:f5:01:aa:4d:8b,leah43@yahoo.com,img/obama.jpg +Julie Powell,779-51-7927,78279,"677 Melissa Lane +Mcmillanfurt, AR 14928-3568",1937-12-23 16:08:39,ae:a1:4e:97:50:39,leahrios@gmail.com,img/obama.jpg +Kayla Turner,382-52-2325,01793,"0248 Jose Mountains Suite 954 +North Monique, SC 36475-0761",2003-09-10 20:16:54,96:a4:86:37:8c:99,desireechavez@davis-sanchez.com,img/obama.jpg +Kelli Thompson,748-89-0893,14277,"23072 Pena Haven Apt. 406 +Thomasview, VA 60557",1969-02-12 19:47:18,ed:f6:4c:07:92:b3,melissapineda@macias.com,img/obama.jpg +Robert Garcia,065-76-5618,01695,"0894 Nicholas Extensions +East Kevin, NV 70988",1956-06-18 12:05:50,40:62:f3:7b:87:1b,kellerjohn@christian-jones.net,img/obama.jpg +Adam Franklin,256-12-2734,68198,"8966 Thomas Ford Apt. 364 +Masonborough, NC 62498-0108",2001-09-19 14:41:39,ab:73:3b:9f:5e:8b,emilygentry@gmail.com,img/obama.jpg +Kimberly Adams,052-82-0220,45201,"749 Norma Cape Suite 448 +Andrewberg, PA 84544-3455",1937-03-07 01:33:53,11:26:65:06:5b:43,gonzalezmelissa@yahoo.com,img/obama.jpg +Brett Dixon,063-06-3490,23888,"4300 Sara Extension Suite 248 +East Carrie, CO 30995-4384",1955-01-20 16:57:42,99:ae:df:ce:01:4d,jtyler@hotmail.com,img/obama.jpg +Katelyn Turner,584-51-2463,82655,"0646 Johnny Parkway +Youngland, NJ 83988-1790",2011-05-16 12:56:49,fe:f0:d2:c4:7b:78,bryantalexander@gmail.com,img/obama.jpg +Brett Sheppard,592-34-5762,87627,"2929 Moore Valley Suite 226 +Shortbury, IA 80141",1927-08-10 05:53:53,33:e2:0e:7c:bc:6c,ngibson@camacho.biz,img/obama.jpg +Robert Fowler,239-55-1641,17837,"2071 Hill Pass Apt. 376 +South Gregory, UT 45178",2004-07-07 16:25:28,68:a5:7e:8e:97:32,anthony58@gmail.com,img/obama.jpg +Joshua Lewis,873-59-6142,40184,"920 Ho Haven Apt. 290 +Rodriguezborough, ND 02432-4547",1983-01-25 14:05:13,3d:aa:49:81:70:b7,georgejoseph@hotmail.com,img/obama.jpg +Alexander Henry,200-97-9588,67261,"86867 Harris Haven +Kramerborough, ND 51714",1968-09-11 03:21:36,0a:1c:5d:91:c3:78,rachelwoodward@barnett.info,img/obama.jpg +Anthony Mendoza,394-75-8567,22105,"912 Smith Creek Apt. 890 +Rodriguezstad, PW 70730-4726",1975-06-01 23:13:03,ad:13:20:61:c1:8d,david02@lee.biz,img/obama.jpg +John Adams,131-68-3942,98018,"463 Pruitt River Apt. 090 +Lindsaymouth, DE 80345-2815",1952-06-09 23:53:29,4a:43:dc:29:56:3d,stephenpeters@hotmail.com,img/obama.jpg +Eric Holland,070-02-2660,50183,"334 Anna Highway Suite 524 +Lake Kenneth, GA 04696",1922-02-23 18:46:59,d2:57:a3:4b:10:38,buckleyfrancisco@ortiz.org,img/obama.jpg +Kendra Clark,508-41-2717,72167,"USNS Tapia +FPO AP 78714-2682",2006-11-23 01:27:08,92:73:c7:96:5b:61,baileyjeffrey@campbell-hughes.com,img/obama.jpg +Arthur Orozco,525-13-4806,84740,"925 Robert Fort Apt. 645 +Seanberg, DC 32283",1929-11-09 02:50:31,ff:04:17:b6:54:c3,jburns@mccormick-freeman.com,img/obama.jpg +Katherine Rogers,741-86-1035,03752,"01272 Stevens Crescent Apt. 381 +South Timothyfurt, MP 36059",2006-02-14 18:13:39,de:48:f1:7f:cd:2a,tom16@hotmail.com,img/obama.jpg +Nicole Dillon,188-12-4164,59995,"6864 Savage Viaduct +New Victorstad, LA 01494",2008-11-17 14:50:37,ef:25:44:6d:b5:31,qmorris@yahoo.com,img/obama.jpg +Zachary Curtis,513-69-9072,22464,"USCGC Palmer +FPO AE 64520-0036",1990-01-17 06:26:46,98:7c:8f:a4:20:8a,ocallahan@gmail.com,img/obama.jpg +Curtis Morales,481-47-1060,74974,"Unit 2807 Box 8136 +DPO AA 26715",1974-04-15 15:12:16,49:0d:b5:30:ac:0f,hickssherry@mullins.com,img/obama.jpg +Allison Lewis,122-70-2949,77707,"508 Fitzpatrick Highway +Petersenbury, MH 99316-6199",1928-08-02 17:26:28,43:8a:67:2d:ed:7e,betty11@perez.com,img/obama.jpg +Philip Duncan,357-57-1290,90362,"5075 Michael Gardens Apt. 495 +East Susanfort, MO 28890-8831",1923-03-23 15:05:23,44:b5:f8:56:78:08,johnhernandez@jones-davis.com,img/obama.jpg +Angela Herrera,398-26-9007,29600,"Unit 1147 Box 5798 +DPO AP 55108",1917-10-16 03:22:56,51:b7:79:6f:3f:b4,kevin53@owens.com,img/obama.jpg +Mary Bruce,339-34-3805,99524,"829 Emily Stravenue Apt. 210 +North Thomastown, VI 20850",1948-03-30 02:57:08,3a:71:7f:c0:c8:c3,gvelasquez@yahoo.com,img/obama.jpg +Todd Flynn,392-92-6257,19079,"38986 Matthew Ford Apt. 097 +Lake Laura, MS 38188",1943-01-23 19:43:55,ab:9f:05:fc:d6:5b,michael31@hicks.com,img/obama.jpg +Anthony Sanders,014-65-5773,84253,"9236 David Corners +West Ashley, FL 04106",1925-05-03 18:14:55,7e:fe:b4:a8:66:b8,arnoldmark@gmail.com,img/obama.jpg +Jenna Green,269-44-5380,36932,"USNV Powers +FPO AA 62879",1982-10-28 17:47:45,27:a6:7d:08:82:3f,deborah87@garcia.info,img/obama.jpg +Ryan Reed,055-24-6218,74963,"1400 Denise Square +Martinchester, IN 01859",1941-02-17 06:25:54,7c:44:1d:6c:ea:34,kellison@wolf.com,img/obama.jpg +Theresa Gregory,007-50-0714,33799,"Unit 0527 Box 7550 +DPO AE 96426",1943-03-14 01:56:43,9e:53:53:0d:72:fd,connervirginia@yahoo.com,img/obama.jpg +Micheal Robbins,695-71-7885,35803,"478 Jeremy Shores Apt. 966 +Patrickfurt, MI 51483",1942-02-12 10:37:53,3e:42:f6:43:4d:21,nicolejuarez@hotmail.com,img/obama.jpg +Joshua Hood,302-83-0831,78851,"4482 Dean Plaza Apt. 783 +Longmouth, WA 99406-6499",1993-11-30 11:29:16,f4:79:ea:e1:59:9c,schultzsean@hotmail.com,img/obama.jpg +Heather Aguirre,021-04-4491,66001,"707 Kirk Manor +East Michael, ND 33204",1927-04-07 15:58:35,e0:68:1a:40:66:cd,lopezrobert@ferguson.info,img/obama.jpg +Sarah Brewer,706-66-2358,98208,"065 Sandy View +New Zacharyland, AZ 56234-2046",2008-03-24 05:24:53,14:51:d0:b7:cb:c5,karlareese@yahoo.com,img/obama.jpg +Darlene Martinez,803-93-7812,60221,"786 Sheppard Inlet +North Andrebury, VT 03794-9887",2015-03-01 14:35:18,26:f3:3e:9d:a2:fd,bryanturner@jones.biz,img/obama.jpg +Eric Farmer,800-05-6834,95210,"242 Mueller Avenue +Curtisside, CA 47584-2296",1993-01-14 23:47:13,3b:b6:de:e5:ab:21,jill00@flores-good.com,img/obama.jpg +Dr. Pamela Wagner MD,379-89-3157,82321,"779 Krista Crossing +Kaitlinport, TN 23359",1973-03-14 22:16:35,93:46:a0:b9:9b:e6,carrillojonathan@wilson.biz,img/obama.jpg +Susan Bradley,390-94-9653,58536,"30230 Ashley Branch +Jonesstad, WI 53161",2013-08-22 04:41:21,db:80:5d:42:fc:cf,rogermiles@miller.com,img/obama.jpg +Kenneth Lawrence,868-97-3821,13111,"25674 Hunter Road +Wrightview, DE 25454",1967-05-12 08:08:40,a4:97:83:67:10:e8,carrieaguilar@yahoo.com,img/obama.jpg +Suzanne Carpenter,837-84-6358,87677,"429 Rodriguez Groves Suite 107 +North Keithland, MT 81091",1918-07-13 02:11:56,c1:06:62:b7:8a:9b,bakertroy@yahoo.com,img/obama.jpg +Richard Kennedy,455-12-7122,07490,"590 Flores Circle Apt. 668 +Andreatown, NY 50066-1988",1970-07-14 08:31:20,8f:84:ef:63:fe:eb,james95@hotmail.com,img/obama.jpg +Heather Long,545-95-8107,16938,"43720 Micheal Groves Apt. 177 +North Annahaven, FL 35605",1932-08-27 07:04:17,c6:ab:56:07:f6:92,dunnsteven@gmail.com,img/obama.jpg +Mr. Shawn Rivera Jr.,474-78-7552,21101,"025 Chambers Mission +Port Robyn, AL 00974",1959-07-18 06:01:47,1b:08:54:85:5d:3a,cameron65@hotmail.com,img/obama.jpg +Phillip Wilson,703-95-7990,05688,"772 Carl Street Apt. 076 +East Davidberg, WY 83935",1954-06-22 22:42:16,04:96:4d:c1:46:f3,christopherwilliams@hotmail.com,img/obama.jpg +Carla Lawrence,751-50-4904,20437,"018 Herrera Island +South Colechester, CT 28281",1977-01-28 06:47:58,e0:c5:21:23:28:a7,dawn25@mckee.com,img/obama.jpg +Mrs. Ashley Martinez,641-01-6141,29004,"Unit 5833 Box 5783 +DPO AA 28607",1978-10-22 14:03:21,df:5f:c8:8a:8c:cc,bbrady@lopez.com,img/obama.jpg +Scott Sims,551-71-3648,57903,"06853 Smith Prairie Apt. 227 +Jacobborough, AR 74892",1942-05-08 11:20:47,f1:ad:70:9f:ed:f5,cory80@yahoo.com,img/obama.jpg +Samuel Martin,571-04-6988,67690,"366 Melissa Center Suite 153 +Johnchester, RI 77698-1672",1980-01-24 21:07:26,2d:80:a8:17:6c:7f,susan07@hubbard.com,img/obama.jpg +Amy Salinas,424-34-7923,61117,"18118 Calderon Centers Suite 970 +North Charles, ME 85169",1994-05-15 06:49:33,62:77:48:cc:e3:1b,tanya87@matthews.com,img/obama.jpg +Donald Taylor,702-95-7401,09220,"337 Rachel Shoals Suite 605 +North Christine, MI 46968-9698",2002-11-04 15:40:13,3e:07:4b:7b:bf:54,jenniferzamora@yahoo.com,img/obama.jpg +Mary Olson,373-56-4337,89938,"497 Jasmine Crossing Apt. 350 +Linview, AR 15049",2015-02-13 05:14:27,00:71:df:b3:e7:3a,ftorres@webb.com,img/obama.jpg +Kylie York,531-95-6605,63385,"83158 Jones Skyway Suite 789 +Jonesberg, KY 32369-8725",1997-04-20 14:21:20,52:32:23:8d:66:c3,lisa50@yahoo.com,img/obama.jpg +Madeline Smith,785-91-7594,63689,"178 Bill Forks +Burkefort, OK 01172-4040",1987-05-27 03:22:54,a9:da:88:e7:1e:99,yjackson@gmail.com,img/obama.jpg +George Ward,862-93-9564,92102,"938 Wayne Lock +Marshallfurt, SD 87307",1989-12-24 16:45:08,10:23:0b:a8:df:78,davisdavid@hotmail.com,img/obama.jpg +Mrs. Kimberly Schultz,658-83-9313,39986,"055 Thomas Hills +North Danielshire, MP 66866-5302",1946-07-11 04:40:13,c4:a5:ef:93:61:af,ambersmith@beltran-lang.com,img/obama.jpg +Amanda Olson,283-97-5687,55932,"61310 Adrian Coves +North Noah, OH 98664-9950",1967-08-30 13:26:59,b0:71:92:60:a2:81,umullins@hudson-trevino.com,img/obama.jpg +Kimberly Little,338-55-3623,42547,"6104 Rhonda Loop +Robertsonfurt, WI 31538",1925-10-28 02:34:57,96:ea:78:d6:3c:3c,ggolden@yahoo.com,img/obama.jpg +Lisa Young,676-92-3495,94440,"35031 Harrison Summit Apt. 803 +West Tracy, FM 40409",2004-11-01 10:23:40,65:ea:d1:9d:3a:e2,phillipdougherty@harper-lopez.org,img/obama.jpg +Jerry Carlson,499-30-8792,12590,"61569 Petty Curve +Ericfurt, IN 04913",1989-08-23 06:28:52,3c:38:fc:08:2c:62,charleswalker@gmail.com,img/obama.jpg +Helen Mendoza,496-91-8423,21688,"7786 Curtis Mountains Suite 607 +North Jeanberg, DC 94940-7397",2009-04-22 11:16:11,48:35:28:ef:8a:3d,hallblake@miller.org,img/obama.jpg +Jack Soto,676-89-1058,08379,"3394 Steven Shore Apt. 811 +Port Todd, GU 27116-2094",1955-12-20 21:17:32,d7:e3:cd:c6:db:53,stevenreed@reilly-allen.com,img/obama.jpg +Melanie Nelson,558-84-0957,80537,"186 Marilyn Mission Suite 768 +Lake Jonathanstad, NY 78033",1963-11-23 17:50:22,da:f5:9c:8e:c3:ca,martin45@rogers.com,img/obama.jpg +Penny Rodriguez,601-13-7935,42504,"5240 Todd Mission +Lake Jeffrey, VT 86410-1268",2003-08-23 19:55:04,52:e2:39:79:fd:08,kimberly33@brock-jones.net,img/obama.jpg +Ruben Cook,144-03-6543,41523,"USCGC Olson +FPO AP 53834-8576",1955-01-23 17:14:52,65:15:a8:3e:3f:04,jason99@roberts.biz,img/obama.jpg +Jordan Zamora,812-26-1198,28998,"222 Hansen Meadows Apt. 483 +Port Timothyhaven, MN 81170",1988-10-11 01:54:59,4f:b4:2f:eb:f4:bd,jrich@wise.biz,img/obama.jpg +Michelle Shepherd,687-52-3654,21077,"2145 Leon Valleys +Ericborough, VI 82872",1925-08-29 06:58:22,ec:86:c4:e2:b0:2b,kmoon@wilson.com,img/obama.jpg +Leslie Quinn,886-70-5535,62193,"231 Jennifer Path Suite 068 +New Catherinemouth, LA 23168",2011-10-09 23:52:15,88:33:71:61:11:da,davidrangel@hotmail.com,img/obama.jpg +Laura Moore,583-28-1726,08534,"USNV Nelson +FPO AA 41272",1960-06-17 12:09:23,8e:89:af:80:cb:59,reedamanda@gmail.com,img/obama.jpg +Annette Gutierrez,559-26-8662,98564,"2587 Mary Route +Kimberlyborough, VA 67578",1949-03-13 18:33:23,81:b1:b6:0e:48:df,powellnathan@garcia-jones.com,img/obama.jpg +Kayla Williams,135-68-9168,86221,"18206 Javier Haven +South Shawna, AS 49368-6558",1960-12-18 00:25:12,11:06:3e:3d:82:ca,nsanders@anderson-howe.com,img/obama.jpg +Thomas Williams,393-06-0690,49896,"4820 Guerrero Creek +New Scottbury, VI 26601",2006-07-28 21:43:17,48:6d:59:f8:12:4b,armstrongjeffrey@miller-hines.org,img/obama.jpg +Ronald Wright,055-53-3799,18912,"3453 Emily Forges Apt. 916 +Port Jamesport, PR 37986-4613",1946-02-02 07:41:38,d2:9c:c3:a2:d6:79,reedshawn@jacobs.com,img/obama.jpg +Kathleen Arellano,044-78-3161,78435,"1301 Moore Grove Suite 874 +Cynthiaberg, AZ 42757",1957-12-09 04:44:47,6a:c4:b3:90:52:7c,robert00@kelly.org,img/obama.jpg +Stephanie Clark,859-50-8258,24760,"7459 Sara Village Apt. 080 +North Jenniferside, VI 33324-1645",1931-09-03 12:53:05,a9:4c:4e:80:3a:1b,wilsonscott@novak.com,img/obama.jpg +Deanna Jackson,804-12-8147,59281,"293 Sonia Way Suite 173 +Heatherberg, MI 55315-1250",1931-11-22 21:43:38,24:fa:d0:1f:d5:95,lindsay36@sanders-preston.org,img/obama.jpg +Tyler Bryant,038-63-1832,12816,"39593 Nguyen Port Suite 105 +Lake Davidchester, NV 48189",1957-06-27 03:22:31,a6:61:8e:e0:27:c9,bholmes@patterson.biz,img/obama.jpg +Erica Bell,260-65-7227,01661,"17912 Medina Inlet +East Deborahmouth, DE 39329",1988-09-18 21:12:05,18:f3:ad:e4:6a:6c,harrisonchristine@gmail.com,img/obama.jpg +Brandon Barton,640-12-3209,04772,"31379 Robert Stravenue Apt. 735 +Dustinmouth, HI 67859-4652",2013-05-13 18:29:35,eb:f9:aa:54:9d:a6,jasonthomas@yahoo.com,img/obama.jpg +Kristin Lee,084-21-0506,82530,"684 Scott Club Suite 747 +West Joseph, HI 76940",2010-08-05 03:35:21,e7:4d:d5:7e:32:aa,paynecory@yahoo.com,img/obama.jpg +Donna Le,407-55-0684,46623,"337 Scott Key Apt. 572 +North Elizabethmouth, AR 07344-9972",1976-11-29 01:42:58,3e:4b:97:fb:ef:af,hernandezkathryn@yahoo.com,img/obama.jpg +Ricky Deleon,633-76-3081,97693,"PSC 4308, Box 8664 +APO AE 36196-6863",1970-08-06 14:18:33,09:25:fb:ec:ed:e8,allen06@yahoo.com,img/obama.jpg +Robert Guerrero,748-90-0096,02952,"Unit 5068 Box 9893 +DPO AE 84751-1735",1992-10-11 11:03:47,47:f4:4e:a3:f4:e9,ztorres@thornton.com,img/obama.jpg +Mary Walker,145-17-5172,80248,"485 Erin Shores Suite 136 +Frenchburgh, CT 47636-3566",1987-06-17 02:41:29,5e:a1:c5:f5:08:37,nicholasmolina@gmail.com,img/obama.jpg +Jennifer Burns,512-55-8847,42875,"375 Harrison Club +Toddfurt, ME 54082-5411",1917-06-28 23:34:31,d2:06:6d:69:a3:60,monica05@brown.com,img/obama.jpg +Edward Harris,721-34-6081,89228,"12656 Brown Square +Douglasfort, MT 89227",1917-09-16 22:58:12,90:75:04:ea:0f:de,halltracey@gmail.com,img/obama.jpg +Kyle Walsh,645-97-8012,48234,"0867 Hawkins Locks Apt. 350 +Heidifurt, CA 90453",2005-07-22 15:26:53,b7:63:0e:7b:d2:3c,dennis64@yahoo.com,img/obama.jpg +Aaron Roman,400-84-3734,68382,"06751 Beth Manor +Millermouth, HI 20035",1947-01-10 22:04:55,34:f4:a9:ff:55:c2,richard91@gmail.com,img/obama.jpg +Joel Perez,851-19-6416,55829,"8987 Charles Groves +Shannonport, CT 02049",1990-04-13 10:44:25,ac:07:f7:44:94:7f,jonesjeffrey@pearson.net,img/obama.jpg +Benjamin Murray,855-97-5268,65131,"729 Harris Landing Suite 352 +Johnsburgh, FM 49110-4176",1978-07-15 20:49:22,55:dd:e1:f6:62:00,ylucero@owens.com,img/obama.jpg +Dylan Jenkins,237-55-0319,69201,"20743 Vazquez Oval +Kingburgh, OH 67314-1108",1917-12-17 11:39:17,78:ee:55:b0:be:10,richard14@johnson.com,img/obama.jpg +Kayla White,580-53-6506,12342,"694 Patton Lights Suite 436 +Chandlerburgh, OK 22532-5866",2006-07-28 10:00:04,ac:c1:91:bc:bb:a8,edward32@webb.com,img/obama.jpg +Lisa Gilbert,454-07-5930,76761,"707 Mia Mission +Cruzfurt, LA 07708-4774",1920-06-27 02:12:06,5a:89:33:ed:92:17,susanbaxter@jones.com,img/obama.jpg +Dr. Katie Chambers DVM,145-48-2883,64560,"295 Jeffrey Hill +South Ryan, TN 47370",1967-05-07 00:45:08,50:a7:6e:16:89:63,bradleychavez@hotmail.com,img/obama.jpg +Jamie Moreno,353-01-1669,26816,"PSC 0395, Box 1211 +APO AE 36225",1988-09-10 12:32:49,a8:ba:3a:d5:44:93,xperez@johnson.net,img/obama.jpg +Brandon Shannon,497-31-7431,07150,"PSC 4955, Box 4902 +APO AE 72038",1938-03-24 18:05:58,f6:7d:1a:81:6a:ab,campbellmark@hotmail.com,img/obama.jpg +Hunter Wolfe,648-16-1899,42720,"65986 Candice Dale +Lake Wyatt, LA 49590-0760",2003-09-19 19:31:25,e1:26:41:b9:2c:9b,taylorrivas@mckenzie.org,img/obama.jpg +Derek Jenkins,308-25-2137,99164,"Unit 0011 Box 6108 +DPO AE 14978-4028",1973-09-10 13:07:38,4d:f1:d5:97:3e:8a,annjohnson@li.com,img/obama.jpg +Alexander Hess,628-80-5430,96761,"17014 Boyer Hill +Christopherport, PW 93751-8188",1993-12-06 13:57:08,8e:73:cd:fe:27:d5,jacob61@yahoo.com,img/obama.jpg +Sarah Jensen,722-81-0893,34904,"01830 Robert River Suite 116 +New Michaelfort, VT 08344",1961-03-23 12:13:15,10:5f:b8:c1:e5:e5,christopher39@thomas.biz,img/obama.jpg +Natalie Kent,522-72-4530,22608,"PSC 4727, Box 7228 +APO AP 56504-4970",1977-02-14 22:55:13,4a:f2:3b:fa:8f:e3,annastephens@scott.com,img/obama.jpg +James Rivera,190-34-6549,51631,"2401 Brooke Brook Suite 389 +North Adammouth, NE 97146",1946-11-10 08:51:12,35:bb:bd:19:ff:26,charles10@gmail.com,img/obama.jpg +Gabrielle Cherry,880-16-9377,50014,"3391 Farrell Canyon +Henryfort, RI 27036",1945-07-30 07:12:35,55:8f:ab:b3:2b:06,grace35@gmail.com,img/obama.jpg +Jesse Alvarado,857-35-9935,71286,"PSC 7922, Box 7481 +APO AE 50091-7524",1989-02-01 12:45:43,5b:b9:b0:ab:74:6c,christophersimon@stanton.com,img/obama.jpg +Andrea Mclaughlin,687-63-2312,43255,"9037 Gonzalez Path Suite 985 +East Oliviashire, ND 30468-9596",1995-08-05 20:36:36,c4:40:18:9a:67:59,shanepowell@hotmail.com,img/obama.jpg +Timothy Conrad,428-84-6288,21353,"3256 Charles Isle +Port Theresa, IA 06631-0480",1959-08-28 07:04:03,63:59:a8:83:26:6d,wmoon@yahoo.com,img/obama.jpg +Heather Johnson,113-59-8356,52416,"343 Gary Lakes +Coleview, DE 18796",1998-04-07 10:20:33,66:17:c7:df:32:c9,david56@kelley.com,img/obama.jpg +Stephanie Gonzalez,708-43-3458,95015,"803 Delgado Pine Apt. 931 +Port Michele, NH 19481-8454",1934-10-18 10:17:08,5a:f5:2f:da:dc:a9,hernandezkevin@hotmail.com,img/obama.jpg +Mr. James Hines,110-18-4756,02254,"9004 Owen Terrace Apt. 087 +Ruizland, WI 86418-4823",2017-03-26 07:29:25,95:11:30:d7:67:fb,dlewis@price-henderson.com,img/obama.jpg +Terry Turner,682-17-1250,48284,"526 Cheyenne Land Suite 338 +Susanton, PW 53392",1948-10-28 12:09:49,2a:76:6a:68:6e:14,cooperjeremy@yahoo.com,img/obama.jpg +Linda Dorsey,201-02-7640,68150,"54212 Russell Light +West Danamouth, MO 72907-5728",1933-11-22 18:47:46,be:c4:6c:33:70:4b,osteele@morales-silva.com,img/obama.jpg +Cynthia Barnes,396-29-1690,39494,"044 Stacey Islands +Brownshire, WI 56062-3814",1945-01-24 15:26:05,88:6c:75:13:1d:6f,pmarquez@logan-garcia.org,img/obama.jpg +Jeremy Russell,736-86-7412,92269,"24344 Paula Underpass +Cruzstad, MS 35938",1981-07-23 06:05:24,28:6c:d6:ca:f3:cb,shellybenjamin@nichols.org,img/obama.jpg +Mark Munoz,897-65-5599,00990,"Unit 2141 Box 1360 +DPO AP 15033-1687",1938-09-01 06:22:51,d8:5a:73:d5:35:3f,pschmidt@davis.net,img/obama.jpg +Alexis Jacobs,171-15-7465,14111,"089 Duncan Pike +Lake Wesley, MA 71874",1944-01-21 10:58:42,cb:14:cf:47:74:9c,josephdeleon@yahoo.com,img/obama.jpg +Cindy Gould,006-99-8117,16717,"Unit 2843 Box 3089 +DPO AP 17834",1963-04-27 20:49:25,d6:e1:d7:e2:19:58,renee56@price-henry.com,img/obama.jpg +Stephen Gilbert,742-32-6953,77088,"19586 Daniel Radial +Amandaton, MP 43244",1975-12-17 00:25:19,8a:0f:bd:c0:ee:24,scott18@harrison.com,img/obama.jpg +Monica Lawson,832-62-0603,96455,"996 James Landing +North Sandra, AZ 85852",1986-04-05 02:36:27,0d:f8:21:50:21:25,teresasmith@yahoo.com,img/obama.jpg +Mark Morgan,784-09-3945,62519,"03527 Brooks Dale Suite 123 +Dayville, UT 43681-3199",2014-05-19 00:05:31,34:c8:fb:28:1d:0a,wbenson@gmail.com,img/obama.jpg +Gene Ramirez,607-46-6532,41396,"USCGC Boyer +FPO AA 89836-1078",1981-11-07 03:04:08,88:99:8f:aa:ab:91,kellihobbs@hotmail.com,img/obama.jpg +Kenneth Moore,320-70-4734,23516,"35627 Taylor Row Suite 043 +Elizabethton, AL 52405-6986",1917-06-20 11:33:37,4a:ac:6f:24:0e:96,leeconnie@gmail.com,img/obama.jpg +John Jackson,773-99-6053,17349,"291 David Ramp +Tatetown, VA 70495",1928-11-17 13:33:54,5e:1f:ad:10:c3:d4,hrivera@reed-sanchez.info,img/obama.jpg +Elizabeth Oconnor,861-10-4320,63412,"192 Gill Stream Suite 733 +North Matthew, FM 66775-8237",2016-09-29 19:01:30,f0:c7:6d:fb:15:fa,sharonlewis@bishop-brooks.com,img/obama.jpg +Karen Jackson,580-96-2874,30296,"3935 Johnson Ports Apt. 329 +Brittanyfort, VA 23254-2505",1976-05-02 22:14:47,fa:a8:b5:2a:40:af,myersandrew@smith.com,img/obama.jpg +Connor Mckenzie,759-36-9411,81358,"6749 Vaughan Cliff Suite 129 +Lake Christophermouth, ND 45839",1918-05-02 17:35:57,1f:d6:ca:ab:4b:7c,hpotter@collins.com,img/obama.jpg +Tonya Bush,251-82-5112,16552,"9392 Becky Prairie Suite 760 +North Matthewstad, KY 13619",1991-04-26 08:02:43,0b:39:c9:f2:61:98,kaylahuff@yahoo.com,img/obama.jpg +Ryan Allen,867-47-0013,29612,"7417 Roberts Stream +Jasonfort, PW 83325-6565",2015-10-12 01:42:53,06:34:91:4d:a9:1c,craigmichael@hotmail.com,img/obama.jpg +Cheryl Campbell,602-74-8273,35686,"Unit 9242 Box 0361 +DPO AE 74584-8126",1977-05-07 09:20:11,e4:7d:97:a5:2f:34,daniel15@davis.com,img/obama.jpg +Julia Santiago,473-04-9411,92860,"82217 Trevor Springs Suite 937 +Kimchester, UT 70225",2014-12-22 00:04:23,de:77:58:71:f1:83,timothy70@johnson-cook.org,img/obama.jpg +Cynthia Blackwell,247-21-0760,16680,"819 Davis Curve +Powellmouth, KS 74795",1936-11-20 10:39:57,e8:71:17:37:ef:e6,michael21@yahoo.com,img/obama.jpg +Mark Johnson,738-25-4451,03410,"19424 Johnny Shoals +New Scott, AR 46396",2001-01-19 14:15:56,e2:63:84:9c:9e:1f,matthewsaaron@bolton.com,img/obama.jpg +Faith Sullivan,563-23-7522,84468,"9183 Jackson Spring Suite 519 +Angelaport, DC 56684-4522",1962-06-04 08:27:58,f8:24:dd:bc:58:f3,michaelhamilton@gmail.com,img/obama.jpg +Tyler Mitchell,155-33-8812,40680,"621 Michael Hollow +Cliffordside, GA 69243-7348",1978-07-02 03:16:59,d8:c6:cc:92:40:ff,rodneycollier@gmail.com,img/obama.jpg +Jessica Herrera,380-23-7441,70018,"550 Theresa Motorway +Kirkland, MT 61638-9994",1980-07-07 21:17:37,4b:80:56:d6:98:45,andersongrant@sosa.com,img/obama.jpg +Mary Simon,332-58-2494,90867,"605 Pitts Dam Apt. 971 +Davisstad, OH 90928",1948-07-09 06:15:49,bd:af:c8:61:da:e5,kim32@underwood-thomas.com,img/obama.jpg +Tony Nixon,369-32-7542,07104,"03126 Michael Knolls Suite 393 +West Tonyatown, FL 53047-7738",1938-01-08 11:33:04,ef:6f:08:fc:ea:0c,qcampbell@gamble.com,img/obama.jpg +Christy Cannon,877-28-0074,18657,"251 Diana Squares +Christopherville, WI 55004-1138",1985-03-06 00:55:57,46:9b:bd:47:ef:dd,stephen64@robbins.com,img/obama.jpg +Jesse Gonzalez,081-37-9570,41241,"0417 Brooke Hollow Suite 660 +East Amyshire, HI 85294",1965-06-12 04:21:02,f7:63:fa:17:97:ab,heidi30@hotmail.com,img/obama.jpg +Dana Williams,867-90-5726,42533,"9215 Kristin Turnpike +Lake Mary, OK 10870-4277",1997-02-26 10:18:49,7e:01:b9:d4:0f:7a,justin79@morrison.biz,img/obama.jpg +Katherine Knox,734-87-7708,65229,"1446 Tammy Summit Suite 468 +Cynthiahaven, MH 01021",1998-11-14 06:21:16,ec:13:60:d1:a6:03,ucannon@hotmail.com,img/obama.jpg +Andrew Alexander,286-15-8228,68875,"424 Michael Route +Lake Lisa, MD 45551-2684",2013-07-03 15:10:04,7c:89:51:e2:1b:e7,colleen85@adkins.org,img/obama.jpg +Christopher Tran,236-91-1962,70752,"256 Andrea Vista +New Anna, ID 30771",2005-09-05 15:50:05,2b:34:20:8c:5c:68,williamslaura@hotmail.com,img/obama.jpg +Amanda Miller,178-62-5063,07943,"USCGC Morris +FPO AA 30767",1973-04-22 13:34:28,b4:8f:c6:aa:60:6e,upatel@yahoo.com,img/obama.jpg +Dale Norris,423-72-8451,63148,"17288 Thomas Loop +Anthonyland, MT 33741-0584",1963-05-28 18:14:20,40:5c:5b:20:10:99,jpope@hotmail.com,img/obama.jpg +Joseph Willis,339-49-6341,91395,"86265 Rogers Village Suite 487 +Thompsonmouth, MT 41711-9721",1955-04-16 11:24:46,a1:d8:26:52:f3:39,ehicks@gmail.com,img/obama.jpg +Lee Delacruz,613-65-6388,19763,"8034 Hicks Ford +Caldwellstad, FL 73097-6732",1987-05-02 16:20:45,5b:7c:ad:03:50:25,ashley84@yahoo.com,img/obama.jpg +Monica Waters,767-81-3339,05450,"52416 Christina Streets +Port Jasonland, PW 30032",1946-01-13 03:45:03,27:52:81:77:60:38,colleen68@gmail.com,img/obama.jpg +Kimberly Petty,696-89-4598,08105,"36353 Clements Place Apt. 113 +North Timothy, AR 47218",2009-07-15 23:28:20,d8:9a:d3:71:f7:6a,briggsgavin@hotmail.com,img/obama.jpg +James Anderson DDS,263-01-4505,48557,"187 Hill Cape +Snyderbury, RI 44282",1974-01-04 01:37:43,46:ad:58:9e:18:c0,scott95@gmail.com,img/obama.jpg +Gabriella Russo,491-24-2630,35570,"494 Blair Prairie Suite 812 +Kirstenberg, WV 26430-3426",1942-01-13 15:31:01,4f:0a:8f:09:e9:ea,robinsondavid@hotmail.com,img/obama.jpg +James Robertson,414-48-5349,35660,"829 Jeremy Mountain +Markside, RI 72884-2852",1918-02-12 16:33:42,89:b4:c7:a6:17:3b,melissaroy@hotmail.com,img/obama.jpg +Jesse Doyle,800-31-0028,12939,"9677 Kendra Harbors Suite 511 +Lake Javiermouth, LA 41952-5682",2002-01-17 22:28:08,ea:11:e7:08:91:60,bautistaalyssa@adams.com,img/obama.jpg +John Johnson,046-25-5592,60609,"PSC 7358, Box 1221 +APO AA 52884-4528",1928-10-20 21:01:51,c3:99:66:e5:3a:bc,bjohnson@hotmail.com,img/obama.jpg +Rhonda Kelly,785-57-1666,04040,"2206 Hubbard Plains +Wagnerport, FM 46975-3955",1920-01-22 04:04:54,79:97:21:25:83:f9,sarahbaker@gmail.com,img/obama.jpg +Jesus Oneill,264-30-6748,77735,"235 Johnson Pass +Lake Nancy, NV 94588",1973-05-01 11:42:58,a2:26:4b:81:14:5f,newmannathan@clark.net,img/obama.jpg +Jenna Jenkins,253-49-8543,50102,"7302 Day Lights +Grahamhaven, WY 12356",1994-06-11 18:15:22,d5:62:d9:a7:ed:d8,toddjohnson@gmail.com,img/obama.jpg +Joshua Ray,360-95-8077,15799,"PSC 7285, Box 3754 +APO AP 57984",2015-06-26 06:39:02,2d:d5:08:15:10:e6,charlesdixon@yahoo.com,img/obama.jpg +Thomas Cole,018-24-2184,67390,"5936 Schmidt Estate Apt. 463 +Martinfort, PW 91865",1988-10-14 14:37:55,3a:9b:e2:8a:c8:a3,ghorn@hotmail.com,img/obama.jpg +Barbara Simon,778-82-7066,11652,"USNS Middleton +FPO AP 92327",1993-03-12 00:31:58,63:6d:d1:cc:8b:f2,kleintony@rice.com,img/obama.jpg +Kristin Good,196-59-9835,80112,"877 Amber Harbor +Davisberg, MN 10695",1942-01-10 00:53:07,8e:d8:10:35:54:de,huertarandy@garcia.net,img/obama.jpg +Robert Nelson Jr.,010-06-9475,73818,"6131 Weber Shores +Port Brett, GA 76117-6910",1924-03-30 09:54:01,ec:1a:cc:ee:f9:2e,joshuapeterson@hotmail.com,img/obama.jpg +Paul Mitchell,169-61-0254,42067,"238 Clifford Gardens Suite 761 +Snydershire, CT 47737",1931-08-01 16:04:53,81:d8:26:52:9c:5e,rodriguezrebecca@morgan.net,img/obama.jpg +Regina Cox,212-67-2394,48990,"USCGC Baker +FPO AA 98817",1926-06-20 18:17:10,82:b0:2c:50:cb:31,michael34@yahoo.com,img/obama.jpg +Katie Moore MD,709-02-6662,98163,"75317 James Glens +Johnsonville, AK 69737-6366",1934-11-12 13:13:27,db:d0:7b:40:0a:5f,evansfrances@chandler-ball.com,img/obama.jpg +Natalie Crosby,331-79-6119,45125,"444 Amber Light Suite 341 +Lake Carltown, HI 44709-6284",2016-05-06 14:54:00,e0:53:9d:74:0b:9a,forddavid@gmail.com,img/obama.jpg +Christopher Dunn,782-01-3182,97985,"93868 Morgan Curve +North David, NJ 40049",2008-01-25 23:30:05,21:72:3a:48:ab:0e,etorres@johnston-may.net,img/obama.jpg +Kevin Ray,661-51-2685,95099,"Unit 7247 Box 7596 +DPO AA 64711",1975-07-22 13:30:54,c8:b3:c1:25:d5:1c,carol28@gonzalez-fox.com,img/obama.jpg +Holly Wallace,640-87-9658,70252,"9780 Tristan Station +West William, WY 79195",1957-12-17 16:04:22,98:b8:36:e1:2d:d9,martinezmathew@hotmail.com,img/obama.jpg +Christian Jones,824-70-2826,90087,"4637 Gross Ports Suite 119 +Port Stevestad, WV 92917",1991-09-22 04:58:45,c9:05:3f:96:52:22,sharpdavid@mccarthy-harris.com,img/obama.jpg +Jennifer Miller,699-52-7616,72835,"915 David Plains +Johnsonland, WY 04012-6642",2014-07-15 18:29:23,99:d3:7c:67:dd:6d,lance14@allison-morris.org,img/obama.jpg +Aaron Reyes,398-14-8038,61566,"5433 Joan Extensions Apt. 981 +Coleview, TX 96645-1087",2010-10-04 04:05:18,0f:ae:f5:af:7c:0d,williamsmark@warner-winters.info,img/obama.jpg +Cody Dixon,130-86-9435,45209,"59479 Savage Garden +Christinamouth, ID 84356",1961-04-02 00:30:54,c7:28:e2:72:a4:e7,christophernguyen@francis-wilson.info,img/obama.jpg +Tyler Moran,514-71-1732,26732,"9217 Hill Points Suite 972 +Amyfurt, IN 53757-4517",2004-09-08 10:35:30,16:bd:cc:85:8d:14,woodchristian@yahoo.com,img/obama.jpg +Phillip Adams,618-91-4139,18388,"244 Woodard Square Apt. 076 +North Sarahaven, MD 55132",1919-03-14 05:18:22,e2:6e:1d:0b:42:4f,deborahperkins@graves.net,img/obama.jpg +Christine Obrien,430-73-7654,22333,"550 Newman Trail +Rebeccaside, AL 93387-4763",1942-04-01 19:40:03,d4:ca:0b:75:46:72,wdeleon@potter-nicholson.com,img/obama.jpg +James Davenport,729-06-0696,57844,"860 Lawrence Trace Apt. 331 +Toddton, OK 22051",1946-03-29 19:57:46,c5:f6:c0:2e:33:76,caleb59@wilkerson-burke.com,img/obama.jpg +Wendy Simmons,244-45-4197,52402,"0791 Tina Fall +West Karenshire, WV 07405",1986-11-06 21:04:38,1d:82:2b:77:34:ad,paul48@turner-ayers.com,img/obama.jpg +Robert Campbell,136-01-6152,55477,"1766 Robert Trail +Reginatown, TN 29513",2004-08-07 09:52:04,94:3a:15:c3:47:35,bmaynard@hotmail.com,img/obama.jpg +Judy Huynh,847-72-4088,22533,"657 Stephen Forks +East Joefurt, TX 01166-6707",1962-06-27 15:57:09,79:30:0f:cf:0a:0e,troberts@gmail.com,img/obama.jpg +Jamie Medina,124-39-2483,55441,"1392 Perez Haven Suite 886 +New Ashley, OH 31693-3065",1952-05-16 00:09:36,39:19:96:4a:63:d0,dianaclark@mendoza-jennings.com,img/obama.jpg +Allison Williams,309-40-0500,96487,"Unit 8405 Box 8796 +DPO AA 29409-9770",1966-09-13 05:21:54,49:46:51:a9:cb:b6,jameswest@gmail.com,img/obama.jpg +Jessica Conner,024-73-7368,13980,"Unit 8595 Box 7120 +DPO AA 82530",1996-10-18 09:46:13,73:c6:53:27:ed:fb,kevingomez@yahoo.com,img/obama.jpg +Nicholas Ball,517-40-6205,16955,"61926 Desiree Drives Apt. 512 +North Amber, HI 70199",2007-07-06 03:40:07,ed:84:5a:89:1f:ef,gmiller@gmail.com,img/obama.jpg +Barbara Roberts,273-76-9987,31524,"8215 Hall Parkway Apt. 981 +Port Troy, RI 88887",1977-06-13 23:41:35,35:5c:2f:f2:a0:ee,agibson@hotmail.com,img/obama.jpg +Bridget Crosby,706-12-4217,99765,"119 William Brooks +New James, WV 42811-0964",1968-06-07 15:09:39,93:6d:bd:5a:b3:79,pcosta@norman-dyer.com,img/obama.jpg +Robert Golden,001-37-0245,35915,"650 Jonathon Ports +West Antonio, WI 08794-3948",1929-01-24 10:23:20,ee:4d:a6:b4:15:4b,clarkdevin@gmail.com,img/obama.jpg +Ryan Reyes,213-69-2174,54742,"3394 Serrano Ports +East Jefferyburgh, MA 24012",1962-01-06 18:52:14,77:59:2a:96:2e:4e,mjohnson@compton.org,img/obama.jpg +Dylan Fox,343-47-6650,52744,"13458 Katherine Way Suite 272 +East John, MT 14483-1364",1978-03-10 19:33:27,8a:bf:7d:ea:79:13,caitlin76@oconnor.com,img/obama.jpg +Anna Bright,769-70-4797,34033,"561 Peter Spur +South Taramouth, VA 90374",2002-11-24 06:44:33,e8:db:35:ed:22:8c,swoods@yahoo.com,img/obama.jpg +Ronald Gardner,415-17-9482,78947,"PSC 3235, Box 2250 +APO AP 28667-8366",1935-05-18 10:04:21,81:59:bb:8c:a5:f5,ritathompson@yahoo.com,img/obama.jpg +Amanda Mann,410-93-8816,02928,"560 Sampson Terrace +New Kristinechester, TX 56709-8031",1991-07-23 01:42:26,80:f6:8b:94:2d:c2,calvinhobbs@hotmail.com,img/obama.jpg +Erin Fox,885-98-0373,57950,"91823 Stephanie Crescent Suite 226 +North Daniel, VI 73342-3017",1926-04-29 11:03:24,fa:c8:69:c1:87:3b,glen28@hotmail.com,img/obama.jpg +Gina Gibson,628-36-6675,46980,"068 Morgan Point Apt. 451 +Lake Melissa, MA 30117-5250",1940-02-23 16:03:38,46:9e:e4:24:f3:43,murphycarl@yahoo.com,img/obama.jpg +Tyler Lopez,427-76-1233,90546,"82295 Mckenzie Ridge +Blackberg, NY 68830",1918-08-03 23:36:51,49:aa:4f:ae:7b:b9,michael49@zavala-singleton.net,img/obama.jpg +Laura Thomas,289-96-5810,60258,"44840 Joe Manor +Cassandraland, MO 20378-7078",1946-11-22 01:59:05,2d:84:ba:1d:19:39,williamsdennis@yahoo.com,img/obama.jpg +Lisa Perry,001-40-9360,33082,"1540 Henderson Dale Suite 309 +Garzaside, PW 22891-4286",1931-08-07 13:30:15,58:cb:30:c1:8a:87,rebeccawilliams@yahoo.com,img/obama.jpg +Natalie Rose,386-18-6862,54300,"975 Perez Fields Apt. 477 +Brendamouth, AZ 07356-3661",2003-08-04 08:46:20,d6:6f:c2:9c:0b:01,malonematthew@yahoo.com,img/obama.jpg +Kelsey Salas,206-44-6570,25437,"USCGC Johnson +FPO AA 91926",1941-01-14 21:29:13,9c:8a:a7:bb:62:ad,danielle57@hotmail.com,img/obama.jpg +Jennifer Rhodes,771-02-3002,99528,"23858 Smith Place +Lake Cynthia, AL 60525",1972-04-16 15:02:09,cd:c9:4e:88:92:aa,gary02@gmail.com,img/obama.jpg +Christopher Harris,676-26-6180,28679,"USCGC Johnson +FPO AP 19507",2009-04-02 17:54:24,b7:d5:b7:c3:25:11,katherine77@hotmail.com,img/obama.jpg +Brian Anderson,541-50-5516,50143,"1937 Sara Common Suite 464 +Jacobstad, FM 16974",1922-09-07 19:35:32,91:02:e5:ac:7e:44,elizabeth40@yahoo.com,img/obama.jpg +Brooke Higgins,461-38-6374,69845,"217 Hill Squares Suite 132 +Browningmouth, RI 71990",1936-11-22 17:19:42,fe:fc:60:94:77:fe,jeremiahbenson@hotmail.com,img/obama.jpg +Rebecca Anderson,454-57-7523,62173,"909 Perry Knoll Suite 115 +East Vanessa, PW 04990-0143",2009-11-04 07:30:10,99:a5:e8:4b:fa:1f,shellymiller@gmail.com,img/obama.jpg +Joshua Brown,659-42-9589,04460,"188 Patterson Station Apt. 030 +West David, VI 96039",1979-01-06 05:16:02,03:53:81:f2:45:09,steven16@gmail.com,img/obama.jpg +Elizabeth Rivas,523-77-1482,42176,"072 Tiffany Extensions +Pachecoview, WI 43516-1310",1973-08-25 18:58:09,51:91:b0:f3:22:19,robertellis@brown-gardner.net,img/obama.jpg +Lawrence Gonzalez,335-27-7558,72171,"97696 Nguyen Way +South Susanstad, IL 06749",2013-08-05 06:19:26,30:ad:31:ee:c7:91,eric88@mcclure-mahoney.info,img/obama.jpg +Anthony Kennedy,860-09-9311,38539,"33674 Jeffrey Village Suite 786 +Alexisland, SD 15733-9278",2006-12-26 03:57:49,2c:81:e9:1e:96:09,josephpeterson@martin.biz,img/obama.jpg +Henry Smith,647-32-6554,85544,"Unit 8633 Box 5958 +DPO AE 78959-6184",1946-01-03 07:01:17,b5:93:33:60:4e:1d,cynthiaharris@smith-flores.net,img/obama.jpg +Elizabeth Miller,186-50-4598,38027,"11369 Ryan Fort +Gilbertshire, RI 05002",1918-02-01 18:50:38,74:61:b8:a8:e5:49,gregory23@hester.com,img/obama.jpg +Michael Wong,266-28-3178,29240,"1143 Myers Parks +West Wendyborough, DE 52854-5274",1991-12-09 00:00:54,cd:bf:c1:bf:6a:fd,jramos@yahoo.com,img/obama.jpg +Pamela Cline,827-15-1872,87858,"7292 Lopez Park +Jenniferland, MA 76866",1991-10-26 07:26:37,ad:be:7b:f3:bc:a9,fortiz@yahoo.com,img/obama.jpg +Benjamin Wright,817-13-7254,92708,"00125 Salinas Cliffs +New Alexander, NE 67759-0380",1976-07-22 17:23:11,3c:83:27:2d:6c:f2,kayla94@yahoo.com,img/obama.jpg +Donald Smith,264-33-1726,17831,"2771 Palmer Unions Apt. 869 +South Theodore, VA 62085",1941-10-27 06:09:10,a6:0a:8d:00:1a:30,nsherman@yahoo.com,img/obama.jpg +Natalie Blake,143-66-7656,30584,"5740 Barber Islands +East Andreaberg, KS 00342",1978-10-28 05:11:46,26:0b:7d:24:16:4b,cfranklin@martinez-simpson.org,img/obama.jpg +Cassandra Brown,631-15-8687,29395,"5268 Scott Flats +Jameschester, IL 37672-7852",1975-10-22 10:48:19,63:8c:6d:b0:95:86,briannorman@yahoo.com,img/obama.jpg +Paul Marshall,263-09-0184,36332,"4677 Novak Mountains Apt. 697 +North Allen, PR 82473",2003-11-24 08:52:55,d8:f4:54:60:fe:64,mitchelljames@chaney.org,img/obama.jpg +Terri Jarvis,504-86-5864,13501,"33697 Maria Brook Suite 935 +Beardside, OH 42607",1934-11-09 12:05:44,b1:73:7f:ef:3c:a7,bakerdavid@gmail.com,img/obama.jpg +Jack Martinez,541-99-2861,17666,"055 Morris Springs +South Noah, NV 07342-1946",1922-09-19 04:37:47,b1:ac:14:82:5b:fa,zacharybutler@yahoo.com,img/obama.jpg +Tracy Bradford,165-50-3866,17779,"482 Wheeler Squares +Lewiston, MH 04174",1973-01-22 18:20:53,31:72:e8:58:79:57,edward85@parker.info,img/obama.jpg +Kaitlin Dyer,343-94-0985,67960,"64349 Shawn Avenue Suite 337 +Tylerville, AR 95304-7720",2002-02-26 02:52:50,91:de:ce:18:84:e6,michelle36@williams.com,img/obama.jpg +David Turner,287-36-5826,45947,"3608 James Union +Foxshire, DE 90983",1990-02-20 08:32:48,44:90:e2:10:ac:ac,janetholmes@brock-nunez.info,img/obama.jpg +Logan Townsend,259-25-2591,33047,"9537 Chan Island +Lake Williamhaven, WY 41365-5719",2017-01-16 21:25:45,95:e6:3c:e7:a5:4b,michael23@bridges-cook.info,img/obama.jpg +Stephanie Ramsey,767-10-9154,20310,"74145 Phillips Stream +Jenniferbury, DE 53374-6621",2006-08-08 12:07:33,65:cc:a4:cf:a9:22,ellencurry@santiago.org,img/obama.jpg +Brenda Werner,880-51-4579,14718,"23143 James Rest +Lake Lauramouth, GU 48356",1956-03-01 01:42:29,7a:2b:e5:06:3f:27,alleneric@lawson.com,img/obama.jpg +Katelyn Roberts,818-77-2329,64164,"838 Louis River Suite 386 +Lake Shannon, KY 34480-6970",1999-02-23 02:26:40,b6:f2:aa:bf:0e:02,riverabrandon@allen-taylor.org,img/obama.jpg +Stacey Pierce DVM,871-28-1965,28947,"1189 Michael Streets +Boydfort, FM 11826",1946-05-12 06:15:27,92:b6:ed:77:c9:ec,samanthagarrett@hotmail.com,img/obama.jpg +Raymond Johnston,869-79-9405,73727,"0707 May Stream Suite 926 +Sanchezville, MP 30890",2010-04-06 20:50:52,b4:21:ba:df:04:14,steelekimberly@yahoo.com,img/obama.jpg +John Griffin,229-97-1655,08204,"50495 Phillips Ramp +North Jessicafurt, OH 91225-0164",1962-04-20 14:59:14,99:ff:40:34:2a:e8,cookashley@gmail.com,img/obama.jpg +Timothy Robinson,384-36-4529,42206,"30774 Reyes Islands +Debbietown, DE 82986",1955-12-19 10:39:41,ec:eb:51:56:e5:db,brownmichelle@yahoo.com,img/obama.jpg +Patrick Lucas,178-01-1511,99288,"601 Julia Pine Apt. 859 +Lake Emily, OK 81125",1955-07-31 21:23:24,18:2f:6d:9e:b0:26,amandahampton@waters-burnett.com,img/obama.jpg +April Bell,035-29-0562,90596,"835 Brown Circle +Erikamouth, NJ 12350",1966-12-23 18:23:23,12:d9:3b:92:ee:cc,nelsonseth@gmail.com,img/obama.jpg +Mckenzie Taylor,115-79-9876,21809,"720 Nancy Centers Apt. 072 +West Elijah, WA 55708-7995",2006-01-18 00:20:15,c9:d1:f2:06:b3:da,robertmorales@gmail.com,img/obama.jpg +Andrew Anderson,250-69-6117,56154,"2554 Nicole Fork +Valentineberg, CA 78272",1983-12-18 08:59:15,61:57:6e:6c:7f:59,nelsondanielle@hotmail.com,img/obama.jpg +Pamela Williams,056-40-8262,38105,"79078 Shelton Trafficway +Port Paulaview, IL 80386-9052",1945-07-25 22:13:18,81:9b:3d:1c:35:37,ypeters@hotmail.com,img/obama.jpg +Daniel Navarro,331-16-5627,28320,"44242 Krista Glens +Phillipbury, MN 43336",1961-04-17 14:16:09,b7:c3:5d:c4:42:b7,butlermorgan@yahoo.com,img/obama.jpg +Cathy Bennett,638-95-8217,34450,"940 Angela Drive Apt. 351 +Kerrstad, WV 26163",1962-02-16 23:07:08,f5:20:ce:ff:41:d8,matthew27@hotmail.com,img/obama.jpg +Regina Ingram,303-43-5651,52462,"345 Mcdonald Meadows Suite 839 +Ballland, MS 10527-0641",1931-01-05 04:23:18,17:4c:c8:b5:d7:9d,virginia81@hoover.biz,img/obama.jpg +Mario Choi,890-49-5223,68732,"7327 Duran Trail Apt. 319 +New Marioland, NV 85330-6943",2013-07-01 02:43:06,73:7e:3b:05:c7:e5,mmacdonald@gmail.com,img/obama.jpg +Jennifer Hurst,290-05-7256,16224,"8882 Rodriguez Mission +Mclaughlinburgh, IA 33708",1948-11-10 17:11:53,00:69:31:d0:5a:20,stephen92@jones-sanchez.info,img/obama.jpg +Marcus Russell,420-14-6539,97216,"USNS Salinas +FPO AP 73851-0339",2004-07-04 05:29:07,7b:91:08:46:ef:39,hbaker@hotmail.com,img/obama.jpg +Jessica Gill,826-91-6777,13957,"594 Kayla Spring +Dyerhaven, SD 46182",1977-05-27 09:24:25,46:2a:bb:ed:06:e4,annarusso@miller-richard.com,img/obama.jpg +Jacqueline Dunn,586-46-9552,51103,"169 Joyce Drive +West Samuel, NH 76348",1960-07-08 02:33:37,d5:06:60:52:09:ff,mariereynolds@cannon-cummings.info,img/obama.jpg +Michele Savage,254-07-0574,19505,"746 Thomas Curve Apt. 739 +South Kimmouth, IL 88707-2159",1933-11-24 17:54:26,cc:10:9f:20:b6:07,williamsdeborah@yahoo.com,img/obama.jpg +Courtney Patterson,470-84-0273,46781,"1028 Dean Walk +Longberg, DE 00520",1980-03-17 07:21:03,6c:29:9b:af:13:77,alexandra08@lee.org,img/obama.jpg +Wanda Wallace,786-81-5907,21280,"82129 Torres Forks Apt. 046 +Clarkemouth, PR 92802",2014-02-23 01:08:19,83:c3:b3:7c:e6:1a,parkeric@hotmail.com,img/obama.jpg +Jessica Thomas,114-58-1798,98520,"7243 Alexandria Field +Lake Meredith, TN 48987-5289",1959-09-25 21:45:58,f4:8f:58:eb:57:b7,iherrera@yahoo.com,img/obama.jpg +Don Harris,816-82-0219,29421,"608 Martin Shore Suite 764 +Normanshire, ND 59987",1966-02-11 18:43:34,72:6f:17:3e:05:86,yatestyler@hotmail.com,img/obama.jpg +Anthony Briggs,555-71-3904,72831,"53710 Mora Oval Apt. 353 +Brianton, AS 88580",2016-06-23 04:57:15,a2:e8:f5:ec:11:eb,dale02@yahoo.com,img/obama.jpg +Harry Gonzalez,595-91-3975,81035,"197 Taylor Mission Suite 170 +New Jeffreyside, RI 99813",1921-06-16 05:16:50,8b:d3:ae:93:64:39,hollycoleman@gmail.com,img/obama.jpg +Jonathan Avila,336-65-5127,70854,"PSC 7826, Box 1412 +APO AP 23185",2011-11-27 02:47:32,89:38:07:1d:30:74,ubeck@barrett-king.com,img/obama.jpg +William Turner,060-49-5109,43578,"56814 Christopher Hollow +Lake Leslie, VA 94277",2009-02-22 18:57:54,a1:ac:af:6e:11:06,adkinsautumn@yahoo.com,img/obama.jpg +Melinda Oconnor,871-42-3595,10136,"7602 Gabriel Shoal +Kennethmouth, UT 17657",1972-01-10 06:58:40,fb:e0:9b:30:b5:67,tbradley@gmail.com,img/obama.jpg +Bridget Robinson,277-26-4685,75218,"1049 Daniel Walks Suite 095 +West Allisonberg, WY 37202-1448",1938-07-15 12:21:17,76:54:b2:d9:12:02,clarkphilip@whitehead-king.com,img/obama.jpg +Nancy Santos,081-94-2516,45202,"1182 Curtis Mount Suite 319 +Port Dana, AZ 57402",1955-08-29 21:11:00,85:a2:fe:10:0c:b3,anthony23@parker.org,img/obama.jpg +Felicia Butler,830-59-3944,79748,"0189 David Coves +Lewisshire, ME 66940",2008-06-20 21:30:37,26:fa:f2:18:f8:b1,martinbrandy@johnston-wilson.com,img/obama.jpg +Nicole Willis,041-44-9145,47546,"76387 Ryan Meadow Suite 562 +North Danielhaven, IN 23906-8894",2008-09-24 17:15:42,46:b9:08:89:da:92,fcarter@chen-bell.net,img/obama.jpg +Robert Cohen,821-89-7212,11361,"9899 Williams Course Suite 772 +Stephenport, GU 96669-9711",1919-01-12 03:17:28,74:07:65:b1:f5:77,dylanharris@weber.org,img/obama.jpg +Patricia Day,119-62-4792,96823,"04254 Arias Light Suite 440 +West Damon, MH 92032",2011-07-10 17:48:49,fa:47:4d:33:54:2b,carlosgreen@young.com,img/obama.jpg +William Silva,423-67-4049,25804,"15754 Mullins Ridges Suite 992 +Lake Elizabethburgh, AL 32349-4329",1936-12-15 07:44:36,54:75:25:2b:eb:f3,tanyawest@rios.com,img/obama.jpg +Daniel Oliver,833-34-1562,08046,"53559 Lee Landing +South Ronaldton, MH 40389-8056",2010-03-26 11:13:32,a5:a4:30:87:3f:21,keiththompson@marshall.com,img/obama.jpg +Dustin Hull,869-58-7079,80806,"092 Haley Lodge Suite 026 +Russellport, MD 10968",1920-08-17 09:45:48,15:01:4e:b2:6d:de,aconner@lawson.com,img/obama.jpg +Kristina Sims,864-03-9874,33603,"8617 Lisa Road +Sanchezland, KY 64544",1937-03-22 20:38:15,2b:2b:00:1a:76:15,cunninghamtrevor@hotmail.com,img/obama.jpg +Ashley Evans,386-70-8004,06288,"5247 Fernandez Extension +Alanport, CO 18979",1982-05-26 16:31:30,5a:f4:9d:aa:56:f0,katie59@williams-jones.com,img/obama.jpg +Alexis Perry,498-33-8388,90902,"40321 Steven Court Apt. 020 +North Erin, LA 81894-4795",2004-12-21 00:58:06,0c:37:63:5b:07:ee,camerondarrell@hotmail.com,img/obama.jpg +Terry Cook,447-29-9757,86511,"USNS Scott +FPO AE 82478-8723",1921-07-18 04:01:24,6d:d5:5d:dc:9d:c0,samueljackson@chase.com,img/obama.jpg +Karen Bridges,204-84-8365,20589,"64354 Renee Landing +Timothyville, AK 94699",1986-11-22 06:49:42,a2:e5:d1:79:8e:44,ronaldleonard@butler-king.com,img/obama.jpg +Katherine Mitchell,551-35-5856,99635,"60264 Ware Station +East Gabrielle, SD 82423-7342",1956-09-25 18:48:01,5b:6b:f9:40:7f:16,zdominguez@gmail.com,img/obama.jpg +Timothy Morrison,615-25-0997,64704,"Unit 6788 Box 0136 +DPO AE 30685-0659",2004-09-26 08:01:49,ea:3a:33:06:16:87,regina90@hinton-montes.biz,img/obama.jpg +Joshua House,405-68-4641,09589,"09763 Smith Place Suite 528 +Port Nicholasstad, AZ 21311",1985-02-06 02:41:31,2f:04:5b:ee:b4:79,beckerpeter@peterson.com,img/obama.jpg +Cynthia Williams,297-88-8556,45923,"7849 Luna Shores Suite 255 +Lake Jeffreyside, IA 38370",1977-01-17 03:40:35,45:3c:c3:1a:08:2d,eberry@abbott.com,img/obama.jpg +Paul Burnett,677-48-3913,50139,"004 Joseph Pike +West Joy, DC 51461-0999",1940-01-21 17:03:52,b9:b6:3c:19:70:4c,rmiller@gmail.com,img/obama.jpg +Aimee Henry,056-29-9585,13030,"013 Parker Garden +Port Melissa, UT 49015-2024",1929-01-01 21:29:26,19:e2:96:dd:b3:3f,emmarobinson@white.com,img/obama.jpg +Ryan Turner,240-61-1306,32773,"16336 Miller Shoals Apt. 547 +East Karen, NJ 75301-1524",1994-02-05 16:54:09,29:c5:e9:4b:39:0d,pwillis@yahoo.com,img/obama.jpg +Henry Khan,713-74-1498,75988,"96333 Davis Land +New Angelica, PA 69412-3911",1942-08-19 23:06:49,5d:e5:a7:a0:ee:ef,danielle90@garcia.com,img/obama.jpg +Mandy Rodriguez,124-32-2826,37881,"049 Dylan Ranch +Jasonshire, ND 25134",2006-01-22 20:27:39,9e:29:e0:c7:60:bf,crystal34@hotmail.com,img/obama.jpg +Christopher Silva,592-87-3535,46854,"754 Leach Roads +North Markshire, DE 31223",2002-09-19 15:53:55,bf:ee:1b:a0:72:6d,ncortez@jackson-brown.com,img/obama.jpg +Andrew Richardson,654-12-0666,16761,"648 Morales Lodge +Alexandershire, AL 73509",1957-06-07 17:14:35,e9:ad:71:ad:50:33,cynthia57@gmail.com,img/obama.jpg +Dustin Flynn,552-69-0153,88745,"5378 Landry Ford +Lake Charles, WI 32046-1938",1930-04-30 15:37:24,03:4f:a8:8e:cc:a7,ryan80@yahoo.com,img/obama.jpg +Heather Walker,843-52-3616,19989,"USS Rodriguez +FPO AA 38230",1929-11-01 18:02:41,9f:df:1d:64:7e:62,jeffrey34@hotmail.com,img/obama.jpg +Daniel Vasquez,490-83-9474,43572,"5985 Veronica Circles Apt. 188 +Benjaminchester, FM 12263",1961-09-10 01:17:18,61:4f:6d:b3:6c:90,bendergary@yahoo.com,img/obama.jpg +Thomas Velazquez,805-45-5567,61567,"89053 Angela Motorway +Alexandriaport, NV 04463",1928-06-02 16:38:45,c3:6f:73:af:bb:40,yfoster@newton.com,img/obama.jpg +Tanner Barnett,673-85-5109,77198,"45105 Steven Shoals +Lake Tiffanyville, HI 57423-0122",1957-07-08 14:46:54,f3:39:7f:d4:91:97,ucook@hood.com,img/obama.jpg +Terry Petersen,869-54-8476,75973,"73486 Randall Oval Apt. 741 +West Sandra, MN 42196-8423",1985-04-15 23:14:13,a1:56:c5:49:fb:6c,martinkathryn@jones-bush.com,img/obama.jpg +Steve Davies,566-74-8904,87125,"7106 Stephanie Cliffs Suite 144 +West Tiffany, NV 09499",1973-06-01 21:55:16,83:a7:cf:ed:93:72,blakelarry@mitchell-lewis.net,img/obama.jpg +Christopher Jackson,298-03-9969,22917,"060 Levy Manors +West Whitneymouth, IA 25959",1999-06-02 04:34:14,01:72:4b:60:76:0e,markrodriguez@yahoo.com,img/obama.jpg +Janet Boyd,865-86-8406,22791,"PSC 7595, Box 0287 +APO AP 20770-8232",1997-08-12 09:43:49,a7:dc:cb:ab:37:37,wrightcolin@yahoo.com,img/obama.jpg +William Greene,156-14-6802,85855,"93175 Gonzalez Alley +New Tanya, GA 20776-9741",1925-04-24 20:30:00,59:58:9c:a0:eb:a5,rkelly@adams.org,img/obama.jpg +Jaime Gonzales,479-79-0605,91422,"89078 Allison Summit +Victorport, MH 41817-8811",1964-08-31 18:03:05,1c:30:b0:7e:61:23,suttonandrew@yahoo.com,img/obama.jpg +Natalie Carter,506-31-2708,95230,"4109 Kelli Vista Apt. 651 +Lake Debrastad, FM 42899",1949-03-06 01:12:39,51:7e:97:4f:ce:c1,lawrenceantonio@smith.biz,img/obama.jpg +Jill Lamb,686-91-1122,28859,"757 John Square +Jermaineland, MI 55780-6473",1930-11-01 01:50:00,8f:fa:fc:31:12:9d,brownandrew@simmons.info,img/obama.jpg +Lucas Mason,571-75-2205,18603,"200 Payne Mill +New James, OK 72885-0331",1955-09-22 04:55:06,bc:fc:07:68:45:b8,tgreen@hotmail.com,img/obama.jpg +Laurie Ford,073-81-9845,81195,"053 Giles Oval Apt. 367 +Jonesland, CT 03317",1982-06-20 11:48:38,7e:f5:5b:bc:21:15,james71@hotmail.com,img/obama.jpg +Gregory Eaton,474-12-3356,81819,"106 Patrick Hills Suite 384 +South Rubenfurt, MH 83024-6182",1996-10-10 08:15:54,31:79:fa:09:65:a4,kaiseranna@gmail.com,img/obama.jpg +John Camacho,551-92-9653,74562,"620 Diane Bypass Suite 405 +Anneville, KY 55541-0966",1956-07-22 20:06:10,e1:ee:15:68:da:6c,ogonzalez@hotmail.com,img/obama.jpg +Kelli Harvey,518-14-4237,55404,"444 David Valleys +Port Jeremiahhaven, MD 42435-8705",1974-03-23 12:19:05,30:d8:1b:95:23:30,wadams@yahoo.com,img/obama.jpg +Joseph Kent,231-18-1699,47427,"6402 Kelly Forest Suite 061 +North Deborah, IA 87226",1923-08-26 05:32:10,65:ce:f5:2a:41:97,michaelwarren@hotmail.com,img/obama.jpg +Natasha Smith,097-48-2303,68590,"81723 Courtney Route Suite 795 +Tammyview, OK 86612",1959-05-25 01:16:46,99:cb:e0:a5:01:54,bcoleman@yahoo.com,img/obama.jpg +Nicholas Valenzuela,511-27-2296,52520,"4960 Jones Pass Suite 153 +Craigberg, MO 42326-9657",2008-06-10 03:11:17,39:dd:8c:66:d2:33,shunt@hotmail.com,img/obama.jpg +Janice Lee,626-57-9101,03019,"522 Sarah Wells +New Heatherborough, AZ 27002",1951-12-25 04:16:54,ca:66:fa:b0:c0:bb,alexander70@herring.com,img/obama.jpg +Sarah Hart,189-68-1450,13839,"862 Williams Forest Apt. 546 +Trujilloville, KS 47142",2013-02-22 07:40:25,f0:f7:18:4b:69:79,johnsashley@hotmail.com,img/obama.jpg +Jeffery Johnson,115-75-6727,39147,"5425 Norman Curve Suite 974 +Port Brianna, AZ 02901",1941-12-18 04:55:31,ae:11:80:d9:b9:56,cmccall@durham.com,img/obama.jpg +Andrew Hanna,579-59-1160,74098,"048 Price Vista +Josephshire, MN 15177-4034",1922-02-23 06:52:31,75:81:be:2b:d8:89,benjaminguerrero@hotmail.com,img/obama.jpg +Amber Nash,060-60-4976,90172,"21033 Emily Center +Chrismouth, NH 74959-1881",2011-12-01 13:28:04,91:9b:0f:1c:8f:f1,vmarshall@gmail.com,img/obama.jpg +Rebecca Vincent,670-39-1133,85305,"425 Williams Trail +Hartview, NC 92900-6323",1966-03-21 12:12:16,03:ae:a5:76:51:9d,uhowell@gmail.com,img/obama.jpg +Walter King,256-50-4638,52862,"287 Kelli Center +Port Makayla, MN 48431",1969-03-09 01:37:55,96:52:29:bf:b3:80,smoore@yahoo.com,img/obama.jpg +Carlos Guerrero,876-50-6642,87567,"88098 Cruz Cove +Kaiserberg, NC 15190-8350",1931-09-12 05:09:07,cc:1e:a7:83:db:e2,bartoncassie@cameron.info,img/obama.jpg +Randy Aguirre,717-18-0935,80392,"1577 Price Lodge Apt. 410 +Michelemouth, ID 81326-8633",1939-09-26 07:15:32,6c:6a:d1:13:0f:af,nicole55@hayes.org,img/obama.jpg +James Fowler,781-70-1376,04569,"018 Joseph Drives Suite 690 +Lake Bettyburgh, MT 58773-0163",1977-10-24 15:03:27,1d:6f:73:81:9d:4d,antoniogonzales@gmail.com,img/obama.jpg +Daniel King,225-78-2031,50747,"782 Michael Bridge Suite 120 +Cohenton, IA 58868",1967-10-27 03:11:32,91:0f:07:76:07:93,sara86@yahoo.com,img/obama.jpg +Natalie Smith,374-62-6398,58093,"05776 Kirk Ridges Suite 101 +Millerstad, VT 61123",1945-05-10 14:05:07,80:b5:45:53:1c:8a,scottcharles@hughes.com,img/obama.jpg +Jacob Khan,441-65-9800,07278,"776 Rivera Keys +Tylerville, ME 23954",2011-02-25 11:31:53,37:9c:53:e4:0e:6f,udavis@hotmail.com,img/obama.jpg +Robert Roman,473-53-2851,91494,"Unit 8348 Box 8891 +DPO AP 37621",2010-05-18 18:54:29,cf:67:00:f5:2e:24,gutierrezshannon@dalton.net,img/obama.jpg +Lisa Dominguez,205-98-8581,30139,"Unit 9332 Box 4035 +DPO AP 97809-3064",1943-04-16 00:03:14,51:e2:bd:ea:24:83,xlloyd@gmail.com,img/obama.jpg +Stacey Johnson,568-02-1023,20215,"72400 Chen Mount Apt. 617 +Wyattburgh, OH 68824-5884",1987-08-19 22:39:05,f2:0a:88:ca:d8:2d,bryanburnett@gmail.com,img/obama.jpg +Abigail Martinez,883-73-8347,69093,"69763 Kenneth Motorway +Kirbyview, AR 21554-9902",1970-04-24 10:42:16,d4:ea:23:c4:b1:45,lproctor@soto-davis.org,img/obama.jpg +Patricia Gregory,317-14-8386,60872,"833 Hansen Estates Suite 493 +Port Isabellastad, MD 96471",1960-08-24 00:54:17,67:ba:06:11:fe:6e,baileydana@gmail.com,img/obama.jpg +Jennifer Giles,427-76-7874,55499,"520 King Locks Suite 329 +Maloneburgh, IL 67654",2002-02-22 19:03:00,dc:2c:19:01:51:5c,johnsonjoshua@yahoo.com,img/obama.jpg +Andrea Liu,839-11-6911,32889,"PSC 1612, Box 4183 +APO AE 29169-5348",1944-09-25 15:29:13,b3:f2:7a:44:19:51,harveymatthew@ray-morrison.net,img/obama.jpg +Amy Rodriguez,177-75-7660,42420,"6338 David Walks +Heidibury, ND 12938-8507",1956-07-21 16:44:30,25:fd:7b:79:b2:08,holly21@west-guzman.com,img/obama.jpg +Benjamin Frey,312-81-0028,15261,"00797 Rachel Cove Suite 460 +Chavezville, AZ 73330-1449",2015-03-04 08:47:51,68:e7:fb:71:e3:c2,krystal08@hotmail.com,img/obama.jpg +Richard Perkins,045-09-2054,10412,"1027 Singh Alley Apt. 324 +Deckerstad, NC 09580-0039",1929-05-19 08:39:28,c6:a7:18:a0:29:6b,wjones@gmail.com,img/obama.jpg +Jennifer Oconnor,160-15-9748,40965,"64699 Coleman Springs +Carrollbury, ND 82205",1983-10-06 22:24:33,70:d8:e4:57:d1:ea,meghan97@yahoo.com,img/obama.jpg +Johnathan Powell,130-45-7113,80674,"USS Ellis +FPO AA 31370-9258",1993-08-06 15:51:34,01:b0:8e:43:5b:7e,ashley70@yahoo.com,img/obama.jpg +Glenn Boyle,043-01-2582,00616,"3489 Deborah Port +Lake Anthonyborough, FL 32059-6214",1970-03-28 04:28:59,9e:8e:d5:4c:c5:96,alexanderthomas@kim-roberts.info,img/obama.jpg +Jaclyn Schmitt,074-91-5448,33352,"32066 Jill Well +Jerryberg, WA 32030",1946-06-24 00:22:56,66:06:d9:09:32:10,kristine77@hotmail.com,img/obama.jpg +Lori Willis,073-88-5688,34760,"18763 Erin Walk Apt. 863 +West Heatherton, RI 57299",1964-02-01 10:45:56,ca:3f:02:e9:d2:8d,kosborne@lindsey-page.com,img/obama.jpg +Lisa Greer,178-61-5086,65407,"89945 Brewer Shoal +Tiffanychester, TN 86914",2013-10-01 08:32:26,5c:5b:0a:59:29:05,druiz@bradley.biz,img/obama.jpg +Martin Taylor,349-96-1054,75050,"USNS Soto +FPO AP 07572-9860",1978-01-26 18:12:11,94:9c:62:8f:a9:53,adamlee@yahoo.com,img/obama.jpg +Christopher Guerrero,417-22-4337,64360,"46532 April Stravenue Suite 038 +New Trevor, MT 14808-4551",1981-08-25 05:35:43,b3:80:b6:34:7f:d8,wschmidt@riley-swanson.org,img/obama.jpg +Julie Brown,261-36-8212,09558,"533 Herrera Hill Suite 410 +New Charles, MS 76909-9176",2010-08-29 20:27:41,05:41:99:c5:42:fd,kristinahall@yahoo.com,img/obama.jpg +Robert Garza,359-87-2014,25728,"90649 Bell Mountains Apt. 584 +New Todd, ID 94846",2011-08-28 12:05:59,df:f5:ca:23:c1:2d,maria73@brown.com,img/obama.jpg +Amy Orr,814-47-7683,43736,"1741 Kristen Wells Apt. 158 +Martinberg, RI 26190-3686",2007-10-08 23:37:57,20:76:2b:50:76:72,hmarquez@barry.org,img/obama.jpg +Lori Taylor,556-18-2350,27701,"9404 Walker Trafficway +Stephenside, SC 99298-3116",1965-09-08 20:34:27,32:64:fd:0d:22:02,mwong@smith.com,img/obama.jpg +William Chandler,779-98-1881,06086,"5172 Gibson Creek Apt. 305 +Lake Ninaburgh, NM 20251-8075",1926-03-14 14:00:40,92:35:3b:92:e2:14,bakerwilliam@hill-small.org,img/obama.jpg +Ronald Wells,211-77-9622,72352,"6235 Beard Avenue +West Cassidyview, NM 49385",1939-08-29 04:00:13,0e:c0:7b:34:d6:7b,shannonhurley@gmail.com,img/obama.jpg +Alex Stark,807-86-5429,93038,"2004 Jose Mountains Suite 488 +Gibbsside, RI 44116-9410",1992-10-12 13:22:27,20:14:a1:c7:40:24,vcrawford@robinson.info,img/obama.jpg +Douglas Ochoa,297-13-6955,51836,"1622 Costa Glens +Murphyland, AK 25988",1981-05-06 10:26:08,22:1d:33:d1:24:2a,fullermary@yahoo.com,img/obama.jpg +Troy Jones,011-61-0737,83593,"70687 Darren Islands Suite 094 +South Mary, WY 93968-4329",1999-07-08 20:30:11,e3:ce:e7:da:32:89,zmorris@hotmail.com,img/obama.jpg +Kevin Gilbert,741-12-9865,26903,"816 Burch Well +Samuelfurt, RI 06862",1959-09-17 23:32:25,c9:74:f6:34:d9:76,imckinney@dudley.com,img/obama.jpg +Michelle Garcia,401-68-3897,26728,"9360 Taylor Inlet +Hugheschester, DE 33944",1976-08-21 15:10:40,65:14:ed:8b:3a:22,johnsonian@hotmail.com,img/obama.jpg +John Page,243-33-5546,50632,"792 Natalie Port +East Timothy, MH 82022-6406",2005-02-16 12:17:25,ab:cf:e2:54:57:4d,evanscody@owen.net,img/obama.jpg +Elizabeth Randall,048-89-4715,44605,"94372 Ford Greens Suite 298 +East Nathanielborough, PA 06613",1938-12-26 00:12:21,b5:93:c9:f4:19:cb,elizabeth64@hotmail.com,img/obama.jpg +Jordan Brooks,084-43-6985,30857,"24746 Foster Cape +Mcclainfort, VT 15937-0614",1938-12-22 18:18:58,8f:5c:00:39:18:e1,ewright@phillips-morris.com,img/obama.jpg +Christopher Kelly,555-71-0901,71549,"3652 Phillips Ports +Pattonland, KY 77725-0034",2002-12-13 05:42:52,f3:90:e8:bf:cb:ef,rzimmerman@prince.com,img/obama.jpg +Janice Shannon,740-08-3631,56386,"127 James Radial +New Jacobhaven, NM 72442-9120",1991-09-21 11:43:03,20:a4:24:18:d0:c8,cschneider@dawson.com,img/obama.jpg +Seth Schwartz,361-42-5097,81107,"9121 Bryant Course Suite 259 +Quinnville, NC 23513",2015-10-31 03:48:44,62:7e:37:e8:7f:68,qmartinez@young.info,img/obama.jpg +Aaron Pennington,663-42-7452,81837,"32042 Conway Trafficway Apt. 623 +East Colleen, VI 29153",1931-04-30 22:27:49,1e:d6:ba:ad:29:49,scott11@hunt-harvey.com,img/obama.jpg +William Robinson,454-36-3529,72235,"78823 Jonathan Club Apt. 965 +Wustad, PA 58825-2348",1947-01-11 13:54:38,1f:1a:dc:02:d1:ad,silvakelly@jenkins-travis.com,img/obama.jpg +Alan Raymond,397-13-3098,84199,"USNV Espinoza +FPO AE 79621-9838",1944-01-10 08:02:43,d9:ae:5f:cc:1e:0d,shannon81@davis-gould.com,img/obama.jpg +Erica Farmer,650-55-1446,03963,"582 Faith Lodge +Adamsville, DE 57102",1983-03-22 12:51:20,62:9a:a8:52:fb:fa,danielle91@gmail.com,img/obama.jpg +Brad Brooks,687-77-6788,89980,"USNV White +FPO AP 24029",1990-06-30 04:14:07,c6:bc:12:10:97:bc,sandersbrittney@bowers.com,img/obama.jpg +Joshua Williams,663-94-2065,36780,"616 Garcia Pines Apt. 986 +West Christinebury, LA 49116-0052",1953-12-06 12:46:22,da:84:a3:7a:76:b3,barbara40@yahoo.com,img/obama.jpg +Jacqueline Wright,039-74-4522,07634,"76942 Luis Pines Suite 379 +Schaeferstad, MN 84943",1999-12-26 15:54:25,d7:e4:4a:0c:19:82,troy94@gmail.com,img/obama.jpg +Danielle Beard,125-01-4749,01735,"86930 Timothy River +West Antoniohaven, MP 67846-8929",1946-10-25 20:38:51,48:02:c0:33:f1:cf,pfreeman@yahoo.com,img/obama.jpg +Madison Holland,423-25-5532,42261,"11208 Baker Plaza +Thomastown, HI 86686-0912",1994-10-07 21:16:16,fc:37:67:4c:96:60,sarah26@dennis-jones.org,img/obama.jpg +Jasmine Morgan,806-75-1808,21317,"3072 Sweeney Causeway +Zamorafort, IN 11854",2014-12-09 07:53:52,fc:71:0b:5a:0a:88,sampsonkathleen@walker-white.info,img/obama.jpg +Christopher Collier,568-80-5463,33543,"72675 Brian Burgs +Meganhaven, DE 36357",1987-07-13 09:33:55,a9:ba:39:b3:1e:42,greenrebecca@martinez-johnson.com,img/obama.jpg +James Turner,693-31-1709,91836,"1070 Watson Locks +West Eileen, NC 03659",2010-04-12 06:35:37,6a:b7:ef:fb:c9:a8,michelle90@yahoo.com,img/obama.jpg +Erik Tran,025-67-5376,46006,"295 Karl Rest +Joyceville, SC 99916-9679",1990-09-27 11:18:08,63:e1:b8:18:09:91,matthew23@estes.com,img/obama.jpg +Billy Greer,871-92-0287,74159,"8144 Adrian Canyon Suite 822 +Larryport, MS 74486",1931-04-22 15:30:28,c5:ce:14:82:45:f5,wrightmichelle@jacobs.com,img/obama.jpg +Beverly Ramirez,013-34-2179,70685,"Unit 9936 Box 2981 +DPO AA 41660",2009-08-12 03:19:16,49:df:2f:8f:24:69,pwhite@johnson-gallagher.com,img/obama.jpg +Linda Grant,507-32-3380,53614,"5123 Werner Rue Suite 223 +East Colinmouth, AR 17104",1962-12-13 09:36:46,12:53:69:5c:35:50,laurenevans@yahoo.com,img/obama.jpg +Cindy Byrd,271-99-9250,07633,"19121 Rodriguez Grove +East Amber, HI 82296",1930-05-18 15:50:44,66:c4:0f:63:20:ab,gregory92@gmail.com,img/obama.jpg +Audrey Morrison,322-06-2453,78208,"64046 Mathis Shoals +Lake Shawn, FM 55982",1940-02-29 01:55:48,61:53:c9:55:46:6f,heatherthompson@hotmail.com,img/obama.jpg +Debbie Thomas,264-93-8453,18763,"654 Barker Club +Fieldston, CO 42876-9150",2016-11-02 22:48:52,f7:e5:9a:93:18:89,davidlewis@stokes.com,img/obama.jpg +Dillon Chen,503-38-0506,29858,"9197 Jackson Road Suite 102 +South Franciscostad, OK 62687",1963-02-09 21:21:55,28:bc:f9:bb:e4:19,barreraelizabeth@wells.com,img/obama.jpg +Elizabeth Daniels,084-98-8901,46195,"0798 Matthew Lake +Alexisbury, MT 36956-5906",1925-08-27 14:55:35,7b:94:94:53:5a:ae,loriclarke@kidd-robinson.com,img/obama.jpg +Jeffery Cisneros,534-49-6995,78464,"39928 Kellie Throughway Apt. 939 +South Pamela, GA 18326-0142",1944-02-16 14:53:44,c0:91:7c:82:fc:be,kristenramsey@lee-williams.com,img/obama.jpg +Mandy Mendez,504-44-2720,09440,"938 Spears Club Suite 642 +Garyhaven, MN 88226",1987-02-22 07:04:28,4d:44:eb:5a:a2:1d,harrisalisha@lyons.net,img/obama.jpg +Joseph Williams,889-48-8353,12519,"735 Campbell Rapid +Tinaberg, CA 73820",2014-07-02 08:55:58,42:c3:25:57:ae:87,sanchezgina@yahoo.com,img/obama.jpg +Joseph Daniels,844-63-2280,68441,"038 Williams Road Suite 171 +East Tracie, IL 21462",1961-01-06 10:09:13,56:2b:c3:00:18:dd,peterelliott@hotmail.com,img/obama.jpg +William Martinez,571-52-2797,08911,"7163 Clark Turnpike +New Jamestown, NC 73125-1067",1951-06-21 04:14:36,e6:42:fa:b2:7b:42,michaelmary@yahoo.com,img/obama.jpg +Jamie Sellers,099-02-0353,22921,"2740 Chavez Unions +Lake Julie, NM 64410-9901",2000-01-04 02:48:31,db:f6:c6:4e:d4:d3,watsonherbert@harris.com,img/obama.jpg +Keith Ortiz,418-14-7475,57103,"787 Alisha Stream Suite 474 +South Tammyton, OK 06830",2008-05-25 09:22:28,b0:bb:98:f6:9a:c9,aclark@garcia.com,img/obama.jpg +Warren Lewis,096-57-7758,82712,"Unit 9710 Box 9833 +DPO AA 90069",1963-02-22 06:51:31,b4:1e:e1:84:84:11,katherineboyd@hayes-mclaughlin.com,img/obama.jpg +Robert Allison,351-45-9523,04029,"Unit 7744 Box 5809 +DPO AA 26872-9040",1993-10-24 13:26:54,24:a5:1b:e8:ce:7c,moorechristina@zimmerman.com,img/obama.jpg +Stephen Goodwin,710-89-9873,19090,"50525 Nathan Mountains +North Jessicamouth, IN 66633",1966-02-03 21:20:07,59:db:24:5c:e7:ff,richardsonjames@gmail.com,img/obama.jpg +Kim Long,148-67-5021,32315,"64023 Fuller Walks Apt. 698 +North Lori, FM 94602",2000-10-18 05:02:33,1b:9c:e3:72:a5:44,mcmahonnoah@holden.net,img/obama.jpg +Kelly Romero,596-05-1020,27625,"140 Kelley Mountain Apt. 403 +Martinezside, MI 29252-4630",1964-07-29 18:53:50,e0:24:9c:f2:39:e3,christine57@hotmail.com,img/obama.jpg +Karen Mccullough,380-23-9557,01805,"378 Parrish Terrace +Millerport, MS 45458-9248",1991-10-11 01:21:38,d1:b0:99:35:ad:05,anthonylee@smith-rodriguez.org,img/obama.jpg +Alicia Strong,357-23-0889,54358,"498 Schneider Knoll Suite 109 +North Danmouth, SC 74621",1961-08-17 17:09:15,a1:f6:ca:33:b2:f6,moonelizabeth@kerr.com,img/obama.jpg +Taylor Andrews,553-61-0948,38941,"USNS Jones +FPO AA 61498-8338",1918-07-31 05:42:30,da:b9:46:65:62:95,lauramorris@singh.com,img/obama.jpg +Michael Foster,071-27-8571,01087,"75948 Shah Lane +South Nicole, OK 98697-1496",1924-07-25 19:37:30,9a:47:05:ac:a3:0f,david82@hotmail.com,img/obama.jpg +Lori Sloan,259-83-3253,04788,"03748 Wilson Summit Suite 268 +Timothyshire, DC 70740",1926-12-26 11:54:31,2e:c8:cb:0f:70:b2,tuckermichael@yahoo.com,img/obama.jpg +Shannon Doyle,740-71-3318,99558,"281 Patel Spring +Lake Cameron, AK 96129",1985-08-20 17:19:16,36:3a:de:0f:8f:68,whitejane@gmail.com,img/obama.jpg +Shawn Taylor,866-36-8869,71146,"80116 Charles Lodge +South Chase, KY 10224-9409",1921-12-07 02:45:59,ed:36:d4:92:f3:28,mjohnson@gmail.com,img/obama.jpg +Theresa Gardner,190-87-8401,38032,"805 Robert Plains Suite 218 +New Michaelshire, NH 74301",1968-12-29 21:17:20,d4:e7:41:e2:80:bd,colin41@gmail.com,img/obama.jpg +Olivia Fleming,043-80-6343,61144,"55547 Ray Spurs Apt. 594 +Benderbury, AK 88299",1981-05-28 03:56:28,f9:c0:0c:0e:81:ba,jchambers@hotmail.com,img/obama.jpg +Kelly Lewis,093-51-8012,68471,"8016 Reed Points +Jacquelineport, VA 08782",1962-01-13 15:48:00,78:c5:93:26:b5:83,gwright@hotmail.com,img/obama.jpg +Jesse Russell,823-63-8484,74765,"7650 Davis Lodge +Lopezburgh, AS 02076-5436",1983-07-23 18:35:11,8f:24:9b:48:70:34,monica36@robles.org,img/obama.jpg +Shawn Harper,570-27-2780,56233,"8322 John Glens Suite 601 +Pierceton, IL 39290-8656",1980-11-11 07:51:40,5c:47:5e:95:e9:9b,medinamarcia@yahoo.com,img/obama.jpg +Steve Gallagher,762-07-9404,96886,"6256 Hale Tunnel Suite 222 +Rachelfurt, PR 49400",2014-10-13 23:50:18,f8:b2:79:fb:8f:9e,traceydaugherty@gmail.com,img/obama.jpg +Diane Adams,394-52-1714,92994,"380 Gina Junction +Ramirezview, OH 38305",1956-10-23 10:35:17,52:45:fb:56:06:1a,danielwaters@hotmail.com,img/obama.jpg +Jennifer Oliver,352-23-3089,23343,"80090 Carrie Club +New Larryshire, MI 45123",1984-04-27 01:11:05,13:26:80:b6:9f:78,jacqueline49@juarez-richard.com,img/obama.jpg +William Elliott,016-33-7710,53103,"USNS Tyler +FPO AE 52783",2015-11-17 09:19:36,7d:b8:8d:73:f7:da,rachaelsexton@herrera-barnes.org,img/obama.jpg +Nicole Rios,754-58-7546,34987,"363 Moss Ways +South Craig, KS 99100-2018",1931-09-05 15:46:35,d6:f4:d6:6b:ed:e1,brittany19@yahoo.com,img/obama.jpg +Katherine Ruiz,105-70-0887,27170,"1536 Wood Mill Apt. 153 +North Laura, MS 08738",1974-04-19 15:47:41,c8:b7:7d:fe:9b:13,bsimon@gray.com,img/obama.jpg +Lisa Lutz,111-20-4295,25189,"7491 Carla Union Apt. 440 +Marksfort, KS 33562",2015-01-01 16:21:55,dd:66:87:29:c9:86,robertwashington@green.com,img/obama.jpg +Monica Thompson,279-44-9976,33799,"717 Jones Wall +West William, NY 13009-2215",1930-07-09 19:26:36,ae:4f:64:b3:96:2a,rmoran@gmail.com,img/obama.jpg +Robert Chambers,412-61-8680,66211,"22027 Anna Hills +Lake Reginaborough, AR 08608-1733",1986-10-08 14:58:39,a5:ba:a6:cc:25:02,debbie47@gmail.com,img/obama.jpg +Ricky Hale,738-02-2068,05547,"6289 Goodman Loop Suite 477 +Michaelbury, WA 07872",1930-07-12 14:32:58,77:b2:ec:b6:e2:cd,kristimiller@valentine.net,img/obama.jpg +Jonathan Morgan,851-52-8964,40502,"266 Jose Row Apt. 874 +New Kevin, UT 49173",1948-01-04 21:58:17,27:a2:94:89:6d:75,rpena@montgomery-gray.biz,img/obama.jpg +Carolyn York,573-44-4879,22119,"88814 Bray Falls Apt. 576 +Taylorberg, MH 15332-1866",1924-12-02 01:33:00,24:66:f8:0a:d8:bf,edward88@thomas.biz,img/obama.jpg +Seth Johnson,748-62-3974,07503,"15112 Thompson Fort Suite 625 +Karenfort, WY 35159-2682",1927-02-01 12:50:17,79:9a:65:6b:0b:d2,haynescrystal@reed-hamilton.com,img/obama.jpg +Debra Williams,269-60-7398,83492,"82918 Carrie Prairie +Gonzalezfort, VT 39075-8861",2014-02-05 21:46:45,66:c8:59:ba:2e:1c,brownian@hotmail.com,img/obama.jpg +Pamela Cooley,062-70-9886,55139,"154 April Branch Apt. 642 +Port Thomas, AS 83524-4134",1934-11-29 17:08:28,3f:0e:42:54:83:b8,courtney82@mccall.com,img/obama.jpg +Rodney Carpenter,413-40-4100,95045,"01962 Dawson Light +East Geneberg, MI 69264",1959-11-01 03:09:03,0e:21:a8:ac:a7:fa,glove@garrett-villa.net,img/obama.jpg +Keith Hunter,057-80-5963,07241,"PSC 1719, Box 1725 +APO AA 21206-5170",1972-07-19 07:53:00,7f:61:d4:81:06:7f,humphreyjodi@gmail.com,img/obama.jpg +Elizabeth Colon,551-32-6205,33465,"PSC 6278, Box 9631 +APO AE 25924",2003-06-14 12:35:04,d1:df:c9:5e:a5:10,xhughes@king.com,img/obama.jpg +Jeffery Oconnell,276-90-5804,08563,"2974 Michele Estate Suite 560 +South Jaredhaven, IA 49639",1985-02-20 18:50:58,6c:f6:a1:19:50:7e,owilliams@blanchard-mcdonald.com,img/obama.jpg +Erik Holt,885-77-0004,62921,"455 Johnson Plaza Apt. 585 +Lake Teresamouth, MS 01495",1981-10-19 01:35:01,31:61:9f:40:e8:25,kristinacohen@hotmail.com,img/obama.jpg +Jeffrey Hardy,404-47-7321,59628,"USS Porter +FPO AP 64272",1919-09-06 00:48:10,56:13:aa:7d:ce:46,obrooks@gmail.com,img/obama.jpg +Tracy Gonzalez,111-93-4663,16225,"3609 Atkins Stream +Mannmouth, AL 24014-4007",1933-05-16 20:28:16,f2:11:e0:f6:81:68,ericalopez@hotmail.com,img/obama.jpg +Shelby Barajas,528-68-3327,11091,"28651 Joshua Heights Suite 225 +Port Jeanettechester, CO 39134",1956-08-02 00:53:48,da:35:6d:47:f6:8b,yallen@kidd-clark.info,img/obama.jpg +Kathryn Hopkins,245-12-0210,44542,"9479 Todd Stream Suite 179 +South Maria, OH 83910-2637",1927-04-14 21:19:52,d7:2e:84:59:dd:23,rgreer@yahoo.com,img/obama.jpg +Hannah Cruz,162-21-5574,87656,"7195 Angela Isle +New Paulfort, FM 86607",1921-01-19 07:32:01,dd:f5:2d:6b:b2:0f,obrienalejandra@owens-buckley.com,img/obama.jpg +Sandra Adams,832-78-8571,44079,"45601 Riley Shoals Suite 742 +Jonathantown, SD 09047",2007-04-03 06:25:29,31:08:29:9d:e1:fc,marywise@marks-wallace.com,img/obama.jpg +Thomas Morris,684-13-9322,06610,"115 Perry Mountain +North Matthew, AZ 58776-0388",1985-02-04 19:36:28,81:b3:c3:fc:cd:18,alucero@gmail.com,img/obama.jpg +Sydney Lindsey,771-64-2681,45244,"592 Susan Plaza +New Lukemouth, MA 89217-3962",2004-06-13 07:43:34,6a:cd:7a:8a:e2:ee,michelleramirez@becker-estrada.com,img/obama.jpg +Melanie Lewis,199-78-0784,48146,"44718 Smith Vista Suite 153 +Stevenfurt, NE 33767-5798",1993-02-19 15:14:50,f8:41:23:7b:ac:b3,mccormicktaylor@ryan.com,img/obama.jpg +Austin Ibarra,646-70-5875,36634,"5504 Blake Garden Apt. 963 +North Cynthia, MN 58728",1962-10-27 02:20:20,01:6b:63:12:44:f6,holtcharles@hotmail.com,img/obama.jpg +Ann Meadows,117-51-6726,66308,"30711 Michael Overpass +Port Chasemouth, AK 32858",1942-01-08 07:32:02,30:1f:9c:2b:14:37,brandiweber@yahoo.com,img/obama.jpg +David Edwards,017-09-8794,84335,"0833 Robin Forges +Sandrafort, IA 91948",1924-09-02 05:11:06,e1:36:b7:59:88:31,uthornton@hotmail.com,img/obama.jpg +Jamie Gomez,668-79-3966,98602,"640 Page Freeway Suite 919 +Davidfurt, NC 14940",1972-01-15 10:45:44,96:90:40:2e:bf:3c,josephpeter@gmail.com,img/obama.jpg +Larry Rodriguez,002-43-5259,01481,"5882 Brooks Stream +South Robertberg, MH 85175-7877",2007-02-09 20:54:17,f7:ea:78:87:d3:6f,shawnharvey@caldwell.net,img/obama.jpg +Ann Davis,312-98-7169,57735,"84171 Jennifer Squares Suite 154 +Lake Robert, GA 99506",1988-06-10 09:33:42,90:a5:4a:3d:92:97,burgessmary@hotmail.com,img/obama.jpg +Joseph Williams,187-50-6599,42675,"PSC 6346, Box 2094 +APO AA 55763-2024",1988-03-30 20:16:29,38:1e:1a:4f:ae:ec,cruzjoanna@sherman.net,img/obama.jpg +Joseph Jones,014-68-3184,43362,"86063 Jonathan Gateway Apt. 044 +New Johnfurt, NC 91204-0246",1920-10-26 00:12:43,35:50:25:a0:a7:42,foleykathleen@gmail.com,img/obama.jpg +Leslie Lee,580-21-2287,81800,"3120 Williams Lakes +South Patrick, WI 56804-4501",1970-10-28 20:57:37,e5:e1:98:2f:d5:3c,calderonnicole@gmail.com,img/obama.jpg +Noah Smith,852-21-4254,94568,"45537 Anthony Mission +Clarkside, MI 82002-3320",1993-02-18 05:12:50,1e:60:84:bf:57:fb,evansanthony@hotmail.com,img/obama.jpg +Louis Williams,543-87-9773,53821,"9583 Ashley Streets Apt. 769 +Lake Michaeltown, NE 43439",1922-07-20 09:35:38,02:9b:07:f6:e1:ab,morriscarly@taylor.com,img/obama.jpg +Tracy Bradford,523-26-5685,64602,"8949 Miles Glen +South Tony, PA 95948-6225",1985-05-24 22:40:20,34:60:87:4f:16:22,thomas81@cole.com,img/obama.jpg +Michael Rodriguez,819-40-2217,72831,"3571 Brooks Lakes +East Marychester, MP 19892-1886",2006-02-20 20:11:18,34:b1:b0:77:8d:4d,emorgan@yahoo.com,img/obama.jpg +Kathleen Jenkins,301-57-7290,64717,"1244 Coleman Glen Apt. 717 +Patriciaburgh, FM 45787-2013",1932-10-27 10:27:29,c3:43:76:a6:46:48,llarson@miller.com,img/obama.jpg +Travis Williams,490-18-8543,41238,"28520 Daniel Walks Apt. 878 +North Shawn, OR 16104",1984-07-24 05:16:21,85:01:10:83:a3:a2,gmason@hotmail.com,img/obama.jpg +Amber Jones,014-30-7414,15540,"Unit 0802 Box 0868 +DPO AE 22657-6425",2005-02-07 08:15:12,5b:b6:3d:a0:df:3b,tmatthews@baker.com,img/obama.jpg +Brittany James,480-40-2447,20411,"0304 Elaine Manor +Port Daniellechester, CA 14268-0956",1960-04-25 15:11:48,36:5d:56:33:1c:e2,kthomas@hotmail.com,img/obama.jpg +Victoria Smith,646-63-4631,96506,"245 Jason Motorway Apt. 419 +Kirstentown, SC 05661",1928-07-26 11:08:47,77:a6:8c:57:9c:ff,samueljohnson@gmail.com,img/obama.jpg +Shannon Smith,265-17-6955,64869,"7078 Michael Springs Suite 595 +South Gerald, MH 42740",2007-10-15 12:18:36,6b:01:bb:de:37:73,petermcdonald@yahoo.com,img/obama.jpg +Susan Nash,150-07-2858,14895,"3163 King Park +Davidton, LA 64884",1945-06-07 02:28:51,cc:01:b5:ef:e3:a3,nicholaswade@powers.org,img/obama.jpg +Marissa Rogers,471-80-0692,94529,"PSC 7823, Box 9254 +APO AE 59686-1554",1924-12-27 22:55:44,c8:42:8c:22:17:3a,mccoycharles@hartman.biz,img/obama.jpg +Anthony Shields,398-37-0971,19172,"491 Mindy Village +Deanchester, ND 26681",1950-12-24 09:40:28,69:9e:b2:7d:a0:9f,colescott@gmail.com,img/obama.jpg +Sherry Williams,789-05-6877,78987,"1644 Powers Mill Suite 839 +South Katie, HI 58285-9716",1950-08-18 00:35:24,aa:65:0c:44:7a:41,omartinez@bennett.com,img/obama.jpg +Michael Whitaker,581-24-3028,32613,"00141 Williams Crescent Suite 652 +Washingtonberg, TX 34196",1987-08-01 21:59:01,10:92:35:94:9c:e3,johnsonjulie@yahoo.com,img/obama.jpg +Brandi Scott,423-31-0551,89073,"806 Kendra Motorway Apt. 044 +Jeffreyhaven, SD 87487",1972-01-26 04:40:18,9e:12:32:e3:ae:f1,dustin05@yahoo.com,img/obama.jpg +Wayne Kemp,393-01-6390,94333,"50994 Day Bypass Suite 739 +Montesville, AK 60220",1974-11-18 07:50:14,a1:2b:81:df:a6:94,tanyamarquez@yahoo.com,img/obama.jpg +Matthew Sandoval,826-93-1955,73028,"05606 Ralph Loop +North Andrea, DE 15533",2012-03-25 11:55:26,ad:8c:96:16:36:2e,josephwong@hotmail.com,img/obama.jpg +Taylor Carroll,868-30-3943,56391,"5285 Mayo Springs Apt. 512 +Kelseymouth, AL 82572",1955-11-28 13:32:06,db:e0:a6:f5:a8:a4,jesse49@hotmail.com,img/obama.jpg +Christina Cross,403-70-7227,37789,"35484 Stein Pike Apt. 244 +East Sharonbury, NH 68793",1932-09-18 00:30:17,d3:b4:1b:3f:27:cc,traci98@yahoo.com,img/obama.jpg +Ashley Robinson,030-50-9682,97823,"2590 Floyd Expressway +Blackwellhaven, KS 83047-2202",1994-08-19 10:53:37,2a:bf:11:e2:17:4a,charleshanson@davidson.com,img/obama.jpg +Christopher Hill,578-39-1619,87528,"42480 Watson Squares Apt. 442 +North Billyberg, LA 05092",1980-01-27 16:58:35,0b:93:0f:b3:2e:f2,gspencer@wilson.com,img/obama.jpg +Gabrielle Thompson,171-02-0017,04844,"0703 Michael Rapids Apt. 946 +East Thomas, PW 50825",1964-03-19 15:23:50,e5:49:75:41:41:2b,frenchbryan@yahoo.com,img/obama.jpg +Joseph Nicholson,599-53-5823,84148,"319 Deborah Springs +Lake Jennifer, NJ 36526-2861",1966-07-27 04:12:57,39:bc:d1:04:6a:30,sharpmark@gmail.com,img/obama.jpg +Melissa Kerr,337-02-0644,88049,"41895 Megan Square Suite 782 +Port Isaac, VA 45232",2012-06-07 01:26:10,0a:42:e2:f7:2b:6d,ericmorrison@hotmail.com,img/obama.jpg +Lauren Wright,897-13-2283,65809,"9886 Jones Groves +Lake Kelseyborough, AK 24819-9573",1929-03-21 18:47:04,68:0a:6a:11:54:ce,lauren54@jackson.com,img/obama.jpg +Christy Griffin,803-04-4703,09920,"1068 Mcgee Summit Apt. 262 +East William, WY 11890-1820",1960-05-30 11:58:02,74:bf:73:e1:c4:6a,marilyn78@gmail.com,img/obama.jpg +Jaclyn Obrien DDS,194-93-2802,63745,"318 Hart Highway Apt. 305 +New Laurenhaven, SC 03159-9766",2010-05-08 13:55:01,0a:4c:fa:c3:36:a2,monroeterri@graham.biz,img/obama.jpg +Cynthia Austin,377-12-5927,26346,"27208 Dana Mountains Suite 051 +Copelandhaven, WA 96306-6692",1926-09-19 17:41:26,ef:5c:9e:fd:87:e0,karengreer@hotmail.com,img/obama.jpg +Michael Kline,750-87-7498,92035,"7612 Jennifer Underpass +Bankschester, ME 44467-4243",1956-12-29 13:55:18,b1:35:ac:9a:f4:8d,whitney70@nelson.info,img/obama.jpg +Ryan Miller,194-26-5076,16150,"01029 Shah Manor Apt. 802 +Amyburgh, OK 89316",1994-03-16 01:15:50,db:57:52:fa:af:3c,susan76@johnson-ramirez.org,img/obama.jpg +Kevin Freeman,872-49-4007,31869,"17904 Scott Ports Suite 845 +South Robertland, NE 51924-4201",1918-09-22 22:13:02,77:a9:35:48:d7:fe,smedina@gmail.com,img/obama.jpg +Brandy Hicks,438-16-6431,40979,"9785 Anderson Ville +Mooreport, SD 98912",1974-02-22 18:08:14,ea:94:02:02:99:f6,omurphy@yahoo.com,img/obama.jpg +Matthew Martin,164-08-5688,56802,"9868 Villarreal Mission +South Christopherport, KS 57547-6555",1932-01-15 10:19:45,98:a7:e0:8d:08:61,joelcervantes@hotmail.com,img/obama.jpg +James Webb,596-67-7981,28359,"9464 Merritt Path +Gomezberg, OR 04049-7280",1940-06-02 17:35:17,cf:c6:de:47:de:55,christopher64@taylor.com,img/obama.jpg +Jennifer Hurley,143-64-1444,63827,"046 Washington Forge Apt. 072 +East Angelaburgh, MI 13019",1939-10-09 19:29:20,ce:ce:0d:ec:f3:1c,todd23@yahoo.com,img/obama.jpg +Terri Farrell,536-30-3554,39395,"090 Warren Common +Port Nancy, DC 58551",1987-03-09 13:31:58,42:7f:b6:3a:27:91,megan46@hotmail.com,img/obama.jpg +Joseph Valencia,028-10-7134,26414,"Unit 0389 Box 3856 +DPO AP 17783-8078",2015-05-19 09:21:20,85:33:95:78:48:7f,maria24@booth.info,img/obama.jpg +Emily Thompson,678-35-9076,83332,"4487 Michael Points Apt. 099 +West Nancymouth, VT 41203-4176",1983-04-06 17:28:47,5e:db:c7:ef:40:3c,sfox@yahoo.com,img/obama.jpg +Melanie Henderson,596-37-6300,51394,"74777 Larry Ways +Ericside, MP 17737-4180",1936-11-18 05:00:41,f9:fd:98:ae:65:ae,kylecox@gmail.com,img/obama.jpg +Matthew Jones MD,096-67-4539,12840,"375 Jessica Falls Apt. 421 +Ashleyborough, KS 40591-1876",1932-05-06 19:55:35,f8:0f:04:a7:a0:18,mcohen@hotmail.com,img/obama.jpg +Stacey White,247-72-9244,88035,"206 Jeffrey Forge +South Katherineburgh, AZ 71407",1984-05-15 14:00:52,4e:20:c4:a9:e1:e9,evansjeffery@gmail.com,img/obama.jpg +Maria Peterson,636-28-0970,63761,"80816 Bailey Rapids Apt. 314 +Johnborough, NH 18347",2011-02-18 06:57:22,8a:da:62:9d:a4:f7,angelalewis@gmail.com,img/obama.jpg +Victor Crawford,489-72-8590,89946,"81974 Wheeler Throughway Apt. 944 +Huberfort, FM 95052",1930-08-05 05:29:04,b8:19:7f:f9:d5:34,dominguezamanda@hotmail.com,img/obama.jpg +Lauren Cooper,369-84-3005,17237,"271 Kylie Tunnel +Port Katherine, SC 27782",1931-04-15 04:11:24,d3:5d:b2:d5:6c:3b,meyeraaron@hotmail.com,img/obama.jpg +Nicholas Howe,412-85-0353,89876,"160 Jones Island +North Laura, PR 14898",2015-08-07 04:28:53,6d:b0:8e:37:40:b7,joann55@murphy.com,img/obama.jpg +Brianna Lopez,531-64-3997,55341,"7903 Gregory Camp +East Daniel, MN 07764",1983-10-13 04:52:49,3e:4f:bf:3f:22:2a,dawndavis@burns-young.com,img/obama.jpg +Lori Alexander,819-52-0149,72671,"682 Wagner Rapids +Martinmouth, SD 50868-0098",1972-05-17 07:45:40,32:ce:f4:a4:9f:57,erin81@gonzales-lynch.com,img/obama.jpg +Julian Lewis,799-68-0230,91315,"337 Ashley Squares +Scottside, MD 58906",1993-09-07 08:12:56,91:45:c3:82:03:a7,victoriaowens@hotmail.com,img/obama.jpg +Sherri Gonzalez,559-83-3080,03568,"7816 Hogan Harbor +Williamside, KS 83385",2013-12-17 03:16:34,6d:3e:06:27:2e:a5,robertbryant@knight.com,img/obama.jpg +Peter Lopez,685-52-4819,33948,"3735 Matthews Fork +North Eddie, ME 95561",1947-10-30 10:23:57,1a:e9:5d:eb:96:61,igray@jenkins-martin.com,img/obama.jpg +Tiffany Mcgrath,605-34-6163,06471,"PSC 7783, Box 0447 +APO AE 09677-0983",1945-02-28 07:53:08,1f:b4:10:fd:2e:9a,gtorres@hotmail.com,img/obama.jpg +Jonathan Gill,567-98-5666,24805,"19694 Jimmy Centers Apt. 432 +Jonesville, AK 46432-2554",1926-06-24 19:41:24,df:0a:26:5c:fb:30,maxwellcindy@hotmail.com,img/obama.jpg +Brittany Lozano,033-65-8748,09939,"Unit 4084 Box 5695 +DPO AP 19976-6077",1941-05-05 14:42:18,89:be:85:dc:c5:f8,bergcarol@gmail.com,img/obama.jpg +Matthew Patel,248-34-1884,45434,"228 Newton Squares +Johnsonview, AL 01209-2738",1970-05-19 00:35:34,0f:4a:66:bf:45:6c,jennifer09@jones.com,img/obama.jpg +Jessica Davis,818-48-8468,74903,"434 Howe Center +Stonechester, NM 35349-5679",1981-07-03 07:51:27,6f:a1:1a:e6:f7:b8,kyle67@yahoo.com,img/obama.jpg +Michael Kelly,871-20-2197,32479,"73865 Bianca Isle Apt. 345 +Alexanderville, WY 95298",1920-06-17 09:11:28,dc:90:05:e1:d1:66,sandra66@villanueva.com,img/obama.jpg +Charles Lewis,242-20-5379,87734,"156 Montes Inlet Suite 553 +Suzannechester, WA 83911-0544",2017-04-28 06:59:10,5a:eb:b1:3f:9f:03,adamsamy@gmail.com,img/obama.jpg +Deborah Martin DDS,719-58-0148,96736,"629 Morgan Rue +Lake Donald, AK 36386",1937-10-28 18:06:36,01:85:67:90:15:e9,kellerbrian@brown-weeks.biz,img/obama.jpg +Jade Henry,193-01-9151,48269,"07711 Morse Brook +Lake Selenamouth, CA 18396",1969-12-26 02:51:54,b6:31:1e:f5:ac:df,ronnie63@hotmail.com,img/obama.jpg +James Thomas,562-71-9131,87733,"9520 Lester Glens Suite 050 +South Reginald, MP 67525",2007-08-14 19:30:38,64:ad:19:27:66:2b,erintaylor@hotmail.com,img/obama.jpg +Kimberly Torres,340-76-2580,18714,"7572 Obrien Plain +South Regina, DC 46696-8835",1989-08-13 04:33:46,d9:0d:02:48:bd:13,destinystone@fritz-ibarra.com,img/obama.jpg +Shelby Campbell,425-13-6462,32484,"65647 Jamie Lock Suite 222 +Mariafort, GA 75298",1989-12-14 13:36:47,53:d8:97:34:37:9f,jonathan68@peters.biz,img/obama.jpg +Leonard Stanley,858-97-9060,81960,"04376 Carmen Estate +Fostertown, IA 32759-2960",1982-06-27 15:28:32,9a:c5:c6:e6:6f:7d,ahernandez@gmail.com,img/obama.jpg +Kyle Hernandez,509-73-6849,44007,"9797 Barnett Station Suite 791 +Lake Michaelfurt, OH 63252-2312",1998-09-09 15:55:50,66:e6:e3:ca:65:b9,lirhonda@yahoo.com,img/obama.jpg +Julie Orr,275-90-8241,42772,"PSC 8121, Box 9787 +APO AP 23411",2007-06-05 13:42:08,3a:a4:8d:14:43:39,nday@barton.com,img/obama.jpg +Scott Powell,372-51-2831,65882,"565 Sims Cove Suite 480 +Jacobmouth, NC 36360",1979-02-26 00:37:17,c0:3a:00:99:d9:1e,pgonzales@gmail.com,img/obama.jpg +Jacob Salazar,864-28-3265,56890,"4290 Denise Greens +Port Alexberg, TN 66964",1938-08-01 04:38:51,ef:9b:18:d9:cd:4f,knorman@callahan.org,img/obama.jpg +Vincent Spencer,058-15-8813,61679,"Unit 4333 Box 1889 +DPO AA 03748-4084",1996-04-20 16:59:43,48:cb:d2:22:55:24,sean01@caldwell.org,img/obama.jpg +Mr. Ronald Smith,417-40-3006,38882,"493 Johnson Wells Suite 523 +South Amanda, MO 92548",1982-10-11 20:14:18,20:31:83:cb:4f:fd,jjackson@davis.com,img/obama.jpg +Richard Martin,627-44-0380,24683,"571 William Mountains +Robinview, AZ 85803-0544",1962-03-06 22:39:20,ac:42:90:19:7f:db,walkerwanda@anderson.org,img/obama.jpg +Bruce Obrien,865-60-0494,45210,"39020 Leah Curve +New Cheryl, OK 73791",1957-11-13 19:16:11,dc:f1:25:e0:4a:f3,arnoldgeorge@gmail.com,img/obama.jpg +Samantha Snyder,028-48-4656,12159,"3994 Jonathon Plains Apt. 819 +Jessicamouth, WY 37997-0171",1950-03-17 17:08:03,8a:8b:61:5c:66:d1,vgay@yahoo.com,img/obama.jpg +Laura Davis,241-48-2301,29813,"600 Deanna Court Apt. 179 +North Tyler, FL 56827",1930-06-20 04:47:01,7f:b5:7f:ce:4b:c6,carterdawn@rosales.com,img/obama.jpg +Antonio Hood,725-43-7859,50396,"958 Michelle Mountain Suite 662 +Lake Michaelburgh, KY 53672",2004-05-13 04:33:37,8a:a6:a2:a1:03:cb,jessica18@gmail.com,img/obama.jpg +Elizabeth Taylor,104-60-6732,43620,"Unit 8221 Box 9707 +DPO AP 05640-1915",1959-06-19 11:29:19,f0:5a:d4:43:76:81,sarahjohnson@yahoo.com,img/obama.jpg +Richard Blevins,103-59-7961,55210,"5793 Alvarado Via +West Melody, OH 52696-7797",1977-09-30 12:59:45,97:58:70:2d:85:a9,elizabethleonard@yahoo.com,img/obama.jpg +Susan Henry,301-46-2486,04271,"5107 Moran Forges Apt. 378 +Williamborough, ME 67208-2572",1935-09-27 18:36:38,76:12:94:b4:33:fb,sandra42@hill.com,img/obama.jpg +Brandon Ruiz,101-51-8062,02178,"978 Jason Bridge +Powersview, RI 07163-6906",1995-03-31 18:39:40,ed:d2:6e:a8:d3:22,micheleglover@gmail.com,img/obama.jpg +Kendra Matthews,591-56-8289,70274,"63670 Anna Underpass Suite 966 +New Kathryn, IL 22936",1961-05-09 09:11:49,34:f1:88:c8:72:74,david81@hotmail.com,img/obama.jpg +Tony Park,239-73-6791,87897,"08121 Williams Islands +New Cynthia, AR 77138",1994-12-28 01:03:13,0c:29:d2:5f:68:f2,geraldcox@dalton.com,img/obama.jpg +Christopher Guerrero,051-58-7497,69412,"85603 Jasmin Roads Suite 640 +Johnhaven, KY 85031",1968-05-06 12:31:17,41:9c:4e:09:c6:ab,watsonanthony@ferguson-brown.com,img/obama.jpg +Alan Moore,148-41-8462,52289,"2288 Barbara Extensions Apt. 091 +New Debbieville, AL 30698",1921-01-13 13:41:41,93:54:ae:6b:57:9c,stephaniesalazar@williams.com,img/obama.jpg +Jon Daniels,051-83-1668,60172,"641 Melvin Canyon Suite 923 +New Robert, PW 58745-0705",1935-03-16 08:55:41,36:3e:8d:67:af:47,ramirezdestiny@morris.com,img/obama.jpg +Angela Davis,228-82-4389,58286,"618 Sanchez Crest +North Julie, WV 53342",1975-07-01 16:35:28,a3:8a:3d:47:ff:27,marnold@vasquez.biz,img/obama.jpg +Stephanie Waters,051-88-1334,95144,"788 Krause Plain Apt. 145 +Jameschester, UT 94937",1936-06-04 14:35:28,f3:b8:e4:d3:03:31,scottmichael@price-brooks.com,img/obama.jpg +Tristan Hines,874-64-3744,64136,"0934 Roberts Road +North Danaborough, OR 87239-3884",1948-04-21 20:48:15,aa:73:af:fa:ba:fe,adixon@hotmail.com,img/obama.jpg +Mary Walker,775-57-5622,53564,"7733 Baker Pike Suite 540 +South Daniel, KS 58562",1966-09-19 20:03:05,3c:05:51:70:22:86,juliebennett@yahoo.com,img/obama.jpg +Amy Reyes,513-09-9046,73356,"0381 Moreno Squares +Lake Stacy, VT 16924-5501",1926-05-04 23:04:32,c1:f6:ae:1b:25:9d,monica88@yahoo.com,img/obama.jpg +Sara Hill,668-40-8982,13734,"Unit 9860 Box 8761 +DPO AA 21301-3228",2010-12-28 16:57:53,ee:9f:8b:35:75:0d,jamesthompson@copeland-soto.com,img/obama.jpg +Donna Moore,789-62-0449,65002,"308 Stanley Island +Terrichester, VA 94900",1981-02-13 04:48:17,0a:45:b9:6d:b5:b0,nicholasharris@yahoo.com,img/obama.jpg +Dan Grant,214-58-2853,51339,"990 Gonzalez Summit Apt. 887 +Jamesville, WY 05033",1981-01-04 12:24:30,79:e2:30:0f:67:e5,pamela08@hotmail.com,img/obama.jpg +Angela White,227-97-7971,43563,"4200 Montgomery Fields Apt. 741 +Laurenside, SD 68568",1965-11-03 14:11:22,65:f3:ff:a8:e6:61,justin50@hotmail.com,img/obama.jpg +Matthew Evans,224-33-0721,64235,"42175 Matthew Wells +Justinhaven, WV 98261",1984-05-21 01:42:30,f3:7f:2a:c1:b6:c5,croberson@rangel.com,img/obama.jpg +Adam Medina,088-85-8869,73049,"3318 Rebecca Passage +Port Morgan, SD 26241-7029",1999-07-13 18:19:35,53:b2:43:e8:82:4a,michelle62@gmail.com,img/obama.jpg +Miguel Garcia,856-90-8124,26705,"9313 Michael Terrace Suite 470 +Fullerberg, VT 44446",2016-06-01 07:14:00,53:9f:11:67:d8:53,obriensteven@hotmail.com,img/obama.jpg +Robert Salazar,632-77-2101,82236,"57244 Romero Hills Suite 532 +Stephenland, FM 79069",1993-02-10 09:42:42,91:bc:ec:05:41:7d,garciamarcus@harris-miller.info,img/obama.jpg +Anne Griffin,098-04-3338,19110,"982 Christina Club +Richardberg, NM 09013",1955-07-24 20:23:13,49:c4:d9:f1:88:de,qdominguez@yahoo.com,img/obama.jpg +Christina Russell,873-03-2329,56185,"94106 Alexander Islands +Bryanberg, TX 44127-6622",1992-07-31 02:48:28,75:06:73:6d:de:89,pmcgee@yahoo.com,img/obama.jpg +Ashley Garza,634-98-5106,71462,"2044 Garcia Forest Suite 517 +Sampsonburgh, MA 84629-8915",1994-08-08 23:54:59,6d:83:10:4e:76:af,simonrachel@robinson.com,img/obama.jpg +Susan Baldwin,184-42-6837,46349,"011 Mendoza Mountains Apt. 291 +Linland, MT 34152",2007-05-17 21:00:26,39:04:eb:22:46:03,kharper@lee.biz,img/obama.jpg +Sean Santos,572-67-5604,19109,"02105 Lori Mission Apt. 646 +Whitefort, PW 15989-4577",1917-10-26 00:16:13,53:43:f4:9e:15:0b,xwest@henson.org,img/obama.jpg +Michelle Leach,720-30-7144,73696,"39679 Briana Route Suite 057 +West Patrickfort, TN 05990-5757",1993-04-26 05:30:20,b2:6c:57:d2:54:94,vcummings@hotmail.com,img/obama.jpg +Anita Johnston,390-86-6119,56692,"44764 Terry Avenue Apt. 984 +Danielhaven, NY 96168",1952-03-21 02:26:50,dc:48:8c:77:3a:25,watkinsmorgan@hall.net,img/obama.jpg +Mark Greene,490-18-3367,11441,"7752 Anderson Path Apt. 868 +Bradychester, CT 32411-6845",1998-11-04 10:43:39,1b:17:e9:75:80:3d,uandersen@hughes-evans.info,img/obama.jpg +Brittany Cortez,575-73-8488,49866,"1031 Elizabeth Shoals +New Brianton, VT 39743-6286",1972-12-05 05:46:48,b0:ef:52:83:51:01,ltrevino@yahoo.com,img/obama.jpg +Teresa Bradley,721-08-4572,79573,"788 Harry Forges +Port Jessicaland, MN 90589-2153",1969-12-21 08:19:50,d2:cc:6b:21:37:22,chubbard@odonnell.net,img/obama.jpg +Tina Morgan,126-76-0822,92151,"606 Brian Ville +Chavezville, WV 17106-2814",1933-07-18 02:45:18,ba:cb:62:c5:45:36,dwatkins@anderson-downs.com,img/obama.jpg +Sandra Sanders,528-88-7401,83487,"03684 Davis Keys Apt. 202 +East Christian, OK 78829-9902",1944-02-01 13:19:01,ce:6b:14:61:de:07,daniel50@yahoo.com,img/obama.jpg +Jessica Clark,896-28-1446,32419,"6535 Alexandra Shores Suite 991 +Richardsville, AL 13345",1951-12-06 00:13:59,2d:f8:86:f1:0d:78,hallkimberly@rodgers.org,img/obama.jpg +Kelly Powers,188-53-7907,56524,"2927 Cox Mountains Suite 331 +Lake Christopher, PR 25815-5225",2003-07-29 08:18:40,87:ed:a6:a3:98:8d,terry04@hotmail.com,img/obama.jpg +Brian Patel,050-93-4062,71866,"0071 Debra Bypass Apt. 368 +North Rachel, TX 34657-4421",2014-09-02 19:56:08,d0:a9:ad:64:a8:17,pamelacameron@gmail.com,img/obama.jpg +Samuel Nguyen,177-91-4279,38248,"48275 Hall Hills Suite 221 +Melissabury, VA 04672-8435",2001-03-01 15:38:08,eb:69:ee:b3:f8:5b,spencervanessa@hotmail.com,img/obama.jpg +Keith Neal,341-95-1313,83799,"89753 Heather Gardens Apt. 859 +Lake Marissaburgh, MO 70764",1980-08-03 08:41:19,fd:8f:04:e4:cc:98,wileylisa@yahoo.com,img/obama.jpg +Heather Mcguire,742-77-9939,87901,"587 Tammy Run Suite 837 +Solomonburgh, GU 26446-2572",1982-12-20 19:18:17,73:c6:ce:31:9a:2b,kjackson@hotmail.com,img/obama.jpg +Michelle Collier,382-56-6346,80956,"690 Charlene Landing +East Thomas, VT 38891",2001-05-22 06:11:33,5b:98:53:50:bf:95,shepardmichael@yahoo.com,img/obama.jpg +Gregory Bowen,694-44-3979,58314,"91785 Taylor Valley +Lake Mary, PA 95382",1970-03-20 07:01:10,c5:22:26:77:a9:69,mercedeshill@rodriguez.com,img/obama.jpg +Samuel Avery DVM,434-59-9344,73109,"746 Valencia Path Suite 148 +Leeberg, WA 53071",1971-04-14 04:43:38,67:79:42:fc:7b:83,jacksoncory@hotmail.com,img/obama.jpg +Kristy Hernandez,535-43-3180,98709,"51701 Crawford Street Suite 049 +Port Robertmouth, AR 99577-0827",1928-03-26 16:08:06,53:e7:a0:bf:91:fe,tanderson@jackson-davis.org,img/obama.jpg +Joshua Ortiz,468-74-3659,79299,"11679 Stephanie Alley Suite 509 +North Shelley, KY 53722",1972-09-14 11:37:21,65:07:7e:38:d8:89,monicaking@hotmail.com,img/obama.jpg +Sarah Pittman,348-61-0420,81081,"259 Paula Alley +Rileyberg, MN 08017",1961-01-05 06:40:20,63:ad:49:a8:19:b0,helencastillo@yahoo.com,img/obama.jpg +Nicole Martin,772-23-4559,49002,"51573 Aaron Wall +West Jeffreyview, WY 51336",1960-12-12 20:54:17,66:3d:b4:95:30:48,shirleyallen@bowers.com,img/obama.jpg +Brent Goodman,247-99-8273,21339,"25793 Nathaniel Village Apt. 705 +New Brandybury, CO 75410",1993-09-22 02:52:03,08:dd:53:4d:72:3b,colemaneduardo@zimmerman-wells.com,img/obama.jpg +Nicole Jordan,875-24-9707,35372,"5722 David Parks Suite 916 +Harrisonhaven, CO 50027",1981-06-05 10:55:31,6d:68:40:bd:bf:3d,kristingreen@brown.info,img/obama.jpg +Carrie Brooks,735-23-9608,50630,"PSC 1545, Box 9507 +APO AE 68863-4007",1947-10-11 08:01:16,57:fb:eb:a3:d5:f1,vanderson@hotmail.com,img/obama.jpg +Kelly Short,157-16-4898,22388,"5561 Jennifer Station Suite 695 +North Beverly, ME 44670",1978-10-11 18:17:05,30:07:f1:33:13:50,kevin27@hotmail.com,img/obama.jpg +Steven Daniels DVM,435-70-8105,92339,"6135 Murray Locks +Bondberg, KY 58322",1951-07-28 05:49:39,64:c0:1b:51:b2:c9,lynchjoshua@yahoo.com,img/obama.jpg +Brittany Jensen,083-32-2138,89905,"14754 Samuel Lock Suite 862 +Randyside, DC 27644-8469",1991-05-21 10:52:53,8f:bb:00:36:17:28,carrollbeverly@gmail.com,img/obama.jpg +Melanie Miller,136-25-0911,62890,"587 Clinton Prairie +West Jonathanburgh, WA 63843",1997-03-21 22:37:42,a7:73:2a:c7:a7:ef,miguelpowers@hotmail.com,img/obama.jpg +Marie Davila,389-57-4053,10703,"00923 Mary Ferry +Angelborough, RI 14070",1950-02-21 07:08:12,93:a0:c0:e5:72:89,julielane@hotmail.com,img/obama.jpg +Michael Christian,470-45-2232,06083,"USNS Fitzpatrick +FPO AE 28799-0643",1999-08-26 06:55:18,ec:c3:b1:03:1c:0a,cmartinez@gmail.com,img/obama.jpg +Shawn Johnson,567-79-7035,04205,"87011 Preston Tunnel +West Aaronland, AZ 38339",1966-01-25 07:38:03,84:a9:e8:65:92:7c,evelynhurst@king.info,img/obama.jpg +Travis Oliver,875-87-8653,27118,"833 Lopez Highway +Figueroaland, WI 59834",2011-03-05 07:28:08,54:62:ed:9f:62:81,rodriguezmelissa@hotmail.com,img/obama.jpg +Arthur Hall,491-71-2432,05046,"125 Sarah Mills +New Emilyfurt, AS 49344",1944-05-31 10:03:50,60:a9:55:f6:50:93,hillchristine@vasquez.com,img/obama.jpg +Sarah Lowery,223-81-9255,42545,"062 David Mills +Olivershire, CA 72789-4685",1919-02-18 02:04:02,da:d2:e6:88:78:7a,ssanders@hotmail.com,img/obama.jpg +Stephanie Martinez,500-32-8194,77950,"0785 Daniels Station Suite 063 +West Albert, KY 43518-3529",1990-12-11 05:28:38,6c:b3:ec:9f:8b:9d,qrosario@yahoo.com,img/obama.jpg +Richard Johnson,041-22-4186,92603,"0876 Darius Tunnel Suite 886 +Lake Alexanderland, ND 43706-8859",1935-08-09 23:27:53,6f:88:74:83:fb:ad,christopher22@williams-kelley.com,img/obama.jpg +Joseph Howell,555-95-3056,04346,"48701 Huffman Fields +Hamptonside, FL 70226-6356",1975-05-20 06:14:53,f7:5f:27:60:33:76,jsmith@villegas-morris.biz,img/obama.jpg +Jennifer Stewart,093-31-7636,25990,"3769 Mary Route +Stricklandshire, WY 49084-3018",1969-01-27 18:11:33,f1:21:ae:f0:6e:71,timothy17@yahoo.com,img/obama.jpg +Christina Juarez,643-72-4167,24075,"061 Green Gardens Apt. 567 +Jennifermouth, MH 41454",1987-07-01 16:47:55,09:75:c7:ef:e2:ac,smiller@yahoo.com,img/obama.jpg +Joshua Brown,399-01-1992,39251,"71923 Stacy Turnpike Suite 529 +North Jasontown, AK 62079-6212",1998-11-11 16:41:31,78:dc:61:29:5f:e3,michaelmartin@hall.com,img/obama.jpg +Louis Hall,189-10-7204,72516,"5290 Ana Burgs Suite 557 +Sharonville, CT 69887-9180",1962-11-26 10:22:34,32:11:c7:eb:7c:f5,sarah99@hotmail.com,img/obama.jpg +David Foster,167-02-4716,66876,"283 Kimberly Expressway +Cameronville, NM 13079",1982-01-26 02:08:43,e0:3f:a5:64:a4:cc,kevinray@yahoo.com,img/obama.jpg +Jessica Cole,350-42-2882,06351,"31629 Parker Motorway Apt. 896 +Phillipsfurt, PR 00877-7238",1934-09-06 23:36:36,5b:43:8c:6e:71:dd,scott24@hotmail.com,img/obama.jpg +Nicole Vazquez,283-96-1688,57274,"Unit 5041 Box 5633 +DPO AA 52483",1975-10-25 19:02:44,b7:59:29:bc:8a:ce,brianwilson@gmail.com,img/obama.jpg +Shawn Hicks,394-20-6624,88404,"123 Hill Road Apt. 306 +Lake Eric, LA 89487",1927-08-11 16:07:15,db:89:f6:4e:df:c5,alewis@hotmail.com,img/obama.jpg +Todd Bailey,542-03-9811,48878,"9004 Lewis Rapid +Sanchezborough, MH 67989-2379",2013-10-31 09:29:07,13:4e:02:24:4d:3c,jessicaruiz@gmail.com,img/obama.jpg +Nicole Garcia,602-32-5996,32222,"861 Nicholas Streets +New Bethville, MH 02842",1934-10-08 05:49:20,b3:96:2a:39:f9:c8,iwoods@hotmail.com,img/obama.jpg +Pamela Pitts,585-05-5872,57008,"24712 Herman Isle +Chenville, OH 91385-9484",1998-06-08 09:17:50,c6:92:61:55:22:df,tracy39@trujillo.biz,img/obama.jpg +Mary Brock,308-70-9350,76506,"8058 Vargas Roads Apt. 962 +West Christina, WI 83642",1992-06-10 08:12:13,cd:e8:c8:bc:2e:15,ajohnson@gmail.com,img/obama.jpg +Brian Franklin,297-57-7083,93715,"PSC 8040, Box 4653 +APO AE 06252",1925-10-30 21:31:04,06:7a:84:8b:89:3a,barnespaul@gordon-greene.com,img/obama.jpg +Ryan Duncan,153-02-6316,81869,"USNV King +FPO AP 94711-2869",2009-03-08 21:17:31,ac:dc:45:6b:fa:74,michellefisher@yahoo.com,img/obama.jpg +James Jones,105-27-4270,99547,"5897 Carlos Neck +Castanedachester, NH 50316",2006-10-24 15:09:42,45:64:24:68:8f:06,dstewart@gmail.com,img/obama.jpg +Fernando Haas,356-40-2837,90770,"62612 Sara Center Apt. 521 +Romanside, MP 97879-4922",1918-11-21 15:55:15,e0:45:ce:04:d7:1c,virginia17@santiago-nelson.net,img/obama.jpg +David Howard,717-81-4135,37715,"134 Rachel View +North Michael, UT 77437-7716",1985-07-20 13:51:04,4b:7d:42:55:0e:6e,yroberson@yahoo.com,img/obama.jpg +Lauren Evans,393-22-6248,30038,"5262 Stewart Bridge +Ericmouth, VI 70871",1925-12-21 15:15:26,23:de:a1:7d:97:62,mercedes15@white.org,img/obama.jpg +Rebecca Michael,258-77-9326,28371,"16570 Harrison Shoals +West William, CA 76251-5002",2011-03-31 11:28:36,e5:a1:e9:a1:0a:10,joel42@lewis-harrison.net,img/obama.jpg +Michelle Lee,580-30-3603,72094,"884 Evans Stravenue +West Andrewtown, MH 57184-3589",1943-04-20 20:25:22,f5:27:f2:e5:94:75,vdavis@hotmail.com,img/obama.jpg +Veronica Murillo,554-91-1042,78820,"80040 Holden Trafficway Suite 104 +Jesseside, SD 02295",1923-01-15 12:46:02,ef:91:7b:e5:e8:c5,katie11@hotmail.com,img/obama.jpg +Pamela Benson,604-03-2141,27526,"4425 Russell Lakes +Jamietown, TX 35742",1939-12-27 18:58:19,40:a8:88:15:16:b1,dennis64@osborne.info,img/obama.jpg +Gina Roberts,690-40-6931,34258,"5644 James Place +New Mark, VT 41529",1935-01-20 18:29:33,26:e7:4e:8b:8b:11,jesse22@guzman.com,img/obama.jpg +Sarah Moore,277-49-2750,26012,"91260 Porter Keys +Figueroafort, AS 19017-8693",1962-12-31 06:08:06,bb:25:96:d7:4f:ae,fpalmer@gmail.com,img/obama.jpg +Shannon Hart,316-12-4542,61689,"870 Carlos Mountain +Lake Jody, HI 64103",1964-09-06 00:36:58,2e:88:90:a1:94:d5,wthomas@martin.com,img/obama.jpg +Robert Mccormick,137-36-7409,92924,"91065 Peters Divide +Jonesville, NJ 20113",1977-05-05 20:29:04,b6:37:98:ce:e1:87,goodwindesiree@hotmail.com,img/obama.jpg +Lisa Butler,659-02-0866,65682,"6667 Armstrong Junction +West Maryview, PA 93902",2010-08-30 07:47:04,29:1f:c4:94:6c:60,yrivera@terry.com,img/obama.jpg +Kelly Wilkinson,199-74-2326,58377,"PSC 9681, Box 6922 +APO AA 39178",2015-08-04 08:17:34,e4:2b:41:a7:2a:03,michael01@yahoo.com,img/obama.jpg +Rhonda Rogers,305-59-4871,83473,"55659 Laura Spring +Jenniferfurt, WI 28297-6413",1983-12-13 15:04:01,cd:79:09:17:36:8d,lowerykrystal@hotmail.com,img/obama.jpg +Bruce Avery,842-43-6534,58265,"1801 Coleman Walks +East Jennashire, GA 22842",1988-02-29 04:10:55,aa:0b:25:67:e8:ab,casebecky@gmail.com,img/obama.jpg +Joanne Sharp,249-77-0712,48410,"1255 Mayer Summit +Robinsonchester, CT 29765-5835",1942-06-23 09:31:25,91:22:c8:f8:35:0a,vincentjennings@hotmail.com,img/obama.jpg +Darrell Washington,025-48-7478,10294,"62079 Martin Roads Suite 922 +South Jason, HI 82634-5696",2012-04-02 06:41:22,f3:5c:5d:41:41:ea,elong@bolton-williams.com,img/obama.jpg +Kathryn Rose,734-85-1047,20187,"9862 Lori Terrace Suite 857 +Bryanmouth, KY 33487",1997-04-11 12:30:30,0d:e8:e7:d8:1e:a3,kevinrobinson@gmail.com,img/obama.jpg +Ashley Sims,734-40-8748,63318,"443 Chandler Groves Apt. 194 +North Mindymouth, NY 98105",1931-09-18 01:55:14,d8:d1:ce:74:4c:17,mmccormick@gmail.com,img/obama.jpg +Robert Phillips,223-35-8215,33640,"837 Jefferson Way +North Elizabethborough, CA 81220-4095",1967-08-28 19:20:13,7d:39:91:ab:76:d6,jlewis@yahoo.com,img/obama.jpg +Heather Cox,493-27-6202,53461,"208 West Mountains Apt. 277 +Reyesview, ID 90111",1934-05-04 14:52:41,66:c6:18:ac:b1:8d,courtneyandersen@gmail.com,img/obama.jpg +Alexander Mckay,546-29-1256,36789,"PSC 5054, Box 1945 +APO AE 52925",1985-06-13 19:43:53,bd:0a:30:b0:55:fe,jamesrivera@hotmail.com,img/obama.jpg +Robert Davis,677-06-1661,20173,"006 Gonzalez Street Apt. 316 +Jamesberg, GU 46910",2000-05-19 11:36:32,bf:50:f0:42:51:ea,shaneclarke@golden.com,img/obama.jpg +Sarah Rubio,612-62-1604,22397,"561 Vaughn Freeway +New Heather, VA 80473-9243",1922-10-12 02:08:10,7b:17:fc:82:f0:12,kenneth33@yahoo.com,img/obama.jpg +Julia Curtis,162-86-2900,56069,"42473 Andrea Unions Apt. 850 +Davishaven, RI 97831-2695",1928-04-11 12:16:44,53:91:4e:d9:85:e5,xreilly@hotmail.com,img/obama.jpg +Eduardo Johnson,341-03-9965,20500,"485 Gibbs Centers Suite 864 +West Dillonbury, MP 99143-1470",2011-02-17 19:51:28,f0:98:2a:c7:37:88,murraysherry@gmail.com,img/obama.jpg +Lauren Trevino,116-71-9328,38569,"04092 Charles Centers Suite 838 +South Harryborough, VT 17706",1920-01-25 08:30:09,65:17:f1:d3:20:03,hwilliams@conner.info,img/obama.jpg +Mr. Leroy Clarke Jr.,714-92-6790,13167,"526 Jennifer Corner +Thomasborough, AL 11817",1964-11-09 05:49:09,90:33:02:05:88:cd,fwilliams@jackson.com,img/obama.jpg +William Wilson,128-12-2902,27752,"PSC 8591, Box 0505 +APO AE 65079",1975-09-16 07:57:53,c1:8f:07:e4:18:de,kelsey99@thompson.com,img/obama.jpg +Rebecca Rodriguez,143-25-4455,53532,"4467 Aaron Landing +North Jason, FM 98605",1937-02-28 03:38:42,1b:2a:a8:1e:c1:fd,xharris@hotmail.com,img/obama.jpg +Michelle Fowler,450-89-1199,10126,"USS Jones +FPO AP 89736",1982-07-28 21:48:26,9e:86:09:8a:42:4b,danielweaver@roberts.org,img/obama.jpg +Sara Ellis,375-95-8679,20558,"784 Kenneth Forges +Montgomeryton, MD 55228",1982-12-27 07:52:39,19:04:d9:ce:2f:4d,currysara@gmail.com,img/obama.jpg +Cynthia Gonzalez,860-98-7015,04401,"66514 Ashley Ports Suite 678 +Moranside, WY 77950",1979-12-12 16:54:16,2d:78:94:18:b7:5e,allenmichael@ferrell.com,img/obama.jpg +Richard Perry,524-62-2071,91090,"154 Smith Glen Suite 420 +Taylorberg, MD 98447-9226",1933-01-06 06:34:29,48:ca:1c:f4:cd:74,gloria67@lyons.com,img/obama.jpg +Christina Rich,250-30-6607,71685,"6139 Sandoval Expressway +Lisabury, OK 64307-8371",2009-02-05 15:41:58,09:63:70:ab:28:86,elowe@hotmail.com,img/obama.jpg +Dr. Brian Meyers II,314-90-1038,05633,"390 Wagner Fall Suite 106 +Michaelland, MA 58308",2014-09-25 01:42:39,30:f4:fd:63:84:e8,brandon10@gmail.com,img/obama.jpg +Colleen Perez,290-77-2915,63885,"PSC 1959, Box 2784 +APO AA 90231-0034",1917-07-29 07:26:02,55:27:f3:0c:31:3c,jake94@hotmail.com,img/obama.jpg +Nathan Austin,015-65-7098,37690,"42205 Kelly Divide Suite 184 +West Jennafort, MT 55911-8461",1929-06-07 19:50:06,26:25:e0:dc:f6:36,sethmorris@hotmail.com,img/obama.jpg +Rhonda Anderson,308-06-0925,43080,"6292 Michael Court Apt. 592 +Brianton, IL 00103-9136",1938-12-13 23:03:01,06:22:f3:9e:9e:6c,earlallen@hotmail.com,img/obama.jpg +Melinda Jones,440-04-8666,84904,"3054 Harry Heights +South Stephaniebury, MO 61757",1928-11-17 08:43:54,39:d2:d7:0f:b5:7d,nguyensteven@ellis.com,img/obama.jpg +Tina Flores,143-38-3978,04622,"11609 Goodwin Glens +Lewisfurt, WY 49829",2016-03-26 11:54:21,15:c6:f8:bf:48:6a,ymartinez@thompson.org,img/obama.jpg +Brittany York,010-17-8731,49111,"77281 Tracy Drive +Kimberlyshire, LA 00238",1984-09-07 15:59:06,3b:0f:f3:b0:c1:dd,dillonholly@zamora.org,img/obama.jpg +Jonathan Ellis,308-47-0459,86927,"668 David Pike Apt. 016 +Port Meaganburgh, DE 63193",2003-08-15 06:43:17,9e:c8:b3:a5:e1:a2,vfrench@murphy.com,img/obama.jpg +Sheila Garcia,081-02-0610,00787,"03159 Micheal Motorway Apt. 016 +Griffithtown, AL 81467-8740",1978-05-08 03:19:55,76:85:18:50:53:f1,sarahferguson@rodgers.org,img/obama.jpg +Charles Robles,239-64-8874,23129,"535 Stephen Landing +Millerbury, AS 88288",1980-09-24 00:31:22,01:7f:05:4a:fe:33,dillonvang@thornton-mullen.com,img/obama.jpg +Jennifer Clark,348-33-5073,09856,"0647 Macdonald Lights Suite 513 +Mariahaven, AK 17576-8089",1942-07-16 22:27:48,80:5f:ea:61:1a:17,fwilson@bennett.com,img/obama.jpg +John Pollard,608-08-4496,24762,"44775 Martha Summit +Brendatown, NV 33446",1948-06-14 15:20:05,7f:13:47:e3:e2:f7,kirkkenneth@gmail.com,img/obama.jpg +Jordan Grant,107-30-4766,35620,"04017 Burgess Extensions +Port Joseph, UT 06302",1998-05-26 10:20:11,20:59:37:df:64:69,gordonhelen@smith-soto.biz,img/obama.jpg +Heather Webster,091-37-4846,10282,"8296 Lindsey Trail Apt. 068 +Amberview, ME 71887-5642",1943-11-21 13:39:10,57:d5:e9:cb:57:b3,jennifer27@green.info,img/obama.jpg +Corey Smith,548-74-9067,64467,"05253 Simmons Streets +Terranceland, MI 44676-0596",1919-12-01 20:03:05,99:26:fa:3e:18:58,pfox@gmail.com,img/obama.jpg +Brenda Clark,085-61-5200,28537,"7618 Chambers Forks +Gillbury, DE 17008",1928-02-07 13:46:26,fa:60:f8:7c:f2:5e,xnash@lewis.org,img/obama.jpg +Barbara Flores,586-80-2628,29167,"961 Scott Mall Suite 965 +South Jason, MH 29607",2012-11-04 18:29:05,82:bb:0e:3b:21:27,oneal@hotmail.com,img/obama.jpg +Rebecca Collins,150-12-7028,91102,"6047 Frank Junctions +New Karaview, ME 31116-8917",1983-08-19 21:59:19,e5:ea:92:ad:69:48,josephphelps@hotmail.com,img/obama.jpg +Jennifer Lopez MD,546-64-2460,09547,"359 Amanda Route Apt. 542 +South Paigeton, OH 75139-2906",2007-03-04 00:31:54,5f:82:74:91:1d:bd,mcdanielsamuel@hotmail.com,img/obama.jpg +Allison Ross,873-70-9203,98901,"8606 George Station Apt. 473 +East Meaganville, HI 32728-5153",1979-10-15 10:06:15,b4:c6:0e:7c:df:fd,christinalee@yahoo.com,img/obama.jpg +Elizabeth Reed,050-98-0570,85950,"394 Rogers View +South Rachel, WI 58553",1951-08-04 05:07:13,8c:7c:08:bd:6f:04,brownjennifer@yahoo.com,img/obama.jpg +Jordan Carr,098-45-6806,67509,"9445 Timothy Loaf +South Peterfurt, DC 25792-9499",1964-11-09 08:10:44,11:20:ca:23:2c:28,cooklaura@yahoo.com,img/obama.jpg +Mark Wilkerson,384-20-0887,35461,"819 Thomas Causeway +South Angela, SC 97212",1940-06-24 12:53:10,d2:7e:f6:fb:50:90,myersjoshua@edwards.net,img/obama.jpg +Johnny Kennedy,120-43-0862,84914,"75798 Hodges Avenue +North Jason, OK 31733",1999-06-17 02:01:14,47:10:00:ea:dd:58,adamsian@thomas.net,img/obama.jpg +Kyle Bryant,634-13-2331,88346,"87503 Michelle River +Matthewport, VT 56764-2846",1989-04-20 12:27:30,b4:f7:f2:f8:ee:a9,martinchristopher@gmail.com,img/obama.jpg +Cynthia Velazquez,121-27-3092,92768,"63849 Stephanie Overpass +North Shannonborough, MN 20910-3672",1944-03-18 02:42:19,1f:ac:42:71:60:74,sguzman@strickland.com,img/obama.jpg +Julie Daniels,532-32-3693,11908,"6307 Gonzalez Court +Carterbury, KY 11392",1947-02-24 11:03:38,ef:b7:cf:70:4c:dd,ldavis@hotmail.com,img/obama.jpg +James Ryan Jr.,245-81-6026,09525,"33024 Johnson Harbor Apt. 438 +Richardborough, VT 52882",1991-07-14 05:48:07,f9:47:d9:5a:9b:76,zbrown@cruz-duncan.com,img/obama.jpg +Ricky Lawrence,723-08-1890,69891,"PSC 0900, Box 8634 +APO AA 74101",1958-10-29 14:43:30,f7:6c:47:71:36:7a,sandra90@scott.com,img/obama.jpg +Brian Bailey,830-65-5964,48964,"5293 Campbell Roads +Coreyfurt, AL 42222",1973-06-08 01:24:09,98:4b:cb:bc:9c:4e,matthewbowman@gmail.com,img/obama.jpg +Samantha Russell,251-30-1074,95469,"123 Martin Bridge Apt. 720 +East Laurafort, AS 87330-7161",2006-11-11 13:45:05,4e:fc:f9:b7:dd:3e,diazadam@martin-ross.net,img/obama.jpg +Jasmine Garcia,205-40-4573,19889,"0446 Laura Shores +Keithhaven, IL 11516",1948-02-14 18:54:10,a3:11:1d:90:63:87,collinsjustin@howe-evans.com,img/obama.jpg +Pamela Meyers,446-39-3294,29474,"2729 Evans Throughway Suite 636 +New Ryanberg, FM 29400-3385",1991-06-09 12:00:59,db:ba:2e:b9:18:10,hflores@gmail.com,img/obama.jpg +Meredith Jones,361-90-4183,89524,"457 Christopher Groves Apt. 485 +Andreaton, TN 12320",1923-09-01 14:19:19,72:53:30:67:38:52,johnsontoni@rodriguez.com,img/obama.jpg +Christina Johnson,800-93-8376,28351,"PSC 6615, Box 0561 +APO AP 12869-6704",1993-06-13 15:33:55,37:e4:8a:72:aa:b2,billydavis@willis.com,img/obama.jpg +Heather Hart,115-25-1194,33702,"44074 Hunter Bypass Suite 566 +Jamesview, NV 39516",1938-04-25 09:00:55,e3:41:14:90:a4:16,matthew80@gmail.com,img/obama.jpg +Tammy Jackson,230-29-6506,37367,"52397 Carpenter Glen +East Teresa, TN 39109-7315",1984-03-07 14:17:16,5a:fe:a0:00:22:07,dawn38@miller.info,img/obama.jpg +Lisa Hess,449-90-1675,13076,"012 Wilson Greens +Fraziershire, OK 14056",2006-06-24 18:08:24,81:f5:a0:bd:f1:29,cody01@yahoo.com,img/obama.jpg +Michael Davis,831-57-6701,76975,"1136 Morales Knolls +Ryanmouth, MH 82540-7619",2009-03-15 10:59:34,05:ce:0e:06:48:78,donna66@hotmail.com,img/obama.jpg +Michael Curtis,743-98-1509,91850,"216 Michael Mount Apt. 627 +West Kevinburgh, AK 65325-5913",1928-02-02 00:03:36,fc:ed:75:bd:a9:3b,ohernandez@jimenez.com,img/obama.jpg +Paul Morris,764-24-8411,83469,"72651 Roberto Avenue Apt. 852 +Donchester, KS 64572-3090",1947-11-08 00:18:26,fa:28:99:50:4a:9f,hrobinson@yahoo.com,img/obama.jpg +Carl Stanton,498-86-6646,64213,"52051 Kaitlyn Pine +Lopezhaven, WA 22755-7214",1927-01-02 09:25:48,9e:94:6f:74:54:7d,laurapotter@hotmail.com,img/obama.jpg +Mitchell Johnson,316-18-7800,79058,"PSC 2719, Box 0320 +APO AE 36391",1965-11-22 03:45:39,a6:eb:66:2c:2c:5b,kimberlyconner@long-cooper.org,img/obama.jpg +Cynthia Meyer,717-07-1966,57756,"USNV Boyer +FPO AA 57200-0241",2003-04-26 03:35:55,f4:6e:c8:e3:c1:a1,zholmes@castro.com,img/obama.jpg +John Williams MD,485-85-4764,09817,"37701 Gregory Centers Suite 288 +Bowenstad, IL 63757",1951-10-11 15:26:31,46:68:a0:a4:95:6c,stephanielee@wilson.com,img/obama.jpg +Jeffrey Sims,478-11-9683,65369,"305 Carpenter Trace Apt. 658 +Petersside, MT 22798",1940-07-13 04:39:21,c4:95:5e:10:75:75,hartcarl@lloyd-stewart.com,img/obama.jpg +William Cruz,184-99-1483,38289,"7760 Daniels Summit +Solisfurt, MA 46527-1050",2004-06-30 12:57:18,27:dc:74:58:af:c2,katkinson@dominguez-henderson.net,img/obama.jpg +Mary Bright,045-33-9971,59903,"USNV Gonzales +FPO AP 21518",1965-02-09 11:59:00,07:15:f2:d9:d5:72,richard87@miller.biz,img/obama.jpg +Robert Pruitt,272-08-9526,19197,"49356 Mcclure Cove +West Leslie, NE 18352-5140",1965-11-22 11:24:28,bd:80:ac:f2:ee:71,brian56@martin.net,img/obama.jpg +Natasha Turner,477-15-3498,47764,"945 Noble Shore Suite 778 +Carlaburgh, ID 02873-1911",1954-04-22 15:07:42,a7:11:ae:f8:4c:16,rebeccawolfe@hotmail.com,img/obama.jpg +David Larson,268-67-7522,85241,"0623 Ramos Island +Mcdowellside, CT 95770",1929-01-30 01:01:26,4d:54:aa:cc:38:6e,blairsean@jenkins-hicks.net,img/obama.jpg +Emily Allen,002-05-1526,95121,"48927 James Vista Suite 478 +Jessicafort, NM 95523-3566",1993-07-18 11:13:16,99:de:0c:6d:7e:bc,teresasmith@mahoney.net,img/obama.jpg +Allison Fields,651-26-6868,09705,"12664 Donald Walks +Lake Nicholas, MI 47039",1968-03-09 15:26:05,cc:e4:ce:34:d4:5a,lhanson@steele-lewis.com,img/obama.jpg +Jon Berger,545-45-1219,07853,"8857 Jose Glens +New Tracie, NH 42751",1918-04-05 11:10:14,ae:9f:6d:3b:45:b4,matthewsmith@gmail.com,img/obama.jpg +Patricia Edwards,424-13-8279,32581,"93937 Baldwin Port Suite 513 +Lake Meghan, CO 14323",2010-02-19 13:39:06,c2:bb:42:a8:63:d2,gonzalezjennifer@nichols.com,img/obama.jpg +Allison Jackson,116-87-9560,02447,"USNS Morris +FPO AA 50328",1999-12-27 23:39:53,41:55:2f:71:51:d0,cherylwalker@khan-anderson.com,img/obama.jpg +Pamela Perez,086-19-3205,44068,"85949 Kendra Motorway +Port Brandonchester, ME 08409-2343",1986-06-12 09:17:30,76:9d:86:09:57:da,yreed@hotmail.com,img/obama.jpg +Maria Bullock,097-47-9026,61830,"56641 Park Trail Suite 951 +South Shirleyburgh, DC 89425",1979-12-03 11:44:44,a2:1a:a0:98:f4:05,bettycruz@yahoo.com,img/obama.jpg +Brittany Hale,721-59-6819,37400,"809 Joshua Village +Jaclynstad, KS 13018-6996",1955-07-21 11:20:35,40:1b:c5:c3:27:02,qcastillo@colon.com,img/obama.jpg +Andrea Cook,305-87-1203,63191,"253 Garcia Burgs Suite 504 +South Jasonstad, WA 00760-9128",1958-05-22 14:37:27,75:ea:e6:fb:d2:d9,mckinneydavid@thompson.net,img/obama.jpg +Gail Lowe,564-54-8100,60705,"0495 Hernandez Lock +Rogerschester, MO 44630",1979-02-10 13:02:05,b8:3e:9c:dd:ff:54,amanda23@lewis-barton.com,img/obama.jpg +Brandon Decker,452-07-7351,73902,"8941 Paige Trail +Boyermouth, SD 91155",1961-12-14 07:49:15,8c:f6:fc:33:e7:64,ulopez@burgess.org,img/obama.jpg +Jennifer Luna,709-18-0686,33098,"947 Stevens Ranch +East Marieberg, MN 09628",1947-03-18 12:31:27,b5:41:13:36:1d:ca,thahn@rodriguez-silva.com,img/obama.jpg +Mary Hudson,178-11-3967,23375,"PSC 2220, Box 2214 +APO AP 98517-6300",1966-10-27 14:33:43,05:5d:49:e1:b8:fd,vincent42@hotmail.com,img/obama.jpg +Melvin Miller,557-61-3157,46578,"256 Harris Knolls Apt. 123 +New Brandon, UT 11242-0863",1944-04-11 15:29:57,0c:f2:3b:da:09:96,ochoaemily@gmail.com,img/obama.jpg +Julia Knight,614-44-0822,33474,"34621 Brady Court Apt. 789 +Jessicaview, NV 59979",1936-07-31 02:12:24,2b:24:3a:a7:36:2a,edward69@hotmail.com,img/obama.jpg +Jason Walker,072-91-8136,84461,"215 Joshua Greens +Williamsside, KY 89962-7586",1977-03-06 13:29:36,e0:6b:c9:0d:49:c5,nicolas26@powers.com,img/obama.jpg +Susan Branch,850-26-8833,59398,"786 Mike View Suite 536 +Haynesshire, PW 33285",1944-08-27 19:41:15,41:2e:23:de:7e:8c,spatton@yahoo.com,img/obama.jpg +Robin Clark,132-14-9125,30361,"289 Kimberly Drive +Jordanberg, MO 35638",1966-03-01 10:24:20,6a:46:9c:e4:f7:66,mirandagregory@yahoo.com,img/obama.jpg +Joel Phillips,353-51-4980,43390,"432 Holmes Roads Apt. 828 +North Michaeltown, ID 45526",1926-03-25 09:28:12,c6:20:10:41:50:3a,glennmichael@hotmail.com,img/obama.jpg +David Roman,071-79-0502,45418,"7929 Stanley Center +Webbfort, ND 91299",1953-09-29 02:14:06,9d:b5:28:79:08:53,joeljohnson@gmail.com,img/obama.jpg +Joseph Gardner,192-37-9019,38902,"3964 Murphy Radial +Griffinberg, ME 80506-4362",1917-06-18 03:55:02,3d:fc:07:fc:7d:b8,dawsonsteven@gmail.com,img/obama.jpg +Nicole Brown,773-45-7556,51930,"600 Wheeler Turnpike +New Heather, NJ 30680-3761",1995-04-28 17:10:11,25:69:6b:a4:25:76,hfuller@grant-montgomery.com,img/obama.jpg +Carrie Ryan,633-71-5249,93409,"8502 Jennifer Rapids Apt. 726 +North Jimhaven, CA 41881",2006-04-23 23:11:36,35:ab:fc:13:1c:69,debbie31@schaefer.com,img/obama.jpg +Lisa Woodward,018-37-7334,97590,"08917 Antonio Forges Suite 688 +New Andrea, CA 57694-7407",1920-03-25 07:43:11,40:5e:47:05:7a:17,ymurray@dean.net,img/obama.jpg +Cynthia Strickland,292-82-3044,92001,"4825 Brown Turnpike Apt. 946 +Georgebury, UT 16493",1986-09-11 18:10:32,ae:62:d7:9a:ff:6f,annarobinson@mills.net,img/obama.jpg +Jennifer King,196-36-8002,78138,"88158 Owens Light Suite 021 +South Donald, GU 90584-8671",1928-10-26 19:32:15,2a:fe:d7:78:96:e3,chad84@hotmail.com,img/obama.jpg +Pamela Brown,475-80-5262,62689,"Unit 7477 Box 1450 +DPO AE 58647",2014-12-17 22:17:16,89:f1:de:c8:65:0e,xbailey@yahoo.com,img/obama.jpg +Jesse Sharp,351-93-3571,72832,"830 Hill Junctions Suite 947 +Jonesview, ME 79731",1985-02-08 13:21:23,99:af:5e:b9:b3:83,nealstephanie@yahoo.com,img/obama.jpg +Johnathan Carter,875-26-9085,88305,"634 Mackenzie Square Suite 974 +Palmerside, PA 93537",2015-09-19 13:16:26,71:d2:ef:02:dd:28,markjones@cook.org,img/obama.jpg +Joshua Hawkins,720-97-1878,05275,"0178 Scott Village Suite 613 +Lake Jamesmouth, RI 29238",1970-09-17 17:46:37,ec:a3:5f:77:b8:31,wholland@gmail.com,img/obama.jpg +William Gardner,756-18-9014,21200,"995 Todd Plaza Apt. 241 +Stantonland, GA 44392-6394",1935-04-18 15:57:44,ee:41:15:51:79:99,timothyjohnson@gmail.com,img/obama.jpg +Samantha Woods,803-70-6651,61808,"3252 Hull Crossing +Lake Richard, MP 34489-8564",1997-04-15 03:48:46,d8:5b:c6:cb:6e:83,annenguyen@gmail.com,img/obama.jpg +Ashley Reyes,882-06-2394,54239,"USCGC Turner +FPO AA 44709",1934-11-08 02:55:13,84:77:52:2a:4a:03,gwhite@morrison-hammond.com,img/obama.jpg +Kristen Zamora,595-42-9677,99421,"1901 Carter Hollow Suite 514 +Owensmouth, NC 58942",1956-04-27 08:46:34,6e:c4:f3:66:ae:24,craig42@gregory-barrett.com,img/obama.jpg +Catherine Mcintosh,655-40-1702,16711,"96746 Christopher Mountain Suite 817 +Bradleystad, NJ 72707",1983-10-04 00:06:51,89:38:4d:38:84:71,whitealyssa@martinez.com,img/obama.jpg +James Waters,522-41-8474,69486,"339 Vance Harbor Suite 048 +South Steven, CT 85556-9252",1969-06-10 10:59:57,8f:53:9b:25:f6:7b,dwatts@yahoo.com,img/obama.jpg +Sarah Garrett,067-49-3618,42897,"3706 Peterson Pike +Debbieton, HI 79096",1966-04-23 19:24:29,a0:98:2c:8a:69:eb,crystal55@gmail.com,img/obama.jpg +Eric Robertson,806-74-0476,51819,"67809 Randy Junction +Kyletown, WI 50388",1953-02-05 15:39:23,e7:74:05:c5:4c:87,brandon52@gmail.com,img/obama.jpg +Karen Shepard,029-18-3643,24540,"8395 Mitchell Junctions Suite 174 +Jeanfort, NY 84978-7549",1926-12-05 03:14:36,e5:05:16:e2:03:a5,hernandezbrenda@yahoo.com,img/obama.jpg +Mr. Justin Stevenson PhD,590-99-6216,07559,"910 Steven Corner +Port Michaelland, ND 42410",1991-05-22 04:33:14,ea:13:db:39:65:b6,markrobinson@rodriguez.com,img/obama.jpg +Donna Oconnor,869-15-4201,69485,"727 Kaylee Ranch Apt. 866 +Freyton, OH 59705-7612",1975-10-09 16:35:42,0d:dd:4f:0c:8e:0f,bjones@frank.info,img/obama.jpg +Michelle Shelton,449-32-5509,29862,"7491 Abigail Dale +Blackmouth, OH 22411",1949-03-23 00:28:42,28:b0:2f:1c:39:1c,ile@mejia.org,img/obama.jpg +Eric Bryant,271-90-0955,76517,"86854 Mitchell Ports Suite 664 +Castrofurt, MD 71728",1988-11-17 12:01:14,d8:ac:a4:b5:63:63,rosejake@yahoo.com,img/obama.jpg +Rodney Frank,839-72-5640,54194,"58726 Hutchinson Fork Apt. 554 +Brandychester, KS 99607",1928-01-17 00:02:42,20:f3:38:53:46:02,ngarcia@fischer-smith.com,img/obama.jpg +Jill Morris,150-07-6113,15534,"432 Schwartz Port Suite 819 +Andrealand, NJ 36250-5861",1963-11-28 02:34:29,56:e2:14:18:0a:1f,mramirez@hotmail.com,img/obama.jpg +Tracy Miles,780-53-7794,67916,"76881 Michelle Junctions +Wrightmouth, VI 96739-9117",1981-10-19 16:43:29,b0:51:8f:ed:ac:26,muellerdana@edwards-haynes.com,img/obama.jpg +Kelly Miller,478-12-6495,38717,"1596 Ward Pines Apt. 677 +West Krystalberg, AS 98039-9295",1920-10-26 06:53:46,49:3b:67:3f:1d:0c,kenneth02@coleman-mosley.com,img/obama.jpg +Krista Shaffer,055-11-3073,28299,"9055 Joseph Landing +Andrewchester, MO 18330-0017",2016-03-03 19:33:59,75:cd:d1:03:3c:ac,christopher55@hotmail.com,img/obama.jpg +Gary Butler,728-10-3771,70630,"USNS Stone +FPO AA 77409",1946-07-10 20:31:05,c8:26:28:09:a4:f2,jack22@hotmail.com,img/obama.jpg +Kelly Hardy,589-86-0236,23332,"1497 Miller Flat Apt. 249 +Lopezshire, WA 64537-9770",1981-06-03 03:33:56,37:6b:ae:33:2c:84,youngeduardo@pena.com,img/obama.jpg +Thomas Houston,254-25-3619,30518,"896 Jason Station Suite 882 +Alvarezstad, IN 53879-4333",1968-05-09 23:53:17,f3:1d:c2:4d:b1:2c,april04@hotmail.com,img/obama.jpg +Michelle Ford,877-22-0405,49390,"Unit 5727 Box 9889 +DPO AP 98494-2144",1926-12-02 21:48:52,4d:47:3b:bf:61:cd,nelsonhannah@gmail.com,img/obama.jpg +Steven Leon,576-73-5325,08944,"36541 Perez Pines Apt. 385 +Mclaughlinfort, NE 50322-2688",1918-04-22 17:13:09,96:b3:0e:32:55:32,vpotts@yahoo.com,img/obama.jpg +James Smith,769-21-5574,66788,"73313 Julie Spurs Apt. 998 +Justinstad, PW 39402-4083",1942-12-19 10:16:02,45:a6:67:47:a1:bb,wjohnson@hotmail.com,img/obama.jpg +Karla Mcclure,559-04-7901,45795,"17274 Pierce Drive Suite 233 +Bryanville, IL 81148-4831",1999-06-27 02:33:28,47:0f:8c:fc:4a:0d,eric27@yahoo.com,img/obama.jpg +Nicholas Nunez,383-88-2973,32663,"4045 Taylor Center +West Megan, ND 96599-7070",1948-12-28 22:35:00,82:b7:ff:2b:c1:1d,pperez@gmail.com,img/obama.jpg +Norma Hurley,126-47-5295,54522,"1772 Figueroa Cliffs Apt. 205 +Lake Franklinchester, RI 21942-7059",1936-01-27 23:33:45,2f:a0:e2:0b:8a:97,pamela67@yahoo.com,img/obama.jpg +Larry Lawrence,200-52-0581,35658,"663 Walter View Apt. 539 +Mooreburgh, MO 61328",2000-02-15 17:56:42,7d:a6:42:73:21:e3,bnewton@gmail.com,img/obama.jpg +Cynthia Willis,373-62-1770,89742,"85312 Mcgee Squares Apt. 586 +Audreyville, MS 07479-0628",1927-08-10 03:30:30,2e:34:2c:6a:0e:64,justin65@hotmail.com,img/obama.jpg +Michele Carter,887-07-4131,50079,"081 Rachel Fords +Mooreburgh, WA 39037",1941-11-28 19:26:52,9a:9a:06:00:5f:fc,rickrobinson@gmail.com,img/obama.jpg +Patricia Reynolds,222-39-7508,67705,"522 Emily Road Suite 888 +West Justinstad, NY 67174",2003-02-28 10:31:29,ee:59:ea:91:b3:c4,vramirez@li.com,img/obama.jpg +Jennifer Wilson,556-52-8467,89266,"280 Diaz Rest +Myersland, ND 57999-9707",1993-11-15 16:39:29,a0:11:6b:c8:4d:7a,allison67@robinson-sparks.biz,img/obama.jpg +Anthony Johnson,509-42-7210,83251,"06645 Romero Junctions Apt. 361 +New Melissatown, NE 36576",1962-12-31 01:52:17,d5:da:89:9d:41:ea,wilsontimothy@hogan-reyes.com,img/obama.jpg +Elizabeth Nelson,547-30-2201,39614,"8044 Joseph Canyon +Lake Danaview, MN 65792-3056",1965-04-25 13:42:54,ff:f2:1c:38:f5:30,cbrown@hotmail.com,img/obama.jpg +Denise Barajas,191-69-0966,17758,"16947 Joe Passage +West Danielleville, PR 42876-2830",1966-10-07 17:51:07,82:dc:c3:b6:9e:e6,richardsonjustin@hotmail.com,img/obama.jpg +Jeffrey Le,536-13-0019,70995,"386 Thomas Ferry Suite 383 +Port Austinton, FL 78489-9392",1973-02-27 05:49:10,22:28:3a:a5:8f:0f,john59@weber.biz,img/obama.jpg +Caitlin Franco,200-18-5648,10099,"3483 Sharon Light Suite 342 +Lake Kimberlyhaven, WI 77957",1963-04-17 22:59:25,25:86:a6:53:db:c6,hcontreras@olson.biz,img/obama.jpg +Harold Williams,019-74-3433,73585,"604 Catherine Burgs Apt. 293 +North Jonathan, FL 93330-8966",1964-10-31 17:18:03,28:22:52:0a:d8:82,jilliankane@weber.org,img/obama.jpg +Matthew Campbell,894-76-3470,32187,"4303 Rivas Courts Suite 165 +Port Nicolemouth, FM 68031",1963-08-03 10:45:40,30:58:60:1a:91:c3,zwillis@schultz.com,img/obama.jpg +Erica Powers,018-25-3312,58857,"3650 Hector Branch +Davidmouth, MP 12866-4759",1988-03-23 11:07:40,98:cc:29:ec:35:44,jameswolfe@hotmail.com,img/obama.jpg +Amanda Brown,188-25-2434,77201,"Unit 1451 Box 0315 +DPO AA 91518",1987-02-20 10:11:17,25:6c:61:55:ea:7f,ygilbert@robinson-wagner.org,img/obama.jpg +Bobby Mcclain,114-72-0432,05951,"985 Hudson Knolls +South Alison, OR 23375-8142",1952-01-11 11:36:31,82:6a:ca:16:c4:25,jamie71@hotmail.com,img/obama.jpg +Lauren Dickerson,628-07-2620,56630,"0800 Jennifer Ville +Webermouth, IL 23223-6928",1972-03-17 08:54:31,be:8a:14:31:96:f4,oliviaduncan@yahoo.com,img/obama.jpg +Benjamin Griffin,797-44-3269,38127,"71451 Richard Freeway +West Juliaton, TN 31462",1995-08-05 00:30:56,4b:d1:b9:24:c8:cf,tbutler@hotmail.com,img/obama.jpg +William Nash,581-94-6979,50669,"7962 Ashley Ridge +East Tracey, ND 38755",1984-08-16 22:42:36,f7:0b:cd:80:38:85,millsrobert@wilson-perez.net,img/obama.jpg +Stephen Kelly,364-27-7515,43999,"77020 Liu Mews +West Joshua, CA 37421",1976-02-15 10:15:29,b7:dd:c8:88:49:49,matthew11@yahoo.com,img/obama.jpg +Julie Patel,243-60-3456,27870,"2307 Nunez Manors +Port Carmen, NH 66865",1964-05-19 07:51:03,f3:f2:34:ba:63:c9,tiffanygallagher@hotmail.com,img/obama.jpg +Dustin Nguyen,535-63-9195,83004,"687 Raymond Inlet Apt. 487 +East Deanna, NC 85926-4075",1983-02-01 18:30:16,0d:48:ac:79:39:0b,edward44@holder-austin.com,img/obama.jpg +David Fisher,663-50-3426,83769,"1484 Jessica Well Apt. 139 +Thomasburgh, MH 77618",2013-05-02 11:23:01,0d:ed:eb:16:6a:72,xgreen@byrd.info,img/obama.jpg +Tiffany Norman,464-25-3956,02572,"8267 Matthews Extension +Kelleyshire, WV 41999-8917",1985-12-01 00:32:55,30:c5:8a:30:c5:4a,nicolemartinez@scott.biz,img/obama.jpg +Kristen Brooks,719-26-5963,05479,"93625 Andrew Keys +New Lindseystad, PR 55383-6938",1928-07-12 19:55:46,a7:4e:cb:08:02:2c,jennifersavage@tran.com,img/obama.jpg +Tracy Weeks,120-97-9447,14140,"72893 Brianna Forest +Port Briantown, OH 10883-2020",1947-02-05 09:41:53,31:db:80:d9:c8:a5,varroyo@gmail.com,img/obama.jpg +Brenda Mcclain,391-79-6589,55944,"52664 Sweeney Well Suite 379 +South Michaelburgh, FM 82982-7556",1943-06-03 05:09:03,1b:be:46:59:6a:88,danielhawkins@brewer.info,img/obama.jpg +John Cobb,044-11-9317,23805,"5856 Marcus Shoals +South Michaelland, IL 84691",1936-06-24 00:40:22,15:f5:cb:34:13:a9,terry04@gmail.com,img/obama.jpg +Katie Cox,442-90-6873,82911,"129 Hall Forges +Parkerhaven, GA 30440",1995-05-06 10:48:17,2a:fb:2e:57:19:33,grandolph@spears-peterson.biz,img/obama.jpg +Bonnie Hood,499-55-2636,40388,"047 Patterson Point Suite 999 +Port Diane, FM 14753-6936",2012-05-21 21:59:34,69:dc:0b:61:94:33,gabriellerichard@morris.com,img/obama.jpg +Erika Sellers,282-44-3639,66910,"07028 Cain Plains +Christopherville, TX 73438",1947-09-20 04:06:43,b6:f6:43:3d:22:2b,zcole@hall.com,img/obama.jpg +Melissa Coleman,008-18-5553,12490,"696 Anna Loaf +South Lisa, MO 00372",1923-04-25 20:28:12,66:a1:09:ba:36:c6,kathrynjackson@yahoo.com,img/obama.jpg +Zachary Chavez,543-23-8647,51349,"185 Wanda Parks Apt. 285 +Graychester, MA 49961",2015-08-13 04:21:06,0e:ea:1d:0e:63:b0,elizabethyork@ray.com,img/obama.jpg +William Moon,493-47-0096,73971,"08093 Mercado Light Apt. 417 +Stevenchester, FL 56424-2019",1923-01-13 12:59:45,a8:09:86:d1:89:62,dcantrell@deleon.com,img/obama.jpg +Sabrina Robbins,450-18-6607,28096,"138 Angel Parkways Apt. 215 +East Martin, AK 62246",1942-10-01 19:36:47,08:fe:63:a8:df:f3,alfred84@perez.net,img/obama.jpg +Erin Barber,622-08-5955,79842,"6541 Clark Well +Scottstad, WA 95608",1982-10-19 05:44:34,38:52:ac:ca:f6:d3,whitneycrosby@hotmail.com,img/obama.jpg +Troy Kennedy,450-86-8967,25452,"5274 Erik Junctions +West John, MS 97896",1960-02-13 03:18:05,ca:8e:2f:c4:5c:ba,robin38@davis.net,img/obama.jpg +Kevin Chapman,210-13-1997,64098,"326 Aaron Point Suite 290 +Hicksbury, MI 77335-0650",1986-04-27 22:04:59,0d:85:6a:45:70:a9,jsmith@brady.com,img/obama.jpg +Joanna Douglas,637-30-3622,51169,"PSC 5730, Box 0802 +APO AP 94691-7017",1980-05-05 16:56:28,64:34:96:a1:ea:f4,brayjacob@yahoo.com,img/obama.jpg +Linda Fuller,469-30-9347,26705,"74237 Hunt Stravenue +New Katiemouth, RI 74543",1935-04-11 16:46:21,ed:5a:40:d3:84:85,joshuaclark@yahoo.com,img/obama.jpg +Brittany Acosta,265-66-7848,31045,"81066 Mary Drive Suite 966 +West Susanview, MH 61013-7049",1941-09-14 02:45:51,bf:2d:63:54:a9:0d,jshah@hancock.com,img/obama.jpg +Jennifer Woods,452-42-5272,01051,"PSC 9018, Box 7219 +APO AA 73062",2000-04-09 21:58:10,73:76:44:19:0d:b4,carolscott@gmail.com,img/obama.jpg +Robert Shaw,730-07-1136,06160,"52289 Burgess Plaza Suite 072 +South Sherry, IA 68152",1950-08-02 22:58:39,dd:ff:ad:fd:a2:f3,anthony81@woods.net,img/obama.jpg +Phillip Vasquez,024-76-5975,62429,"1957 Lin Turnpike +East Stephenview, TX 31395",1959-11-26 15:58:21,cd:3c:20:43:5b:75,sherrymoore@ray.com,img/obama.jpg +Kristina Copeland,394-21-8390,01643,"12904 Rebecca Roads Apt. 396 +West Chad, MD 32577",1984-06-20 19:41:37,ce:d0:b8:ed:b3:ea,slarson@yahoo.com,img/obama.jpg +Kelly Fritz,101-25-7602,82262,"575 Kevin Crossing Suite 827 +Burgessbury, AS 13621",1922-04-14 03:46:11,e8:38:38:78:4c:dd,emily31@gmail.com,img/obama.jpg +Terry Adams,672-34-2728,80727,"4567 Crystal Roads Apt. 327 +New David, AR 27018",1950-05-29 05:58:50,ea:2a:8e:19:ca:59,diazdaniel@gmail.com,img/obama.jpg +Monica Rivera,445-16-4191,12408,"70780 Ball Mountain +Edwardmouth, ND 31845",2004-08-20 10:21:42,b0:29:d1:1e:3a:d3,schwartzjoann@sullivan.com,img/obama.jpg +Olivia Mccarthy,107-06-2918,03778,"561 Chandler Vista Suite 925 +Stoutmouth, GA 89181",1940-11-10 22:32:25,d4:8f:07:62:06:f6,taylorjeffery@gmail.com,img/obama.jpg +Cynthia Mckinney,744-44-8745,08641,"3486 Johnson Radial +Port Jennifermouth, FL 56510",2006-03-21 16:52:15,57:03:9e:e0:9d:75,vsmith@west.com,img/obama.jpg +Christina Hendricks,542-36-7780,73072,"USCGC Gordon +FPO AA 94638-9955",1946-07-18 16:32:17,4e:f3:68:d3:ae:57,millerrussell@yahoo.com,img/obama.jpg +Mr. Robert Daniel,195-95-1298,81956,"414 Clarke Manors +Lisaton, ID 92495",1968-07-04 15:53:54,86:ef:e5:6d:ba:47,andrewrobertson@west-perez.org,img/obama.jpg +Michael Mejia,667-94-2230,19997,"07141 Lee Light Apt. 128 +Kenthaven, NE 00231-9526",1985-04-13 20:24:16,b5:ad:ef:44:08:fd,kleinlisa@thomas.com,img/obama.jpg +Jamie Schmidt,239-24-4014,38703,"14076 Jose Ville +North Thomas, ME 47407-2579",1975-08-17 15:38:00,b2:3c:0e:95:85:83,morrisondalton@hotmail.com,img/obama.jpg +Samuel Oneill,562-30-2081,73699,"69821 Smith Well +Timothyville, GA 79237-1921",1929-06-22 09:00:35,f4:ad:84:a1:e7:31,angela10@lopez.info,img/obama.jpg +Molly Carter,220-74-5906,01794,"40773 Robert Ramp +Pachecomouth, CA 71375-0546",1941-11-26 17:50:23,78:72:e1:ee:9f:99,sparksfrank@wilson.net,img/obama.jpg +Richard Molina,206-01-6993,87949,"151 Lewis Cape +Williamburgh, FL 05062",1980-07-15 22:27:00,ab:3f:05:07:41:96,jonesgina@lee.org,img/obama.jpg +Sean Roberts,561-34-2783,46894,"34231 Reynolds Loaf +Makaylaburgh, GA 41238-5174",1929-05-25 03:35:47,b1:bf:a6:f4:9c:9c,isabella50@yahoo.com,img/obama.jpg +Jacob Mayer,880-02-5811,00870,"2344 Marshall Falls Apt. 952 +New Matthewview, NV 44700-3904",1967-07-04 13:46:41,4a:82:2b:0a:5b:96,stevenoconnor@smith.com,img/obama.jpg +Danielle Patterson,005-55-0579,42302,"PSC 0582, Box 0049 +APO AE 41530-5345",1933-05-14 15:25:01,a8:22:b3:70:84:43,bwilliams@schwartz.com,img/obama.jpg +Austin Patterson,014-81-2465,15814,"67671 Andersen Tunnel Suite 848 +Lindafurt, MT 76640",1952-06-17 14:53:52,09:4a:45:7c:67:51,zevans@garcia.com,img/obama.jpg +Denise Bentley,564-39-7308,33588,"53648 Lee Center Apt. 326 +Rachelfurt, VA 42542",1951-05-22 21:02:38,c7:c4:a7:61:cf:60,jvega@rodriguez.org,img/obama.jpg +Daniel Davis,477-18-7449,64428,"3281 Hendricks Unions Apt. 695 +West Stevenmouth, DE 57297",1950-10-26 07:37:55,22:23:b3:1c:be:4a,juliarodriguez@yahoo.com,img/obama.jpg +Joseph Powers,187-51-7424,15476,"Unit 7596 Box 0902 +DPO AE 08434",1921-08-19 00:33:08,bb:97:67:21:b9:1b,meyerssteven@gmail.com,img/obama.jpg +Grace Spencer,859-33-6878,36082,"505 Abbott Camp +Port Katherineton, MH 31567",2008-02-11 10:10:39,a4:05:ef:2d:c4:9d,valerieblack@yahoo.com,img/obama.jpg +John Martinez,404-89-8939,58956,"USS Keith +FPO AE 49874-0962",1991-05-01 22:26:56,ba:89:f6:55:98:e4,zbell@gmail.com,img/obama.jpg +Haley King,795-74-4048,24749,"324 Clements Ports +Pittmanfurt, SC 26797",1924-02-01 02:54:47,38:cf:83:49:89:75,lyonsglenn@yahoo.com,img/obama.jpg +David Winters,135-25-5652,77803,"417 Wilson Hills +South David, MN 30210",1981-10-05 01:33:40,14:41:87:b1:fc:3a,flewis@yahoo.com,img/obama.jpg +Dr. Gregory Stanley PhD,422-09-6847,22760,"80183 Christopher Ferry +Stevenborough, CT 82050",2011-03-19 04:09:27,a4:f3:b4:d7:8c:4b,davismatthew@hotmail.com,img/obama.jpg +Kenneth Cunningham,258-31-0590,54661,"322 Leah Fields Suite 512 +West Herbert, MH 16367-8289",1999-07-09 00:32:04,79:79:af:81:8b:64,xhughes@ross.info,img/obama.jpg +Jennifer Black,481-59-0950,50596,"506 Huber Meadows +East Alicialand, MA 50993",1988-11-11 22:53:40,8a:70:e0:51:d8:df,mpittman@yahoo.com,img/obama.jpg +Michele Mckinney,236-78-3040,50634,"752 Jeffrey Branch Apt. 621 +Johnsonport, CA 08268",1996-09-27 09:36:32,e2:49:e1:06:5d:36,harristammy@gmail.com,img/obama.jpg +Jessica Barnes,720-45-8008,30098,"159 Warner Fork +Robinsonmouth, WA 81857-8194",1952-07-15 07:17:58,be:7a:2d:0f:67:15,ebass@frederick.net,img/obama.jpg +Eric Hopkins,559-58-8561,78101,"122 Kathryn Turnpike Suite 508 +North Mary, AZ 51996-3086",1980-08-02 21:11:26,87:ca:84:f7:4b:9a,jonescynthia@gmail.com,img/obama.jpg +Jeff Taylor,425-86-3747,54729,"3772 Jamie Locks Apt. 063 +Fisherborough, FL 78912-1578",1927-12-07 02:17:54,73:c4:89:a9:5c:3a,phillip55@gmail.com,img/obama.jpg +Chad Ford,764-90-9520,68892,"137 Garza Rue +Melissafurt, MS 05070-6840",1974-08-27 22:22:47,3d:4d:53:32:dc:bc,davidmayer@yahoo.com,img/obama.jpg +Johnny Neal,774-83-6599,64743,"50881 Charles Well Suite 205 +Matthewton, PA 65413",1952-06-07 22:11:48,49:10:01:6f:06:8e,pparrish@vargas.org,img/obama.jpg +Nancy Brooks,870-96-2615,80605,"023 Tyler Flats +New Angel, KY 08167-5996",1994-02-22 04:58:14,f0:f3:fb:69:2c:dc,jonesrobert@hotmail.com,img/obama.jpg +Angela Thomas,608-68-2157,19899,"4507 Marsh Radial Suite 478 +Port Rodney, LA 95556",2000-11-24 21:43:02,5a:3c:f8:09:2d:24,gary07@stark.com,img/obama.jpg +Dillon May,298-57-7872,12879,"01679 Wyatt Port +West Dawn, WY 32887",1981-07-10 12:23:11,7e:40:21:eb:49:9b,nataliewright@brown-smith.com,img/obama.jpg +Heather Hudson,665-08-2653,04061,"3059 Brian Burg +Port Emily, NM 87081-3279",1955-06-30 00:13:45,be:d5:42:c7:a7:57,devin92@gmail.com,img/obama.jpg +Hunter Mcdonald,693-19-5206,02734,"641 Zachary Viaduct Suite 988 +North Madison, NM 19142-0892",1950-07-10 17:13:15,df:28:f2:24:ae:67,scott34@wallace.com,img/obama.jpg +Ryan Holloway,095-57-7768,33349,"27191 Johnson Bypass Suite 791 +North Tonya, AS 02676-0842",1949-03-07 09:13:23,24:ee:c2:83:51:2c,andrea84@campbell.com,img/obama.jpg +Robin Rogers,579-14-2779,85750,"178 Brown Field +Port Joshuaberg, NC 42382",1925-01-30 00:45:13,3b:69:b7:48:5c:4b,robertdominguez@hotmail.com,img/obama.jpg +Jay Marshall,532-05-8693,26971,"12706 Davis Place Suite 840 +East Tracy, AK 90580",2008-10-23 10:29:11,81:be:ce:13:e6:a0,martinezjoyce@hotmail.com,img/obama.jpg +Gregory Glenn,648-79-6018,42577,"49249 Morrison Meadow +Deannaborough, NJ 50158-8505",1929-09-03 02:46:18,e5:e4:09:eb:bc:68,katie73@palmer.com,img/obama.jpg +Jamie Rivas,702-40-8095,53544,"187 Samantha Springs +South Paul, MI 71335-1069",1939-01-08 01:50:38,38:54:4b:13:e3:9f,keith38@yahoo.com,img/obama.jpg +James Brown,444-90-7179,54594,"5101 Justin Plains Suite 630 +West Evan, TX 89525-7860",2001-09-28 21:08:47,c7:c0:83:9f:ee:f1,veronica56@duran.com,img/obama.jpg +Steven Armstrong,047-81-4058,33832,"516 Jordan Fork Apt. 127 +Kellerfurt, IA 24485-8018",1968-05-17 21:22:26,e5:6c:b0:75:29:f7,schmidtlauren@yahoo.com,img/obama.jpg +Daniel Crawford,753-87-3629,93977,"85562 Daniel Gateway +Wisemouth, KS 74546-0541",2013-05-05 05:05:13,8b:3a:39:5a:25:ae,vtyler@gmail.com,img/obama.jpg +Madison Fox DDS,803-01-4719,91877,"00102 Brianna Avenue +North Josephport, CT 00446-1184",2008-08-17 16:55:15,5f:a1:9c:e9:b8:6d,christopher29@hotmail.com,img/obama.jpg +Corey Smith,245-48-4167,79139,"USNS Smith +FPO AA 13267",2009-06-25 07:31:39,e5:a5:d6:85:3b:e0,jweaver@hotmail.com,img/obama.jpg +Connie Fletcher,240-47-8203,90162,"034 Levy Locks +Wrightview, WY 58688",1993-12-01 16:07:27,4d:b8:16:72:67:1d,michael00@wilson.org,img/obama.jpg +Michael Mcguire,368-96-4045,65136,"080 Turner Circle +Millerfort, GU 67777-9051",1983-08-24 11:18:20,8a:fd:0f:e6:0a:50,jonathan90@yahoo.com,img/obama.jpg +Sarah Berry,411-37-5612,90198,"462 Elizabeth Cliffs Apt. 300 +New Angelaport, CA 51564",1947-07-06 20:58:22,21:6c:d7:35:be:fb,cjames@gmail.com,img/obama.jpg +Janice Wright MD,852-23-4476,26036,"532 Roth Forest +Melanieville, MA 71653",1962-11-23 02:56:16,4b:c0:88:0b:bc:9f,ryangrant@yahoo.com,img/obama.jpg +Steven Bond PhD,875-78-2012,37872,"1268 Farmer Crest Apt. 931 +Carlside, LA 45475-0702",1988-03-19 08:26:04,1d:df:a9:8d:d9:ba,xmcintosh@brewer-lawrence.net,img/obama.jpg +Bianca Rogers,522-18-0387,28529,"637 Joseph Port Suite 585 +Youngland, VI 33526-2229",1964-12-23 10:55:47,a1:e5:c8:ca:ce:92,jamiebailey@smith.info,img/obama.jpg +Samantha Wilson,407-23-7958,03279,"Unit 1659 Box 1048 +DPO AA 34527",1966-06-25 22:25:14,17:fb:c6:07:d4:90,katherineshaw@gmail.com,img/obama.jpg +Mark Mills,659-56-6575,24430,"96812 Brian Court Suite 270 +Sandraside, FM 19703-5421",1991-12-10 15:22:50,87:9d:23:a1:67:d6,smithmelinda@burns.com,img/obama.jpg +Michael Smith,758-12-7960,91297,"PSC 9715, Box 9085 +APO AP 48459",1966-01-16 16:16:26,f8:62:e8:3a:cb:95,mendozamikayla@hull.com,img/obama.jpg +Jesse Cisneros,445-44-6618,03605,"16655 Danielle Trace +Jameschester, MP 36796",1982-11-24 20:05:31,ca:c9:98:b9:61:08,longbradley@hotmail.com,img/obama.jpg +James Cook,486-51-2274,60870,"62460 Chelsea Well +Richview, PW 12341-1825",1922-07-23 20:38:14,3d:2a:67:d1:7c:39,mary56@poole.biz,img/obama.jpg +Scott Flynn,195-59-3405,17914,"732 Alvarez Trace +Shieldsfurt, NH 75976-7082",1919-03-28 19:36:16,a3:bf:31:ae:3d:fa,sharon68@gmail.com,img/obama.jpg +Amy Thomas,247-20-7072,38597,"5021 Murray Inlet Apt. 899 +Lake Julia, OH 12738",2015-02-21 13:02:42,ce:43:6f:05:3d:7f,melissa83@gmail.com,img/obama.jpg +Chloe Warren,313-04-0780,75722,"6002 Cordova Bridge Apt. 198 +Codybury, NM 02149-3821",1944-03-12 06:58:54,0d:59:97:3e:3a:c7,coxkeith@bell.com,img/obama.jpg +William Patterson,122-36-9788,79766,"PSC 4263, Box 6743 +APO AE 88625-6329",1991-05-21 10:25:05,7c:3b:43:ed:17:7b,grayholly@deleon.com,img/obama.jpg +Jamie Valencia,115-30-0459,34050,"209 Susan Neck +Murrayfurt, NJ 95311",1975-10-25 10:25:47,ae:b8:fb:ed:d3:18,amy30@lopez.biz,img/obama.jpg +Jessica Moore,491-33-5560,27218,"114 Parrish Falls Apt. 106 +Kurtstad, ME 26844-7097",1969-12-13 14:47:11,f2:f5:a0:fe:df:9b,lisa68@gonzales.info,img/obama.jpg +Paul Jackson,895-13-3276,45766,"78306 Johnson Dam Suite 602 +North Matthew, OR 21122-6762",2005-04-10 01:53:13,3d:52:aa:c7:bd:53,gregory45@hotmail.com,img/obama.jpg +Brendan Nguyen,724-86-2874,36450,"Unit 8025 Box 8840 +DPO AA 66291-5941",1922-10-16 11:32:36,98:df:19:b2:4c:bb,eharper@richards-ayers.com,img/obama.jpg +Timothy Stone,391-43-0901,35901,"533 Wallace Springs Apt. 639 +Kimstad, MS 27359",2001-04-08 21:24:50,39:a8:41:c3:fd:b8,caseymaurice@whitaker-bowman.com,img/obama.jpg +Brett Garcia,231-28-7986,67285,"627 Rodriguez Viaduct +Port Michaelland, DE 46500-3375",1938-04-03 12:21:55,e7:84:a2:ba:b2:a2,kpeters@moss.com,img/obama.jpg +Daniel Martinez,791-44-7241,58341,"596 Sandra Rest +Shannonberg, KS 95334-7774",1966-05-03 13:31:36,39:d5:49:d4:24:c7,iromero@dixon.com,img/obama.jpg +Edward Weiss,234-84-9562,49464,"33070 Justin Mount Suite 678 +East Katiestad, MI 47122-3938",1977-02-11 20:43:53,f8:58:66:94:ee:9c,pauljacob@yahoo.com,img/obama.jpg +Francisco Vaughn,036-13-3362,56430,"71354 Sheena Rapid Suite 943 +Aguilarmouth, LA 98406-5296",1999-01-21 22:43:53,b0:18:c3:f9:e4:e2,phuff@gonzales-morris.net,img/obama.jpg +Jose Hernandez,447-97-2207,93130,"433 Joshua Lakes Suite 774 +East Christine, NM 05807",1946-06-21 11:34:20,4f:63:4b:d4:21:32,marksimpson@carrillo.info,img/obama.jpg +Justin Kane,595-23-1685,90378,"186 Jones Gardens +Franklinfort, MD 02168",1985-04-01 10:22:33,65:60:34:58:d6:57,kalexander@stewart.info,img/obama.jpg +Audrey Rogers,789-96-6821,51278,"4171 Timothy Mountain +Melaniestad, ID 82666-5356",1936-09-21 22:20:59,9c:72:14:5a:7d:b6,khess@gmail.com,img/obama.jpg +Scott Morgan,860-19-6599,88047,"92572 Alison Plain Suite 748 +Lake Stephanie, TX 65405-7707",1979-10-21 18:20:15,af:c3:24:c7:e8:4c,carol17@yahoo.com,img/obama.jpg +Karen Allen,159-53-1124,13353,"507 Avila Mountains Suite 626 +Neilberg, UT 35723",1942-12-16 04:54:04,e8:50:bb:bf:a7:fb,kathrynhines@pierce.com,img/obama.jpg +Scott Barnes,845-44-1639,81458,"2775 Roberts Alley Apt. 611 +North Joshua, TN 98093-6021",1931-03-21 21:54:26,b1:a1:77:74:78:68,tonya30@gmail.com,img/obama.jpg +Heather Reyes,071-66-8385,17275,"8163 David Dale +Jimenezfort, AL 45421-0521",2010-08-16 20:12:18,a7:d5:70:57:3b:20,sherryfrench@yahoo.com,img/obama.jpg +Tammy Mcclain,127-52-9306,23616,"7432 Mitchell Circles Suite 723 +North Michael, NH 20050-9359",1931-10-26 05:14:56,6a:38:37:76:da:94,heather15@yahoo.com,img/obama.jpg +Shannon Keith,866-96-8334,43230,"573 Richards Road +West Patrick, FL 94785-1572",1919-12-29 17:29:23,44:08:15:85:82:a3,danieljustin@hotmail.com,img/obama.jpg +Justin Peters,601-48-6066,11789,"968 Heather Trace +Erinstad, MT 67715-6435",1977-02-25 00:19:42,41:5a:e4:d9:67:18,patricia13@vazquez.biz,img/obama.jpg +Todd Garcia,047-19-3598,40930,"23072 Shaw Prairie +Lake Kevinchester, ME 50100-8718",1925-06-05 15:09:27,68:66:79:11:86:0f,sarahmartinez@scott-downs.com,img/obama.jpg +Daniel Jackson,616-48-1484,19082,"800 Christopher Hill Suite 362 +Lake Barbaratown, NM 11002-8556",1997-08-17 09:21:15,9d:a2:b1:ec:67:9b,morganmallory@brown.biz,img/obama.jpg +Brooke Davis,171-54-6073,34713,"PSC 0401, Box 9348 +APO AP 77966-6317",1921-09-09 08:24:54,6e:dd:65:e1:b5:1f,cortezjill@yahoo.com,img/obama.jpg +Jason Jackson,824-75-0020,99875,"019 Parsons Union +Elizabethport, GU 59770",1970-12-09 23:07:18,a4:1c:7f:0d:8b:6a,elainemiller@brown.com,img/obama.jpg +Julie Duarte,802-15-8637,52722,"5660 Gutierrez Walks Suite 967 +North Richard, KY 24696",2016-09-23 03:08:54,17:a1:ee:67:0d:74,ahill@gmail.com,img/obama.jpg +Lisa Bowman,738-79-6501,65212,"3256 Jennifer Cove +Port Robert, HI 86157",1951-12-17 16:23:01,cd:84:25:de:70:d7,otaylor@yahoo.com,img/obama.jpg +Vanessa Hodge,188-77-5375,32211,"PSC 5774, Box 3590 +APO AA 23925",1966-06-23 12:47:20,b4:52:65:45:a2:89,mooreandrew@yahoo.com,img/obama.jpg +Sheila Daniels,350-36-6863,80101,"84268 Tyler Row +Russellport, NE 40302",2017-03-28 21:06:45,86:33:91:65:80:bd,snowjessica@gutierrez.org,img/obama.jpg +Cory Thomas,054-15-5708,37908,"USNS Fry +FPO AE 78456-0553",2010-02-09 15:31:09,d5:3f:3a:5e:32:da,sheila79@yahoo.com,img/obama.jpg +Stephanie Garcia,396-12-0239,36103,"841 Duarte Freeway Apt. 923 +South Tracy, ME 68564",1926-12-20 11:50:19,a5:d3:c2:72:45:be,ortizbrian@rogers.net,img/obama.jpg +Nathan Rodriguez,826-59-5799,99820,"26886 Williams Stream Apt. 876 +Jonesland, WY 88920-8774",1935-05-05 08:29:57,55:1f:3d:5e:a3:10,stephaniebell@hotmail.com,img/obama.jpg +Amy Sandoval,380-40-9315,83269,"USCGC Callahan +FPO AP 83184-0473",1992-02-24 08:51:04,ce:32:52:86:f1:2e,brianpayne@yahoo.com,img/obama.jpg +Carolyn Mcdonald,506-82-1798,34329,"59974 Holly Drives +Cochranbury, ME 74583",1984-02-11 06:06:32,63:8d:8c:e7:1b:64,stricklandkimberly@gross.info,img/obama.jpg +Joseph Peterson,760-80-5957,55177,"209 Griffin Row Suite 812 +Port Jeremy, FM 93879",1952-01-24 20:52:45,69:1e:de:aa:2d:5f,april17@young.com,img/obama.jpg +Jacqueline Pratt,773-87-0248,86908,"USNV Spencer +FPO AE 83119-4900",1948-09-09 13:11:02,55:02:93:f6:80:f0,norrisbianca@garcia.com,img/obama.jpg +Linda Ross,430-21-5018,57576,"USS Beasley +FPO AE 26390",1971-08-03 15:27:00,45:ee:64:9c:53:66,brooksjesus@boyd-mann.net,img/obama.jpg +Cheryl Norton,103-21-2517,18461,"33840 Sherry Street +North Barry, MI 79400-6387",1966-04-12 22:21:18,40:23:83:20:73:f0,markfrench@jones-evans.biz,img/obama.jpg +Danielle Blankenship,540-65-4327,46356,"9449 Henderson Vista +Lake Susanfort, WY 71699",1981-10-15 13:59:18,1a:46:f4:b0:73:f3,jennifer13@gmail.com,img/obama.jpg +Nicole Clay,625-64-3142,23236,"898 Taylor Oval Apt. 766 +New Alexandra, CO 65445-3152",1956-02-03 00:09:34,45:5d:fd:5e:22:1e,micheal99@massey.com,img/obama.jpg +Ashley Johnson,298-80-5081,98117,"23965 Silva Walk Suite 678 +South Jasminehaven, LA 36814-7482",1918-11-16 03:33:35,93:f4:f8:4b:41:9c,justinjenkins@gmail.com,img/obama.jpg +Dakota Cameron,536-83-2270,18912,"Unit 5403 Box 2035 +DPO AE 50112",1927-11-05 13:09:46,71:ff:93:89:9d:d9,diazgloria@gmail.com,img/obama.jpg +Timothy Melendez,887-79-8809,11885,"84489 Lin Meadows Apt. 845 +West Paulburgh, ME 47930",1969-10-20 11:31:11,c0:dd:61:4f:3f:ef,melendezchristy@perez.com,img/obama.jpg +Jordan Holt,561-10-4908,93477,"8668 Russell Inlet Suite 982 +Perezport, VA 03867-9080",1952-11-26 22:36:31,62:8b:4b:6e:02:07,stephanie86@yahoo.com,img/obama.jpg +Zachary Roberson,119-84-2809,37198,"996 Victoria Fords Apt. 327 +North Micheleville, VI 76312-3417",1953-07-19 01:56:13,cb:81:88:d4:f1:a8,rosstimothy@gmail.com,img/obama.jpg +Margaret Potts,847-20-2041,59518,"451 Gilmore Lane +New Karen, WV 74970",1950-06-23 10:49:10,fc:4a:df:fa:1b:25,abigailrivera@yahoo.com,img/obama.jpg +Matthew Holt,723-19-2456,07037,"697 Ashley Divide Apt. 760 +South Morgan, SC 09108",1946-09-11 19:10:56,74:3d:f5:17:3a:8d,qodom@gmail.com,img/obama.jpg +Derek Blake,161-70-6267,61436,"427 Jill Dam Suite 553 +Buckleyberg, PW 04603-4591",1959-03-18 20:14:39,7a:9b:9b:42:7b:e5,timothy20@perez.com,img/obama.jpg +Jason Howard,465-16-6280,16496,"743 Mack Trail Apt. 414 +New Joseph, WI 14865-6380",1929-08-09 04:29:43,7e:37:d6:9f:7f:cf,swansonmadison@cervantes.com,img/obama.jpg +Andrew Johnson,027-06-9088,60605,"PSC 0835, Box 8182 +APO AP 92133",1919-02-21 15:15:34,55:3f:17:31:be:10,romerokimberly@larsen-ritter.com,img/obama.jpg +Ricky Anderson,500-38-5157,60610,"46269 Scott Groves Apt. 734 +New Crystal, IL 42523-0213",1919-09-20 02:28:26,f3:ca:94:ee:26:59,rogergraham@lane-kim.com,img/obama.jpg +Marcus Thomas,739-24-0787,49591,"USS Adams +FPO AA 02247",1924-04-17 22:26:58,ab:56:a3:25:21:43,georgewhitaker@yahoo.com,img/obama.jpg +Amy Patterson,091-22-3459,48311,"76222 Richard Roads +Garciaview, PR 95951",1959-12-22 10:43:15,e7:7c:9a:55:d4:f2,zwallace@yahoo.com,img/obama.jpg +Amanda Young,160-40-3207,78624,"1104 Ryan Greens Suite 534 +East Hannah, NV 80783-0639",2001-02-16 17:37:03,ab:d7:3c:da:a3:b7,qbarr@hobbs-wilson.com,img/obama.jpg +Felicia Gonzalez,503-97-2334,93857,"9512 William Viaduct +East Emilyfurt, CA 27735",1917-06-02 12:25:24,20:4b:57:da:83:57,hwoodard@clay.com,img/obama.jpg +Zachary Alexander,823-28-7367,09676,"2172 Aimee Crossing +Davisberg, OK 43619",2008-04-26 22:26:39,ac:ed:6f:d5:5d:89,davidporter@ramirez-wilson.com,img/obama.jpg +Calvin Robinson,045-35-1064,85868,"2408 Tiffany Walk Suite 693 +Kendraview, MI 34839-8684",1998-05-01 08:15:28,e2:e9:e4:be:4b:ed,russellsharon@price-gutierrez.com,img/obama.jpg +Ryan Dixon,178-18-0671,22482,"98570 Cervantes Roads +Nicoleville, IA 92970-2134",1940-12-12 05:14:33,aa:66:11:1e:53:de,megan63@castillo.net,img/obama.jpg +Chloe Mitchell,503-30-0367,48276,"022 Crawford Island +Port Zachary, MO 09404",1970-02-05 22:34:20,85:d5:1e:c3:89:e6,davidsonkurt@yahoo.com,img/obama.jpg +Corey Holmes,784-77-1129,35682,"1056 Christopher Green Apt. 026 +Michaelton, MN 81554-9568",2015-03-03 15:18:43,92:50:b5:7c:a9:45,shull@gmail.com,img/obama.jpg +Larry Green,448-09-1607,21745,"637 Mcdonald Route Suite 712 +Kerrifurt, CA 22307-9202",1940-11-26 16:56:27,72:76:38:87:f9:c4,iankhan@smith.info,img/obama.jpg +Timothy Hill,372-45-8164,17313,"0365 Ellis Port Suite 768 +Hardybury, MP 54552",1965-04-22 07:53:02,fc:1b:52:17:da:db,shannon19@case.info,img/obama.jpg +Lauren Davis,664-14-6837,42566,"196 Jonathan Way Apt. 922 +West Kimberlymouth, MH 65105-1229",1960-02-08 11:35:01,4d:12:9f:68:34:ef,bullockomar@lambert.info,img/obama.jpg +William Caldwell,083-89-5467,68667,"8823 Edwards Burg Suite 621 +Lake Erikaport, WY 55132-4586",1920-05-26 21:47:14,de:9c:b9:5b:ae:0a,sarah39@hall-carrillo.com,img/obama.jpg +Lori Hill,294-35-7137,82254,"284 Allen Junction Apt. 163 +Alexanderview, NE 62070",2006-10-09 19:58:16,0f:4c:14:41:1e:3f,michelleduncan@miller.com,img/obama.jpg +Renee Collins,005-20-1989,32384,"USS Elliott +FPO AP 12657",1984-03-12 10:48:20,cc:a8:ee:6a:22:75,richardwolf@hotmail.com,img/obama.jpg +Alexander Lopez,225-53-6069,21886,"638 Friedman Grove Suite 739 +Pagemouth, NM 18193-2718",1954-09-15 09:08:49,72:95:09:4d:d2:45,phayes@hotmail.com,img/obama.jpg +Jennifer Flores,002-95-8291,50888,"6800 Foster Trail +Mathewhaven, TN 46295",1983-01-23 02:59:57,d5:a5:50:35:5b:03,peter76@hotmail.com,img/obama.jpg +Patricia Weaver,689-98-8223,93991,"0043 Murphy Crescent +Port Peter, OK 87748",1962-07-04 19:29:52,e7:51:d6:2e:55:82,nelsonrichard@yahoo.com,img/obama.jpg +Patricia Gonzalez,865-73-1316,55482,"Unit 6697 Box 9977 +DPO AA 13688",2012-04-26 00:28:43,f1:b3:22:10:80:14,rleonard@brady.com,img/obama.jpg +Ryan Reid,024-17-1187,53479,"780 Reed Fork +Port Anthony, MA 89241-9595",1930-01-18 15:59:03,3a:cd:d5:2c:26:00,wilsoncourtney@gmail.com,img/obama.jpg +Andrew Stevenson,244-72-4497,46520,"41038 Nichols Street +Lake Christianville, PA 24673",2006-01-09 15:26:43,63:f0:86:ef:af:bb,harveyjames@hotmail.com,img/obama.jpg +Jennifer Johnson,610-78-6202,23836,"427 Stephens Branch Suite 568 +Lake Christopher, IN 51330",1988-06-22 18:39:36,03:39:eb:59:d4:22,lukepotts@wilson.com,img/obama.jpg +Chad Sanchez,814-68-8325,45734,"7391 Benjamin Spring Suite 701 +North Mariaburgh, IA 62635-5351",1981-07-23 23:24:17,5d:3d:a9:72:0c:89,andrearowe@yahoo.com,img/obama.jpg +Rebecca Turner,415-97-7017,26893,"4863 Mitchell Road +Brownstad, VI 30513-6793",1994-10-20 14:49:17,b3:b1:25:6c:1a:6b,zturner@yahoo.com,img/obama.jpg +Rodney Williams,631-15-3025,82229,"4436 Porter Summit +Lake Steven, IA 44500",1918-08-01 18:10:41,85:74:42:52:68:82,millerchristopher@yahoo.com,img/obama.jpg +Sandra Bond,126-16-9478,95551,"313 Courtney Islands Suite 767 +West Kevinshire, SC 78587-3950",1942-04-04 18:52:24,72:11:94:48:06:b3,griffincynthia@gmail.com,img/obama.jpg +Melissa Collins,190-28-2065,10176,"USCGC Bradford +FPO AP 72543-9251",1955-06-29 17:08:04,66:59:59:25:9d:52,mark63@yahoo.com,img/obama.jpg +Yvette Hancock,461-20-0171,83112,"7760 Wallace Estate Suite 713 +South Patrick, PR 14943-8591",1933-03-17 21:23:28,b4:62:4f:75:fb:5a,markchapman@ingram.com,img/obama.jpg +Nathaniel Patterson,432-05-2443,07802,"11549 Joseph Ports Apt. 949 +Lake Danielport, RI 68283",1938-03-02 08:02:19,3d:14:2f:88:e8:88,robertherrera@hotmail.com,img/obama.jpg +Dr. Kevin Thompson,274-38-7752,63179,"3216 John Cliff +Jessemouth, DC 97114",1960-12-07 09:05:09,75:23:b3:ba:80:09,zbuckley@boyle.com,img/obama.jpg +Jeff Boyd,372-63-5831,08200,"87833 Jesse Turnpike +South Russell, AL 28862",1965-05-28 06:53:09,07:53:2d:88:6c:e7,melissajohnson@clarke.biz,img/obama.jpg +David Sanders,597-31-7683,11154,"7672 Stephenson Route +Fullerborough, FM 46793",2006-03-06 09:14:25,10:02:83:cc:6f:54,rosemiranda@washington.net,img/obama.jpg +Amy Valenzuela,340-12-6402,18707,"904 Elliott Bridge +Jennyfurt, NY 68939-9498",1985-05-13 21:33:15,77:d7:bd:74:50:4b,raymond40@cook.com,img/obama.jpg +Kenneth Russell,752-02-4556,75768,"64283 Cox Junctions +North Kevin, TX 22285",1927-08-18 00:10:07,a4:a3:3c:e7:72:e8,baileyrobert@yahoo.com,img/obama.jpg +Kristen Boyle,747-77-1968,42319,"6946 Jensen Station +Lovechester, OK 43285",2003-03-26 03:14:12,bc:11:dc:2b:3f:2c,cynthia61@gmail.com,img/obama.jpg +Charles Santiago,051-96-4168,02214,"56218 Donald Light +Melanieshire, SD 76782",1917-10-06 23:27:08,97:af:35:85:1a:92,bishopgregory@strickland.com,img/obama.jpg +Angela Duke,532-65-6483,31601,"PSC 4254, Box 2695 +APO AA 54090",1984-03-31 00:29:51,5f:1e:13:da:42:c6,nschultz@yahoo.com,img/obama.jpg +Ann Turner,732-75-4347,74806,"4418 Kennedy Meadows Apt. 134 +North Victorside, NM 67904-1959",2003-04-24 23:20:53,52:e9:7a:f4:ca:7c,kendragentry@hotmail.com,img/obama.jpg +Randall Herman,549-40-9156,69310,"87262 Ray Green Apt. 536 +Lake Sharon, VA 83926-4921",1946-12-15 16:34:25,64:20:48:f9:e1:74,dbaxter@hotmail.com,img/obama.jpg +Elizabeth Todd,792-50-2514,06606,"Unit 5686 Box 8472 +DPO AE 86165-9354",1986-07-26 23:51:43,cb:57:92:0b:41:e1,craigcollins@harris.info,img/obama.jpg +Kayla Raymond,496-42-1970,15164,"020 Wilson Orchard Suite 502 +North Zachary, MS 75825",1952-04-03 05:27:22,68:2f:89:9b:db:71,randysimpson@martinez.com,img/obama.jpg +Jacob Harrison,776-09-9456,55620,"5146 Best Port +North Melissaville, GA 60587-4870",1990-01-29 22:41:14,1d:6f:06:3a:bc:cb,samantha45@yahoo.com,img/obama.jpg +Abigail Clark,016-34-9661,02869,"930 Miguel Shore Suite 300 +North Aliciashire, IA 61558",1939-06-21 05:22:15,63:d5:44:2c:7f:1d,escott@gmail.com,img/obama.jpg +Eric Nunez,857-20-2679,10678,"290 Patricia Valley +Michaelfurt, MS 82183",1928-11-20 02:25:27,00:4f:f9:e4:f1:d8,coxtracy@spencer.com,img/obama.jpg +James Fisher,285-65-6320,93209,"62681 Thomas Bypass Apt. 750 +Thomasborough, TN 62858",1917-10-31 16:23:44,a4:5e:e6:89:6e:6a,robinburke@gmail.com,img/obama.jpg +Julie Velasquez,289-77-4503,07801,"17553 Sherry Highway +Garyborough, WV 58185",1958-05-09 17:24:40,dc:1c:3b:45:e3:91,pmoore@carrillo.com,img/obama.jpg +Barbara Evans,148-75-6089,96993,"69855 Clark Knoll +Davisside, NE 92423-5996",2001-02-07 02:46:27,8d:3f:2d:89:0f:d2,lydia54@brown.com,img/obama.jpg +Samuel Collins,369-42-8246,84278,"PSC 9107, Box 7524 +APO AP 59534-7450",1923-12-31 02:25:12,22:10:a2:b3:07:48,donna20@barajas-west.com,img/obama.jpg +Charles Salazar,781-82-5204,14257,"Unit 5915 Box 2219 +DPO AP 25734",1924-11-12 19:03:42,ef:c2:2d:1a:96:cb,youngkevin@yahoo.com,img/obama.jpg +Patrick Williams,567-91-3154,89544,"6560 Vaughn Club Apt. 035 +Buckleyland, MD 36346-7736",1970-09-11 07:21:06,3e:41:18:2d:de:45,jamesowens@vega.com,img/obama.jpg +Maria Mayo,572-12-1935,41327,"37028 Jonathan Plains +Rebeccamouth, TN 80930-6883",2005-03-24 04:43:48,52:bf:51:d6:57:de,morrisonrodney@allen.com,img/obama.jpg +Joanne Martin,826-20-3490,99137,"590 Carrillo Grove +New Christopher, MI 68125-7162",1941-01-01 18:03:21,66:7b:ff:32:08:cc,julie03@frank.com,img/obama.jpg +David Cannon,125-20-5576,63054,"406 Harris Forges +East Elizabethland, TN 72737-1693",1987-06-25 01:39:31,ee:df:57:5a:60:d3,pattersoncynthia@wilson.com,img/obama.jpg +Kenneth Williams,562-29-2125,40961,"64788 Morgan Well +West Gregory, OH 77161-3452",1951-02-20 04:22:00,30:62:e7:80:2f:5c,hfisher@hotmail.com,img/obama.jpg +Cheryl Williams,119-14-9336,32288,"3714 Miller Ville +Taylormouth, AZ 77927-9324",1954-09-22 02:42:34,d7:31:d7:75:e5:fd,keyamanda@bright.com,img/obama.jpg +Lindsay Peterson,185-12-9613,76817,"510 Huang Motorway +New Michael, FL 09492",2006-12-28 10:04:02,f7:3b:4c:40:a0:58,chelseamartinez@harris-marshall.com,img/obama.jpg +Yesenia Pope,847-10-7543,36612,"Unit 8065 Box 5877 +DPO AE 79685-7747",1987-05-15 06:19:14,35:43:c4:b4:80:62,ysuarez@gmail.com,img/obama.jpg +Aaron Lewis,854-79-8631,63585,"379 Katie Ridges Apt. 090 +Richardside, VA 53356",1955-07-17 14:54:18,02:ec:d7:eb:6d:5a,paul33@hotmail.com,img/obama.jpg +William Malone,257-31-9615,87826,"7540 Pace Islands Suite 522 +New Rebecca, VA 49588-9767",1956-01-24 17:21:02,69:71:ff:1e:63:bf,beckyallen@erickson.com,img/obama.jpg +Katrina Holloway,896-24-5628,65707,"4546 Hubbard Shoals +South Theresa, ND 64725-5458",1957-05-23 03:22:16,00:ad:d7:c2:38:89,michaelthomas@walters-williams.com,img/obama.jpg +Steven Henson,592-78-0056,78097,"4815 Lopez Station Apt. 823 +South Amber, VA 64202-5917",1948-08-29 15:20:14,05:18:70:ad:b5:10,bryanthannah@gmail.com,img/obama.jpg +Anna Ball,866-51-7415,59692,"4809 Thompson Mountains Apt. 209 +Sallystad, MT 05279",1965-05-06 12:50:38,c3:e2:d4:c0:0b:7a,anthonyhumphrey@hotmail.com,img/obama.jpg +Brenda Chavez MD,307-04-5488,11048,"63232 Eric Highway Apt. 674 +West Eric, MS 24974-0403",2011-12-08 00:07:06,42:d7:86:67:f6:fe,bucksara@wood.com,img/obama.jpg +Ethan Ward,881-74-6943,49257,"544 Davis Manor Suite 292 +Benjaminshire, IA 08220",2004-12-20 16:13:47,f5:21:dd:ce:bd:54,woodtroy@gomez.com,img/obama.jpg +Katherine Wallace,475-20-7249,55374,"40011 Jones Key +Jasonville, MI 08335-1631",1937-02-16 15:06:50,8a:24:43:31:eb:c0,pcarter@stanley-mcguire.org,img/obama.jpg +Gregory Moore,232-47-5800,82985,"8502 Weeks Isle +West Mistyburgh, IL 67925",1920-11-09 01:06:04,9a:06:8f:42:c6:39,erica08@yahoo.com,img/obama.jpg +Jeffrey Olson,071-46-8495,39983,"8445 Angela Union +West Evelyn, VI 82562-7537",1984-08-10 06:14:43,b0:7f:cd:1b:6f:0b,jlam@hotmail.com,img/obama.jpg +Gloria Blair,195-85-4978,83880,"17541 Santana Harbors Suite 775 +East Johnberg, AR 27729",1969-08-03 08:12:30,6d:59:dd:af:8b:5c,taylorfranklin@hotmail.com,img/obama.jpg +Daniel Hudson,194-42-9703,98148,"85718 Branch Streets +West Tyronehaven, VI 05524-0869",1931-01-03 15:05:32,ad:66:0f:94:02:f6,jameserin@evans.com,img/obama.jpg +Diana Lamb,413-85-6141,85587,"491 Katelyn Expressway +East Jason, PW 62021",1930-12-26 18:07:37,08:c3:9c:2f:69:92,cameronwhite@fox.biz,img/obama.jpg +Larry Hampton,065-78-6219,72289,"848 Hancock Via +Anthonyview, WA 75072",1990-03-01 06:55:04,ee:32:e1:b6:09:f3,ashley46@peterson.com,img/obama.jpg +Melanie Booth,556-42-1088,37519,"36598 Tammy Locks Apt. 553 +Silvafort, PR 79866",1979-01-01 12:38:03,3d:28:49:fb:6e:03,kevinlara@hotmail.com,img/obama.jpg +Lori Brown,477-09-0314,76220,"3979 Colleen Ville +East Stephaniemouth, IA 84147",2011-09-18 05:09:41,dc:b9:99:9b:ef:9b,thomasjoseph@roberts-becker.net,img/obama.jpg +Aaron Brown,239-93-1459,69735,"7004 Williams Extension +West Sandra, NM 77275",1965-08-12 11:08:38,d0:88:ff:5d:13:fc,ucasey@white.com,img/obama.jpg +Debra Rivera,757-92-5754,02164,"92304 Johnson Rue +Pierceburgh, NV 27042-2639",1952-06-12 20:56:07,7d:7f:27:af:2c:30,francisco20@hotmail.com,img/obama.jpg +Andrea Glenn,434-95-6040,51116,"986 Hernandez Fall +Davisbury, NE 57136-1090",1995-01-01 10:48:45,02:0c:2d:64:cf:be,michelle83@yahoo.com,img/obama.jpg +Danielle Warren DVM,264-26-4674,17920,"5434 Christopher Locks Apt. 606 +Andrewborough, DC 51179",1995-09-19 12:51:53,e1:c5:e6:79:91:0f,rcastillo@gmail.com,img/obama.jpg +Brendan Hampton,374-22-6814,67016,"98366 Baker Drives +New Amberberg, TX 29389-1854",1992-04-30 05:26:44,f1:8f:c9:cc:13:5b,zachary57@castaneda-woods.com,img/obama.jpg +Ethan Owens,431-07-0528,01009,"258 Amanda Turnpike +South Steven, DE 01832",1976-01-01 10:30:22,d8:11:1a:ba:22:3d,hbond@king.com,img/obama.jpg +Matthew Nielsen,732-27-0496,91707,"50339 Gonzalez Rest +New Molly, NV 99758",1977-10-20 21:52:31,cc:53:d0:6e:1e:4f,kent32@swanson.com,img/obama.jpg +Jordan Buck,599-82-4030,29176,"797 Cook Streets +New Ericstad, AL 03186-8986",1998-01-01 21:34:05,82:79:e0:61:e3:9e,clittle@torres.com,img/obama.jpg +Wendy Lopez,614-43-5227,15717,"4540 Harris Port Suite 197 +New Michael, NJ 43808-8015",1954-04-04 08:19:00,f2:67:75:96:cf:83,jasminesmith@evans-green.com,img/obama.jpg +Karla Morris,751-03-5331,84467,"247 Turner Club Apt. 455 +Sheilashire, MO 74149",1927-01-29 01:07:55,18:2c:c4:64:55:03,ebenson@yahoo.com,img/obama.jpg +Cynthia Collins,884-96-6150,06028,"71637 Sonya Burgs Apt. 828 +East Daniel, HI 24229-1303",1957-07-11 02:47:28,07:18:ae:93:99:6b,kristinmoore@hotmail.com,img/obama.jpg +Jody Jackson,201-60-3260,72624,"76121 Angela Hollow Apt. 246 +Port Victorville, CA 20631-8545",1939-05-21 04:48:49,c1:61:03:44:08:af,brianwoodward@freeman.com,img/obama.jpg +Yolanda Jones,082-26-8462,86309,"7291 Christopher Meadows +West Mark, TN 59513",1981-05-19 21:10:05,3d:26:3c:70:9d:b8,christinarandall@whitehead.info,img/obama.jpg +Ryan Walker,075-37-1283,16946,"USS Brewer +FPO AE 48148",1966-12-27 16:39:48,5d:96:c1:89:d5:b0,lisamunoz@mullins.org,img/obama.jpg +Keith Tucker,026-03-0442,95387,"USCGC Cain +FPO AA 40456-0845",1990-07-12 16:50:27,40:bb:aa:04:98:b5,hintonchristina@ford.biz,img/obama.jpg +Brandi Garcia,289-48-0769,18713,"60147 Anne Place Suite 003 +Anthonyview, PR 26229",1976-07-19 09:44:29,88:4c:f2:d4:be:90,caitlin60@hotmail.com,img/obama.jpg +Leslie Green,616-39-9295,10854,"USNS Kennedy +FPO AP 37156-4811",1918-05-29 23:03:52,f6:b7:82:53:88:80,stephanie79@armstrong-collins.com,img/obama.jpg +Benjamin Stafford,645-42-5917,84578,"82210 Jeremy Forge Apt. 294 +Hudsonchester, WV 49070-7157",1955-10-16 23:15:42,c1:62:62:c6:6e:e5,xwilliams@delacruz-medina.com,img/obama.jpg +Terri Oneal,818-87-8419,70289,"558 Evans Throughway Suite 212 +South Shannon, RI 05764",1946-02-13 06:02:28,aa:dc:27:7c:a8:cb,evelyn99@mendez.com,img/obama.jpg +Ricky Garner,750-86-7729,71158,"786 Jennifer Center +New Ashley, IL 55709-6915",1938-11-15 20:10:04,69:ea:7b:b0:f5:02,susan84@yahoo.com,img/obama.jpg +Aaron Heath,670-30-1033,16258,"792 Richards Lodge +Duncanmouth, AZ 10051-8366",2012-03-22 14:19:07,76:98:46:ed:80:5a,sarah00@hotmail.com,img/obama.jpg +Samantha Gutierrez,006-76-2276,87655,"56376 Wilson Unions +Delgadoville, LA 40248-5919",1984-03-03 10:29:11,87:b3:c9:b4:89:1e,qbailey@gmail.com,img/obama.jpg +Mark Thomas,869-37-3778,33807,"19004 Lynn Estate Apt. 183 +Clarkburgh, MP 68568",1962-04-10 14:43:38,1a:bc:b0:5b:a0:19,cherylgreene@sanchez.com,img/obama.jpg +Christian Melton,147-43-1097,40909,"84616 Green Islands +Lake Jenniferstad, AZ 31768-1453",1977-01-09 13:43:13,8e:11:27:95:fb:ec,michaelgreene@macias-martinez.com,img/obama.jpg +Phillip Murphy,353-75-5778,05678,"18123 Melendez Gardens Suite 810 +Kevinshire, DE 63481-5652",1981-11-29 08:40:28,24:04:47:3b:72:00,denisesmith@miranda-glenn.com,img/obama.jpg +Elizabeth Ford,835-42-1826,82933,"02905 Gerald Mountains +North Kenneth, WV 35695",1985-06-05 21:43:55,4f:58:6a:c6:cb:e5,angelashea@bowers-pena.info,img/obama.jpg +Anthony Ramos,070-15-6180,17533,"52312 Michael Light Suite 944 +North Kim, SC 85763",1995-09-08 13:20:54,80:ee:39:03:76:06,joseph95@jimenez-watson.com,img/obama.jpg +Deborah Williams,417-97-4063,22072,"2548 John Coves Apt. 528 +Lynchhaven, MP 76765-9095",1956-07-08 17:21:28,63:24:77:58:9c:f0,carmen95@hotmail.com,img/obama.jpg +Maria Kennedy,081-10-8913,68483,"82679 Adams Inlet +Jeffreyfurt, ME 60221",1949-04-30 06:30:35,06:31:37:f2:9a:21,ywelch@logan.com,img/obama.jpg +Wendy Henson,173-33-4205,48316,"USS Conner +FPO AA 20561-3394",1940-05-10 11:43:47,0a:2f:a7:66:76:54,william00@hotmail.com,img/obama.jpg +Cynthia Fischer DVM,133-70-0335,92082,"4324 Jennifer Stream Apt. 681 +Parkerfurt, MP 97721-6671",1948-02-02 17:35:59,fd:c7:8c:fe:f0:56,karen05@hotmail.com,img/obama.jpg +Joshua Vasquez,626-42-7691,99017,"067 Cummings Junction Apt. 388 +South Cherylmouth, AL 64770",1925-10-19 16:10:15,37:5d:c2:4d:f7:15,clarknicholas@oneill-jackson.com,img/obama.jpg +Kelly Bentley,503-10-9204,27364,"969 Stephen Roads +Thomasland, TN 82779-8422",1969-09-19 06:12:43,ba:7e:a0:c0:ae:39,kelly48@foster-hendrix.com,img/obama.jpg +Kenneth Phillips,295-10-2400,21251,"77611 Campbell Vista +Davidburgh, IL 54311",1934-05-19 01:36:35,f4:84:eb:57:b6:1b,dustin31@riley.com,img/obama.jpg +Chad Rhodes,318-31-8961,91810,"9592 Kane Pike Suite 496 +Cooktown, DC 49309",2000-10-28 17:04:23,94:5e:5f:9b:3d:32,xford@henson.com,img/obama.jpg +Bill Mclean,656-54-9593,71826,"8098 Jason Shores Apt. 687 +Thompsonbury, AR 08288-2835",2015-09-29 04:45:51,ee:f7:4f:db:ab:05,hallkevin@gmail.com,img/obama.jpg +Mr. Robert Blake,829-17-0342,02393,"535 Kim Plaza Apt. 749 +Lake Christopherport, MH 37672",1963-09-06 13:59:13,77:95:c4:72:36:a8,wmorales@yahoo.com,img/obama.jpg +Hailey Stone,443-30-9505,41076,"973 Shaffer Streets Apt. 157 +South Eddie, MT 87396-4255",1980-12-30 09:44:06,08:f4:e5:3e:c3:a3,johnphillips@gonzalez.info,img/obama.jpg +Brian Morgan,890-01-3542,94259,"80160 John Vista Suite 624 +Gillville, NY 45818-7338",2014-08-08 23:41:18,ef:dd:96:21:38:c1,asmith@yahoo.com,img/obama.jpg +Dakota Chapman,356-09-3304,32302,"626 Powell Radial Suite 702 +Willisfort, SD 17279-4787",2010-06-17 10:17:31,a7:70:60:bb:46:ff,vlove@nelson-bradshaw.com,img/obama.jpg +Sandra Stewart,058-49-3613,45589,"Unit 4390 Box 4160 +DPO AA 01854",1934-04-19 18:17:45,f9:27:2c:20:1a:d3,jessicastevens@yahoo.com,img/obama.jpg +April Davis,791-08-0537,63238,"8223 Elizabeth Heights +East Andreatown, RI 50167",1937-02-20 23:45:11,7c:9f:1c:ed:ae:ab,pamela11@yahoo.com,img/obama.jpg +Brendan Marshall,155-33-0865,03762,"1622 Sims Glens Apt. 035 +Brettview, OR 16229-4873",1935-07-09 17:04:30,be:8b:14:05:38:01,oweiss@gmail.com,img/obama.jpg +Tracy Hampton,027-92-2807,43953,"Unit 3244 Box 1287 +DPO AP 60174-7050",1996-08-31 12:05:29,8c:72:d3:20:53:9b,hodgebrian@yahoo.com,img/obama.jpg +James Lee DDS,618-10-4096,54102,"24446 Manuel Lodge Apt. 097 +Lake Raymond, CT 52466",1922-10-24 21:02:12,57:ac:9b:68:0c:07,blanchardangela@yahoo.com,img/obama.jpg +Maria Hunter,240-76-6268,37609,"8715 Hayes Springs +Blackburnville, VT 88841",1993-02-02 00:32:33,51:c7:c5:b3:ac:92,renee13@hernandez.org,img/obama.jpg +Patrick Hernandez,072-69-9523,24854,"152 Cherry Lane +West Lori, PA 46088",1983-05-10 16:31:06,42:30:9b:48:09:be,nicholas40@gmail.com,img/obama.jpg +Michael Wilcox,620-63-8317,19542,"61351 Theresa Plains +North Jennifer, WY 69789",1960-01-29 23:41:37,34:6d:d5:05:dd:b4,atorres@gmail.com,img/obama.jpg +Ariel Ramirez,632-53-9052,18397,"2541 Nguyen Point +Bakerhaven, PR 24111",1963-02-13 17:28:54,6e:fa:e2:6e:4d:8f,hestrada@hall.org,img/obama.jpg +Gary Allen,854-55-8837,40656,"8993 Zuniga Grove Suite 067 +East Johnstad, MA 24859-9866",1973-04-20 07:44:42,f4:df:2a:da:d3:a8,wperez@hayes-simpson.com,img/obama.jpg +Michael Johnson,389-72-9608,10593,"28247 Emily Union +North Jasonside, IA 92499-3189",2006-11-27 09:04:01,eb:ec:bd:ad:13:a8,rodriguezcaroline@reynolds-collins.info,img/obama.jpg +Shirley Walton,055-41-1650,52329,"9260 Brandon Key +Maddoxland, ND 25317",1975-11-27 13:09:10,58:e1:33:97:e8:88,melissaduke@conway.com,img/obama.jpg +Stanley Byrd,608-82-4719,55953,"27531 Caldwell Prairie Suite 739 +East Mark, ME 27569",1947-11-16 11:20:38,0c:96:93:6a:57:1e,joshua59@evans-cooper.biz,img/obama.jpg +Tanner Brown,886-07-5115,55122,"67043 Peterson Landing Suite 466 +Jenniferberg, CA 77120",1986-10-19 11:22:34,42:7c:c9:0c:19:d9,samuel95@hotmail.com,img/obama.jpg +Nicole Lane,062-17-5219,01556,"03290 Bailey Way +Nicolemouth, FL 78406-7150",1980-02-09 22:19:01,88:a3:81:ab:fb:26,cannonjason@green-beltran.org,img/obama.jpg +Scott Stone,880-91-7680,39653,"32203 Hannah Tunnel Apt. 578 +Powellborough, SC 35240",2016-04-24 15:27:47,88:5f:ec:bd:e2:fc,staceymassey@gmail.com,img/obama.jpg +Richard Harvey,595-91-6913,18400,"61018 Sanford Court Suite 844 +Aprilside, NJ 67319-4672",1917-09-16 16:20:05,c7:fa:de:57:e0:35,ehayes@grant.net,img/obama.jpg +Mark Wilson,534-66-9236,54197,"68280 Pineda Radial Suite 979 +West Christine, SC 52727",2009-10-24 07:33:30,71:f3:b5:2d:fd:9b,jonglenn@lyons-wilson.com,img/obama.jpg +Kurt Nicholson,831-31-1074,83555,"8359 Caitlin Coves +West Rebeccafurt, NY 95596-6482",1928-02-05 09:57:02,9f:ed:5a:a9:59:06,vickiestrada@hotmail.com,img/obama.jpg +Steven Perez,776-95-1489,09365,"07504 Clay Lodge Suite 973 +West James, NY 04371-5620",1918-10-08 08:30:09,1c:4c:71:a9:e7:f5,tvargas@hotmail.com,img/obama.jpg +Thomas Bennett,753-14-3069,34578,"1583 Matthew Skyway +Joneschester, IL 35353",2011-06-17 18:43:32,d3:16:ad:81:af:62,jeffreysimmons@gmail.com,img/obama.jpg +Paul Reeves,071-59-0723,49689,"45166 Wilkins Land +Thomasfort, MT 91218-3671",1937-07-12 12:23:38,fb:3b:f6:8c:05:13,kfleming@yahoo.com,img/obama.jpg +Melissa Turner,517-97-3226,02767,"1694 Jennifer Ranch +Port Tinabury, CT 04700",2004-08-02 05:25:29,f5:6c:f6:c4:cc:17,jessicameyer@yahoo.com,img/obama.jpg +Alejandro Choi,610-23-7655,98842,"81704 Taylor Gardens Apt. 553 +Lake Russell, NY 08965",1992-04-24 22:52:11,59:0e:c7:a0:c6:0a,vancemolly@hotmail.com,img/obama.jpg +Robert Oconnor,169-20-1929,83624,"0195 Marilyn Loaf +Lake Samantha, MN 77695-5001",1992-09-08 12:54:39,3a:1a:22:70:c8:55,andreramirez@gmail.com,img/obama.jpg +Kevin Melendez,291-02-3715,84283,"49414 Harris Landing Suite 407 +Port Maria, SC 15949",1992-02-18 20:18:33,92:9f:bf:6a:b8:30,rhondaholland@hotmail.com,img/obama.jpg +Austin Miller,812-97-2847,95725,"7575 Lopez Flats +East Jamestown, DE 83973-8050",1984-08-23 14:45:30,8e:d6:c3:02:a2:7e,gsimmons@gmail.com,img/obama.jpg +Amanda Moore,696-42-6850,89544,"48540 Nancy Branch +Levyside, MP 61952",2010-04-12 16:22:25,45:e4:4b:66:25:61,tuckerstephen@payne.com,img/obama.jpg +Kimberly Lewis,101-51-5834,26368,"34550 Rodriguez Underpass +Elizabethborough, IL 49407-9504",1950-05-20 07:27:40,1f:98:3c:c7:c3:57,elizabeth81@yahoo.com,img/obama.jpg +Kristin Lang,358-51-7139,41694,"Unit 2080 Box 3694 +DPO AP 61828",1982-02-15 16:02:54,65:8f:f2:02:ce:33,uodom@brooks.com,img/obama.jpg +Robin Pearson,789-65-5625,38433,"7158 Walter Crossroad +Dudleyberg, GA 74218-7067",1986-11-17 07:32:43,1b:2c:2b:14:b3:45,ereid@hotmail.com,img/obama.jpg +Valerie Jackson,718-86-4783,73152,"3374 Blackburn Mill Suite 389 +Micheleburgh, NH 23198-2556",1945-07-28 14:56:57,ef:89:53:c0:88:a1,greenpatrick@smith.com,img/obama.jpg +Yolanda Clements,234-41-7669,26617,"78144 Douglas Village Suite 937 +Parkerborough, FM 60454",2002-05-16 01:13:01,e9:bc:b9:bc:b4:c0,carrie65@yahoo.com,img/obama.jpg +Chelsea Hughes,398-82-9036,15298,"Unit 3446 Box 8704 +DPO AE 37671-0208",2010-11-10 18:01:01,c7:b5:0d:0c:8c:db,charles88@gregory.info,img/obama.jpg +Michael Gardner,627-24-5947,35458,"43879 Joan Prairie Suite 108 +Newtonfurt, ND 66251",2001-12-02 13:31:08,a0:94:a8:ab:96:f4,philipmatthews@hotmail.com,img/obama.jpg +Holly Reilly,016-62-7188,95759,"505 Carney Causeway +Alexanderfurt, KS 50551-6345",1990-06-07 16:25:39,c0:ce:57:33:ca:ad,martinezcassidy@gmail.com,img/obama.jpg +Timothy Rodriguez,044-23-2971,03697,"26240 Judith Curve Apt. 519 +Tanyaton, ND 16114-1492",1985-06-03 07:10:35,e0:43:3e:ab:45:6d,sarahbyrd@walsh.com,img/obama.jpg +Hayley Sanders,426-76-8283,34261,"886 Jesus Path Suite 109 +Nicholasfort, RI 09171",1972-01-24 18:52:58,22:4e:db:6b:64:33,timothy04@yahoo.com,img/obama.jpg +Brianna Moran,290-61-7384,99194,"82363 Crystal Mountain +Cabreraland, FL 91753",1925-11-19 12:56:47,7c:ed:44:f5:a5:0c,katherine08@gmail.com,img/obama.jpg +Jamie Perez,552-44-9299,30635,"87676 Charles Harbors +South Taylorland, DE 62090-3875",1918-08-28 11:33:07,02:45:df:4a:39:a6,mary08@gmail.com,img/obama.jpg +Diane Garcia,014-59-0104,10245,"9208 Bradley Orchard Apt. 357 +Jadestad, KS 61083",2004-10-27 00:02:01,45:6c:d9:3c:23:6b,harrisonantonio@yahoo.com,img/obama.jpg +Kevin Ferguson,283-04-0724,81952,"94011 Angela Greens Suite 229 +Lake Andrew, OR 99449-8717",2008-11-15 07:28:00,c9:b2:63:86:f5:86,uayala@powers.com,img/obama.jpg +Michele Pineda,720-27-0720,62976,"86796 Garcia Knolls +Lisafort, NC 79254",1968-08-04 07:13:59,a4:bf:f6:db:38:b5,davidsonjeremy@white.org,img/obama.jpg +Robert Horton,511-66-7336,11346,"47115 Hall Trafficway +Wiseland, GA 03300-2719",1919-03-31 08:13:33,71:46:f0:07:b5:b4,jenniferglenn@douglas.com,img/obama.jpg +Michelle Hopkins,699-54-1754,10159,"546 Curry Passage Apt. 451 +North Amandafurt, GA 70241",1976-05-23 15:19:00,16:30:03:dd:d3:be,greenjohn@yahoo.com,img/obama.jpg +Joseph Long,542-76-1976,63809,"PSC 8977, Box 0788 +APO AE 91657",1987-12-14 23:37:04,71:99:42:43:2c:59,shannonwoods@hotmail.com,img/obama.jpg +Kelly Brock,676-54-5407,10090,"6779 Mullen Station +Lake Meganfort, SC 70207",1980-09-14 00:45:58,69:29:6d:cd:e4:fb,gary21@montes-sullivan.com,img/obama.jpg +Theresa Washington,252-22-3728,17244,"828 Smith Land Apt. 680 +West Carlmouth, AS 22157-6693",1967-09-23 13:25:59,65:f0:3a:8c:21:96,kingdawn@richards.info,img/obama.jpg +Alan Solomon,044-31-5860,00642,"88526 Jennifer Villages Suite 074 +Kington, ID 12928-2754",1927-12-29 22:28:21,22:a0:7a:83:fb:9e,cynthiamorris@contreras-cooper.info,img/obama.jpg +Ryan Marsh,494-51-8708,59074,"998 Kathryn Isle Apt. 827 +Martinstad, GA 94385-6161",1969-01-03 08:51:43,39:4a:84:18:7a:2e,isaacedwards@lee.info,img/obama.jpg +Jacob Brown,250-44-1595,19698,"0265 Paul Ways Suite 058 +Douglasbury, GU 93026",1949-12-06 02:12:43,58:8f:3e:1e:0b:1e,nlewis@yahoo.com,img/obama.jpg +Molly Green,355-94-5178,57722,"36347 Richardson Valleys Suite 404 +New Brandonfort, IL 66212",1963-10-14 05:04:01,9a:74:05:48:ff:bf,tparker@lowery.org,img/obama.jpg +Kristin Ballard,180-54-6067,96863,"1283 Patterson Camp +Taramouth, AZ 30627",1938-07-02 19:09:46,d4:78:46:44:72:2c,atkinsonjohn@alvarez.com,img/obama.jpg +Mark Garcia,072-31-6172,32711,"9705 Wright Square +Lake Lauriemouth, OR 60682",1990-05-30 02:52:19,87:0e:c4:d0:83:94,teresaarellano@chan.net,img/obama.jpg +Julie Moore,194-55-8220,61490,"49094 Reed Meadows Suite 818 +South Seanfort, DC 69638",1967-01-29 07:13:07,a6:bd:d7:53:17:77,inelson@gmail.com,img/obama.jpg +William Arroyo,032-65-0083,72591,"516 Julia Circle +East Kevin, DE 08481-9707",1977-11-16 01:24:23,4a:0d:e9:b2:9d:95,gregory23@hotmail.com,img/obama.jpg +Shane Pitts,451-41-1086,98673,"2775 Donaldson Meadows +Zacharyfurt, RI 37859-0885",2007-05-26 05:48:06,98:39:2d:f6:65:a3,janderson@garcia.com,img/obama.jpg +Carl Fowler,463-85-9157,29423,"25903 Alex Ports +Arielland, AS 88228-8153",1995-08-20 05:00:31,4b:3c:ea:fc:f0:5b,kathryn40@gmail.com,img/obama.jpg +Kimberly Rivera,206-65-2610,60432,"9235 Anthony Radial +New Colin, PW 76409-4236",2003-01-22 09:16:34,07:0b:a1:81:98:63,frank74@daniel.com,img/obama.jpg +Scott Bennett,554-45-1511,11380,"337 Larson Cliff +Lake Catherineshire, NM 53748",1994-09-27 02:36:41,85:0a:6c:f1:fe:76,baxterlaura@ford-morrison.com,img/obama.jpg +James Taylor,640-89-4551,07739,"879 Lauren Falls +Trevorton, WY 61535-8637",1928-01-24 06:29:11,56:44:39:e1:24:96,amandajohnson@yahoo.com,img/obama.jpg +Danielle Wilson,430-07-1894,19144,"59028 Kaiser Stravenue Suite 874 +Ashleyburgh, VA 43580",1958-01-10 19:49:41,d0:96:59:fc:d5:93,lmeyer@yahoo.com,img/obama.jpg +Heather Lewis,339-60-8490,55974,"7042 Richard Hill +South Erika, MP 98389",1961-07-03 15:09:36,5f:e6:a2:ec:08:90,williamstout@yahoo.com,img/obama.jpg +Devon Wilson,241-90-4210,63803,"774 Jeffery Corners +Johnside, CA 58201-8155",1992-05-21 07:50:30,dd:54:ad:74:a3:6e,tonyalewis@gmail.com,img/obama.jpg +Lauren Sandoval,225-75-9492,86612,"2194 Marilyn Mews +South Reneeborough, MH 37929",1952-05-26 21:20:17,9f:4d:0f:d8:35:b2,jessica30@cox.com,img/obama.jpg +Caitlin Phillips,708-05-0692,52215,"4548 April Villages +South Heather, FM 17878",1994-04-19 22:39:47,e4:98:c7:98:79:9b,michael18@black-cobb.com,img/obama.jpg +Michael Hanson,516-66-8568,57723,"494 Antonio Plains Suite 188 +Lake Sarah, HI 28163",1947-12-01 02:51:55,4a:c2:a6:16:98:de,sarahmartinez@johnson.com,img/obama.jpg +Gregory Miller,536-52-6760,05564,"10908 Beard Summit +Kristineside, MA 38792",1969-01-07 10:20:14,3b:a8:b9:38:a9:74,molly09@gmail.com,img/obama.jpg +Jonathan Williams MD,552-75-2273,15230,"6505 Mcdaniel Lodge +Kennethstad, AS 19171-0758",1935-03-28 01:55:19,d2:ef:15:5d:bb:9b,evanslisa@murray.biz,img/obama.jpg +Denise Wallace,247-22-2454,33409,"2298 Sandra Knolls +Nicholaschester, ID 00450-8151",1932-06-20 01:33:00,98:69:68:2e:f0:cb,seanwiggins@brown-schultz.info,img/obama.jpg +Dana Hansen,813-19-2300,94610,"996 Kimberly Ridge Apt. 935 +Morrisville, SC 61821",1954-01-30 15:03:40,44:b0:1f:fe:b1:b5,brandonpowers@hotmail.com,img/obama.jpg +Tiffany Hamilton,215-49-6984,14124,"9806 Jennifer Points +Emilymouth, IA 98061-2791",1938-10-01 17:27:45,60:cb:47:b6:3f:ab,kara98@yahoo.com,img/obama.jpg +Vanessa Rose,840-77-5708,30836,"8509 Steve Trail Suite 625 +West Richardberg, MO 09447",1977-06-19 23:51:24,17:4d:3c:49:60:96,nrobbins@yahoo.com,img/obama.jpg +Aaron Jackson,089-95-5350,31531,"019 Matthew Terrace Apt. 228 +West Devin, MT 05459",2008-03-13 16:14:01,ad:b0:82:e0:23:c3,alexander61@taylor.org,img/obama.jpg +Nancy Russell,350-73-4529,47869,"8480 Blair Field +Kennethburgh, WY 14915",1938-07-26 01:26:55,45:6b:a1:f2:a2:b8,rhondawilliams@hotmail.com,img/obama.jpg +Adrian Miller,764-39-7418,41965,"811 Andrew Parkway Suite 636 +Timothyside, SC 29070",1978-10-07 06:59:09,b6:04:d4:de:e5:24,tmccann@gonzalez.info,img/obama.jpg +Joseph Smith,738-64-3136,26840,"73137 Sharon Alley +North Katrinatown, KS 68923-1120",1917-08-10 06:56:49,fa:c6:23:d2:b5:0d,pflores@white.info,img/obama.jpg +Sharon Cook,502-71-6873,05416,"55731 Jennifer Track Apt. 314 +West Bethanyland, HI 68798",1969-05-05 12:38:32,f7:22:34:84:c5:ac,amanda77@yahoo.com,img/obama.jpg +Stephanie Jones,299-31-5431,83941,"Unit 1949 Box 3111 +DPO AA 98401-5453",1924-08-11 20:35:36,33:db:a0:d7:74:50,robynjones@hotmail.com,img/obama.jpg +Anthony Melendez,630-80-2718,31353,"351 Lisa Way Apt. 177 +Hernandezview, NY 09955",1949-08-15 12:31:56,e6:e4:57:e0:bd:77,tammygray@hardy.com,img/obama.jpg +Kelsey Jenkins,795-03-5051,26468,"9445 Mann Springs +New Aprilfort, AL 19092",1985-05-30 12:20:21,37:4f:c4:e3:dd:38,michaelhoffman@sexton.com,img/obama.jpg +Teresa Ross,440-24-3584,09818,"504 Derrick Light +Hortonburgh, NC 19160",1924-10-01 03:10:04,08:bd:a5:a3:62:d4,johnsondavid@cook.com,img/obama.jpg +Daniel Johnson,020-59-5100,29937,"1539 Robert Land Apt. 636 +Lake Richard, NM 26640",2015-12-14 06:02:06,16:28:1f:a2:b9:9e,ukeith@copeland.com,img/obama.jpg +Robert Schaefer,275-07-2690,31124,"Unit 9024 Box 3838 +DPO AA 44699-9574",1942-06-22 13:56:54,db:24:d1:8e:bb:43,laura41@hotmail.com,img/obama.jpg +Lisa Ellis,578-85-9965,91243,"0209 Laura Freeway Apt. 358 +Jenniferfurt, KS 23014",1947-09-26 00:36:07,2c:9c:47:20:65:2f,landryrichard@norris.com,img/obama.jpg +David Kim,691-11-1745,40288,"83488 Jeffrey Shoals +Andrewsshire, GU 35800",2000-05-13 11:44:55,59:f9:ea:b5:33:ee,sabrina80@martinez.net,img/obama.jpg +Tiffany Soto,612-45-7131,82103,"63743 Gillespie Views Suite 050 +East Sheriside, ID 29353-2166",1967-10-16 19:00:04,34:21:bf:8a:27:68,umayer@gmail.com,img/obama.jpg +Travis Baker,323-43-5389,03727,"5931 Cooley Mountain +New Eric, TX 57934",1991-07-21 06:23:14,c0:b1:d6:aa:af:43,lwilliams@yahoo.com,img/obama.jpg +Elizabeth Washington,093-61-6130,43075,"83594 Rogers Station +Meganmouth, NM 36583-2322",1934-11-27 16:29:26,c6:81:8f:17:9b:11,chaseriley@frazier.com,img/obama.jpg +Stacy Wagner,283-82-0621,39214,"3378 Kyle Court +Michaelstad, MN 43946-2874",1934-08-20 10:06:42,02:aa:68:64:35:ce,molinaamy@waters.org,img/obama.jpg +Tara Higgins,839-56-4688,87116,"83702 Jasmine Manors Apt. 814 +Dominiquestad, GA 05913-9869",1947-07-31 17:15:01,e5:6c:b2:fb:dc:15,kingamy@hotmail.com,img/obama.jpg +Amanda Bryant,405-57-1277,83599,"0911 Hamilton Corner Suite 424 +Justinbury, PR 26920",2007-12-27 13:23:41,24:14:96:8e:18:38,barneselizabeth@gmail.com,img/obama.jpg +Alec Harris,715-17-8750,86766,"002 Mike Highway +Websterburgh, WI 77680-6743",1991-01-06 14:34:43,b0:4d:6b:e8:68:0f,rachelclark@hunt-greene.net,img/obama.jpg +Charles Hood,055-51-2166,76473,"9491 Rice Bypass Apt. 668 +Kimmouth, OK 16584-9480",1964-02-11 09:39:46,dc:02:78:86:f9:c4,vhines@hotmail.com,img/obama.jpg +Michael Rodriguez,505-50-4218,43688,"10463 Bennett Harbor +Davidstad, GA 45823",1980-06-13 00:04:45,ad:3d:d3:7f:a3:93,charles22@hotmail.com,img/obama.jpg +Matthew Scott,157-50-5180,48388,"245 Nguyen Skyway Apt. 791 +Lopezton, MA 49808-9814",1935-05-27 22:48:19,ae:93:6f:78:98:4e,stewartjames@gregory.info,img/obama.jpg +Benjamin Lynn,082-93-1720,14942,"90378 Brandon Vista +West Carmenton, UT 01591-1012",1973-10-16 23:32:54,87:96:f4:c2:29:30,maymichelle@gmail.com,img/obama.jpg +Rebecca Herrera,634-70-7316,33243,"70960 Rachel Fall Suite 095 +East Johnathan, SC 49966",1932-04-23 11:40:19,65:15:c5:14:e7:f9,josephjose@lee.biz,img/obama.jpg +Patricia Sanders,181-65-6534,05260,"031 Ford Hollow Suite 862 +Martinezbury, MS 36216-3441",1920-06-11 21:11:44,39:8c:98:c9:93:d3,kenneth14@hotmail.com,img/obama.jpg +Diana Silva DDS,109-54-9709,49230,"39300 Chloe Path Suite 713 +Port Brittany, NV 44874",1993-04-25 16:59:27,db:97:e1:ef:f9:dd,brianasalazar@jones.com,img/obama.jpg +Terry Espinoza,002-75-1798,71227,"297 Wilkinson Mews Apt. 491 +East Damon, WV 04082",1991-01-21 12:20:04,c1:5a:3d:f4:fe:bb,gabrielaterry@holloway-lawrence.com,img/obama.jpg +Matthew Smith,496-93-1166,86724,"Unit 4832 Box 2360 +DPO AE 08706",1950-04-22 06:39:22,22:0f:69:42:bb:86,william17@gmail.com,img/obama.jpg +Jamie Thomas,334-17-0652,59791,"8940 Bailey Wells +West Cassandra, LA 08257-3312",1937-03-10 07:22:08,d7:bd:4f:e7:cd:9a,rachel97@yahoo.com,img/obama.jpg +Phillip Trujillo,590-59-7644,32497,"78340 Brady Shores +Crosbyburgh, ND 65229-6120",1923-10-03 21:47:17,8f:71:f0:cf:21:42,brownbilly@yahoo.com,img/obama.jpg +Patricia Guerra,788-30-8823,73328,"27487 Hurley Forges +Richardfort, CO 45721",1930-01-23 05:52:06,44:bb:ab:b3:ce:e7,bryantjames@callahan.biz,img/obama.jpg +Brendan Rogers,590-02-4704,59398,"162 Daniel Expressway Suite 473 +West Jessica, AZ 79605",1978-07-15 17:33:13,19:d0:f9:30:c8:bf,danny65@gmail.com,img/obama.jpg +Shelley Taylor,630-31-1030,34167,"023 Smith Shores Apt. 587 +North Joditon, NM 99266-3584",1931-02-19 00:04:33,aa:44:11:fb:ab:96,bryantadam@yahoo.com,img/obama.jpg +Derrick James,317-32-6023,37999,"4841 Fernandez Camp Apt. 438 +Sullivanshire, FL 83910",2015-11-21 10:45:30,67:98:d7:ce:1d:20,espinozapatricia@hotmail.com,img/obama.jpg +Christine Holt,556-37-8356,79162,"USNS Weeks +FPO AP 99995-3150",1948-06-06 01:46:52,5b:01:d7:2f:26:d9,candace07@hotmail.com,img/obama.jpg +Brian Cardenas,044-88-9128,79658,"47910 Brown Motorway +Tinatown, WV 84611-4463",2006-01-26 23:58:49,e9:a7:69:34:32:64,darryldavis@adams.org,img/obama.jpg +Lisa Ingram,792-72-2388,42765,"68368 Nelson Freeway Apt. 417 +West Loritown, PA 49011",2011-11-06 21:33:04,37:58:64:89:71:bc,ianwatson@gmail.com,img/obama.jpg +Hannah Williams,316-98-1823,07490,"13036 Patricia Branch Suite 031 +West Jasmine, IA 28516-5818",1972-11-08 20:55:59,d8:1c:ab:89:9f:b2,hernandeztonya@sanders-cardenas.net,img/obama.jpg +Samuel Butler,693-28-2181,27533,"18369 William Cliffs +New Tracybury, NY 08643-1275",1941-05-02 08:43:52,c3:63:18:3a:f0:f2,heathersummers@russell.org,img/obama.jpg +Kristy Kelly,007-71-0980,18301,"93844 Cunningham Stream Suite 859 +South Jennifer, ME 62600-5837",1991-09-14 22:18:53,b3:e4:cf:22:a7:a4,mark51@willis-lawrence.biz,img/obama.jpg +Courtney Knight,668-85-1283,22114,"0888 Robinson Creek +South Lorishire, ND 91328-4841",1984-11-07 20:58:34,18:a2:1d:03:18:74,imartinez@yahoo.com,img/obama.jpg +Amanda Boone,480-07-8334,03648,"20821 Bryant Squares +West Craigside, DE 34822",2012-09-18 17:02:25,44:3d:ba:04:c6:8e,tdiaz@nichols-shaw.com,img/obama.jpg +Brian Atkins,836-35-9370,53771,"1601 Navarro Oval Apt. 079 +Annafort, TX 73817-7040",2000-01-28 07:50:54,cf:94:11:05:e1:b6,deborahkelley@hotmail.com,img/obama.jpg +Dr. Melinda Hogan,653-63-4218,57167,"59890 Angel Burgs Apt. 679 +Lynchberg, VI 42325",1994-11-18 19:05:19,3c:c3:49:2d:d2:97,philiprodriguez@fletcher.com,img/obama.jpg +Samuel Finley,895-75-8431,19594,"760 Sandra Way Suite 868 +North Elizabethhaven, AS 57055",1989-03-09 21:36:36,f7:fd:63:c8:01:83,daisy11@gmail.com,img/obama.jpg +Margaret Gilbert,041-46-5287,45207,"362 Taylor Lights +Vegatown, OH 98947",1990-05-24 16:44:10,93:a2:13:e8:c6:e7,davidwhitaker@garcia.com,img/obama.jpg +Adrian Campbell,748-85-0036,61165,"589 Joshua Common +New Anna, LA 87006",1963-05-20 01:42:21,82:4f:7f:77:2c:0c,colemanlonnie@irwin.org,img/obama.jpg +Christian Thomas,015-16-0033,60613,"PSC 5585, Box 6296 +APO AP 85597",1962-02-12 01:51:19,c2:1b:f2:9d:f0:88,nelsonamanda@hotmail.com,img/obama.jpg +Joseph Mclaughlin,851-53-1086,79855,"46449 Gonzalez Rapids Suite 751 +East Thomas, MN 22000",1942-12-25 22:23:16,36:af:a5:55:91:9b,lisa57@moore.com,img/obama.jpg +Steve Brown,281-67-1330,86139,"USNS White +FPO AP 63034",1926-09-25 15:44:38,7a:9f:d9:e2:4a:e9,ortegachristina@yahoo.com,img/obama.jpg +Dennis Campbell,442-62-8472,61512,"9327 Miles Mountain +New Kennethshire, ME 85078",1977-12-27 19:44:19,1a:c1:c9:77:a8:64,hrogers@hotmail.com,img/obama.jpg +Dylan Patel,416-63-8629,50282,"38540 Jamie Springs Suite 931 +Danaburgh, LA 85637-0049",2013-03-29 10:55:03,10:e9:54:2b:9f:af,smithcharles@hotmail.com,img/obama.jpg +Tyrone Lopez,189-93-6972,19036,"181 King Manors Suite 838 +South Bernardshire, RI 24380",1984-06-08 21:21:35,0f:c5:68:63:3c:69,zcline@rich-johnson.com,img/obama.jpg +Regina Bailey,656-63-9820,68604,"12158 Laura Run Suite 422 +Lake Jodimouth, WA 50209-1635",1979-04-22 17:18:22,ab:41:5b:ff:3d:a0,lgonzalez@hotmail.com,img/obama.jpg +Mary Brown,684-88-2486,80531,"99151 Farmer Alley Apt. 551 +Lake Samantha, UT 60445",1947-09-05 02:05:17,ad:8d:51:68:dd:24,amyward@gmail.com,img/obama.jpg +Matthew Carter,846-95-4342,71846,"432 Gregory Isle +South Brandon, SD 71877",1929-11-15 02:58:13,86:24:d8:2a:62:76,vcalderon@brandt.biz,img/obama.jpg +Lisa Miller,874-82-5626,44412,"362 William Square +South Jerry, GA 84933",1998-11-27 01:41:31,98:b4:7a:c1:2c:72,timothymann@cook-clark.net,img/obama.jpg +Christine Brown,428-66-7178,04592,"741 Stone Lake +East Anthony, ME 87320-1738",1973-10-11 22:25:00,d8:66:86:f1:6a:c9,dennis87@carter.com,img/obama.jpg +Sara Powell,257-59-0097,45799,"6148 Jesse Track Apt. 935 +Stoneport, MN 46922",1987-06-30 01:08:15,cb:ac:1e:b7:75:91,zunderwood@rojas.com,img/obama.jpg +Kelsey Kelley,642-47-6734,29427,"4831 James Manor Suite 227 +Thomasborough, MP 53915",1973-07-28 09:28:12,71:5a:25:29:4f:fe,james76@campbell.com,img/obama.jpg +Amber Hamilton,830-81-5374,59310,"6166 Hill Pass Suite 643 +Johnbury, DC 62193",1956-05-28 03:02:36,31:41:22:8d:b1:85,ruizdavid@cunningham-silva.org,img/obama.jpg +Kelsey Frazier,262-21-1235,05662,"604 Durham Gateway +Coffeyport, TN 95869-8102",1953-08-25 23:52:47,31:68:8e:e0:69:ce,anthony07@hotmail.com,img/obama.jpg +Alexis Harrington,871-08-8551,51665,"49284 David Fort Suite 277 +Lamberthaven, MS 95440",1989-04-07 01:42:47,ed:2a:ff:58:3a:04,kathleen31@macdonald.com,img/obama.jpg +Kimberly Gross,079-04-5252,79280,"6879 Stephanie Course Apt. 922 +South Ricardo, FM 99734",2014-05-05 12:19:22,11:42:96:59:38:4c,patrickcohen@yahoo.com,img/obama.jpg +Amy Coleman,223-47-1305,96206,"768 Lauren Roads +Cobbborough, FL 35891-0567",1939-08-16 07:20:20,15:a4:b3:61:76:50,phillipskathryn@diaz-luna.com,img/obama.jpg +Ashley Wilkinson,251-62-0903,36476,"637 Richard Ramp Apt. 099 +Jamesmouth, NY 92414",1940-01-25 03:41:14,94:97:d3:0e:ee:ce,sherryblanchard@yahoo.com,img/obama.jpg +Mr. Robert Aguilar,516-90-7618,58269,"8902 Huff Mission +Lake Meganport, PW 18619",1941-12-24 02:47:43,2f:ac:35:0d:74:aa,dakotastanley@hotmail.com,img/obama.jpg +Donald Ortega,389-68-3653,10394,"665 Davis Brooks Suite 322 +Gutierrezside, DC 83780-4353",2006-04-04 19:12:41,ef:28:4e:64:0a:bf,hmoore@mccullough.biz,img/obama.jpg +Robert Mccullough,598-51-3128,81391,"5237 Maldonado Squares Apt. 115 +Allenberg, IL 88150-5464",1964-01-27 01:21:42,84:0a:61:1c:6a:c2,cynthia68@hunt.com,img/obama.jpg +Samantha Sanders,897-50-6953,43961,"7355 Gibson Station +Kevintown, ID 09032-3377",1967-07-16 08:15:40,34:b9:7a:9c:28:3a,shannonchristensen@campbell.biz,img/obama.jpg +Linda Williams,618-27-1073,58987,"905 Hernandez Port Apt. 191 +New Michael, CA 09177-2022",1955-03-09 22:30:42,f7:70:a1:a6:15:1e,duncanronald@gmail.com,img/obama.jpg +Gary Jimenez,262-50-8879,41887,"70793 Holt Valley +Donnabury, VA 34118",2005-06-09 03:55:05,45:46:b6:7e:0b:07,samantha69@hotmail.com,img/obama.jpg +Robert Jackson,137-33-1495,13498,"8832 Maria Stream Apt. 165 +Brennanhaven, MS 57367",2007-04-24 04:24:31,ce:2f:ff:24:1c:87,johnfrank@yahoo.com,img/obama.jpg +Dennis Hamilton,435-09-7912,43650,"1467 Rosario Harbors Suite 062 +Starkchester, WI 43378-8227",1960-06-30 03:09:53,2d:d9:5c:44:3b:b2,cwilliams@willis.net,img/obama.jpg +Hector Kirby,274-62-8008,61795,"204 Brianna Parkway Suite 623 +Terriberg, PR 89163",1963-02-18 03:34:04,ae:9c:d3:00:56:84,fsanchez@gmail.com,img/obama.jpg +Madeline Hernandez,397-66-5248,96518,"5999 Rosario Expressway +Lake Sarahmouth, KS 84670-5595",1950-11-27 15:47:47,4c:50:50:8b:c2:cb,rowebrandon@walker.com,img/obama.jpg +Christine Mason,314-56-2664,83511,"PSC 6666, Box 2122 +APO AP 03870-1781",1957-04-26 21:52:54,5f:e9:56:81:f6:22,carol13@yahoo.com,img/obama.jpg +Ashley Fisher,294-57-6324,29932,"338 Jessica Mission +South Frances, MO 58593",1935-10-21 16:48:32,40:58:d4:d1:16:6c,catherine24@gmail.com,img/obama.jpg +William Odonnell,621-27-4859,46390,"507 Sharon River +Williamville, UT 06533-9494",2001-09-19 20:18:22,02:2b:51:42:c0:09,kellydarrell@yahoo.com,img/obama.jpg +Kristin Taylor,490-62-5132,94949,"4374 Renee Unions Suite 061 +Lake Isabel, UT 25203-9156",2016-11-13 09:34:37,07:ff:fd:58:00:a6,gabriellejackson@hotmail.com,img/obama.jpg +Tyler Abbott Jr.,537-80-9035,81712,"302 Reese Drives Apt. 099 +Port Christian, UT 65045",2016-02-09 07:42:55,ea:e5:20:be:c3:b0,tracy70@miller-haynes.com,img/obama.jpg +Joseph Livingston,340-23-0926,42093,"43863 Martinez Lake Suite 485 +North Danielside, WA 95735-9471",2013-01-15 07:39:00,99:fd:7c:8b:6b:81,rosejohn@hotmail.com,img/obama.jpg +Melissa Levine,700-01-8445,51729,"Unit 6818 Box 2666 +DPO AA 17722",1998-05-17 20:38:30,42:7f:0d:11:11:6c,drew27@summers.com,img/obama.jpg +Scott Austin,536-43-3873,42831,"78044 Anne Crest Apt. 181 +Schmidthaven, PA 35214-7643",1928-10-17 08:01:00,f4:38:9b:9a:70:56,warekimberly@gmail.com,img/obama.jpg +Nicole Delacruz,673-28-8204,50250,"60681 Armstrong Court +Lake John, NC 85672-8201",1953-05-23 01:44:33,52:13:8e:37:b4:b1,coxjames@gmail.com,img/obama.jpg +Seth Wiley,843-50-9008,87110,"9808 Pennington Island Apt. 831 +Zimmermanbury, AL 27070",1947-06-10 02:11:57,7d:29:39:9e:15:34,vwest@hotmail.com,img/obama.jpg +Edward Ibarra,507-98-5116,96572,"226 Thomas Plains +Melissastad, NE 93968-1351",1992-10-24 11:09:18,50:28:14:73:ba:3c,scottdavid@trevino.org,img/obama.jpg +Susan Cruz,516-83-6060,15741,"0321 Joshua Spurs Suite 433 +Port Hayley, AZ 97828",1925-02-25 05:42:59,85:53:f9:48:ba:83,terryamy@hotmail.com,img/obama.jpg +Kevin Lopez,610-58-5383,14230,"9170 Conley Squares Suite 674 +New Kyle, AL 35052",1987-05-09 10:33:54,8f:df:fe:ac:8d:e8,adamnorman@oconnell.info,img/obama.jpg +Crystal Peterson,761-63-4880,86571,"33194 Brad Valleys +Leefort, IA 51539-5004",1922-08-25 23:33:53,95:dc:6f:21:c7:77,daniel62@barton.com,img/obama.jpg +Stephanie Delacruz,321-64-6925,40104,"252 Jasmine Fords +Alexaland, VT 09959-7996",1924-10-16 22:23:05,ad:a1:05:b4:b0:f9,riveranathan@miller-simon.com,img/obama.jpg +Morgan Haney,868-76-2139,41162,"7261 Philip Lake +Banksborough, DE 87886",1993-04-04 07:28:27,be:57:27:d2:18:6f,dwoodward@lee.com,img/obama.jpg +Kelly Young,044-59-4694,34948,"3254 Amy Burg +South Natalie, KS 74632",1983-10-08 16:02:29,ca:05:9b:64:84:e8,adavila@leon-berg.biz,img/obama.jpg +Bryan Vazquez,663-43-1977,94373,"267 Richard Walks +Ellenbury, TX 10134",2009-05-23 10:25:10,a1:4a:32:90:e9:7c,richardmartin@gmail.com,img/obama.jpg +Robert Mckenzie,191-69-7475,18276,"0398 Daniel Extensions +New Anthony, OK 55267-7667",1948-02-10 02:42:27,d5:bd:11:a9:04:68,paulpotts@yahoo.com,img/obama.jpg +Randy Hooper,345-89-6449,91214,"2624 Stacey Throughway +Jasonhaven, AL 58562-9513",1980-04-15 06:10:45,2a:7f:13:82:22:e5,montesjessica@johnson.org,img/obama.jpg +Charles Carroll,424-74-7885,99241,"71849 Devin Green +West Vanessamouth, NE 64487",2006-11-04 23:04:39,01:04:3e:ff:4b:95,jose90@gmail.com,img/obama.jpg +Travis Parsons,143-30-9668,32884,"8522 Allen Via Apt. 355 +North Lori, HI 70946",1977-07-05 00:38:06,34:3e:1d:d3:1c:fb,brookerose@yahoo.com,img/obama.jpg +Brenda Nichols,409-09-7923,78247,"0374 Garza Parkway +New Aliciaview, KY 69806",1993-01-21 12:50:06,b7:5c:57:9f:88:11,fmiller@barnes.net,img/obama.jpg +Debbie Shaw,646-38-0576,83255,"364 Brandon Inlet Suite 221 +Katherineview, MS 61478",1978-10-08 01:20:12,55:4b:76:cd:a9:2c,peter52@robbins.info,img/obama.jpg +James Hawkins,284-58-1708,91122,"95382 Michael Trace +Garyville, IA 70995",1958-04-12 07:50:38,f6:13:1e:25:c2:bb,trichards@gmail.com,img/obama.jpg +Katherine Phillips,057-86-6508,97602,"3116 Bryan Brook +West Katiefurt, AS 75508-7005",1976-07-12 06:10:24,66:fa:92:43:8e:d6,ashleyclarke@hotmail.com,img/obama.jpg +Cindy Rivers,633-03-8449,80871,"393 Boyle Divide Apt. 524 +South Michael, UT 72959-0888",1954-10-09 08:30:35,74:ed:88:34:27:f0,wilsonjennifer@farmer-nguyen.biz,img/obama.jpg +William Bolton,544-33-6268,20065,"5536 Patrick Curve +Markfurt, AK 65262",1981-10-20 01:31:51,3a:45:f9:61:b1:d8,pkelly@proctor-wright.com,img/obama.jpg +Terry Liu,396-98-3991,90005,"63368 Amanda Island +South Lucasfort, FL 69409-8362",1926-08-10 07:18:45,3a:94:32:d5:f5:0c,jacob53@larson-johnson.com,img/obama.jpg +Mrs. Victoria Eaton,445-53-7671,27948,"69802 Jonathan Shores Apt. 920 +West Scott, GA 07176",2003-09-04 23:53:32,85:51:56:96:ba:aa,lewisjessica@yahoo.com,img/obama.jpg +Kevin Barnett,558-24-5782,70515,"8917 Berry Courts +Lesliefurt, VT 63074",1954-05-21 13:47:07,4a:75:14:cd:40:cc,rileybrandon@smith.com,img/obama.jpg +Kevin Gonzales,672-92-0824,67354,"11319 Richard Roads Suite 210 +North Shawn, CA 56165",1982-12-30 18:53:02,d3:a4:55:71:c6:ed,vwilliamson@pugh-lambert.com,img/obama.jpg +Sarah Ferrell,539-30-5855,29710,"280 Jennifer Inlet Apt. 606 +Kaylamouth, MD 23135-3635",1921-10-07 11:45:32,df:cb:0a:f4:18:70,jaimeatkins@gmail.com,img/obama.jpg +Robin Brown,662-02-5731,51743,"7583 Fischer Cliff +Hernandezfurt, FM 90900",2001-11-08 03:31:56,36:1b:b0:b7:ef:21,duanemartinez@yahoo.com,img/obama.jpg +Maria Sutton,692-26-5851,54341,"PSC 5846, Box 2447 +APO AA 95547",1948-03-30 15:17:34,bc:d8:66:8c:b2:79,tjohnson@hernandez-levy.com,img/obama.jpg +Andrew Carter,324-85-7826,68773,"USNS Holt +FPO AP 01604",1968-09-09 00:16:55,2e:75:5f:f9:94:44,xharris@hernandez.net,img/obama.jpg +Nathan Dixon,802-42-9219,64784,"77079 Krystal Shore +Whitemouth, SC 97148",1959-12-16 16:32:42,f5:04:b4:c6:0d:6b,tkelley@ward.com,img/obama.jpg +Janice Reid,191-81-4219,13801,"USNS Jenkins +FPO AA 08148",1921-11-20 22:08:36,df:d4:28:3f:f0:ca,vnguyen@yahoo.com,img/obama.jpg +Christopher Horton,174-24-7032,73091,"55640 Nathaniel Loop +Port Donna, MD 53706-1126",1954-08-29 16:09:29,e8:a6:fa:b9:3d:87,john99@hotmail.com,img/obama.jpg +Timothy Neal,546-95-8343,57693,"PSC 1395, Box 7105 +APO AP 22608-2353",2000-11-12 05:51:03,3d:68:84:1a:25:da,carol61@gmail.com,img/obama.jpg +Lacey Glass,283-76-1135,30231,"749 Cervantes Unions Apt. 633 +Mariaton, CO 61975-5311",1992-11-14 00:53:04,f6:56:14:f3:46:7f,lawrenceyu@gmail.com,img/obama.jpg +Sherry Shelton,622-22-1547,20652,"6801 Vega Ranch Suite 361 +New Colleenhaven, FM 83553",2000-05-01 16:19:33,f7:f8:7f:33:7f:9d,htravis@kelley.com,img/obama.jpg +Carrie Carter,774-62-1097,42798,"1936 Parker Estate Suite 014 +Bradleyborough, AL 00371",1945-11-11 04:19:23,38:2f:5b:86:71:c8,summerhill@yahoo.com,img/obama.jpg +Meredith Smith,677-93-3779,80232,"9816 Dillon Shores +New Laura, ID 38591",1949-11-25 12:20:41,c7:cf:24:dc:44:d1,jason88@romero-sloan.info,img/obama.jpg +Richard Horton,793-92-1374,69260,"60825 Williams Ford +Lake Stephaniestad, IL 73640",1942-02-16 06:22:15,68:d7:33:97:74:be,hamptonhoward@sanchez-gonzales.com,img/obama.jpg +Sandra Taylor,174-70-4497,70786,"909 Patricia Parks Apt. 206 +Lake Benjaminberg, MS 22144-6708",1962-07-07 10:35:05,b1:ba:65:7e:8d:8e,renee45@hotmail.com,img/obama.jpg +Jason Turner,876-12-6124,41627,"USNV Jennings +FPO AE 03574",1998-07-11 18:00:59,33:af:e8:73:d0:08,lnolan@hotmail.com,img/obama.jpg +Amy Arnold,113-52-2138,50501,"049 Williams Crossroad +New Vincentstad, MP 91814",2005-02-19 19:29:44,03:76:4d:d4:b1:3a,smack@ayala-davis.com,img/obama.jpg +Paula Moore,201-59-8142,60309,"22537 Nicolas Mountain +New Jessica, IN 41371-8099",1990-05-25 20:55:49,1b:41:ee:9e:07:0c,zsolis@crawford.com,img/obama.jpg +Susan Mcmillan,860-85-2896,55403,"49174 Merritt Rue +Adamsbury, NY 75094-4028",1929-12-06 17:35:45,ce:4c:fc:7a:64:a4,suarezandrea@jimenez.com,img/obama.jpg +Michael Hayes,322-46-2197,32004,"06906 Thomas Harbors Suite 409 +Lake Heather, CA 78770",1961-04-19 23:11:58,19:7b:94:94:0b:dc,mary02@montgomery.com,img/obama.jpg +Megan Zimmerman,142-95-4981,07739,"04715 Curtis Neck Apt. 713 +Port Christopher, WY 56562",2012-12-22 15:04:47,bc:16:9c:d0:77:e5,jasmineshepherd@mitchell.com,img/obama.jpg +Sarah Johnson,805-50-7075,38524,"7242 Wells Summit +Courtneychester, NM 76406-9692",1936-01-17 07:12:03,d8:76:56:76:42:b9,nathanielchaney@hotmail.com,img/obama.jpg +Benjamin Munoz,114-42-9129,88403,"27664 Steven Locks Apt. 199 +North Scott, NE 15414",1962-01-18 06:06:19,4c:6c:33:47:71:3b,patrickvega@brown-bell.com,img/obama.jpg +Mrs. Donna Galloway,842-12-9925,14252,"16803 Elizabeth Dale Apt. 725 +Lake Jordanport, FL 17668",1978-10-11 03:51:30,8c:e3:ea:f5:ed:14,claire50@scott-fischer.com,img/obama.jpg +Mark Buchanan,084-50-7964,72377,"848 Karen Grove Apt. 184 +Lake Rachel, VA 14816",2004-01-29 22:15:00,b8:55:d2:79:9c:06,natalie28@jones.com,img/obama.jpg +Brenda Jenkins,888-32-0738,31089,"72953 Thomas Lights Apt. 128 +South Ronald, OR 59995",1919-08-01 01:44:28,0f:9e:fc:8d:23:28,nsantiago@gmail.com,img/obama.jpg +James Stewart,036-96-1443,78522,"65255 Reese Route Suite 600 +South Jennifer, TN 03031",1928-09-30 04:19:02,63:c7:1a:24:a9:c2,edavenport@wallace-thompson.com,img/obama.jpg +Adam Marsh,549-27-2337,78869,"96754 Pitts Course +Fordland, NH 87598",1929-07-30 21:34:37,cd:f2:79:fd:7e:a8,villarrealryan@gmail.com,img/obama.jpg +Christopher Lamb,532-13-4531,74872,"55093 Martinez Ways Suite 559 +Allisonbury, OH 74898",1972-02-13 06:27:30,6b:35:1c:6a:65:50,cherman@adams.biz,img/obama.jpg +Antonio Smith,887-70-6055,12645,"4570 Lacey Crescent Apt. 730 +Lake Sarah, GU 26967-5183",1965-09-09 15:23:06,8b:a2:87:5f:34:6c,banderson@gmail.com,img/obama.jpg +James Martinez,091-41-7034,30904,"9102 Hill Islands Apt. 250 +West Michaelview, FL 98617",1997-03-29 06:15:26,fe:e4:69:26:a6:20,rrice@yahoo.com,img/obama.jpg +James Rodriguez,817-27-5768,11921,"8921 Perry Curve Apt. 040 +North Lance, LA 62741",1936-12-24 13:59:00,ca:f6:fb:16:06:bd,pagesarah@walters.com,img/obama.jpg +Melissa Stout,890-30-5035,29934,"123 Dixon Stream Apt. 435 +North Ryanstad, CO 36578-4349",1933-02-16 07:55:30,b0:67:a4:4e:66:d4,kathrynbrown@hotmail.com,img/obama.jpg +Kevin Lara,054-26-5069,30539,"04247 Jeffrey Curve Apt. 710 +East Jonathan, VT 21131",2013-09-04 04:29:29,bc:a3:bb:69:7d:cd,alexander10@norton-bell.org,img/obama.jpg +Isaac Johnson,317-84-3674,29207,"6430 Brian Common Apt. 164 +Lake Fredtown, AK 34718-0041",1992-09-02 01:18:13,f3:51:85:6f:51:53,mason26@huerta.com,img/obama.jpg +Sean Williams,316-39-0510,83124,"85480 Nancy Rapid Suite 287 +North Sydney, NH 79873-0146",2015-04-15 15:49:08,23:3c:a8:c9:a8:ce,rmiller@gmail.com,img/obama.jpg +Cassandra Hill,257-15-8357,76757,"908 Amy Rue +Brookebury, ME 38919",1944-05-06 02:35:28,cd:f2:15:8a:13:b5,nsnyder@wyatt.com,img/obama.jpg +Samantha Harmon,180-56-8395,16573,"20799 Tracy Turnpike Suite 902 +Martinshire, MP 16709-2398",1929-05-05 10:14:22,3c:0c:a6:d6:83:23,bmartin@scott-garcia.org,img/obama.jpg +Jessica Cisneros,103-06-2065,64931,"3182 Julia Forges Apt. 745 +Hillside, MD 56220-9047",1922-01-02 04:21:27,21:ae:c1:2e:b7:bf,sandrakane@lopez.net,img/obama.jpg +Jeffrey Scott,194-13-4032,73151,"8575 Dawn Brooks +South Phillipside, SD 95991-4343",1990-09-30 18:19:34,e7:8e:bc:76:67:d2,tiffanyyork@hotmail.com,img/obama.jpg +Stacy Lopez,367-77-3911,54301,"2893 Mcmillan Land Apt. 783 +Thomasbury, UT 47153-6776",1995-09-29 08:37:18,62:19:43:5d:8c:1b,bryanreyes@gmail.com,img/obama.jpg +Austin Hall,272-30-0581,82372,"10412 Crystal Pines Suite 492 +North Ashley, KS 77517",1937-04-11 09:22:11,c3:4e:c3:72:c5:51,tiffanyshaffer@gmail.com,img/obama.jpg +Ronald Thomas,010-92-8760,57622,"0678 Ashley Stravenue +Joyceberg, ID 95510",1970-02-04 03:56:08,10:0f:69:f3:25:ce,mlucas@jackson-hernandez.com,img/obama.jpg +Jacqueline Bryant,064-82-5889,11046,"41713 Tamara Track +East Erica, TX 12036",1919-02-17 11:01:49,84:d3:8a:f0:05:50,sharonthomas@hotmail.com,img/obama.jpg +George Lopez,492-62-6080,62380,"5339 Armstrong Way Suite 192 +West Jeffreyton, ND 85662-9707",1929-11-14 05:59:08,e4:80:3a:5f:c0:61,waretroy@lewis.biz,img/obama.jpg +Nathan Bradley,014-73-1254,95483,"8887 James Squares +Ellisside, WY 34190",1962-11-17 16:37:26,17:a4:27:2e:52:c2,theodorewyatt@stephens-evans.org,img/obama.jpg +Elijah Gutierrez,351-01-4624,56055,"90141 Knapp Views +Derrickside, VA 13939-8848",1924-10-10 02:04:37,76:3a:22:da:98:94,reneecurtis@hotmail.com,img/obama.jpg +Julie Young,128-16-2688,74835,"4663 Williams Turnpike Suite 449 +Port Steven, NM 94154-5896",1924-05-29 02:56:32,55:2b:0e:12:91:ae,davidgilbert@stone.com,img/obama.jpg +Mrs. Jennifer Jones,007-45-6731,78893,"6517 Carter Oval +Aguilarburgh, MN 07194",2015-05-07 19:22:49,97:8b:29:81:60:5f,hooverchristopher@yahoo.com,img/obama.jpg +Terry Collier,456-36-2131,85465,"PSC 1310, Box 6660 +APO AA 85991-9570",1957-10-05 13:20:47,a3:73:44:5e:12:98,jamesphillips@brown.com,img/obama.jpg +Anthony Nguyen,035-93-9970,23829,"1177 Chen Crescent +Damonport, AS 53625-6135",1997-03-01 23:04:15,eb:11:9a:1f:05:89,lejoshua@johnson.com,img/obama.jpg +Jamie Phillips,125-86-0701,83095,"58005 Parks Valleys Apt. 727 +East Jessicaburgh, PR 17936",1988-05-18 21:58:02,36:a7:5c:22:c8:2d,richard92@ellis-copeland.org,img/obama.jpg +Philip Colon,628-52-7564,68758,"4557 Holly Road Suite 830 +South Michaelshire, VI 61354",2002-05-01 11:43:51,21:b7:92:f1:72:af,mkirk@gaines.com,img/obama.jpg +Brian Sanchez,861-42-8922,67343,"191 Andrea Bypass +Kellyland, WV 80857",1938-07-16 23:21:29,99:0c:8b:c6:6a:7e,kellyjones@gmail.com,img/obama.jpg +Erin Shannon,717-36-8840,08963,"86677 Strickland Bypass +Greenside, KY 22412-1662",1931-05-21 20:12:24,50:54:88:c4:f3:b8,ftaylor@gonzalez.info,img/obama.jpg +Jennifer Lang,157-27-6206,93626,"9132 Hopkins Valley Suite 749 +West Marcusville, ME 61197",1958-02-08 18:54:25,e6:ad:94:30:e5:8a,paulamiller@riley.com,img/obama.jpg +James Mullins,514-47-2162,30122,"3021 White Mall Apt. 800 +South Brian, MS 02371",1920-01-23 02:30:41,14:ef:64:1b:77:8a,kristina12@hotmail.com,img/obama.jpg +Samantha Park,252-49-2385,62688,"43108 Sullivan Pass +Karenbury, GA 69336-3140",1954-02-10 04:52:30,82:47:1a:8c:92:fc,schmidtbrian@benjamin.com,img/obama.jpg +Alexander Allen,362-30-1247,12106,"163 Daniel Highway +Sandraberg, MN 31030-7656",1973-09-03 02:02:14,99:99:87:82:d7:65,jdaniel@gmail.com,img/obama.jpg +Vanessa Mueller,094-93-2878,41549,"9824 Warner Road Apt. 659 +North Brandi, NY 53438",1977-02-24 07:53:19,4e:fa:51:26:2c:48,jordan50@gmail.com,img/obama.jpg +Rhonda Gonzales,735-32-1319,76425,"9400 Joseph Knolls Suite 271 +Joshuatown, MI 51265-5266",1958-04-23 13:40:06,9f:1e:c8:c1:02:fe,ujones@walker.com,img/obama.jpg +Rebecca Anderson,626-41-4955,50945,"6457 Melissa Cape +Millstown, RI 25774",1931-10-04 11:06:06,6a:7c:37:c5:2b:18,robertcastro@barnes.com,img/obama.jpg +Christopher Kim,243-93-5297,79106,"Unit 5728 Box 4009 +DPO AP 24827-6406",1976-10-13 05:57:26,d7:2b:54:47:83:43,rgallegos@yahoo.com,img/obama.jpg +Phillip Farmer,033-57-1844,34913,"113 Marquez Road Apt. 958 +Thomasstad, CA 29533",1960-01-05 06:18:04,ce:f5:73:4f:78:fd,pellison@hotmail.com,img/obama.jpg +Richard Richmond Jr.,590-78-8000,41823,"36718 Brittney Hills Suite 926 +West Robertstad, MP 75110-8235",1988-07-05 01:24:09,98:db:9e:14:e0:a8,douglassteven@yahoo.com,img/obama.jpg +Jessica Gonzalez,841-33-9192,73430,"09883 Jason Corner +New Stevenshire, MD 74002",1986-10-07 18:26:24,bb:98:b5:e1:e5:30,nancyclayton@hotmail.com,img/obama.jpg +Justin Gutierrez,696-88-0067,60776,"8793 Daniel Ville Suite 663 +New Whitney, AS 42909",1934-05-13 08:47:24,27:fd:19:5f:88:98,singletonscott@houston.com,img/obama.jpg +Eric Smith,324-95-7419,23572,"50157 Maynard Route +Clarkbury, OH 16299-5472",1968-12-28 19:58:25,25:ca:a5:a2:3c:99,brittanyholloway@gomez.com,img/obama.jpg +Jessica Lane,354-61-6323,21870,"37163 Mackenzie Hill +North Paulbury, NM 74913-3914",1937-12-01 05:07:05,93:f5:3c:00:cc:bc,tjackson@newton.com,img/obama.jpg +Joe Hamilton,745-31-7035,76942,"766 Kim Gardens Suite 997 +East Julie, OH 26333-4963",1935-02-04 09:10:08,7b:bc:e9:ab:88:cf,christophersaunders@gmail.com,img/obama.jpg +Shawn Howell,514-72-2897,55455,"1992 Gregory Haven Suite 903 +Knightfort, AL 74924-4655",1957-06-01 06:51:26,80:4c:92:2c:60:d0,shelly74@yahoo.com,img/obama.jpg +Mr. Robert Hodges,367-19-8015,23557,"1563 Brenda Lane Suite 643 +East Michael, NY 46713",1937-02-10 11:00:21,c7:f9:0f:74:6e:78,brentjones@yahoo.com,img/obama.jpg +Austin Johnson,381-21-5146,55240,"7428 Chan Lodge Apt. 836 +Lake Maryside, CO 70538",1971-09-22 18:03:25,14:70:d5:5a:09:3e,brownadrienne@roberts.biz,img/obama.jpg +Cynthia Holder,154-87-2147,23315,"484 Rowe Creek +East Victorialand, CO 13697",1955-09-07 22:49:57,3f:6e:82:d1:21:c8,gabrielle46@riley-dean.com,img/obama.jpg +Kristen Cooper,191-10-3647,01723,"2037 Gregory Junctions +Patrickland, PR 53068",1923-08-11 20:53:15,aa:9b:36:96:82:0f,arellanosydney@gmail.com,img/obama.jpg +Denise Kim,841-22-4033,67035,"6188 Sullivan Tunnel +South Andreaburgh, GA 40519",1918-10-23 19:46:46,cf:66:38:29:ee:d1,bergerarthur@ochoa.com,img/obama.jpg +Stephanie Medina,689-40-8829,30100,"416 Zachary Mills Suite 627 +Hammondburgh, MO 26813",1956-08-28 07:56:33,ad:05:f9:49:12:de,john02@johnson-liu.com,img/obama.jpg +Chelsea Burke,728-99-8445,34562,"29064 Katherine Ports Suite 895 +Port Jerrybury, NH 90181-7837",2004-09-14 14:33:03,8d:c1:2d:bc:41:1f,xjames@fisher.com,img/obama.jpg +Amy Jones,760-02-7667,58469,"PSC 3606, Box 6359 +APO AA 73626-1988",1939-10-30 22:45:19,1d:2c:54:47:54:7f,pedrodavis@hotmail.com,img/obama.jpg +Eric Wilson,605-25-1683,35353,"0688 Benitez Shore +Mckenzieport, HI 61370",1960-12-07 05:41:46,66:71:1c:e7:80:ea,williamsvanessa@gmail.com,img/obama.jpg +Jessica Henderson,333-60-5737,86111,"348 Lisa Turnpike Apt. 388 +West Michael, NV 73628",2004-11-13 16:57:21,0a:7a:0c:33:b3:2f,bennettleslie@mendoza.com,img/obama.jpg +Jeffrey Hughes,574-49-0374,17907,"USNV Griffin +FPO AE 69458-2081",1976-04-05 04:43:42,60:61:c0:c0:c5:c4,biancamiller@hotmail.com,img/obama.jpg +Cassandra Mayo,080-74-3604,47100,"1211 Haley Wells +Smithbury, CO 44730-4024",1927-08-25 09:53:28,67:c2:3f:54:e2:b3,nrichmond@hotmail.com,img/obama.jpg +Evan Aguilar,197-90-8971,66607,"0178 Justin Gateway +West Shannon, DC 91341-1610",1973-10-18 14:18:31,ba:b1:1d:75:bf:b5,michelle79@davis.com,img/obama.jpg +Jamie Sellers,899-25-6897,41386,"4129 Ortiz Roads Apt. 080 +Delgadoside, MA 51345-5247",2003-01-23 03:07:51,09:34:ea:aa:5b:b5,breannavazquez@yahoo.com,img/obama.jpg +Ann Evans,886-72-9583,25122,"0006 Robertson Shoal Suite 481 +Port Joseph, NE 07322",1928-02-09 02:18:32,5c:e3:7f:86:5d:f4,carloschung@thompson.com,img/obama.jpg +Stephen Cordova,784-11-1099,27007,"Unit 3301 Box 5801 +DPO AE 33798",1988-05-10 13:35:13,3c:58:de:4e:36:1d,courtney19@hayes.net,img/obama.jpg +David Gilmore,116-28-1638,09782,"529 Anthony Extensions Suite 988 +Blairchester, IA 55442-3452",1996-03-18 18:30:41,e1:5f:8c:b8:b8:92,jmorgan@stevenson-finley.com,img/obama.jpg +John Vega,867-24-8982,15762,"9361 Nicole Spring +Dianaport, IL 60504-4785",1956-07-02 10:49:48,56:5c:a3:e2:32:7b,smithkimberly@yahoo.com,img/obama.jpg +Jay Oconnell,048-49-6775,79527,"16358 Kaitlin Expressway Suite 429 +Lake Marthaburgh, CT 81254-5521",2009-06-11 07:19:59,d3:b3:ed:78:74:ef,danawright@jones.info,img/obama.jpg +Ms. Pamela Moody,607-78-7972,44421,"USNS Harrison +FPO AE 27319-6408",1930-07-22 23:47:18,28:c1:c2:1c:ed:b6,dunlapdavid@gmail.com,img/obama.jpg +Chad Forbes,575-93-7863,75914,"8264 Meagan Plaza Apt. 092 +Leahland, VA 35044-6333",1928-06-16 07:53:14,96:1c:e6:9c:fe:5b,jessica73@alvarez.com,img/obama.jpg +Maria Thornton,449-80-1318,30366,"75780 Daniel Shore Apt. 215 +West Jill, PR 15839-0899",2006-11-28 07:26:41,3f:db:17:80:f5:96,handrade@marsh-evans.com,img/obama.jpg +Rachel Hernandez,299-95-7200,21041,"10849 Angela Prairie Suite 492 +East James, IA 88304-2917",1928-10-11 21:19:24,5b:74:d7:34:57:4a,howellmelissa@thompson.com,img/obama.jpg +Kristie Smith,565-77-1693,33089,"880 Thompson Dam +Ashleystad, CT 04169-4151",1944-10-23 03:37:14,b0:06:78:72:2a:e8,tmorales@gmail.com,img/obama.jpg +Antonio Middleton,029-33-8816,12071,"207 Weiss Row +North Jessica, ND 05594",2005-10-06 20:14:14,35:2c:61:bd:07:04,david96@yahoo.com,img/obama.jpg +Kristen May MD,639-86-0265,16952,"9971 West Lake +Bryanburgh, CA 55560",1944-10-16 22:35:18,4e:2f:3c:e2:6b:4e,isaac76@yahoo.com,img/obama.jpg +Edwin James,696-36-5005,44770,"017 Peterson Lock +Lake Hannah, VI 50988-7944",1984-01-19 04:00:09,c5:0e:fa:91:cd:c1,paulkhan@watson-morales.net,img/obama.jpg +Joanna Rice,337-05-7259,06661,"9710 Ryan Glen Suite 093 +North Scottchester, NE 40093",1949-06-02 23:17:21,f6:f2:64:92:fa:9f,susanmiller@patel.com,img/obama.jpg +Courtney Walker,508-25-1321,92461,"639 Joshua Plains +Reidfurt, PR 79999",1974-01-02 23:46:34,91:12:65:1e:ab:38,alyssa74@yahoo.com,img/obama.jpg +Brandon Welch,127-92-2967,96805,"71191 Guerra Trafficway Apt. 128 +Lake Lynnland, FM 42622",1968-05-12 05:50:22,81:72:51:76:ac:cc,katiedurham@smith-turner.com,img/obama.jpg +Matthew Brown,726-53-4087,29109,"0797 William Hills Apt. 763 +Ralphberg, KY 71225",2006-06-07 06:14:11,90:51:cd:66:70:59,keithgordon@peterson-jacobs.com,img/obama.jpg +Joe Williams,317-33-0261,77772,"533 Todd Dale +Port Toddport, PR 94732-5631",1959-04-21 01:46:04,87:21:1a:c5:e1:cf,agregory@hotmail.com,img/obama.jpg +Daisy Carpenter,878-29-7020,21025,"24228 Wanda Cove +Port Amandaville, NH 65702-3036",1968-05-13 10:38:18,db:39:1b:26:2c:d9,frederick99@brown.biz,img/obama.jpg +Dr. Robert Rios,828-76-5342,17680,"16589 Pratt Rapid +Mccoymouth, OK 23059-3503",1956-03-25 15:38:48,ca:b5:79:c8:a9:71,garellano@johnson.org,img/obama.jpg +Jeremy Gray,436-85-2676,44998,"03329 Johnston Corners Suite 633 +Woodsberg, VA 41509-0330",1988-02-16 21:08:23,fc:ff:48:a4:e3:3e,mgoodwin@tyler.com,img/obama.jpg +William Alvarez,175-45-6167,29395,"01934 Davis Common Apt. 745 +North John, MP 90039-5011",1934-03-25 17:41:01,f3:d0:93:ec:17:c5,michaelellis@berry-evans.com,img/obama.jpg +Juan Wood,383-55-8667,28568,"973 Bishop Junction +New Mark, MO 55741-0459",1992-03-06 16:15:42,ae:4b:3b:75:db:e2,swilliams@hotmail.com,img/obama.jpg +Robert Cox,246-27-8613,11401,"52543 Powers Parkways +West Stacystad, SD 64650-7000",1926-05-30 00:23:56,09:37:54:72:4b:17,frankbrown@long.com,img/obama.jpg +Bradley Jenkins,010-58-0197,41884,"949 Williams Unions Suite 125 +Wilsonland, NH 06952-7786",1941-01-22 08:20:51,e4:33:59:5f:f2:19,harmondustin@williams.net,img/obama.jpg +Douglas Wiley,423-33-2832,92249,"384 Gilbert Crest Suite 381 +South Ryanburgh, CT 64661",1975-02-17 02:04:35,a1:f5:a8:b3:f9:98,cody08@hotmail.com,img/obama.jpg +Paul Gomez III,766-11-0909,00760,"5011 Linda Extension +New Joseph, AK 76941-5773",1956-11-14 23:55:16,76:58:9f:db:8e:f0,eprince@lawson-harding.net,img/obama.jpg +Jesse Kirby,081-84-9611,76578,"94449 Michelle Forge Suite 077 +Lake Hayley, MP 10279-9449",1970-04-29 00:52:13,f2:98:0e:54:67:ee,andrewperry@odonnell.com,img/obama.jpg +Anita Bailey,685-39-8592,22982,"94424 Jason Lane +Port Lorettaside, IA 67446-3433",1956-08-28 05:09:21,f1:57:c6:b8:1b:5b,zcoleman@yahoo.com,img/obama.jpg +Patricia Scott,524-30-7466,40540,"314 Patty Lakes Apt. 611 +Port Suzanneville, AR 42282-9395",1972-05-23 11:52:50,e9:a3:30:be:b5:f3,william25@rhodes.org,img/obama.jpg +Tabitha Williams,589-42-2654,43879,"36250 Kyle Extensions +Taylorton, WA 66715",2013-01-04 22:05:21,70:59:fb:c0:a8:50,conniemartinez@smith.net,img/obama.jpg +Kari Phillips,370-54-4170,67471,"48358 Timothy Brook Apt. 392 +West Angelaberg, AL 24775-7259",1934-01-14 18:02:20,03:fc:d0:1e:9d:34,patriciameza@harris.com,img/obama.jpg +Christopher Hunt,537-70-3999,60561,"739 Scott Avenue +Hollowaytown, NC 50617-4259",1946-07-06 18:01:43,91:51:f2:76:d1:5c,juanwall@baker-perry.net,img/obama.jpg +Alexander Davis,771-39-7935,57016,"844 Dean Locks +Kerriburgh, MH 44524-7090",2003-06-19 16:14:11,b2:35:0e:ee:f8:a2,matthew28@mendoza.com,img/obama.jpg +Courtney Gonzalez,492-51-2071,57043,"77371 Marvin Harbor +Sandrafurt, MP 42692",2015-08-15 17:18:52,26:49:52:1e:e6:6f,vschultz@frazier.com,img/obama.jpg +Claire Ross,589-62-8275,72379,"83895 Smith Shores Apt. 454 +Tammybury, VI 08856",2003-01-17 02:29:11,5b:08:78:bd:e7:b2,pbooth@mitchell.com,img/obama.jpg +Craig Torres,044-75-0028,18660,"USNS Clark +FPO AE 08431",2008-11-09 22:31:31,ab:dd:20:6c:40:f4,amberowens@yahoo.com,img/obama.jpg +Shawn Love,725-46-2783,55048,"066 Michaela Tunnel Apt. 511 +Laceyshire, ND 10601-4135",2006-01-26 08:15:07,8c:9c:71:82:05:02,brenda58@werner.org,img/obama.jpg +Andrea Henson,461-08-6552,60117,"80546 Anthony Isle +Malloryhaven, VA 36021-6546",1957-12-12 16:29:37,24:18:05:99:ea:0d,kelsey25@yahoo.com,img/obama.jpg +Christopher Sims,350-70-6743,56268,"007 Marcus Rest +Isaacburgh, WA 16440-6099",1987-09-21 20:31:49,7b:73:b8:23:d3:4d,tonya76@gmail.com,img/obama.jpg +Luis Mcneil MD,059-40-2721,51524,"9474 Daniel Mission Suite 261 +North Theresaport, VI 05785",1959-03-03 00:53:23,1d:eb:89:cb:f4:5a,bryan50@greene.com,img/obama.jpg +Terri Silva PhD,741-37-6415,15920,"55408 Cox Ways +East Claire, PR 25406",1997-12-18 02:22:25,bb:a5:ba:b8:fa:7a,pamela18@gmail.com,img/obama.jpg +Randy Reyes,588-46-4828,24687,"21673 Todd Glen Suite 714 +New Joshuachester, MT 57463-0311",1987-05-07 14:14:49,41:c6:48:8f:cf:6f,samanthalynch@gmail.com,img/obama.jpg +Tammy Dalton,432-78-1397,52651,"02525 Zachary Glen Apt. 693 +North Kristenborough, NY 97849-6583",2006-03-19 23:47:33,4e:4e:36:53:8e:88,kristinabarajas@johnson.net,img/obama.jpg +Rachel Henderson,332-26-5777,03084,"0782 Kelley Causeway Apt. 538 +Lake Adam, IA 91986-4694",1922-10-04 23:44:02,f7:06:59:22:64:47,frenchheather@white.com,img/obama.jpg +Benjamin Andrade,873-43-4751,79119,"PSC 6201, Box 8741 +APO AE 49103",1922-01-08 07:40:50,7a:e3:d3:5b:ea:54,spencerjoseph@gmail.com,img/obama.jpg +Elizabeth Baker,017-81-2287,12635,"893 Reyes Mews +Coopermouth, OK 41593-5702",1995-04-23 09:39:41,db:b6:4d:23:10:61,njuarez@johnson.com,img/obama.jpg +Brenda Duke,394-53-0320,04614,"484 John Ranch Suite 055 +Cunninghamfort, PA 44474",1935-09-27 02:59:57,1b:77:69:a6:b0:5d,heather50@yahoo.com,img/obama.jpg +Mary Holloway,435-75-8495,47305,"336 Dominguez Canyon Suite 941 +New Michaeltown, MN 53014-5991",1972-08-16 15:41:13,df:08:f7:77:b4:fd,timothy03@shannon.biz,img/obama.jpg +Melissa Glover,501-74-5318,95495,"0222 Kimberly Mission +Fergusonton, VA 86586",1928-06-03 14:29:05,9d:0e:37:95:51:8f,asimmons@chaney.net,img/obama.jpg +Kenneth Ruiz,521-44-4928,97546,"484 Lisa Mall Apt. 836 +Port Perry, PR 56417-8836",1944-06-30 09:34:47,e9:70:3a:22:a7:c9,ymarshall@parks.com,img/obama.jpg +Jessica Tate,494-53-0303,39541,"2301 Jennifer Key Apt. 484 +New Bryan, MH 72131",1930-03-21 21:28:57,4c:b8:79:36:46:9d,manningchristopher@gmail.com,img/obama.jpg +Carla Hughes,857-82-7993,42809,"PSC 0072, Box 5506 +APO AE 65035-2205",1946-07-20 06:41:49,43:f7:b0:ee:65:07,rreyes@mckinney.biz,img/obama.jpg +Mary Cook,654-33-1994,85116,"5191 Brown Via +East Lisatown, OH 47588-1485",1983-07-17 16:48:46,61:0f:2b:33:45:cb,bwelch@gmail.com,img/obama.jpg +Danielle Alexander,131-88-9674,63835,"3602 Brown Cove +East Dawn, DE 81602-7842",2002-04-02 02:13:16,72:21:5f:90:32:30,roy69@tucker.org,img/obama.jpg +Jessica Rogers,117-79-7664,39822,"663 Paige Springs Apt. 173 +Rachaelmouth, AZ 65005",1947-07-06 15:40:21,07:c0:17:41:0e:62,baguilar@hotmail.com,img/obama.jpg +Frederick Robinson,040-31-8457,90421,"Unit 2635 Box 3417 +DPO AE 59349-2864",1976-11-04 14:43:59,36:a7:c5:ce:f7:96,ywatson@hotmail.com,img/obama.jpg +Daniel Smith,598-68-2953,91707,"130 Sawyer Loop Suite 780 +North Matthew, DE 54737",1922-10-23 04:42:15,17:08:56:ce:53:4b,econway@yahoo.com,img/obama.jpg +Claudia Rodriguez,124-29-4568,62077,"83828 Sanchez Lodge Apt. 685 +Sullivanton, PA 86491",2007-02-05 04:00:06,4d:22:d4:5a:22:9f,morrisbrian@williams.com,img/obama.jpg +Patricia Green,753-93-4191,92103,"275 Johnson Row Suite 027 +Kristinetown, SD 79943",1987-04-05 16:13:53,5c:fc:33:36:43:00,cheryl85@gmail.com,img/obama.jpg +Timothy Houston,112-45-6014,04795,"05844 Jessica Rest +Lake John, TN 36775",1966-08-12 17:04:59,1e:77:73:a3:35:3d,jillian15@hotmail.com,img/obama.jpg +Stephen Salazar,547-85-9773,16789,"55840 Walker Square +New Dustin, ME 07103",1968-04-12 20:22:32,c4:4e:12:2a:88:cf,gsmith@gmail.com,img/obama.jpg +Keith Washington,885-04-3565,19752,"991 Jennifer Estates +Montgomeryburgh, HI 23719",1953-10-17 23:51:34,c0:bc:4f:9c:f2:b9,imartin@gmail.com,img/obama.jpg +Jacob Sanders,369-52-4062,27373,"Unit 7638 Box 8840 +DPO AP 72645",1976-12-01 09:20:27,05:a6:c4:57:e5:81,coryharmon@wilson.com,img/obama.jpg +Wesley Moore,701-09-6644,86550,"907 Webb Lane +Carterstad, CO 63054",1934-05-16 04:30:59,73:f9:e8:cd:4c:fc,willie87@yahoo.com,img/obama.jpg +Makayla Roberts,490-54-5256,23771,"191 Ramirez Roads +Danielhaven, HI 62850",1982-08-25 10:50:10,e3:c8:a4:7a:a8:ae,lgarcia@gmail.com,img/obama.jpg +William Vega,225-72-8881,86999,"43351 Dougherty Mountains +New Christopher, ME 09890",1929-08-25 04:37:15,a9:08:b8:e9:6a:0b,susan02@hotmail.com,img/obama.jpg +Jonathan Riley,577-17-5887,27888,"0007 Boyle Islands +Lake Ericton, OH 23370-7753",1943-03-23 23:03:44,51:c0:d2:41:36:24,obrienjohn@gmail.com,img/obama.jpg +Dr. Meghan Gallagher,570-66-7997,07790,"494 Teresa Ports +East Kevin, VT 01064-5346",1946-05-22 02:30:25,8f:e9:e7:41:ec:e8,ortizteresa@robinson.com,img/obama.jpg +Ian Yates,697-67-6483,71995,"36137 John Corners Suite 198 +Larsenborough, ME 91594-2109",1971-05-30 10:08:22,41:a2:d8:0e:68:ad,christinewalsh@wood.com,img/obama.jpg +Debra Farrell,748-34-9473,88827,"113 Teresa Crest Suite 464 +Wernerside, HI 49695-3220",1996-11-25 06:32:55,2f:af:bb:1d:69:4b,janicemarquez@gmail.com,img/obama.jpg +Maria Roth,347-71-2909,31747,"825 Shah Land +South William, SD 92751-2885",2001-05-04 12:26:18,de:f7:81:39:7e:c0,paynetimothy@mitchell-lopez.info,img/obama.jpg +Louis Boyd,371-76-0873,11741,"5060 Richards Shoals +Johnsonbury, CT 26899",1966-10-22 15:46:20,58:85:74:2f:c4:dd,duranmelissa@jackson.com,img/obama.jpg +Amanda Sexton,432-45-8129,08579,"45405 Gregory Skyway +North Maria, IL 52394",1929-03-12 18:09:49,77:1d:f9:c4:7b:ba,wgarcia@gmail.com,img/obama.jpg +Heather Leonard,714-88-9530,86195,"1494 Rivera Ridges Suite 413 +Amyland, ID 25086-8700",1981-12-11 02:32:55,21:de:dd:af:97:dd,alyssaduarte@jenkins.com,img/obama.jpg +Alexander Banks,898-35-3321,57412,"28334 Deborah Forks Apt. 951 +Pamelafurt, PR 95489-7764",1994-08-04 00:09:51,54:23:c8:b0:8d:1e,richard51@yahoo.com,img/obama.jpg +Kevin Davis,789-36-7815,90174,"65691 Boone Highway Apt. 859 +South Daisyfort, IL 26969-4626",1987-12-22 05:22:49,a0:dd:98:6b:81:bf,beckbrian@hotmail.com,img/obama.jpg +Tyler Valencia,756-82-6448,23115,"802 Wallace Way +Jacksonville, VA 38951-9828",1961-02-27 03:28:36,05:42:03:2c:29:26,wnguyen@gmail.com,img/obama.jpg +James Edwards,043-24-3293,11842,"PSC 7815, Box 0079 +APO AP 30767-9066",1954-02-22 17:07:57,f0:a2:53:fb:ac:8a,vbradford@gmail.com,img/obama.jpg +Allison Grimes,583-50-3602,37821,"02992 Smith Mill +Port Cynthiaburgh, OH 86767",1965-12-21 10:53:45,2d:6b:eb:56:7b:5e,pstone@munoz-kennedy.com,img/obama.jpg +Brenda Johnston,816-43-2388,21678,"907 Valerie Springs Suite 086 +West Sabrina, AK 11691-9573",1920-10-12 21:51:17,36:1a:85:0e:10:d5,bakerelizabeth@rasmussen.com,img/obama.jpg +Robert Gallagher,416-95-2078,10959,"60672 Lisa Street +East James, VT 63447",1924-08-30 15:24:16,59:ac:d3:0f:20:a1,garciaemily@collins.biz,img/obama.jpg +Veronica Williams,650-95-5871,57613,"325 Kevin Radial Apt. 853 +Scottton, IA 54160",1936-06-02 11:30:47,7a:ae:41:bc:92:30,hernandezsandra@yahoo.com,img/obama.jpg +Michelle Smith,317-01-7634,83380,"PSC 4345, Box 7123 +APO AA 21058-5618",1967-08-28 00:41:37,ce:00:ac:ec:4f:98,desireemartinez@marsh-graham.biz,img/obama.jpg +Melissa Kline,547-12-7789,80582,"8709 Aaron Brooks +Port Franciscotown, CA 94506-4580",2009-11-05 08:23:29,ad:51:54:aa:aa:d7,stephenromero@davis.com,img/obama.jpg +Erin Garcia,582-91-0735,80351,"2441 Davis Freeway +West Joshuaside, PW 96620",1942-12-29 21:13:58,4f:21:c3:9b:d6:15,pzuniga@rodriguez.com,img/obama.jpg +Ashley Harrison,852-18-5302,54719,"168 Melinda Pass +Lisahaven, CO 44255-9759",1921-09-20 20:37:31,71:19:9f:9c:50:54,kimberlyhuang@campos.com,img/obama.jpg +Amber Booker,181-89-5694,74329,"168 Clark Summit Apt. 931 +East Denisebury, PR 48904-2840",1939-03-05 10:11:51,cc:6d:db:84:f4:8b,jonesthomas@yang.com,img/obama.jpg +Kelsey Montoya,642-73-2470,38692,"23717 Hall Square +South Jane, IL 54196-5525",1983-03-12 22:34:22,0c:0e:cd:d7:4c:7a,richard14@hotmail.com,img/obama.jpg +Benjamin Gonzales,037-68-0052,20235,"7102 Sweeney Lake Apt. 318 +East Kimberlyfurt, FL 12440-6649",1957-12-16 08:28:09,72:af:75:9d:e1:63,chenkelly@rodriguez.com,img/obama.jpg +Katie Adams,291-45-2156,54523,"051 Marshall Mountain +Hughesstad, WV 15643",1940-08-14 01:21:55,65:a8:f0:0c:dc:09,jerry48@guerrero.com,img/obama.jpg +Angela Weiss,684-10-9722,37499,"251 Simmons Forge Suite 185 +Fostermouth, NV 05758-9286",2009-02-11 09:56:08,03:c5:62:c4:83:41,zmoore@yahoo.com,img/obama.jpg +Anita Chung,486-24-0419,62253,"22644 Munoz Park +North Tristan, VI 49193-2177",2009-08-09 16:46:55,97:a3:f7:a3:6e:1a,wclark@nelson.com,img/obama.jpg +Shelby Johnson,841-50-3571,86213,"87964 Allen Crossroad +Lake Kimberly, OH 53551",1970-09-28 03:44:41,84:80:3f:eb:fd:de,amytorres@barrett.com,img/obama.jpg +Alexander Foster,668-95-3869,71431,"0901 Gary Forest +Lyonsland, VA 12159",1937-03-21 01:10:39,bc:de:6b:0d:e0:82,matthew63@hotmail.com,img/obama.jpg +Louis Young,708-24-7622,44366,"75123 Townsend Parkways +Lake Markton, VI 14256-0977",1931-03-31 15:38:57,00:40:b9:15:82:92,rallen@gmail.com,img/obama.jpg +Michelle Mccoy,146-51-9260,99728,"10281 Cohen Dale +Aaronstad, WY 85494",1977-11-12 16:24:28,7f:88:44:1c:dc:76,kaitlyncameron@gmail.com,img/obama.jpg +Karen Johnson,372-20-9303,49807,"22308 Brandt Drives +Veronicatown, CA 04371",1992-11-13 04:42:25,10:8b:95:6d:dc:25,nsullivan@tucker-franklin.com,img/obama.jpg +Andrew Hopkins,889-12-9026,66711,"11587 Tony Flat Apt. 619 +Stokesfurt, PW 90203-1132",1970-11-21 08:43:39,e6:28:2c:ac:5e:d4,sullivanmichael@gmail.com,img/obama.jpg +Christine Wright,532-33-4672,22052,"270 Kayla Forges Suite 182 +West Craigmouth, LA 22423",2010-07-05 09:45:18,e4:a6:f6:00:9c:62,ebrown@yahoo.com,img/obama.jpg +Joanna Brown,408-13-8145,02185,"66038 Jasmine Parkway +Courtneytown, NM 85667",1967-04-08 08:41:42,eb:6f:a7:3b:26:7e,kimberly91@gmail.com,img/obama.jpg +Nathan Stephenson,184-49-8939,04189,"053 Gray Valleys Suite 646 +Serranoberg, WA 74647-8374",1946-09-02 17:52:50,5f:46:8c:73:0b:28,michellemorgan@hotmail.com,img/obama.jpg +Sandra Rowe,817-53-9656,25495,"0498 Carter Fork +West Dawn, NM 89608-9682",1964-08-26 22:04:55,ce:36:4f:cf:c0:cd,orozcotroy@yahoo.com,img/obama.jpg +Bryan Gutierrez,372-68-6315,49762,"016 Acosta Street Suite 433 +Glasstown, NH 14359-8491",2017-04-17 07:31:40,db:9e:ed:ad:cb:bc,bellmelissa@yahoo.com,img/obama.jpg +Michelle Park,893-01-1669,87154,"80576 Angela Forks +Port Jill, OR 00855",1917-12-31 11:36:16,b0:a8:71:96:3d:00,gonzalezcindy@nash.net,img/obama.jpg +Jeremiah Long,153-11-4893,24265,"07595 Richardson Spurs Apt. 377 +Christopherfurt, KS 83400-2891",1939-08-11 05:45:02,e1:42:02:43:9e:c0,brockjeremy@riggs.biz,img/obama.jpg +Laura Campbell,082-05-7870,82856,"USS Moore +FPO AE 41593",1922-04-21 10:58:22,a2:58:73:8c:b2:b9,aprilgarza@pollard.com,img/obama.jpg +Pamela Humphrey,855-63-8636,70268,"3481 John Trafficway Apt. 255 +Port Mitchell, NC 47383",1948-02-09 05:15:25,23:f4:fe:dd:01:bf,josephsmith@bowers-cole.com,img/obama.jpg +Kevin Munoz,772-39-7990,03709,"66515 Sarah Parkway +Joseville, FL 22382",1991-10-08 15:55:22,c1:c4:7e:58:de:d2,gparks@gmail.com,img/obama.jpg +Becky Wright,657-56-1302,01593,"826 James Stream +New Justin, NE 58526",1994-07-04 10:28:45,c7:03:56:a7:1a:38,johnsonwilliam@finley.biz,img/obama.jpg +Susan Munoz,678-97-9443,76923,"80532 Taylor Lake Suite 838 +Lake Nancy, ME 19170-1399",1958-08-03 22:34:56,dc:69:7f:b1:2a:c5,rogersmargaret@hotmail.com,img/obama.jpg +Martin Richard,696-86-0324,07176,"47787 Moore Estates Apt. 791 +Port Alicia, FL 44475",1927-10-26 09:39:28,26:39:44:00:36:66,jamie15@gmail.com,img/obama.jpg +Lori Patterson,608-34-8723,39641,"55646 Christina Highway Apt. 602 +Joneschester, WY 77033",2006-08-04 12:39:36,3f:4b:24:b7:93:c7,tknight@nichols.com,img/obama.jpg +Karen Gray,684-07-0873,87054,"04702 Roberts Parkway +West Christopher, NH 10151",1962-05-07 09:33:58,2a:d2:8a:73:45:d7,tracystone@giles-davis.org,img/obama.jpg +Matthew Jones,256-23-1492,76023,"08494 Alisha Glens Apt. 462 +Amberhaven, OR 94685",2013-11-15 04:46:05,cb:c2:5e:28:b8:31,jenna91@cervantes-robinson.com,img/obama.jpg +Alexis Bell,845-31-5885,75562,"635 Russell Valley Apt. 725 +Jessicaberg, MN 06774-5568",1967-09-05 22:30:00,a8:ba:c7:d7:2a:a7,marcus80@yahoo.com,img/obama.jpg +Jennifer Allen,184-91-6113,68514,"Unit 3371 Box 4075 +DPO AA 90018-2695",1986-12-28 10:53:04,4c:68:3f:8b:37:be,mgibson@williams.org,img/obama.jpg +Mr. Jeff Holt MD,865-78-4448,83491,"3323 Justin Cove +Mindychester, MI 12757-0539",1950-08-14 13:51:29,d0:08:c1:e1:74:e1,kimberly96@griffin-robinson.net,img/obama.jpg +Joseph Montgomery,301-62-2025,33746,"5546 Li Field +Nicholsonberg, AZ 88911",1966-07-21 06:04:45,54:90:e3:e0:0d:6b,phelpsmary@johnson.com,img/obama.jpg +Frederick Baker,760-31-9135,36270,"238 Kimberly Unions Apt. 273 +New Shawnstad, AK 19107-8990",1944-02-28 18:37:34,38:eb:ab:bf:e0:66,sscott@patel.org,img/obama.jpg +Larry Soto,052-37-6166,75759,"56257 Bright Port +North Paige, FL 21265-1186",1934-09-14 09:05:28,a9:cc:40:12:96:31,dkent@underwood.com,img/obama.jpg +Susan Robinson,834-45-4682,87998,"373 Karen Loaf +Burtonshire, IL 38216",1973-12-28 17:32:33,f5:c9:d0:04:1b:86,andersonsusan@hotmail.com,img/obama.jpg +Erin Boyd,174-71-6748,27220,"2646 Wells Prairie Apt. 700 +Lake Christophermouth, TX 03618-6110",1961-11-01 14:54:45,31:87:d5:10:b7:47,ehammond@lowe-sanchez.com,img/obama.jpg +Connie Jackson,014-07-8161,05887,"USNS Brennan +FPO AE 64819",1953-11-18 18:00:33,03:a0:48:45:9a:4d,kjordan@yahoo.com,img/obama.jpg +Samantha Cantrell,064-87-3280,98995,"6006 Cantrell Islands +South Garyshire, FL 67612-2546",2004-07-18 19:20:53,9c:7c:04:e8:29:ef,brittany07@hotmail.com,img/obama.jpg +Samuel Allen,350-20-3425,97073,"56593 Jessica Bypass +Williamhaven, CT 43326-3000",1989-01-06 16:03:31,a3:e4:37:21:71:d7,hwallace@li-miller.com,img/obama.jpg +Alison Foster,227-17-8608,77563,"26213 Brian Branch Suite 026 +Matthewberg, NV 39718-2506",1988-08-18 08:31:43,06:8a:54:d4:fc:10,kayleeowens@yahoo.com,img/obama.jpg +Thomas Lester,217-05-2658,90528,"07164 Doyle Haven +West Brittanyton, NJ 01143",2006-03-26 07:19:15,c2:8b:8c:fe:ef:99,ruben43@gmail.com,img/obama.jpg +Jacqueline Romero,657-39-0278,94371,"71866 Dougherty Vista +New Corey, AL 10407",1960-09-20 01:18:42,25:6f:7f:53:bb:3a,george17@willis.com,img/obama.jpg +Jake Williams,644-96-5084,66318,"7941 Baldwin Flats +West Cameronfort, MA 79037-5967",2012-09-11 05:44:33,95:6d:a1:1e:8e:7a,tracyruiz@evans.com,img/obama.jpg +Lynn Robinson,029-54-1946,76295,"57750 Porter Junction +West Aliciafort, NM 87239-0145",1962-02-15 11:18:08,f4:58:b9:fc:d8:7f,williamslarry@howell.com,img/obama.jpg +Lori Moreno,696-01-8493,52769,"61803 Michelle Shore +West Sarahhaven, WY 55045-9707",2016-01-02 15:03:25,ce:8c:c2:bf:4e:52,kyle03@gmail.com,img/obama.jpg +Thomas Mcguire,616-50-7147,14530,"4327 Anita Square Suite 168 +Bellmouth, MT 81156",2002-04-18 07:35:02,4c:f7:0c:9d:48:ef,leejohn@yahoo.com,img/obama.jpg +Jason Clayton,600-81-2559,55831,"7086 Farrell Views +Lake Andreaside, UT 29029-6924",1987-09-02 07:32:54,a2:c3:98:28:e9:1a,daviskevin@stewart.com,img/obama.jpg +Stephanie Cunningham,572-14-1724,73459,"89288 Christine Pine Apt. 875 +East Andrewtown, CT 89161",1968-09-13 18:31:01,c5:2a:33:4d:fc:0b,taylorjames@hotmail.com,img/obama.jpg +Anthony Young,545-95-6062,87134,"Unit 0358 Box 0343 +DPO AE 00697-4312",1989-04-16 16:03:57,1a:31:24:84:8b:43,kayla08@newton-holmes.org,img/obama.jpg +Christian Young,442-01-1782,55373,"554 Torres Loop +New Dennisville, MN 77111-2924",1980-12-22 00:52:18,71:38:18:91:46:de,joy47@johnson.com,img/obama.jpg +Connor Gray,682-94-4580,29703,"50211 Atkins Port +Vargasfort, AK 59124",1926-11-01 17:44:31,ab:7b:86:dc:21:48,victoria59@yahoo.com,img/obama.jpg +Cheryl Wilson,231-38-5799,52924,"79443 Philip Route Apt. 841 +West Kaylamouth, CO 43291",1991-12-13 04:45:22,e5:8d:2a:57:1c:c9,adamlewis@bailey.com,img/obama.jpg +Sean Webb,028-40-1534,13223,"230 Edwards Manors +Angelaland, ND 70207",1965-11-28 12:19:22,7e:46:41:06:1c:76,jennifer59@carter.com,img/obama.jpg +Timothy Mccarty,784-72-8807,36254,"62452 Rodriguez Ridges +New Scottmouth, SD 78580-6527",1933-05-23 15:40:35,a8:63:3e:12:0a:3e,heather91@hotmail.com,img/obama.jpg +James Sampson,531-12-6634,45245,"57356 John Shoals +Johnstonborough, ND 62422",1935-10-28 16:35:38,fc:7a:e7:65:f6:24,dduke@hotmail.com,img/obama.jpg +Michelle Rodriguez,196-20-8484,48222,"9848 Beth Squares +South Lisashire, NE 96459",1970-11-05 01:43:30,80:3f:ba:f2:d0:77,moranvictoria@gonzales.info,img/obama.jpg +Mark Diaz,399-99-9670,09330,"2799 Cisneros Summit Suite 269 +Foxbury, MA 11909-6326",1969-07-27 08:02:19,c5:dc:6b:53:d1:76,ddavis@hotmail.com,img/obama.jpg +Mr. Christopher Cole,388-83-4270,26002,"4852 Gonzalez Radial +Alyssashire, NJ 78155-1161",1919-02-07 18:47:40,8b:44:23:d9:56:2a,holly35@baxter.com,img/obama.jpg +Courtney Thomas,731-98-6066,60033,"00341 Church Locks Suite 193 +South Timothychester, DC 15180",1951-04-06 04:34:04,d9:e8:98:94:dd:86,luke50@yahoo.com,img/obama.jpg +Samantha Bartlett,019-56-2115,15982,"1847 Elizabeth Crescent Suite 831 +Jimmyburgh, MT 64888-0891",1955-11-27 17:26:29,e5:c3:15:a0:d1:cd,maddenchristina@smith.com,img/obama.jpg +Heather Booth,389-48-9545,70823,"790 Taylor Radial +East Gail, OR 33642-9389",1962-01-18 01:06:10,2a:00:7d:81:46:d5,davidwebb@sloan.com,img/obama.jpg +Sarah Smith,461-32-4762,70413,"7018 Rogers Underpass +Wallberg, OH 63853",1940-07-25 08:57:46,88:66:aa:c2:12:76,pwhite@hotmail.com,img/obama.jpg +Austin Knox,892-16-4696,93204,"20661 Todd Groves +Gravesside, NY 19529",1944-05-06 22:19:42,5b:7b:b8:03:02:78,davisjoseph@palmer.info,img/obama.jpg +Kristy Mercado,603-57-3889,41900,"68277 Burns Throughway Suite 553 +New Seanport, MI 18929-5365",1991-12-07 01:12:07,fd:bc:36:96:a7:cd,ifrancis@hotmail.com,img/obama.jpg +Lisa Moore,389-86-0458,74573,"19867 Kristen Meadows Suite 171 +Lake Chelsea, KS 41777",2010-12-02 23:33:51,6c:e8:a4:66:85:11,dhawkins@hotmail.com,img/obama.jpg +Erika Barrera,497-46-9996,17224,"743 Rebecca Club Suite 390 +Jaredview, NM 06234-4259",1937-11-27 23:32:59,97:2d:cb:01:d8:a3,lgreen@gmail.com,img/obama.jpg +Sheri Williams,217-24-5546,92440,"86842 Jacob Mission Apt. 111 +Lake Carmenton, MH 54289",1953-02-24 21:00:00,4c:30:d4:7b:87:88,jlee@diaz.com,img/obama.jpg +Robert Hughes,669-46-6783,93645,"0036 Caitlin Circle Suite 466 +New Teresa, ID 09516-6156",1990-06-07 21:11:27,1b:9d:8a:29:7c:85,lopezsarah@hotmail.com,img/obama.jpg +Adrienne Roberts,475-95-6610,34979,"Unit 1392 Box 1305 +DPO AA 55048",1955-01-07 21:22:39,30:df:db:fc:6c:09,harristhomas@moore.org,img/obama.jpg +Jacqueline Durham,456-52-7774,81980,"06696 Michael Locks Apt. 969 +Marthashire, WI 48395-1487",1974-08-28 20:21:40,40:c9:63:64:e0:8e,matthew60@hart-beck.info,img/obama.jpg +Jessica Gray,068-85-6288,16194,"23497 Michael Rapid Apt. 907 +East Kimberly, OH 34118-0939",1978-12-04 21:34:06,aa:27:0c:d9:74:e0,sullivangregory@gmail.com,img/obama.jpg +Mr. Cole Perez Jr.,893-64-0776,37816,"20536 Norris Radial +South Samuel, NV 07741-9467",1966-06-02 02:15:43,d3:71:07:64:1b:02,blakepeter@sullivan.com,img/obama.jpg +Ryan Flores,854-90-4347,50737,"3018 Torres Wall Apt. 182 +North Elizabethmouth, MT 50774",1965-04-04 02:10:18,5e:82:df:cb:fc:3b,hwilson@hotmail.com,img/obama.jpg +Julia Montoya,669-41-0533,15155,"91891 Wilkerson Plaza +South Ryan, NV 74588",1969-01-20 12:04:04,2b:6d:bb:0f:c3:62,billy78@le.info,img/obama.jpg +James Nolan,824-49-5094,20736,"2846 Jack Hill +New Donald, IA 60207-2919",1978-12-27 06:53:50,69:0a:b5:be:77:a2,edwardsamanda@hernandez.com,img/obama.jpg +Beth Walker,659-41-5835,13301,"98689 Robinson Route Apt. 644 +Port Timothy, NH 79681-1634",1955-07-17 12:57:43,f2:4f:fe:b5:8e:1a,umiller@watkins.info,img/obama.jpg +Ms. Carla Paul,413-19-7731,53090,"70933 Barry Stream +Peterberg, MT 25768",1939-01-05 23:31:40,ec:a9:c2:92:35:22,treyes@hunter.net,img/obama.jpg +Leslie Shepherd,414-47-1169,34350,"89113 Yoder Squares Apt. 669 +Lake Cheyenneview, TN 39552",1923-04-04 23:58:18,ca:77:79:74:5c:70,williamshannah@price.com,img/obama.jpg +Megan Doyle,561-83-8558,03142,"5250 Huffman Square +East Katrina, CA 44484-0923",2013-07-23 19:57:24,f2:2f:0a:3d:00:ed,nelsonmelissa@hotmail.com,img/obama.jpg +Marie Roberts,414-44-1558,61686,"045 Robert Radial Suite 984 +New Todd, KS 41404-8855",1960-11-01 12:30:39,10:2b:87:7b:59:7d,cwood@mccall.org,img/obama.jpg +Shannon Gonzalez,677-70-2027,52571,"10119 Cheryl Mountains Apt. 587 +North Donnaport, NE 59357-0509",1936-01-05 20:33:20,d2:ad:44:17:2d:28,richmelanie@williams.info,img/obama.jpg +Elizabeth Barr,606-82-1610,54383,"282 Hanna Junctions Suite 812 +Cooperhaven, TX 38668-1900",1998-07-30 00:53:34,d7:38:fc:16:1b:88,jimmonroe@yahoo.com,img/obama.jpg +William Jackson,680-05-0187,73828,"PSC 0643, Box 9499 +APO AA 10970-3275",2006-09-18 07:08:53,52:01:e5:7b:e5:45,opierce@hodges.info,img/obama.jpg +Adam Butler,642-24-5020,22373,"4095 Goodman Estate +Jacobfurt, MI 40394",1927-09-28 22:07:50,dc:ac:aa:9e:33:3b,nramirez@wood-lawrence.info,img/obama.jpg +John Fox,782-37-8953,96797,"035 Ward Way Apt. 644 +North Angela, VI 01384-6383",1980-06-16 22:23:05,d5:7c:37:79:b4:5f,amandawells@reyes.biz,img/obama.jpg +Stephanie Ward,116-96-9921,57764,"1489 David Haven Suite 661 +West Hailey, CT 08885",1935-06-09 04:20:11,da:c4:0f:c9:68:ef,gina82@jones-ward.info,img/obama.jpg +Clifford Velasquez,381-39-0880,59971,"428 Joseph Field +West Markmouth, VT 42101-0195",2002-06-26 13:57:27,df:9f:10:66:64:32,robert06@george-carter.net,img/obama.jpg +Debbie Hanson,851-15-3672,15079,"32838 Hernandez Fall Suite 597 +Taylorbury, IL 76711",1927-09-01 23:03:32,df:5e:b0:8d:48:9b,obrienbrian@yahoo.com,img/obama.jpg +Tricia Bailey,898-28-6669,19352,"6250 Miller Islands Suite 893 +Caseburgh, KY 61917",1923-12-20 10:35:13,55:e8:8b:99:97:5e,christopher55@hernandez-brown.com,img/obama.jpg +Robert Burch,355-19-0934,66550,"165 Roger Springs Apt. 566 +New Justinmouth, MT 43035-5621",1953-10-01 07:09:05,bb:05:66:d2:68:ee,mterry@fuller.com,img/obama.jpg +Mr. Juan Porter,220-70-1536,23758,"8570 Cheryl Key Apt. 689 +Bonillafort, KY 71755",1995-01-16 15:15:37,9d:9c:8e:11:39:18,imiller@yahoo.com,img/obama.jpg +Debbie Huerta,835-05-3218,78854,"61205 Murray Island +West Samuelshire, NH 75455-4767",1994-03-22 00:29:25,3d:44:de:cd:99:e3,lucasmorales@andersen.net,img/obama.jpg +Bryan Harris,722-57-2723,34788,"97122 Christy Track +West Theresa, PR 15255",1965-10-18 01:44:06,1e:57:2b:59:fc:7e,scooper@yahoo.com,img/obama.jpg +Darrell Hunt,471-65-1580,90436,"997 Alejandro Parks Apt. 262 +Lake Diane, FL 25583-6079",1991-01-06 08:27:31,43:28:15:b5:ba:69,rmoreno@hotmail.com,img/obama.jpg +Emily Clayton,082-66-9696,74918,"77778 Turner Stream +New Maryton, AK 14974",1954-10-01 13:54:02,7f:08:7d:d3:36:16,williamsmith@gamble.org,img/obama.jpg +Lee Houston,785-67-1307,51842,"168 Alexander Gateway Suite 109 +Brownville, KS 19660-7351",1945-08-04 14:57:07,bc:60:7d:4e:17:71,leestephen@diaz.com,img/obama.jpg +Stephanie Brown,561-48-1545,57324,"7246 Jessica Roads Suite 449 +Williamschester, SC 13399-3800",1952-12-23 07:30:07,cf:2f:41:4c:1d:a6,james56@williams-fox.com,img/obama.jpg +April King,202-57-1716,44895,"72129 Ashley Avenue +Caldwellborough, MO 28453",1963-04-07 08:26:41,66:9e:66:ed:fe:71,pjohnson@hotmail.com,img/obama.jpg +Kim Fox,740-77-0282,91662,"1906 Chapman Throughway +New Brittany, TX 15685-4801",1994-08-31 20:54:37,aa:60:68:63:e6:0e,jillthomas@garcia-levine.com,img/obama.jpg +Emily Rodriguez,881-52-8964,45582,"0473 Bennett Crossroad Apt. 938 +Rodgersshire, HI 07869",1974-05-06 19:06:54,c0:54:17:3c:38:1f,crawfordlinda@hotmail.com,img/obama.jpg +Kimberly Lewis,748-85-8883,89020,"40933 Roach Circles Suite 784 +Kellyborough, IL 46105-3300",1924-10-16 04:11:32,cd:0e:81:b8:78:00,mendozamichael@brown.com,img/obama.jpg +Micheal Lambert MD,286-46-1743,35864,"Unit 2139 Box 4193 +DPO AA 55878-2733",1963-12-27 08:25:43,03:30:4e:27:28:5b,toliver@gmail.com,img/obama.jpg +Dawn Hawkins,478-49-8811,43216,"7901 Ryan Plains +Michaelmouth, WA 15783-7100",1989-04-04 03:02:43,5f:93:2e:cb:33:7a,peter56@andrews.com,img/obama.jpg +Scott Robinson,760-13-2987,82566,"89561 Collins Ferry +Daughertychester, MN 28621",1937-02-24 10:57:29,90:36:a0:f0:c6:ee,jessicaharper@cantu.org,img/obama.jpg +Kristopher Villa,471-27-3960,65837,"903 Castro Turnpike Apt. 061 +Ryantown, OK 59095",2004-07-26 21:38:20,e4:b4:7c:27:67:01,gilmoresarah@gmail.com,img/obama.jpg +Jordan Hawkins,048-12-8972,23506,"4626 Samantha Squares Suite 733 +Port Jill, MH 76582-9087",1951-09-14 06:33:51,63:e9:93:aa:80:4c,rebeccavega@jones.info,img/obama.jpg +Matthew Martinez,290-59-7010,68697,"59831 Joshua Parkway Apt. 793 +West Chadmouth, OR 03503-6681",1950-06-30 18:33:54,70:c5:61:5b:c7:64,angelasullivan@gmail.com,img/obama.jpg +Daniel Henderson,408-49-2948,38826,"31245 Matthew Lodge +Port Andrewshire, GA 14789",1940-02-05 13:26:22,a1:0e:af:4e:ed:12,kaitlin27@conley.com,img/obama.jpg +Melissa Mitchell,728-09-1797,95294,"USS Graves +FPO AP 64288",1943-03-25 17:57:52,f8:90:72:a3:33:50,ulee@gmail.com,img/obama.jpg +Dylan Holder,378-72-3921,33141,"2499 Johnny Village +West Kelly, LA 65730-4639",1949-10-18 04:29:36,47:6a:f4:92:84:e0,edgarjames@hotmail.com,img/obama.jpg +Kathleen Saunders,793-94-6084,28327,"89175 Nicholas Road +New Jeffrey, NJ 27501-1565",1964-03-29 20:01:54,ab:53:ac:82:d3:d0,petersashlee@gmail.com,img/obama.jpg +Jessica Thomas,529-56-7371,87616,"30380 Leon Hills Suite 365 +Michaelville, MS 04213",1924-07-19 00:47:07,40:ad:6c:dc:3e:27,rebeccaflores@yahoo.com,img/obama.jpg +Samuel Evans,497-11-3384,62801,"17635 Colleen Forks +Sheilaview, RI 82614",1950-01-22 17:06:03,e6:fc:b5:de:8f:26,adominguez@yahoo.com,img/obama.jpg +Elizabeth Brown,656-02-1249,01719,"6553 Huang Lock +Rachelshire, AR 34476-3068",1984-09-19 21:01:40,8c:cd:69:58:83:b7,brian76@jackson.com,img/obama.jpg +Martha Hull,842-47-6230,24800,"USNS Taylor +FPO AA 33897-1118",2008-08-31 16:19:50,d7:c9:5a:60:c9:33,suecox@morgan.com,img/obama.jpg +Katherine House,648-50-2802,03473,"5301 Nathaniel Ranch Apt. 264 +South Derek, TX 12409-4564",1995-08-05 21:45:26,78:f7:b8:41:4f:06,elliottdavid@hotmail.com,img/obama.jpg +Dustin Peters,393-85-8992,70779,"82212 Troy Ridge Apt. 042 +Adamsport, IA 09293-9440",1975-03-20 18:08:14,6b:4c:cf:67:d6:b3,pamela13@gmail.com,img/obama.jpg +John Turner,547-99-7646,86399,"5401 Cowan Ridge +Lake Robert, OK 16001",1995-11-23 15:28:06,bd:7b:96:94:18:a5,williampayne@ryan-goodman.com,img/obama.jpg +Christine Middleton,296-42-9825,50103,"42021 Kevin Streets Apt. 271 +North Philipmouth, PR 38707",1975-07-31 18:41:09,8e:d5:8d:1d:e0:4f,georgebrian@robertson.com,img/obama.jpg +Ashley Howard,567-91-6101,35316,"Unit 4207 Box 1733 +DPO AE 27876",1965-04-07 12:53:59,98:22:e7:d2:96:85,jennifer45@hotmail.com,img/obama.jpg +Russell Morris,526-62-2705,80593,"Unit 5169 Box 0612 +DPO AE 51242-3765",1991-01-10 18:25:05,85:0d:d9:db:94:0f,kendra40@kramer.info,img/obama.jpg +Stephanie Meyer,083-22-1800,83493,"0004 Duncan Rapid Suite 646 +North Ryanville, AR 71003-7754",1975-06-10 01:10:47,0f:28:2d:e0:ec:e7,mlawrence@gmail.com,img/obama.jpg +Michael Tyler,626-71-0645,50807,"USCGC Richardson +FPO AP 23530-4760",1943-06-29 20:57:58,94:42:74:cf:ba:19,huntlaura@wolfe-dominguez.com,img/obama.jpg +Michael Snyder,263-91-8577,57946,"129 Steven Ferry Suite 374 +Lake Jeremy, WA 69841-5436",1976-09-08 10:02:50,8e:3a:22:18:d0:45,bakergregory@russell-mejia.com,img/obama.jpg +Amber Olson,481-35-2512,84054,"18286 Rhodes Lake +Port Bryan, AK 56075-7421",1973-05-02 20:53:19,3b:62:df:51:cf:25,oburke@lee-luna.biz,img/obama.jpg +Michelle Montes,777-47-4569,62653,"5680 Angela Center +Smithfurt, TX 85501",1931-01-12 22:28:25,7a:36:ca:80:4b:04,wendyscott@clark-carey.net,img/obama.jpg +Richard Burns,819-31-0275,43883,"46519 Wilkins Points Apt. 126 +Andrewhaven, NY 35955-0693",1976-11-23 17:37:41,f8:e4:82:f7:29:59,mark14@matthews-randall.com,img/obama.jpg +Judy Whitehead,362-83-7097,64097,"182 John Haven +Edwardsland, ND 75207",1963-03-28 13:59:32,7b:b3:96:82:2c:5f,richardvalentine@hotmail.com,img/obama.jpg +Brandon Finley PhD,509-62-7023,79507,"027 Andrew Lane Apt. 533 +Melissatown, MS 05290-6651",2011-05-29 05:27:40,59:93:40:f0:67:d5,justinclayton@lara-jones.com,img/obama.jpg +Jonathan Lane,115-75-1791,02684,"848 Stephen Meadow +Cruzburgh, GA 79688-6524",1994-12-14 02:48:43,f6:c2:8c:02:00:61,johnathanguzman@hall.biz,img/obama.jpg +Justin Campbell,587-52-7762,13702,"0318 Ramirez Valleys Suite 284 +Tamiside, NE 49543-9640",1933-11-03 13:54:00,61:2a:4c:f6:7c:35,msantos@rich-murphy.biz,img/obama.jpg +Gail Hahn,051-79-6307,19911,"97685 Rebecca Lights +Jacksonview, VI 83193-3586",1948-09-05 03:44:16,3a:46:53:68:59:1d,alicecastro@hotmail.com,img/obama.jpg +Lori Scott,279-36-6890,16998,"5543 Willis Expressway Apt. 973 +East Aprilburgh, AL 07522-6226",1999-04-06 07:30:18,9c:fa:3c:c8:32:db,andrew67@shelton.com,img/obama.jpg +Francisco Baker,635-12-7062,16096,"663 Huber Glens +Port Brianberg, NV 10645-5004",1949-04-25 06:02:56,8b:43:24:78:d8:a0,johnsonstephanie@hotmail.com,img/obama.jpg +William Velazquez,369-01-4064,59619,"821 Hammond Loaf +East Robertport, WA 59593",1963-07-31 11:26:59,26:35:1a:77:30:15,jroy@alexander-smith.com,img/obama.jpg +Brent Benton,433-81-5713,75021,"USCGC Shea +FPO AA 69079-7548",1945-11-09 17:49:28,40:67:db:e6:da:43,rmiller@gmail.com,img/obama.jpg +Jenny Brown,029-17-5633,80834,"323 Strong Forest Suite 323 +Newtonville, NV 68940-8943",1926-07-30 19:46:00,b7:b7:2b:89:87:14,jason30@martin.com,img/obama.jpg +Kristen Ramos,531-40-2974,71286,"908 Coleman Hills +South Briannatown, ND 44919-6345",1938-12-08 22:34:22,7f:c2:e8:d8:de:e7,paige51@yahoo.com,img/obama.jpg +Donna Lara,541-57-2379,81713,"672 Joseph Street Apt. 051 +Port Melanie, OK 73379",1982-04-21 21:41:31,36:d6:10:2c:15:72,melissasmith@yahoo.com,img/obama.jpg +Leslie Wright,857-35-2910,81383,"5169 Deborah Trace +Williamstown, PW 21940",1985-03-11 02:42:18,a8:65:55:05:86:4a,fisherpatricia@sanders-perez.com,img/obama.jpg +Nicole Peterson,828-14-8027,48715,"627 Robert Well +Lake Christopherfurt, MI 80019",1934-03-17 21:23:40,d6:a8:70:76:bd:ff,samuelfisher@gmail.com,img/obama.jpg +Sara Nash,770-62-1764,79265,"7916 Danielle Row +Johnsonport, VI 39889-3734",1977-03-16 01:31:10,10:4a:34:67:8a:cb,diana95@gmail.com,img/obama.jpg +Mr. Brian Douglas,262-74-0105,56271,"20362 Leonard Extension +East Courtneyport, FM 52967-7343",1954-11-24 07:28:17,af:d2:9f:0d:95:f8,martin69@graham.com,img/obama.jpg +Marc Smith,713-35-8937,29967,"0334 Dan Bridge Suite 964 +Michaelburgh, IN 24101-7888",1942-05-10 10:53:19,62:b1:1a:35:29:3c,rangelgarrett@hotmail.com,img/obama.jpg +Gary Peck,615-56-8148,27253,"9387 Allen Plains Suite 529 +West Amy, WI 68402-4044",1979-09-24 15:24:33,39:e2:8f:a2:42:43,carrcorey@gmail.com,img/obama.jpg +Ronald Nolan,098-34-9989,72114,"96879 Samuel Village +Cummingschester, KY 22837",1919-11-29 20:35:35,18:09:46:98:5e:e0,jorge70@yahoo.com,img/obama.jpg +Stephanie Lucero,465-43-4649,77921,"6589 Cynthia Canyon Apt. 091 +Bryanview, SD 56517-3531",1938-11-02 13:44:12,6e:42:c4:64:31:96,klee@gmail.com,img/obama.jpg +Julia Mitchell,248-38-1271,60809,"31594 Williams Junction +Greenport, CO 93901",1940-01-11 09:51:30,d9:48:c3:0b:0f:df,wgreen@yahoo.com,img/obama.jpg +John Villa,287-44-9243,39710,"09074 Robert Hills +Hannahmouth, NC 09375-3120",1980-07-30 08:18:44,0e:f2:20:dd:e0:a2,stewartandrea@hernandez-butler.com,img/obama.jpg +Krista Powell,605-50-3670,26115,"Unit 8968 Box 0105 +DPO AA 10870-3351",1957-04-20 15:23:10,23:02:a2:56:9e:f0,benjamin53@padilla.com,img/obama.jpg +Kristie Fisher,214-31-1242,31739,"1752 Torres Fords +Fostermouth, WV 06452-8547",2008-04-01 09:08:22,65:90:eb:00:e8:31,david50@gmail.com,img/obama.jpg +Alyssa Parks,887-70-3180,53313,"31372 Alexis Knoll +Rodriguezshire, AR 68243",1917-06-04 18:42:29,34:3d:3f:b8:49:93,kimberly61@stout.com,img/obama.jpg +Matthew Molina,438-98-6344,45767,"49736 Decker Inlet +Jeremiahstad, SD 74506-6189",1988-08-07 21:40:47,11:7b:2a:1a:22:9a,sean57@gmail.com,img/obama.jpg +Scott Barnett,384-20-2938,26442,"8879 Schaefer Fork Apt. 593 +Jeffreystad, MO 03415-3175",1983-04-25 01:23:04,6b:e5:63:eb:f0:54,robertsantiago@russell-burns.com,img/obama.jpg +Greg Brandt,182-21-7010,11998,"379 Anthony Squares Apt. 646 +New Jeromeville, AL 61610-5288",1953-03-05 14:49:39,77:c0:d7:7e:45:b0,chill@smith.info,img/obama.jpg +Megan Gaines,515-52-5501,88676,"0725 Christopher Isle +Bowenport, AZ 25933-0887",1991-04-17 20:52:13,f7:36:ce:9b:3d:be,brittanywalsh@moore-henderson.biz,img/obama.jpg +James Wright,843-99-7770,28433,"4580 Steven Mission Apt. 318 +East Danielleton, IA 81180-4865",1955-10-15 22:36:56,84:9d:8d:26:20:bb,kellymason@tucker-morris.com,img/obama.jpg +Edward Kaufman,380-80-9229,70652,"217 Harding Corner Suite 757 +Port Lori, IN 81281",1986-07-01 10:07:14,a2:eb:25:82:42:aa,scastaneda@yahoo.com,img/obama.jpg +Amanda Rhodes,320-95-7115,32889,"831 Tammy Crossing Apt. 572 +Justinchester, RI 41685-6548",1962-05-09 15:15:41,d5:ca:6b:67:3a:86,fevans@miller.info,img/obama.jpg +Roberto Sweeney,780-26-7365,23266,"1494 Wagner Path Suite 973 +South Sarahport, OH 96024-4471",1980-09-13 15:50:26,a4:9f:90:7c:06:8c,lisa04@sutton.org,img/obama.jpg +Regina Gill,842-21-3591,01852,"10097 Hill Course +Schneidermouth, IL 93350-6879",2014-05-28 14:20:34,20:1d:94:12:ee:00,janetmontgomery@gmail.com,img/obama.jpg +Natasha Terry,122-70-0051,46726,"87684 Frank Turnpike +North Pamelaton, KS 05029-8381",1936-06-30 23:26:22,5a:97:e7:de:52:9e,portermelissa@gmail.com,img/obama.jpg +Karen Wright,367-90-4874,82754,"7284 Ponce Branch Suite 257 +Rogersfurt, MA 50662-6415",1990-02-02 03:14:37,c1:03:1b:8c:74:e2,syoung@yahoo.com,img/obama.jpg +Timothy Waters,239-02-2073,89332,"21583 Kelly Run +Baileybury, CT 79035",1956-05-03 22:29:27,2f:e7:74:95:97:5d,lpeterson@hotmail.com,img/obama.jpg +Samuel Skinner,431-40-0391,65580,"73936 Wilkins Fields +Sanchezfort, MS 24372-1716",1918-01-04 10:49:38,e9:e6:7e:6e:a4:26,luisweiss@hotmail.com,img/obama.jpg +Jeffrey Hill,116-88-7602,48894,"02581 Brown Keys +Eugeneton, SC 82170",1970-02-10 13:31:07,0a:39:56:4a:93:50,stevensmichael@yahoo.com,img/obama.jpg +Paul Carter,404-71-4967,30169,"0446 Joshua Mountain +Lake Michelle, MP 44805",1981-05-25 14:45:41,1e:0b:b7:41:eb:13,coreyduncan@hotmail.com,img/obama.jpg +Alyssa Wagner,015-66-7068,08611,"5187 Mackenzie Estate Suite 416 +Savannahburgh, TN 47900-2691",1966-07-19 19:13:25,5e:c5:7d:b0:b6:b5,stanley49@perry.com,img/obama.jpg +Joshua Cook,723-59-4291,89776,"Unit 1738 Box 2137 +DPO AP 96707",1965-11-08 18:36:30,d1:8a:87:8d:1e:45,egonzalez@hotmail.com,img/obama.jpg +Cynthia Ferguson,857-32-9201,21029,"431 Jeffery Isle +Angelastad, OH 97568",1984-06-21 16:24:41,e4:02:93:96:d0:66,upalmer@lewis-rowe.com,img/obama.jpg +Jose Morales,424-39-4557,71070,"Unit 0599 Box 6168 +DPO AE 83623",1933-08-15 14:05:36,3c:d4:39:2c:99:c6,kevinconley@hotmail.com,img/obama.jpg +Michael Martin,781-44-6469,44404,"85949 Parker Key Apt. 566 +Cherylland, CO 98792",1942-11-19 00:16:53,5f:e7:91:bd:c3:a9,derekcampbell@hotmail.com,img/obama.jpg +Michelle Gallagher,259-69-8492,63248,"516 Santos Passage Apt. 917 +New Tanyaland, GA 81812",1937-12-14 11:17:45,33:5b:cd:a5:87:e2,padillamichael@gmail.com,img/obama.jpg +Nicholas Hamilton,594-79-2575,14728,"0259 Brock Track +North Haileybury, MA 45003",2008-10-16 01:40:45,58:46:11:08:2d:cc,janetjenkins@gmail.com,img/obama.jpg +Thomas Maldonado,604-22-1453,72304,"4965 Pena Inlet Apt. 026 +South Renee, IL 87077",1934-02-16 19:10:57,4e:0b:a3:12:77:e2,jonathancarroll@yahoo.com,img/obama.jpg +Jason Smith,103-36-5906,49943,"68610 David Lakes Suite 897 +Andrewberg, IA 79199-8642",1962-11-15 16:18:00,9d:2f:2d:d6:27:c0,christinalane@gmail.com,img/obama.jpg +Charles Hicks,426-72-1613,12240,"8049 English Estates Suite 596 +Phamchester, MS 84163-9827",1934-08-08 08:23:40,1f:29:61:e6:44:88,johnsonsheila@wilson-bowers.com,img/obama.jpg +Lori Frost,251-23-5794,84640,"160 Karen Wall +Chanport, ND 09088-1085",1977-04-17 21:16:13,e7:94:4d:7f:ec:29,lclark@gmail.com,img/obama.jpg +Mr. Richard Brown DDS,672-52-6211,60043,"2161 Paul Valleys +Port Shawn, TX 37228",1976-05-22 00:44:25,2e:d8:5a:65:7e:03,brittney44@cantrell-harrington.com,img/obama.jpg +Terri King,047-79-7826,76778,"938 Daniel River Suite 912 +West Rebecca, FM 13729",1989-03-09 00:28:42,d7:ab:a3:64:6d:60,taylorthornton@bowers.biz,img/obama.jpg +Roger Walker,780-52-4534,06408,"74768 King Junctions +Meredithview, MI 38988",1995-03-21 20:13:29,60:b1:86:36:8b:4b,martinjulie@matthews.org,img/obama.jpg +Jesus Howard,574-10-0949,39671,"327 Wendy Club +South James, KS 13381-3197",1959-10-01 14:21:33,87:42:80:fc:33:85,lwilson@gmail.com,img/obama.jpg +Michael Crosby,171-46-7198,14169,"860 Mason Pine +Evelynberg, CA 10295-4623",1928-11-22 18:10:14,35:87:b2:98:33:18,nealcarmen@boyd-frank.info,img/obama.jpg +Jordan Peterson,377-41-9791,30112,"001 Lopez Center Apt. 173 +North Ericshire, RI 88019-1132",2004-11-08 18:43:50,dc:b4:62:f1:6a:b9,hpierce@ramirez.com,img/obama.jpg +Mark Pearson,095-85-1572,96475,"49755 Lindsey Avenue Suite 283 +Princemouth, AK 30513",1932-07-19 19:28:23,5e:a8:d6:cc:57:f2,raymondwilliamson@bowman.com,img/obama.jpg +Richard Lopez,859-74-5071,50342,"18997 Annette Way Suite 908 +Castilloport, AS 44406",1957-12-02 03:07:10,36:13:77:ba:1e:05,nwilliams@james.biz,img/obama.jpg +Bryan Acevedo,787-29-0018,04070,"18276 Maria Turnpike Suite 401 +East Benjamin, MH 46834-2133",1944-05-29 13:17:24,61:bf:92:10:d7:64,leslieoconnor@yahoo.com,img/obama.jpg +Charles Johnson,610-92-4997,05244,"6302 Chambers Center Suite 490 +Lake Joseph, NM 10167-7625",1998-12-16 17:53:21,b1:95:60:cf:a2:b0,gsalazar@dickson.net,img/obama.jpg +Mrs. Kristin Howard MD,273-20-9119,17469,"753 Calderon Course +East Joyberg, WY 24578-2529",1940-11-08 19:06:37,39:6a:c8:a6:65:7c,cheryljones@coleman.biz,img/obama.jpg +Alison Nicholson,317-10-1962,72023,"298 Jackson Mill +Longhaven, OR 54727-0631",1958-07-29 11:32:51,57:bc:51:5b:2c:8a,dedwards@gilbert.com,img/obama.jpg +Brent Gates,250-98-9350,92498,"3627 Gonzalez Fork Suite 851 +Kelleyfort, MO 95047",1946-11-06 12:27:36,99:f0:4c:7a:e2:bc,heathermerritt@gmail.com,img/obama.jpg +Nathan Wilson,882-11-9088,56406,"3811 Michael Street Suite 614 +Brycemouth, MA 01458-6922",1926-01-02 05:15:56,e2:e2:44:22:42:2e,bergmary@yahoo.com,img/obama.jpg +Ronald Jordan,236-61-2328,69198,"5934 Hayden River Suite 109 +Port Katiebury, ND 35240-6887",1969-01-08 00:10:27,73:38:b2:38:db:4e,warrenrobert@hotmail.com,img/obama.jpg +Lauren Martinez,819-62-9718,05820,"680 Zimmerman Underpass Apt. 564 +Johnsonstad, AZ 11121",2015-03-25 11:32:42,3a:7b:42:8e:65:72,allison69@clark-patterson.com,img/obama.jpg +Ashley Brown,248-36-9846,27135,"Unit 0384 Box 1599 +DPO AE 62546",2000-01-24 02:00:48,93:f6:e5:57:91:1f,beasleyzachary@frost.com,img/obama.jpg +Heather Sullivan,755-96-4611,60192,"USNV Stanton +FPO AP 52415",1927-11-24 06:18:06,08:30:ba:9b:8b:1e,jonathan84@hotmail.com,img/obama.jpg +Alexander Jackson,567-84-9283,72233,"4995 Holly Unions Apt. 654 +Williamsside, CA 29015-7058",1948-07-03 22:29:42,75:fe:aa:4b:d1:fd,belldanielle@hotmail.com,img/obama.jpg +Jerome Garcia,239-32-9808,05629,"0099 Barbara Highway Suite 009 +Ponceshire, HI 51191-8614",1931-06-05 13:39:24,a4:ea:b8:e9:5a:ce,nsmith@gmail.com,img/obama.jpg +Margaret Smith,059-37-1975,09677,"605 Alicia Prairie +New Alexander, CT 75701-7334",1992-06-08 17:20:05,54:c3:87:a2:c9:69,xgarcia@gmail.com,img/obama.jpg +David Johnson,611-22-1107,63639,"9772 Gray Crossroad Apt. 198 +South Desiree, MP 80337-0892",1957-09-23 14:55:43,c0:c6:fb:25:6d:8d,lopezbrenda@gmail.com,img/obama.jpg +Timothy Reed,119-61-9735,81971,"8395 Ramirez Bridge +Jenniferview, MP 53140-2037",1970-07-23 21:01:49,85:09:82:2d:78:74,jessicahall@davis-bishop.com,img/obama.jpg +Kristina Browning,006-11-4826,90695,"281 Dean Mews +New Robin, GA 97914-4234",1933-12-31 14:52:25,3c:f3:50:79:42:d7,cmelton@kelley-woodard.org,img/obama.jpg +Crystal White,423-23-8579,26009,"248 Peggy Landing Suite 448 +West Mark, OR 05475",1929-12-24 15:37:47,a0:70:cd:db:f0:6e,kevinmontgomery@yahoo.com,img/obama.jpg +Kevin Lynn,485-84-8411,64688,"33148 Frederick Trail Suite 298 +Lake Kimberlymouth, IL 70538",1945-05-25 09:29:36,e1:13:7b:45:ed:4b,walkercourtney@sutton.org,img/obama.jpg +Mark Rivas,384-69-2983,55597,"183 Fox Well Apt. 415 +Sharonview, VT 84035",1926-12-31 01:33:22,ea:7b:9b:c5:d7:af,charles80@johnston-henson.org,img/obama.jpg +Charles Meadows,107-96-2723,88265,"956 Veronica Locks +Williamsbury, VA 85089-5463",1968-04-09 11:57:07,a9:a8:4a:19:df:22,greggjohnson@yahoo.com,img/obama.jpg +Kristen Davis,658-12-5051,16808,"232 Johnson Ports +New James, VA 80125-1197",1932-12-19 15:48:15,c7:ca:f9:6e:da:54,jeffrey81@yahoo.com,img/obama.jpg +Jennifer Boyer,618-64-7790,65508,"924 Jeremy Point Apt. 785 +Kramerville, OR 29862-8515",1953-10-09 18:19:13,b4:bb:e7:45:cd:d9,william81@gmail.com,img/obama.jpg +Angela Duncan,465-69-7591,42307,"PSC 2431, Box 2426 +APO AE 18537-5317",1990-01-01 00:56:45,4d:b9:13:f9:1f:86,ajohnson@yahoo.com,img/obama.jpg +Brittany Nash,311-90-7088,54817,"6495 Mark Creek +Jessicamouth, FM 22361",1940-04-21 02:43:54,84:18:57:e8:57:ae,katherine14@gmail.com,img/obama.jpg +Bonnie Gill,118-58-6039,78401,"845 Price Glen +North Elizabethborough, WI 78716",1987-09-21 19:15:24,63:6a:1e:8d:32:7c,sandrawise@hamilton.com,img/obama.jpg +Daniel Meyers,486-24-0020,34673,"4344 Grimes Island Apt. 542 +West Kaylee, PR 85358",1971-11-02 04:25:53,0a:14:15:d3:70:68,kellerrichard@yahoo.com,img/obama.jpg +Stacy Harmon,802-48-1007,95544,"USNS Douglas +FPO AP 81537-5927",2016-01-13 21:45:30,ba:ca:80:64:61:4e,ulester@thompson.biz,img/obama.jpg +Samantha Harrison,160-13-5573,58481,"PSC 2692, Box 9186 +APO AP 48630-3076",1997-04-10 22:06:04,a8:23:66:79:49:86,banksrobin@schroeder.com,img/obama.jpg +Danielle Gates DVM,891-78-9755,16370,"076 Martinez Turnpike Apt. 884 +South Melissabury, ID 25348",1969-07-12 05:36:21,be:87:a8:eb:77:e8,cchung@perez-mitchell.info,img/obama.jpg +James Edwards,211-88-8505,64813,"544 Logan Station Apt. 222 +Lake Jenniferview, FM 38486-2323",2016-03-21 21:37:12,40:8b:d5:fe:15:0f,joshua32@bradshaw.com,img/obama.jpg +Lori Arnold,727-30-0489,75005,"0381 Robin Greens Suite 167 +Danielchester, VI 70528-4509",1966-11-11 19:24:16,a2:9d:01:7e:95:c4,hsantiago@yahoo.com,img/obama.jpg +Eric Palmer,326-42-2465,58615,"680 Wyatt Mountains +East Carlos, VI 89850-0944",1961-01-26 18:23:46,17:f8:b6:7a:53:39,normanalicia@yahoo.com,img/obama.jpg +Kathryn Ford,650-11-5009,54332,"051 Susan Locks +Lake Eileenville, WI 39149-4358",1962-02-13 05:44:17,05:31:79:1b:8a:88,uholloway@ritter.com,img/obama.jpg +Debbie Wise,883-12-7327,44699,"449 Joshua Mall +Griffithfurt, ID 33287",1925-05-11 20:47:03,c4:c7:eb:cb:eb:d4,vjones@yahoo.com,img/obama.jpg +Patricia Lewis,741-54-5860,89242,"49378 Jacob Lodge Suite 024 +Katelynshire, PW 34886-8715",2008-04-27 12:26:07,3e:f1:2d:ec:e0:f4,vthomas@gardner.com,img/obama.jpg +Tina Castillo,065-61-4775,11649,"9051 Mcguire Hollow Apt. 704 +South Teresa, MS 16781",2011-08-21 12:19:58,fe:f1:e0:37:f7:5d,curryrobert@robertson-quinn.org,img/obama.jpg +Eric Santiago,516-94-0727,95877,"8705 Stevens Alley +New Nichole, TN 25862",1931-02-06 22:07:21,5c:c9:22:83:06:5e,jeffery11@hotmail.com,img/obama.jpg +Judy Gonzalez,341-39-9279,04583,"6455 Mark Drive +Port Cindy, CT 31277-8530",1959-10-12 01:13:26,49:15:e8:e5:78:32,kramsey@gmail.com,img/obama.jpg +Brittany Young,582-53-1918,23518,"0074 Rogers Forges Suite 420 +Traciville, NJ 74760",1935-02-09 20:33:50,69:23:de:1c:bf:89,lisathornton@hotmail.com,img/obama.jpg +Steven Arroyo,843-65-6829,87507,"51442 Joseph Lights +Simpsonfurt, SD 71567-4732",1927-04-11 00:03:36,b4:fb:b1:db:f8:d2,melanie28@gonzalez-king.net,img/obama.jpg +Mr. Steven Raymond Jr.,233-58-5086,25268,"256 Patel Terrace +East Carlatown, OH 97101-8930",1993-08-23 21:42:28,b4:f4:28:90:81:c5,walkerdavid@hotmail.com,img/obama.jpg +Anthony Anthony,650-49-9698,08479,"Unit 7141 Box 7925 +DPO AP 98563-8776",1947-09-05 19:59:31,18:26:9d:2d:24:56,smithmichele@hall-maynard.info,img/obama.jpg +Christina Riley,031-75-0419,30196,"328 Jessica Center +Rebeccaborough, AL 51418",1987-07-17 20:28:54,14:cc:68:76:f8:85,ijones@gmail.com,img/obama.jpg +Teresa Lawson,264-17-3186,69826,"6843 Tiffany Branch Suite 521 +Hollandside, NM 23906",1956-08-22 17:22:12,4c:f5:ea:16:6a:46,broberts@johnson.info,img/obama.jpg +Adam Graves,335-20-9987,38296,"5149 Armstrong Stravenue Apt. 056 +Johnside, UT 61791",1976-09-08 00:05:29,d5:f2:c3:8f:00:70,griffinthomas@hotmail.com,img/obama.jpg +Sally Jones,495-01-0294,55982,"862 Richard Spurs Suite 091 +North Jeremy, FM 03572-4934",1932-03-24 23:54:37,88:3c:d1:c2:75:4c,sanchezspencer@yahoo.com,img/obama.jpg +Ronald Thomas,357-96-9610,69836,"06442 Craig Roads Suite 658 +West Chelseashire, VT 28620",1943-04-24 14:07:20,9a:40:83:f1:03:f6,igreen@conner-briggs.com,img/obama.jpg +Rebecca Thomas,234-71-8516,79400,"1372 Carlson Stream Suite 581 +Sanchezside, NE 55756-1944",1940-09-08 12:05:04,9f:48:41:23:c7:a2,megan94@gmail.com,img/obama.jpg +Mary Marquez,857-87-0205,79741,"090 Sexton Port +South Meganburgh, IL 46903-0495",1957-06-30 07:23:52,51:a5:65:6a:23:11,angelicaherrera@jackson.com,img/obama.jpg +Diana Davis,400-63-7882,60795,"445 Perry Crest Suite 711 +Port Christopherland, MI 31378",1974-11-10 07:01:49,02:b5:ea:a9:da:c3,daviskeith@stanley.com,img/obama.jpg +Catherine Roberts,260-37-1769,46528,"640 Steven Row +Nicholaston, VI 23236-2277",1919-06-20 02:56:59,b5:3f:3f:6a:86:52,tylerramirez@hill.com,img/obama.jpg +Mary Finley,081-72-4976,75310,"180 Harold Spur +Port Rhondaton, PR 45970-9624",1932-01-11 05:45:55,e2:d9:ce:39:3a:c4,carrolljason@yahoo.com,img/obama.jpg +Wendy Wright,403-36-3401,82517,"666 Bell Squares Suite 521 +Rickystad, TX 98336",1977-04-18 09:02:00,52:30:12:1e:1a:ab,allisonrachael@moore.com,img/obama.jpg +Anita Marks,067-91-5670,84359,"83233 Benjamin Shore Suite 062 +East Victoriatown, HI 23110",2008-05-04 03:21:45,9e:a1:05:77:22:e4,mcmillanmark@burke.net,img/obama.jpg +Arthur Page,346-70-2406,45169,"1788 Macias Drives Suite 493 +Lake Zacharyshire, IN 80235",2006-07-25 05:10:49,27:85:e2:33:39:7d,scott73@garner.biz,img/obama.jpg +Kerry Gonzales,539-71-9425,57611,"236 Martin Bypass Apt. 726 +West Caleb, VA 41695-7603",2014-10-30 03:27:24,95:de:51:15:b0:b1,stephen09@campos-lee.net,img/obama.jpg +Michelle Harvey,744-97-5606,39329,"98153 Anna Drives Apt. 822 +Lake Jacqueline, KY 76652-9849",1935-02-08 10:42:21,96:d6:7c:55:fa:de,wagnerrobert@hall.com,img/obama.jpg +Brenda Johnson,795-23-8550,65967,"6291 Sherri Spring Suite 571 +Port Jasontown, SD 07586",1945-02-06 14:32:20,ff:51:39:82:ea:24,zlopez@lopez-evans.biz,img/obama.jpg +Matthew Sosa,428-54-9807,95152,"58786 Johnson Crescent +Mariahport, NH 94950",2016-08-17 13:39:37,a5:b0:21:ea:98:35,stacyross@lewis.com,img/obama.jpg +Michael Powers,056-04-9933,46984,"967 Johnson Overpass Apt. 814 +Sarahburgh, VT 22973-7772",1924-01-25 16:11:47,16:c3:f0:d3:b9:9d,mcdanieldaniel@gmail.com,img/obama.jpg +Richard Chase,392-68-5086,54479,"717 Shelton Extension +Jacksonmouth, WI 33025-4945",1982-06-29 06:43:16,3c:9e:5f:f6:8f:79,imckenzie@grimes.com,img/obama.jpg +Lauren Fischer,485-22-3852,72563,"99737 Caroline Mews Apt. 481 +Bonniemouth, OH 28038",1996-11-21 07:04:38,c8:32:7f:9f:5f:f8,matthewtucker@hill.org,img/obama.jpg +Maria Berry,609-60-0631,91694,"6421 Snyder Isle +East Amandabury, IL 19523",1948-10-05 22:01:45,94:4d:3f:c4:c5:0d,sjones@guerrero.com,img/obama.jpg +Clayton Dorsey,157-61-9697,63501,"7543 Harris Flats Suite 731 +North John, MH 46124-3319",2014-02-23 07:07:34,fb:86:77:e7:79:44,bauervictoria@perkins.com,img/obama.jpg +Steven Kramer,406-18-8823,83244,"489 Janice Trace Suite 317 +Bakermouth, NV 15123-6312",1998-05-17 04:14:42,d2:60:65:4c:9c:51,aaronklein@yahoo.com,img/obama.jpg +Michael Kim,772-09-1374,02858,"113 Anna Lane Apt. 749 +Sanchezshire, VT 62878",1995-04-03 15:28:38,f3:73:84:9a:b6:64,rossjoseph@adams-hopkins.com,img/obama.jpg +Lindsey Johnson,417-55-9822,61964,"4046 Kari Path Suite 138 +West Garystad, MI 81191-3562",2010-11-13 20:32:04,ea:6e:65:0a:22:ea,rachael55@bridges-gardner.com,img/obama.jpg +Kimberly Chase,582-04-0155,92032,"1698 Rose Bridge Suite 517 +New Megan, MD 99145-8426",1923-04-25 14:42:57,b9:9f:89:15:1a:ef,audreyross@nelson.org,img/obama.jpg +Lauren Walton,422-58-9510,43403,"6834 Turner Corners Suite 256 +Carlshire, KS 23983",1939-08-07 10:29:18,fa:84:15:66:e9:ff,katherine70@yahoo.com,img/obama.jpg +Cameron Watts,174-60-7461,36123,"50594 Kenneth Radial +East Debra, FL 05785-5837",1925-10-14 01:30:32,77:22:e0:e1:80:a2,tracey35@yahoo.com,img/obama.jpg +Jesse Sparks,735-70-1539,10903,"8646 Wilson Points Apt. 656 +West Anneland, IN 20051-0982",2010-04-24 22:12:55,10:e7:29:17:d8:29,angela57@gmail.com,img/obama.jpg +Andrew Carlson,591-16-3280,04633,"PSC 0082, Box 7487 +APO AP 97695",2013-02-27 11:05:11,76:45:77:dc:f0:8d,kgreer@hotmail.com,img/obama.jpg +Whitney Mendoza,435-37-1450,11180,"4268 Nicholas Points Suite 360 +Knightside, MO 00395",1997-10-06 04:39:19,4b:e1:be:64:b7:9a,lynn45@flores.net,img/obama.jpg +Jessica Jarvis,868-90-6453,07399,"3479 Darrell Garden Apt. 617 +Anthonyville, GU 25027-0294",1944-07-09 00:59:59,16:e4:8a:af:1f:7e,frank17@buck.com,img/obama.jpg +Janet Shaw,723-55-3512,18785,"74178 Lowe Ranch Apt. 683 +Brandonborough, UT 96546",1948-10-06 17:42:31,ce:c2:b8:62:94:9e,martin25@yahoo.com,img/obama.jpg +Tina Wright,055-83-6798,02104,"8602 Alan Track Suite 501 +Russellview, AL 62347-3420",1994-04-29 18:33:49,44:6b:59:c0:14:ac,edwardsstephen@douglas.com,img/obama.jpg +Zachary Lyons,771-26-8441,15999,"Unit 1910 Box 0423 +DPO AA 77539",1996-02-25 22:28:25,d9:38:47:fa:8e:c6,mirandawood@hatfield.com,img/obama.jpg +Diane Gomez,461-87-7966,16306,"964 Lisa Haven +Steeleville, OR 77492",1956-03-19 01:00:55,a3:de:4d:7f:32:d3,benjamin13@gmail.com,img/obama.jpg +Evan Burke,825-71-4480,77342,"96130 Hannah Creek +Calhounberg, IN 49210",1986-01-17 17:06:56,0e:7d:3b:b2:b1:a3,bmcgrath@beasley.com,img/obama.jpg +Brian Maynard,785-31-1131,27066,"94477 Ethan Burg +West Amymouth, MN 57977-6161",1955-09-28 16:00:23,a5:b8:60:b8:de:4c,kellysharp@yahoo.com,img/obama.jpg +Kelly Bright,840-27-6044,64603,"376 Karen Ferry Suite 218 +Victoriaside, MP 65512-8835",1987-04-28 14:28:08,58:ae:82:95:0d:6d,prattsheila@hotmail.com,img/obama.jpg +Tara Vaughn,218-86-8255,20030,"1400 Harmon Station +Brownshire, NE 68630",1989-08-18 22:40:18,94:b6:91:b1:37:df,alan57@hotmail.com,img/obama.jpg +Michael Johnson,660-72-8248,54848,"401 Johnson Courts Suite 111 +South Cassandra, AK 51039",1987-12-01 05:42:52,c8:96:30:1d:36:03,ypham@hotmail.com,img/obama.jpg +Barry Bender,115-74-1434,51678,"177 Scott Parkways +Lake Michaelburgh, MD 26452-0787",2016-05-14 16:57:26,2e:8a:d7:a7:43:71,xfox@gmail.com,img/obama.jpg +Brent Reilly,469-61-5141,07313,"26672 Bruce Orchard +Lake Jennifer, MN 53856",1955-05-09 02:50:58,4d:e5:fb:ea:7e:da,odoyle@gmail.com,img/obama.jpg +Christina Doyle,769-38-5109,79592,"Unit 3893 Box 0858 +DPO AE 81984",1955-01-21 16:02:44,3b:37:b4:d7:14:3f,ucook@hill.net,img/obama.jpg +Michael Black,378-23-2320,77095,"471 Amy Fords Suite 819 +West Jessica, AR 05532",1927-05-14 11:33:05,9f:39:b3:50:8a:b8,hernandeznicholas@cruz.com,img/obama.jpg +Dawn Elliott,517-93-8874,26448,"763 Ramirez Dale Apt. 695 +South Michelleland, NY 02741",1938-12-07 07:50:38,89:06:43:a0:b1:55,khoover@hotmail.com,img/obama.jpg +Austin Gutierrez,696-48-9664,83743,"121 Caitlyn Lodge +West Elizabethtown, UT 82299-6412",2003-08-29 12:33:49,a3:d4:e6:44:54:ff,parkssarah@freeman.com,img/obama.jpg +Frank Smith,214-73-0379,50677,"86180 Robinson Crescent Suite 027 +Port Jessicaborough, MI 16314",1982-09-27 06:04:27,fa:79:0c:a6:3c:f3,jorgegarrett@lowery.org,img/obama.jpg +Laura Santana,339-14-3214,86075,"62264 Stephen Flats Suite 455 +Port Brettchester, WV 10944-5322",1939-05-12 01:00:06,e5:a1:c3:6b:b6:24,sonyaterrell@carpenter.net,img/obama.jpg +Darren Kim,315-44-9321,61237,"618 David Key +Andersonstad, FM 01280",1930-05-19 18:13:23,fd:ca:42:e5:52:eb,hjohnson@black.org,img/obama.jpg +Paul Tyler,129-16-2112,58901,"635 Murray Shoals +Maryview, VI 18218",1964-11-06 22:46:39,fe:2d:9d:19:67:37,taylorjennings@dickerson.info,img/obama.jpg +Peter Doyle,806-77-1289,57646,"006 Jose Park Apt. 129 +Lake Matthew, SC 01996",1918-05-05 03:19:11,5a:4c:e5:f6:fd:de,gmacias@pittman.net,img/obama.jpg +Teresa Snyder,731-82-0939,32849,"42237 Stewart Creek Apt. 751 +North Jason, MT 20665",1941-11-26 02:51:59,a9:51:1b:37:7a:1f,jimmy70@medina.net,img/obama.jpg +Linda Reed,743-37-9676,08008,"80493 Butler Park Apt. 085 +Brianstad, PW 95335",1984-02-22 01:57:11,88:ba:6b:9f:89:4f,drivers@garcia.net,img/obama.jpg +Nicholas Williamson,728-01-0926,77136,"4968 Roy Groves +North Angela, MO 47313",2000-10-01 16:19:19,33:2d:ed:75:3d:53,orivera@anderson.biz,img/obama.jpg +Whitney Charles,298-96-8650,49357,"86678 Michael Turnpike +Garciastad, UT 29205-2143",1966-12-02 10:02:33,4f:6b:32:57:0a:4b,elizabeth68@martin.com,img/obama.jpg +Jonathan Dixon,115-07-5637,10601,"1661 Mark Inlet +New Deborahborough, AK 81319",1975-01-20 17:17:39,37:87:04:b8:63:31,latoyacowan@yahoo.com,img/obama.jpg +Nicholas Castillo,721-20-2373,14076,"034 Bailey Shores +Dicksonton, IL 34316",1963-03-21 09:47:22,cf:3a:69:80:a7:99,vargasjoseph@bailey.net,img/obama.jpg +Jimmy Green,808-27-4049,95419,"31418 Wright Junctions Apt. 222 +Port Bill, CA 97912-0882",1970-04-10 04:09:11,50:19:14:5e:5f:c4,tuckerdavid@richards.info,img/obama.jpg +Hunter Bartlett,457-46-5377,49077,"139 Pugh Lane +West Justintown, ID 66928-4137",1924-12-19 10:16:20,b1:7c:fb:39:64:60,john76@sullivan.net,img/obama.jpg +Michele Smith,654-80-5856,77303,"43844 Peterson Vista +Campbelltown, FM 14603",1922-07-19 08:38:48,97:ab:b3:8c:de:8f,marygray@clark.com,img/obama.jpg +Manuel Delgado,423-46-8155,15988,"5770 Anthony Spur +South Mariaside, AZ 72622-1778",2014-07-23 18:15:52,e1:a7:b8:dd:48:6a,christinabrown@johnson.info,img/obama.jpg +Michael Robinson,273-05-9534,36993,"99974 Brian Valleys +Bryanchester, PA 38501-0277",1984-09-20 20:09:42,97:e1:f2:08:0c:bc,erikavalencia@morrison.com,img/obama.jpg +Samantha Torres,440-96-9346,43167,"0870 Alison Loop Apt. 804 +Port Sherryview, ME 31253-1168",1955-01-27 22:39:20,e5:fe:0c:bd:83:fa,karenphillips@gordon.org,img/obama.jpg +Ryan Frazier,654-97-1209,39193,"155 Lisa Skyway +Port Scottburgh, MI 24048-3293",1990-10-24 09:08:20,b9:4f:9d:aa:f9:0e,kschultz@wilkinson.com,img/obama.jpg +Alexis Lee,777-82-7797,53200,"910 Melissa Skyway Suite 133 +Charlesburgh, VI 10728-8863",1936-07-07 15:10:57,d5:55:2d:28:39:66,tinawood@yahoo.com,img/obama.jpg +Laura Bates,174-66-1226,68976,"Unit 9675 Box 6455 +DPO AA 62569",1955-12-10 01:50:56,46:2d:42:76:ba:e2,nichole13@yahoo.com,img/obama.jpg +Russell Cruz,850-96-3741,74395,"9622 Daniel Walk Apt. 521 +North Sarashire, KY 13636",1927-11-18 13:31:47,c5:5f:54:32:bf:4a,michael41@hotmail.com,img/obama.jpg +Laura Li,094-66-6465,07204,"097 Wallace Highway Suite 712 +Lake Jasonland, ID 73085-0406",1961-10-12 12:04:17,ed:9b:a0:88:ba:eb,miranda63@hotmail.com,img/obama.jpg +Jason Santos,023-11-3576,58773,"03746 Pierce Vista Apt. 321 +Paulport, MA 69153-2930",1993-02-21 12:20:31,b5:60:83:7b:d2:af,velasquezrobin@gmail.com,img/obama.jpg +Anthony Jones,269-86-3547,74198,"308 Penny Underpass Suite 012 +Lisaport, NJ 26009-9175",1921-11-23 04:18:41,c6:4f:8f:2b:30:db,hawkinslaura@hernandez-shaffer.com,img/obama.jpg +Brian Cordova,549-64-4332,83323,"Unit 3127 Box 8649 +DPO AP 23293-0810",2009-10-24 00:53:08,ea:c4:3b:9e:3c:e2,carolmay@huber.biz,img/obama.jpg +John Diaz,191-93-3414,02809,"6101 Robert Ranch +New Melanieville, UT 07024",1943-09-19 05:33:50,1e:98:e7:66:2d:fe,davidhoward@weaver-anderson.org,img/obama.jpg +Tommy Reyes,449-53-4348,08709,"143 Rachel Courts +Wallacefurt, ND 43351",1924-08-14 05:31:35,75:ad:a5:e1:40:d5,paulhall@pham.net,img/obama.jpg +William Johnson,008-91-6655,58235,"1572 Carrillo Street Apt. 433 +Allisonberg, SC 42426-5898",1931-12-21 16:49:57,52:9d:19:c8:0d:67,millerryan@gmail.com,img/obama.jpg +Corey Nelson,770-41-8513,42004,"USNV Harrison +FPO AP 26844-0320",1936-04-22 05:28:28,a6:bb:a0:b0:6b:1b,cferguson@gmail.com,img/obama.jpg +Jose Ramirez,290-57-2398,66925,"USNS Morrison +FPO AP 86121",1958-09-20 06:52:12,9e:c0:0d:a2:3d:ed,sarah51@martinez.org,img/obama.jpg +Deborah Lynch,801-21-1012,39945,"USCGC Harris +FPO AP 60548",1972-07-24 16:42:00,9b:be:77:20:36:c3,droberts@hotmail.com,img/obama.jpg +Justin French,646-98-9676,53440,"30331 Hanson Ferry Suite 764 +New Amy, NV 19561-4598",1951-08-17 23:35:55,ed:46:d0:f4:21:d5,iallen@delacruz.com,img/obama.jpg +Brian Simpson,153-33-5211,66379,"USCGC Grimes +FPO AP 59884",1939-01-05 06:40:39,60:5d:c7:48:ab:52,rachelharper@gmail.com,img/obama.jpg +Carmen Arnold,542-69-6155,95164,"2219 Christina Crescent +Port Karenville, PA 20483",1976-05-24 13:38:24,a3:a0:4b:0c:6b:8d,samuellittle@hotmail.com,img/obama.jpg +Rachel Thompson,179-78-4082,76730,"89541 Joseph Mountains +Matthewborough, WY 82075",1951-10-25 07:33:36,a4:9c:93:28:ea:2a,howardraymond@hotmail.com,img/obama.jpg +Daniel Green,664-62-8852,24550,"459 Wilson Parks +West Kevintown, AS 70266-9501",1977-03-16 18:40:30,b0:ab:82:3e:85:ad,amy82@rogers.com,img/obama.jpg +Brian Ramirez,898-08-3307,70643,"Unit 3206 Box 7576 +DPO AA 75116-0944",2004-12-21 02:17:36,42:4a:84:cb:29:43,ufreeman@harris.com,img/obama.jpg +Stephen Smith,736-48-4648,23615,"1801 Ho Land +New Malik, MN 58584-4333",1967-11-28 17:27:38,9a:89:1c:a8:30:cf,ypham@gmail.com,img/obama.jpg +Antonio Mathis,465-78-0919,98015,"69556 Dorsey Shoal Apt. 374 +Taylormouth, FM 50284-0227",2004-09-25 01:43:43,53:87:c8:a4:ae:e6,amanda04@yahoo.com,img/obama.jpg +Lori Jefferson,873-93-7399,73961,"05196 Garza Island +Lake David, VI 68539-6449",1931-02-19 14:45:27,08:72:19:72:89:0e,lewesley@humphrey.net,img/obama.jpg +Shelia Haas,133-10-5247,55081,"3495 Graham Shore +West Patrickmouth, MH 45246-1202",1971-01-15 22:25:37,95:d1:91:96:0f:f3,robert97@hotmail.com,img/obama.jpg +Katherine Chen,751-60-9795,67642,"8382 Robinson Land +Aprilchester, VI 35826-6668",1920-10-26 15:41:52,b4:0d:b7:15:f4:58,jamespatrick@yahoo.com,img/obama.jpg +Laura Ward,605-65-1383,91238,"5261 Bill Burgs Apt. 482 +North Elaine, HI 46287-1504",1962-08-05 21:53:19,35:64:09:a2:ae:3a,cynthiamorton@gmail.com,img/obama.jpg +Eric Trujillo,120-40-0140,19854,"5469 Kathy Burg +Toddport, VI 59715-8208",1997-10-08 12:34:47,0f:c7:a8:81:9f:8d,vpotts@harrison.org,img/obama.jpg +Alexa Miller,201-01-0984,71121,"23288 Pope Parkway +Valeriemouth, SC 56657",1918-02-02 10:46:37,54:d0:f4:ea:80:7b,djones@baker.biz,img/obama.jpg +Justin Stein,225-29-3188,97381,"PSC 3020, Box 4211 +APO AP 16814",1924-07-07 05:05:46,97:05:97:38:ec:60,jamie43@hotmail.com,img/obama.jpg +Tiffany Atkinson,865-14-1002,89585,"15990 Nicole Camp +Mcfarlandmouth, MA 55405",2014-04-27 15:09:23,7a:0f:12:cd:eb:77,veronica11@nelson.com,img/obama.jpg +Jose Espinoza,161-78-6841,39446,"6481 Tracy Stream Suite 907 +Lake Johnstad, FL 33308",1993-09-03 08:25:59,83:b1:bb:12:9e:c0,gordonjustin@yahoo.com,img/obama.jpg +Johnathan Cross,279-17-4636,60229,"8242 Chad Turnpike Suite 259 +Mccormickhaven, MA 09889-7877",1920-11-10 16:25:17,1f:6a:7c:4d:95:01,deborahnelson@mitchell-montoya.com,img/obama.jpg +Jamie Young,726-86-6006,41474,"37574 Cunningham Station +Odonnellborough, OR 43897",1987-11-02 11:59:57,20:08:56:c1:58:88,jessica28@yahoo.com,img/obama.jpg +Dennis Nixon,575-04-8024,77871,"70509 Justin Overpass Suite 807 +Danielstad, OK 92484",1969-08-22 13:00:37,0f:f7:1d:ef:1e:e7,michaelbarrera@dominguez-cox.com,img/obama.jpg +Nathan Petersen,577-85-3940,62214,"664 Parsons Turnpike +Brandonfurt, TN 58626",1962-05-08 20:20:43,8e:07:88:a3:30:ad,kristina07@dorsey-lucero.com,img/obama.jpg +Jasmine Morgan,740-54-2709,07505,"2362 Patel Burg Apt. 785 +Webbfurt, WA 62507",2015-09-11 17:37:50,60:4d:97:9c:13:24,wbowman@cuevas-stephens.com,img/obama.jpg +James Allen,893-45-3665,87058,"005 Anderson Field +New Kenneth, FL 61603-9195",1919-06-01 21:42:23,56:65:57:f0:ff:81,todd46@yahoo.com,img/obama.jpg +Samuel Garrett,160-35-6825,42203,"40079 Williams Rest +East Mariastad, WY 93593-6921",1962-12-09 13:46:37,b9:79:63:57:b0:ec,johnstonraymond@sandoval-berry.biz,img/obama.jpg +Carol Hernandez,777-27-5567,83954,"119 Laura Pine +New Jill, AL 24411",1964-01-02 12:57:14,82:3e:1a:b5:18:96,stephensamber@bradford.com,img/obama.jpg +Christina Adams,779-96-2246,02904,"785 Denise Forest +Blakebury, MS 08581",1994-12-16 11:58:13,41:8d:bf:8d:58:d3,flandry@hotmail.com,img/obama.jpg +Ann Wells,019-84-4400,33411,"8232 John Expressway Apt. 931 +South Kelsey, IN 11611",1995-01-20 08:16:07,3e:30:ed:5d:ee:ce,davisjohn@yahoo.com,img/obama.jpg +Kenneth Perry,033-66-5950,60370,"949 Mccarthy Keys +South Laurahaven, UT 14475-4584",1982-10-01 02:21:30,bb:e9:7a:64:e4:44,hardinmary@gmail.com,img/obama.jpg +Mary Nguyen,726-16-7876,80736,"99523 Nicholas Summit Apt. 777 +Woodardmouth, HI 45847",1925-06-15 20:27:02,4c:af:12:18:eb:40,mariah89@villanueva.net,img/obama.jpg +Karen Allen,295-06-9026,42351,"7312 Tara Route Suite 883 +Ericksonberg, MS 19149",1935-03-13 09:10:37,72:9b:f8:8c:1d:c6,xmunoz@yahoo.com,img/obama.jpg +Jonathan Johnson,504-67-7604,87719,"527 Barrett Rapid Apt. 536 +Amandaburgh, MN 03761-8926",1945-02-16 01:08:48,b1:05:36:f9:9b:7b,caitlinstein@vasquez.com,img/obama.jpg +Joanna Johnson,420-08-5186,57371,"9611 Teresa Circles Apt. 544 +Lake Jenniferton, GA 66501-8793",1921-05-28 06:27:04,b3:2b:38:77:e1:60,markgray@gmail.com,img/obama.jpg +Kristi Jackson,321-64-2322,87760,"29055 Anthony Bypass +Davismouth, LA 53706",1953-10-21 15:49:15,76:51:f9:e0:b9:4f,natasha04@yahoo.com,img/obama.jpg +Mark Jenkins,621-02-8730,07903,"41149 Gillespie Tunnel Apt. 224 +North Carolshire, WV 54254",1945-12-29 11:58:04,76:78:6c:73:2e:47,pgriffin@richard.com,img/obama.jpg +Jessica Gardner,113-83-6554,14196,"08314 Thomas Plaza Suite 942 +Kimberlyport, KY 99620-3129",1954-10-05 00:16:41,81:6a:14:62:1a:80,smithlisa@combs.info,img/obama.jpg +James Howell,004-02-5374,89304,"1473 Gonzalez Isle Apt. 100 +East Georgeview, CO 67289-0035",1976-07-06 16:33:58,10:fc:0c:b5:02:d7,rebeccathompson@yahoo.com,img/obama.jpg +Kent Hess,476-12-6091,43377,"933 Fletcher Mission Apt. 556 +Wilsonland, WA 31523",2004-03-09 03:17:09,2f:c9:e4:f4:62:e5,jmyers@yahoo.com,img/obama.jpg +Brenda Patel,287-82-7667,04455,"76387 Shannon Ways +Larsenstad, MN 08843",1952-09-02 16:50:42,42:a6:77:0b:c5:ce,jclark@maddox.info,img/obama.jpg +Jared Castillo,807-83-2411,66841,"44741 John Mews +West Marcport, WY 27469-8113",1968-01-13 03:42:00,a4:39:84:9f:47:89,mjohnson@yahoo.com,img/obama.jpg +Lindsey Jensen,342-97-4536,61607,"44226 Sean Vista Apt. 768 +Kennethport, NV 20821-9103",1939-02-16 19:00:08,8b:9d:1c:16:0d:0a,cindy35@cuevas-hess.com,img/obama.jpg +Gabrielle Chan,643-33-4363,67307,"5189 Chavez Gardens +Rodgersbury, ND 82673",1976-03-10 09:11:42,72:8d:ea:97:93:e1,seanwalker@allen-newman.com,img/obama.jpg +Travis Bernard,660-27-2043,67657,"PSC 4153, Box 0477 +APO AA 85587",1941-08-21 20:13:45,fe:ff:97:9a:25:3a,gomeztyrone@adkins.info,img/obama.jpg +Anne Mendoza,050-49-7995,60549,"224 Stacy Corners Apt. 067 +Lake Bob, MN 86996-3328",2008-12-05 19:28:58,29:6e:1a:86:a7:70,michael08@gmail.com,img/obama.jpg +Felicia Douglas,001-93-7356,37494,"4139 Herrera Mountains +Susanfort, KY 10247",1974-08-26 02:31:54,d5:3f:3e:c1:e6:33,bonniehall@garcia.net,img/obama.jpg +Sheila Torres,785-39-4669,58901,"027 Leonard Ville +Chrismouth, WI 82176-6725",2011-10-09 18:15:11,2e:1e:c0:58:f2:61,thomasbrown@hotmail.com,img/obama.jpg +Anthony Rodriguez,574-56-1184,75869,"948 Daniel Bypass +Dannyside, CO 35695",2001-02-10 10:09:04,79:2d:c9:25:6a:e2,nicole42@gilmore-wilson.info,img/obama.jpg +Louis Garcia,808-93-9664,38644,"8638 Joshua Track +Sierraville, UT 57425-3405",1935-06-23 16:21:26,d3:b4:60:4a:86:11,kathryn03@haley.com,img/obama.jpg +Kelly Davidson,338-48-3441,23281,"4875 Danielle Knolls +East Markfurt, MN 59151-8050",1929-05-15 12:21:35,7d:1c:a4:ff:28:71,katherine85@gmail.com,img/obama.jpg +Tina Yates,847-18-2942,11699,"405 Baker Burg +New Lori, SC 18527-3724",1984-03-18 12:19:58,94:e3:01:13:84:1f,romeromadison@werner-campos.org,img/obama.jpg +Bob Sweeney,288-63-5774,88624,"USNV Brown +FPO AA 92547-6803",1989-04-03 15:53:25,1c:34:30:2e:a2:9d,weststeven@arnold.info,img/obama.jpg +Kyle Schneider,383-14-5749,70192,"05684 Kelly Highway +West Catherine, AZ 48291",1983-07-09 17:28:54,29:8f:71:02:71:19,richard80@yahoo.com,img/obama.jpg +Lori Knight,679-91-9675,79565,"42792 Aaron Circle Apt. 453 +East Brianshire, NE 30090",1997-10-30 14:19:05,df:7f:03:cf:43:8d,sylviasoto@yahoo.com,img/obama.jpg +Charles Vega,363-50-9888,62803,"5997 Ryan Village Suite 239 +Garcialand, OK 30951-1861",1932-12-29 00:02:33,c8:89:63:c7:39:2d,griffinwilliam@yahoo.com,img/obama.jpg +Jason Russo,858-46-7646,39661,"872 Mackenzie Knolls Apt. 695 +Willischester, NV 05068-7432",1988-04-16 10:26:12,67:b4:b0:76:b9:1f,moralesbrenda@yahoo.com,img/obama.jpg +John Miller,283-27-5841,77678,"3665 Conner Meadows Suite 927 +Lake Meganview, MP 54031-8599",1946-09-29 03:00:36,d1:1a:80:b3:a7:3c,jeremiahstafford@hotmail.com,img/obama.jpg +Kathleen Mcbride,305-06-7131,70881,"17410 Theresa Unions Suite 669 +Robertport, OR 65183",1984-05-20 02:10:33,df:fc:0d:be:b2:88,melissahayes@carrillo-suarez.com,img/obama.jpg +Nancy Burns,232-77-8856,33541,"932 Green Forks +East Johnville, NE 46398",1985-12-23 13:15:28,9b:ed:df:c7:51:2a,verickson@lopez.com,img/obama.jpg +Joshua Williams,547-38-8829,42184,"1111 Brian Underpass Apt. 355 +Youngfort, DC 07411",1965-02-09 08:32:33,4e:b0:2e:a5:8d:c0,ian44@yahoo.com,img/obama.jpg +Sabrina Stevens,576-20-0617,26829,"41478 James Circle +Mezaport, AK 34714",1939-02-08 23:44:29,aa:96:8d:4d:98:c3,pcook@beck.com,img/obama.jpg +George Johnson,391-10-2818,76609,"95313 Miller Forest +Chavezview, FM 74953-6207",1939-06-16 09:31:44,6b:87:39:7d:e9:bd,taylormichael@jackson-collier.com,img/obama.jpg +Nicole Fleming,637-13-5443,00772,"254 Elizabeth Parkway Apt. 994 +Catherineview, NH 99710-9068",1978-12-14 20:15:43,7b:d2:db:31:a3:38,smclaughlin@macdonald-kline.org,img/obama.jpg +Megan Reed,604-86-7850,66811,"2191 Saunders Path +Bryanside, MT 54564-2938",1935-07-15 01:36:04,be:b5:73:f9:65:44,dawsonstephanie@gmail.com,img/obama.jpg +David Quinn,046-47-6170,48280,"Unit 3410 Box 9633 +DPO AA 95902-4379",1922-10-17 15:39:02,3d:41:3a:0d:cf:b5,smithmiguel@gmail.com,img/obama.jpg +Robert Todd,255-43-8098,62985,"343 Hernandez Extensions Suite 554 +South Kristen, TX 78129",1942-01-15 10:32:04,1e:48:c1:25:bf:50,pclarke@wilson.net,img/obama.jpg +Ms. Dawn Lin,250-95-9783,40445,"438 Tina Glen Suite 361 +North Victoria, GU 30882",1950-03-12 09:44:20,4b:b9:fb:b3:79:1c,lanecharles@wolfe.com,img/obama.jpg +Christina Lopez,756-80-3793,06215,"594 Kathy Junction Suite 973 +Wilsonshire, AK 31497-6023",1980-07-29 22:58:08,6e:20:be:f2:b8:34,riddlefrank@gmail.com,img/obama.jpg +Jeffrey Rhodes,044-46-6059,56638,"07889 Rodriguez Place +Jeffreyshire, SD 46078",2017-02-12 09:59:49,e9:4d:05:4e:fc:c1,nunezmichael@harrison-burns.biz,img/obama.jpg +Nicholas Nelson,362-65-7494,33585,"9606 Marks Key +Lake Jonathan, MA 14871",1932-04-15 19:34:35,fd:cd:cd:4b:19:da,johnsonvalerie@campbell-perez.net,img/obama.jpg +Audrey Nguyen,384-23-0824,39616,"33951 Eric Shores Apt. 497 +Wilsonmouth, VA 18262-0413",2008-01-05 23:04:49,ee:42:29:35:7c:a0,robertayers@yahoo.com,img/obama.jpg +Stephen Turner,813-86-3435,39695,"1966 Mann Drive +Brownmouth, AS 95637-4943",1950-05-21 09:36:18,8d:e9:a7:ba:12:b5,christian00@yahoo.com,img/obama.jpg +Shelia Garcia,356-75-7489,78292,"19024 Catherine Forges +Lynchhaven, CT 10818-0474",1970-06-19 01:53:29,e9:6a:89:57:db:d8,renee60@klein.com,img/obama.jpg +Laura Hayes,448-03-0182,01156,"PSC 2045, Box 6228 +APO AE 20726",1945-04-16 06:14:07,d0:04:54:74:c9:94,amanda09@winters.org,img/obama.jpg +James Williams,866-21-2556,97870,"2157 Vazquez Flat +Wendyshire, ND 43302",1924-04-18 04:58:07,21:93:39:8f:75:78,dosborne@burnett.info,img/obama.jpg +Kathryn Edwards,663-44-4733,39208,"Unit 5309 Box 2608 +DPO AA 81209-7411",1993-12-29 15:37:49,f4:50:d8:67:dc:25,shannonrios@yahoo.com,img/obama.jpg +William Parks,651-27-3982,45669,"83925 Nicole Mission Apt. 773 +Jacobberg, NV 06979-7127",1967-08-22 09:22:46,ec:cc:08:23:08:ab,cbonilla@stephens.com,img/obama.jpg +Scott Henson,787-17-8697,66256,"1232 James Estate Suite 557 +South Taylor, ND 08821-7749",1974-08-25 03:54:07,48:a9:16:66:1a:b7,xbarnes@yahoo.com,img/obama.jpg +Kathy Scott,033-28-2345,84062,"20862 Washington Crossing Apt. 634 +Port Michelle, NH 33016-2251",1964-03-25 01:14:44,7f:2b:7d:7f:14:74,kennedychristian@yahoo.com,img/obama.jpg +Diane Gonzalez,018-16-9627,25954,"USNS Ford +FPO AP 66066-5791",1971-01-16 23:23:57,1e:c3:e0:64:9f:a0,hamiltonjessica@yahoo.com,img/obama.jpg +Lisa Anderson,125-83-2363,26417,"96555 Smith Orchard +North Alyssa, NJ 17209",1952-12-26 00:46:05,3c:44:7b:f6:c5:db,royfernando@gmail.com,img/obama.jpg +Thomas Wilson,838-91-4537,57617,"798 Sherri Crescent +Lake Laura, PW 85085-2138",1927-01-21 01:58:57,76:07:d6:5f:e9:05,zbeard@espinoza.net,img/obama.jpg +Destiny Mckenzie MD,756-73-4388,30558,"79116 Randy Pike Apt. 783 +South Crystalfort, HI 99820",1996-12-27 20:31:19,54:63:74:75:74:84,danielle68@hotmail.com,img/obama.jpg +Sandra Rodriguez,266-66-0646,93050,"419 Benjamin Ford Apt. 515 +North Douglas, IL 54438-1061",1966-05-26 23:32:11,66:f6:1d:12:c3:26,brobinson@yahoo.com,img/obama.jpg +Gary Maynard,584-62-6325,13580,"15675 Hill Road Apt. 591 +Deanhaven, NH 58175-6655",1919-07-02 00:41:54,58:71:31:3f:7b:52,raystephanie@yahoo.com,img/obama.jpg +Johnathan Scott,634-17-2275,87419,"09004 Lisa Walk Suite 235 +West Brianshire, LA 27663",1982-10-25 23:53:19,81:af:d1:18:20:cb,brandon15@gmail.com,img/obama.jpg +Kevin Romero,172-20-2529,38667,"8050 Melissa Meadow Suite 403 +West Laurafurt, SC 74359-2914",1957-11-01 18:21:16,f3:58:aa:d2:0b:b5,wandaphelps@cunningham.net,img/obama.jpg +Chase Snyder,660-67-1143,92002,"32956 Lee Valley +Rachelfurt, SD 90784",2004-10-29 02:44:50,ca:01:2d:5d:c9:ac,lmassey@yahoo.com,img/obama.jpg +Sara Lee,107-35-5964,68088,"938 Peterson Islands +Lake Kyleville, CA 79626",1917-05-12 13:52:28,d7:b0:bc:f8:72:a7,loweerin@lang.com,img/obama.jpg +Daniel Hart,240-27-1812,47307,"7437 Allen View Apt. 304 +South Christianhaven, VA 85940-9624",1949-10-07 15:50:38,19:49:77:de:ae:00,ccurtis@gmail.com,img/obama.jpg +Roger Porter,527-80-4790,27332,"067 Patton Station +Gonzalezfort, TN 77120",1982-06-06 22:56:12,45:a8:ea:2e:7a:aa,ryanhartman@smith.com,img/obama.jpg +Timothy Marsh,885-94-7688,42821,"6803 Michael Canyon Suite 046 +North Deannaview, OK 70540-0408",2001-07-18 04:49:19,9c:fe:48:49:b4:cf,aholmes@gmail.com,img/obama.jpg +Leah Kim,794-99-6163,81956,"1602 Lawrence Street Suite 025 +West Cynthia, VT 23431",1950-05-26 22:01:52,48:a2:90:07:40:d4,jasonfranklin@white-cox.com,img/obama.jpg +Mary Peterson,458-43-1079,65215,"0606 Elizabeth Place Suite 845 +Phillipsfurt, MO 88685",1967-06-01 15:26:35,7a:2c:0e:e5:6a:df,tiffanyfarrell@hotmail.com,img/obama.jpg +Amy Mcneil,123-81-0543,18878,"Unit 9376 Box 6062 +DPO AE 26593-8523",1922-02-08 13:25:00,1a:8b:34:bc:ed:7b,fthomas@yahoo.com,img/obama.jpg +David Eaton,344-61-0453,80735,"13099 John Land Suite 518 +New Melanie, OR 26786-4627",1971-09-21 15:04:59,27:12:f8:6f:5b:f0,pkelly@stuart.com,img/obama.jpg +Wayne Barnes,325-52-8539,25703,"Unit 4530 Box 9308 +DPO AA 78363-7227",1969-05-29 11:13:54,2b:75:a4:1f:ab:1f,mcdonaldjuan@yahoo.com,img/obama.jpg +Pamela Rocha,250-70-1995,48833,"322 Rebecca Lodge Suite 374 +Michaelland, DE 27296",1949-01-27 07:31:20,99:d2:a0:fb:41:ba,mark19@gmail.com,img/obama.jpg +Debra Rivera,230-41-3804,93740,"2641 Paul Trace +East Jenniferfurt, NC 38451",1934-08-09 01:22:47,58:10:02:7c:c9:3f,jgibson@hotmail.com,img/obama.jpg +Kenneth Ortega,865-17-2556,42786,"18139 William Inlet +Mullinsmouth, NJ 36249-1354",2012-11-12 21:45:24,19:01:0b:02:70:08,butlerjennifer@hotmail.com,img/obama.jpg +Alexis Williams,345-07-6699,79614,"3566 Cline Inlet Apt. 200 +Port Jillview, MO 56463",1921-09-26 10:47:47,ef:8e:af:b1:ae:c1,williamsjennifer@lynch.net,img/obama.jpg +Edward Turner,551-06-9219,14154,"8971 Mason Valley Suite 763 +New Glenn, IA 89063-2706",1996-03-24 21:19:40,bf:3a:05:cd:e2:86,annnunez@ashley-lopez.com,img/obama.jpg +Norma Huang,351-49-6277,09539,"46440 Jones Tunnel Apt. 189 +Port Michaelmouth, OK 18635",1959-07-18 01:29:44,42:21:70:ca:00:d6,eric53@hotmail.com,img/obama.jpg +Rachel Chapman,870-82-7254,53599,"9209 Jessica Skyway Suite 864 +Weaverfurt, PW 21147-2542",2002-09-26 18:58:51,32:d8:88:71:11:51,holmeschristopher@griffin-pierce.net,img/obama.jpg +Mr. Steven Dunlap,161-74-2435,71782,"839 Madison Estate Suite 172 +South Veronicaborough, MH 92021",1983-06-22 20:33:45,b0:f0:ba:68:40:ca,jcrawford@yahoo.com,img/obama.jpg +Diane Frank,149-51-1760,86229,"65710 Horton Mews Suite 867 +Port Jenniferville, CT 42631-5576",2005-11-18 03:02:10,4e:83:a7:f8:be:1c,franklin55@yahoo.com,img/obama.jpg +Lori Morrison,896-83-9262,84697,"Unit 9375 Box 2872 +DPO AA 22111",1990-08-09 02:25:36,eb:75:92:de:f4:09,wyoung@maldonado-lopez.com,img/obama.jpg +Matthew Mullen,041-68-7553,54555,"9529 James Parkways +West Jamie, IL 52239-4107",1933-10-18 18:35:26,66:93:4c:89:21:78,allenhunter@wallace-boyd.com,img/obama.jpg +John Webb,114-09-9539,31323,"037 Summers Landing Apt. 156 +East Dakota, AZ 27857-8053",1934-06-15 15:12:03,48:b7:05:0a:8a:9c,michelesanford@hotmail.com,img/obama.jpg +Thomas Barnett,604-26-3707,08866,"91037 Tyler Overpass +Powellland, SD 66028",1958-04-17 09:39:04,eb:7b:04:97:52:8d,sherryherrera@andrews-gomez.org,img/obama.jpg +Brent Brown,617-62-5652,59270,"371 Nicholas Manors +North Chelsea, TN 63373",2016-09-26 14:43:42,ed:47:10:58:59:ff,schurch@salazar-lambert.info,img/obama.jpg +Yvette Avery,246-87-3989,31776,"85772 Christian Isle Suite 573 +Port Mary, VA 51704-2268",1942-12-01 02:40:09,48:21:be:28:16:50,david79@hotmail.com,img/obama.jpg +Colin Rice,781-69-0350,36480,"4832 Miller Lodge +Allentown, PA 01004-9429",1949-12-28 03:25:03,45:92:52:7b:1e:38,josephsmith@hotmail.com,img/obama.jpg +James Ware,216-49-6737,68134,"54688 Johnson Circles Apt. 307 +South Omar, ND 99742",1999-05-17 17:39:19,cc:92:c4:b9:60:b9,alexlutz@gmail.com,img/obama.jpg +Emma Oliver,873-19-1485,07533,"732 Anthony Wells Suite 356 +East Patrick, LA 84250-9744",1953-12-29 04:55:53,3a:2b:db:ab:69:58,adrianamoran@castillo-adams.biz,img/obama.jpg +Randy Clark,004-53-9329,79656,"640 Smith Inlet +Lake Tammy, DE 51470-0683",1992-05-03 04:07:08,7e:d4:47:11:ca:e0,jasoncruz@yahoo.com,img/obama.jpg +Ashley Wilkerson,283-17-1786,85950,"4992 Sarah Stravenue +Kingfort, MH 69115",1945-01-16 19:59:53,83:ac:69:8d:b9:2d,nicholas22@yahoo.com,img/obama.jpg +Richard Patton,679-82-3359,44940,"3837 Watson Camp Apt. 827 +East Amberland, MN 37761",2009-10-17 01:06:36,92:ff:3e:ab:9b:0d,sfrank@garrison.info,img/obama.jpg +Lisa Diaz,015-68-9903,97554,"5813 Perkins Fort +Hannaborough, PW 35088",1988-07-04 17:53:48,fd:42:bf:c2:df:3f,michael60@guerrero.com,img/obama.jpg +Jeffrey Martin,277-74-5601,15387,"57998 White Point +South Andrewfurt, PA 22030",1941-10-24 02:40:04,f8:4a:cb:89:1e:d4,andersonbrent@hotmail.com,img/obama.jpg +Steven Smith,628-66-7274,25001,"197 Shaun Mall +Port Josephhaven, MA 46711-0522",1938-12-19 13:42:43,99:05:e5:97:ed:c8,wendy39@williams-martinez.com,img/obama.jpg +Stephanie Zimmerman,047-06-1284,30449,"05756 Terrell Stravenue +Charlesbury, VT 81815",1936-05-28 09:29:16,37:cb:36:ae:75:1d,david20@hotmail.com,img/obama.jpg +Kimberly Moyer,281-95-2448,43260,"087 Kathryn Views +Port Troy, AK 92788",1974-12-26 01:01:26,d4:f6:1d:30:ee:b8,shelbymendoza@gmail.com,img/obama.jpg +Steven Davis,845-21-8935,23080,"200 Harding Track Suite 815 +Lake Amanda, RI 21689",1918-04-08 23:19:29,9f:50:48:18:9b:f5,fowens@gmail.com,img/obama.jpg +Alex Skinner,460-04-9664,36931,"USNS Strickland +FPO AE 20664",1988-08-17 13:11:39,48:4b:84:bf:64:34,stoutshaun@hotmail.com,img/obama.jpg +Rachel Lee,457-62-9375,92289,"1395 Sanchez Point +Lauramouth, MP 33813",1948-07-17 15:45:24,0b:43:9f:10:84:cd,berrydonna@gmail.com,img/obama.jpg +Andrew Giles,240-87-2573,05705,"5193 Kenneth Field Suite 793 +South Joshuaport, GA 11904-6208",1980-01-25 08:08:42,8f:1a:59:49:79:5d,tara39@flores.com,img/obama.jpg +Renee Lynn,833-36-8469,70975,"8684 Ronald Well +Grossbury, IL 22204-6358",1983-01-09 08:59:31,09:68:d3:24:e3:8e,jennifercook@tran-dixon.com,img/obama.jpg +Mark Lopez,345-89-7845,77610,"47427 Cooke Creek +Juliemouth, MP 01690",2012-08-03 15:22:54,2c:97:de:7b:4b:e1,deborahmiller@yahoo.com,img/obama.jpg +Gene Carrillo,817-70-1546,64779,"USS Trujillo +FPO AA 71846-7269",1941-11-09 22:22:21,ec:b5:66:94:c7:18,vnelson@mccarty.org,img/obama.jpg +Victoria Brown,782-83-0104,71794,"4274 Jessica Divide +Jeffreyhaven, NH 54892",2007-10-05 04:40:48,82:81:80:a5:25:05,rmcgee@gmail.com,img/obama.jpg +David Thomas,364-80-5322,33557,"782 Stanley Harbor Apt. 566 +New Rachelmouth, IL 79226",2012-11-30 14:51:16,b7:fe:d8:ee:fb:5e,austinfields@cox-lyons.com,img/obama.jpg +Andrea Ryan,793-29-3702,48166,"60383 Shawn Roads +South Justinside, VI 35163-9934",2008-03-29 03:33:56,ee:9c:25:7c:d2:ab,stephanie59@yahoo.com,img/obama.jpg +Laurie Baldwin,243-06-2781,64852,"217 Christopher Mission Apt. 135 +New Frank, MS 61465",1945-04-23 22:26:22,c4:66:c8:e1:bc:53,christopher35@craig-meadows.com,img/obama.jpg +Julie Hanson,889-97-1557,52204,"1295 Yolanda Prairie +Edwardview, DE 35351",2004-11-08 23:49:37,72:4e:40:1c:1f:34,suttonmichelle@wilkinson.com,img/obama.jpg +Chloe Ellis,540-05-9242,33194,"9403 Riddle Shore Apt. 306 +Jessicafort, PW 34650-1891",1934-12-20 13:50:03,1e:ed:ed:f0:73:0e,susan53@walker-white.com,img/obama.jpg +Tracy Thomas,794-73-2116,75060,"7792 Kline Drive Apt. 005 +West Kennethland, MD 65955-2225",2013-10-18 07:35:56,28:78:e9:c1:5e:5c,justinlopez@crawford.info,img/obama.jpg +Carlos Wade,144-31-7837,56656,"PSC 3810, Box 8758 +APO AP 08869",1983-10-12 08:40:03,50:f9:0a:84:b3:26,matthewscody@clark.com,img/obama.jpg +Monica Wilson,498-95-6849,35267,"828 Carol Pines Apt. 129 +East Anthony, AZ 91765",1953-11-19 20:20:45,bf:10:5d:5c:fc:32,wrightjames@gmail.com,img/obama.jpg +Robert Lewis,213-45-0901,18168,"699 Benjamin Meadows Apt. 333 +Darrenchester, WV 16291",1952-11-12 10:48:24,2c:60:b2:de:15:0d,scottshelby@allen-lucas.com,img/obama.jpg +Brandon Mccoy,752-03-0299,63252,"PSC 6013, Box 4479 +APO AP 33098",1929-02-11 16:09:10,a4:3f:d9:d4:91:30,gsimmons@miller.com,img/obama.jpg +Alexandria Wilkins,626-65-2387,39675,"889 Bell Shoals +Jasonchester, MH 45956-0611",1965-09-01 12:52:36,46:a4:84:6e:64:3f,gregorymanuel@brooks.com,img/obama.jpg +Natalie Turner,097-44-0129,90683,"USNV Long +FPO AP 45993-0441",1933-04-18 20:45:46,b2:85:dd:d0:7e:4b,lydiasimon@hobbs.com,img/obama.jpg +Teresa Hunter,861-67-2958,34135,"332 Santos Manor Apt. 267 +Perryberg, DC 15947",2000-02-26 04:17:55,a4:1b:a9:cd:b6:fd,charles64@gmail.com,img/obama.jpg +Keith Brewer,701-16-8861,27737,"38403 Lawrence Shoals +Westside, NJ 35444-0957",1925-04-25 06:23:27,b5:25:1f:e5:d1:86,richard28@solomon.org,img/obama.jpg +John Rodriguez,096-93-4114,23571,"3035 Dustin Extension +Hollyside, WI 76937-1228",2005-03-28 20:15:41,37:84:22:26:69:c4,kempdonna@yahoo.com,img/obama.jpg +Michelle Montes,469-65-7903,28554,"906 Lee Extensions +East Christopherborough, WI 87634-5454",1981-04-25 14:51:38,cd:06:12:ad:dc:a4,michaelblackburn@richardson.com,img/obama.jpg +Amanda Dean,856-36-1810,30497,"5283 Keith Common Apt. 118 +East Ambermouth, PW 23411-4400",1921-06-14 04:48:35,44:1b:03:9e:fa:37,jessica56@mathis-stewart.info,img/obama.jpg +Anne Grimes,461-49-4055,88487,"993 Roberts Hill Apt. 139 +New Tashaville, HI 18911",1951-06-20 17:35:30,33:03:f9:a8:3e:85,ncortez@sherman-bowers.com,img/obama.jpg +Wendy Myers,372-95-4725,82667,"584 Lawrence Islands +North Cynthia, KS 78602-3379",1991-10-30 11:57:45,57:04:9b:2c:ea:ff,mccoyalicia@gmail.com,img/obama.jpg +Luke Wagner,380-99-9876,69375,"371 Erin Valleys Apt. 676 +New Arthurhaven, NJ 79677-4274",1986-01-11 11:36:55,3a:25:27:1e:db:b4,gilljeremy@patel.com,img/obama.jpg +Sarah Thomas,334-25-2925,61622,"3605 Robert Mission +East Anna, AS 82087",1995-07-17 16:18:49,8d:32:99:f9:7a:69,cynthia16@yahoo.com,img/obama.jpg +Laura Alvarez,626-13-3987,80194,"4190 Nash Hills +North Emilyland, MO 62723-4115",2010-03-08 16:40:28,e6:ae:97:8f:c8:ef,levinejesse@hunt.com,img/obama.jpg +Ruth Ochoa,823-23-7647,44514,"9185 David Mews +Lake Lisa, NH 92601-8463",1947-05-31 17:45:15,34:47:6f:2a:59:8e,jackiesmith@ferguson.biz,img/obama.jpg +Mallory Spence,623-52-7282,01494,"9684 Miller Shoals +West Stevenhaven, AR 19911-8718",1982-12-10 21:21:42,09:27:f6:4b:2e:d5,dennis24@yahoo.com,img/obama.jpg +Susan Wright,750-92-2281,25279,"096 Carla Circle +Port David, HI 15515",1935-12-15 22:56:45,46:3c:8b:a3:86:d6,wilsontina@gmail.com,img/obama.jpg +Kathleen Leblanc DVM,269-22-5596,37309,"69970 Hughes Neck Suite 875 +Willieland, WI 45224-8271",2015-06-19 02:09:35,44:81:c3:3e:11:1f,taylorjames@yahoo.com,img/obama.jpg +Terry Christensen,161-20-9696,65187,"52831 Thomas Prairie Apt. 595 +East Brett, IA 14088",1985-10-24 22:55:37,74:02:e5:ed:bb:62,xherring@gmail.com,img/obama.jpg +Tammie Carter,531-29-7373,49309,"6777 Michael Viaduct Suite 969 +West Diana, TX 18537",2000-02-06 18:53:53,3e:b7:6a:cd:90:c1,lmorrison@hotmail.com,img/obama.jpg +Heidi Gonzalez,175-95-3445,59781,"46090 Cervantes Lake Suite 375 +Port Kevinhaven, AR 94137",1920-12-26 11:38:56,50:6a:b2:85:96:a0,michaelgarcia@hotmail.com,img/obama.jpg +Jonathan Bennett,134-88-9789,52358,"7616 Monica Forge +Marietown, MO 42258-7781",1950-05-21 19:52:29,b4:dd:15:42:ae:b7,pmartinez@carpenter.com,img/obama.jpg +Gabriel Gonzalez,401-50-5283,74598,"879 Davis Port +South Brittanychester, ND 83257",1949-09-04 09:07:59,6b:6b:85:90:b9:fe,benjaminkyle@yahoo.com,img/obama.jpg +Cathy Rowe,129-06-8258,63397,"33491 Fry Alley +Goodwinville, ID 36403",1984-02-05 02:31:59,62:0c:e6:07:1f:54,stouttanya@gmail.com,img/obama.jpg +Douglas Diaz,052-16-4498,05743,"Unit 2399 Box 9917 +DPO AA 94917-4699",1999-03-03 08:16:03,64:cd:e0:86:38:51,wheelerjoshua@gmail.com,img/obama.jpg +Steven Buchanan,074-18-6847,82550,"8238 April Port Suite 238 +South Diana, TN 11556",1977-04-07 22:30:11,39:7a:eb:b4:c7:a3,michellereed@huber.org,img/obama.jpg +Angela Neal,303-76-2236,93546,"61979 Timothy View +Jenniferfurt, CT 55443",1928-09-29 14:37:29,45:df:6e:5a:91:dd,donnahunter@hotmail.com,img/obama.jpg +Gregory Barnes,826-14-4976,19251,"682 Wilson Neck Apt. 129 +Bethside, NY 65150-3322",1945-09-12 20:10:29,1b:38:d7:57:9a:a8,jill32@yahoo.com,img/obama.jpg +David Anderson,231-46-5140,91797,"733 Brittney Plaza Apt. 956 +Lake Jamie, HI 18019-5173",1993-11-25 08:27:30,6d:b0:60:fa:c5:40,kristahall@gmail.com,img/obama.jpg +Rachel Fields,500-55-9731,13939,"3740 Edward Mall Apt. 059 +Zamoramouth, DC 68680-9894",1918-03-23 10:08:26,3a:28:a5:b6:9a:5f,michaelmoore@hotmail.com,img/obama.jpg +Douglas Hamilton,587-53-1765,88016,"49135 Michelle Stream +Hillfurt, MS 50113",2003-09-28 00:47:45,51:79:bd:7f:51:fa,tkelly@johnson.com,img/obama.jpg +Teresa Rodriguez,636-73-3785,01241,"02550 Preston Bypass Suite 060 +West Roseland, PW 49225",2009-12-18 05:08:55,f6:c5:56:5d:87:ac,jeremy49@bell.com,img/obama.jpg +Justin Harrison,562-57-8194,51865,"2310 Yesenia Views Suite 972 +Port Daniellestad, TN 31450",1940-07-25 06:22:26,7a:2d:a0:63:bb:bc,dhill@livingston.com,img/obama.jpg +Mark Watson,333-09-9647,32269,"8859 Gary Overpass +New Melindastad, VA 93956",1929-04-15 01:07:04,ef:9d:5a:ed:4b:bd,billy76@warren.com,img/obama.jpg +David Wallace,013-41-7247,02466,"8508 Todd Radial Suite 432 +Sullivanborough, WI 10572-4858",1993-02-09 22:38:58,27:61:be:56:c2:35,odompaul@blake-smith.com,img/obama.jpg +Charles Lewis,423-89-2346,79057,"7275 Hayes Islands Suite 062 +North Francisco, ND 48145-4364",1958-04-13 12:19:38,0b:3a:9c:72:6a:38,alang@bailey.com,img/obama.jpg +Daniel Williams,047-91-0868,02101,"71189 Molina Way Apt. 679 +Brandtview, AR 86462",2010-05-04 12:57:48,3d:38:1b:7a:08:9f,perezdavid@gmail.com,img/obama.jpg +Rachel Washington,297-57-1251,22847,"858 Debra Coves Apt. 536 +New Susanfurt, NE 04916",1981-11-20 07:52:04,70:59:95:cd:7c:db,manuelmitchell@gmail.com,img/obama.jpg +Paul Mitchell,250-67-0565,56946,"8691 Michael Club Suite 767 +Jeanettestad, VI 36020-3096",1978-01-29 13:59:03,fd:0e:5e:fd:37:fb,yolandadavidson@yahoo.com,img/obama.jpg +Jose Smith,580-87-3554,76629,"Unit 2237 Box 0070 +DPO AP 80326-3134",1983-08-07 03:50:37,8c:7e:13:c1:7f:20,blake60@hotmail.com,img/obama.jpg +Jamie Blanchard,186-32-8517,41556,"716 Pennington Hill Apt. 657 +West Monicaberg, SD 72653-7644",2013-02-17 01:25:21,06:6b:de:2c:80:fa,elizabeth46@blackburn.biz,img/obama.jpg +Kevin Williams,623-10-9835,75269,"104 Thomas Mountains +North Stephanie, AS 93127",1922-07-24 03:19:17,eb:79:e2:25:78:b0,glopez@gmail.com,img/obama.jpg +Jane Sanchez,108-83-8160,90434,"31461 Chapman Circle Suite 357 +East Cherylmouth, VI 10575",1942-07-27 14:28:38,a2:b3:cc:b1:02:5b,lisa55@anderson.com,img/obama.jpg +Jamie Pierce,740-41-9356,90997,"0506 Jeffery Crossroad Apt. 071 +Port Lesliebury, TN 44832-9652",1990-08-09 02:11:05,61:70:2d:8d:cc:1e,martineznichole@hotmail.com,img/obama.jpg +Nancy Bailey,270-97-7453,04204,"36315 Johnson Coves +East Deannaside, VA 73188",1985-07-09 06:32:22,1e:c1:78:d7:32:d8,johnsongregory@nash.biz,img/obama.jpg +David Coffey,563-02-5813,95013,"9832 Breanna Mission Apt. 273 +Benjaminview, PR 44995",1939-04-29 22:54:19,e7:3c:c6:3c:02:d8,erinwilliams@rodriguez.com,img/obama.jpg +Jon Pollard,324-77-7011,73450,"75849 Cooper Station +North Christopherfurt, GA 46469",1922-11-03 21:58:26,7b:f2:bb:1d:e4:0a,garrettrebecca@yahoo.com,img/obama.jpg +John Ramsey,551-17-1325,20089,"9304 Erika Creek Apt. 697 +Hodgesville, PA 32914-8754",1959-11-08 05:03:48,f8:18:e2:8f:2a:fa,christinehall@hotmail.com,img/obama.jpg +Christine Taylor,397-64-3505,49889,"21940 Candice Via Suite 640 +Bergborough, MO 92809-3566",1931-04-05 15:09:11,7f:00:52:8a:80:9f,richard92@morales-williams.biz,img/obama.jpg +Julie Hernandez,328-98-0025,65576,"47007 Noah Extension Suite 278 +Lake Natalieland, AK 79446-8275",1953-01-13 17:36:11,7e:87:8b:8e:a3:f1,rwaller@watson.com,img/obama.jpg +Joseph Montgomery,236-48-6110,67284,"730 Sellers Center +Port Jeremy, GA 18983",1988-03-07 10:12:39,4b:ef:92:d9:f8:e1,brenda92@gmail.com,img/obama.jpg +Willie Monroe,886-14-5171,38320,"712 Mullins Meadow +South Joshua, DC 35632",1944-08-16 10:06:58,01:c2:ca:a5:e9:67,mwatts@pittman.biz,img/obama.jpg +Samantha Roberts,499-65-8086,67559,"380 Kimberly Ways +Hoodstad, NM 61191",1984-10-21 17:32:14,f2:27:9d:63:95:ac,williamswilliam@henry.biz,img/obama.jpg +Jamie Perkins,463-43-6140,04672,"175 Hannah Station +West Ericville, IL 58668",1952-07-17 14:41:28,8d:b3:66:fa:86:10,alanreid@yahoo.com,img/obama.jpg +Christopher Gonzalez,648-13-2824,47320,"USNS Montoya +FPO AE 76612",2004-08-18 13:12:41,2c:fb:c1:9b:ce:da,christopherking@carr.com,img/obama.jpg +Christopher Townsend,243-93-4631,85952,"0199 Donald Mountain Suite 422 +Russellland, NY 02412-0691",1926-07-15 12:43:05,c4:a9:8a:d0:14:14,williamtucker@gmail.com,img/obama.jpg +Brandon Morales,768-55-2437,59642,"099 Rachel Island Suite 586 +North Nicholas, FL 83429",1941-07-07 12:14:30,93:eb:0f:8d:33:68,vbrown@marquez-stewart.com,img/obama.jpg +Emily Holt,469-19-0176,88294,"3585 Brian Station Apt. 065 +Leslieberg, MI 42888",1937-08-13 02:15:16,a5:a8:0e:45:44:32,duncansabrina@vance-rodriguez.org,img/obama.jpg +Bruce Black,370-01-0975,52941,"1713 Schmidt Ways Apt. 315 +Butlerberg, CA 15606",1942-09-18 07:40:09,53:79:20:ed:66:12,richard67@yahoo.com,img/obama.jpg +Alejandro Henry,483-13-5185,31473,"1304 Melissa Land +Richardsonbury, MH 18096-8041",1992-10-13 21:27:10,c8:90:98:44:65:56,shanecollier@silva.com,img/obama.jpg +Donald Espinoza,071-25-4576,31509,"8059 Wilson Shore +East Patricia, SD 23209-7041",1981-11-08 23:55:23,8c:29:11:90:73:89,christinacaldwell@yahoo.com,img/obama.jpg +Karen Smith,377-92-2254,35893,"7917 Bradley Lake Apt. 583 +Nathanville, PR 03264-3004",1928-06-13 16:42:04,11:14:d7:c5:ff:49,joshua27@hansen.biz,img/obama.jpg +Aaron Alvarez,271-11-7671,16542,"PSC 3749, Box 7984 +APO AP 30166",1927-10-02 01:27:38,49:68:9f:f8:b2:1d,riosanna@allen.com,img/obama.jpg +Brian Hayes,764-34-9079,58460,"9745 Samuel Forge Suite 689 +Millermouth, PR 07385-2941",1943-10-15 14:32:13,b0:4e:54:67:f3:2b,angela10@day-foster.org,img/obama.jpg +Dustin Jackson,245-96-2266,19455,"88751 Jones Skyway +Port Debbie, MT 85576-8047",1956-09-28 17:53:41,99:41:6f:93:d1:64,watkinslindsay@salinas.com,img/obama.jpg +Nicholas Martinez,807-03-4872,24491,"170 Angela Locks Apt. 706 +Joeton, CO 55025-3780",2000-05-27 20:34:23,2d:1d:3d:2b:c1:9d,mariachang@hotmail.com,img/obama.jpg +Travis Abbott,061-11-5349,97739,"4439 Blair Tunnel Apt. 795 +Gutierrezfort, AZ 88272",1980-11-14 06:46:35,b3:72:6c:08:54:0f,deborah87@sanders-malone.com,img/obama.jpg +Mark Smith,504-07-0525,05266,"USNS Lawrence +FPO AA 10430-9608",1943-10-21 20:09:32,e0:5b:8f:8c:a7:09,bonillacynthia@simmons-dougherty.com,img/obama.jpg +Angela Stone,239-86-0099,81696,"92026 Stephanie Well Apt. 582 +West Rebeccaside, SC 76871",1956-06-17 02:06:27,4d:ba:6b:06:2b:4d,dixonkatherine@gmail.com,img/obama.jpg +Katie Spencer,741-52-0823,47879,"082 Jean Mountain +East Elizabeth, SC 29981-5798",1950-08-12 23:14:49,9e:91:85:b4:82:18,dcastaneda@yahoo.com,img/obama.jpg +Emily York,842-90-2880,30332,"28614 Garza Rapids +Jeremyville, OH 87900",1940-03-21 20:00:47,c1:df:82:24:39:5f,william98@santos.com,img/obama.jpg +Martha Salinas,363-36-8067,37796,"55003 Dunn Rapid +Alexanderstad, AL 94474-0468",1948-07-28 03:06:56,b9:1e:8c:a8:d9:9b,ubutler@stephens-rivera.com,img/obama.jpg +John Wilson,820-21-1439,01317,"6155 Edwards Squares Apt. 203 +Dianeberg, MI 16739-6054",1996-05-08 07:30:40,25:7c:d6:31:ed:6c,meyerjames@gmail.com,img/obama.jpg +Samantha Vasquez,239-56-7185,18548,"Unit 8856 Box 6295 +DPO AP 00838-8560",1956-04-26 23:08:21,37:57:b5:b7:42:e9,jeffrey99@yahoo.com,img/obama.jpg +Brian Jackson,443-83-8105,74958,"USCGC Patton +FPO AP 76828",1928-08-14 01:29:42,8b:c7:f1:08:d1:65,waltersbrian@gmail.com,img/obama.jpg +George Moore,664-88-8866,75884,"7895 Simmons Squares Suite 963 +Lake Valerieport, NH 35803",1984-12-18 13:58:36,27:68:b3:58:f0:32,carrcheryl@yahoo.com,img/obama.jpg +Sean Beard,181-57-5485,27486,"936 Bowman Station Suite 723 +Carolynmouth, WV 01697-1129",1929-05-14 09:01:25,ed:ec:6e:e6:8b:2a,afry@hotmail.com,img/obama.jpg +Whitney Richardson,083-48-9339,76643,"334 Alvarez Station +North Chase, MN 78233",1979-07-11 19:36:07,89:c0:cc:73:58:fc,elizabeth89@long.net,img/obama.jpg +Brenda Estes,638-46-8270,78683,"444 Laura Throughway Suite 797 +South Davidton, VI 04946-2090",1972-02-01 05:40:11,69:0e:29:89:46:c2,timothyross@hobbs.org,img/obama.jpg +Tracy Fisher,161-41-1173,03665,"19048 Bowman Keys Apt. 350 +Smithberg, WV 93052-3696",1979-02-05 17:13:16,84:35:f1:98:ef:f9,justinhall@baxter.net,img/obama.jpg +Teresa Moon,637-16-2060,01780,"42633 Bell Avenue +Port Adamton, OK 95577",1962-07-18 18:22:26,f9:3f:e4:f1:42:b1,qphillips@woods-morris.com,img/obama.jpg +Pamela Cook,287-37-7594,70450,"1345 Newton Burg Suite 475 +West Richard, AR 29608",1980-07-08 20:50:36,6d:14:62:ea:93:d3,sean52@gmail.com,img/obama.jpg +Hannah Krause,410-79-2273,02486,"25482 Spencer Key Suite 379 +East Suzanneport, AR 25837-8862",1969-12-15 14:01:29,77:56:21:92:41:b7,walkersusan@odom.com,img/obama.jpg +Donald King,376-88-1382,75047,"696 Tate Crossroad Apt. 016 +Michaelfort, NJ 98443-5948",1948-08-12 12:03:08,ac:4e:8e:73:15:f4,pbenjamin@rivera.com,img/obama.jpg +Ronald Hall,315-38-4122,33424,"806 Martin Fork +West Regina, NH 11117-0190",1982-10-17 17:34:35,c3:84:e3:b1:f4:22,xconley@yahoo.com,img/obama.jpg +Matthew Aguirre,404-94-8205,92024,"303 Jessica Valleys Suite 608 +Lake Christy, RI 77420-9282",1998-12-30 08:32:39,62:70:39:95:ca:ab,fpage@gmail.com,img/obama.jpg +Leah Wright,275-34-7335,86340,"028 Golden Trafficway Apt. 040 +Townsendshire, AZ 41668-4265",1984-02-15 10:54:17,8c:70:d8:48:2e:2e,martindaisy@smith.com,img/obama.jpg +Amy Lynch,458-80-4567,02276,"05038 Aguirre Crescent Apt. 543 +Wattsberg, GA 34884-3737",1997-01-25 11:20:37,3c:87:36:2b:d2:17,wagnerrobert@armstrong.org,img/obama.jpg +Raven Bell,824-83-7729,34618,"467 Foley Dale Apt. 705 +Sabrinamouth, MP 31025",1955-10-23 16:07:54,b2:f5:cc:15:0b:4d,hbrown@hotmail.com,img/obama.jpg +Ronald Johnson,135-54-6273,97667,"922 Douglas Mount Suite 410 +South Susan, VA 17719",2014-08-26 03:33:16,c5:b4:ba:bd:ad:e6,trevor81@gmail.com,img/obama.jpg +Gail Cruz,314-29-3826,17098,"481 Tyler Shore +Simmonschester, NE 09968",2017-01-06 15:26:08,57:a7:f8:9e:fc:da,johnbaker@williams-oconnell.org,img/obama.jpg +Jesse White,426-57-9811,88875,"52535 Amanda Lakes Suite 253 +Lake Kimberly, OR 39604-0430",1948-02-24 02:01:46,93:e8:19:32:8b:60,ghernandez@price.com,img/obama.jpg +Aaron Fields,285-66-2717,28466,"USNS Kim +FPO AA 49368-8516",2008-11-20 20:35:54,23:7c:98:aa:05:85,zhoward@lane.com,img/obama.jpg +Mrs. Donna Macias,687-69-2258,18783,"87930 Baker Shoal Apt. 225 +East Davidside, NJ 60704-2422",1993-08-16 08:57:01,b0:ae:db:61:1e:7e,drich@hotmail.com,img/obama.jpg +Amy Chen,846-13-8538,23642,"892 David Burgs +South Christopher, TN 58495",1996-11-13 08:15:29,e2:3d:95:02:6c:5f,hooperjesus@gmail.com,img/obama.jpg +Lori Pena,139-29-4285,17649,"412 Lisa Mills +Stephanieview, WI 17443",1953-12-01 05:20:47,2c:4a:31:4f:e9:90,julierobinson@garcia-moreno.org,img/obama.jpg +Brandon Hernandez,494-46-4549,74280,"1336 Christopher Park +North Alexandra, WV 01293",1971-02-13 23:29:24,0a:bb:15:c0:f5:c5,steven95@hotmail.com,img/obama.jpg +John Stone,670-30-7196,07548,"495 Kelly Trail +New Donnaville, MN 47349",1934-12-28 14:27:45,e9:f3:8a:c6:19:25,meganmack@yahoo.com,img/obama.jpg +Amber Burgess PhD,739-32-4686,09228,"5711 Mathews Lodge +Rileyland, CA 22379",1970-12-28 06:00:55,f2:ab:67:b6:41:9a,westrebecca@wyatt-flores.com,img/obama.jpg +Brittany Kim,198-02-7296,05627,"7693 Anthony Hill +North John, NC 22521-6518",2009-07-24 15:14:51,df:b5:06:ee:29:e9,aaronellis@clark-bishop.com,img/obama.jpg +Connie Meyer,568-54-6141,88608,"319 Jared Pine +New Timothy, ND 05264",1940-11-17 17:34:33,fa:b5:a1:03:9f:f5,williamsmelanie@hotmail.com,img/obama.jpg +Gregory Frederick,211-57-6853,72217,"552 Brian Greens +Aprilmouth, SC 38568-5528",1928-12-04 01:35:02,d2:36:a0:dd:ba:13,isimmons@gmail.com,img/obama.jpg +Chelsea Barnes,860-64-6229,56016,"40116 Stevens Summit Apt. 288 +South Michaelberg, ND 93450-5460",1929-09-27 17:51:02,60:d7:e4:8c:6b:66,thomasmorris@gmail.com,img/obama.jpg +Charles Walker,344-50-2638,26969,"PSC 6013, Box 1857 +APO AA 91108",1963-09-03 10:26:45,eb:cf:b7:7d:4a:6e,jared21@perez-murray.com,img/obama.jpg +Alexandra Dunlap,306-79-2043,97377,"53026 Price Common Apt. 702 +New Angelberg, MH 63387-7153",1940-01-28 15:30:36,1d:78:bf:13:00:fa,nunezralph@hotmail.com,img/obama.jpg +Kelly Franco,532-91-8560,54951,"532 Fields Canyon +Hatfieldberg, UT 60079",1958-05-13 22:25:40,30:7f:78:2a:c2:cb,pamela29@yahoo.com,img/obama.jpg +Joseph Jimenez,436-24-0901,59802,"015 Dylan Harbors Apt. 706 +North Jeffrey, MS 45061",1963-10-24 04:14:20,9c:a0:33:9f:39:1b,carrdarlene@yahoo.com,img/obama.jpg +Ashley Davidson,296-64-7791,44717,"89744 Black Coves +New Ericside, WV 97384-9391",1936-08-11 23:07:56,6c:7c:cb:f3:af:ba,tgaines@wall.net,img/obama.jpg +Lisa Hull,223-91-3161,16090,"3435 Roach Rest +East Colleenton, OH 63424",1938-01-17 03:33:42,14:b7:bd:81:70:dd,ashleyboyd@yahoo.com,img/obama.jpg +Douglas Clay,111-51-7997,56332,"USS Tucker +FPO AE 23250",1973-09-06 14:00:17,d0:f7:ab:1a:99:7a,jenniferburke@gonzalez.com,img/obama.jpg +Ryan Robbins,866-89-3723,47170,"528 Mary Grove +Jenniferport, NV 77755-1254",1939-05-21 02:50:29,8c:5d:da:ec:b0:3b,hjohnson@hotmail.com,img/obama.jpg +Charles Solis,137-83-1492,41512,"3110 John Village Suite 718 +East Tammy, WA 58092",1991-01-11 22:58:09,9e:64:dc:c4:06:84,fergusonmaria@hotmail.com,img/obama.jpg +Angel Wright,798-80-3729,32137,"380 Armstrong Union +Lake Josemouth, ND 33260-9899",1954-06-07 05:49:26,15:70:2f:48:56:fb,christopher59@malone.com,img/obama.jpg +Kathryn Young,335-76-7042,39269,"3343 Atkinson Stravenue +Williamport, WI 10426-7116",1995-01-22 22:16:50,4e:69:34:cf:5a:61,natkins@yahoo.com,img/obama.jpg +Dawn Neal,072-39-0805,43174,"406 Alexa Shores +Lake Jeff, DC 57091",1988-12-31 10:09:30,c3:77:20:76:57:1a,carol24@johnson.biz,img/obama.jpg +John Thomas,730-50-5955,22902,"16902 Bell Meadow Suite 679 +Kariport, MS 96173",1917-11-14 12:05:53,c3:22:4a:bb:db:64,gary14@holloway.info,img/obama.jpg +Don Ray,724-79-9721,04006,"01690 Fisher Islands +South Robert, DE 48989-4505",1964-02-28 06:32:22,3c:b0:90:d0:2c:28,darrenschneider@mcgee.org,img/obama.jpg +Renee Coleman,025-07-9723,44117,"51857 Rickey Center Apt. 447 +New Jeffreymouth, NM 86335-3132",1964-10-01 17:40:37,76:1b:a4:68:d5:f4,jklein@gmail.com,img/obama.jpg +Brandi Walsh,462-38-6322,17954,"77686 Rebecca Mount +New Michelleview, OK 48210",1946-04-08 20:58:22,8b:69:de:af:16:16,kanematthew@gallagher-gardner.com,img/obama.jpg +Melissa Powell,714-47-8639,81826,"668 Soto Burgs Apt. 057 +West Reginald, PW 23915-1634",1985-01-27 00:59:40,f8:96:5c:e3:1a:27,fwest@santiago-stephens.info,img/obama.jpg +Shawn Waters,427-13-6690,20923,"5256 Marcus Cove Suite 859 +North Russell, PW 73178",1979-12-30 22:01:35,5f:da:ad:b7:de:c0,jramsey@gmail.com,img/obama.jpg +Maria Campos,173-38-3960,87180,"930 Tiffany Stravenue Apt. 631 +West Adamshire, NJ 57611-7098",1975-06-16 12:44:45,f0:3f:e9:91:96:88,cassie48@yahoo.com,img/obama.jpg +Charles Charles,676-93-5619,05965,"PSC 4362, Box 9543 +APO AA 82632",1965-09-24 00:17:32,21:77:18:09:69:92,david02@gmail.com,img/obama.jpg +Scott Washington,566-31-6501,81809,"96782 Lauren Rest +Michaelstad, NJ 80574",2008-05-19 15:17:07,41:05:a3:8a:ee:8e,harveymolly@robinson-buckley.com,img/obama.jpg +Claudia Cook,047-36-7885,42409,"PSC 9800, Box 9287 +APO AE 07896-5111",1967-03-03 18:50:34,f6:0e:6a:98:1d:f0,jeffery61@hotmail.com,img/obama.jpg +Dr. Kathleen Fox,851-23-3353,90267,"255 Laurie Burgs +Port Angela, GA 08308-3935",1966-07-22 16:11:06,ab:9f:ca:29:03:19,anthonyrichard@yahoo.com,img/obama.jpg +Nancy Singh,895-64-1934,81196,"5325 Janet Green +South Jessica, DE 93864-6404",1976-06-16 15:42:55,df:41:c2:4d:5c:f3,brennanharold@turner-golden.com,img/obama.jpg +Brandon Edwards,522-02-8934,92862,"4952 Spears Shoals Suite 965 +Chandlermouth, ID 20970",1917-08-02 16:25:41,dc:de:ea:eb:46:11,elliottelizabeth@davis.com,img/obama.jpg +Jessica Riley,214-33-7448,94041,"6984 Randy Pines +Alexischester, ND 59185",1932-07-26 21:31:13,d6:46:17:df:e6:91,vanessa71@gmail.com,img/obama.jpg +Brenda Dominguez,219-98-0338,75143,"027 White Pike Suite 958 +New Natashashire, VA 81683-7488",1990-01-19 11:20:10,ec:25:f9:af:69:46,justin91@schmidt.com,img/obama.jpg +Michelle Raymond,285-71-2908,56041,"0299 Alisha Loop Apt. 534 +Rogerland, CO 05622-0762",1959-11-19 11:36:31,89:7c:82:91:66:e0,mark82@gmail.com,img/obama.jpg +James Jenkins,517-11-0890,36906,"830 Cowan Way Suite 433 +Stevenmouth, AS 85205-9293",1965-04-29 12:19:52,c9:ff:26:c6:f8:6c,ashleypatterson@gmail.com,img/obama.jpg +Alex Underwood,276-58-1216,40471,"884 Kelly Trail Suite 849 +Allenmouth, NC 62189",1965-05-20 14:09:30,0c:aa:e4:52:bc:7a,doughertyjasmine@hotmail.com,img/obama.jpg +Robert Wilcox,282-65-0635,45497,"09845 Estes Track Apt. 284 +Alisonland, ND 49960",1957-07-03 06:51:25,9a:28:8e:e3:42:6e,mhughes@hotmail.com,img/obama.jpg +Anthony Scott,538-41-9424,07092,"250 Mcintyre Walks +Port Peterbury, NH 43258-6522",1999-06-03 14:52:11,5d:79:54:0d:43:43,jenkinslori@morgan.com,img/obama.jpg +Kevin Crawford,473-61-4894,12455,"4786 Thomas Ranch +Howellchester, VI 43044-9600",1982-02-21 22:05:33,57:36:3f:5b:9d:18,crystal38@hays.com,img/obama.jpg +Veronica Wolf,876-30-3480,71404,"210 Tyler Unions Apt. 284 +Robertton, WV 34030-6782",1998-03-20 23:13:29,6f:77:e0:fd:f9:13,brucerodriguez@hotmail.com,img/obama.jpg +Dana Gomez,542-53-7367,16621,"536 Angela Tunnel Suite 774 +Lloydton, PA 46815",2013-07-22 18:55:55,cc:3b:c3:49:60:40,perryedward@gmail.com,img/obama.jpg +Andrea Elliott,303-37-1022,72512,"412 Steven Walk +East Sharonburgh, FM 44433-4451",1918-08-09 22:45:35,13:d5:72:01:45:38,romerosophia@ray.com,img/obama.jpg +Maria Morales,440-52-7686,93686,"USS Sullivan +FPO AE 96762",1955-02-10 07:38:02,d0:39:8b:3c:1e:a6,padillawilliam@gmail.com,img/obama.jpg +Nathan Stevenson,025-73-8925,20054,"008 Joshua Hill +South Dennis, OK 98390-6105",1961-01-30 10:36:22,12:c3:57:e9:fc:a0,paynejames@yahoo.com,img/obama.jpg +Edward Ford,502-01-8551,17021,"PSC 6303, Box 6334 +APO AA 81299",1948-04-27 04:07:13,3c:ed:69:29:84:22,brewerjennifer@clark-gillespie.info,img/obama.jpg +Katie Cole,131-70-1612,25509,"942 Miller Stream +Tiffanyshire, NY 58423-7371",1941-08-02 05:59:26,cf:b6:64:bd:42:59,robertsonmario@hotmail.com,img/obama.jpg +Eugene Young,561-45-5623,13400,"99848 Clark Inlet Suite 970 +West Austin, DC 84058",1949-10-01 05:01:15,bd:04:d1:6b:30:e7,treid@hill.net,img/obama.jpg +Holly Howard,526-87-3273,68006,"5991 Johnson Creek Suite 325 +South Sara, SC 98193",1933-06-02 20:08:20,a0:44:bf:19:b6:a4,mariemelendez@sullivan.com,img/obama.jpg +Teresa Williamson,726-85-4182,56754,"899 Griffith Parks Suite 314 +Drakebury, KS 18093",1934-05-07 15:07:26,f9:c8:a9:51:5b:12,elevine@smith.com,img/obama.jpg +Henry Escobar,778-21-7592,45620,"7002 Wise Crossroad +West Deborah, WI 67962",1957-01-20 22:07:00,e0:a8:9d:42:83:cc,chanbrian@bowman.com,img/obama.jpg +Sarah Mills,031-40-6588,69604,"250 Jones Plains Apt. 325 +South Brittanyview, NM 10967",1951-12-22 08:06:35,3d:6d:8a:8e:05:c1,chad65@yahoo.com,img/obama.jpg +Joshua Leblanc,084-98-7572,24308,"433 Chad Pine Apt. 167 +Sheltonmouth, AS 75555",1961-11-30 21:31:16,4b:bd:59:69:c2:f7,cartercatherine@jones-barker.biz,img/obama.jpg +Casey Brown,132-07-7852,02652,"201 Liu Loop Apt. 186 +Jeannefort, FM 28890",1921-08-17 17:26:10,44:d2:d2:b3:73:61,dicksonfrank@hotmail.com,img/obama.jpg +Mr. Charles Hicks,070-69-9062,83841,"Unit 2878 Box 1355 +DPO AP 08285",1995-06-11 17:08:19,45:50:91:cc:16:90,bridgetpope@gmail.com,img/obama.jpg +Christopher Esparza,131-49-6855,21973,"7145 Keith Keys Apt. 937 +South Yvette, NV 06374",1943-01-13 10:26:39,b0:ce:04:96:d9:61,mark67@gmail.com,img/obama.jpg +Mrs. Melissa Lewis,305-49-2684,15480,"57000 Wolf Run +Jessicaville, FM 10040",1990-03-12 03:17:17,2d:2e:9d:05:b3:77,jeffreyreid@grant.com,img/obama.jpg +Laura Colon,486-59-1078,84067,"902 Corey Streets Suite 906 +Randallshire, CA 63414",1992-11-27 12:05:34,42:36:94:bb:e4:c6,chadcummings@hotmail.com,img/obama.jpg +Catherine Carlson,234-07-2908,02185,"USCGC Gaines +FPO AE 85598",1970-05-02 12:37:30,70:c4:03:ad:8a:bd,hgriffin@gomez.com,img/obama.jpg +Donna Leach,659-46-3654,49562,"196 Kaylee Mountains +East Alexishaven, MS 86791",1978-07-10 11:54:16,05:20:63:1e:dc:6f,kimberly83@hotmail.com,img/obama.jpg +Kelly Gray,821-57-8624,51486,"5111 Lynch Pine Apt. 430 +Port Michellechester, MP 03460",2000-07-31 19:23:25,cd:2f:8a:c8:34:87,laura64@donovan-gonzalez.com,img/obama.jpg +Dr. Diana Cooper DDS,782-21-6902,37246,"539 Brown Vista +East Christian, AL 81589-5812",1931-10-28 18:24:36,7c:1d:ed:37:0f:ed,gomezalyssa@tucker.com,img/obama.jpg +Joseph Bonilla,214-91-4442,07338,"85635 Rogers Cape +South Molly, HI 36969-8976",1980-07-09 05:59:49,ee:d4:d3:2f:46:6b,susan79@yahoo.com,img/obama.jpg +Kim Bowman,452-76-0228,13130,"7286 Jeffrey Springs +Port Amandahaven, OR 44136",1974-12-05 17:12:57,33:9c:ae:86:82:44,lisa56@richard.com,img/obama.jpg +Joyce Simpson,369-29-9388,36283,"29038 Herring Lane Apt. 489 +New Collin, MN 33541-1409",1986-03-12 00:33:47,8c:70:ca:43:6b:86,mariasanchez@gmail.com,img/obama.jpg +Kathleen Vega,561-59-0983,46037,"Unit 8505 Box 1375 +DPO AP 83787-6210",1951-02-13 01:41:31,46:09:d2:ee:49:be,cory77@gmail.com,img/obama.jpg +Sean Thomas,069-42-4022,33617,"Unit 0205 Box 8392 +DPO AE 96906-7326",1967-12-14 14:23:19,42:be:31:15:33:f3,jason60@simmons-garcia.info,img/obama.jpg +John Elliott,624-61-6419,49025,"5146 Crawford Turnpike +Port Amanda, FM 07186",1959-03-05 11:25:22,e4:a4:ef:0f:c1:57,holiver@underwood.info,img/obama.jpg +Steven Callahan,531-59-8048,58717,"174 Stanley Greens +Hopkinsbury, VA 65846",2000-05-16 15:02:36,e6:44:bf:03:62:17,blopez@yahoo.com,img/obama.jpg +Garrett Cohen,642-02-7907,70809,"7083 Mcbride Loop +Port Aaronburgh, SD 12228",1971-07-16 05:14:14,03:4f:b3:9b:09:17,xstephens@peterson.biz,img/obama.jpg +Thomas Hoffman PhD,496-09-3232,50825,"PSC 2010, Box 1073 +APO AP 54225",1995-02-26 02:13:10,c3:b3:a5:3e:03:c0,kbrown@norton-mills.com,img/obama.jpg +Lee Jones,491-32-8004,57224,"54206 Daniels Plaza Apt. 992 +Leeborough, VI 35703",1974-05-27 23:09:19,b6:be:ca:63:8f:80,stonejacob@martinez-gonzalez.com,img/obama.jpg +Craig Yoder,232-52-3607,96271,"615 Steele Square +Williamport, WY 14141-4041",1942-01-23 07:27:27,9c:18:49:e7:f1:fa,brownkelly@gmail.com,img/obama.jpg +Marvin Howell,860-21-1795,76448,"314 Gamble Falls +Lisahaven, AZ 87044",1923-10-06 07:55:02,ab:f2:ad:c6:aa:9f,chandlerjill@gmail.com,img/obama.jpg +Martin Stewart,346-63-8256,48003,"2291 Manning Forest Suite 832 +South Matthewview, CO 40659-1782",1961-03-08 01:56:38,94:c0:fa:99:ef:61,eric95@mayo.com,img/obama.jpg +Mr. Don Chan,103-65-8324,88909,"53667 Riley Run +Lake Xavier, WA 87312-1073",1932-04-03 21:56:46,13:93:84:89:42:9e,derek88@hicks.com,img/obama.jpg +Andrea Macdonald,052-44-3924,01728,"257 Dominguez Lane +South Jillborough, GA 71820",1990-02-11 14:00:19,a8:fd:e8:82:83:18,joseph96@yahoo.com,img/obama.jpg +James Lane,673-08-9244,01748,"9878 Cassandra Mountains Apt. 187 +Port Matthew, FM 06950-6176",1978-10-06 09:23:17,2f:ff:70:59:af:35,jacobpalmer@yahoo.com,img/obama.jpg +Jeffrey Johnson,706-36-3685,78025,"364 Tyler Lodge +North Joshua, NH 13406-0095",1991-09-22 17:35:06,bf:5d:e3:1f:c3:b7,frazierann@yahoo.com,img/obama.jpg +Terri Bridges,507-30-9290,69351,"280 Silva Summit +Downsfort, AL 31122",1954-04-08 02:04:28,ba:c4:37:6f:08:02,ujones@hotmail.com,img/obama.jpg +Mary Munoz,267-87-0740,83731,"24163 Davis Falls +East Jessica, NC 96697-6645",1962-07-26 01:56:36,0d:2c:6f:e8:07:ed,rachelcarey@owen.net,img/obama.jpg +Aaron Ward,441-80-7442,06433,"82197 Jeffrey Lock Apt. 289 +Garystad, ID 28075-7309",1920-08-26 05:23:19,e7:6a:40:d7:cb:2e,qrusso@gmail.com,img/obama.jpg +Mr. Brian Drake Jr.,524-76-3843,39908,"5673 Joshua Stravenue +Robertsonstad, VT 01218-2859",1965-06-15 14:24:33,0a:7e:0c:78:79:2f,harttyler@yahoo.com,img/obama.jpg +Scott Santos,392-95-8026,37126,"486 Christopher Shoal +Matthewland, FM 69986",1976-06-02 12:24:25,f8:5e:0d:b6:6f:c9,benjamin43@yahoo.com,img/obama.jpg +Sara Griffin,532-56-7986,07048,"842 Hansen Shoals Suite 398 +West Rebecca, UT 19811-9191",2004-04-26 00:14:54,78:ba:5e:13:98:46,christinadaniels@ward-cook.info,img/obama.jpg +Terri Nichols DVM,851-24-5944,22457,"07905 Collins Gardens +Lake Dillon, DC 55029-8002",1926-11-03 23:22:42,c2:08:2a:99:eb:39,escott@gmail.com,img/obama.jpg +Anthony Thomas,323-58-2053,57085,"94779 Adams Rest Suite 340 +Williamborough, VI 20524",1958-09-10 06:10:34,a6:d8:15:2e:e6:33,murraycaleb@hotmail.com,img/obama.jpg +Brooke Osborn,253-02-3610,26576,"68454 Jesse Orchard +New Aaron, NE 64676-9987",2012-10-18 09:03:59,6a:58:bd:d0:ca:32,brian95@yahoo.com,img/obama.jpg +Stephanie Thompson,382-82-4080,90768,"049 Roberts Summit +Joanside, CT 23861-3167",1968-03-28 22:01:25,a5:2d:2b:01:58:1e,dawn30@johnson-reynolds.com,img/obama.jpg +Darryl Jenkins,232-19-8850,47171,"9946 Mark Islands Suite 215 +East Donald, NM 98619",1998-04-21 00:44:15,13:73:20:60:92:a5,hannahmendez@holmes.net,img/obama.jpg +Maureen Yang,316-87-4640,57296,"486 Richard Track Suite 365 +Weaverborough, ID 40863-9747",2009-02-12 19:36:43,74:06:e5:b4:87:10,brian47@gmail.com,img/obama.jpg +Charlene Wolfe,896-65-4186,76860,"30665 Miller Manor Apt. 601 +Jessicaburgh, MA 83930",1950-08-26 07:31:43,74:14:cb:72:70:e7,howellsteven@gray.com,img/obama.jpg +Alexander Lawson,163-05-6031,55360,"PSC 0571, Box 4102 +APO AP 44690-0657",1996-12-14 11:11:24,8f:db:42:3e:6f:40,pstrong@yahoo.com,img/obama.jpg +Matthew Walker,630-72-1291,67198,"95403 Parks Summit +Carlmouth, MH 78779-8485",2014-07-03 16:10:27,9a:f3:cb:35:1b:8d,christinamiller@gmail.com,img/obama.jpg +Joel Sanchez,800-27-5033,08581,"1443 Davis Wall +Port Alexfurt, CO 01736-4416",1974-01-18 14:34:51,3d:dc:28:41:75:43,karenvazquez@hotmail.com,img/obama.jpg +Ronald Thompson,174-41-2533,02192,"65915 Sawyer Gateway +Morrisonfurt, KS 29002-5202",1980-09-30 04:23:00,2f:a6:9b:b9:e6:18,megan91@hotmail.com,img/obama.jpg +Anthony Henderson,600-40-4168,51177,"4542 Gonzalez Squares Suite 696 +East Antonioport, MO 24768-0912",1939-05-03 17:30:37,70:2f:3c:46:d5:4b,erikaadams@sharp-gallagher.com,img/obama.jpg +Megan Johnson,532-41-4436,15286,"1012 Shane Forge +Lake Maryland, ME 25264-2726",1938-07-02 08:28:22,5a:c9:75:86:17:ac,nparsons@powers.com,img/obama.jpg +Sue Huynh,880-82-1231,75121,"92493 Jill Mission Apt. 976 +Nguyenstad, AK 26430-8709",1938-02-04 20:15:27,31:ba:b0:25:83:49,thomaskimberly@yahoo.com,img/obama.jpg +Faith Taylor,692-95-2061,18061,"169 Hailey Fall Apt. 343 +North Kristen, AL 71890-7203",2015-01-06 15:32:29,0d:67:a9:14:46:16,davidtran@hotmail.com,img/obama.jpg +Daniel York,875-13-8844,35589,"9303 Carter Burg +Feliciaside, ND 95728-6749",2016-02-05 13:50:27,56:67:2a:9e:24:dc,jeffery53@hotmail.com,img/obama.jpg +Jeff Christensen,088-16-1058,32753,"64587 Melody Row Apt. 828 +Ramseyland, OR 01082-7705",2007-04-03 08:45:30,e8:bd:93:6a:30:cd,steven73@yahoo.com,img/obama.jpg +Dana Reynolds DDS,212-25-8535,34824,"889 Meyer Stravenue +South Danielborough, NV 67994-6757",1988-09-13 23:14:19,6e:69:05:c8:d8:3d,zmueller@bishop.com,img/obama.jpg +Marc Rivas,585-86-5864,16001,"607 Carter Coves +Port Susan, CT 00802-5427",1927-06-14 02:25:38,f4:66:50:02:92:93,robert46@hotmail.com,img/obama.jpg +Barbara Chapman,115-72-8321,88096,"0431 Jamie Flats +South Timothy, NM 93734",2016-02-11 14:41:36,69:13:4b:44:c3:8a,kmoss@yahoo.com,img/obama.jpg +Samantha Potter,318-91-9664,54594,"480 Williams Brooks Apt. 109 +South Danielberg, GA 05916-3531",1942-09-06 09:12:37,8e:8e:30:60:fb:f8,jeffery53@gmail.com,img/obama.jpg +Michael Campbell,403-04-7563,83088,"8375 Kim Dam Suite 149 +Lake Douglasshire, MO 27738-9428",1973-02-24 16:01:23,00:9a:ee:fe:96:6e,isaac78@gmail.com,img/obama.jpg +Rachel Sherman,598-06-0611,08506,"Unit 6684 Box 3244 +DPO AE 75863-4331",2011-05-01 22:05:11,e8:67:ab:bb:a4:7c,garrettcaleb@smith.com,img/obama.jpg +Jessica Wilcox,556-86-0574,53978,"4070 Cox Ways +Smithshire, SD 61673",1924-08-29 21:00:16,a1:8b:ef:19:91:a9,johnsonbrooke@martin-wright.com,img/obama.jpg +Sherri Henson,066-44-9931,75480,"92672 Dustin Loaf +South Michelleshire, AL 77988-4338",1948-05-15 00:43:22,1e:eb:e3:b9:60:e3,taylorshawn@yahoo.com,img/obama.jpg +Jasmine Wilson,780-81-9019,76826,"276 Robinson Greens +Stephensonchester, GA 37311",1935-10-09 00:27:23,39:d6:0b:f0:bf:b1,zpark@brown.com,img/obama.jpg +Kristen Turner,374-20-0786,77419,"24609 Bell Rest +Lake Jennifer, VI 27412-0069",1949-06-28 00:59:44,3c:a2:3f:b0:48:32,trevor65@gmail.com,img/obama.jpg +Kimberly Stevens,761-41-3133,60866,"05786 Smith Crest Apt. 426 +New Kimberly, GA 18963",2013-09-08 18:44:35,14:57:1e:3b:b5:92,brendamartinez@yahoo.com,img/obama.jpg +Mary Norton,347-12-0235,37610,"186 Holmes Ferry +North Regina, NC 19890",1983-09-27 10:11:06,ee:10:a9:18:be:9a,joseph23@shaffer-davis.com,img/obama.jpg +James Coleman,240-68-9872,79663,"63005 Williams Manor Suite 601 +Port Leslieberg, SD 45394",1999-09-16 03:44:59,2c:f4:67:d9:2d:60,bwright@yahoo.com,img/obama.jpg +Anthony Smith,180-42-8001,82662,"612 Garcia Field +Westville, VI 79477",1962-10-11 17:32:22,6b:13:b5:2a:17:74,prestonmatthew@yahoo.com,img/obama.jpg +Steven Hayden,544-79-7809,36666,"7115 Allen Walks Suite 984 +Cynthiahaven, OR 48073-1207",2011-08-28 14:09:30,32:ce:6e:3c:45:2f,jonesjohn@thompson.com,img/obama.jpg +Douglas Dunn,878-26-1913,07261,"72206 Bradley Inlet +New James, MA 96565-3814",1944-12-21 11:18:30,52:1b:81:38:4d:a2,ssullivan@gmail.com,img/obama.jpg +Phillip Shelton,867-42-4210,89756,"429 Houston Glen +Youngview, MP 99055",1954-06-21 21:24:19,2d:5d:c0:cb:be:5c,ecarlson@young-stout.com,img/obama.jpg +Jennifer Castillo,410-90-1516,00900,"Unit 9561 Box 4341 +DPO AA 05666-0073",1953-12-19 07:32:49,b8:f1:3a:b0:af:bc,david07@gmail.com,img/obama.jpg +Jeffery Walker,205-28-1163,87013,"90407 Cynthia Plains +Tommyshire, OR 76383",2004-05-14 23:23:27,85:df:60:a3:65:47,kleach@holden.com,img/obama.jpg +Christian Arnold,200-09-6699,19515,"3388 Shane Ridges Apt. 245 +Jacksonhaven, AZ 27724-5358",1987-10-14 06:35:51,fd:27:c1:3d:8d:ba,kayleesantos@yahoo.com,img/obama.jpg +Jennifer Jackson,862-75-4136,84006,"PSC 6035, Box 6440 +APO AP 99169",1959-05-16 23:52:48,41:6d:8c:4d:b4:0d,ellisonmelissa@gmail.com,img/obama.jpg +David Martinez,804-57-2354,09836,"107 Schmidt Trail Suite 931 +Lake Kathrynborough, RI 11298-6728",1958-02-10 17:10:06,76:e8:36:0a:9b:93,jonesdustin@frazier-maldonado.net,img/obama.jpg +Jordan May,209-70-6272,79866,"Unit 0484 Box 3777 +DPO AP 23607-4481",1948-06-25 01:11:37,99:0e:96:2f:07:73,briannakirk@hotmail.com,img/obama.jpg +Denise Klein DVM,628-41-7359,80957,"Unit 8219 Box 7826 +DPO AA 35262-4159",1919-12-01 18:14:47,8b:f7:b8:38:fc:88,rjohnson@knapp.org,img/obama.jpg +Curtis Chavez,848-76-7685,55877,"5797 Beverly Viaduct Apt. 886 +Campbellburgh, MT 05285-6871",1971-01-31 17:08:40,a9:13:6a:69:07:bd,wheelerthomas@hotmail.com,img/obama.jpg +Rebecca Gentry,002-51-2240,67553,"23894 Rebecca Fork Apt. 552 +New William, AZ 08021",1963-12-12 07:41:20,40:87:c1:80:e9:3d,bcarrillo@hotmail.com,img/obama.jpg +Jeremy Williams,474-06-6070,40040,"73053 Thomas Extensions +East Gary, TX 21826",2005-03-31 08:14:13,29:b7:a0:09:39:10,amanda54@horton.com,img/obama.jpg +Diana Walker,713-82-7779,48069,"41160 Eric Valley +South Alejandroborough, MA 56167",1982-09-30 07:38:15,72:a7:50:3e:16:91,cstone@hensley-gonzalez.info,img/obama.jpg +Dean Pratt,435-47-5345,90328,"USCGC Walker +FPO AP 59902-0834",1973-11-18 04:02:54,7f:be:47:84:66:84,cbrooks@jones.net,img/obama.jpg +Karla Scott,881-77-0168,35774,"691 Brittany Ramp +East John, NM 01961",1928-02-16 22:10:43,52:7a:41:da:27:3b,jmeyer@hotmail.com,img/obama.jpg +Joy Johnson DVM,628-59-0716,02146,"8324 Fitzgerald Roads Apt. 534 +Jasmineshire, NE 00880-5900",1955-11-21 21:58:39,ca:95:2a:54:2b:51,williamsdeborah@gmail.com,img/obama.jpg +Christopher Walker,292-07-8333,77536,"8717 Case Islands Apt. 581 +Lake Diana, UT 30646-3810",2001-08-27 07:33:42,3f:24:43:88:04:3f,hernandeznathan@rodriguez-romero.net,img/obama.jpg +Sylvia Blake,371-34-3738,96651,"95383 Yoder Manor +South Aliciamouth, AS 14786-0611",1948-08-15 21:34:07,42:42:43:83:41:12,ogood@hotmail.com,img/obama.jpg +Allison Williams,161-34-7116,90747,"Unit 3158 Box 5632 +DPO AP 02463",1992-10-06 03:01:06,5a:b0:e5:cd:f3:1a,gjenkins@anderson.net,img/obama.jpg +Brittany Pittman,532-78-3441,83043,"1102 Mark Track +Kruegerstad, AR 92425",1940-08-05 20:32:39,37:8d:4a:58:c8:c6,flemingpeter@gmail.com,img/obama.jpg +Danielle Harris,183-26-3847,96485,"3792 Amy Plains +Davistown, NY 15340-7935",1959-09-07 00:20:17,15:6b:01:73:54:81,beasleypatricia@lowery-ray.com,img/obama.jpg +Ronnie Roman,347-15-3357,79675,"30713 Dylan Burgs +Lake Olivia, VA 80103",1995-11-16 19:02:42,58:02:b1:bb:99:1f,dawnsalazar@thompson-stark.com,img/obama.jpg +Janet Jackson,146-04-9502,86385,"73417 Kyle Run Suite 944 +Leahville, WI 48268",2008-11-10 03:06:21,5b:9a:54:fa:5c:f8,robertgriffin@yahoo.com,img/obama.jpg +Martin Martinez,025-97-2324,10889,"760 Holland Keys Apt. 129 +South Mark, MO 28675-8525",1993-04-14 00:51:25,f6:0e:38:cc:29:30,jason28@yahoo.com,img/obama.jpg +Nathan Campos Jr.,416-34-5004,82649,"340 Philip Garden Suite 147 +Amyport, MO 35125-4872",1977-02-08 23:30:50,68:79:9f:5d:b9:2a,asmith@evans-booker.net,img/obama.jpg +Alexis Williamson,407-49-4771,73481,"PSC 7520, Box 7411 +APO AA 68289",1945-01-29 03:59:52,1f:41:e5:ab:b5:f2,lisayoung@gmail.com,img/obama.jpg +John Harris,292-28-1087,28735,"117 Joshua Underpass +Turnerborough, VT 35638-3876",1985-11-26 10:38:34,ae:4c:b8:c5:87:91,gutierrezfrank@stanley-wilson.net,img/obama.jpg +Laurie Miller,865-64-5220,79348,"USS Blake +FPO AE 84973",1943-11-03 12:21:54,5c:2b:aa:ff:74:05,michelle06@farmer.biz,img/obama.jpg +Molly Martinez,052-27-2250,77038,"76033 Smith Parks +Haroldberg, IL 41441-5847",1955-10-16 12:42:45,36:c8:52:21:b2:6c,georgebraun@mendoza.com,img/obama.jpg +Barry Gordon,828-40-0994,79440,"USS Watkins +FPO AA 02600-8760",1970-04-17 22:34:05,60:38:30:92:74:6a,bethanytran@hopkins.net,img/obama.jpg +Pamela Velazquez,482-09-6354,11626,"68556 Young Junction Suite 753 +Allenland, CT 12761-0402",1989-06-10 16:33:01,e8:a6:da:92:01:a5,david18@yahoo.com,img/obama.jpg +Robert Jones,635-34-8597,68007,"6419 Bridges Valleys +Myersburgh, FM 78153-0496",1991-12-05 05:34:40,d3:e1:92:bf:ad:40,francisnichols@evans.com,img/obama.jpg +Barbara Hinton,393-26-8876,08900,"33310 French Points Apt. 040 +Jonathantown, TN 49953",2009-04-21 04:31:34,c6:6b:a5:05:58:78,aaron43@hotmail.com,img/obama.jpg +Victor Cobb,376-08-2867,27543,"53701 Brittany Junction Apt. 368 +Vanessaview, WI 63615-9579",1991-03-31 11:41:34,96:98:ec:a3:63:99,qrodgers@kaiser.biz,img/obama.jpg +Jack Weaver,436-44-7362,10490,"71612 Lee Inlet Apt. 537 +Colehaven, IN 33285-3752",1965-07-03 10:17:56,f1:31:cb:40:3f:52,uavila@freeman.com,img/obama.jpg +Amanda Lutz,799-06-3441,89131,"99181 Huffman Glens Apt. 594 +Robinsonton, PW 14341-8506",1941-11-23 19:49:18,5a:83:59:0a:25:e0,keithsimmons@hampton.com,img/obama.jpg +Andrew Buck,080-31-6267,65202,"PSC 4126, Box 6381 +APO AP 97240-9975",1945-02-05 21:15:57,1e:97:f0:04:85:76,oosborn@hotmail.com,img/obama.jpg +Adam Johnson,863-64-9672,16707,"532 Rogers Village Apt. 404 +Port Jonmouth, RI 32150",1982-09-12 17:44:44,1c:64:7d:05:97:cc,colleenreed@gmail.com,img/obama.jpg +Chelsey Fisher,321-13-2492,32317,"USNS Hall +FPO AE 84646",1947-01-08 10:04:14,06:d9:41:be:57:8d,singhkendra@yahoo.com,img/obama.jpg +Donald Gross,245-51-3212,05029,"7605 Humphrey Divide +Rachaelburgh, PR 63365-5785",1955-11-07 08:31:54,d5:91:fe:5b:b6:c6,williammiller@martin.com,img/obama.jpg +Sabrina Torres,423-48-4196,33420,"215 Barbara Crossroad Apt. 303 +Port Marioside, KS 45431-8508",1922-03-07 15:01:25,26:df:a0:92:7d:3c,emily88@davis.com,img/obama.jpg +Linda Ellison,550-52-7459,95589,"PSC 4691, Box 9872 +APO AP 46267",1987-10-30 08:27:45,6d:55:f2:3f:87:29,dillondavid@hotmail.com,img/obama.jpg +Cynthia Murray,669-66-9273,25617,"79784 Cynthia Park +Brookeview, CO 95090",1978-03-21 14:55:55,00:f6:72:91:b9:fa,kaufmanvictor@hotmail.com,img/obama.jpg +Michele Brock,516-73-0261,07666,"045 Anderson Club +Port Candice, NH 51184-5122",1979-06-22 18:38:41,3f:79:85:aa:b3:3b,adamsmatthew@smith.info,img/obama.jpg +Paige Wood,427-31-2215,13785,"78703 William Gardens Apt. 602 +Parkermouth, TX 11764",1972-05-15 14:30:46,1f:4f:c7:da:ed:b8,katrinamoore@gmail.com,img/obama.jpg +Lisa Lawson,225-73-3602,96249,"18410 Steele Springs Apt. 782 +Codyborough, OR 26101-7065",1976-12-22 01:50:30,da:25:7a:fd:a2:39,heatherrobinson@king.com,img/obama.jpg +Rachel Ramirez,560-66-9826,26774,"4648 Mueller Road Suite 180 +Port Alexside, MS 74878",1935-07-21 10:18:05,e3:68:f0:d0:ce:7f,ihunter@hotmail.com,img/obama.jpg +Jason Thompson,237-58-8621,47371,"71468 Higgins Fields Suite 684 +South Ann, PA 43678",1964-08-28 08:52:19,b8:c2:13:83:cc:bf,craig09@yahoo.com,img/obama.jpg +Jonathan Mcdonald,567-43-3444,63445,"74273 Toni Stream Suite 855 +Lyonsborough, MT 12273",1975-12-25 22:11:17,3f:d8:0c:a1:58:e3,jason60@hotmail.com,img/obama.jpg +Heather Irwin,029-31-5178,95414,"26750 Kim Glen +Port Lindseytown, NY 84118",1950-05-17 08:23:34,da:a3:3e:cb:a6:29,melissawatson@gmail.com,img/obama.jpg +Victoria Taylor,781-87-4597,61821,"56958 Thompson Spring +South Alexis, RI 99295-6845",1917-08-07 21:53:56,a7:c7:55:76:31:a4,smithkatherine@williams-nicholson.com,img/obama.jpg +Amanda Johnson,676-07-4003,63043,"355 Johnson Rapids +Lake Kenneth, OR 16384-7561",2014-01-03 00:16:37,ce:12:1c:72:ed:7d,barnesbrittany@hill.org,img/obama.jpg +Deborah Hernandez,811-07-5011,28047,"726 Crawford Dale Apt. 679 +Parkerborough, NV 53399",1979-05-10 18:58:36,82:e4:81:64:09:6e,allengregory@hotmail.com,img/obama.jpg +Jacob Myers,149-11-6549,73723,"783 Rocha Row +Lake Tylerfort, NE 14633",1951-01-22 15:56:10,93:de:96:95:06:17,richardmartinez@yahoo.com,img/obama.jpg +Casey Jackson,721-53-2935,16920,"3434 Vincent Shore Apt. 351 +West Christine, WA 26796",1994-06-23 21:30:12,a2:b9:5e:5a:39:85,tammyharper@hotmail.com,img/obama.jpg +Alison Walton,050-58-0216,61579,"USNS Morgan +FPO AP 21947-1626",1939-01-14 15:33:34,43:ff:61:b3:41:62,kentmary@yahoo.com,img/obama.jpg +John Page,132-95-7211,55354,"721 Mora Center Suite 619 +Ricechester, MS 48132",2011-02-20 04:51:50,0e:ff:87:1b:9c:26,williamssarah@gmail.com,img/obama.jpg +Amy Warner,211-50-6702,87833,"4205 Alexander Underpass Suite 456 +South Robertport, MP 81470-0521",2001-10-31 00:15:51,67:b4:72:55:31:d1,cheryljones@hotmail.com,img/obama.jpg +Christopher Bird,415-47-5369,94895,"10016 Spencer Mountains +Flemingtown, NH 60245",1988-07-12 07:27:58,0e:fa:0d:84:5e:cb,zpatrick@hotmail.com,img/obama.jpg +Felicia Dawson,825-11-5230,86591,"29258 Corey Port +Jeremyport, PA 16734-4578",1936-01-07 20:11:16,0e:30:46:9b:43:5c,washingtonmichelle@rios.com,img/obama.jpg +Michael Fernandez,230-53-0340,37218,"62962 Angela Mews +South Leslie, MI 46828",2003-07-03 22:43:01,b5:21:d0:e2:63:79,petersengary@howard.com,img/obama.jpg +Connor Jackson,472-50-1712,01233,"3699 Jordan Mill +Karaburgh, VA 31951",1985-09-03 16:48:09,88:b4:3b:8e:2e:0f,rebecca63@moore.com,img/obama.jpg +Alexis Murillo,133-03-8757,39647,"590 Xavier Vista Suite 935 +Port Garrett, NC 51364",1938-03-30 04:08:15,1c:87:c1:1e:36:2a,jennifer02@porter.com,img/obama.jpg +Stephanie Gardner,637-73-7247,55760,"1615 William Road Suite 079 +South Steven, NH 60004",1968-05-23 09:57:45,cb:e5:6d:0d:2f:fd,tneal@conway.org,img/obama.jpg +Jessica Schwartz,437-05-6421,52996,"341 Hood Parkway +South Ashleyborough, NC 30766-8901",1920-06-24 00:28:03,cc:cc:68:8d:e9:d9,jacksontaylor@alvarez.info,img/obama.jpg +Cassandra Lee,426-40-0579,97439,"7851 Patterson Tunnel Suite 315 +Keithburgh, CO 73302",1922-10-19 16:50:22,20:60:34:7e:e8:76,ccarpenter@turner-lewis.com,img/obama.jpg +Jacqueline Collier,036-33-9426,22877,"49542 Smith Center Apt. 418 +New Peterborough, GU 00194",1983-12-08 04:55:18,6f:98:e7:70:d4:9e,hansensarah@yahoo.com,img/obama.jpg +Olivia Schaefer,736-62-4518,77448,"468 Davidson Corner Suite 779 +Leonardhaven, AS 96345",1972-06-30 01:59:19,b9:0e:d2:1d:d2:61,vrogers@rios-peterson.com,img/obama.jpg +Patrick Weiss,233-07-7464,38384,"190 Alexis Mountain Apt. 160 +Ashleyton, WY 22531-9275",1992-06-15 10:37:15,80:ac:ad:9a:2f:f6,rnovak@ray-cline.info,img/obama.jpg +Rebecca Brock,822-59-9347,56587,"USNS Jenkins +FPO AE 20120",2012-11-02 18:02:59,59:e8:99:bc:e3:e0,gallen@anderson-patrick.biz,img/obama.jpg +Amy Meyer,041-48-3500,46763,"621 Anna Throughway +Tracibury, TN 90909-4341",1984-08-06 08:58:19,08:d8:d4:3b:bf:9a,ryan14@gmail.com,img/obama.jpg +Timothy Carter,204-58-3423,35808,"0672 Gonzalez Manors +Andreview, DC 01350",1946-02-10 14:10:38,1b:77:0d:7e:7a:c1,juanmorales@fuentes.com,img/obama.jpg +Timothy Ramirez,652-19-3517,10231,"2344 Hernandez Lock +Wernerview, ID 02641-3576",1976-07-21 22:37:15,cd:d8:32:fa:77:db,henry70@jones.biz,img/obama.jpg +Kenneth Elliott,596-60-5586,66528,"192 Destiny Orchard +Brianton, SC 60195-1283",1932-04-01 06:58:52,25:ca:76:f0:55:2d,elizabethjones@gmail.com,img/obama.jpg +Sarah Taylor,651-64-8688,77485,"47893 Christopher Cliff +New Emily, AZ 14097-6787",1974-03-08 19:03:26,ab:ce:47:90:bb:77,epowers@jones.com,img/obama.jpg +Charles Perez,734-81-7476,39041,"USNV Phillips +FPO AP 85435-7764",1979-05-25 13:53:50,b3:f3:1f:d3:a4:49,barrettchristopher@williams-hardin.com,img/obama.jpg +Theresa Bowman,794-71-9475,83785,"7071 John Walk Suite 138 +North Justinville, PW 16736",1923-09-16 10:34:52,a4:08:7f:d4:a6:c3,victornguyen@hotmail.com,img/obama.jpg +Danielle Richardson,333-89-5886,45377,"422 Greg Village +Noahport, MP 68443",1946-12-27 00:55:38,40:9c:35:fc:54:64,jstevens@moore.com,img/obama.jpg +Jennifer Hines,829-39-7368,81485,"9496 Mills Forges +Veronicaside, ND 72779",1993-09-21 07:29:56,38:0c:83:d1:69:d2,brodriguez@hotmail.com,img/obama.jpg +Daniel Jones,766-56-4606,72579,"6337 Diaz Junction +Lake Richardbury, AL 00447",2013-02-03 04:36:10,7b:7f:bf:e5:42:b8,hollowaysean@hotmail.com,img/obama.jpg +Justin Carey Jr.,087-41-1105,44447,"48115 Trevor Burgs +West Stevenstad, MT 83053-5160",1978-09-03 11:13:17,ec:20:16:23:c9:32,aprilgarcia@hotmail.com,img/obama.jpg +Sandra Mitchell,804-47-6705,07816,"7085 Townsend Estates Suite 082 +East James, OK 01421-9744",1959-08-22 17:30:35,60:5a:c5:ca:56:30,james12@tate.com,img/obama.jpg +Danielle Santos,697-48-2060,04458,"49714 Susan Orchard +Deanfurt, VT 97385",1925-03-17 19:31:02,7a:9b:ee:6b:7a:aa,danieldillon@gmail.com,img/obama.jpg +Tracie Powers,581-07-1209,20677,"0281 Kathryn Via Apt. 652 +Rossland, FM 48093",2004-05-09 19:22:40,b5:ac:ee:0f:8d:aa,tony78@hamilton-jones.com,img/obama.jpg +John Jones,436-60-8502,13465,"55340 Carlos Tunnel Suite 924 +Anthonyborough, DC 54333",1999-11-04 18:00:47,8a:8a:62:ce:54:ff,whitneyrogers@davis-white.com,img/obama.jpg +Renee Rodriguez,887-27-4435,75509,"1864 Mason Court +South Andrew, RI 94033-8174",2015-05-06 12:02:15,02:da:7f:0e:e5:0d,mccormickjamie@phelps.net,img/obama.jpg +Charles Hoffman,583-95-9579,59755,"PSC 1838, Box 9302 +APO AA 53078-6863",2010-11-09 09:26:09,bf:cb:4f:1e:b9:5e,dturner@yahoo.com,img/obama.jpg +Alyssa Saunders,104-40-7490,23816,"85083 Crystal Curve +North Stephanie, DC 63019-0389",1989-06-17 15:22:44,80:35:4a:5b:57:c9,williamsfrank@mullins-garcia.net,img/obama.jpg +Nicole Graves,272-13-8670,44618,"Unit 8053 Box 2330 +DPO AA 95710",1993-03-10 16:45:52,8d:9f:a4:3d:54:28,pattersonhelen@yahoo.com,img/obama.jpg +Kimberly Ross,748-03-8487,57900,"900 Curtis Road +North Jessicaburgh, IN 27426",1964-10-07 06:49:00,08:30:b5:a6:06:01,johnsondonna@yahoo.com,img/obama.jpg +David Reilly,330-64-4919,57782,"7877 Garcia Ports Suite 448 +Lechester, RI 65710",1937-07-01 19:45:06,ef:89:37:47:76:24,james36@neal.com,img/obama.jpg +Elijah Ward,404-32-2907,29531,"047 Amanda Rest Apt. 188 +Leonton, GA 70587-6940",2006-06-27 07:57:25,ed:b4:fb:86:d9:60,natashamcpherson@bautista-ortega.com,img/obama.jpg +Stephanie Wiggins,305-18-4349,45229,"507 Ballard Locks Suite 693 +New Mindy, CT 20015",1936-06-07 21:24:17,3d:cd:7e:b9:c8:04,ryan07@bennett.com,img/obama.jpg +Rodney Williams,540-17-5855,67878,"6489 Stephanie Pines Suite 166 +South Stevenshire, UT 13960",1953-05-25 06:00:05,fc:41:38:7e:3c:b5,rodriguezpaul@henry-torres.info,img/obama.jpg +Geoffrey Lambert,396-69-6132,89760,"487 Reyes Pine Apt. 713 +Davidborough, HI 43103-3453",1992-07-17 22:26:53,51:a6:84:05:71:89,wheelermichael@gmail.com,img/obama.jpg +Amber Lawrence,239-98-1496,32593,"56732 Teresa Vista +East Joshua, GU 66892",1969-06-08 18:42:21,7d:87:c2:7f:09:0f,frodgers@hotmail.com,img/obama.jpg +Sara Berry,513-31-5209,46060,"7456 Michelle Alley Suite 268 +Ashleyshire, SD 73242-1550",1975-12-12 02:23:52,1d:27:be:a5:80:12,nicholas07@gmail.com,img/obama.jpg +Jeffrey Williams,888-53-6863,08690,"39694 Sarah Drive +South Eric, TN 41659-6774",1939-06-17 03:58:58,6f:80:cd:5d:bc:b2,josephtrevino@martinez-miller.com,img/obama.jpg +Cheryl Young,109-96-3810,34741,"USCGC Jennings +FPO AP 46821-4564",1989-03-03 02:21:59,85:c5:60:fb:11:c3,martinezmackenzie@hotmail.com,img/obama.jpg +Amanda Morris,688-95-8553,29620,"USNV Olson +FPO AA 17804",1997-02-25 18:49:48,43:d9:b4:19:74:6e,nsheppard@brown-gill.com,img/obama.jpg +Linda Bell,759-42-8633,81891,"24425 Morton Flat +Johnsontown, IA 90391-2464",1971-07-24 01:08:15,b5:14:ad:07:e3:2b,jennifer95@yahoo.com,img/obama.jpg +Alyssa Casey,254-54-9071,27349,"293 Kevin Flat Suite 767 +East Natashastad, PW 04297",2009-03-21 08:01:00,73:d9:57:ca:d5:b2,mark04@brown.biz,img/obama.jpg +Jill Clark,140-10-1423,32077,"2433 Phillips Fort +Ryanmouth, IL 59615",1964-01-28 17:02:12,82:eb:eb:ce:55:d7,wtaylor@hotmail.com,img/obama.jpg +David Lucero,648-17-8332,55294,"4468 Alexander Ford Apt. 052 +Christopherchester, DE 32807",1937-03-06 04:46:15,aa:9d:2e:ae:55:ed,awalker@gmail.com,img/obama.jpg +Tyler Knox,255-14-5000,51254,"24948 Crawford Heights +South Andrewchester, ME 74782",1937-11-27 10:40:22,d1:3c:b1:fb:52:41,jeffreylewis@gmail.com,img/obama.jpg +Timothy Green,513-30-3945,75783,"26905 Tracy Knoll Apt. 717 +West Stephanie, SC 40799",2011-06-06 00:56:03,3c:78:5c:29:a1:cf,vwilliams@chavez.org,img/obama.jpg +Michele Anderson,015-13-3204,94792,"4416 Timothy Plaza +South Lauren, SC 64790",1938-04-10 01:54:41,48:21:f7:13:75:25,rosariofernando@yahoo.com,img/obama.jpg +Brandon Gentry,569-12-5282,90902,"8090 Chelsea Rapids Suite 077 +West Jeremyport, TN 40436-4848",1973-01-29 17:58:13,fd:f4:b2:8f:dc:94,michelle60@yahoo.com,img/obama.jpg +Crystal Arnold,517-69-6456,23582,"895 Waller Plains +Millertown, KY 32509",1963-05-24 02:07:07,27:3d:dc:b0:ba:1b,farrelllawrence@hotmail.com,img/obama.jpg +Gregory Rivera,389-76-2281,30621,"322 Paula Extension +East Carolshire, OR 08669-1366",1927-07-23 00:54:11,a2:9e:14:96:ed:33,fergusonmegan@ford-king.com,img/obama.jpg +Robert Gregory,052-75-4598,99008,"476 Rachel Fall +New Melvinville, KS 39552-9902",1984-09-22 16:11:56,a4:ae:cd:90:e0:f7,william30@maddox-chapman.biz,img/obama.jpg +Daniel Wilson,470-73-1490,45333,"78620 John Viaduct +North Melissa, PR 34755-5704",1949-12-23 19:22:00,29:19:97:b4:2b:e1,thomasjennifer@yahoo.com,img/obama.jpg +Billy Williams,818-02-1958,79524,"PSC 6280, Box 7920 +APO AE 61744-2559",1987-01-25 07:04:33,87:aa:9f:5c:56:5d,andrewdelgado@hotmail.com,img/obama.jpg +Wanda Lawrence,202-62-3754,07770,"PSC 3481, Box 5864 +APO AE 00739",1955-08-12 01:36:28,9d:5c:4b:45:e4:35,elizabeth64@gmail.com,img/obama.jpg +Richard Miller,633-49-8469,03663,"29571 Audrey Row +Turnerport, MS 68884",1918-01-05 09:57:11,3a:de:9b:2c:1a:e3,omarshall@collins.net,img/obama.jpg +Crystal Delgado,773-40-1319,98687,"540 Aaron Light +Lake Kimberlytown, NC 44362",1946-07-28 19:38:55,3a:5a:9d:78:c2:4a,whughes@brown.com,img/obama.jpg +Crystal Mahoney,044-53-0502,64818,"2382 Abigail Place Apt. 215 +New Angela, NJ 04009-2676",1980-03-27 23:19:42,e0:1a:02:4b:16:88,bellandres@yahoo.com,img/obama.jpg +Jessica Baker,490-58-1847,98979,"21996 Adam Landing Suite 258 +East Catherine, AR 98904",1976-01-30 04:00:49,f7:e7:4e:51:ec:d9,breyes@smith.info,img/obama.jpg +Jessica Cross,245-59-8840,65527,"214 Peterson Parks Suite 527 +Hallshire, MH 52982-8754",2014-09-08 05:44:43,47:0c:a5:5d:2e:a7,stacey21@duncan.org,img/obama.jpg +Ann Allen,087-93-3361,53070,"38285 Scott Ridges +East Gregory, AZ 10424-0854",1985-03-12 17:54:37,c2:c5:8d:9d:7f:19,cmorse@wright.net,img/obama.jpg +Julia Williams,756-89-3023,88169,"34857 Davis Ridges +Port David, DC 02318-3155",1920-02-18 10:46:23,2c:b5:da:7a:67:d4,rollinsrachel@hotmail.com,img/obama.jpg +Michael Phillips,653-16-4951,96376,"Unit 0336 Box 0253 +DPO AE 87690",1969-01-05 10:08:19,ae:fa:2b:45:84:34,moraleseric@yahoo.com,img/obama.jpg +Amanda Henderson,082-04-4792,95428,"88634 Jones Union Apt. 553 +North Jamiefort, MD 16576-9333",2006-08-22 07:50:41,42:c8:b1:03:e9:ed,toddkyle@morris.biz,img/obama.jpg +Gregory Johnston,133-89-0097,27159,"36572 Alexis Glens +Farrelltown, UT 58134",2003-04-04 06:45:15,ad:fd:f6:39:32:1f,christopherwhite@gmail.com,img/obama.jpg +Jamie Hanson MD,680-71-5115,33981,"593 Nicole Knolls +Chambersport, CO 30469",1989-10-25 17:41:06,c7:e0:4d:76:ea:77,joneslori@ramos-snyder.biz,img/obama.jpg +Kevin Moss Jr.,899-24-3106,98315,"1101 Roach Pines +Julieport, VI 81244-5651",2008-11-24 02:08:20,98:6e:00:2f:d9:c8,tinabennett@hotmail.com,img/obama.jpg +Jessica Barton,220-91-7297,71282,"PSC 0603, Box 2020 +APO AA 60647-8872",1933-04-27 17:17:42,c9:1d:bc:91:2b:03,justin20@williams.net,img/obama.jpg +Kristy Alvarez,311-99-7617,88973,"USS Flores +FPO AP 33966-5920",1917-08-10 21:41:53,b9:37:29:6c:5e:d2,dakotaharper@gray.biz,img/obama.jpg +Laura Hinton,376-45-2045,97992,"9844 Coleman Knolls +East Nathanieltown, VI 84771-8370",2012-07-25 16:41:33,3c:bd:14:11:7d:b7,sylvia41@mcpherson.com,img/obama.jpg +Nathan Gardner,571-79-2632,58867,"3553 Kim Viaduct Suite 943 +South Annton, NM 09366",1998-04-18 05:16:45,18:a7:38:19:55:73,robert17@yahoo.com,img/obama.jpg +Albert Miller,488-92-0847,35285,"775 Jennings Square +West Johnhaven, WV 06246",1941-10-15 12:18:02,34:6e:dd:c2:b4:95,linda00@gmail.com,img/obama.jpg +Edwin Mckay,107-50-6883,79246,"81900 Michael Alley +Derekhaven, NC 59920-1835",1924-08-18 16:43:34,da:86:5e:f7:d4:f3,roberto22@herring.com,img/obama.jpg +Lisa Gonzalez,109-47-8868,29537,"58277 Vasquez Fall Suite 408 +Lake Jordan, NE 33247-1509",1956-04-01 19:55:33,60:fd:f4:ef:86:a5,matthew74@hotmail.com,img/obama.jpg +Monica Smith,555-44-0173,48001,"553 Jerry Square +East Zacharyfurt, MH 18433-2558",1965-01-09 11:04:24,2c:05:b4:fa:48:b4,chase29@harris.com,img/obama.jpg +Margaret Watson MD,834-59-6373,75142,"1625 Washington Manors Apt. 936 +Whiteton, NE 06752-4840",1943-09-11 23:20:04,15:11:56:0a:39:42,kellystevens@brown-cox.com,img/obama.jpg +Kimberly Flynn,257-16-9202,16394,"52581 Emily Estate Apt. 571 +Owensmouth, MO 68357-2915",1982-09-11 19:07:11,9e:27:49:06:ba:c0,waterssamantha@smith.org,img/obama.jpg +Debra Miller,339-41-5327,14307,"556 Brooks Mews +Lake David, NE 79105-3372",2007-10-23 14:58:55,ab:ec:6f:74:0a:38,ujames@garcia-brown.org,img/obama.jpg +Jennifer Guerra,151-26-8581,70620,"44946 Oneill Cliffs +East Brian, IA 76936-8590",1968-10-02 18:33:16,76:05:1f:ff:bc:a0,joshuaking@hotmail.com,img/obama.jpg +Wendy Mosley,378-85-1262,02900,"59931 Brian Circles Suite 901 +Lake Joshua, MP 23429",1967-08-06 10:46:40,f1:22:e6:7f:44:32,lsmith@jimenez-acevedo.org,img/obama.jpg +Taylor Dawson,417-66-1335,99428,"USNV Crawford +FPO AP 80531",1995-12-04 15:53:49,ee:98:f8:c0:8e:02,lori14@smith.com,img/obama.jpg +Adrian Mendoza,050-93-4332,88858,"8778 Nicholas Ridges Suite 250 +Michaelstad, HI 61977-2003",1956-11-21 16:54:00,ec:05:ed:1d:52:c0,kenneth41@cooper-patrick.com,img/obama.jpg +Belinda Smith,687-20-8442,43858,"10627 Carr Turnpike +Port Susan, MH 86394-5524",1919-06-13 21:17:01,4c:7f:91:3e:15:f3,robertmartin@porter.com,img/obama.jpg +Todd Taylor,325-68-7000,91814,"044 Harris Terrace +Orozcohaven, VT 24274-5976",2011-04-11 17:19:41,77:16:6d:71:ce:f0,kentmelody@gmail.com,img/obama.jpg +Matthew Powell,721-11-8356,83451,"Unit 6571 Box 7168 +DPO AP 68930-2781",1950-06-19 13:55:22,ed:b8:c6:cd:97:c5,lwilliams@mccoy-williams.com,img/obama.jpg +Craig Rogers,206-25-2490,36416,"Unit 1232 Box 1499 +DPO AP 05307-2167",1972-02-16 03:56:06,25:0d:ce:63:d3:d2,mcguirecarolyn@miller.com,img/obama.jpg +Laura Lindsey,775-72-8586,15454,"2829 Rachel Unions +Benjaminmouth, MT 96321",1958-12-30 17:53:37,48:7d:ab:99:93:b7,ryanhall@wright.org,img/obama.jpg +Justin Glover MD,637-15-0445,44200,"0708 Jordan Crossroad +New Sylvia, KS 94057",1938-10-06 20:10:19,e2:b8:56:04:d7:23,edward97@lawrence.com,img/obama.jpg +Daniel Joseph,705-89-1444,38900,"20072 Gregory Flats Apt. 746 +East Donna, AZ 04068",1964-10-09 05:25:09,a2:b8:d6:fc:0c:7d,shanewhite@jones.com,img/obama.jpg +Michael Quinn,804-51-8848,54058,"3892 Melissa Trafficway Suite 624 +Davidfort, MI 72094-3949",2011-11-14 11:27:41,a9:a6:46:24:51:b6,milesjoshua@hotmail.com,img/obama.jpg +Michael Williams,009-08-2308,64317,"575 Maxwell Corners +Port Jordan, VA 61340-0515",1952-10-09 11:20:30,40:f6:93:a2:19:b8,joshuafarrell@hood-jones.info,img/obama.jpg +Victoria Francis,420-68-6043,51497,"2349 Linda Corners +Rhondamouth, IL 52637-3603",1995-06-21 07:49:20,41:e7:ee:4d:ab:89,zhunter@ford.com,img/obama.jpg +Jennifer Anderson,074-03-9064,78155,"4923 Davis Hollow +Boyleton, UT 41966",1984-10-26 02:09:43,41:92:95:06:ca:a1,lambertamanda@gmail.com,img/obama.jpg +Heather Taylor,715-70-3327,49147,"PSC 6862, Box 4013 +APO AP 33828-6031",1996-12-23 03:12:43,70:1d:5a:e6:47:4d,qcampos@mcdonald-jones.com,img/obama.jpg +David Tucker,371-63-5751,47032,"74327 Kurt Knoll Suite 177 +Juliemouth, NV 46842",1956-11-13 02:04:02,a3:23:25:05:52:76,jvega@yahoo.com,img/obama.jpg +Cathy Scott,410-04-5840,67960,"0010 Donald Drive Apt. 979 +Kathleenfort, AS 01064-6650",1940-11-20 06:27:35,19:fc:03:ae:4e:2c,pjenkins@gmail.com,img/obama.jpg +Mrs. Brandi Roy MD,797-89-7369,90094,"47140 Lindsey Lodge Apt. 405 +New Nicholasshire, MI 52548-1337",1962-11-15 09:11:22,ee:57:6f:6a:03:24,fredericksharon@thomas-glover.com,img/obama.jpg +Jenny Stone,562-74-8121,64744,"333 Roth Garden +Bonnieville, OH 93743-1476",1964-01-19 08:22:33,cf:a9:72:9c:2c:cd,natashacarter@martinez.com,img/obama.jpg +Adrian Conner,584-89-3158,03887,"PSC 1906, Box 5789 +APO AA 66880",1974-06-08 13:52:25,d2:e4:8d:3e:99:df,mcdowellroy@adams.com,img/obama.jpg +Andrew Smith,462-27-8090,46327,"PSC 3518, Box 3864 +APO AP 23334-4997",1937-07-09 18:12:15,19:3e:9c:36:61:a9,thomassanders@gmail.com,img/obama.jpg +Michael Thomas,850-04-5098,06033,"937 Richard Forest +Deborahbury, AR 14685-1358",1962-05-20 16:50:32,f7:b5:eb:1c:59:11,michael37@hughes-kelley.net,img/obama.jpg +Mary Davis,241-56-1413,43528,"57219 Lisa Path +Lopezville, MT 09023",1991-01-08 02:51:30,f7:00:a4:a7:65:45,umckenzie@hotmail.com,img/obama.jpg +Jeremy Moyer,047-18-3739,41789,"674 Amanda Ford Apt. 535 +Craigchester, UT 06833",1964-08-26 19:53:06,64:bf:b8:8b:84:0d,lewisdebbie@matthews-silva.biz,img/obama.jpg +Taylor Walsh,259-55-3835,62585,"USNV Ruiz +FPO AA 11967-1921",1984-08-26 02:12:20,11:79:79:1b:46:2f,krystal31@frank.net,img/obama.jpg +Gregory Patterson,190-91-8469,42300,"781 Sims Center +North Danielle, LA 38019",1941-09-02 09:30:08,52:c1:29:2c:42:81,christophercarney@raymond.org,img/obama.jpg +Richard Chavez,332-60-4103,84378,"09789 John Course +North Bethbury, CT 74284-5995",1992-08-25 04:57:39,22:db:e6:fc:0e:50,awalker@west.org,img/obama.jpg +Matthew Simmons,142-13-8601,61060,"3814 James Isle +East John, WY 71194-1333",1939-02-25 12:50:03,29:c5:29:17:be:e4,jamesmiller@larson.org,img/obama.jpg +Scott Chan,253-40-1986,88300,"614 Stewart Common +Gonzaleshaven, MD 36231-8992",1936-08-15 00:06:08,c8:36:14:2d:fa:7c,nnguyen@frye.com,img/obama.jpg +Christina Garza,395-66-0525,43828,"487 Margaret Crescent +Port Heather, VT 91808-5053",2012-03-04 22:49:20,30:b8:c5:45:b0:07,donnagibson@yahoo.com,img/obama.jpg +Philip Jones,659-05-2571,30483,"1337 Rodriguez Plaza Apt. 103 +Port Michael, NJ 90964",1937-08-12 12:52:10,5d:c1:33:bf:b3:74,tosborne@gmail.com,img/obama.jpg +Mrs. Laura Davis,518-28-3624,56525,"270 Tammy Fords Suite 573 +Lake Joannechester, KS 75888-9463",1953-06-03 02:55:25,55:65:8d:4b:81:82,benjamin93@foster-owens.net,img/obama.jpg +Amanda King,612-62-2951,09901,"Unit 5594 Box 8488 +DPO AP 74550",1991-09-04 11:32:48,fa:7e:2d:bf:c7:ed,tjackson@alvarez-kim.com,img/obama.jpg +Erin Curtis,894-45-7222,65804,"345 Dennis Coves Suite 489 +Danastad, FL 50588-3402",1919-01-26 10:43:58,8e:44:ca:c1:0a:74,haleadam@rice.com,img/obama.jpg +Lisa Mitchell,644-81-6140,78662,"371 Bradley Fields Suite 734 +West Allison, CO 59333-5416",1941-03-04 11:36:05,35:0c:62:5a:95:57,wparsons@gmail.com,img/obama.jpg +Jon Scott,761-78-9604,62437,"584 Emily Brooks Suite 594 +Lake Christopher, MH 14708-2029",1940-11-07 16:31:37,cc:de:9a:e4:b3:f4,david24@garcia.biz,img/obama.jpg +Linda Conner,042-99-1218,12442,"614 Mason Pine Apt. 437 +Smithburgh, NH 96319",1987-11-14 11:39:20,91:ad:af:4b:c2:7c,lisa58@yahoo.com,img/obama.jpg +Austin Adkins,583-25-4214,95979,"4010 Henry Hill Apt. 444 +West Stephen, IA 75462-1667",1969-02-18 09:45:48,d5:f1:f9:8a:05:1d,george58@hotmail.com,img/obama.jpg +Jeffrey Garcia,791-54-8174,79536,"4237 Karen Trail +Salinasport, TN 73901",1979-03-06 00:00:35,d4:48:63:e5:2d:4b,kent15@yahoo.com,img/obama.jpg +Michelle Campbell,007-22-6681,68853,"8589 Jessica Junctions +Lake Erin, LA 43117-3940",1987-10-05 21:26:27,b2:a6:8a:11:45:87,wendy27@yahoo.com,img/obama.jpg +Angela Figueroa,359-65-9483,50597,"751 Cummings Inlet +West Stephanie, IA 38054-4783",1955-09-03 10:04:14,85:10:d9:53:d2:a2,kmartin@murphy-spencer.biz,img/obama.jpg +Ana Chavez,849-69-7501,28131,"1808 Sherry Way Suite 536 +Salasmouth, MN 77897-4451",1989-12-20 16:56:37,b9:15:1b:ad:a3:30,rossashley@hotmail.com,img/obama.jpg +Donna Johnson,171-68-4908,22489,"53173 Emily Mountain Suite 773 +Oconnortown, DE 54729",1966-08-04 08:14:14,b5:e6:a5:7f:07:86,michaelpark@hotmail.com,img/obama.jpg +Corey Rubio,068-40-5368,31336,"16750 Mark Plaza Suite 385 +Smithfurt, AK 70794-2335",1954-04-14 00:28:56,08:7a:bb:c3:e2:4e,coreyblair@gmail.com,img/obama.jpg +Richard Chang,656-92-7887,09429,"6690 Gilmore Manors +Nicholsmouth, WV 43484",1950-01-10 09:28:53,fc:cd:81:37:53:c6,dunnkathy@hotmail.com,img/obama.jpg +Kimberly Richardson,619-23-3432,69321,"845 Mark Ramp Apt. 547 +Codyton, VT 91912",2015-08-20 22:29:27,6b:28:71:60:1f:35,timothy22@webster.com,img/obama.jpg +Donald Jackson,193-22-7037,06776,"801 Klein Parks Suite 705 +Lake Courtneyside, VA 74635-9525",2012-12-17 08:24:11,61:a7:08:08:12:b0,robertchristian@bradley.com,img/obama.jpg +Vernon Roberts,361-17-1085,81051,"050 Goodman Brook +Port Meredith, NJ 37659",1951-11-03 14:41:23,e1:c0:af:0f:e5:6e,michaellyons@taylor.org,img/obama.jpg +Christine Erickson,659-95-6353,45706,"0009 Williams Locks +Lake Christopherhaven, HI 39396-3315",1952-03-31 16:01:59,3c:09:4d:76:78:e4,stephen10@gmail.com,img/obama.jpg +Jerry Cook,335-65-4080,52157,"8676 Clark Common +Lake Lisastad, MH 76995-8013",1998-10-01 01:59:08,5c:e0:9e:bb:c3:f6,christinagordon@yahoo.com,img/obama.jpg +Eric Bishop,759-86-4654,30412,"USNV Lopez +FPO AP 28343",1918-04-12 20:08:11,a7:da:45:ff:eb:9d,fsalazar@hotmail.com,img/obama.jpg +Misty Vaughan,810-06-7278,88814,"37636 Kelsey Coves Suite 572 +Port Benjaminburgh, GA 05249",1973-02-27 16:25:45,4b:10:43:3c:71:77,vtaylor@sims.org,img/obama.jpg +Jeffrey Warren Jr.,682-90-5055,50063,"PSC 3506, Box 9774 +APO AA 82850-4872",1918-10-10 10:13:34,1b:d5:0f:07:a8:a6,hernandezcheryl@hill-garcia.com,img/obama.jpg +Ryan Reid,433-59-9797,03115,"708 Darren Spur +Palmerhaven, FL 24983-0278",2016-07-25 22:10:08,2a:43:f1:5b:24:a0,harriskathy@dominguez.com,img/obama.jpg +Robert Reynolds,329-78-1471,26359,"87986 Melissa Summit Suite 285 +North Lisa, AS 80212-6823",1941-04-28 18:11:24,12:e3:01:6e:c3:d8,jasminwatkins@yahoo.com,img/obama.jpg +Jonathan Watson,082-03-6579,88920,"27197 Mariah Fall +Blairbury, MT 28474",1922-11-01 15:50:10,1c:7f:54:07:a7:aa,jasoncooper@vasquez-scott.info,img/obama.jpg +Stephen Taylor,082-42-8998,23934,"Unit 6914 Box 7165 +DPO AP 38850",1944-11-21 12:31:26,63:c0:04:ea:8f:48,lpatterson@lewis.com,img/obama.jpg +Laura Martin,305-10-7417,63539,"542 Rodriguez Key +Rogersshire, OR 98512",2011-11-15 03:10:33,68:f1:f2:f9:4c:a1,moorejanet@gmail.com,img/obama.jpg +Mckenzie Hughes,529-43-1672,71782,"657 Hayden Forks +Ortiztown, KY 82361-1675",1980-01-05 14:55:46,9d:2f:4d:9d:a5:0e,erik56@gmail.com,img/obama.jpg +Amy Calderon,650-61-7654,19820,"432 Mitchell Springs +New Jenniferborough, CA 50224",1947-11-05 18:25:19,a6:92:ff:3b:1d:da,samuel73@wilson-webb.com,img/obama.jpg +Monica Flores,304-17-7361,60447,"124 Shelby Prairie +Lake Steve, MP 81126-5703",1985-03-08 00:41:54,cb:be:c6:f1:81:61,melissa75@parker.com,img/obama.jpg +Emily Davis,109-50-1367,59883,"3415 Torres Plain Apt. 626 +Rachelside, ND 62074",1996-03-02 04:47:01,16:b6:35:dc:8e:2e,richardsoncaitlin@gmail.com,img/obama.jpg +Lori Merritt,541-36-1421,10437,"99501 Wilson Stravenue Apt. 114 +Lake Sheliastad, MO 67597-4479",1988-05-13 00:33:16,4a:e9:e7:ee:41:f2,dwaynekirk@hoffman.org,img/obama.jpg +Alyssa King,881-46-6219,19125,"49984 Decker Ridges +Williamsfort, AK 33654",1976-09-25 18:32:24,50:c3:8e:28:c0:6e,ingramstephanie@hotmail.com,img/obama.jpg +Melissa Mclean,172-84-5202,21890,"1422 Kelly Station Apt. 390 +West Greg, FL 26119",1968-11-24 19:12:37,4c:79:74:fa:47:79,ronald88@hotmail.com,img/obama.jpg +Sarah Ford,660-82-4800,08685,"67515 Toni Mill +West Christine, TX 16397-4760",1954-07-08 03:05:43,9d:0d:1d:35:dc:c7,victor86@yahoo.com,img/obama.jpg +Nicholas Parker,307-29-7952,94194,"14055 Gibson Way Apt. 155 +Joshualand, CO 63800",1964-06-15 05:53:35,2d:4c:1a:79:85:4a,ronaldlevine@hotmail.com,img/obama.jpg +Donna Cameron,711-05-8538,10568,"563 Jones Ports Apt. 378 +West Jamesmouth, KY 93773-9420",2007-11-24 02:58:16,d8:f6:bd:c7:4b:be,davidallen@franco.com,img/obama.jpg +Daniel Gomez,597-56-5259,75429,"79882 Duffy Club Apt. 047 +Schneiderville, OH 19330-4605",1970-03-12 08:29:43,9b:56:dc:4b:80:ba,gomezangela@gmail.com,img/obama.jpg +James Rodriguez,087-33-1451,15663,"0730 Clark Cliff +Amyburgh, NV 17430",1964-07-29 06:07:29,97:c8:81:29:21:e0,imcknight@hatfield.biz,img/obama.jpg +Duane Holland,320-26-7347,34981,"403 Donna Ville +Port Amanda, IA 34110-2668",1985-07-09 04:41:56,bf:e2:68:ac:f1:f1,davidsilva@rodriguez-vance.info,img/obama.jpg +Corey Barron,551-31-8440,56539,"Unit 2388 Box 3683 +DPO AE 31007",1917-11-14 08:33:02,44:21:8d:14:81:3d,valeriehanson@yahoo.com,img/obama.jpg +Amanda Williams,484-32-1917,08514,"Unit 1866 Box 4264 +DPO AP 09395",1960-12-16 00:15:58,a4:66:6f:0f:fc:d2,charlessmith@yahoo.com,img/obama.jpg +Walter Ortega,312-34-8284,37482,"2105 Horne Prairie +Griffithfurt, VA 76359",1968-04-24 05:53:00,a1:cc:46:b8:74:6e,paulwarner@davis.net,img/obama.jpg +Sandra Patterson,655-61-7581,48982,"419 King Pines +Jesusfort, NV 27398-2979",1936-12-14 01:27:44,ba:a5:51:b1:3f:94,annaadams@yahoo.com,img/obama.jpg +Michelle Allen,486-35-7886,59430,"816 Patricia Walk +Heidimouth, MD 55684-3242",2010-09-23 17:47:58,10:14:39:88:1f:e0,bmills@gmail.com,img/obama.jpg +Taylor Hoffman,843-86-9780,66070,"5201 Benjamin Orchard Suite 510 +West Christine, MD 78132-4042",1922-04-09 12:10:02,76:69:b8:f9:53:53,darrell22@yahoo.com,img/obama.jpg +Stephanie Johnston,137-93-6755,66734,"3063 Kaitlin Mountain +Lake Christinaborough, MI 96511-5129",1971-04-10 04:16:22,7e:36:5d:67:49:8a,beckertimothy@hotmail.com,img/obama.jpg +Vincent Andrews,181-07-1643,63862,"8392 Sherman Estate Apt. 588 +East Calebfurt, NY 77099-0607",2007-12-16 01:17:03,64:ba:e9:77:20:f5,moraleskellie@payne-miller.com,img/obama.jpg +Jessica Moody,299-57-9854,39912,"61151 Rachel Village Suite 483 +New Donna, AS 20498-9864",1971-01-01 21:25:19,19:8b:d3:0c:5b:9a,valexander@hotmail.com,img/obama.jpg +Sandra Dixon,157-92-8330,72974,"3731 Miller Cliffs Suite 905 +Mosschester, PR 83516-1047",1947-08-12 22:17:19,d8:1e:4e:0c:fb:2c,jdiaz@torres-berg.com,img/obama.jpg +Rebecca Cochran,704-75-4406,62066,"1414 Joseph Heights Suite 984 +South Brianna, CA 37238-5452",1969-12-29 13:10:59,46:36:30:8f:67:5c,brandongarcia@rodriguez-cardenas.biz,img/obama.jpg +Jackson Carlson,557-95-1435,57817,"955 Kevin Forges +Anneberg, OR 71866-4983",1947-06-20 22:37:02,35:b8:7d:75:5e:9c,lambrian@hotmail.com,img/obama.jpg +Sarah Potter,734-38-4214,07247,"4311 Graham Lock +New Timothy, ME 27312",1991-04-26 13:57:16,43:ec:fd:ac:e1:1c,ricky22@gmail.com,img/obama.jpg +Lisa Rogers,223-44-9970,27069,"712 Deanna Islands Apt. 726 +West Tammie, PA 80040-1855",2005-07-26 18:12:49,84:5d:b4:d5:9e:e3,qburnett@hotmail.com,img/obama.jpg +Beth Hurst,870-69-7800,01696,"7478 Kathy Street Apt. 312 +Robynmouth, MH 77472",2006-04-21 16:04:38,a1:11:4b:44:9d:f9,williamlewis@yahoo.com,img/obama.jpg +Connie Conner,586-17-5778,92595,"0008 James Forges Apt. 633 +South Brent, PA 51113",1949-09-18 15:35:22,0f:46:6c:2e:57:48,pjacobs@gmail.com,img/obama.jpg +James Montgomery,496-26-2520,46526,"476 Andre Terrace Apt. 454 +Pedroton, AR 91169",1922-05-02 01:31:29,4c:65:d6:14:ca:f6,ibrown@hotmail.com,img/obama.jpg +Brenda Munoz,521-71-5506,22033,"238 Lisa Plaza Suite 836 +East Juanview, NC 58015",1929-03-13 05:35:53,fc:65:e6:95:41:27,hclark@moore.com,img/obama.jpg +Paul Crawford,752-03-9152,21137,"58364 Amy Freeway +Kyletown, AL 61228-3214",1952-12-21 21:56:49,9c:c2:7a:df:c1:ce,sharonmathis@parker.com,img/obama.jpg +David Klein,595-40-3457,07166,"169 Vazquez Creek +Calvinburgh, WA 94402",1924-11-07 05:14:53,a2:11:3f:70:72:ce,lorigonzales@flowers.biz,img/obama.jpg +Danny Barber,085-53-6099,53504,"83534 David Alley +West Emilyland, CA 98801-6019",1992-02-05 02:39:45,c4:c9:6f:57:4c:26,mary20@boyd.com,img/obama.jpg +Alexander Ibarra,331-96-3436,42069,"49491 Andrews Spring Suite 328 +Port Lorimouth, OR 63238-2647",1943-01-05 19:09:40,66:50:a4:66:82:30,knightscott@hotmail.com,img/obama.jpg +Brittany Bailey,358-47-0375,59841,"PSC 8475, Box 2287 +APO AP 26230",1927-11-12 06:04:21,96:ba:a8:47:3c:28,vpierce@velez-bowen.org,img/obama.jpg +Caleb Gamble,486-50-1120,50741,"7842 Marks Drive +Port Erica, MT 10114",1947-06-23 03:22:35,fa:8e:96:d4:67:a7,rebecca85@davis.com,img/obama.jpg +Mark Alvarez,669-59-5126,21597,"83606 Debra Junctions +Kathrynbury, VA 07297",1964-04-27 17:29:51,9f:80:df:51:3f:06,qgray@bowers-edwards.com,img/obama.jpg +Louis Love,514-88-8603,30414,"271 Alexandria Divide Apt. 371 +Thorntonstad, TN 25885",1930-06-10 09:36:14,39:c3:c6:ba:0c:18,millergregory@gmail.com,img/obama.jpg +Karen Martin,131-26-6945,78836,"023 Jessica Via Apt. 289 +Dianabury, CT 68378",1949-12-06 03:51:11,a5:02:0d:2e:33:ce,sydneymoore@hotmail.com,img/obama.jpg +James Schroeder,757-39-2572,02133,"57709 Cindy Mountain +Johnmouth, NC 50143-9369",1937-03-14 03:44:00,33:70:c7:86:a9:7c,troygonzalez@sanchez.com,img/obama.jpg +Rodney Fields,581-98-5930,08466,"1951 Joshua Viaduct Suite 732 +Lynnburgh, MN 62199-4855",1959-03-24 11:31:25,ac:9e:f5:a0:3e:f6,jgarcia@espinoza.com,img/obama.jpg +Benjamin Bell,663-99-6165,08195,"49213 Kyle Mission +East Christophershire, HI 46128",1925-03-29 21:12:06,23:dd:47:e4:75:f7,laura96@gmail.com,img/obama.jpg +Dana Lin,267-80-1241,12548,"496 Edward Fort +Ronnieburgh, WY 83356-0051",1999-11-03 00:21:13,ae:8c:f5:2d:a1:25,williamsoncharles@colon.org,img/obama.jpg +Michael Richardson,263-95-2812,35383,"196 Michael Orchard +New Ashleyhaven, ND 51292",1984-05-09 18:54:16,cc:99:c2:4e:b0:0a,mariofaulkner@yahoo.com,img/obama.jpg +Belinda Thomas,466-20-2466,75340,"326 Anthony Forest Suite 606 +West Ralph, IL 06755",2001-12-30 14:16:12,46:61:86:09:c6:5a,sbaker@fuller.biz,img/obama.jpg +Scott Stewart,454-31-8219,91888,"96959 Andrade Divide +Kevinland, PR 33550-7924",1976-01-13 07:57:54,86:6b:b7:4f:fc:11,brandi78@west.info,img/obama.jpg +Sharon Scott,791-52-3757,42253,"96141 David Valley Suite 075 +Davidfort, RI 73010-3289",1968-01-20 09:46:33,17:57:37:c1:b0:5f,fgarcia@rice.com,img/obama.jpg +Jane Herrera,388-39-2970,72001,"75230 David Park Apt. 831 +Ethanborough, NY 73178",1968-08-16 11:46:05,44:d3:cd:69:a5:06,mitchelljoseph@gmail.com,img/obama.jpg +Michael Collins,221-76-8488,48429,"1047 James Walk Apt. 855 +Brandyland, OK 74922",1974-05-20 03:39:14,36:f5:8a:4e:66:af,stephanie55@yahoo.com,img/obama.jpg +Jessica Price,109-77-8618,97822,"37225 Fuller Greens +Cabreraville, PR 01718-4490",1992-08-05 12:39:08,ca:13:cd:24:28:5d,bergerchristina@gmail.com,img/obama.jpg +Kayla Santana,256-68-9598,53973,"Unit 7419 Box 4177 +DPO AA 60430-5899",1996-04-15 10:52:22,eb:94:a4:3a:d2:46,beckerscott@myers.com,img/obama.jpg +Donna Calderon,276-09-6782,00833,"910 Lewis Underpass +New Kristenville, ND 91859-6969",1945-10-17 11:39:30,b1:ac:a9:78:50:c1,ahenry@yahoo.com,img/obama.jpg +Carla Hickman,387-53-2741,22600,"1269 Courtney Circle +Lake Matthewborough, NH 11467-0315",1960-01-28 14:56:13,af:17:06:a6:03:22,manuellogan@foster-wallace.com,img/obama.jpg +Jeremy Hunter,346-39-2925,17925,"1103 John Ford Suite 520 +East Angela, OR 21795-8846",1976-02-18 13:17:11,e2:ed:4f:5a:c6:77,pamelasmith@hotmail.com,img/obama.jpg +Brent Gardner,124-18-8494,38235,"8618 Stephens Valley +North Cynthia, IA 72400",1938-07-02 10:14:21,be:15:d8:b2:6d:be,shelby77@wells.com,img/obama.jpg +Richard Beck,218-63-3299,81881,"80786 Cole Squares Apt. 256 +Bennettbury, OR 56630",1935-07-30 06:30:49,66:3c:93:0c:f7:6e,joel09@hotmail.com,img/obama.jpg +Jenny Thomas,761-10-9165,17416,"PSC 6566, Box 3525 +APO AE 14366",1967-10-21 07:57:55,84:10:af:10:ff:f9,francisco88@snyder.net,img/obama.jpg +Lisa Sweeney,139-68-3060,06844,"5842 Wyatt Mountain Suite 494 +Haydenbury, NC 65983",1941-04-02 15:25:46,48:dd:e5:18:ab:40,krichards@gmail.com,img/obama.jpg +Michelle Hernandez,537-76-7212,62177,"13088 Belinda Locks Suite 898 +North Daryl, UT 12598",2009-05-18 09:13:29,df:be:36:6d:01:3b,victoria83@rodriguez.com,img/obama.jpg +Paul Leonard,655-35-0416,76216,"33146 Brooke Shores Suite 517 +New Kevin, IN 90429",1970-10-26 14:18:06,3a:5f:f8:90:15:b5,barkermichelle@yahoo.com,img/obama.jpg +Erin Alvarez,650-81-0731,42179,"82252 Kramer Drive +South Monicaton, VA 52004-6729",1992-07-03 20:04:24,3e:cf:cd:aa:80:cf,qvargas@kim-short.com,img/obama.jpg +Rebecca Cruz,106-67-5678,53213,"668 Jesse Plains Suite 640 +New Elizabethfort, NC 48819",1950-02-22 10:19:38,fb:28:7b:1e:51:6e,markschultz@evans.com,img/obama.jpg +Dawn Smith,288-60-2384,96423,"2524 Michael Valley +Christinemouth, CT 42328-4112",2000-03-23 07:07:03,64:5b:ea:8b:20:d9,hudsonkathleen@martinez.com,img/obama.jpg +John Stevenson,330-33-8088,09923,"1083 Flynn View +Port Brookefurt, TN 50239",1956-12-24 01:13:59,06:c3:75:c8:6c:98,edwardsdavid@moyer.org,img/obama.jpg +Danielle Mann,043-73-2930,76235,"9876 Duncan Union Apt. 936 +Salazarhaven, CA 21438",1968-06-17 00:22:18,fb:e4:31:3b:e2:17,sheila99@hotmail.com,img/obama.jpg +Taylor Singh,263-73-9336,07328,"01204 Li Flat +West Elizabethchester, ME 63783",1956-03-22 03:37:20,bc:3e:35:12:42:66,hsmith@yahoo.com,img/obama.jpg +Joseph Mcdaniel,564-71-9267,99462,"4093 David Landing Apt. 394 +Moorehaven, AK 35504-7050",1990-10-26 05:21:24,81:c9:f6:1f:76:02,bmurray@hotmail.com,img/obama.jpg +Amanda Mcdaniel,893-13-2454,49043,"812 Bauer Islands Apt. 715 +Ericville, IN 15339-0213",2011-12-12 13:35:44,2e:5d:25:cc:e0:27,patrick51@fernandez.com,img/obama.jpg +Mary Benson,311-28-5565,44122,"8877 Jimenez Light +Shermanhaven, OH 25512-4194",2001-10-03 18:22:08,2d:c3:2b:36:a8:8f,yglass@newman.com,img/obama.jpg +Jason Allen,014-11-2054,97775,"501 Saunders Court Suite 474 +Ayersville, VT 09294",1949-11-19 07:56:42,11:e2:7e:78:5c:2e,kathleenmcneil@lowe.com,img/obama.jpg +Amanda Johnson,742-94-0623,90518,"6706 Lucas Overpass Apt. 460 +Lake Tiffanyview, ND 49512",1993-05-31 10:15:25,9b:99:2d:24:f3:a9,larryalvarez@gmail.com,img/obama.jpg +Meghan Nelson,268-76-9712,79265,"0214 Jeffrey Trail Apt. 081 +Lancefurt, CO 85652-5999",1948-01-28 21:31:25,ed:3f:6c:fc:84:f6,cruzadrian@friedman.biz,img/obama.jpg +Amy Young,447-19-1491,14829,"5795 Bentley Burgs +Gutierrezshire, IA 43005-0239",1990-09-02 04:33:05,f9:9e:87:6d:3c:f7,dylanmiller@gmail.com,img/obama.jpg +Bethany Garza,575-66-8880,09647,"620 Jennifer Lane Apt. 322 +Barnettberg, RI 59124",1977-03-19 03:40:17,d2:e6:a0:86:cb:90,tedwards@hotmail.com,img/obama.jpg +Louis Jordan,050-82-0956,38854,"53542 Brooke Valley +Raymondport, PR 70006-2341",1987-02-20 21:10:33,9c:55:46:74:09:bc,seth00@hotmail.com,img/obama.jpg +Richard Vaughan,246-29-9897,30104,"9038 Denise Crescent Suite 984 +East Jaime, ID 91072-6047",2001-03-25 09:23:46,57:05:d3:0d:72:15,zdavidson@king-richardson.info,img/obama.jpg +Beverly Huerta,342-81-7441,29901,"705 Nguyen Walks Suite 610 +West Brian, CT 50098-1822",1942-07-30 09:07:33,41:69:43:6a:24:7e,andrew24@gmail.com,img/obama.jpg +Kyle Ponce,810-15-6086,46557,"07702 Ashley Cliff +Katelynville, LA 75781-1546",2006-03-22 02:02:27,a7:e9:e6:bd:aa:25,seananderson@lopez.com,img/obama.jpg +Charles Allen,224-22-3650,98376,"1205 Crosby Forest +Maryland, ND 40446",1952-06-22 16:40:43,90:0d:7c:59:15:aa,rodriguezdavid@yahoo.com,img/obama.jpg +Courtney Bryant,359-34-8764,15838,"8517 Barnes Course Apt. 460 +East William, GU 37413-6939",1958-04-19 12:46:42,31:1b:9a:05:1d:77,cynthiagarza@gmail.com,img/obama.jpg +Samantha Hall,572-21-1588,00706,"7943 Christian Center +West Maryville, LA 88308",1992-07-24 12:22:58,54:14:9b:d5:d2:0b,allen31@hotmail.com,img/obama.jpg +Christopher Washington,579-90-1365,46116,"USNS Hall +FPO AE 72363",1963-11-21 08:07:59,68:11:b3:4c:0f:41,jenniferbrown@gmail.com,img/obama.jpg diff --git a/data/first_names.dat b/iid/data/first_names.dat similarity index 100% rename from data/first_names.dat rename to iid/data/first_names.dat diff --git a/data/gen.py b/iid/data/gen.py similarity index 92% rename from data/gen.py rename to iid/data/gen.py index 88f1d11..39605e2 100755 --- a/data/gen.py +++ b/iid/data/gen.py @@ -41,6 +41,10 @@ def email_generator(): while True: yield fake.email() +def face_generator(): + while True: + yield 'img/obama.jpg' + name_gen = name_generator() ssn_gen = ssn_generator() zip_gen = zip_generator() @@ -48,13 +52,15 @@ def email_generator(): date_gen = date_generator() mac_gen = mac_generator() email_gen = email_generator() +face_gen = face_generator() generators = [('name', name_gen), ('ssn', ssn_gen), ('zip', zip_gen), ('address', address_gen), ('date', date_gen), ('device_id', mac_gen), - ('email', email_gen) + ('email', email_gen), + ('face', face_gen) ] def main(): diff --git a/data/last_names.csv b/iid/data/last_names.csv similarity index 100% rename from data/last_names.csv rename to iid/data/last_names.csv diff --git a/data/last_names.dat b/iid/data/last_names.dat similarity index 100% rename from data/last_names.dat rename to iid/data/last_names.dat diff --git a/data/names.dat b/iid/data/names.dat similarity index 100% rename from data/names.dat rename to iid/data/names.dat diff --git a/data/names.txt b/iid/data/names.txt similarity index 100% rename from data/names.txt rename to iid/data/names.txt diff --git a/data/out.csv b/iid/data/out.csv similarity index 100% rename from data/out.csv rename to iid/data/out.csv diff --git a/data/pii.csv b/iid/data/pii.csv similarity index 100% rename from data/pii.csv rename to iid/data/pii.csv diff --git a/data/surnames.dat b/iid/data/surnames.dat similarity index 100% rename from data/surnames.dat rename to iid/data/surnames.dat diff --git a/data/zips.csv b/iid/data/zips.csv similarity index 100% rename from data/zips.csv rename to iid/data/zips.csv diff --git a/datahub/README.md b/iid/datahub/README.md similarity index 100% rename from datahub/README.md rename to iid/datahub/README.md diff --git a/datahub/__init__.py b/iid/datahub/__init__.py similarity index 100% rename from datahub/__init__.py rename to iid/datahub/__init__.py diff --git a/datahub/datahub.py b/iid/datahub/datahub.py similarity index 86% rename from datahub/datahub.py rename to iid/datahub/datahub.py index f579246..5a44756 100644 --- a/datahub/datahub.py +++ b/iid/datahub/datahub.py @@ -6,7 +6,6 @@ import requests import logging - # TODO: OAuth2 support # This will most likely be rolled into the front-end rather than anything here. # I'm still working on getting OAuth2 to work, so until then... @@ -18,6 +17,7 @@ class DataHub: def __init__(self, access_token): self.token = access_token self.info = self.get_user_info() + self.table_list= self.get_table_info() def __default_params(self): """Generates default parameters for all calls to DataHub.""" @@ -32,6 +32,23 @@ def get_user_info(self): raise RuntimeError('Unable to return information about current user: {0}'.format(r.text)) return r.json() + def get_table_info(self): + """to get repo and table information""" + params = {} + params['access_token'] = self.token + + data = {} + r = requests.get(BASE_URL + 'repos', params=params, data=data) + r = r.json() + repo_list = {} + for item in r['repos']: + repo_list[item['repo_name']] = [] + r_table = (requests.get(BASE_URL + 'repos/{0}/{1}'.format(self.info['username'], item['repo_name']), + params=params)).json() + for table in r_table['tables']: + repo_list[item['repo_name']].append(table['table_name']) + return repo_list + def query_table(self, repo_name, query, rows_per_page=None, current_page=None): """ Queries the given table with a query and optional rows per page and current page. @@ -120,7 +137,7 @@ def delete_table(self, repo_name, table_name): r = requests.delete(BASE_URL + 'repos/{0}/{1}/tables/{2}'.format(self.info['username'], repo_name, table_name), params=params) - def upload_table(self, repo_name, table_name, upload_table, PIPELINE): + def upload_table(self, repo_name, table_name, upload_table, PIPELINE, up_repo_name): """ upload filterd table into the same repo :param repo_name: repo to input @@ -139,11 +156,11 @@ def upload_table(self, repo_name, table_name, upload_table, PIPELINE): schema = '(' + ','.join(schema_list) + ')' # if table exist, delete it first - self.delete_table(repo_name, upload_table) + self.delete_table(up_repo_name, upload_table) # create table try: - res = self.query_table(repo_name, 'CREATE TABLE {0}.{1}{2}'.format(repo_name, upload_table, schema)) + res = self.query_table(up_repo_name, 'CREATE TABLE {0}.{1}{2}'.format(up_repo_name, upload_table, schema)) except Exception as e: logging.error('Uncaught exception when creating table: {e}'.format(e=e)) @@ -158,9 +175,6 @@ def upload_table(self, repo_name, table_name, upload_table, PIPELINE): result.append(value) result = ','.join(result) try: - res = self.query_table(repo_name, 'INSERT INTO {0}.{1} VALUES {2}'.format(repo_name, upload_table, result)) + res = self.query_table(repo_name, 'INSERT INTO {0}.{1} VALUES {2}'.format(up_repo_name, upload_table, result)) except Exception as e: - logging.error('Uncaught exception when inserting table: {e}'.format(e=e)) - - - + logging.error('Uncaught exception when inserting table: {e}'.format(e=e)) \ No newline at end of file diff --git a/filter/__init__.py b/iid/filter/__init__.py similarity index 100% rename from filter/__init__.py rename to iid/filter/__init__.py diff --git a/filter/address.py b/iid/filter/address.py similarity index 100% rename from filter/address.py rename to iid/filter/address.py diff --git a/filter/date.py b/iid/filter/date.py similarity index 100% rename from filter/date.py rename to iid/filter/date.py diff --git a/filter/filter.py b/iid/filter/filter.py similarity index 100% rename from filter/filter.py rename to iid/filter/filter.py diff --git a/filter/ssn.py b/iid/filter/ssn.py similarity index 100% rename from filter/ssn.py rename to iid/filter/ssn.py diff --git a/filter/zip_code.py b/iid/filter/zip_code.py similarity index 100% rename from filter/zip_code.py rename to iid/filter/zip_code.py diff --git a/iid/img/obama.jpg b/iid/img/obama.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7f95203c314c41fad50ca20cb3cda621aed47e4 GIT binary patch literal 24165 zcmbSy1yCHp*6yMU1h?Ss8r(g|?gn=Y!9o@bEbhUB!?H-wAd5qSF9b+%3lN+j2^uUA z+~tvbU)_7(tNQ;Zy;W1+oIc&>%;|4>PWQ~-&)qKrh{0+gH2@kK8sOmJ2e@CwHvy@r zSn23#tAU=WK2!hz_!`fkuCLLF0RR_QPne#%GLwm^853|6fDXU~U;~5z0Bc(hH%)yt z1HeN8sj4t}JShFe|1M`UfQOy{fJuH09VVuK%m1$siLD#V697QddC(TIv-hxlz!4AF z*~ioEul&Jp0J)9RUyP3V7sDPLe85zHvBN(x-#>Kzi5351I~P~G2c5q@yV<$e{lz^G z_^r2>{R75$_JE_jq4quxc#7_5c7d@&C#_?QLH@;3p3lA7-GZ z@_=Ol033XW|G+l?fj#YgAN&LWR9?IJ!JrPWJejy`xtWBdq$HU%?0uZ=Jw5q#tZkjF zVRlR^uU*`%UHt%ne_r$7Rshn!v1NJ)vbd0xxH!MCz(e@|RsP$`e`)>q;P2S}Q{!0o zA7h3_`Sstjf4BX&>~$dkAbI)_o8*7XY~BF?&5-~A)%?F@Z0`X8q6h$>Y3x6)hw?99 zUU_=DNec@4`1lAw?QI4A2J~O$|ETaU&HozwhdqJ6_Wl(+rlf528nc{9g{}Ne`#!9#99SzhV_V114K9nD<}&a8LX_U;*#|L;!LCHGl!Y3g80p z1B3w*02zQHKotN6XafuYrhw-FTfi%T3jhZ20R#d<0a1WBKr$c=kOjyG6a&fuHGn!m zGoTI73Fre11HJ*K0Ska-zy@IVVfH!$Tt7@?Kr{k0GBj#5Ml^ObUNm7eNi=yhRkUYl zdT6F-FVGy&T+zJH0@1?J;?Uq|S!e}lCrjR1<@tZmCzyR2I!XP4(RUa{^$|tiRhW=h3Hl2P3WEI!|2oK%jmo4rx*Z?M;MeC z%ozL_k{Bu&+8AaSFEL;k!5Fa^=@^9=H5jcJ{TP!N%NV~gE-|q&$uOBP`7vcMH82e^ zZ86<3gE8YVvoOmrn=pGYCoxwr4>0er2(aj|c(J6hKv*VN4p=@|QCR6%C0LDEy;##& z8(3%9*w~cVoY)fB8rY`Tj@SX%@z}Z8AF#h*k7KW4p8|nEY9KFA4yX;Z26_UcfbW1+ zz|X)5;0Evl=MfGgjxdfIjv09w(k0o&laCUMOBBUJYI^-Xh-dqeqWe9!WjYeFS~<=27OOkB^@6pq!wa;0M74AsL|nA&Ah9FoZCh zu!(SjaGwa5h@D7@=sA%;Q94mQ(HPNhVq9VlVijU*;$Y%z;uhjr;!_eb5+M?85*Lzq zk_wVRk}XmoDF>-4sU2wqX%T5R=^7aZ87r9znJrm3Sut5J*#tzvyqbKJ z{D6X#LX^UY!j~eOqMc%y5`&V15=7}tnM7GfIYW8%nEtWSWBbQ3k82)JJU*wQrBbA_ zr;4TeKs8NuMa@L5O6^3QLfuTgM1x7gL!(RMLz73-OY@tSoK}X`mNu5Qj&`07osNf2 zk1l|&i0&)hDLn(dI=vhHJNj<=-wc!tiVThn2!;-ZZALOic}6HBg7Gus4ig2F5|cAi zCQ}d70W%%52D2A)0rM#HH47(;Axjv`2bLvPJXT58m#hfZF4hA!Mm9~hK(2j2rLvP)GBl&%p+_ooGm;hLLj0h5+Z^UITYm;wHM73of9Jy z(-eyq>k_*amk@`E*NAURut~g-$dQhE^4uBxoS0Q1GGWfsoG0A zoI370pLDTxb#$|Jf9VP71?u(dlj&ROSLmM^C>tahEEsYbdKq>Z5gAz+l^dNKKQ)FM zFPjLO1epw*(wIU`QD#6hBeN2-Q*%}GH1iD$F^edR8B0z}U(3PgG|!!%w_6ceSzFb= zzd~McGphP4q>-#FJ}+8-+U?e68>__LCzu7Vf&TB ztMpgDp(@ZU=%J&AW4`0LleSZ-)4j8?^9L6kmlrNAuB5I`u05|AUi-ctcjI-7a$9zn zc29FZfI(m-9%vqx9w<-phh*xj7nfJ0*NV5iceeM1kC9KkFNv?K?^iz_zZkzwe>Hz( z0A_$~Kvy7hU})e#-s)oO&-~;7{xQ~F3 zULSXAU)0XjLF&5dCF^S%*c);h$r@vu(3Hf z_xJY;02Kf>CKfgpCN?$}HV}x7gGY>qhl`6xPDq4L{Ft1I>M=PbB@I10BMmJp9VI0b z9}_DFCpQl_H6#BMey%6%T-;oLJ3)JRuHoU}k>TNyanVrHaQ#1*`!4_z95gb(A_f`> z0G$L4g9Poq2SE3b(_sBw2mPyHp<`fT1JQ5*548|t02&4cIyw*o2Z#m4zO<|#9VWOjB{PpLrDH2jw-{Dmn=U2|xi*=oy?r=W;eLSGeo2)Wee?%Tvjz`Kf>{&g*W{ zXQFj}>vu=BP|en*JcR>*Gv&BCyTV||0Y?!YguUutR2MAins>J_(**u5c_--3 zuK*n$_&U&m(B%~qh~20qT<|s@iKe6jDaxn8<_jb2zK>k2)0Jw|$34ql>g-(?o>zDK z=@{?{9#BL(pj{?ym}1P0t~qW0%4l1e5QyaD2JPgd>wut1EZOy4{<3r2iZ&vl%!)pf z>uX#cZ%N|Qhm#RgD$VBR_5vdG>DWVNUE=3c->P!lpT!OOAM23GZSY@V zHw$(6P>b>Qz+b2MuVi*QcgW!hV6RLjds!YIyJdk2HKE=}w4^L`+_taJ%99SqT5m?Ajb9w94^(+SN2A`@0fOa>XHKFqv-+Ql{`L0IP=kZ?nOBVCdmk+07P zzVlG3SnIU5A4=}ro3Zt-sjoRWzoZxpA_VM>8XjmYr{yZa{5HGUXvn&RLLa~DzN9^I`l(UlLhw7BFm(3F+r|gU;l94 z56`VmCF^}gkHI{veSv4t-mgJ}c&nT-kNODxNOBLGF8_$$T80(sXQL$9ypV*|sdYxr zx&P1t0zTcY!jml^^zd^I(H_a&-O%aET4tV3phu+bHb!%ekSgTkEL}Eb_^hB9f1lux zpzP*EG9pohiH-W5u5qIB?3kSffkalbn$Z z*71!}j|5^TZ;gnRW;AKZofYB9H1=S=^?jOeZ?7dS?skXWKm#%e5 zkA1Q77p*z>fY{*$GJnnEd1>lKFpsW5ROSn~UnLV`q`DV9p$V_=>xwpc{Drtv7p)KU zpLq)AwvC%?Jd;@lM!6x$<7fCMA_Os4*=2CIZ&=+O652fV5P6$dLm%YG8Kmo>G$9(# z#puHpORPC;e}nu^8tY@%(NWR4&T2>#6=N+zZ*zm8^?p0^$n0Xj^bGIpwR6V4RP1jXxec?B=-8S^Ex@mxFrSsP1?*wMYi}+r79q znlisl)wLl?T@HVUSLW5{>m&-#v0PUPcu+>^M#0CKT@H>tXdU`#iDjWz4gGw0xWhR4 zHsgDPFTgF*#xwEheQWNUWBpTEqvc-Whh%!W#X|2eIkzC9eR`9j>uzXY%-s^n)^z(; ztNh`g9AR6^K1B;KOJ2vP5u|yfgygvUG8eXKg1u8p-kx*mSF+9R%y|AD%cbW!LcKYg z6np|Ne@L=E^qG82Lv3`X{9@ER2Eg8k(WN6a{KMzmuxu&?Y)};1E`CjDk=bmCMu^&u zC7+MQa1BM|{C@J0aH+3)!aai{sE3_=5t6e+k1=N_O}V_T$FCkw z9V0JI?QVCv)!z?LyBV?1x21E{P-EVX^P6p3i4zCULmO^;&KaM1Pt@>QFt&2Zt52R4 z7}p=2Ti*ki0=WgkLb890+5gl=I|FvbtsC6EQ`{zwSg0CF40O^xpQ(nQ>MFdj5?NS1kIo>wXd7m1)5y!0ZxznX~Yt*3O+Ry-fl6ZL-eQtqRLftXmildoD znp_5=%goAITx%`ZqO*F)nA~1VC|?D;!QmGeQf}FVoblrG1mTgAASB6Q%2EBCGc7;K z60?r_i9Bi!zV8-cKmEj*yUk!VT7IY3(@|y_el!W3FCnWjiT*smaXWc{WQ5V&<;0jV zMM6o=Rk^RjmF@w3q^-AH9XpPE@6Yn$7qg3koRp>t6i*%CO_k|TseNnT-;1yKe3*9_ zof~)BkWHETQ2m4gOkz^C%gR#=L|vj|R0h5B#W$bcCWrGNGnOXx@{Cdp?9zVu>QPKicZIP|v6XWv8^*YLkbO=M9u}$6`vk z5~lj8QC`-X6d1AZ44^NfJSP_me%Mwoc$VwdvG)ebAmHQxBah9T^XYlAxlvTq4UkCV z_s7LDIJ1VJBp$gE6_EZk*l-QGK7@4OG~#woW$s{v_vhNOeo7Yj6=L4x$1iHz&79vt zS?&2DYwz}C5_%o8FP~hAcTt^uld5cySbWRnfAL|)HUA4E9^}3KWk;8@`CQ7m`aemM z@0ruF)QADcrKo*XOAfnZIo6Rtx{~B>ozbzkK1H2t)iw~Gq_nGtFt90f)&G*kjJb^t zHjYhr>7}l8$tF`OUf;hlglM7Ho(~%LZcHnwKITs$eRR$_kv>(B96G4h%wHX{?DcMF zX$1UBbXX+!$xxG{8vffYm{?1sTH@#vWJ?aI;dX3Wm3}Fm{Ii`jcRfh0TBw`jT8NFg z`&Fd$bt1p4g$j?Z!f0Kf4Gj6DS6ruU^G*Zz^cN6_~u#zr@ zteESB7Jq}a@06{iGO6!kwSv$fJTHUoupGqRRjA1Qhr!%n$5n4w7>UzGrFsug3vO{p zEN14fQzupSv(5YdXE7MNd?uq3Ylvily<>jPYzzmDdgGRdip5Wsj2(%4wY@n!8ozo; z&X)IOqYCikJ!!?;+9NeDO|N&nbMeQ;sV`gv)F2$-V>+x-l zxCT3iX(_i6rStd;_k1)$CE6zMMQcJcL>E2`hfVy#xitGCg}3sH*Wsy!@c3v&8ne~Q zTm7?|VR7me5MF_F|k`tAg14^>)eRIoVz;58ue0v*KOP{3 zst0#1o{V>r7dnSQXGy^!xe%}y6e+M_7Au@8vODuuEpt*@;8%5tmR=7683-Mu19cwJ8ZuJkzth*d zrVYjwPc6CIU^oi)tK3gYcqwT8L9mJ}u}Tvmdk;txDG)vv+Lkf-6*PHJ+&*BHlCVXQ z|GThbk0x)~Jm|^Nz#j2tS7sa}>~j2c@;l9^9v2+*Ivq*LOM=>VtJ;7D534DXlP;?Q zGuM8W)u|tp#(N3LloJMsh6Zj`SyonAa|fw@W?ik0*cyH}Jn>j$Yx(0*_bW;lyqY3# zkIK6>r-VjAItI3~;=TQfM)@L6N3b#&CTs0j zw9OHRk+#$W0}HM7Z1a9%FU~qs9b+!LlTsPuX1*eK& zh377JZ*CPl&K|QU*iMn5rfP;II3Taw_7Gv@>KSR8x*Ps$*A&}TvRzg!wTp~~-Rhs* z`M6|N9L-t1+z*jF8pl5>ySO1n5Rp_j_r7(U2|9j_7m@Ws?ugwA_hmDk)qWhR2ipIs z6m`An+eVJx128Gt6b5x_eguJnf9ZS5h3*<^MTXZ{t-ilKRFf6PJ&NP_q#%~{KWTf* zEDbVk?mxNne8`p+!0bQ9c4rmt0TzK=0^!K79bNo?yrfNMiKd-S+_Dw22X1qJv8)%8KLdN?%3`;|~vts1|kYd%(<~ zk!H1f|M&No^hA#Apl`ErbR+D-<~KU_)$AokZY4`5gLLxwqph*0D?G4R3p&HrU|1@; zXH4-QO5`Y^%yK1EzJ~vl$-2W8uaxZQ4L-dG{HVANYdQTbv3VMXUwL}@ykWwA z-)=B}9e(pInEY`I;Z1zZ_*I9KwET#4DJpSxJN;42rDVrW!sEx7Q(Dis>Yl5_KFbZ~ zW;9u?o(FM@JnGwSnTWHb3VFI@=rVbZ>oJjGAB~P@F&1o)@4b0Y<{CsncR9evn5!&` zn)rD{(-7J2>Y|+pEWWF2D88i-gaJQ?1Q|>%4D!7%oL3)iP)lHTJ;fo#;odcxGi5rr z`=c+Nx$X>=Xl1G`v1vWB@N-3>*U`G5agE6)V-rYx4Fa|Xb@xe|HeHJ-vg6R=#d$Zg zg9Pxx&oo9`4ItGmIU9Ja?>4m})zYa3^))w0Nvw(9e2q3Z2G1d1DUOu`^iThM920cu z`lBK~!VQa|U`mJ6D;t1-n8bm>9}=&1Vc!dqV?7eVB?TVyS+QGQTn14HxSsHop+!|7JEz_+Aq{R)%hIu@q zBb-)Fl>+Z4%#6lydC2A=zfbM0vC~n7qzi43rlF{#0+2Hibfrr<6(s|c z?Ug>Fj;iT%h@5pRTU+FrTzSU>HPtHu3{7{xDFnzc+&BP7>zg;SCe|~2+EtQX>mT8% z;|#K`$v4X8m|c>yOkVJs`TM=2*c~|-hGrOclBCn>g==0U=bieVf_3}m$nER>ct4DV`w~)B4=2dF#^5SxI44=Ym0JyuvxpHrf4iSI zg`D}31askEq>?4X%uNc5PN5wKF*TPd2$<`=cauKSiJ=n$Bm54@E|+PX0>t~+re@?f z1dYGj<7!4Nm}N#qvh!+>>qtu72(?=lscZ6eAZeQY_YK_pe*PY-0S~3@>e4z#y59q+ ziT>aTEyr5Czk8VVzTdID(my9%yk(J(H{OX)vP$4S;(hIiYiaoITyQyr$8ifJV1EX% zw7hJG+A92f_R4mEZhBaC_x1AV=X5SLxp_v-gaL7mM%(>Up2i<4u~5*XwO3URujzaY zPlwd7jMI`@JU^ctqU}bGQZ)T!_AV`MIPk(0t?g1L?hoz18iCMgrd{y*nDT$E9Y%CL zaseTlb;4kJxNLac@Sb@Ynh;gIhWzipZ|7|}lCVWm~^BB7WkiYS-ScF5F`0jQ;6e z3p-EmjN-NOyKkxTC6Dv(G&%PfBe4d~_g-`)P9Fyyu0v0QdW<@{h9&b~ChV8Rr7VY> zAp2$(5*Mt@*`K;2E)3&>O;c9K_2Pq9d}o79rDs{3p-7=QH6yxTHOH|n?3pV$H+Ds0 z9k^z$L8E$WEbFTj)O{IKn8kz?c4Qa(j%ia0YnpBeyk>DD@KN*it9t-OjX!7Op#YCj zT?0WEA|)B;&m372Po?HYMume`r>00b%Z|7my$p8Hkf<_^dmlBf3(uF|8&B>27)`M= z7~yr;**6u+bu9^fkB}cu88eL9Jm33wV;yg+xx zEc~VsWfUKgj3YUExyqOz$UU+`kY=L4gY%}?ioG{yQoAmBVv)y>4v&8?J_-Nmq^!c< z2p1~BncP>HUY0Ido2^UOx@lG%nl~`#(Cu+)kp6Kh+fG7%lDz{j=CcJQl6mm8WcYV( zPV^d4gsB>QM5FB#%|aW>(5SJE(@gM7^_1Kg6L!w@t4%?i`hmE5=cE?5EF5vhJ9|VT zYNbp~!3eTeUWrHf2MTFop6nUI*XY$v<;Dw{nB`%&7c!B*SXLKe;^sSz9K=|jWNxMV z_H7gfQ#z%H_M#V?m#&oBZH#+l9`Z#fe~H30gXN4>dAzRbmiN;uiv|t&ko2^)$VX1+ z%hlHG*db4^7ppF|C1ngNCG2DQFz+AH49c!HB2HXg7N$R`4=G$JY^i!7wa=?)bF%iS znx9Sm-pL$pX>_-U=a(P#XqEH@;U3Iqo8?NG4=M&V0$_I{${t|V$?p2-oL{?9_ zy1=c-1JYT=m?$aAS)mT*j3oaqpkgd;ErL~oh|1r?EZz?akA|X~Cag^2RSQ zxSD|vhexvQEvv6&*_PG_@Vzt8$wEMGB7w;ujF@JfKlyfl?g0&1!_gd{mPq-VkfxiU z{LM%|pFu3^j0a{%u^TmXl{sYLV;Y1qDHe!yke1k}b~M$lr%B z1@VB41D$c^7S{A%@4?G`Am@Yp0vke?I^R20c$rvPsfN`0lgoGvpwMS_sO;6mJ3cDHH ze9uGc^fUbj{fJtw zp7K+DNKw32OVCns`J%U4wI~qMd1o-)#qq#COg)N{JsRae+yoZ;!HkHqp0mZ*5zC>= z;?>e5Jx@F`^pAOwbNvE2TJ!v1dL%Uwk)EN^bMm3rzJgOyUXyWkZ*4#>t{`VVZh1R= z|7kOyJkNzB95@mPvd%D1OAN};Dj;*2un{iRHYz2FD6?&?FoYox#f}$VCatbnfkJaY z;&+U82KduSfCQ;>0plPqfj`U}0eYQ#Y%nZyyq$e+HPMrs9L=gmgP*mwbxz-#0)97@ zA_eAWy&(MwR4z!g7GS?);NDbuDTAB3)M}A-3v4{=So^vE3&%a~82qLetzDEy{TPlw zS;e4&n{s$_IUbF%dxbk}5aD>f2Hxhdc+0p#zt`9#!~UFN)G$08VdYU>xZwW!T4zw9 z$u4L`$CE$!B_k>%wf&r^E31V)cm{K8>uw;KD719?oOnLqk!T&h#>F88HHFnC&w@L4{EX_&g9hr6H{Yn2t*(}P6TWTGcLn=+ZwZVlnCdUWo+DBp0$p`^Ek z8M^ZgRWGJKo~RYdFiUzp6D=jnS+M}z;EdQCl&t9XW=&P>mXsdQ+Hyzb6>p>ww1sY{ z6BV$)(Y2a;%?FKWSII@#Kkf;=mSnAdL#?Mo)u*&S=0$K7)0hxOPq&S5bo%y=oz94> z_`SnDK&R~mn;)m_(~D)_=}+bk5;YdA@<-cBe(oFh0Blu~kGG95>f|t5z3iV^C=m7e zn*3F}URKFLtZv1QEgMQ!Cp4A2j<^Bwo`}vsFMw2KRy4&dUCHEnT4S4d>K<^I(he2C zhAf7)9^A}3{3%Hjbi4jgtTY~bDVo&qYHHo384Xl%TL8NwIw}z$k@=;{FyfJ_V9*WO zukI`SxaN#h-{Oq;&HGw8o@Cf@*7RfG)6;KNTax#HC#)g5&uUI~LNK6JWgk*O+wu}v z6}@Z>3|Qqg%!^fF@)SucM?XN1|EzTjX4MyGUX>R0?`4<-8Fq&v)xGKw6m0SNtQ(s~ zo4R1hzO4`Tk7>3GQ^->&a)OsDqSa6gTUU>0T<-zpw$J5Nf8ptja}P3=Ehi1Nn!l5- zjf?5iNqi@w^({S@KV)3u+9IvGp8-Vy5_|)XTz>KX9N+dQxN1jPH@~l&BNdS`8082F z5FgQXZ|;P?dMT4@t^^*`bFZu4G;2B))7MMoK}pDwSirq3!(4NwXSU8s^BT7ZIwZB` zIMZOwBj92r1Fdu=byLyfArqFg;Q5e0ctzjFZyq+pw0}o;tX$|nW*eLTVo9H4&X&Zg zUAfQHc$RKFo$2f!n^X>?Bc0O^{)SN;0S92TtyY;IeGQ?~9yZyBv=zz-k%D!iNlvw; zTj5dzEfOs{pCI_=cBo%&Q3f9@6Q^my5g+5`3)4+^Ap2Po{0i6xPl=qL8il{rzV4h( zd~SP8>#M)d-*{Ct#N5<+l=tr1>fj}+b%FGQopwVlYUh$)UXeZt>9AuV_pTbb#_I_{ zIr>ohir+l`?&$$e3C{=1>-SatCXxxXPOs)H5y(o>9BPkdGE>`5%o`p{5;-N?{CaMi zYgu5ku~XTZ?;e~{k|Ec^;qNF9TQ+6C#$)~+Nz)p6G|N#Su7dz;YGf-Z$6Tq!$?~q+lN0|7+ zo2q_vhs7yBY@Zu0B?p`=Sa)hrEM<)K_pF$yer+;jG*~TQpx4C+9^oNCsF!*wasHT; zHzlD?CH1t|pie5*5RB$k_7HX#sN~57Ef6M8EA?Vr(@nnv+K?QRRdy zCUGVzSc`N(RW72sCc#UF@mtN*aEz|WW0cK9AUBVI3>}I!xu6v$dUeow;EFAXb z0=+s+ZR5;LrL^m*X2dPw?!~iOV6PXaLy#75aKC4L+t3Gm)FeD>P2B{hu@O6ZC`fX& zwxPE>^;@C%h9wPp$5TI?^r+Tmc2>xjM%r<Z#q;0lXPZ6Ck37VS z;YYUKf+xoIn%h;?zd3B$!&gJ>WFF?z%odK|iO=KPxA|OtJjIp!yz|!(-c4fLwH^aY zh}&|IHg_cZdgz>qkv6lDi&42~d=k}_`xuOV%-|z~-#C4_o`s^KUcWU%c-u@4m+Y@+ zoA&GpT!oHOHF9WoBJhWVdB8iNSm>hebs4aOH23k`BQR8WC$`|K*;ZfEWADugWzMXsg*o)VtCqUq{&ywNI^e`bc0bvY7;R2+N6ulj zU&OfXJ?sskUsLtW`b9KPSUbuKbLMi19Bn2`H!Lb;B7LBFbdO>4KCTv2EUgy8S_$-*pYj3Zf zV*CtU6fz7H=a$m^9QuQqZK`D^8#cxVFwu#DQ9hO9#h>vj?!pD-B(x+i@jXA3Bpg5c#3St?u=r>Y z;96|kpgUY!;c3e4ig#3qMEyc!W?V! z3SW7*yM=%$gIq$}fdv(Mcd57)70p5oUP z%d&8B>>4$p*hz{A`>As24+iTCm(=Fv8iUmG7_GSowG?VpWvd0V((CPE_*c)X>Ymce zNto0@fOd%`Oq4Lu-#`>tb7Wwb&=TV5Zy zK|)vK=pY$Q(Sx+Nw4z-9GnVI6P);W{Hx@qEc0xTt>g-?L&Mb9FXet0ATv$p57&xSj zu%Y{!o6`Dng@^WN+W%0e5N_#oOsB)m-_xza( z+G)Rj+#QtW9xU3W2Sy~kHBu!e$v20wHKb4BWsgzHgx&*Iqxs};5Bu@dR`W#D*b+xE67llf?Z6t~O5`nR^WQV&gV_Ga2N-pnKg!?=gJ zBeRnijuMcLB|3USKLA1b&H1r2RM)dTO*0a0&ygJ}SCsd{Z?aM@pmAzE(N^`vNqS*c zQwl+xh}%Mw=38n#%fy-nQi(m7{FVI(RJUY9jXH=#4M71~Ev`L6-|`n5hCF98;lyfj zPKKX0t_|=jfEdhQCz;7JdOqaGFq7BsUAHPcptA4o0U*t{{_|UJ@~ZepKXP`zby(9i zFnc-PZqM(@(sc#9b;~bw9$yMba7-?lDmsZJ)jlcT1`TmP@lBxdtl?y|DLmZAcW&rYP- z@?$kz&@9r?d=qjqftWiP{h4N`Ce6u}m%B=lHXEh+Mlk`sfH+^Xr9edD)NkC z1NIrhs@F$Z(kRL>#%7WuDB;>pFhVscJSs}9GWe@E>_s^cOC~6Vq@we48*aNJTq3sA zOMNpJYoLtC_${w#s)GKr4of6OPg5TkH03+kK-;?bn8)3*-$xk8Y_w&qs!GAJSo{@D z-_X;`8SGBLgFYWSgKl8X*-%*9J&zF)78qEmr$3CaLG^{$V9~Mtd`=Kvlpx|z3*9!p zMtJM@k?&Y|F{_p&}qN_*os#)HN>2-Rj|7vRQ_2|bOj#;zkjkRoYl0uv_!^8PSN^SWXVzB0WBDCc0b zsr#dohk>MI2w%QUtS|-Qps{xM&!iW;$aZZRZiYO4yN0CzQZTe_BiVdbjx!w|aS?LP z!YAEd>7k;ThdA`A%jVWuPf0Y)hXQe-LBduEqI-*X5dGxU1m2giYl`g8hmh46jcL3M z>aAG?719uj(zhHg`VB-43q{%DNL2sZCkEejJXqV%eKe)X$)6kK$&k}6Y_|w+)4%nW z*kJ#b_GQJduznD9SH${LN#CGgdy86gDj-tFE|^Bql)Rga=V`g zr?I%WTN`KmMw9}x5{NPoys1kWX3qA)c4`ViNose;cQX$!rD!$Jc8L_w*!p#rht-4> z-pO90l8wQxX5W4(fV{|5_;~*Gyfb7nnUl_|jo$ookPHoZX$^Pcq0H-UV}vv;KBRP) zXK#LB46I$h_~c{F{*x!_U#7tallsOUB?s4yR-H?azcL=?#+PgrzB?k9Vj$)jK?t9E zON~*KM{d-7Ub_cu3G*Uds_piXWp^PL)nw$`G7}^-qmTDRBP5GLmtVaBZD^>*6_&-I zJnM_+%#^=zuy>{YAZrJH%%>6y&OVimxeD8$nOJ+3RBFTk30=n9;AMVFR8_ngJq+w? zad^_)Kuy zXITCLHzBa)SuR(IwE0UO{Z%I;f{P3r|c(|%t_L7b?!Kpdz=6oJ^PxM|g z^F0eHv3!PT+L?Fh2}6A9Dnx%H^G0zDDJ?ve`el$$JW}+hQEE>Od)Wr~Q1tZUIA}@z zpcrG5l2k7_04zx!!S2ZB7T(Cg#%f0wA-UQ{$_0e$#CZC$zk(`tm>irI#Rzed9+vYZ zCPuEvBe+_3CN}ME1?a+4_A4NhW~MveE3qmjNw&zpHAj2Vo*_R?H)ZZxCl+8d7=(Yl z)G0Zc>ZaBsY{V7oGIc1bo`CmuZh=g|jVlq` zls;7Am1G0@Bh|jUIY8M@Un(fre%PT@2iTf|z}g@IjS$@!5o2m?4eMr&7ian@LzN?K z8`({oeh*vS8kAe!{Isyfk5|M#^L(B<3W{W z$48(Ql!*CN;;fil4GmE1tN^xkq`$2p(CIEr>fV9Yc@tAdD_d|9hW?3X?C^Q`=x))mi%aMvXPme=Z|+1i8OvjF zoMdt+ImL5JX=cR}QQ4CdAeTPNv%Jlk43^YyP9mLIZ0jv?UR}v6AV|MnmbER4q@d_T{IJg$q6-#%b--w^$I8R@X3%1JVu~f1yavhn z$)jB!g4;ng-9eJgmgdeE5y`cF5KmKP0?N4D0uRU+{hAQT~`4t~W0I@NPW!0H1HKad_P$q`o}*Q z5M^*YETs%!;E^myr(?bt&N4u!TbAc8tm6->{>&mdBmgmA+ren=$k{;Je`L>#+Jvc) zNJ~r>eNf3EK(eiS$HHOmJ5D^?n|$*P^EpKaQ4RP3L4`D~vAD1mp;a8P$5dT@aUl;c zl#5;B^A(=~QYKapN&hf{O&4m>ApsRF?>G7+*G|ja;)!wQR-4!hi)mlutS>q)%zR6? zV)PK0IGZ~MTKKEe3av?hJnRHz7Q%2D49AuX;+YE>TiTt}^wVDgXJYM#2l#rGiD@)2 z7#b@%vNzjuS;_+KbOIuj1Qx$D zS2j5W2&!xQJKr=)ZVw&|YmB9te=MzN&9H|*dbb@V6UoVn`HAW>Nnhy+d8rhcUSKX9s=kiUG1l@%9-!O*do>@ zrfC}%oZi`X&nOKYi-3b;~Iy6a9Gwk{st12nOiBpe%rsElN!gi<|YtjMR?+ z)|0@tOUpiw*hWivR*ejbepCcM{P)WT{T0qKbTbhhrN1$nPD?o;2`(9qravZEyaEflUN95O!0mY7_zvA&7**uJW~4W zM5*e&;J`>DRCPI2Z!EZT5-9jowCwk%&*>NqvL`XF$mzp`)MTMBAMA4N&~NJ)6{}4f z-*~H5jE&IW7_+8o7w|pJS=bwjEG66~Hx1$+(D^vZw zaghX3qAUrbmHaM4^VQ9B2kKC~@I!5X$gsR4>BN`C2_m>9r!ByPO=T+35InelPGh)I zqP?EfxgSEJEVA1zDE-G$M&W&coe^ckXC5>DN$da%g7+;S4|KsI8_hwErUr(rdHuk( z8Lf#OOJwVlG=;IZB%4dd@ytRXeZuv9N+`3?6uv|ji%epFNCMg;h6Y8S)?|oyM8+46 zPA?5t(Lonro_=5uSOqfl?oz%KGJ$(2J>Xpg~jC9NchO0-5sSQlPE=$k$$>&F|YV zVNcIf@Un(rM=2vW7ORvlU_&t=v?w7mcg*w^n=s!&yk|K;@_)PmvbbG}0!+L4F^laM( zR_~wYQe&LN1BrJieiWnQrD}bEm}$bIFBIN>0uAN-EQEfTE#eB|-9BAxxc12`=YbKO zzb6=Wcz13fK|D zv0uGA9RYoCN(jEydi+!7iDv|9P9%CDPBkl>s!=k7_)7oOKqN`~M&D)E#fpj;SJk9HO(a#qe=LAVO} z@TGbJSa%Zh?dIpc0yZjeSdM-~BK9CSaQa8k;%6Fk8n<%DsCY5i^6q0=VA4W1y?uaTlHG2!BCg7o~p0qT6-c*xp zqZziY3XxPvA{?OZ(~>gG@@YDSZI8%e8}O(vhHq_s(v@ECSs+p^V@dojgRuf6&d z>co%Wyk%T??lw+vC-;DV6YbZJ3qw0g z+K&=*bz)^&P+0sbu zhK=n=>=TZ^Cv|GpXwl=TS@*yxV_LZBQ+MXo_w#fDY(CD~-qVgceI#OSwUp2xfhU=A zOs%M*3ccj$y4;T+7>DXyjd+}Wo}&qhkMfuwCCnDe*^HLgM&;}2d&Z+Ps{g@vu3dNB zXt&ps3@l1J{QM{_(z*Y;fWo-ilz;6&5V@m6mQQ8gNk2b986B}v9l3guwU-!?{xx}< zat31UC{=c=s7umJixeBn5`z64rjnl6&Md(6@N&+FoMu4(OK*Fl8j2eW%%gwA<_ICCG>dq$SPud#@<=UHLLv{v~cqPNgy z6h~|LGAAyv%6-aQhb20zZUBz#h4x0$6%(?!-!)hBUP4PtEBmi`%=w1p@UpaeW|Tbb zCCzJ4+V+ebxtDi`H{RzuI1^`_Kn4V+I5PC72CJi+%^Qv0=zUVt7~HgW=8XvEl0Ji? zWh_-a5MP~!>fj2@#k-x_dg~sb0s7=rLXBGdX;)8*=JPR<>wg6Q8UW>U+j61%+>_mt zRb6Ss*;kwvtx%0vkSDYQQA;Rk_uKHj^nr zjOV;iJA>KQ<0@@vd8L-t+LOYhs2miL;tfcon#@R?TwWNoHv6Oi=K%7jVX?a)gfy$bd5Sm|OQ%Y`9@;I@t!vUwKQ;A6`9wE`0+bAuD<4?qqKx<4d5>`7 zSVGc4PC*JAgHosJ5ZlTtkhLvJQnSrOlTAr1q!#nZHU#N$;<&_lPqf3kEwng7SL!?I z*iUdBXyG`h>T+45!Rfx7G}x1GV^Bs<%CYiKf!>04KI8GMtEgpaT@IW2Zudn;Z7v?` z?q&L3`!7!3<6K}b4mYxs+_d+k)fi2}T9Mh^+Ecuw=+#>=HTwH1<<`bp_#&!nv$~=G z02R%N&yeNnYj)N+hQ9lrVdFIuxbh>#HK*>^Kj;Xsd@9k9M}0-KaTDdW2e6Pi=hP)I z>bW6U_Znk+rav2CBBy}c#-EXx8dJ$i!NDZ$wG4*?@(*Auy*r952uo+SM|B|)rmw4+ z72W{82T-mOG7b+TMlTbK`9a2F(P-7qrOA!D3utlFsnxLBN<##wjtqFLBQIQI z*%d8UrOUVl*9%e9p}M}P@h4&V)^phw(h{-MGKSKAh{k+Rd8Nj}>JE^lD4x-#G02Qm zq2Em$Jqd^BOkyNN7bHHg+h`r?Cjx||qO!+EE>8&bZ%6tz9+ZNmMMHCSB!rY1F61Sl z_D3+E%=rq)ty)zd!LveyXs?j0?HOW#!mfIa^xWYQgSQ(61}0EADoUoJP-3mRqtVh{mqn=F=Mqz$r>&3+w`k2+9;X~#J3N#;f` zRx@cOI*dxx=WI^sPOj4QNc+Z_B&Hz+Li!k3uVyy(pq#ZtAm7~=ZnMEo}VEteIDpr z&a{?eS`go1Ks=`vg4#}dSnuUY$wdI$v{yrR89Ht&*H`36o~|JCPhb?ODk~K-WkY=LT?A5!!svNK>PoDg zNpmLK{dYPEDLJQ%AxhaQ#_2uAn!{G? zz2n{mOHSsUP8khLT9o-)5fI{CjuZ$WinYmGfux^e5YUd8ERYY%No^lhq1GQ>L;0U| zSLKp)6D3p_P&MPdF^@wEC2l1N1xi-H0g_EMvB@5T=wm^y$e+^}X2W-9QNq(}=Ml0u zCp?^2hj8^Zn{!{xdSk(>ZExkRQstLv6FTV%YRcem3+l|pqmL@@2pQau9zgijP2UC8 zw<4vR4VD_^-esmsh#6D!RtQP*A4DHPnpo($246DS6%9$QuW8c?yjd)A#hJAwl-=dG zz>e0yr6&q0$;TGMI2CS z0E*Rw6eFf9V-}@JRFji;KfAod;@LE}GO6=4vpf z7(_$Vqz*C_#q~k&rqoTnfM~G#LD1IuOgN_9mWLrN(BsXd9VsSer)N|U6At1l%nDMC^)6DG&ns+ z&|U4B`c1obcx6CQLehV9l0mH7X{Q_;emQL_Rs7zP2=w^eC3ItRlQ9W08gZ85E4(rBg4Z!wU>E3;wG(xF`2W_Hu%VKvZAs_ zAb@tND8AbzevFK+B)ZB9R4|~TNF&aUM)GGmk3#5Yu5-AXb_!rLxz|@JCONGMPN!cYw=@2k8 z--^=0Ge#uDOU>{pN*bTMs?y+XUC$>w9V5kDi=xDZQ+yl22? ze&R+q6-w$-)1@v;)=`U=xjqf#U7$SDTV`}t+QI(qwppxcBaUZ4`XuE*VeR$NUl7g!vbId;5OjN z=k7lm&Rv^H;cl!shLZ)9gU?>==#2)|NY zizT_WN|4H0aSB_jD8hzIc*kgt{(QY_M$&|8W^>&mD)!=3@lG2z*Wjdow6rLCYd|*+ z*xDL;_j71WT2PdilF}CD4gkpG!QZ@^(TZENX7AMVG38GPgU*nJq>faCHt{I!r+jk< z!jl&xC|GSM;XRDw?w{#Hfbu$$3X0M&c_?@qAQqq$a-bFFMrjLSJPqgQC;rh(ELcO# zKI0h-y5m6e>ef^6pwfJXGI8PHj_Cju43!g-Ny+?abilcJ8+i$NX$!^<$9xgspnPaC zA;z8H%Q8Df2LzAEk19FtEOr!2JU}(MJ@h`oHokWFqIv`8zCT% zRq_7-+f}QjDJ0)QST>^CMV|R5+jV`>hZGisJ;0wNfCfG_Mo?{K62@40W((48nr}~P zXG}AgQhR70xO>HDT2yn6CCVbGl6gfH&+iRQ)L|kw_d=vx0gq;zA@Ma0MTwSsJ=7fa z&2>vZXn&(zO`rUAYEXS1Pe$;%x}ksurMgVGevCxLmr)KsvoNI{(vBjmek%A^QDIY6 zJuj5bWBQ`k$+}e{u^F%BbN(4$c)01|Nx<=|{G8Fo;Wy2BQShXqgycv<8gJ;Ndxa6F zBqdIy6!9f#AxKhA3P|KZp(v>=G0}QnQK?w^REXWJwyuj*JDLDO)>|rR-?TBvp73iL zrJUg}PUzRAc?rkWvoswE(w3e5GZmYS)s%-aP~&OrrysqMkVzx(JiG1MYNr|pJnhASw>m_J z0>L;t8bTB@6-Y-`MLvc$*=?xa6VYDFApYBPlrtl_4J$Z$v^= zPjvwaD&kHJAe>go29SijIKyhr{{TRr%zruzD3@%BCUl7KqBd7G_fo@19MrWO4~--v zeAD(+Lg^aOZjSO?V%!^PDs1*hLJm*7PX=FfDF9Yjr_gTaA^Vp8Sl|mTffJ4MfqGJN@CSJw_5Ee|9QGz|q2JG056_ zIEKadLOTXl<+oH2d(e4;E6+S$tgUaASanBd;q_c2sdQx``4QN?a}rQe^9ulj_-E3( zUkj}n)KZTUMW5U*hg)LV2q$U(_%AqfL@9na!vBqqR#O6EvXvxFydqxD5Y zyxAwU7KU$<=jo^xrTO7RTHYAH4oI?&yQ?jlrgcwFp^Ct@{ zJ8kaGGOVz$i7CZ5xuWPa8xE?EbX2J_84aj>y1OTcbE?%TRBL2Nr%81ubjKyy>1)F*}aV`xw+WYq_<6FebyiN zFyQB8V!bOT2sZO!#NpRCTJHeveP}h@N%kU{NN?n!HV2A@H&;l9PgZr7RMi5 z91d_Cr0w1fEQbTBb+zrw$nv9*U`ati;%w3opzu2^VEEF=uzX#|eJqOuOLP;SLYt7_ z>_qjB@sXTz&y5e3I}e0eZMP)aSpnNszTn%3i;6>KMJLo$ahAQ>A5uC!DV7BEj^IE@ zvReQH00OP5U2KCw7j4xSEB(c|aba8GgOwG4ufUTIcVG|nsmQd+~JE~eb#H*_~DaLc@OK|KARn6rj@jRk2xXlI>ka8}Fmo^k>VGR)b zVa?qj@1E+BMp)Qqn1LE)f7~V&Q zaoA31fMsyj`OC_{@D$xSrAs8c0kYPMI?ci$kzu@wzxqV2Q=Bdq0w7|nO{`* z640d}juV4}iiM^~bxyQY=m;r6B%p1!+h=cuEy5#>03_|i2+qS8{&cqx`Hb;PZ#Ny% z%E2Lg7z)A0*yrI+N%98Q15P>BIHWk0C22Syjlrdy3j%ud`O?&dgW~En70=Y zq`4Syp+g0-at$(;QXO9nlf}v5^x-3m?o_*#uuZn=M_?BUEsZ!_PYL2Dl{rfTTyxZc zCh+Uzg~UloB=DW_O>A;Rr0V<18tRhc;l2*5hpaf@#yEX3Ln6REtD>973b3-mtCVnB|>iW~s+yX%_oTNcdQW z$x?7Z2>{jKDmcSNY_6)y^BMl7ya9Nc-?Ok4$AYz>EYwahg3}d*Xxq|r^-FR_p0qc2 zP*bUlq<4;>QH?bBLb#l1tZ6G6?iHDhEJMaNH2Fj?Zu&o6HtRbzgoUAhTab>$G> zWxpKfG`C>c4k8i;>Li*f2pXBiuz}r62wIqf9C%RD9Yanulx=~U7z$+A+L}~rV^-r9 z6YnsS|qVTWz9JG8<0{N4lY*jXM(D=U(A^a&ATv3e|*>+2R>Et4T7Hn&?huJIYcS zOy+}!7(s03damwbo(tdj`RLZ#EUM`8{PRR6bYN6Db!Q_r1HE6`$NvE1-aY7%1EUL* zQG#C7Fj-I}@GXTXk9{S3{{ZEUb}e-fzK-u{T9TWTHKcM_Xn<(`Gyed~58xkJAAex4 zt@cwcBFB#gD66&A1Mm;~kaMHhOuG--f>K;6BP5*FYB5P{YFjlQEgIRW|ne-Ulmlek=;DCzE=NG)H4v(za;vMqsXh3cx_GF=x#8<(>rDK+VrDf@QoSCZ`<_b72mMvLpR5Y&V7EFm5 z!CNkrr2CCBrFBnfA8HdIuoBy}xBM*tvTo_x6+CIo69L zrAN!(C1Tg6WUlJrd^ExWvI-IoX^K$KC7D)fJSNQ<4w!6!mfv@UJ=htkyy&i`W1}g& z;|5Kr?b7F7Tz!}-PgtzsN(B6BysE^p8f{?|TaF%(@gr_LW5XL(%_!-DiGyBx>PlZA z_Rq^Y-sgiKpLIPEF~T|1fG2}AgmEZJxnTNI0m!jZ{hs4Ht!xC!ZIIS`L}6X5cn!ZA zk}=I0Pvw7*N#b#j!y@$vJ;I>DAdt#a$O>2vPL$FR*&Fhp6Pz@JaPm0MxKa_^;C&PC z+JKILPCk#k(h#75^_BP!>q`O%zX%3qyK-bL=wv zOog=K0@9$NxIOid>Zmss_eRf`uM$gUO>V<*N_ayn{{X3A3UauQayLQt75$x@=m_?F zkT={BO?6Z1Oycp35+GV9Hpoh$xJW(3VyahBsPm|ricEED!K6XUR$awFi|B z=$p)!_OaALo44%ueG1b~@?rhJ^JV?4`BvG5ME;Lg{p0%4^5Ol!^CkVPm;JnaoCq;_ z_YqI>i2UY!opm8;+5-f6D1WZ{PL>3#Wccfck~X)s#5ejvo8>XyaJB2nJA}e#Jhxcd zmz5xSq$jn!q_*pV4051_W0uDoAI_f&Ny$a^Xl&~>7T04iXl0~~=O>+X-A-w654XA2 zu2Y@Lb8k-SY#wsQNR)P`4LGEQq@_fJorxUrlp1w1k#>ltSL2aD|>Xw)Nyt>>~;nK zVVo2H01ZFVp;CRvxURw@Lyoy178}O<1cBY?9kN5X;}i> z;YL#`Dq*!1WRga5c#S#EUC7i|W4B0AT7vT1VYH|=NFg-)SvOiK_Ze{%sY$NIMI?rt z$8aQi;<_eagY2K-m-qhwl}As3)8w9NL5D{=LL*$xAiIw*jW&MP81i0ZMrFQ=VLXP? zmzLtvrH*6{91QqY)nEQRqti+#L+Yt@%P3hORwHJx zT_hu&^n@z_9jORYe8;UImhBYVZhJ^^v@BsKw2*vjGsK%tEqt0b8|qKsur(cmH({QC z@W=G5w element. */ +// Global variable +var TABLE_LIST; +// Utility functionality +function readCookie(name) { + var nameEQ = name + "="; + var ca = document.cookie.split(';'); + for (var i = 0; i < ca.length; i++) { + var c = ca[i]; + while (c.charAt(0) == ' ') c = c.substring(1, c.length); + if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); + } + return null; +} + +function eraseCookie(name) { + // createCookie(name, "", -1); + document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 UTC;"; +} // Alert display function setVisible(id) { @@ -22,7 +40,7 @@ function showAlert() { } function presentAlert(style, message) { - let alert = document.getElementById("globalAlert"); + var alert = document.getElementById("globalAlert"); showAlert(); alert.innerHTML = message; alert.className = "alert " + style; @@ -30,28 +48,53 @@ function presentAlert(style, message) { } // View +function showDHLogin() { + // Clear out old elements + var div = document.getElementById("dh-login"); + while (div.hasChildNodes()) { + div.removeChild(div.lastChild); + } + + // Show the DataHub login button if required + var token = readCookie("oauth_token"); + if (token == null) { + // Write form + var link = document.createElement("a"); + link.setAttribute("href", "/auth"); + var button = document.createElement("button"); + button.setAttribute("class", "btn btn-default"); + button.textContent = "Log in to DataHub"; + div.appendChild(link); + link.appendChild(button); + } else { + // Set connection and display success + startDH(token); + div.textContent = "Logged in to DataHub!" + } +} + function updateTable(table, target) { // Extract columns - let columns = []; - for (let key in table) { + var columns = []; + for (var key in table) { if (table.hasOwnProperty(key)) { columns.push(key); } } // Build data - let size = table[columns[0]].length; - let data = []; - for (let i = 0; i < size; i++) { - let row = []; - for (let key of columns) { + var size = table[columns[0]].length; + var data = []; + for (var i = 0; i < size; i++) { + var row = []; + for (var key of columns) { row.push(table[key][i]); } data.push(row); } // Reshape columns - let stupidColumns = []; - for (let name of columns) { + var stupidColumns = []; + for (var name of columns) { stupidColumns.push({"title": name}); } @@ -62,27 +105,27 @@ function updateTable(table, target) { } function createPipelineForm(pipelines) { - let form = document.getElementById("pipeline-form"); + var form = document.getElementById("pipeline-form"); - let group = document.createElement("div"); + var group = document.createElement("div"); group.setAttribute("class", "form-group"); form.appendChild(group); - let select = document.createElement("select"); + var select = document.createElement("select"); select.setAttribute("id", "pipelineChoice"); select.setAttribute("class", "form-control"); group.appendChild(select); - for (let name in pipelines) { + for (var name in pipelines) { if (pipelines.hasOwnProperty(name)) { - let option = document.createElement("option"); + var option = document.createElement("option"); option.textContent = name + " - " + pipelines[name]; option.setAttribute("value", name); select.appendChild(option); } } - let submitButton = document.createElement("button"); + var submitButton = document.createElement("button"); submitButton.setAttribute("type", "submit"); submitButton.setAttribute("class", "btn btn-default"); submitButton.textContent = "Set pipeline"; @@ -90,34 +133,34 @@ function createPipelineForm(pipelines) { } function createFilteringForm(ratings) { - let form = document.getElementById("filter-form"); + var form = document.getElementById("filter-form"); - for (let name in ratings) { + for (var name in ratings) { if (ratings.hasOwnProperty(name)) { - let group = document.createElement("div"); + var group = document.createElement("div"); group.setAttribute("class", "form-group"); form.appendChild(group); - let label = document.createElement("label"); + var label = document.createElement("label"); label.setAttribute("for", name + "FilterChoice"); label.textContent = name; group.appendChild(label); - let select = document.createElement("select"); + var select = document.createElement("select"); select.setAttribute("id", name + "FilterChoice"); select.setAttribute("column", name); select.setAttribute("class", "form-control"); group.appendChild(select); - let ignore = document.createElement("option"); + var ignore = document.createElement("option"); ignore.textContent = "Ignore column"; ignore.setAttribute("value", "ignore"); select.appendChild(ignore); - let best = ""; + var best = ""; // Tresholded - let bestVal = 0.3; - for (let cls in ratings[name]) { + var bestVal = 0.3; + for (var cls in ratings[name]) { if (ratings[name].hasOwnProperty(cls)) { if (ratings[name][cls] > bestVal) { best = cls; @@ -125,11 +168,10 @@ function createFilteringForm(ratings) { } } } - console.log(best); - for (let cls in ratings[name]) { + for (var cls in ratings[name]) { if (ratings[name].hasOwnProperty(cls)) { - let option = document.createElement("option"); + var option = document.createElement("option"); option.textContent = cls + " - " + ratings[name][cls]; option.setAttribute("value", cls); if (cls === best) { @@ -142,7 +184,7 @@ function createFilteringForm(ratings) { } } - let submitButton = document.createElement("button"); + var submitButton = document.createElement("button"); submitButton.setAttribute("type", "submit"); submitButton.setAttribute("class", "btn btn-default"); submitButton.textContent = "Filter columns"; @@ -150,20 +192,52 @@ function createFilteringForm(ratings) { } // Datahub -function startDH(form) { - let data = {"token": form.dhToken.value}; - $.post("api/login", data, function(response) { +function setTable(form) { + var repoName = form.value; + var tableName = document.getElementById('tableName'); + while (tableName.firstChild) { + tableName.removeChild(tableName.firstChild); + } + for (var table in TABLE_LIST[repoName]) { + var option = document.createElement("option"); + option.textContent = TABLE_LIST[repoName][table]; + tableName.appendChild(option); + } +} + +function setRepo() { + var repoName = document.getElementById('repoName'); + var upRepoName = document.getElementById('upRepoName'); + for (var repo in TABLE_LIST) { + var option = document.createElement("option"); + option.textContent = repo; + var upOption = document.createElement("option"); + upOption.textContent = repo; + repoName.appendChild(option); + upRepoName.appendChild(upOption); + } + setTable(repoName); + +} +function startDH(token) { + var data = {"token": document.getElementById("token").value}; + $.post("login/", data, function(response) { if (response["ok"]) { presentAlert("alert-success", "DataHub connection successful"); + TABLE_LIST = response["table_list"]; + setRepo(); } else { presentAlert("alert-danger", "Unable to login to DataHub"); + eraseCookie("oauth_token"); + showDHLogin(); } }); + return false; } function getPipelines(form) { - $.get("api/pipeline", function(response) { + $.get("pipeline/", function(response) { if (response["ok"]) { createPipelineForm(response["pipelines"]); } else { @@ -174,11 +248,11 @@ function getPipelines(form) { } function setPipeline(form) { - let data = { + var data = { "pipeline": form.pipelineChoice.value, }; - $.post("api/pipeline", data, function(response) { + $.post("pipeline/", data, function(response) { if (response["ok"]) { presentAlert("alert-success", "Pipeline set to " + response["pipeline"]); } else { @@ -190,33 +264,33 @@ function setPipeline(form) { } function queryTable(form) { - let data = { + var data = { "repoName": form.repoName.value, "tableName": form.tableName.value, - "sampleSize": form.sampleSize.value, + "sampleSize": form.sampleSize.value }; - $.post("api/query", data, function(response) { + $.post("query/", data, function(response) { if (response["ok"]) { presentAlert("alert-success", "Table data retrieved"); updateTable(response["table"], "#data"); } else { presentAlert("alert-danger", "wat"); } - }) + }); return false; } function showRatings(ratings) { - let columns = [{"title": "Class"}]; - let rows = []; - for (let columnName in ratings) { + var columns = [{"title": "Class"}]; + var rows = []; + for (var columnName in ratings) { if (ratings.hasOwnProperty(columnName)) { columns.push({"title": columnName}); - let scores = ratings[columnName]; - let i = 0; - for (let rating in scores) { + var scores = ratings[columnName]; + var i = 0; + for (var rating in scores) { if (scores.hasOwnProperty(rating)) { if (rows.length === i) { rows.push([rating]); @@ -236,7 +310,7 @@ function showRatings(ratings) { } function classify(form) { - $.post("api/classify", {}, function(response) { + $.post("classify/", function(response) { if (response["ok"]) { presentAlert("alert-success", "Columns classified"); showRatings(response["ratings"]); @@ -249,10 +323,10 @@ function classify(form) { } function filter(form) { - let filters = {}; - let selections = form.getElementsByTagName("select"); - for (let i = 0; i < selections.length; i++) { - let choice = selections[i].value; + var filters = {}; + var selections = form.getElementsByTagName("select"); + for (var i = 0; i < selections.length; i++) { + var choice = selections[i].value; if (choice == "ignore") { continue; } else { @@ -263,9 +337,9 @@ function filter(form) { //let request = { // "filters": filters, //}; - let request = filters; + var request = filters; - $.post("api/filter", request, function(response) { + $.post("filter/", request, function(response) { if (response["ok"]) { presentAlert("alert-success", "Table filtered"); updateTable(response["table"], "#filtered"); @@ -277,17 +351,19 @@ function filter(form) { } // Run on startup -$(document).ready(function(){ - showDHLogin(); -}); +// $(document).ready(function(){ +// showDHLogin(); +// }); function upload(form) { var repo_name = document.getElementById("repoName").value; + var up_repo_name = document.getElementById("upRepoName").value; var table_name = document.getElementById("tableName").value; var request = {"uploadTable" : form.uploadTable.value, "repoName" : repo_name, - "tableName" : table_name}; - $.post("api/upload", request, function(response) { + "tableName" : table_name, + "up_repo_name" : up_repo_name}; + $.post("upload/", request, function(response) { if (response["ok"]) { presentAlert("alert-success", "Filtered table uploaded"); } else { diff --git a/frontend/css/main.css b/iid/static/iid/style.css similarity index 100% rename from frontend/css/main.css rename to iid/static/iid/style.css diff --git a/iid/templates/__init__.py b/iid/templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/iid/templates/iid/__init__.py b/iid/templates/iid/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/templates/index.html b/iid/templates/iid/index.html similarity index 76% rename from templates/index.html rename to iid/templates/iid/index.html index c1c5553..d876903 100644 --- a/templates/index.html +++ b/iid/templates/iid/index.html @@ -9,8 +9,9 @@ - - + {% load static %} + + ShareDB demo @@ -46,24 +47,24 @@

Warning

-

DataHub session

-

- Note: this is a temporary login solution and full OAuth support will be added shortly. - In the meantime, please use an external service like Postman to retrieve a token. -

- - -
+

DataHub login

+{# #} +{#
#} +
{% csrf_token %} +
+ + +
+ +

Select pre-defined classifiers and filters

Before filtering or classifying any data, you must set which pipeline you’d like to use. - This configures a set of classifiers (which classify columns based on their data) and filters (which modify columns based on what they”re classified as). + This configures a set of classifiers (which classify columns based on their data) and filters (which modify columns based on what they’re classified as).

- -
@@ -88,15 +89,17 @@

Get data from DataHub

- + +
- + +
- +
@@ -129,14 +132,18 @@

Filter columns

-
+ +
+ + + +
- diff --git a/iid/tests.py b/iid/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/iid/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/iid/urls.py b/iid/urls.py new file mode 100644 index 0000000..3d20613 --- /dev/null +++ b/iid/urls.py @@ -0,0 +1,14 @@ +from django.conf.urls import url +from . import views + + +app_name = 'iid' +urlpatterns = [ + url(r'^$', views.index, name='index'), + url(r'^login/', views.login, name='login'), + url(r'^pipeline/', views.pipeline, name='pipeline'), + url(r'^query/', views.query, name='query'), + url(r'^classify/', views.classify, name='classify'), + url(r'^filter/', views.filter, name='filter'), + url(r'^upload/', views.upload, name='upload') +] diff --git a/iid/views.py b/iid/views.py new file mode 100644 index 0000000..6863f11 --- /dev/null +++ b/iid/views.py @@ -0,0 +1,117 @@ +# Django +# Python +import json + +from django.http import HttpResponse +from django.shortcuts import render + +# Bundles +from iid.bundle import HIPAABundle, FERPABundle +# DataHub +from iid.datahub import DataHub + +# DataHub connections +CONN = None + +# Data processing pipelines +PIPELINES = { + 'hipaa': HIPAABundle, + 'ferpa': FERPABundle, +} +PIPELINE = None + + +def index(request): + return render(request, 'iid/index.html') + + +def login(request): + if request.method == 'POST': + global CONN + token = request.POST.get("token", None) + try: + CONN = DataHub(token) + table_list = CONN.table_list + data = {'ok': True, 'table_list': table_list} + except RuntimeError: + data = {'ok': False} + + return HttpResponse(json.dumps(data), content_type='application/json') + + +def pipeline(request): + if request.method == 'GET': + data = { + 'ok': True, + 'pipelines': {k: v.description for k, v in PIPELINES.items()} + } + + return HttpResponse(json.dumps(data), content_type='application/json') + if request.method == 'POST': + global PIPELINE + pipeline_name = request.POST.get("pipeline") + if pipeline_name in PIPELINES: + PIPELINE = PIPELINES[pipeline_name].pipeline + data = { + 'ok': True, + 'pipeline': pipeline_name + } + else: + data = { + 'ok': False, + 'error': 'Pipeline {0} not found'.format(pipeline_name) + } + return HttpResponse(json.dumps(data), content_type='application/json') + + +def query(request): + if request.method == 'POST': + repo_name = request.POST.get("repoName") + table_name = request.POST.get('tableName') + sample_size = request.POST.get('sampleSize') + if sample_size == "": + table = CONN.get_all_rows(repo_name, table_name) + else: + table = CONN.get_sample(repo_name, table_name, int(sample_size)) + PIPELINE.add_data(table) + data = { + 'ok': True, + 'table': PIPELINE.data + } + return HttpResponse(json.dumps(data), content_type='application/json') + + +def classify(request): + if request.method == 'POST': + ratings = PIPELINE.classify() + data = { + 'ok': True, + 'ratings': ratings + } + return HttpResponse(json.dumps(data), content_type='application/json') + + +def filter(request): + if request.method == 'POST': + filters = {} + for arg in request.POST.keys(): + filters[arg] = request.POST.get(arg) + PIPELINE.filter(filters) + data = { + 'ok': True, + 'table': PIPELINE.data + } + return HttpResponse(json.dumps(data), content_type='application/json') + + +def upload(request): + if request.method == 'POST': + table_name = request.POST.get('tableName') + repo_name = request.POST.get('repoName') + upload_table = request.POST.get('uploadTable') + up_repo_name = request.POST.get('up_repo_name') + CONN.upload_table(repo_name, table_name, upload_table, PIPELINE, up_repo_name) + data = { + 'ok': True + } + return HttpResponse(json.dumps(data), content_type='application/json') \ No newline at end of file diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..55971cb --- /dev/null +++ b/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sharedb_django.settings") + try: + from django.core.management import execute_from_command_line + except ImportError: + # The above import may fail for some other reason. Ensure that the + # issue is really that Django is missing to avoid masking other + # exceptions on Python 2. + try: + import django + except ImportError: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) + raise + execute_from_command_line(sys.argv) diff --git a/notes.md b/notes.md deleted file mode 100644 index fe6fabb..0000000 --- a/notes.md +++ /dev/null @@ -1,56 +0,0 @@ -# Notes - -## HIPAA PII removal - -Our main starting point for the removal of PII is working off of the [HIPAA guidelines](https://www.hhs.gov/hipaa/for-professionals/privacy/special-topics/de-identification/). -Specifically, we want to work off of the "Safe Harbor" method, which focuses on the removal of: - -1. Names -1. All geographic subdivisions smaller than a state, including street address, city, county, precinct, ZIP code, and their equivalent geocodes, except for the initial three digits of the ZIP code if, according to the current publicly available data from the Bureau of the Census: - 1. The geographic unit formed by combining all ZIP codes with the same three initial digits contains more than 20,000 people; and - 1. The initial three digits of a ZIP code for all such geographic units containing 20,000 or fewer people is changed to 000 -1. All elements of dates (except year) for dates that are directly related to an individual, including birth date, admission date, discharge date, death date, and all ages over 89 and all elements of dates (including year) indicative of such age, except that such ages and elements may be aggregated into a single category of age 90 or older -1. Phone numbers -1. Vehicle identifiers and serial numbers, including license plate numbers -1. Fax numbers (see: phone numbers) -1. Device identifiers and serial numbers (MAC addresses, IMEID, etc.) -1. Email addresses -1. URLs and URIs -1. SSNs -1. IP addresses -1. Medical record numbers -1. Biometric identifiers, including finger and voice prints (I don't think there's an easy way to automagically identify these, but I should look into standard formats --- maybe some CV) -1. Health plan beneficiary numbers -1. Full-face photographs and any comparable images (i.e. wounds, tattoos, etc.) -1. Account numbers -1. Any other unique identifying number, characteristic, or code, except: Implementation specifications: re-identification. A covered entity may assign a code or other means of record identification to allow information de-identified under this section to be re-identified by the covered entity, provided that: - 1. Derivation. The code or other means of record identification is not derived from or related to information about the individual and is not otherwise capable of being translated so as to identify the individual; and - 1. Security. The covered entity does not use or disclose the code or other means of record identification for any other purpose, and does not disclose the mechanism for re-identification. -1. Certificate/license numbers - -Finally, as an overarching requirement, HIPAA requires that "The covered entity does not have actual knowledge that the information could be used alone or in combination with other information to identify an individual who is a subject of the information." - -### Leads and existing tools - -- [CUSpider](http://www.columbia.edu/acis/security/spider/about.html), which is supposedly open source. - -### Simple things: - -One easy thing to recognize are SSNs, which are typically of the form ###-##-####, nine digits separated -by dashes. We can easily use `\d{3}-\d{2}-\d{4}` as a regex to find normally formatted SSNs. -If we want to make the dashes optional, we can either just use `-?` or allow for random punctuation breaks, i.e. look for a nine-digit number with random breaks. - -## Environment -My work here so far has been done using a virtual environment in the `sharedb` folder. -It's somewhat easier to collect all of my packages into a virtualenv to ensure that future users don't worry about requirements. -I may or may not actually commit this to the git repo due to its size, but I will always have a `requirements.txt`. - --- - -name classifier using labelled dataset -> word embeddings -names w/ bloom filter -glove word vec - --- -http://www.cs.cmu.edu/Groups/AI/util/areas/nlp/corpora/names/other/ - diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index b2544ab..0000000 --- a/requirements.txt +++ /dev/null @@ -1,9 +0,0 @@ -appdirs (1.4.2) -packaging (16.8) -pip (9.0.1) -pyparsing (2.2.0) -requests (2.13.0) -setuptools (34.4.0) -six (1.10.0) -tornado (4.4.3) -wheel (0.29.0) diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 96ee012..0000000 --- a/setup.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[flake8] -ignore=E302,E501 - diff --git a/sharedb_django/__init__.py b/sharedb_django/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sharedb_django/settings.py b/sharedb_django/settings.py new file mode 100644 index 0000000..efba1f0 --- /dev/null +++ b/sharedb_django/settings.py @@ -0,0 +1,120 @@ +""" +Django settings for sharedb_django project. + +Generated by 'django-admin startproject' using Django 1.11.1. + +For more information on this file, see +https://docs.djangoproject.com/en/1.11/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/1.11/ref/settings/ +""" + +import os + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '+ztib4)971@w7p#ql&8wumlile8sfi7y#7-2p*w_gf##k$ev#w' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'iid.apps.IidConfig', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'sharedb_django.urls' + + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'sharedb_django.wsgi.application' + +# Database +# https://docs.djangoproject.com/en/1.11/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + } +} + + +# Password validation +# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/1.11/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/1.11/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/sharedb_django/urls.py b/sharedb_django/urls.py new file mode 100644 index 0000000..e70d14f --- /dev/null +++ b/sharedb_django/urls.py @@ -0,0 +1,22 @@ +"""sharedb_django URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/1.11/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.conf.urls import url, include + 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) +""" +from django.conf.urls import url, include +from django.contrib import admin + +urlpatterns = [ + url(r'^iid/', include('iid.urls')), + url(r'^admin/', admin.site.urls), +] diff --git a/sharedb_django/wsgi.py b/sharedb_django/wsgi.py new file mode 100644 index 0000000..8ce5675 --- /dev/null +++ b/sharedb_django/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for sharedb_django project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sharedb_django.settings") + +application = get_wsgi_application() diff --git a/todo.md b/todo.md index 15ba31f..ab35f4e 100644 --- a/todo.md +++ b/todo.md @@ -1,22 +1,5 @@ -# Todo -A sample todo document. +### Django -## Overall -[] Better comments throughout the front end. +csrf token, currently delete scrf protection -## DataHub integration -Here are tasks relating to integration with DataHub and databases in general. - -[] Build proper OAuth2 authorization. -[] Investigate whether my repo creation is broken or repo creation is broken in general. -[] ... and see if it's even possible to upload a file and convert it to a table via the API. Otherwise this may have to be done manually. - -It looks like we can stream data from a table via SQL queries. - -[] Updating DataHub tables with streamed SQL statement (oh god) - -## Frontend -Here are tasks related to the front end, which as this point is really just a glorified demo. - -[] Move to a proper framework like React -[] Move off of Tornado and onto Django (well, maybe, if you feel like it) +oauth From 0f02c780b4c06f7e48de4a53f4586fe4573382fa Mon Sep 17 00:00:00 2001 From: jyan16 Date: Sun, 4 Jun 2017 16:51:33 -0400 Subject: [PATCH 7/8] ddd --- README.md | 54 ++++++++++++++++++++++++++++ iid/static/iid/iid.js | 66 +++++++++++++++++++++-------------- iid/templates/__init__.py | 0 iid/templates/iid/__init__.py | 0 iid/templates/iid/index.html | 13 ++++--- iid/urls.py | 3 +- iid/views.py | 51 +++++++++++++++++++++++++-- sharedb.iml | 12 +++++++ sharedb_django/settings.py | 7 ++++ test.py | 31 ++++++++++++++++ todo.md | 5 --- 11 files changed, 203 insertions(+), 39 deletions(-) create mode 100644 README.md delete mode 100644 iid/templates/__init__.py delete mode 100644 iid/templates/iid/__init__.py create mode 100644 sharedb.iml create mode 100644 test.py delete mode 100644 todo.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ba5ebc7 --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +# ShareDB +## HIPAA PII removal + +Our main starting point for the removal of PII is working off of the [HIPAA guidelines](https://www.hhs.gov/hipaa/for-professionals/privacy/special-topics/de-identification/). +Specifically, we want to work off of the "Safe Harbor" method, which focuses on the removal of: + +1. Names +1. All geographic subdivisions smaller than a state, including street address, city, county, precinct, ZIP code, and their equivalent geocodes, except for the initial three digits of the ZIP code if, according to the current publicly available data from the Bureau of the Census: + 1. The geographic unit formed by combining all ZIP codes with the same three initial digits contains more than 20,000 people; and + 1. The initial three digits of a ZIP code for all such geographic units containing 20,000 or fewer people is changed to 000 +1. All elements of dates (except year) for dates that are directly related to an individual, including birth date, admission date, discharge date, death date, and all ages over 89 and all elements of dates (including year) indicative of such age, except that such ages and elements may be aggregated into a single category of age 90 or older +1. Phone numbers +1. Vehicle identifiers and serial numbers, including license plate numbers +1. Fax numbers (see: phone numbers) +1. Device identifiers and serial numbers (MAC addresses, IMEID, etc.) +1. Email addresses +1. URLs and URIs +1. SSNs +1. IP addresses +1. Medical record numbers +1. Biometric identifiers, including finger and voice prints (I don't think there's an easy way to automagically identify these, but I should look into standard formats.) +1. Health plan beneficiary numbers +1. Full-face photographs and any comparable images (i.e. wounds, tattoos, etc.) +1. Account numbers +1. Any other unique identifying number, characteristic, or code, except: Implementation specifications: re-identification. A covered entity may assign a code or other means of record identification to allow information de-identified under this section to be re-identified by the covered entity, provided that: + 1. Derivation. The code or other means of record identification is not derived from or related to information about the individual and is not otherwise capable of being translated so as to identify the individual; and + 1. Security. The covered entity does not use or disclose the code or other means of record identification for any other purpose, and does not disclose the mechanism for re-identification. +1. Certificate/license numbers + +Finally, as an overarching requirement, HIPAA requires that "The covered entity does not have actual knowledge that the information could be used alone or in combination with other information to identify an individual who is a subject of the information." + +### Leads and existing tools + +- [CUSpider](http://www.columbia.edu/acis/security/spider/about.html), which is supposedly open source. + +### Simple things: + +One easy thing to recognize are SSNs, which are typically of the form ###-##-####, nine digits separated +by dashes. We can easily use `\d{3}-\d{2}-\d{4}` as a regex to find normally formatted SSNs. +If we want to make the dashes optional, we can either just use `-?` or allow for random punctuation breaks, i.e. look for a nine-digit number with random breaks. + +## Environment +My work here so far has been done using a virtual environment in the `sharedb` folder. +It's somewhat easier to collect all of my packages into a virtualenv to ensure that future users don't worry about requirements. +I may or may not actually commit this to the git repo due to its size, but I will always have a `requirements.txt`. + +-- + +name classifier using labelled dataset -> word embeddings +names w/ bloom filter +glove word vec + +-- +http://www.cs.cmu.edu/Groups/AI/util/areas/nlp/corpora/names/other/ \ No newline at end of file diff --git a/iid/static/iid/iid.js b/iid/static/iid/iid.js index 845e511..d3e5d12 100644 --- a/iid/static/iid/iid.js +++ b/iid/static/iid/iid.js @@ -49,28 +49,26 @@ function presentAlert(style, message) { // View function showDHLogin() { - // Clear out old elements - var div = document.getElementById("dh-login"); - while (div.hasChildNodes()) { - div.removeChild(div.lastChild); - } // Show the DataHub login button if required var token = readCookie("oauth_token"); - if (token == null) { - // Write form - var link = document.createElement("a"); - link.setAttribute("href", "/auth"); - var button = document.createElement("button"); - button.setAttribute("class", "btn btn-default"); - button.textContent = "Log in to DataHub"; - div.appendChild(link); - link.appendChild(button); - } else { - // Set connection and display success + if (token != null) { startDH(token); - div.textContent = "Logged in to DataHub!" + // div.textContent = "Logged into DataHub!" } + // var auth_form = document.getElementById("login"); + // var link = document.createElement("a"); + // link.setAttribute("href", "/auth"); + // var button = document.createElement("button"); + // button.setAttribute("class", "btn btn-default"); + // button.textContent = "Log in to DataHub"; + // div.appendChild(link); + // link.appendChild(button); + // } else { + // // Set connection and display success + // startDH(token); + // div.textContent = "Logged in to DataHub!" + // } } function updateTable(table, target) { @@ -219,8 +217,27 @@ function setRepo() { setTable(repoName); } +function getToken() { + var data = { + "username": document.getElementById("username").value, + "password": document.getElementById("password").value + }; + $.get("auth/", data, function(response) { + if (response["ok"]) { + token = response["token"]; + startDH(token); + } else { + presentAlert("alert-danger", "Unable to login to DataHub"); + + } + }); + + return false; +} function startDH(token) { - var data = {"token": document.getElementById("token").value}; + data = { + "token": token + }; $.post("login/", data, function(response) { if (response["ok"]) { presentAlert("alert-success", "DataHub connection successful"); @@ -228,12 +245,9 @@ function startDH(token) { setRepo(); } else { presentAlert("alert-danger", "Unable to login to DataHub"); - eraseCookie("oauth_token"); - showDHLogin(); + eraseCookie("oauth_token"); } - }); - - return false; + }) } function getPipelines(form) { @@ -351,9 +365,9 @@ function filter(form) { } // Run on startup -// $(document).ready(function(){ -// showDHLogin(); -// }); +$(document).ready(function(){ + showDHLogin(); +}); function upload(form) { var repo_name = document.getElementById("repoName").value; diff --git a/iid/templates/__init__.py b/iid/templates/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/iid/templates/iid/__init__.py b/iid/templates/iid/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/iid/templates/iid/index.html b/iid/templates/iid/index.html index d876903..b8095cd 100644 --- a/iid/templates/iid/index.html +++ b/iid/templates/iid/index.html @@ -51,12 +51,17 @@

DataHub login

{# #} {#
#} -
{% csrf_token %} + + +
+ + +
- - + +
- +

Select pre-defined classifiers and filters

diff --git a/iid/urls.py b/iid/urls.py index 3d20613..765dcfc 100644 --- a/iid/urls.py +++ b/iid/urls.py @@ -10,5 +10,6 @@ url(r'^query/', views.query, name='query'), url(r'^classify/', views.classify, name='classify'), url(r'^filter/', views.filter, name='filter'), - url(r'^upload/', views.upload, name='upload') + url(r'^upload/', views.upload, name='upload'), + url(r'^auth/', views.auth, name='auth') ] diff --git a/iid/views.py b/iid/views.py index 6863f11..aa441a8 100644 --- a/iid/views.py +++ b/iid/views.py @@ -1,7 +1,11 @@ -# Django # Python import json +import pycurl +import io +from urllib.parse import urlencode +from sharedb_django import settings +# Django from django.http import HttpResponse from django.shortcuts import render @@ -21,6 +25,45 @@ PIPELINE = None +def get_token(username, password): + fields = { + 'grant_type': settings.GRANT_TYPE, + 'username': username, + 'password': password + } + + userpwd = ':'.join((settings.CLIENT_ID, settings.CLIENT_SECRET)) + + response = io.BytesIO() + c = pycurl.Curl() + + c.setopt(pycurl.URL, settings.TOKEN_URL) + c.setopt(pycurl.POST, 1) + c.setopt(pycurl.NOPROGRESS, 1) + c.setopt(pycurl.USERPWD, userpwd) + c.setopt(pycurl.POSTFIELDS, urlencode(fields)) + c.setopt(pycurl.MAXREDIRS, 50) + c.setopt(pycurl.TCP_KEEPALIVE, 1) + c.setopt(pycurl.USERAGENT, 'curl/7.52.1') + c.setopt(pycurl.WRITEFUNCTION, response.write) + c.perform() + httpString = json.loads(response.getvalue().decode('UTF-8')) + return httpString['access_token'] + + +def auth(request): + if request.method == 'GET': + username = request.GET.get("username", None) + password = request.GET.get("password", None) + try: + token = get_token(username, password) + data = {'ok': True, 'token': token} + except: + data = {'ok': False} + + return HttpResponse(json.dumps(data), content_type='application/json') + + def index(request): return render(request, 'iid/index.html') @@ -28,15 +71,17 @@ def index(request): def login(request): if request.method == 'POST': global CONN - token = request.POST.get("token", None) try: + token = request.POST.get("token") CONN = DataHub(token) table_list = CONN.table_list data = {'ok': True, 'table_list': table_list} except RuntimeError: data = {'ok': False} - return HttpResponse(json.dumps(data), content_type='application/json') + response = HttpResponse(json.dumps(data), content_type='application/json') + response.set_cookie('oauth_token', token) + return response def pipeline(request): diff --git a/sharedb.iml b/sharedb.iml new file mode 100644 index 0000000..8c5cc16 --- /dev/null +++ b/sharedb.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/sharedb_django/settings.py b/sharedb_django/settings.py index efba1f0..ed3ac53 100644 --- a/sharedb_django/settings.py +++ b/sharedb_django/settings.py @@ -118,3 +118,10 @@ # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' + +# custom information + +TOKEN_URL = "http://datahub-local.mit.edu/oauth2/token/" +CLIENT_ID = "2LQfiRmzunxIecUMV6PmctWgIwDFiYKz4NFt7iM7" +CLIENT_SECRET = "pBiFd1Qnrsqt8AF4DjTNHD4MHApt9DCVdIYitkQTo96mX9ISzDXWw8RfIas1KeuwhSBWI4GScVBsdwYEzMPqzMlbkuUssK4HyZG64MFhDZfZQKyjrV6zsoAqtvNOWQuZ" +GRANT_TYPE = "password" \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..0c5d9f9 --- /dev/null +++ b/test.py @@ -0,0 +1,31 @@ +import pycurl +import io +from urllib.parse import urlencode +import json +from sharedb_django import settings + +fields = { + 'grant_type': settings.GRANT_TYPE, + 'username': 'jinyan', + 'password': '123456' +} + +USERPWD = ':'.join((settings.CLIENT_ID, settings.CLIENT_SECRET)) + +response = io.BytesIO() +c = pycurl.Curl() + +c.setopt(pycurl.URL, settings.TOKEN_URL) +c.setopt(pycurl.POST, 1) +c.setopt(pycurl.NOPROGRESS, 1) +c.setopt(pycurl.USERPWD, USERPWD) +c.setopt(pycurl.POSTFIELDS, urlencode(fields)) +c.setopt(pycurl.MAXREDIRS, 50) +c.setopt(pycurl.TCP_KEEPALIVE, 1) +c.setopt(pycurl.USERAGENT, 'curl/7.52.1') +c.setopt(pycurl.WRITEFUNCTION, response.write) +c.perform() +httpString = json.loads(response.getvalue().decode('UTF-8')) +print(httpString['access_token']) +c.close() + diff --git a/todo.md b/todo.md deleted file mode 100644 index ab35f4e..0000000 --- a/todo.md +++ /dev/null @@ -1,5 +0,0 @@ -### Django - -csrf token, currently delete scrf protection - -oauth From d08e6c12b50357ea00b635782c26c7d8a6e2aed9 Mon Sep 17 00:00:00 2001 From: jyan16 Date: Sun, 25 Jun 2017 09:49:02 -0400 Subject: [PATCH 8/8] readme --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index ba5ebc7..fe69a57 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,6 @@ If we want to make the dashes optional, we can either just use `-?` or allow for ## Environment My work here so far has been done using a virtual environment in the `sharedb` folder. -It's somewhat easier to collect all of my packages into a virtualenv to ensure that future users don't worry about requirements. -I may or may not actually commit this to the git repo due to its size, but I will always have a `requirements.txt`. --