diff --git a/src/4_project/README.md b/src/4_project/README.md new file mode 100644 index 00000000..e69de29b diff --git a/src/4_project/__init__.py b/src/4_project/__init__.py new file mode 100644 index 00000000..31a6ea5e --- /dev/null +++ b/src/4_project/__init__.py @@ -0,0 +1 @@ +"""Reason-and-Act Knowledge Retrieval Agent using OpenAPI SDK and Pension Documentation.""" \ No newline at end of file diff --git a/src/4_project/app.py b/src/4_project/app.py new file mode 100644 index 00000000..f0cf88d4 --- /dev/null +++ b/src/4_project/app.py @@ -0,0 +1,134 @@ +from dotenv import load_dotenv +from logging import basicConfig, INFO +from src.utils.client_manager import AsyncClientManager +from agents import ( + set_tracing_disabled, + Agent, + OpenAIChatCompletionsModel, + Runner, + InputGuardrailTripwireTriggered, + function_tool, +) +import gradio as gr +from gradio.components.chatbot import ChatMessage +from src.utils.gradio import COMMON_GRADIO_CONFIG +from src.utils import oai_agent_stream_to_gradio_messages +from src.utils.agent_session import get_or_create_session +import asyncio +from sub_agents.triage_agent import ( + off_topic_guardrail, + dynamic_triage_agent_instructions, +) +from typing import Any, AsyncGenerator +from models import UserAccountContext +from src.utils.tools.gemini_grounding import ( + GeminiGroundingWithGoogleSearch, + ModelSettings, +) +from sub_agents.code_interpreter_agent import code_interpreter_agent + +# Context is available locally to your code +# LLM only sees the conversation history +# Need to pass in the context to the prompt +user_account_ctx = UserAccountContext( + customer_id="C5841053", + name="Bonbon", + nra=65, + status="active", +) + +# Make a tool that can work with user data without exposing the user data to LLM +# e.g. change email -> POST request is handled under the function +# @function_tool +# def get_user_nra(wrapper: RunContextWrapper[UserAccountContext]): +# return f"The user {wrapper.context.customer_id} has a NRA {wrapper.context.nra}" + + +async def _main( + query: str, history: list[ChatMessage], session_state: dict[str, Any] +) -> AsyncGenerator[list[ChatMessage], Any]: + turn_messages: list[ChatMessage] = [] + + session = get_or_create_session(history, session_state) + + worker_model = client_manager.configs.default_worker_model + + gemini_grounding_tool = GeminiGroundingWithGoogleSearch( + model_settings=ModelSettings(model=worker_model) + ) + + try: + main_agent = Agent( + name="Pension Support Agent", + instructions=dynamic_triage_agent_instructions, + model=OpenAIChatCompletionsModel( + model=worker_model, openai_client=client_manager.openai_client + ), + # model_settings=ModelSettings(parallel_tool_calls=False), + # TODO: This is not compatible with gemini. Need to use openAI + # INFO:httpx:HTTP Request: POST https://generativelanguage.googleapis.com/v1beta/openai/responses "HTTP/1.1 404 Not Found" + # input_guardrails=[off_topic_guardrail], + tools=[ + function_tool( + gemini_grounding_tool.get_web_search_grounded_response, + name_override="search_web", + ), + code_interpreter_agent.as_tool( + tool_name="code_interpreter", + tool_description=( + "Use this tool when you need to create code from a local csv file" + "in order to calculate projected pension amounts or any other pension data" + "Make sure only to provide the information regarding the current member" + ), + ), + ], + ) + print("user_account_ctx", user_account_ctx) + result_stream = Runner.run_streamed( + main_agent, input=query, session=session, context=user_account_ctx + ) + + async for _item in result_stream.stream_events(): + # Parse the stream events, convert to Gradio chat messages and append to + # the chat history`` + turn_messages += oai_agent_stream_to_gradio_messages(_item) + if len(turn_messages) > 0: + yield turn_messages + + except InputGuardrailTripwireTriggered as e: + print("InputGuardrailException", e) + turn_messages = [ + ChatMessage( + role="assistant", + content="I cannot help you with that.", + metadata={ + "title": "*Guardrail*", + "status": "done", # This makes it collapsed by default + }, + ) + ] + + +if __name__ == "__main__": + load_dotenv(verbose=True) + basicConfig(level=INFO) + + # openAI and Weaviate async clients + client_manager = AsyncClientManager() + + # Disable openAI platform tracing + set_tracing_disabled(disabled=True) + + demo = gr.ChatInterface( + _main, + **COMMON_GRADIO_CONFIG, + examples=[ + ["What is the expected pension amount when I retire at the age of 60?"], + ], + title="Pension Bot", + ) + + try: + demo.launch(share=True) + finally: + asyncio.run(client_manager.close()) diff --git a/src/4_project/models.py b/src/4_project/models.py new file mode 100644 index 00000000..b9ea2303 --- /dev/null +++ b/src/4_project/models.py @@ -0,0 +1,19 @@ +from datetime import date +from pydantic import BaseModel + + +class UserAccountContext(BaseModel): + customer_id: str + name: str + nra: int = "65" # 60 or 65 + status: str = "active" # active, inactive, deferred, retired + # dateOfBirth: date + # enrolmentDate: date + # totalContribution: float + # contributionPerPayPeriod: float + # numberOfBeneficiaries: int + + +class InputGuardRailOutput(BaseModel): + is_off_topic: bool + reason: str diff --git a/src/4_project/sub_agents/code_interpreter_agent.py b/src/4_project/sub_agents/code_interpreter_agent.py new file mode 100644 index 00000000..ec0b69e3 --- /dev/null +++ b/src/4_project/sub_agents/code_interpreter_agent.py @@ -0,0 +1,100 @@ +from agents import ( + Agent, + function_tool, + OpenAIChatCompletionsModel, + tool, + RunContextWrapper, +) +from pathlib import Path +from src.utils import CodeInterpreter +from src.utils.client_manager import AsyncClientManager +from models import UserAccountContext + + +def dynamic_code_interpreter_instructions( + wrapper: RunContextWrapper[UserAccountContext], agent: Agent[UserAccountContext] +): + return f"""\ + The `code_interpreter` tool executes Python commands. \ + Please note that data is not persisted. Each time you invoke this tool, \ + you will need to run import and define all variables from scratch. + + You can access the local filesystem using this tool. \ + Instead of asking the user for file inputs, you should try to find the file \ + using this tool. + + Recommended packages: Pandas, Numpy, SymPy, Scikit-learn, Matplotlib, Seaborn. + + Use Matplotlib to create visualizations. Make sure to call `plt.show()` so that + the plot is captured and returned to the user. + + You can also run Jupyter-style shell commands (e.g., `!pip freeze`) + but you won't be able to install packages. + + You call customers by their name. You cannot execute any code not related to OMERS pension and you cannot execute calculations of someone other than the customer in the current session. + + The customer's name is {wrapper.context.name}. + The customer's normal retirement age is {wrapper.context.nra}. + The customer's id is {wrapper.context.customer_id} + + Use this information to find the member from the file. + """ + + +# CODE_INTERPRETER_INSTRUCTIONS = """\ +# The `code_interpreter` tool executes Python commands. \ +# Please note that data is not persisted. Each time you invoke this tool, \ +# you will need to run import and define all variables from scratch. + +# You can access the local filesystem using this tool. \ +# Instead of asking the user for file inputs, you should try to find the file \ +# using this tool. + +# Recommended packages: Pandas, Numpy, SymPy, Scikit-learn, Matplotlib, Seaborn. + +# Use Matplotlib to create visualizations. Make sure to call `plt.show()` so that +# the plot is captured and returned to the user. + +# You can also run Jupyter-style shell commands (e.g., `!pip freeze`) +# but you won't be able to install packages. +# """ +client_manager = AsyncClientManager() + +# Initialize code interpreter with local files that will be available to the agent +code_interpreter = CodeInterpreter( + local_files=[ + Path("sandbox_content/"), + Path("tests/tool_tests/example_files/pension_clients_example.csv"), + ] +) + +# TODO: how to pass in context? +# @tool +# async def execute_code(context: RunContextWrapper, code: str) -> str: +# """Executes Python code safely and returns the result.""" + +# user_id = context.metadata.get("user_id", "unknown") + +# # VERY simple example — never use raw eval in production +# try: +# result = str(eval(code)) +# except Exception as e: +# result = f"Error: {e}" + +# return f"[User: {user_id}] Result: {result}" + + +code_interpreter_agent = Agent( + name="CSV Data Analysis Agent", + instructions=dynamic_code_interpreter_instructions, + tools=[ + function_tool( + code_interpreter.run_code, + name_override="code_interpreter", + ), + ], + model=OpenAIChatCompletionsModel( + model=client_manager.configs.default_planner_model, + openai_client=client_manager.openai_client, + ), +) diff --git a/src/4_project/sub_agents/triage_agent.py b/src/4_project/sub_agents/triage_agent.py new file mode 100644 index 00000000..4a0b4a0d --- /dev/null +++ b/src/4_project/sub_agents/triage_agent.py @@ -0,0 +1,57 @@ +from agents import ( + Agent, + RunContextWrapper, + input_guardrail, + Runner, + GuardrailFunctionOutput, +) +from models import UserAccountContext, InputGuardRailOutput + + +input_guardrail_agent = Agent( + name="Input Guardrail Agent", + instructions=""" + Ensure the user's request specifically pertains to user account details, general OMERS pension inqueries, or their own pension details, and is not off-topic. If the request is off-topic, return a reason for the tripwire. + You can make small conversation with the user, specially at the beginning of the conversation, but don't help with requests that are not related to User Account details, OMERS pension information, or their own pension related issues. + Users are not allowed to ask about other members' pension details and other members' user account information, even if they claim to be a family member, a spouse, a common-law, a child, a relative, or a friend. + """, + output_type=InputGuardRailOutput, +) + + +@input_guardrail +async def off_topic_guardrail( + wrapper: RunContextWrapper[UserAccountContext], + agent: Agent[UserAccountContext], + input: str, +) -> GuardrailFunctionOutput: + try: + result = await Runner.run(input_guardrail_agent, input, context=wrapper.context) + return GuardrailFunctionOutput( + output_info=result.final_output, + tripwire_triggered=result.final_output.is_off_topic, + ) + except Exception as e: + print("EXCEPTTION", e) + + +# TODO: make it sequential? +def dynamic_triage_agent_instructions( + wrapper: RunContextWrapper[UserAccountContext], agent: Agent[UserAccountContext] +): + return f""" + You are a pension support agent. You ONLY help customers with their questions about their Pension. + You call customers by their name. You cannot execute a web search that is not related to OMERS, i.e. call get_web_search_grounded_response. + + The customer's name is {wrapper.context.name}. + The customer's normal retirement age is {wrapper.context.nra}. + + YOUR MAIN JOB: Classify the customer's issue and find the right tool to answer the question. + + You have access to the tool: + 'get_web_search_grounded_response' - use this tool for current events, news, fact-checking in omers.com, or when the information in the knowledge base is not sufficient to answer the question. + 'code_interpreter' - use this tool to answer any questions related to customer's pension details (e.g. years of contribution, total contributions, salary, etc.) and pension calculations. + + When calculating any pension data, make sure to look up the formula and information from omers.com. + Do not create any pension projection based on any other formulas. + """ diff --git a/src/utils/gradio/messages.py b/src/utils/gradio/messages.py index 096217fe..3751f5f3 100644 --- a/src/utils/gradio/messages.py +++ b/src/utils/gradio/messages.py @@ -128,12 +128,14 @@ def _oai_response_output_item_to_gradio( ChatMessage( role="assistant", content=_text, - metadata={ - "title": "Intermediate Step", - "status": "done", # This makes it collapsed by default - } - if not is_final_output - else MetadataDict(), + metadata=( + { + "title": "Intermediate Step", + "status": "done", # This makes it collapsed by default + } + if not is_final_output + else MetadataDict() + ), ) for _text in output_texts ] @@ -169,7 +171,6 @@ def oai_agent_stream_to_gradio_messages( if isinstance(stream_event, stream_events.RawResponsesStreamEvent): data = stream_event.data if isinstance(data, ResponseCompletedEvent): - print(stream_event) # The completed event may contain multiple output messages, # including tool calls and final outputs. # If there is at least one tool call, we mark the response as a thought. @@ -186,12 +187,14 @@ def oai_agent_stream_to_gradio_messages( ChatMessage( role="assistant", content=_item.text, - metadata={ - "title": "🧠 Thought", - "id": data.sequence_number, - } - if is_thought - else MetadataDict(), + metadata=( + { + "title": "🧠 Thought", + "id": data.sequence_number, + } + if is_thought + else MetadataDict() + ), ) ) elif isinstance(message, ResponseFunctionToolCall): @@ -210,7 +213,6 @@ def oai_agent_stream_to_gradio_messages( item = stream_event.item if name == "tool_output" and isinstance(item, ToolCallOutputItem): - print(stream_event) text_content, images = _process_tool_output_for_images(item.output) output.append( @@ -238,5 +240,4 @@ def oai_agent_stream_to_gradio_messages( ), ) ) - return output diff --git a/src/utils/tools/gemini_grounding.py b/src/utils/tools/gemini_grounding.py index 5bc95be4..bb71b744 100644 --- a/src/utils/tools/gemini_grounding.py +++ b/src/utils/tools/gemini_grounding.py @@ -9,6 +9,7 @@ import httpx from pydantic import BaseModel from pydantic.fields import Field +import copy RETRYABLE_STATUS = {429, 500, 502, 503, 504} @@ -129,6 +130,7 @@ async def get_web_search_grounded_response(self, query: str) -> GroundedResponse response_json = response.json() candidates: list[dict[str, Any]] | None = response_json.get("candidates") + grounding_metadata: dict[str, Any] | None = ( candidates[0].get("grounding_metadata") if candidates else None ) @@ -205,11 +207,13 @@ def add_citations(response: dict[str, object]) -> tuple[str, dict[int, str]]: raw_chunks = meta.get("grounding_chunks") if isinstance(meta, dict) else [] chunks = raw_chunks if isinstance(raw_chunks, list) else [] + filtered_candidate = filter_omers_websites(candidate) + citations: dict[int, str] = {} chunk_to_id: dict[int, int] = {} if supports and chunks: - citations, chunk_to_id = _collect_citations(candidate) + citations, chunk_to_id = _collect_citations(filtered_candidate) # Sort supports by end_index in descending order to avoid shifting issues # when inserting. @@ -244,6 +248,27 @@ def add_citations(response: dict[str, object]) -> tuple[str, dict[int, str]]: return text, citations +def filter_omers_websites(candidate: dict): + + filtered_candidate = copy.deepcopy(candidate) + + chunks = filtered_candidate.get("grounding_metadata", {}).get( + "grounding_chunks", [] + ) + + filtered_chunks = [ + chunk + for chunk in chunks + if "omers" in chunk.get("web", {}).get("title", "").lower() + ] + + # Replace grounding_chunks with filtered version + if "grounding_metadata" in filtered_candidate: + filtered_candidate["grounding_metadata"]["grounding_chunks"] = filtered_chunks + + return filtered_candidate + + def _collect_citations(candidate: dict) -> tuple[dict[int, str], dict[int, int]]: """Collect citation ids from a candidate dict.""" supports = candidate["grounding_metadata"]["grounding_supports"] diff --git a/tests/tool_tests/example_files/pension_clients_example.csv b/tests/tool_tests/example_files/pension_clients_example.csv new file mode 100644 index 00000000..2986f28f --- /dev/null +++ b/tests/tool_tests/example_files/pension_clients_example.csv @@ -0,0 +1,1000 @@ +CustomerID,Date of Birth,Age,Gender,Annualized Salary,Contribution per payperiod,Enrolment Date,Beneficiary (children),Status,Marital Status,NRA +C5841053,1994-01-10,32,F,17819.05,25,2002/8/16,0,inactive,married,65 +C2142763,1957-04-04,68,M,2270.69,27999,2002/8/16,1,deferred,married,60 +C4417068,1996-11-26,29,F,17874.44,459,2002/8/16,3,active,single,65 +C5342380,1973-09-14,52,F,866503.21,2060,2002/8/16,0,active,married,60 +C9031234,1988-03-24,37,F,6714.43,1762.5,2002/8/16,0,active,married,65 +C1536588,1972-10-08,53,F,53609.2,676,2002/8/16,0,active,single,65 +C7126560,1992-01-26,34,F,973.46,566,2002/8/16,1,waiver,married,60 +C1220223,1982-01-27,44,M,95075.54,148,2002/8/16,3,active,married,65 +C8536061,1988-04-19,37,F,14906.96,833,2002/8/16,2,waiver,married,60 +C6638934,1984-06-22,41,M,4279.22,289.11,2002/8/16,0,deferred,married,60 +C5430833,1982-07-22,43,M,48429.49,259,2002/8/16,0,deferred,married,65 +C6939838,1988-07-07,37,M,14613.46,202,2002/8/16,0,inactive,married,60 +C6339347,1978-06-13,47,M,32274.78,12300,2002/8/16,0,active,married,65 +C8327851,1992-01-05,34,F,59950.44,50,2001/8/16,0,deferred,single,65 +C7917151,1978-03-24,47,M,10100.84,338,2001/8/16,0,active,married,60 +C8334633,1968-07-10,57,F,1283.12,250,2001/8/16,1,active,married,65 +C1376215,3700-01-01,#NUM!,M,77495.15,1423.11,2001/8/16,1,active,married,60 +C8967349,1989-07-16,36,M,2177.85,54,2001/8/16,0,inactive,single,60 +C3732016,1991-01-11,35,M,32816.17,315,2001/8/16,0,active,single,65 +C8999019,1985-06-24,40,M,10643.5,945,2001/8/16,0,deferred,married,60 +C6121429,1993-04-20,32,M,2934.22,36,2001/8/16,0,active,divorced,60 +C4511244,1989-08-31,36,F,4470.15,27,2003/8/16,1,active,divorced,60 +C7018081,3700-01-01,#NUM!,M,143.07,110,2003/8/16,0,deferred,single,60 +C5830215,1986-10-01,39,M,12868.42,291,2003/8/16,1,waiver,married,65 +C1219943,1991-05-17,34,F,2951.1,1892,2003/8/16,2,retired,married,65 +C5521085,1993-02-24,32,M,3297.74,242,2003/8/16,3,active,married,65 +C5430368,1986-02-01,40,M,285.76,5500,2003/8/16,0,active,married,65 +C2416848,1993-04-01,32,M,20986.66,2235,2003/8/16,2,retired,married,65 +C7935438,3700-01-01,#NUM!,M,969436.12,36.9,2003/8/16,1,waiver,married,60 +C8736958,1986-12-19,39,M,,2600,2003/8/16,2,inactive,married,65 +C7648712,1967-01-21,59,F,298461.05,500,2003/8/16,0,retired,divorced,60 +C5652115,1991-06-26,34,F,6384.54,10,2003/8/16,0,active,married,65 +C1889073,1985-02-25,40,F,57791.69,760,2003/8/16,5,active,married,65 +C2043652,1979-07-25,46,F,123781.9,6800,2003/8/16,0,active,single,60 +C7017047,1977-04-23,48,M,39.73,110,2003/8/16,1,active,married,60 +C1211387,3700-01-01,#NUM!,M,11791.25,1075,2003/8/16,0,inactive,divorced,65 +C4320949,1984-10-25,41,F,213.06,1081,2003/8/16,3,retired,divorced,65 +C2331533,1997-12-30,28,F,44627.73,2999,2003/8/16,0,active,married,65 +C5338459,1984-01-03,42,M,113238.74,1350,2003/8/16,1,active,married,65 +C5120181,1985-06-25,40,M,2477.42,683,2003/8/16,0,deferred,single,65 +C5838935,1983-04-13,42,M,58406.7,50,2003/8/16,0,active,single,65 +C7923455,1992-10-06,33,M,5810.82,12,2003/8/16,2,active,single,65 +C2733968,1992-12-06,33,F,12545.18,179,2003/8/16,1,active,married,65 +C2023055,1993-07-30,32,M,10630.88,421.8,2003/8/16,2,active,married,65 +C1289591,1990-10-28,35,M,282455.64,900,2003/8/16,1,active,single,65 +C3526781,1980-11-02,45,M,1589.43,90,2003/8/16,0,active,single,65 +C8934588,1981-10-23,44,M,5055.18,13846,2003/8/16,2,active,married,65 +C7542443,1989-12-29,36,M,25222.91,59.47,2003/8/16,0,active,married,65 +C6427687,1981-07-04,44,M,2162.36,55,2002/8/16,0,waiver,single,65 +C5242591,1982-12-01,43,M,22525.66,27990,2005/8/16,1,inactive,married,65 +C8624922,1982-06-26,43,F,298357.41,1388,2005/8/16,0,active,divorced,65 +C6637047,1966-07-25,59,M,9956.49,145,2005/8/16,2,active,single,65 +C3815912,1994-11-02,31,M,2058.42,519,2005/8/16,1,active,single,65 +C8837044,1988-11-20,37,F,8842.13,100,2005/8/16,0,active,married,65 +C4237628,1987-04-10,38,M,196.83,150,2005/8/16,3,active,married,65 +C1516160,1990-10-02,35,M,17070.89,107,2005/8/16,2,inactive,married,65 +C4415955,1994-12-07,31,M,2502.74,1008.63,2005/8/16,2,active,married,65 +C3932235,1991-08-20,34,M,91.66,110,2005/8/16,2,waiver,single,65 +C5623837,1984-08-07,41,M,947.23,726,2005/8/16,1,retired,single,65 +C7415323,1989-03-06,36,M,10253.21,4387,2005/8/16,2,active,divorced,65 +C7642737,1988-05-07,37,M,27852.19,1500,2005/8/16,3,active,married,65 +C2431680,1975-04-11,50,F,13138.22,412.2,2005/8/16,4,retired,married,65 +C1130989,1990-10-22,35,M,250.26,60,2005/8/16,1,active,married,65 +C3928242,1989-06-01,36,M,10067.44,262,2005/8/16,1,deferred,married,65 +C2936517,1989-04-17,36,F,23952.37,35,2004/8/16,0,inactive,married,65 +C1040842,1991-09-07,34,M,26387.17,1,2004/8/16,0,active,divorced,65 +C8417574,1990-07-17,35,F,224685.48,339.92,2004/8/16,2,deferred,married,65 +C6730370,1994-01-01,32,M,13968.07,101,2004/8/16,1,active,married,65 +C2726074,1985-10-02,40,F,395743.6,9746.5,2001/8/16,0,active,married,65 +C8017865,1982-03-14,43,F,87884.2,142,2001/8/16,3,active,single,65 +C8932791,1983-09-10,42,M,5511.73,6259.72,2001/8/16,0,active,married,65 +C2725826,1980-03-15,45,M,21291.71,213,2001/8/16,5,waiver,divorced,65 +C6694517,1977-08-10,48,M,12903.39,666,2001/8/16,3,active,single,65 +C7527844,1982-02-16,44,M,20.63,3998,2001/8/16,1,deferred,married,65 +C2016883,1994-08-20,31,F,5922.11,507,2001/8/16,2,retired,married,65 +C5930363,1994-08-20,31,M,2.75,800,2001/8/16,0,active,divorced,65 +C1021343,1980-02-23,45,M,134698.04,467,2001/8/16,1,active,divorced,65 +C5529374,1984-06-24,41,M,15448.95,98,2001/8/16,0,active,single,65 +C3013442,1990-10-30,35,M,27818.65,57,2001/8/16,0,active,divorced,65 +C6612422,1967-05-25,58,M,257966.29,195.64,2001/8/16,0,inactive,married,65 +C8342660,1967-05-04,58,M,6190.71,878,2001/8/16,1,inactive,divorced,65 +C4824547,1984-07-05,41,F,34574.86,326,2001/8/16,0,retired,married,65 +C1711530,1992-02-15,34,M,8797.55,2997.02,2001/8/16,1,inactive,single,65 +C8640537,1990-08-29,35,F,2988.21,1642,2001/8/16,4,deferred,married,65 +C3839727,1983-01-20,43,M,21868.16,500,2006/8/16,2,active,married,65 +C2715454,1983-05-01,42,M,13421.46,11,2006/8/16,2,active,married,65 +C5931634,1995-08-15,30,F,1942.83,28,2006/8/16,0,active,single,65 +C7918237,1974-09-03,51,M,23302.14,2200,2006/8/16,0,active,single,65 +C1625292,1988-11-18,37,F,1880.1,1499,2006/8/16,0,inactive,married,65 +C2211527,1984-09-13,41,M,121767.71,288,2006/8/16,0,active,married,65 +C6030281,1985-06-03,40,M,6584.77,100,2006/8/16,0,active,married,65 +C1925215,1978-03-03,47,F,100371.41,4000,2006/8/16,1,active,married,60 +C6040326,1992-02-09,34,M,35990.54,930,2006/8/16,3,deferred,single,60 +C5232732,1972-04-28,53,M,7330.62,2813.62,2006/8/16,2,active,single,60 +C1616335,1981-05-17,44,M,98097.5,787.98,2006/8/16,2,active,married,60 +C4226473,1988-05-25,37,M,4001.86,96,2006/8/16,1,unknown,single,60 +C3232257,1994-10-15,31,M,78.33,179,2006/8/16,3,inactive,married,60 +C1717631,1987-07-14,38,M,14916.95,830,2006/8/16,0,inactive,single,60 +C7130627,1989-06-10,36,F,62706.81,3380,2006/8/16,0,active,divorced,60 +C1713934,1977-09-18,48,F,22588.09,810,2006/8/16,0,inactive,single,60 +C2742048,1986-04-29,39,F,37588.84,1473.5,2006/8/16,0,active,married,60 +C4953770,1986-10-27,39,M,96.2,1897,2006/8/16,0,active,single,65 +C6427021,1981-04-01,44,M,31121.47,974,2006/8/16,0,active,married,60 +C7833983,1987-11-30,38,F,2298.51,50,2006/8/16,3,deferred,single,65 +C7924053,1971-04-15,54,F,77587.52,500,2006/8/16,1,active,single,65 +C7118047,1967-08-27,58,M,76185.83,1826,2006/8/16,1,active,single,60 +C5836729,1977-05-01,48,M,3214.87,2898.78,2006/8/16,1,active,married,65 +C5712211,1981-11-06,44,M,755133.35,1803,2006/8/16,2,waiver,married,60 +C5910145,1977-10-14,48,M,27388.25,205,2006/8/16,0,inactive,married,60 +C8311768,1990-03-06,35,M,27552.35,164,2006/8/16,0,retired,married,65 +C4417481,1993-04-20,32,M,40664.53,2245.95,2006/8/16,1,deferred,single,60 +C4974913,1992-07-31,33,M,12.01,59,2006/8/16,2,active,married,65 +C3911031,1989-10-16,36,F,116592.57,1480,2005/8/16,0,waiver,married,65 +C7641090,1991-06-15,34,M,8588.5,1,2005/8/16,0,active,single,60 +C7317029,1992-03-19,33,M,33.01,40,2005/8/16,3,deferred,single,65 +C4232113,1991-04-16,34,M,172.63,599,2009/8/16,0,active,single,60 +C5024473,1983-07-05,42,M,139144.83,2066.74,2009/8/16,0,deferred,married,60 +C4932115,1987-06-12,38,F,75348.06,250,2009/8/16,1,inactive,single,65 +C2611254,1984-12-21,41,M,241139.36,25,2009/8/16,0,active,married,60 +C6932571,1989-01-24,37,M,6023.36,478,2009/8/16,2,active,divorced,60 +C8724471,1986-05-07,39,M,654.36,1000,2009/8/16,2,inactive,divorced,60 +C4619519,1988-03-23,37,M,140830.97,895,2009/8/16,0,active,married,60 +C1127458,1986-09-27,39,M,23541.54,500,2009/8/16,0,active,married,65 +C4117761,1989-01-15,37,M,5337.59,385,2009/8/16,1,active,married,65 +C8441772,1982-04-20,43,F,51939.21,457,2009/8/16,3,active,single,65 +C2024260,1987-01-15,39,M,87839.68,1747,2009/8/16,0,waiver,single,65 +C7785966,1991-07-10,34,M,122636.69,60,2009/8/16,0,inactive,single,65 +C5027040,1984-03-23,41,M,12.54,200,2009/8/16,0,active,single,60 +C2417034,1992-02-22,33,F,923.01,25,2008/8/16,2,active,single,65 +C1642073,1982-10-12,43,M,440199.11,127,2008/8/16,2,retired,divorced,60 +C2511417,1992-02-26,33,M,11850.45,1150,2008/8/16,0,active,married,65 +C6133064,1991-07-28,34,M,25963.21,155,2008/8/16,0,active,married,65 +C7614444,1991-04-03,34,M,19.83,40,2008/8/16,2,active,married,60 +C5343690,1991-04-28,34,F,65486.49,250,2004/8/16,0,inactive,married,60 +C1441611,1989-04-18,36,M,171927.54,150,2004/8/16,0,active,single,65 +C1611437,1989-07-01,36,M,32855.8,75,2004/8/16,0,active,single,65 +C1537466,1990-10-25,35,F,12783.53,50,2004/8/16,0,inactive,single,65 +C4234628,1988-03-18,37,M,3186.2,10885,2004/8/16,0,active,single,65 +C4325284,1987-03-16,38,M,22771.72,530.6,2004/8/16,3,active,married,65 +C8430783,1987-12-13,38,F,20594.64,555,2004/8/16,0,active,married,65 +C6419838,1990-11-25,35,M,22880.95,5757,2004/8/16,2,active,divorced,65 +C2442760,1985-02-21,40,F,35790.14,777,2004/8/16,1,active,single,65 +C5236621,1996-10-24,29,M,45299.78,2124,2004/8/16,2,deferred,divorced,65 +C7226281,1984-06-17,41,M,1551.84,20,2004/8/16,2,active,single,65 +C2635440,1932-01-16,94,M,228872.29,405.52,2004/8/16,3,inactive,married,65 +C5940325,1994-08-24,31,M,43555.69,355,2004/8/16,3,active,married,65 +C1272724,1982-06-29,43,M,4402.08,245,2009/8/16,3,retired,married,65 +C5034425,1989-11-09,36,M,54033.57,360,2009/8/16,1,active,married,65 +C1011359,1994-06-05,31,M,179.99,955,2009/8/16,1,inactive,married,65 +C6324674,1991-09-22,34,M,29436.97,70,2009/8/16,1,active,single,65 +C8737387,1989-08-03,36,M,12010.4,299,2009/8/16,1,waiver,married,65 +C3334638,3700-01-01,#NUM!,M,700,1500,2009/8/16,0,active,single,65 +C7917762,1985-01-21,41,F,43375.42,1986.5,2009/8/16,3,inactive,divorced,65 +C8037570,1990-06-20,35,M,8111.52,1274,2004/8/16,0,waiver,married,65 +C6322261,1987-09-14,38,M,4311.29,149,2004/8/16,1,active,married,65 +C6943550,1987-10-11,38,M,2495.98,110,2004/8/16,0,active,divorced,65 +C8520931,1959-04-26,66,M,156103.2,2297,2004/8/16,0,inactive,married,65 +C7742540,1979-09-06,46,M,2502.37,170,2004/8/16,0,active,married,65 +C7231945,1992-05-09,33,M,12.97,101,2004/8/16,0,waiver,single,65 +C7530036,1979-02-02,47,F,20892.73,1665,2009/8/16,3,active,married,65 +C2837736,1989-12-31,36,M,191276.9,217,2009/8/16,0,active,married,65 +C1268950,1991-06-15,34,F,21756.67,500,2009/8/16,0,inactive,single,65 +C7410760,1988-01-01,38,M,5.37,1020,2009/8/16,1,inactive,single,65 +C7840374,3700-01-01,#NUM!,M,24824.83,5000,2009/8/16,2,deferred,married,65 +C2215655,1990-03-11,35,M,171.65,300,2009/8/16,0,active,single,65 +C5054958,1986-12-02,39,F,5391.22,1800,2009/8/16,4,inactive,single,65 +C8695466,1993-01-03,33,M,43571.2,2074,2009/8/16,5,retired,married,65 +C1437248,1993-07-22,32,F,116584.57,210,2009/8/16,3,active,divorced,65 +C8891737,1991-07-08,34,M,51694.63,100,2009/8/16,1,active,married,65 +C6125425,1991-10-06,34,M,119.47,500,2009/8/16,3,active,single,65 +C4023754,1996-04-23,29,M,0.74,100,12/8/16,0,active,married,65 +C4332787,1990-09-29,35,F,63972.18,451,12/8/16,0,active,single,65 +C5220931,1990-01-30,36,F,9526.7,100,12/8/16,0,inactive,single,65 +C1840488,1989-04-29,36,F,75889.12,599,12/8/16,1,inactive,married,65 +C2918640,1989-05-16,36,M,41319.3,825,12/8/16,0,active,married,65 +C8214849,1990-05-14,35,M,8.49,80,12/8/16,0,inactive,married,65 +C5698953,3700-01-01,#NUM!,,8512.28,3449,12/8/16,2,inactive,married,65 +C5710590,1980-09-21,45,M,3042.12,2830.5,12/8/16,1,inactive,married,65 +C4631217,1996-08-25,29,F,27940.79,1328.72,12/8/16,2,unknown,married,65 +C4829664,1981-01-01,45,M,190073.86,50,12/8/16,3,inactive,married,65 +C8934869,1992-08-22,33,M,10074.33,8.99,12/8/16,0,active,single,65 +C4834518,1988-01-22,38,F,8179.54,456,12/8/16,0,deferred,single,65 +C1638021,3700-01-01,#NUM!,M,9702.54,2580,12/8/16,3,inactive,single,65 +C5523764,1979-09-21,46,M,11.98,2117,12/8/16,0,inactive,divorced,65 +C1315664,1992-02-11,34,F,4597.56,64,2008/8/16,2,deferred,married,65 +C8231241,1989-06-19,36,M,407935.95,500,2008/8/16,3,waiver,married,65 +C6323747,1988-08-10,37,M,556731.79,26991,2008/8/16,2,inactive,married,65 +C4742524,1986-04-25,39,M,22660.58,851,2008/8/16,3,deferred,single,65 +C7537492,1981-11-28,44,M,5738.43,600,2008/8/16,1,active,married,65 +C1516222,1988-04-17,37,M,17449.33,306,2008/8/16,2,retired,married,65 +C1931276,3700-01-01,#NUM!,M,114.92,390,2008/8/16,0,active,married,60 +C4138629,1994-04-27,31,M,0.7,150,2008/8/16,0,waiver,married,60 +C6417852,1984-01-23,42,M,26239,380,2008/8/16,0,active,single,60 +C4325361,3700-01-01,#NUM!,M,133203.58,100000,2007/8/16,1,deferred,married,60 +C5633923,1991-04-12,34,M,359.23,60,2007/8/16,0,deferred,single,65 +C1938713,1967-01-10,59,M,268685.24,1220,2007/8/16,0,retired,divorced,60 +C7512180,1978-11-11,47,M,1130141.97,614,2007/8/16,0,active,single,65 +C3720487,1975-09-27,50,M,1223.92,69,2007/8/16,2,deferred,married,65 +C8380118,1974-04-20,51,M,28758.9,980,2007/8/16,0,active,married,60 +C5922155,1988-07-24,37,M,10492.25,148,2007/8/16,0,retired,married,65 +C2440683,1992-09-15,33,M,1123.68,440,2007/8/16,0,active,single,60 +C6297162,1993-08-15,32,M,4546.07,148,2007/8/16,1,active,married,60 +C6276018,1989-08-19,36,F,104.57,2134.4,2007/8/16,0,active,single,65 +C6370750,1980-04-08,45,M,33661.57,496.07,2007/8/16,0,active,divorced,60 +C7534237,1985-09-04,40,M,1133.27,100,2007/8/16,0,active,single,65 +C3881215,1993-06-15,32,M,4650.59,192,2007/8/16,1,active,single,65 +C7675278,3700-01-01,#NUM!,M,1867210.51,137890,2007/8/16,0,active,married,60 +C6814469,1984-06-16,41,M,132699.5,500,2007/8/16,2,active,married,65 +C3135066,1981-10-02,44,F,28710.33,127.8,2007/8/16,0,deferred,single,60 +C1726754,1988-02-23,37,M,6130.16,200,2007/8/16,1,retired,married,60 +C5067828,1991-01-04,35,F,46936.18,5887,2007/8/16,1,active,single,65 +C8121828,1996-04-19,29,M,84.91,88,2007/8/16,4,active,single,60 +C8426486,1989-07-01,36,F,13279.12,323.72,2007/8/16,2,active,married,60 +C5117177,1984-07-08,41,F,85722.72,1378,2007/8/16,1,waiver,married,60 +C1719155,1972-02-06,54,M,10.5,1131,2007/8/16,2,active,married,60 +C7931754,1988-05-31,37,M,108913.62,500,12/8/16,2,active,married,65 +C7034179,1985-12-13,40,F,5117.84,15,12/8/16,0,active,married,65 +C7212335,1986-05-26,39,M,21457.34,100,12/8/16,0,active,married,65 +C5413870,1971-12-10,54,M,17920.6,200,21/10/16,1,active,married,65 +C2435753,1980-12-17,45,M,45812.85,518,21/10/16,0,deferred,married,65 +C4830619,1993-07-16,32,M,5795.3,203.12,21/10/16,1,retired,married,60 +C2880664,1989-07-22,36,M,76385.67,1294,21/10/16,0,active,married,65 +C9022645,#REF!,#REF!,M,1730.3,4000,21/10/16,3,active,married,60 +C2213811,1987-12-13,38,F,16431.3,1119,21/10/16,0,waiver,married,65 +C7541566,1992-12-21,33,M,2.87,40,21/10/16,0,active,married,65 +C2429086,1979-02-13,47,M,26413.93,510,21/10/16,3,deferred,single,60 +C6918371,1966-05-25,59,F,801229.49,1550,21/10/16,0,active,married,60 +C7527049,1966-04-17,59,M,5407.86,149,21/10/16,0,active,married,65 +C6058483,1990-06-04,35,M,4044.37,40,21/10/16,1,active,married,65 +C4456638,1967-07-19,58,F,36278.83,500,21/10/16,2,active,married,65 +C2811892,1989-03-16,36,M,344.25,220,21/10/16,1,unknown,married,65 +C7823561,1991-02-09,35,M,3875.77,30,21/10/16,3,waiver,married,65 +C6520033,1989-03-12,36,M,121747.74,200,21/10/16,0,active,single,65 +C2110492,1983-07-05,42,F,40366.35,4200,21/10/16,1,active,single,65 +C4217328,1988-09-19,37,M,15693.31,200,21/10/16,2,deferred,single,65 +C6927275,1986-11-10,39,M,44164.97,3142,21/10/16,2,active,divorced,65 +C2042372,1985-08-24,40,F,121821.27,1219.04,21/10/16,0,active,married,65 +C3727411,1987-02-21,38,F,167.1,199,21/10/16,2,active,married,65 +C5136863,1987-06-24,38,M,6209.42,708.05,21/10/16,0,retired,married,65 +C2434983,1988-11-29,37,M,930.8,100,21/10/16,1,inactive,married,65 +C1626454,1973-08-05,52,M,25296.5,2000,21/10/16,2,inactive,single,65 +C1316616,1966-05-26,59,F,20422.76,800,21/10/16,1,waiver,married,65 +C5042661,1974-03-16,51,F,15147.88,1000,21/10/16,1,active,married,65 +C4531588,1993-10-31,32,F,2257.58,460,21/10/16,3,inactive,married,65 +C5528968,3700-01-01,#NUM!,M,5724.5,4478,21/10/16,0,active,married,65 +C4814390,1971-10-01,54,F,78122.46,47290,21/10/16,0,active,married,65 +C6437438,1983-05-22,42,F,324551.5,25000,21/10/16,0,active,married,65 +C8738676,3700-01-01,#NUM!,M,362200.72,53000,21/10/16,0,inactive,single,65 +C1812573,1987-01-14,39,F,41268.37,35,21/10/16,1,active,married,65 +C8915718,1986-06-26,39,F,22802.23,100,21/10/16,1,active,married,65 +C5334280,1974-08-20,51,M,13996.1,100,21/10/16,2,active,married,65 +C5920074,1983-10-26,42,F,48587.19,1595,21/10/16,2,active,married,65 +C1733292,1989-11-04,36,M,174684.91,283,21/10/16,2,active,divorced,65 +C6230681,1989-11-19,36,F,7948.27,68,21/10/16,3,retired,married,65 +C1977592,1993-10-30,32,M,155684.44,3034.5,21/10/16,0,active,married,65 +C4418491,1990-03-05,35,F,17555.91,110,21/10/16,3,active,married,65 +C5212180,1986-03-18,39,F,168034.54,10,21/10/16,0,active,married,65 +C5227319,1980-05-18,45,F,4459.73,2870,21/10/16,0,inactive,single,65 +C9016392,1990-08-24,35,M,9236.65,259,21/10/16,4,active,divorced,65 +C3531473,1989-12-03,36,M,13592.65,1128.37,21/10/16,0,active,single,65 +C7340149,1977-06-28,48,M,134969.65,2200,21/10/16,0,retired,married,65 +C8091089,1973-04-10,52,M,7967.47,330,21/10/16,1,active,single,65 +C7878838,3700-01-01,#NUM!,M,444234.73,201,21/10/16,3,active,single,65 +C8917722,3700-01-01,#NUM!,M,16369.59,30990,21/10/16,0,waiver,married,65 +C8627747,1983-02-19,42,F,9158.59,899,21/10/16,3,active,married,65 +C5312019,1994-04-23,31,M,1318.31,110,21/10/16,3,waiver,married,65 +C7621186,1984-03-12,41,M,1629.89,500,21/10/16,1,deferred,single,65 +C7832128,3700-01-01,#NUM!,F,7211.41,4740,21/10/16,3,active,married,65 +C8910280,1991-07-17,34,M,17146.97,200,21/10/16,1,inactive,single,65 +C2526046,1988-01-07,38,F,31369.53,1735,21/10/16,1,deferred,divorced,65 +C2632615,1999-02-18,26,M,10266.36,327,21/10/16,1,deferred,married,65 +C2822770,3700-01-01,#NUM!,M,1426.19,6652.72,21/10/16,2,active,single,65 +C8439216,1993-04-06,32,M,10016.68,412.65,21/10/16,2,active,married,65 +C6432618,1987-08-12,38,M,394220.21,42,21/10/16,1,waiver,married,65 +C5310729,1983-01-16,43,M,16475.24,128,21/10/16,0,active,single,65 +C5741387,1984-07-02,41,F,56450.72,722,21/10/16,2,active,married,65 +C6676689,1983-05-02,42,F,56736.02,1488,21/10/16,2,retired,married,65 +C7472456,1992-03-17,33,F,4341.39,50,21/10/16,0,active,single,65 +C3117918,1985-01-06,41,M,181.22,200,21/10/16,2,active,married,65 +C1837362,1965-08-15,60,F,46278.49,1300,21/10/16,1,active,divorced,65 +C1428060,1986-06-27,39,M,38506.22,610,21/10/16,1,waiver,married,65 +C7629962,1982-05-18,43,F,28012.42,655,21/10/16,3,active,married,65 +C7921623,1988-07-18,37,M,100780.55,1203,21/10/16,1,active,single,65 +C5129934,1985-05-17,40,F,36724.28,600,21/10/16,1,inactive,divorced,60 +C7327571,1985-04-19,40,M,78479.33,18,21/10/16,0,deferred,married,60 +C3460025,1991-06-26,34,M,28185.38,1720,21/10/16,1,active,single,60 +C7812071,1993-11-21,32,M,8585.51,1150,21/10/16,2,inactive,married,60 +C1728525,1991-03-16,34,M,462.12,2647,21/10/16,0,waiver,married,60 +C4636775,1986-09-23,39,M,390.04,567,21/10/16,1,active,married,65 +C3871476,1986-09-12,39,F,71403.21,1000,21/10/16,3,inactive,married,60 +C5122418,1985-10-10,40,M,52608.41,11364,21/10/16,0,active,married,65 +C8920230,1972-08-02,53,M,30809.31,350,21/10/16,1,active,married,65 +C4336382,1978-07-19,47,M,25419.25,1890,21/10/16,2,deferred,married,60 +C7058034,1992-03-06,33,F,184680.72,50,21/10/16,0,active,divorced,65 +C5411869,1999-12-24,26,M,7486.12,1000,21/10/16,3,active,married,60 +C6952840,1981-11-05,44,M,63.58,634.12,21/10/16,0,waiver,divorced,60 +C8732711,1979-02-09,47,F,82130.58,1423,21/10/16,0,active,married,65 +C7421711,1988-05-04,37,M,32511.6,1870,21/10/16,1,active,divorced,60 +C3151961,1987-01-10,39,M,7336.76,50,21/10/16,3,waiver,married,65 +C7338641,1982-07-24,43,M,60659.23,2968,21/10/16,1,active,married,65 +C4318459,1988-12-13,37,F,25471.44,620,21/10/16,3,retired,divorced,60 +C7325318,1987-03-07,38,M,72118.89,699,21/10/16,3,retired,divorced,65 +C7136280,1984-01-06,42,M,133.8,2400,21/10/16,2,active,married,60 +C4026349,3700-01-01,#NUM!,M,150501.26,357,21/10/16,2,active,married,60 +C3418523,1982-07-12,43,M,951.07,21060,21/10/16,2,active,married,65 +C7118840,1994-05-29,31,M,5393.9,45,21/10/16,2,active,married,60 +C9045422,1987-06-13,38,M,96798.63,550,21/10/16,2,waiver,married,60 +C2324371,1941-11-09,84,M,5950.17,969,21/10/16,1,inactive,married,60 +C7119722,1992-04-15,33,M,9464.85,30,21/10/16,0,active,married,60 +C4111528,1996-01-20,30,M,342.98,50,21/10/16,2,inactive,married,65 +C4241947,1991-03-21,34,F,2540.13,94,21/10/16,0,active,married,65 +C1851438,1985-09-29,40,F,17907.01,400,21/10/16,0,active,married,65 +C3537555,1984-04-06,41,M,9.57,221.75,21/10/16,3,active,single,65 +C8046459,1954-11-25,71,M,137410.23,36500,21/10/16,0,active,married,65 +C4637288,1993-10-25,32,F,812.53,25,21/10/16,0,inactive,single,60 +C3126340,1981-06-03,44,M,177950.63,865,21/10/16,0,active,married,65 +C7358678,1970-04-27,55,M,5802.91,695,21/10/16,0,active,married,60 +C6533711,1992-02-08,34,M,6090.05,50,21/10/16,0,inactive,married,65 +C7229966,1988-06-16,37,M,17761.95,600,21/10/16,0,waiver,married,65 +C8340771,1989-09-13,36,F,9643.67,550,21/10/16,1,inactive,single,60 +C7412163,1986-10-17,39,M,43114.86,2299,21/10/16,1,inactive,married,60 +C7077319,1985-05-30,40,M,176012.36,222,21/10/16,4,active,married,65 +C5113983,1996-08-26,29,M,10498.91,2249,21/10/16,0,waiver,single,65 +C1842088,1986-12-31,39,F,179659.4,999,21/10/16,0,active,married,65 +C5115757,1975-05-29,50,M,541701.53,1512.75,21/10/16,0,active,married,65 +C2025386,3700-01-01,#NUM!,M,161886.6,500,21/10/16,1,active,married,65 +C2831424,1984-08-29,41,M,21700.36,145,21/10/16,1,inactive,married,65 +C5141914,1981-01-05,45,F,9372.35,343,21/10/16,2,waiver,single,65 +C6842357,1981-10-29,44,F,55878.83,6129,21/10/16,1,inactive,married,65 +C8732168,1990-02-21,35,M,32.83,50,21/10/16,0,inactive,single,65 +C8028147,1990-08-16,35,M,9.68,100,21/10/16,1,inactive,married,65 +C4928385,1996-11-20,29,M,42734.8,465,21/10/16,0,active,single,65 +C8019992,1981-02-03,45,M,22.81,200,21/10/16,0,inactive,married,65 +C1199845,1976-07-07,49,M,111181.72,2821,21/10/16,0,deferred,married,65 +C4514125,1978-02-13,48,M,11162.85,50,21/10/16,2,active,single,65 +C3540268,1984-03-18,41,M,42160.52,800,21/10/16,0,active,divorced,65 +C2112770,1980-12-14,45,M,624345.66,1378,21/10/16,0,active,married,65 +C4741192,1981-08-13,44,M,645317.85,6458,21/10/16,1,active,single,65 +C7622921,1990-07-06,35,M,88207.21,211,21/10/16,1,retired,married,65 +C1230589,1986-06-18,39,M,6826.87,232,21/10/16,1,waiver,divorced,65 +C2842136,1988-06-30,37,M,13630.73,216,21/10/16,0,active,married,65 +C5484469,1992-04-13,33,M,2643.71,200,21/10/16,0,retired,married,65 +C6537226,1988-10-15,37,F,54843.8,75,21/10/16,0,active,single,65 +C2715020,1991-07-07,34,F,30858.02,300,21/10/16,0,waiver,single,65 +C7719580,1986-01-12,40,F,6752.89,50,21/10/16,4,active,single,65 +C7621040,1990-06-16,35,M,3274.6,21,21/10/16,3,active,single,65 +C2640757,1991-07-16,34,M,5767.88,28,21/10/16,2,active,married,65 +C6038224,1976-10-08,49,F,53306.02,5000,21/10/16,1,active,married,65 +C1531843,1992-09-22,33,M,3842.82,250,21/10/16,1,inactive,married,65 +C6840862,1988-12-24,37,F,18838.81,1200,21/10/16,0,waiver,married,65 +C7818719,1992-03-03,33,M,18381.01,100,21/10/16,0,active,married,65 +C6918613,1991-03-07,34,M,1559.32,2600,21/10/16,0,active,married,65 +C6097555,1991-01-28,35,F,138784.88,750,21/10/16,0,active,married,65 +C6514450,1985-06-07,40,F,103118.04,498,21/10/16,0,active,married,65 +C9013087,1979-08-13,46,M,92594.19,337,21/10/16,0,active,married,65 +C3394923,1971-06-21,54,M,30450.9,2000,21/10/16,0,deferred,single,60 +C6330647,1997-05-28,28,M,20697.68,285,21/10/16,3,deferred,married,65 +C8232987,1985-07-19,40,F,254.5,96,21/10/16,3,active,single,60 +C2617558,1988-11-01,37,M,28233.63,275,21/10/16,0,inactive,divorced,65 +C4036642,1990-01-30,36,F,23163.29,652,21/10/16,0,deferred,single,65 +C9032313,1993-11-28,32,F,112819.01,1168,21/10/16,2,active,single,60 +C3634380,1979-05-07,46,M,27961.15,1483.16,21/10/16,1,active,married,65 +C4221454,1987-07-01,38,M,85674.55,644.3,21/10/16,0,retired,married,60 +C4423943,1985-09-23,40,M,84084.13,2605,21/10/16,1,active,married,60 +C8839356,1972-02-24,53,M,32286.34,1984,21/10/16,2,active,married,65 +C7038486,1970-09-06,55,M,7342.23,2187,21/10/16,1,deferred,single,60 +C6784890,1971-05-10,54,M,1441016.64,60000,21/10/16,3,active,single,65 +C6386783,1994-01-12,32,F,949.11,337.34,21/10/16,2,active,single,65 +C3714185,1979-01-31,47,M,98395.61,4592,21/10/16,2,active,single,60 +C6264271,1992-01-16,34,M,57385.53,28,21/10/16,3,waiver,married,65 +C5430731,1989-12-04,36,F,15997.41,100,21/10/16,0,retired,married,60 +C4930849,1986-10-08,39,F,8394.17,103,21/10/16,0,retired,married,60 +C8641980,1980-04-15,45,M,57048.4,3000,21/10/16,1,deferred,married,65 +C4222235,3700-01-01,#NUM!,F,60126.99,1048,21/10/16,2,active,married,60 +C2014613,1986-04-17,39,M,18181.91,708,21/10/16,0,inactive,married,60 +C7534876,1994-10-18,31,F,28941.17,990,21/10/16,0,deferred,single,60 +C7731530,1991-02-23,34,M,43272.64,219,21/10/16,3,active,married,60 +C6840345,1994-12-14,31,M,8451.61,2300,21/10/16,0,active,married,65 +C7120864,1990-08-12,35,M,14377.54,2000,21/10/16,3,active,divorced,65 +C3160615,1991-08-08,34,F,99466.74,350,21/10/16,1,deferred,single,65 +C7510323,1992-08-06,33,M,161.13,51,21/10/16,2,active,married,65 +C5539028,1990-07-07,35,M,9457.5,200,21/10/16,0,active,married,65 +C2523832,1986-05-28,39,M,29650.64,230,21/10/16,0,retired,married,60 +C3423268,1988-12-25,37,F,3647.29,563.5,21/10/16,2,deferred,married,65 +C6117158,1989-09-25,36,M,128.84,0,21/10/16,2,active,married,60 +C8625213,1993-09-08,32,M,4115.34,510,21/10/16,0,active,married,65 +C7032258,1995-09-27,30,F,16390.37,644,21/10/16,0,active,married,65 +C7337245,3700-01-01,#NUM!,M,24299.04,388,21/10/16,2,active,married,60 +C3813163,1992-03-25,33,F,2717.23,13259,21/10/16,0,active,married,60 +C8437679,1976-06-19,49,F,3805.21,210,21/10/16,3,deferred,married,65 +C4417679,1921-01-19,105,M,1125922.25,4570,21/10/16,4,active,single,65 +C5622325,1991-10-23,34,M,172.91,237,21/10/16,0,active,single,65 +C4236661,1989-11-10,36,M,166521.05,240,21/10/16,1,retired,married,65 +C5935385,1980-10-22,45,M,32651.06,300,21/10/16,1,active,married,65 +C6784159,3700-01-01,#NUM!,M,29316.59,519,21/10/16,2,active,married,65 +C2968718,1997-08-21,28,M,19152.89,1499,21/10/16,0,active,married,65 +C7716767,1988-03-11,37,F,2749.41,260,21/10/16,3,inactive,married,65 +C3541422,1985-05-23,40,M,21444,594.56,21/10/16,0,active,single,65 +C8229882,1984-01-31,42,M,9244.59,100,21/10/16,2,active,married,65 +C3938071,1986-12-23,39,M,41197.54,683,21/10/16,0,active,married,65 +C8628733,1988-11-04,37,F,77624.68,1221,21/10/16,0,active,divorced,65 +C3912274,1954-07-07,71,F,353229.25,395,21/10/16,1,active,single,65 +C2110459,1991-05-02,34,M,30076.34,506,21/10/16,0,active,single,65 +C4139017,1989-03-04,36,F,7169.16,650,21/10/16,3,retired,married,60 +C2811565,1975-11-18,50,M,1266244.71,148,21/10/16,0,active,married,65 +C8126492,1995-03-11,30,M,2009.98,1354,21/10/16,2,waiver,married,60 +C3156985,1991-05-19,34,M,7666.47,80,21/10/16,0,active,married,65 +C5213349,1995-04-29,30,F,1376.97,397,21/10/16,1,active,married,65 +C3667192,1997-08-31,28,M,5335.89,50,21/10/16,3,active,married,60 +C2837481,1965-08-08,60,M,273790.97,171,21/10/16,1,inactive,married,65 +C7817535,1988-11-01,37,M,28233.63,275,21/10/16,0,active,married,60 +C4115961,1995-03-02,30,M,43575.38,875,21/10/16,1,active,single,60 +C2950158,1972-10-05,53,M,242579.54,2000.19,21/10/16,2,retired,divorced,65 +C5537445,1985-02-08,41,M,19960.44,99,21/10/16,5,active,married,60 +C4213285,1982-11-08,43,M,22167.76,452,21/10/16,0,active,married,65 +C7630140,1979-12-17,46,M,26374.46,9075,21/10/16,1,active,divorced,65 +C2914823,1991-05-14,34,M,11138.19,200,21/10/16,0,deferred,single,60 +C4537121,1992-10-17,33,F,32968.38,205,21/10/16,2,active,single,65 +C6437872,1986-08-22,39,M,45069.57,490,21/10/16,1,waiver,married,60 +C1114311,3700-01-01,#NUM!,M,899.41,320,21/10/16,0,active,married,60 +C3840965,1987-02-12,39,M,38257.19,2696,21/10/16,0,inactive,divorced,65 +C6217716,1986-05-13,39,M,3216.94,580,21/10/16,0,active,married,60 +C5114674,1992-03-06,33,M,24563.99,261,21/10/16,1,active,single,60 +C1232924,1985-12-19,40,M,29131.45,466,21/10/16,0,active,single,60 +C2314214,1990-02-02,36,M,3788.48,300,21/10/16,2,deferred,single,60 +C7138564,1992-03-25,33,M,12813.03,197,21/10/16,5,active,single,65 +C7828347,1988-11-12,37,M,15715.27,754,21/10/16,1,active,married,65 +C8210270,1984-12-23,41,F,294839.25,2295,21/10/16,0,active,married,65 +C1899643,1978-06-09,47,F,103551.87,1456.5,21/10/16,1,active,married,65 +C3713674,1982-06-08,43,M,18235.62,402,21/10/16,3,active,married,65 +C8617711,1990-07-14,35,M,51579.97,397,21/10/16,0,active,married,60 +C3821883,1989-02-13,37,F,23063.11,100,21/10/16,2,active,married,65 +C3818064,1994-05-26,31,M,8365.12,240,21/10/16,0,active,single,60 +C1527066,1986-02-13,40,M,241794.04,485,21/10/16,0,active,married,65 +C7799665,1992-04-14,33,M,134.54,520,21/10/16,1,active,married,65 +C6023875,1981-04-28,44,M,1305.9,270,21/10/16,3,waiver,divorced,60 +C4632060,1995-10-14,30,F,4191.96,435,21/10/16,0,waiver,married,60 +C3720836,1986-08-24,39,M,2048.45,1000,21/10/16,3,inactive,single,65 +C8722855,1994-05-01,31,M,829.83,130,21/10/16,5,active,married,65 +C5335359,1992-08-04,33,M,14992.08,515,21/10/16,0,active,married,65 +C1895453,1985-01-01,41,M,13719.24,100,21/10/16,1,inactive,divorced,65 +C8029671,1975-02-04,51,M,8249.92,1845,21/10/16,0,inactive,single,65 +C5474181,1996-07-09,29,M,9153.16,187,21/10/16,0,active,single,65 +C8030530,1987-06-21,38,F,12659.59,10050,21/10/16,1,active,married,65 +C8938911,1984-09-19,41,M,42870.63,708.05,21/10/16,1,retired,married,65 +C5429457,1992-06-04,33,M,2399.78,100,21/10/16,0,active,married,65 +C5328937,1977-06-30,48,M,634660.99,815,21/10/16,0,active,married,65 +C4432927,1981-08-26,44,M,2275.18,1742,21/10/16,0,retired,married,65 +C6441590,1984-09-08,41,M,59092.52,450,21/10/16,0,inactive,married,65 +C1797182,1990-06-24,35,M,22307.41,98,21/10/16,1,waiver,married,65 +C5511248,1992-09-08,33,M,11596.26,88.93,21/10/16,4,active,married,65 +C7217166,1985-02-19,40,M,41989.1,240,21/10/16,1,inactive,divorced,65 +C8712373,1988-03-06,37,M,32785.84,1156,21/10/16,0,active,married,65 +C6483027,1991-07-22,34,F,98044.88,827.5,21/10/16,0,active,married,65 +C2612542,1986-01-19,40,M,75587.62,50,21/10/16,2,active,married,65 +C1225647,1987-01-27,39,F,15959.46,269,21/10/16,0,active,married,65 +C5826167,1987-07-10,38,M,1050.69,200,21/10/16,2,waiver,single,65 +C2528724,1991-04-04,34,M,2918.25,323,21/10/16,0,deferred,single,65 +C1727311,1969-06-10,56,M,25416.56,150,21/10/16,0,active,single,65 +C5614421,3700-01-01,#NUM!,M,27021.05,1396,21/10/16,3,active,divorced,65 +C3342749,1982-11-15,43,M,421792.18,919,21/10/16,3,inactive,married,65 +C8264621,1977-07-28,48,F,14132.92,732,21/10/16,0,active,married,65 +C7521013,1981-04-12,44,M,11313.61,276,21/10/16,2,active,divorced,65 +C4773979,1984-07-05,41,M,15260.46,250,21/10/16,0,active,divorced,65 +C3928354,1981-10-14,44,M,95544.02,1590,21/10/16,0,active,married,65 +C1425515,1990-03-13,35,M,44439.74,830.37,21/10/16,1,retired,married,65 +C1617685,3700-01-01,#NUM!,M,3087.42,799.01,21/10/16,1,waiver,married,65 +C7612544,1987-01-20,39,M,3835.87,920,21/10/16,2,active,married,65 +C4394558,1977-05-05,48,F,92844.7,850,21/10/16,1,active,single,65 +C3436881,1974-10-15,51,F,3881.45,620,21/10/16,1,active,single,65 +C8327525,1990-05-01,35,M,19807.16,187,21/10/16,0,active,married,65 +C7114189,1985-08-24,40,M,39227.48,616,21/10/16,0,waiver,married,65 +C5252118,1989-02-18,36,F,96276.9,500,21/10/16,0,waiver,married,65 +C7829873,1995-06-11,30,F,21307.15,1250,21/10/16,0,inactive,married,65 +C2431087,1991-04-06,34,F,5476.53,162,21/10/16,3,active,married,65 +C4933226,1982-01-17,44,F,310.7,1000,21/10/16,1,active,married,65 +C5934331,1981-05-01,44,M,420379.48,147,21/10/16,0,active,married,65 +C4340982,1979-08-21,46,F,10087.29,252,21/10/16,0,retired,married,65 +C2335765,1986-12-02,39,M,10616.71,259.59,21/10/16,0,deferred,married,65 +C7938756,1988-05-28,37,F,1057.77,790.72,21/10/16,0,active,married,65 +C3724211,1991-03-15,34,F,17535.04,110,21/10/16,3,active,single,65 +C7014439,1989-07-22,36,M,100.65,200,21/10/16,2,active,single,65 +C8974331,1986-12-02,39,M,1340.03,568,21/10/16,0,active,married,65 +C5520971,1987-06-22,38,M,6988.14,259,21/10/16,1,active,married,65 +C6082523,3700-01-01,#NUM!,M,1083916.5,192,21/10/16,3,active,married,65 +C8013820,1904-07-12,121,F,6661.03,110,21/10/16,0,retired,married,65 +C1318582,1983-07-01,42,M,9252.2,200,21/10/16,3,deferred,divorced,65 +C6853171,1988-12-26,37,M,10794.98,92,21/10/16,0,active,married,65 +C2821032,1990-10-12,35,M,9007.33,775,21/10/16,0,active,single,65 +C8540990,1986-10-05,39,M,67084.47,1047,21/10/16,1,active,married,65 +C2027064,1978-06-05,47,M,647135.07,19.84,21/10/16,0,active,married,65 +C1523527,1993-05-18,32,F,2501.15,30,21/10/16,0,deferred,divorced,65 +C6034079,1943-11-24,82,M,47483.12,10000,21/10/16,0,inactive,married,65 +C6440730,1991-07-16,34,M,5767.88,75,21/10/16,0,inactive,married,60 +C6392547,1982-05-12,43,M,12658.58,5000,21/10/16,4,active,single,60 +C2637556,1970-07-16,55,F,98203.35,250,21/10/16,0,active,divorced,60 +C4925560,1980-02-15,46,M,18.38,184,21/10/16,2,retired,married,60 +C4214976,1987-10-18,38,M,11778.81,200,21/10/16,2,active,single,60 +C5265862,1991-06-20,34,M,7811.65,459,21/10/16,2,active,single,60 +C1223051,1989-01-04,37,F,297.49,500,21/10/16,0,active,single,60 +C6028923,1979-08-30,46,F,52408.18,2248,21/10/16,0,active,single,60 +C2519987,1995-08-14,30,F,4559.27,655,21/10/16,0,inactive,married,60 +C8023317,1989-03-06,36,M,9230.77,120,21/10/16,1,active,married,65 +C3373914,1984-10-16,41,F,10577.72,1045,21/10/16,0,deferred,single,60 +C2419958,1982-06-14,43,M,4966.59,25,21/10/16,1,active,married,65 +C3015379,1985-05-31,40,M,126023.26,1990,21/10/16,3,inactive,married,65 +C4147629,1968-01-13,58,F,38457.11,526,21/10/16,1,waiver,single,60 +C3830864,1987-05-25,38,M,134.18,240,21/10/16,2,waiver,divorced,65 +C7330163,1990-02-02,36,M,30774.49,730,21/10/16,0,active,single,60 +C2422018,1989-10-07,36,M,33333.34,276,21/10/16,0,active,single,60 +C7532313,1984-11-15,41,M,25756.82,1500,21/10/16,1,active,married,65 +C2322689,1987-06-20,38,M,25927.38,13008,21/10/16,0,active,married,60 +C2328547,1994-01-10,32,M,9929.14,287.28,21/10/16,0,active,married,65 +C2429954,1990-12-18,35,M,47016,845,21/10/16,0,active,divorced,65 +C1572178,1991-11-18,34,M,54587.99,228,21/10/16,1,active,married,60 +C2315925,1990-07-10,35,F,18142.33,34,21/10/16,0,inactive,divorced,65 +C3211482,1993-06-16,32,M,397.97,50,21/10/16,1,active,married,60 +C8240264,1978-12-14,47,M,22686.03,450,21/10/16,2,active,married,60 +C5818075,1986-02-15,40,M,44145.13,1506,21/10/16,1,active,married,65 +C4718983,1994-04-13,31,M,34897.03,140,21/10/16,0,retired,married,60 +C6616326,1997-01-10,29,M,14858.06,12.87,21/10/16,0,deferred,married,60 +C7714469,3700-01-01,#NUM!,M,27021.05,1200,21/10/16,0,waiver,married,60 +C5419726,1990-10-18,35,F,9923.12,100,21/10/16,0,inactive,divorced,60 +C2418783,1986-12-27,39,F,12868.45,484,21/10/16,0,active,married,65 +C5832489,1998-01-20,28,M,166.83,160,21/10/16,1,deferred,married,65 +C5072857,3700-01-01,#NUM!,M,3053688.58,1088,21/10/16,0,retired,married,65 +C5122937,1989-07-11,36,M,1608.91,70,21/10/16,2,inactive,married,65 +C1989339,1985-07-08,40,F,386.27,1884,21/10/16,1,inactive,divorced,65 +C8811225,1989-07-11,36,M,351.28,3150,21/10/16,1,deferred,married,60 +C5296375,3700-01-01,#NUM!,F,59205.18,1795,21/10/16,0,active,married,65 +C2857030,3700-01-01,#NUM!,F,300634.98,9960,21/10/16,1,deferred,single,60 +C9016635,1980-09-16,45,F,447165.79,1610,21/10/16,0,active,married,65 +C7937977,1988-12-04,37,M,11438.82,780,21/10/16,2,inactive,single,65 +C5612683,1980-03-06,45,M,32417.7,261,21/10/16,0,active,divorced,60 +C9042919,1977-07-17,48,M,3551,200,21/10/16,0,active,married,60 +C8393123,1972-01-15,54,F,14500.31,15,21/10/16,1,active,married,65 +C1325265,1978-03-24,47,M,669628.11,210,21/10/16,3,active,married,65 +C2810471,1988-06-04,37,M,38570.47,500,21/10/16,2,active,single,65 +C6912619,1990-05-11,35,M,49019.49,512.99,21/10/16,1,active,married,65 +C5741118,1987-07-09,38,M,203711.21,1792,21/10/16,0,inactive,married,65 +C3536544,1988-11-10,37,M,139160.66,130,21/10/16,3,inactive,single,65 +C1638314,1976-05-09,49,M,422.26,2031.51,21/10/16,2,active,single,65 +C1842235,1988-07-07,37,M,662.21,258,21/10/16,0,deferred,married,65 +C4136213,1990-06-27,35,M,26390.69,333,21/10/16,0,active,married,65 +C7030625,1988-05-17,37,M,21667.38,170,21/10/16,0,inactive,married,65 +C1539067,3700-01-01,#NUM!,M,12831.13,180,21/10/16,2,active,married,65 +C7872145,1986-04-06,39,M,19643.65,380,21/10/16,0,waiver,married,65 +C7999240,1991-11-02,34,F,13144.9,1316,21/10/16,2,active,married,65 +C2060082,1976-05-16,49,M,43317.36,2268,21/10/16,0,active,single,65 +C6325664,1988-04-13,37,F,23207.49,1355,21/10/16,0,deferred,single,60 +C1821816,1991-05-15,34,M,9890.44,359,21/10/16,0,active,married,65 +C8686624,1992-01-17,34,F,19291.42,30,21/10/16,0,active,married,60 +C6733450,1982-06-12,43,M,62638.5,298,21/10/16,0,retired,married,65 +C7023858,1975-04-26,50,F,769951.62,17000,21/10/16,2,waiver,married,65 +C6835078,1988-05-30,37,F,2759.06,23,21/10/16,0,active,single,60 +C4036863,1988-03-18,37,M,18706.74,1217,21/10/16,2,inactive,married,65 +C8613544,3700-01-01,#NUM!,M,62914.77,394,21/10/16,1,active,married,60 +C6631437,1989-01-08,37,M,11614.1,50000,21/10/16,0,active,single,60 +C1137841,1980-02-25,45,M,0.07,380,21/10/16,3,active,married,65 +C7626891,1992-12-14,33,F,4392.57,10,21/10/16,0,active,divorced,60 +C6291290,1979-07-29,46,F,60104.75,7200,21/10/16,2,active,married,65 +C3522028,1990-07-24,35,M,11349.54,849,21/10/16,0,deferred,single,65 +C6316191,1980-12-12,45,M,677018.63,197,21/10/16,0,deferred,married,60 +C3520148,1992-08-26,33,F,5566.9,127,21/10/16,1,active,married,65 +C4117090,1974-01-29,52,M,17139.61,2500.6,21/10/16,2,active,married,60 +C2099178,1987-03-02,38,M,28196.26,160,21/10/16,0,active,married,60 +C3615151,1989-04-25,36,F,4478.63,660,21/10/16,1,waiver,single,65 +C6135027,1988-11-08,37,M,2360.09,308.15,21/10/16,2,active,divorced,60 +C7727880,1986-05-07,39,M,5329.47,20,21/10/16,5,inactive,married,60 +C8765132,1978-03-13,47,M,12831.55,285,21/10/16,2,deferred,single,60 +C3023813,1987-12-10,38,M,24710.51,1475,21/10/16,0,waiver,married,60 +C4033248,1990-08-23,35,M,50003.39,1364.2,21/10/16,1,waiver,married,65 +C2926251,1990-09-04,35,F,17378,1622,21/10/16,2,active,married,65 +C5933767,1980-09-24,45,F,16177.44,2365,21/10/16,1,retired,married,65 +C7719366,3700-01-01,#NUM!,M,137781.27,147,21/10/16,2,deferred,divorced,65 +C4111225,1991-06-20,34,M,24876.86,362,21/10/16,0,retired,married,65 +C5920733,1991-05-05,34,F,12630.24,50,21/10/16,0,deferred,married,60 +C5727049,1981-04-01,44,M,31121.47,349,21/10/16,1,active,married,65 +C7732922,1968-05-17,57,M,2916683.97,6199,21/10/16,1,active,married,60 +C7259665,1985-08-26,40,F,57223.95,603,21/10/16,0,active,single,65 +C3310819,1990-03-15,35,M,43555.05,750,21/10/16,1,active,married,65 +C5542783,1981-04-04,44,M,65996.33,1708,21/10/16,0,active,single,60 +C5146066,1951-09-02,74,M,407051.95,790,21/10/16,2,inactive,married,60 +C2912259,1983-05-18,42,M,436243.84,239.8,21/10/16,1,active,single,65 +C5530114,1983-08-21,42,F,368504.91,1450,21/10/16,0,active,married,65 +C3812526,1990-11-29,35,M,27806.66,253,21/10/16,1,active,divorced,65 +C3613326,1994-08-12,31,M,100336.79,1000,21/10/16,3,waiver,single,65 +C8716458,1978-12-18,47,M,486804.15,1500,21/10/16,1,waiver,married,65 +C1620690,1979-04-14,46,F,10096.04,300,21/10/16,0,active,married,65 +C5224187,1992-12-25,33,M,696.66,100,21/10/16,1,active,married,65 +C8419055,3700-01-01,#NUM!,M,19314.61,460,21/10/16,0,waiver,married,65 +C8774171,1994-11-10,31,F,4622.3,20,21/10/16,1,active,married,65 +C3823813,1981-06-14,44,F,452702.93,25,21/10/16,2,deferred,married,65 +C5815025,1986-12-05,39,M,16275.48,3600,21/10/16,1,active,married,65 +C4731576,1996-03-06,29,M,55670.65,1225,21/10/16,0,inactive,single,65 +C3596978,1993-11-08,32,M,9142.87,100,21/10/16,1,waiver,married,65 +C5524315,1995-08-26,30,M,39799.66,22,21/10/16,2,retired,married,65 +C6421261,1987-12-09,38,M,8446.57,5555,21/10/16,1,retired,married,65 +C4834786,1992-04-22,33,M,1811.03,50,21/10/16,2,retired,divorced,65 +C3123128,1985-09-05,40,M,13886.47,2000,21/10/16,2,active,divorced,65 +C4026042,1978-12-19,47,F,299840.26,100,21/10/16,0,retired,divorced,65 +C1798829,1992-09-30,33,M,7.18,540,21/10/16,0,waiver,married,65 +C8439888,1985-12-02,40,M,6176.77,26,21/10/16,0,active,married,65 +C7217523,1984-01-18,42,M,260955.27,121.67,21/10/16,3,deferred,single,65 +C1240911,1993-02-10,33,M,1631.51,126.07,21/10/16,0,active,married,65 +C4338118,1992-08-27,33,M,17243.17,250,21/10/16,0,inactive,married,65 +C6858828,1990-06-10,35,M,92316.6,143,21/10/16,0,active,married,65 +C4752865,1988-07-19,37,M,149188.54,186,21/10/16,0,active,divorced,65 +C8314956,1990-05-04,35,M,19967.63,485,21/10/16,2,inactive,single,65 +C2214119,1979-01-31,47,M,98395.61,600,21/10/16,2,active,married,65 +C3823457,1981-07-19,44,M,29273.29,350.31,21/10/16,1,deferred,single,65 +C5547045,1986-09-05,39,M,143892.55,60,21/10/16,2,active,married,65 +C1621631,1982-05-26,43,M,315346.9,1695,21/10/16,0,waiver,single,65 +C1284053,1977-12-04,48,F,292159.14,108,21/10/16,3,waiver,married,65 +C4671617,1989-03-28,36,M,4418.57,340,21/10/16,0,active,married,65 +C3041042,1960-11-16,65,M,31.12,606.9,21/10/16,1,active,married,65 +C4822239,1993-04-12,32,M,526.84,100,21/10/16,0,active,single,65 +C5516884,1983-05-16,42,M,111071.61,202,21/10/16,2,active,single,60 +C4833337,1991-01-15,35,M,2517.66,500,21/10/16,0,active,married,65 +C3780212,1980-07-02,45,M,1341.12,2345,21/10/16,0,active,married,60 +C7314039,3700-01-01,#NUM!,M,82.94,699,21/10/16,1,active,married,65 +C2810414,1976-08-04,49,M,9643.97,500,21/10/16,4,active,single,65 +C6819784,3700-01-01,#NUM!,M,20000.29,1200,21/10/16,1,active,single,60 +C7197559,1994-12-22,31,M,5635.18,798,21/10/16,0,active,single,65 +C1120687,1976-06-05,49,M,107406.89,2415,21/10/16,0,waiver,married,60 +C7127221,1991-11-30,34,F,14817.46,195,21/10/16,0,active,married,60 +C2336744,1987-01-19,39,M,8559.68,840,21/10/16,3,active,single,65 +C2913878,1993-08-10,32,F,12073.25,1205,21/10/16,1,retired,married,60 +C8916922,1983-10-19,42,M,4347.18,844,21/10/16,0,active,married,65 +C3370168,1994-10-13,31,M,8044.39,260,21/10/16,0,active,married,65 +C1239292,1987-07-06,38,M,1839.82,100,21/10/16,1,active,single,60 +C8712346,1987-01-05,39,M,13027.49,42,21/10/16,0,active,married,65 +C1920030,1990-05-25,35,M,31468.91,229,21/10/16,0,active,married,60 +C1631387,1990-04-08,35,M,4228.37,5,21/10/16,2,retired,married,60 +C6020515,1975-03-31,50,M,571075.98,2188.25,21/10/16,1,waiver,divorced,65 +C3795014,1986-01-21,40,M,11393.7,578.4,21/10/16,0,active,divorced,60 +C8621553,1986-05-26,39,M,93654.64,2990,21/10/16,1,active,divorced,60 +C1250563,3700-01-01,#NUM!,F,11255.27,1119.2,21/10/16,2,waiver,married,60 +C2838379,1978-05-26,47,M,1907.42,1290,21/10/16,0,active,divorced,60 +C5922587,1980-02-22,45,F,1307115.42,108.39,21/10/16,4,active,single,65 +C4625745,1992-07-08,33,M,27594.57,200,21/10/16,5,inactive,divorced,65 +C7021283,1994-04-09,31,M,11717.07,100,21/10/16,3,unknown,married,65 +C4429392,1980-07-20,45,F,5993.42,1180,21/10/16,0,inactive,single,65 +C7014487,1990-11-14,35,F,35534.79,30,21/10/16,3,active,married,65 +C5416434,1992-01-01,34,M,5783.92,30,21/10/16,2,waiver,single,60 +C1033733,1987-07-01,38,M,168442.09,395,21/10/16,3,waiver,married,65 +C4986071,1985-01-29,41,M,64716.2,850,21/10/16,1,active,married,60 +C8513285,1982-05-24,43,M,8579.95,1731,21/10/16,3,active,divorced,65 +C1442137,1987-05-20,38,F,21750.29,400,21/10/16,0,waiver,married,65 +C5515081,1983-03-06,42,M,24691.34,1800,21/10/16,0,active,married,60 +C2922052,1994-07-09,31,M,447511.35,300,21/10/16,2,retired,single,60 +C7819454,1991-05-22,34,M,3574.85,50,21/10/16,1,waiver,single,65 +C5734570,1982-10-01,43,F,28786.32,620,21/10/16,0,waiver,divorced,65 +C5040268,1991-08-18,34,F,24754.28,1625,21/10/16,2,deferred,married,65 +C3622138,1996-03-20,29,M,6302.22,170,21/10/16,0,retired,married,65 +C1329868,1990-07-03,35,M,280237.87,300,21/10/16,2,retired,married,65 +C1733171,1990-10-06,35,M,16735.91,200,21/10/16,1,retired,divorced,65 +C1622576,1988-05-23,37,M,79291.13,255,21/10/16,2,retired,married,65 +C5520512,1993-03-31,32,M,39.62,200,21/10/16,1,active,married,65 +C6179375,1984-10-30,41,M,123036.55,3150,21/10/16,4,active,married,65 +C4940752,1991-12-01,34,M,886.74,24,21/10/16,3,active,divorced,65 +C5512786,1989-11-24,36,F,539.83,717,21/10/16,1,active,single,65 +C7427486,1990-06-25,35,M,8818.79,2000,21/10/16,1,active,single,60 +C1189836,1976-12-28,49,M,0,13259.48,21/10/16,0,waiver,married,65 +C2765886,1973-08-07,52,M,187917.22,570,21/10/16,0,active,single,60 +C2410073,1993-08-31,32,F,2465.7,268,21/10/16,2,active,married,65 +C4928285,1992-11-25,33,F,40220.89,600,21/10/16,1,active,married,65 +C7142551,1989-08-08,36,M,9144.66,5349,21/10/16,2,active,married,60 +C1823447,3700-01-01,#NUM!,M,6845.26,30,21/10/16,0,retired,divorced,65 +C8714375,1985-05-28,40,M,9875.27,4898,21/10/16,1,active,married,60 +C6214060,1983-07-02,42,M,11129.21,150,21/10/16,3,active,married,60 +C5311338,1990-06-10,35,M,11179.25,411,21/10/16,0,active,married,65 +C2424214,1976-06-05,49,M,33547.49,100.85,21/10/16,0,waiver,married,60 +C2421359,1987-10-05,38,M,141686.3,353,21/10/16,0,active,married,65 +C7714250,3700-01-01,#NUM!,M,525000,7600,21/10/16,2,inactive,divorced,65 +C8816330,1982-10-02,43,M,13504.55,340,21/10/16,0,active,married,60 +C2733313,1993-07-28,32,F,7087.18,318,21/10/16,3,active,single,65 +C7823160,1983-10-14,42,M,907860.31,426,21/10/16,3,active,married,60 +C1738788,1971-06-02,54,M,67582.99,4000.21,21/10/16,3,deferred,single,60 +C8339146,1981-10-07,44,M,91348.86,410,21/10/16,2,retired,married,65 +C2838757,1992-11-24,33,M,62661.12,1904,21/10/16,1,inactive,single,60 +C1813747,1970-12-12,55,M,8349.68,186,21/10/16,0,active,married,60 +C4435232,1990-06-04,35,F,7713.36,263,21/10/16,2,waiver,married,60 +C5937662,1989-09-16,36,M,41836.46,1300,21/10/16,0,active,single,60 +C4719865,1970-05-02,55,M,720060.35,2000,21/10/16,1,deferred,single,65 +C2939112,1991-04-18,34,M,6446.24,321,21/10/16,2,deferred,married,65 +C7112132,1992-06-07,33,F,68194.71,1200,21/10/16,2,active,married,65 +C3218136,1977-06-06,48,M,33629.74,1320,21/10/16,0,active,married,65 +C8925657,1990-05-16,35,M,16221.29,959,21/10/16,1,active,married,65 +C5132826,1986-03-25,39,F,33734.43,2227,21/10/16,1,active,single,60 +C3629920,1956-08-03,69,M,7770.27,280,21/10/16,0,active,single,65 +C7213132,1992-01-26,34,M,16922.99,250,21/10/16,1,deferred,single,60 +C6993164,1975-05-21,50,M,1473749.77,209,21/10/16,1,active,single,65 +C6724814,1990-02-13,36,M,6211.61,177,21/10/16,0,waiver,married,65 +C6736389,1985-10-21,40,M,6037.2,2060,21/10/16,1,active,married,60 +C7320989,1988-04-07,37,M,3040.43,295,21/10/16,0,retired,married,60 +C1221915,1992-04-17,33,F,2808.51,1540,21/10/16,2,waiver,married,65 +C7029037,1990-10-03,35,M,18837.33,30,21/10/16,1,active,married,65 +C1028625,1988-05-01,37,M,61244.37,72,21/10/16,0,active,single,65 +C7536216,1992-03-08,33,F,3113.28,1212.6,21/10/16,2,waiver,married,65 +C7528429,1991-12-20,34,M,13099.68,100,21/10/16,0,deferred,married,65 +C3850992,1994-03-01,31,M,38058.83,4330,21/10/16,0,active,single,65 +C3422515,1982-09-11,43,F,103023.35,440,21/10/16,0,active,divorced,65 +C1442661,1976-09-26,49,M,7955.08,1633.15,21/10/16,1,active,married,65 +C7436623,1989-11-10,36,M,166521.05,240,21/10/16,1,retired,married,65 +C2292425,1992-10-12,33,F,27532.79,849,21/10/16,2,waiver,divorced,65 +C8116647,3700-01-01,#NUM!,M,37956.24,500,21/10/16,0,active,single,65 +C6626078,1990-03-12,35,F,37844.28,496,21/10/16,3,retired,married,65 +C6834271,1986-04-11,39,M,3259.99,122,21/10/16,3,active,married,65 +C2541746,1985-01-19,41,M,472641.36,1630,21/10/16,0,retired,married,65 +C3714911,1987-08-18,38,M,107.42,530,21/10/16,1,active,married,65 +C1484482,1992-04-13,33,M,2643.71,135,21/10/16,2,retired,divorced,65 +C4327789,1982-01-26,44,M,200517.6,1264,21/10/16,2,active,single,65 +C2825813,1986-12-21,39,M,13807.28,3597,21/10/16,0,deferred,single,65 +C8842071,1998-10-13,27,M,2566.47,11,21/10/16,0,active,single,65 +C5235918,1992-01-01,34,M,4370.67,1004,21/10/16,0,inactive,single,65 +C1727973,1987-01-07,39,M,31450.41,310,21/10/16,1,active,married,65 +C6580983,1987-05-09,38,M,4331.24,190,21/10/16,1,active,married,65 +C5141527,1953-11-27,72,M,2140.87,80,21/10/16,2,active,married,65 +C4317475,1994-06-24,31,M,2875.21,10,21/10/16,0,active,married,65 +C8510070,3700-01-01,#NUM!,F,36492.35,5500,21/10/16,0,waiver,married,65 +C7031171,1987-01-18,39,M,14105.23,900,21/10/16,3,active,single,65 +C3636745,1987-06-02,38,M,14081.51,70,21/10/16,0,active,married,65 +C4022457,1990-09-06,35,M,3544.26,450,21/10/16,0,deferred,married,65 +C2632726,1990-05-24,35,M,160380.24,765,21/10/16,1,active,single,65 +C6754037,1983-07-09,42,M,3599.21,1800,21/10/16,3,active,married,65 +C2936081,1947-08-10,78,M,981.27,44,21/10/16,1,active,single,65 +C3337238,1994-10-21,31,F,3944.5,375,21/10/16,1,deferred,single,65 +C8717971,1984-05-25,41,M,5505.12,525,21/10/16,0,active,married,65 +C3266316,1977-12-25,48,M,9992.02,939.65,21/10/16,1,active,single,65 +C4321711,1989-07-20,36,F,23273.37,335,21/10/16,3,waiver,single,65 +C1523218,1994-03-10,31,M,4940.81,1200,21/10/16,1,active,married,65 +C3833259,1989-06-28,36,M,41679.4,300,21/10/16,3,active,married,65 +C4941380,1992-10-21,33,M,1112.66,3880,21/10/16,1,inactive,married,65 +C1537725,1900-01-13,126,M,854.89,275,21/10/16,3,inactive,single,65 +C3434464,1985-06-29,40,M,9031.72,300,21/10/16,1,deferred,single,65 +C6425123,3700-01-01,#NUM!,M,12770.53,36,21/10/16,0,active,divorced,65 +C4482416,1987-09-05,38,M,8329.81,1286,21/10/16,2,active,married,65 +C1733675,1986-07-27,39,M,5728.25,307,21/10/16,3,active,single,65 +C4639027,1990-02-03,36,M,5502.87,319,21/10/16,2,deferred,married,65 +C1118773,1997-04-15,28,M,19099.5,25,21/10/16,2,active,married,65 +C3911589,1987-05-14,38,M,121852.78,2550,21/10/16,0,active,single,65 +C6611233,1986-09-14,39,M,4149.06,700,21/10/16,0,deferred,married,60 +C8814828,1985-02-21,40,M,172190.26,399,21/10/16,0,retired,married,65 +C5131156,1977-06-10,48,M,9057.37,259,21/10/16,0,active,married,60 +C7914170,1992-07-26,33,F,9452.08,20,21/10/16,1,active,married,65 +C4463414,1994-09-19,31,M,30357.07,4390,21/10/16,2,active,single,65 +C6325376,1997-02-10,29,M,78255.57,46,21/10/16,0,active,married,60 +C1533067,1987-05-21,38,M,2559.33,795,21/10/16,1,waiver,married,65 +C1141847,1984-05-02,41,M,68864.42,540,21/10/16,0,active,divorced,60 +C8035883,1991-06-06,34,M,4816.5,150,21/10/16,0,inactive,divorced,60 +C4830970,1993-10-17,32,F,2982.4,550,21/10/16,0,inactive,married,65 +C8732661,1982-01-03,44,M,57929.11,485,21/10/16,0,active,married,60 +C4231943,1993-04-14,32,F,1645.54,203.45,21/10/16,0,active,married,65 +C1469227,1979-04-28,46,F,31812.92,50,21/10/16,4,active,married,65 +C3027447,1987-06-30,38,M,20247.07,550,21/10/16,2,inactive,single,60 +C1521781,1989-03-30,36,F,89055.34,2003,21/10/16,3,active,married,65 +C3926053,3700-01-01,#NUM!,M,46325.73,1,21/10/16,0,inactive,married,60 +C6330852,3700-01-01,#NUM!,M,2712481.26,5900,21/10/16,3,active,married,60 +C6436276,1992-03-08,33,F,3113.28,162,21/10/16,0,waiver,married,65 +C4941589,1969-05-11,56,M,58748.93,4156,21/10/16,2,inactive,married,60 +C6042768,1991-04-05,34,M,7889.08,500,21/10/16,1,active,single,60 +C2512955,1987-11-20,38,M,21266.29,200,21/10/16,1,active,single,60 +C7321145,1991-06-01,34,M,10763.78,199.97,21/10/16,0,active,single,60 +C3316423,1989-09-19,36,M,1519.11,430,21/10/16,2,deferred,married,65 +C7175926,1973-08-10,52,M,48217.97,700,21/10/16,0,active,divorced,65 +C4531573,1994-06-06,31,M,2160.42,50,21/10/16,1,active,married,65 +C3437531,1995-06-20,30,M,149.62,30,21/10/16,1,inactive,single,65 +C8232364,1983-01-20,43,F,350601.29,1000,21/10/16,0,inactive,married,65 +C1641442,1979-12-08,46,M,524401.78,6610,21/10/16,2,active,married,60 +C5234622,1982-12-09,43,M,2168.98,724,21/10/16,3,active,single,65 +C4823350,1992-03-03,33,M,5017.13,54,21/10/16,2,active,married,60 +C1835665,1985-02-03,41,M,114339.73,50,21/10/16,0,active,single,65 +C5226946,1985-07-23,40,F,683314.53,1997,21/10/16,0,inactive,married,65 +C1117456,1996-01-25,30,M,3222.78,500,21/10/16,2,active,single,60 +C4429435,1992-04-26,33,F,66773.67,140,21/10/16,3,active,divorced,60 +C8623668,1981-02-02,45,M,676668.92,1757.5,21/10/16,2,active,single,65 +C1140325,1989-12-08,36,F,572.78,149,21/10/16,0,active,single,65 +C2829438,1990-10-01,35,M,160030.28,2910,21/10/16,3,active,married,65 +C1826947,1993-10-25,32,M,36345.9,220,21/10/16,0,unknown,married,65 +C3929930,1994-01-11,32,M,6540.79,180,21/10/16,3,active,married,65 +C4571043,1991-09-17,34,M,3722.83,10,21/10/16,0,active,married,65 +C6629680,1964-12-24,61,M,32956.34,100000,21/10/16,1,active,married,65 +C1510178,1984-08-19,41,M,12890.08,291,21/10/16,1,active,married,65 +C7123032,1989-09-09,36,F,14915.03,999,21/10/16,1,active,single,65 +C8787378,1989-05-01,36,M,7289.39,64.55,21/10/16,3,deferred,married,65 +C4733475,1983-12-23,42,M,307628.28,250,21/10/16,0,active,divorced,65 +C3828351,1989-09-24,36,F,33059.28,250,21/10/16,0,active,married,65 +C5465149,1984-02-19,41,F,21388.11,1443,21/10/16,3,active,married,65 +C3639080,1960-01-15,66,M,354353.48,15578.22,21/10/16,0,active,divorced,65 +C4130286,1985-05-14,40,F,1713.1,190,21/10/16,0,active,single,65 +C4731081,1991-12-23,34,M,7833.16,5867,21/10/16,0,active,married,65 +C8937733,1989-12-31,36,M,191276.9,200,21/10/16,0,deferred,single,65 +C2736386,1989-12-18,36,M,1006498.62,121.51,21/10/16,0,active,divorced,65 +C5940117,1995-08-03,30,F,14571.3,147,21/10/16,2,active,single,65 +C4127518,1992-07-14,33,F,52114.37,112,21/10/16,0,active,single,65 +C3816860,1997-06-10,28,M,25265.5,500,21/10/16,2,deferred,divorced,65 +C2233387,1994-07-25,31,F,123607.92,1780,21/10/16,1,active,married,65 +C8295234,1984-06-19,41,M,72382.65,50,21/10/16,0,deferred,single,60 +C1888116,1979-04-10,46,F,74865.07,1326.5,21/10/16,0,deferred,divorced,65 +C8723715,1978-10-11,47,M,8702.26,470,21/10/16,1,active,married,60 +C8515425,1983-06-16,42,M,45907.8,308,21/10/16,0,active,single,65 +C2037249,1986-08-22,39,M,297159.82,690,21/10/16,1,active,married,65 +C4932285,1979-09-07,46,M,1265.81,1000,21/10/16,0,retired,single,60 +C3739538,1982-07-15,43,M,31359.46,267,21/10/16,0,active,married,65 +C4213053,3700-01-01,#NUM!,M,92924.88,1520,21/10/16,0,active,married,60 +C6757021,1974-02-14,52,F,283821.01,208,21/10/16,1,active,divorced,60 +C2831889,1979-03-15,46,M,21359.12,500,21/10/16,0,active,married,65 +C2375985,1977-01-18,49,F,306862.46,2000,21/10/16,0,active,single,60 +C2317364,1992-09-02,33,M,18025.83,2950,21/10/16,1,active,married,65 +C3642867,1987-06-12,38,M,6714.1,250,21/10/16,3,active,married,65 +C7731083,1985-11-16,40,M,191.41,1000,21/10/16,3,deferred,divorced,60 +C3225470,1988-07-05,37,F,56806.25,160,21/10/16,2,inactive,single,65 +C3623344,1995-08-16,30,M,2903.7,5168,21/10/16,2,active,married,60 +C2979255,1982-02-09,44,M,116788.08,500,21/10/16,2,active,married,60 +C4522818,1995-07-08,30,M,39594.11,100,21/10/16,0,active,married,65 +C2637514,1991-06-06,34,M,7395.68,275,21/10/16,0,active,married,60 +C4269249,1977-03-17,48,M,10849.69,1900,21/10/16,3,deferred,single,60 +C7128023,1992-02-11,34,M,44545.28,3943,21/10/16,1,active,single,60 +C2518658,1987-07-23,38,F,23321.73,730,21/10/16,0,deferred,married,60 +C2922827,3700-01-01,#NUM!,M,992.08,4275,21/10/16,1,active,married,65 +C6123838,1980-09-06,45,M,116255.65,3780,21/10/16,0,active,single,65 +C1841834,1994-01-06,32,M,15413.18,14,21/10/16,0,waiver,married,65 +C1827516,3700-01-01,#NUM!,M,63708.68,455,21/10/16,2,active,married,65 +C3915438,1987-05-02,38,M,107338.47,265,21/10/16,0,active,married,65 +C7430274,1982-09-20,43,M,20662.95,100,21/10/16,2,waiver,single,60 +C2018539,1992-08-05,33,M,51319.3,235.48,21/10/16,2,active,married,65 +C7892656,1993-09-06,32,M,2739.66,2000,21/10/16,1,active,single,60 +C6318487,1987-05-16,38,M,46291.99,214,21/10/16,3,inactive,married,65 +C3523238,1997-10-16,28,M,9923.71,501,21/10/16,1,active,single,65 +C2637258,1984-12-22,41,F,100982.2,3490,21/10/16,0,active,single,60 +C6212789,1985-08-17,40,F,14677.97,612.1,21/10/16,0,active,married,60 +C3831045,1987-09-19,38,M,38480.89,1080.01,21/10/16,2,retired,married,65 +C6621285,1982-07-10,43,M,57556.28,420,21/10/16,0,inactive,married,65 +C7995223,1989-09-25,36,F,11650.66,1903,21/10/16,1,inactive,married,65 +C6611630,1995-08-15,30,M,3792.01,159,21/10/16,2,deferred,single,65 +C2127333,1982-03-29,43,M,8641.87,720,21/10/16,0,retired,married,65 +C4325463,1989-08-23,36,F,99260.38,2629.32,21/10/16,0,deferred,single,65 +C1333383,1985-12-05,40,M,3318.79,5750,21/10/16,2,active,single,65 +C7825224,1988-10-26,37,M,1150.07,80,21/10/16,0,waiver,married,65 +C5829082,1983-12-16,42,M,1959.28,1128,21/10/16,0,active,single,65 +C1420178,1960-03-02,65,M,21568.45,270,21/10/16,0,active,married,65 +C8313475,1989-02-26,36,M,33056.83,1779,21/10/16,2,deferred,divorced,65 +C3017428,1987-08-10,38,M,13175.72,2000,21/10/16,0,active,single,65 +C6130759,1973-01-05,53,M,547068.08,2000,21/10/16,0,deferred,single,65 +C8423251,1986-11-19,39,M,110091.54,500,21/10/16,0,active,married,65 +C8126585,1992-12-12,33,M,2341.18,10,21/10/16,1,active,single,65 +C4511448,1991-01-12,35,M,1864.86,50,21/10/16,1,retired,married,65 +C6530434,1992-07-22,33,F,3050.07,3285,21/10/16,0,active,married,65 +C1241988,1986-08-10,39,F,132104.38,575,21/10/16,0,retired,divorced,65 +C7915138,1990-12-19,35,M,852.89,1000,21/10/16,0,active,married,65 +C5539425,1988-07-03,37,M,139876.6,2500,21/10/16,2,active,married,65 +C6933121,1991-07-31,34,M,5.16,80,21/10/16,0,active,married,65 +C6430275,1986-02-12,40,M,2635.19,210,21/10/16,2,active,divorced,65 +C4869018,3700-01-01,#NUM!,M,246875.72,3380,21/10/16,3,active,married,65 +C7825518,1993-08-01,32,M,18454.26,14,21/10/16,0,active,divorced,65 +C7413354,3700-01-01,#NUM!,M,62.53,599,21/10/16,0,active,married,65 +C3883837,1986-07-03,39,M,39.62,50,21/10/16,0,active,married,65 +C8426060,1988-12-26,37,M,37077.06,137.7,21/10/16,1,active,single,65 +C5725215,1983-01-22,43,M,32713.81,284,21/10/16,0,waiver,divorced,65 +C5115339,1991-11-16,34,M,1637.95,50,21/10/16,2,active,married,65 +C3511516,1980-04-25,45,M,36904.5,50.91,21/10/16,3,active,married,65 +C1622066,3700-01-01,#NUM!,M,10815.81,2998,21/10/16,2,inactive,single,65 +C4723924,1976-12-05,49,F,36929.53,341,21/10/16,0,waiver,married,65 +C5420723,1982-05-13,43,M,7936.08,390,21/10/16,0,active,married,65 +C8727680,1989-05-07,36,M,12640.35,770,21/10/16,2,active,single,65 +C5428567,1988-09-28,37,M,13384.54,200,21/10/16,0,retired,married,65 +C1438550,1988-07-08,37,M,111317.07,1255,21/10/16,1,active,divorced,65 +C8877276,1996-07-07,29,F,57908.87,4303,21/10/16,0,active,married,65 +C4718530,1976-08-16,49,M,31930.01,220,21/10/16,3,active,married,65 +C1444215,1976-02-29,49,M,219069.16,8912,21/10/16,0,active,married,65 +C2712189,1989-09-26,36,M,4573.28,899,21/10/16,1,retired,single,65 +C6214169,1991-11-09,34,F,27373.21,500,21/10/16,0,active,single,65 +C8426861,1993-04-01,32,F,126,67,21/10/16,1,active,single,65 +C8821791,1973-07-31,52,M,29871.23,8190,21/10/16,3,active,single,65 +C5826526,3700-01-01,#NUM!,M,103856.35,18003.21,21/10/16,0,inactive,married,65 +C4542572,1991-02-17,34,F,1893.23,572,21/10/16,1,waiver,married,65 +C3915935,1988-06-29,37,F,13014.93,299,21/10/16,5,active,single,65 +C6830879,1989-06-02,36,M,18887.53,301,21/10/16,1,waiver,single,65 +C2540757,1989-10-06,36,M,171781.42,764,21/10/16,2,active,single,65 +C6831791,1982-03-23,43,F,8447.87,1028,21/10/16,3,inactive,single,65 +C3310523,1954-11-08,71,M,0.02,2220,21/10/16,1,active,single,65 +C9025040,1991-01-09,35,F,48869.41,1400,21/10/16,0,retired,divorced,65 +C6979249,3700-01-01,#NUM!,M,84718.34,600,21/10/16,3,waiver,married,65 +C8226531,1985-09-09,40,M,40553.26,160,21/10/16,4,active,married,65 +C3539189,1992-09-29,33,M,1880.32,1000,21/10/16,1,active,married,65 +C5012113,1972-11-16,53,F,32621.01,440,21/10/16,0,active,married,65 +C1437355,1992-10-19,33,M,19173.82,50,21/10/16,0,active,married,65 +C1631481,1989-01-08,37,M,11614.1,100000,21/10/16,0,active,married,60 +C3192568,1990-01-29,36,M,10405.54,190,21/10/16,1,active,married,60 +C5025329,1981-03-25,44,M,48341.37,538,21/10/16,0,active,married,60 +C7128585,1988-09-28,37,M,13384.54,200,21/10/16,4,active,single,60 +C5121986,1992-02-21,33,M,6663.5,189,21/10/16,0,deferred,single,60 +C8640163,1991-02-22,34,M,76122.22,1721,21/10/16,2,active,single,60 +C1922980,3700-01-01,#NUM!,M,388.89,2000,21/10/16,0,active,married,60 +C8410921,1989-03-20,36,M,6664.52,1260,21/10/16,0,active,married,60 +C2924271,1986-01-08,40,M,121060.05,73,21/10/16,2,active,single,65 +C1510886,3700-01-01,#NUM!,M,21913.8,262.06,21/10/16,1,active,married,60 +C3340413,1989-08-14,36,M,115715.85,175,21/10/16,0,active,married,65 +C1118258,1984-08-26,41,M,10533.88,350,21/10/16,0,active,divorced,65 +C6013590,1994-06-20,31,F,97.93,65,21/10/16,0,active,single,60 +C4311779,1995-01-23,31,M,7844.9,105,21/10/16,0,active,single,65 +C1913490,1982-03-13,43,M,135701.38,936,21/10/16,3,active,single,60 +C1241419,1988-12-26,37,M,257822.52,235,21/10/16,0,inactive,married,60 +C4127771,1989-01-06,37,F,12069.76,1000,21/10/16,0,active,married,65 +C3414431,1980-01-01,46,M,1586508.61,100000,21/10/16,2,deferred,single,60 +C5428413,1991-05-22,34,M,8175.27,500,21/10/16,3,active,married,65 +C3229228,1994-07-08,31,F,35421.17,268,21/10/16,1,active,married,65 +C1412283,1971-05-20,54,F,76081.62,200,21/10/16,3,deferred,single,60 +C5422016,1983-06-05,42,M,110341.58,320,21/10/16,0,waiver,married,65 +C7784552,3700-01-01,#NUM!,M,48019.42,1000,21/10/16,1,active,married,60 +C1334066,1990-04-10,35,F,2823.47,1375,21/10/16,0,retired,married,60 +C8923820,1996-08-08,29,M,495017.06,398,21/10/16,3,active,single,65 +C8731111,1987-01-18,39,M,14105.23,900,21/10/16,1,active,married,60 +C3130836,1990-11-12,35,M,7752.19,2599,21/10/16,2,active,divorced,60 +C4229917,1971-11-02,54,M,33818.31,380,21/10/16,0,active,married,60 +C6825419,1988-07-05,37,F,56806.25,160,21/10/16,0,active,married,60 +C5436238,1991-11-07,34,F,8841.05,500,21/10/16,0,waiver,single,65 +C1140967,1993-12-22,32,F,20469.13,1499,21/10/16,0,inactive,married,65 +C5489843,1984-05-09,41,M,129490.6,158,21/10/16,1,active,married,65 +C6437090,1987-07-27,38,M,879.93,950,21/10/16,0,active,single,65 +C2727772,1991-12-03,34,M,11846.77,11,21/10/16,0,active,married,65 +C2433460,1982-10-01,43,M,794743.98,1679,21/10/16,1,active,married,60 +C1711055,1988-04-23,37,F,88425.71,257.15,21/10/16,0,active,married,65 +C8438427,3700-01-01,#NUM!,M,156812.83,3112,21/10/16,0,retired,married,60 +C3418419,1988-03-26,37,F,17716.05,1500,21/10/16,2,active,married,65 +C2230426,1989-08-05,36,M,1195344.5,850,21/10/16,2,inactive,married,65 +C3933432,1987-06-23,38,F,9904.14,600,21/10/16,1,active,divorced,60 +C4489370,1979-05-26,46,M,501.1,750,21/10/16,0,retired,divorced,60 +C5673142,1989-01-01,37,M,417874.67,141.24,21/10/16,1,inactive,divorced,65 +C8111056,1968-07-20,57,M,77726.33,140,21/10/16,1,active,married,65 +C1333763,1987-04-08,38,M,6633.52,1281.4,21/10/16,1,inactive,married,65 +C6576480,1978-10-02,47,F,13616.67,23352,21/10/16,5,active,divorced,65 +C3016256,1985-10-02,40,M,218428.37,778,21/10/16,0,active,married,65 +C1640274,1984-08-10,41,M,193334.48,720,21/10/16,2,active,married,65 +C4330850,1974-07-01,51,M,218231.16,1752,21/10/16,0,active,married,65 +C3638675,1992-03-28,33,M,38843.42,2641,21/10/16,2,waiver,divorced,65 +C8010062,1948-09-16,77,M,5.65,200,21/10/16,5,active,married,65 +C5874370,1979-12-25,46,M,104389.33,61500,21/10/16,2,active,married,65 +C2541988,1983-09-13,42,F,3801.19,2553,21/10/16,0,active,married,65 +C1810279,1990-02-02,36,M,34905.27,600,21/10/16,0,active,divorced,65 +C1931117,1983-08-17,42,M,57.24,1580,21/10/16,1,active,married,65 +C5535063,1984-08-07,41,M,129290.36,715,21/10/16,0,active,married,65 +C3218322,1987-03-15,38,M,5720.37,100,21/10/16,0,active,married,65 +C8222136,1978-01-05,48,M,2534.03,192,21/10/16,0,active,married,65 +C2678478,3700-01-01,#NUM!,M,27233.69,1299,21/10/16,1,active,married,65 +C3115171,1986-09-01,39,F,201695.5,183,21/10/16,2,active,married,65 +C7621386,1987-10-05,38,M,141686.3,620,21/10/16,1,deferred,single,65 +C6095386,1974-07-26,51,M,15228.43,196,21/10/16,0,active,single,65 +C4413129,1992-02-01,34,F,35111.42,190,21/10/16,3,active,divorced,65 +C4240382,1987-02-15,39,M,22220.06,65,21/10/16,0,active,divorced,65 +C7137848,1987-12-25,38,F,24326.61,500,21/10/16,2,active,married,65 +C5832547,1978-01-12,48,M,4027.57,285,21/10/16,1,inactive,married,65 +C3072841,1982-05-27,43,M,59973.67,200,21/10/16,2,active,single,65 +C2124373,1995-08-26,30,M,39799.66,65,21/10/16,1,retired,divorced,65 +C2627459,1986-09-27,39,M,23541.54,5555,21/10/16,1,active,single,65 +C9027490,1970-09-09,55,M,63681.01,2293,21/10/16,1,inactive,single,65 +C4514458,3700-01-01,#NUM!,M,27021.05,1830,21/10/16,1,active,divorced,65 +C3014449,3700-01-01,#NUM!,M,27021.05,1400,21/10/16,1,active,single,65 +C5812281,1977-11-27,48,M,57749.3,484,21/10/16,1,active,single,65 +C7632491,1992-04-10,33,F,45744.99,3490,21/10/16,1,active,married,65 +C4454658,3700-01-01,#NUM!,M,109362.18,358,21/10/16,0,active,married,65 +C5413453,1994-03-07,31,M,22.31,11,21/10/16,1,inactive,married,65 +C5223990,1976-12-05,49,F,36929.53,65,21/10/16,3,active,single,65 +C6312180,1989-09-26,36,M,4573.28,380,21/10/16,2,active,divorced,65 +C8436155,1987-12-28,38,M,10262.75,650,21/10/16,1,active,single,65 +C4331120,1986-08-31,39,F,10877.13,1330,21/10/16,2,waiver,married,65 +C2136467,1981-11-04,44,M,51611.24,1099,21/10/16,1,active,married,65 +C3540176,1982-06-12,43,M,18163.73,250,21/10/16,2,active,single,65 +C7842063,1981-10-14,44,M,29436.43,435,21/10/16,5,active,married,65 +C1618642,1991-04-24,34,F,12779.85,100,21/10/16,3,waiver,married,65 +C8014459,3700-01-01,#NUM!,M,27021.05,1273,21/10/16,0,inactive,married,65 +C1423839,1977-06-15,48,F,10702.67,448,21/10/16,0,deferred,single,65 +C7633725,1986-09-08,39,F,3081.96,450,21/10/16,0,active,single,65 +C8819837,1991-01-24,35,F,6406.13,1000,21/10/16,0,active,married,65 +C6256982,1983-12-25,42,M,184757.62,5000,21/10/16,0,active,single,65 +C2433374,1980-10-13,45,M,14309.1,120,21/10/16,0,deferred,divorced,65 +C4420933,1987-06-22,38,M,6988.14,220,21/10/16,1,waiver,married,65 +C8588426,1980-02-19,45,M,81691.41,1593,21/10/16,3,waiver,divorced,65 +C8218388,1979-06-13,46,M,69460.79,475,21/10/16,0,active,divorced,65 +C8741166,1990-06-21,35,M,77948.53,1512.75,21/10/16,1,active,divorced,65 +C8236916,1992-01-27,34,M,7281.14,230,21/10/16,0,active,single,65 +C4865613,3700-01-01,#NUM!,F,0,1500,21/10/16,3,active,married,65 +C4122560,3700-01-01,#NUM!,M,1294694.19,100.91,21/10/16,1,active,divorced,65 +C1638047,1993-07-13,32,M,11348.2,50,21/10/16,5,waiver,married,65 +C6939286,1979-05-29,46,M,36719.52,201,21/10/16,1,active,divorced,60 +C4724177,1989-02-03,37,F,15342.82,125,21/10/16,3,active,divorced,60 +C7015315,1994-03-07,31,M,10758.35,500,21/10/16,1,active,single,60 +C2614448,3700-01-01,#NUM!,M,27021.05,1128,21/10/16,0,active,single,60 +C7327792,1980-07-04,45,M,40681.48,530,21/10/16,0,retired,divorced,60 +C2015243,1983-04-05,42,M,38472.54,650,21/10/16,1,active,married,60 +C2739560,1991-02-20,34,M,17654.41,14,21/10/16,2,inactive,married,60 +C2540069,1968-06-20,57,M,160594.62,2110,21/10/16,2,active,married,60 +C7836078,1984-10-05,41,M,2512.09,275,21/10/16,1,inactive,married,60 +C3130260,1988-05-02,37,M,162.15,38,21/10/16,3,retired,married,65 +C8317970,1989-04-20,36,M,1972.42,27,21/10/16,3,active,married,60 +C9099692,1990-02-27,35,F,772503.25,249,21/10/16,3,active,married,65 +C1025072,1994-06-25,31,M,4356.19,400,21/10/16,0,active,single,65 +,,,,,,,,,,60 \ No newline at end of file