master 820436d718b4 cached
20 files
18.0 MB
2.0M tokens
1 requests
Download .txt
Showing preview only (8,019K chars total). Download the full file or copy to clipboard to get everything.
Repository: gbosquechacon/statrethink_course_in_pymc3
Branch: master
Commit: 820436d718b4
Files: 20
Total size: 18.0 MB

Directory structure:
gitextract_mnlt0r6o/

├── README.md
├── data/
│   ├── Howell1.csv
│   ├── NWOGrants.csv
│   ├── Primates301.csv
│   ├── Trolley.csv
│   ├── Wines2012.csv
│   ├── bangladesh.csv
│   ├── foxes.csv
│   ├── happiness.csv
│   └── reedfrogs.csv
└── notebooks/
    └── pymc3/
        ├── rethink_stats_pymc3_w01.ipynb
        ├── rethink_stats_pymc3_w02.ipynb
        ├── rethink_stats_pymc3_w03.ipynb
        ├── rethink_stats_pymc3_w04.ipynb
        ├── rethink_stats_pymc3_w05.ipynb
        ├── rethink_stats_pymc3_w06.ipynb
        ├── rethink_stats_pymc3_w07.ipynb
        ├── rethink_stats_pymc3_w08.ipynb
        ├── rethink_stats_pymc3_w09.ipynb
        └── rethink_stats_pymc3_w10.ipynb

================================================
FILE CONTENTS
================================================

================================================
FILE: README.md
================================================
Statistical Rethinking: A Bayesian Course Using python and pymc3
===============

## Intro

Hello everybody!

This repo contains the `python`/`pymc3` version of the Statistical Rethinking course that Professor Richard McElreath taught on the Max Planck Institute for Evolutionary Anthropology in Leipzig during the Winter of 2019/2020. The original repo for the course, from which this repo is forked, can be found [here](https://github.com/rmcelreath/statrethinking_winter2019).

The course contains 20 lectures structured in 10 weeks with a series of assignments for each week. This homework was done using the original `rethinking` package and `ulam`, a wrapper of `rstan` for `R`. The course is an excellent introduction to bayesian modelling in general and to the Rethinking Statistics wonderful [book](https://xcelab.net/rm/statistical-rethinking/) written by Professor McElreath. The course is really great, entertaining, eye-opening and very instructive.

I started to watch the lectures and do the homework but since I tend to prefer `python` to `R` I also started to re-do all the homework using `pymc3`, a popular `python` library for bayesian modelling that uses `theano` as backend. After I finished the course I thought I should make public the `jupyter` notebooks, just in case somebody finds them useful. This repo is a love-letter to the course that I have enjoyed so very much and to the work of Professor McElreath. Thank you Richard for inspiring a generation of scientists.

## How to use this repo

There are ten `jupyter` notebooks, one for each week of the course. At the beginning of each notebook there are links to the youtube videos of the lectures, the slides used and the original homework questions and answers in `R`. I have put together all the material in the notebooks so you only have to follow one document at a time. Therefore each notebook basically contains four things:

1. Original exercises proposed
2. Original answers given by Professor McElreath. By this I mean only the text, not the code
3. `python` code that provides solutions to the exercises
4. Brief comments made by me on differences of implementation between `R` and `python` or tips/tricks of `pymc3` that I learned along the way

Points 1. and 2. are written down in normal letters and contain minimum editing on my part to match it with my code. These sections were written by Professor McElreath and I kept them as they were in the original course. Points 3. and 4. are my humble contribution. The code is very easily identifiable and point 4. (my comments) are always written in _italics_ to be perfectly identifiable and differentiable from Professor McElreath words. I kept them to a minimum but sometimes there are things to clarify, useful tips or common mistakes.

How I would use this repo is like this:

1. Go to the notebook of the week (from 1 to 10).
2. Watch the two videos for the lectures of that week (at the very top of each notebook).
3. Read the original problems presented to the students and try to solve them on your own (for real! try it!).
4. Follow the exercises solutions of the notebook with my code and explanations by Professor McElreath.

## Technical considerations

I run the `jupyter` notebooks in a fairly humble machine running `python` 3.6. All the libraries needed are always at the top of the notebook as usual. There are not that many. The usual suspects such as `pandas`, `numpy` or `matplotlib`. For the actual modelling I used `theano` and `pymc3` and for plotting mostly `altair`. I used `pymc3` 3.7, which is the lastest version. I did use `pymc3` 3.7 because of the new `Data` class available only from this version. I explain in detail the advantages on having the possibility of using this new class in one of the notebooks.

## Other useful resources

There are a lot of very useful resources for bayesian statistical modelling out there. Specifically centered on Professor McElreath work I would mention:

1. Original [repo](https://github.com/rmcelreath/statrethinking_winter2019) for the course.
2. Original `rethinking` package [repo](https://github.com/rmcelreath/rethinking).
3. The `pymc3` repo contains a resources [section](https://github.com/pymc-devs/resources/tree/master/Rethinking) where you can find the exercises for the first edition of the Rethinking Statistics book (the book, not the course) done in `pymc3`. It's a bit outdated but still a very good resource.
4. A. Solomon Kurz re-wrote the whole book exercises using a great `R` package called [`brms`](https://github.com/paul-buerkner/brms). You can find this extensive and amazing work [here](https://github.com/ASKurz/Statistical_Rethinking_with_brms_ggplot2_and_the_tidyverse) and [here](https://bookdown.org/ajkurz/Statistical_Rethinking_recoded/). 

## Notebooks

Finally, since github sometimes has issues rendering `Jupyter` notebooks, you can find them via nbviewer in the following links. In the repo, you can find them in the `/notebooks/pymc3` folder.

[Week 1 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethink_course_in_pymc3/blob/master/notebooks/pymc3/rethink_stats_pymc3_w01.ipynb): The Golem of Prague and Garden of Forking Data

[Week 2 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w02.ipynb): Geocentric Models and Wiggly Orbits

[Week 3 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w03.ipynb): Spurious Waffles and Haunted DAG

[Week 4 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w04.ipynb): Ulysses' Compass and Model Comparison

[Week 5 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w05.ipynb): Conditional Manatees and Markov Chain Monte Carlo

[Week 6 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w06.ipynb): Maximum entropy & GLMs and God Spiked the Integers (binomial & Poisson GLMs)

[Week 7 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w07.ipynb): Monsters & Mixtures (Poisson GLMs, survival, zero-inflation) and Ordered Categories, Left & Right

[Week 8 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w08.ipynb): Multilevel Models and Multilevel Models 2

[Week 9 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w09.ipynb): Adventures in Covariance and Slopes, Instruments and Social Relations

[Week 10 notebook](https://nbviewer.jupyter.org/github/gbosquechacon/statrethinking_winter2019/blob/master/notebooks/pymc3/rethink_stats_pymc3_w10.ipynb): Gaussian Processes and Missing Values and Measurement Error


================================================
FILE: data/Howell1.csv
================================================
"height";"weight";"age";"male"
151.765;47.8256065;63;1
139.7;36.4858065;63;0
136.525;31.864838;65;0
156.845;53.0419145;41;1
145.415;41.276872;51;0
163.83;62.992589;35;1
149.225;38.2434755;32;0
168.91;55.4799715;27;1
147.955;34.869885;19;0
165.1;54.487739;54;1
154.305;49.89512;47;0
151.13;41.220173;66;1
144.78;36.0322145;73;0
149.9;47.7;20;0
150.495;33.849303;65.3;0
163.195;48.5626935;36;1
157.48;42.3258035;44;1
143.9418;38.3568735;31;0
121.92;19.617854;12;1
105.41;13.947954;8;0
86.36;10.489315;6.5;0
161.29;48.987936;39;1
156.21;42.7226965;29;0
129.54;23.586784;13;1
109.22;15.989118;7;0
146.4;35.493574;56;1
148.59;37.9032815;45;0
147.32;35.4652245;19;0
137.16;27.328918;17;1
125.73;22.6796;16;0
114.3;17.860185;11;1
147.955;40.312989;29;1
161.925;55.111428;30;1
146.05;37.5063885;24;0
146.05;38.498621;35;0
152.7048;46.606578;33;0
142.875;38.838815;27;0
142.875;35.5786225;32;0
147.955;47.400364;36;0
160.655;47.8823055;24;1
151.765;49.4131785;30;1
162.8648;49.384829;24;1
171.45;56.5572525;52;1
147.32;39.12231;42;0
147.955;49.89512;19;0
144.78;28.803092;17;0
121.92;20.41164;8;1
128.905;23.359988;12;0
97.79;13.267566;5;0
154.305;41.2485225;55;1
143.51;38.55532;43;0
146.7;42.4;20;1
157.48;44.6504625;18;1
127;22.0105518;13;1
110.49;15.422128;9;0
97.79;12.757275;5;0
165.735;58.5984165;42;1
152.4;46.719976;44;0
141.605;44.22522;60;0
158.8;50.9;20;0
155.575;54.317642;37;0
164.465;45.8978405;50;1
151.765;48.024053;50;0
161.29;52.219779;31;1
154.305;47.62716;25;0
145.415;45.642695;23;0
145.415;42.410852;52;0
152.4;36.4858065;79.3;1
163.83;55.9335635;35;1
144.145;37.194544;27;0
129.54;24.550667;13;1
129.54;25.627948;14;0
153.67;48.307548;38;1
142.875;37.3362915;39;0
146.05;29.596878;12;0
167.005;47.173568;30;1
158.4198;47.286966;24;0
91.44;12.927372;0.599999999999909;1
165.735;57.549485;51;1
149.86;37.931631;46;0
147.955;41.900561;17;0
137.795;27.5840635;12;0
154.94;47.2019175;22;0
160.9598;43.204638;29;1
161.925;50.2636635;38;1
147.955;39.3774555;30;0
113.665;17.463292;6;1
159.385;50.689;45;1
148.59;39.4341545;47;0
136.525;36.28736;79;0
158.115;46.266384;45;1
144.78;42.2691045;54;0
156.845;47.62716;31;1
179.07;55.7067675;23;1
118.745;18.824068;9;0
170.18;48.5626935;41;1
146.05;42.807745;23;0
147.32;35.0683315;36;0
113.03;17.8885345;5;1
162.56;56.755699;30;0
133.985;27.442316;12;1
152.4;51.255896;34;0
160.02;47.230267;44;1
149.86;40.936678;43;0
142.875;32.715323;73.3;0
167.005;57.0675435;38;1
159.385;42.977842;43;1
154.94;39.9444455;33;0
148.59;32.4601775;16;0
111.125;17.123098;11;1
111.76;16.499409;6;1
162.56;45.9545395;35;1
152.4;41.106775;29;0
124.46;18.257078;12;0
111.76;15.081934;9;1
86.36;11.4815475;7.59999999999991;1
170.18;47.5988105;58;1
146.05;37.5063885;53;0
159.385;45.019006;51;1
151.13;42.2691045;48;0
160.655;54.8562825;29;1
169.545;53.523856;41;1
158.75;52.1914295;81.75;1
74.295;9.752228;1;1
149.86;42.410852;35;0
153.035;49.5832755;46;0
96.52;13.097469;5;1
161.925;41.730464;29;1
162.56;56.018612;42;1
149.225;42.1557065;27;0
116.84;19.391058;8;0
100.076;15.081934;6;1
163.195;53.0986135;22;1
161.925;50.235314;43;1
145.415;42.52425;53;0
163.195;49.101334;43;1
151.13;38.498621;41;0
150.495;49.8100715;50;0
141.605;29.313383;15;1
170.815;59.760746;33;1
91.44;11.7083435;3;0
157.48;47.9390045;62;1
152.4;39.292407;49;0
149.225;38.1300775;17;1
129.54;21.999212;12;0
147.32;36.8826995;22;0
145.415;42.127357;29;0
121.92;19.787951;8;0
113.665;16.782904;5;1
157.48;44.565414;33;1
154.305;47.853956;34;0
120.65;21.1770765;12;0
115.6;18.9;7;1
167.005;55.1964765;42;1
142.875;32.998818;40;0
152.4;40.879979;27;0
96.52;13.267566;3;0
160;51.2;25;1
159.385;49.044635;29;1
149.86;53.4388075;45;0
160.655;54.090846;26;1
160.655;55.3665735;45;1
149.225;42.240755;45;0
125.095;22.3677555;11;0
140.97;40.936678;85.5999999999999;0
154.94;49.6966735;26;1
141.605;44.338618;24;0
160.02;45.9545395;57;1
150.1648;41.95726;22;0
155.575;51.482692;24;0
103.505;12.757275;6;0
94.615;13.0124205;4;0
156.21;44.111822;21;0
153.035;32.205032;79;0
167.005;56.755699;50;1
149.86;52.673371;40;0
147.955;36.4858065;64;0
159.385;48.8461885;32;1
161.925;56.9541455;38.7;1
155.575;42.0990075;26;0
159.385;50.178615;63;1
146.685;46.549879;62;0
172.72;61.80191;22;1
166.37;48.987936;41;1
141.605;31.524644;19;1
142.875;32.205032;17;0
133.35;23.756881;14;0
127.635;24.4089195;9;1
119.38;21.5172705;7;1
151.765;35.2951275;74;0
156.845;45.642695;41;1
148.59;43.885026;33;0
157.48;45.5576465;53;0
149.86;39.008912;18;0
147.955;41.163474;37;0
102.235;13.1258185;6;0
153.035;45.245802;61;0
160.655;53.637254;44;1
149.225;52.3048275;35;0
114.3;18.3421265;7;1
100.965;13.7495075;4;1
138.43;39.0939605;23;0
91.44;12.530479;4;1
162.56;45.699394;55;1
149.225;40.3980375;53;0
158.75;51.482692;59;1
149.86;38.668718;57;0
158.115;39.235708;35;1
156.21;44.338618;29;0
148.59;39.519203;62;1
143.51;31.071052;18;0
154.305;46.776675;51;0
131.445;22.509503;14;0
157.48;40.6248335;19;1
157.48;50.178615;42;1
154.305;41.276872;25;0
107.95;17.57669;6;1
168.275;54.6;41;1
145.415;44.9906565;37;0
147.955;44.735511;16;0
100.965;14.401546;5;1
113.03;19.050864;9;1
149.225;35.8054185;82;1
154.94;45.2174525;28;1
162.56;48.1091015;50;1
156.845;45.6710445;43;0
123.19;20.808533;8;1
161.0106;48.420946;31;1
144.78;41.1918235;67;0
143.51;38.4135725;39;0
149.225;42.127357;18;0
110.49;17.6617385;11;0
149.86;38.2434755;48;0
165.735;48.3358975;30;1
144.145;38.9238635;64;0
157.48;40.029494;72;1
154.305;50.2069645;68;0
163.83;54.2892925;44;1
156.21;45.6;43;0
153.67;40.766581;16;0
134.62;27.1304715;13;0
144.145;39.4341545;34;0
114.3;20.4966885;10;0
162.56;43.204638;62;1
146.05;31.864838;44;0
120.65;20.8935815;11;1
154.94;45.4442485;31;1
144.78;38.045029;29;0
106.68;15.989118;8;0
146.685;36.0889135;62;0
152.4;40.879979;67;0
163.83;47.910655;57;1
165.735;47.7122085;32;1
156.21;46.379782;24;0
152.4;41.163474;77;1
140.335;36.5992045;62;0
158.115;43.09124;17;1
163.195;48.137451;67;1
151.13;36.7126025;70;0
171.1198;56.5572525;37;1
149.86;38.6970675;58;0
163.83;47.4854125;35;1
141.605;36.2023115;30;0
93.98;14.288148;5;0
149.225;41.276872;26;0
105.41;15.2236815;5;0
146.05;44.7638605;21;0
161.29;50.4337605;41;1
162.56;55.281525;46;1
145.415;37.931631;49;0
145.415;35.493574;15;1
170.815;58.456669;28;1
127;21.488921;12;0
159.385;44.4236665;83;0
159.4;44.4;54;1
153.67;44.565414;54;0
160.02;44.622113;68;1
150.495;40.483086;68;0
149.225;44.0834725;56;0
127;24.4089195;15;0
142.875;34.416293;57;0
142.113;32.772022;22;0
147.32;35.947166;40;0
162.56;49.5549;19;1
164.465;53.183662;41;1
160.02;37.081146;75.9000000000001;1
153.67;40.5114355;73.9000000000001;0
167.005;50.6038575;49;1
151.13;43.9700745;26;1
147.955;33.792604;17;0
125.3998;21.375523;13;0
111.125;16.669506;8;0
153.035;49.89;88;1
139.065;33.5941575;68;0
152.4;43.8566765;33;1
154.94;48.137451;26;0
147.955;42.751046;56;0
143.51;34.8415355;16;1
117.983;24.097075;13;0
144.145;33.906002;34;0
92.71;12.076887;5;0
147.955;41.276872;17;0
155.575;39.7176495;74;1
150.495;35.947166;69;0
155.575;50.915702;50;1
154.305;45.756093;44;0
130.6068;25.2594045;15;0
101.6;15.3370795;5;0
157.48;49.214732;18;0
168.91;58.8252125;41;1
150.495;43.4597835;27;0
111.76;17.8318355;8.90000000000009;1
160.02;51.9646335;38;1
167.64;50.688906;57;1
144.145;34.246196;64.5;0
145.415;39.3774555;42;0
160.02;59.5622995;24;1
147.32;40.312989;16;1
164.465;52.16308;71;1
153.035;39.972795;49.5;0
149.225;43.941725;33;1
160.02;54.601137;28;0
149.225;45.075705;47;0
85.09;11.453198;3;1
84.455;11.7650425;1;1
59.6138;5.896696;1;0
92.71;12.1052365;3;1
111.125;18.313777;6;0
90.805;11.3681495;5;0
153.67;41.333571;27;0
99.695;16.2442635;5;0
62.484;6.80388;1;0
81.915;11.8784405;2;1
96.52;14.968536;2;0
80.01;9.865626;1;1
150.495;41.900561;55;0
151.765;42.524;83.4000000000001;1
140.6398;28.859791;12;1
88.265;12.7856245;2;0
158.115;43.147939;63;1
149.225;40.82328;52;0
151.765;42.864444;49;1
154.94;46.209685;31;0
123.825;20.581737;9;0
104.14;15.87572;6;0
161.29;47.853956;35;1
148.59;42.52425;35;0
97.155;17.066399;7;0
93.345;13.1825175;5;1
160.655;48.5059945;24;1
157.48;45.869491;41;1
167.005;52.900167;32;1
157.48;47.570461;43;1
91.44;12.927372;6;0
60.452;5.6699;1;1
137.16;28.91649;15;1
152.4;43.544832;63;0
152.4;43.431434;21;0
81.28;11.509897;1;1
109.22;11.7083435;2;0
71.12;7.540967;1;1
89.2048;12.700576;3;0
67.31;7.200773;1;0
85.09;12.360382;1;1
69.85;7.7961125;1;0
161.925;53.2120115;55;0
152.4;44.678812;38;0
88.9;12.5588285;3;1
90.17;12.700576;3;1
71.755;7.37087;1;0
83.82;9.2135875;1;0
159.385;47.2019175;28;1
142.24;28.632995;16;0
142.24;31.6663915;36;0
168.91;56.4438545;38;1
123.19;20.014747;12;1
74.93;8.50485;1;1
74.295;8.3064035;1;0
90.805;11.623295;3;0
160.02;55.791816;48;1
67.945;7.9662095;1;0
135.89;27.21552;15;0
158.115;47.4854125;45;1
85.09;10.8011595;3;1
93.345;14.004653;3;0
152.4;45.1607535;38;0
155.575;45.529297;21;0
154.305;48.874538;50;0
156.845;46.5782285;41;1
120.015;20.128145;13;0
114.3;18.14368;8;1
83.82;10.9145575;3;1
156.21;43.885026;30;0
137.16;27.158821;12;1
114.3;19.050864;7;1
93.98;13.834556;4;0
168.275;56.0469615;21;1
147.955;40.086193;38;0
139.7;26.5634815;15;1
157.48;50.802304;19;0
76.2;9.2135875;1;1
66.04;7.5693165;1;1
160.7;46.3;31;1
114.3;19.4194075;8;0
146.05;37.9032815;16;1
161.29;49.3564795;21;1
69.85;7.314171;0;0
133.985;28.1510535;13;1
67.945;7.824462;0;1
150.495;44.111822;50;0
163.195;51.0291;39;1
148.59;40.766581;44;1
148.59;37.5630875;36;0
161.925;51.59609;36;1
153.67;44.8205595;18;0
68.58;8.0229085;0;0
151.13;43.4030845;58;0
163.83;46.719976;58;1
153.035;39.5475525;33;0
151.765;34.7848365;21.5;0
132.08;22.792998;11;1
156.21;39.292407;26;1
140.335;37.4496895;22;0
158.75;48.6760915;28;1
142.875;35.606972;42;0
84.455;9.3836845;2;1
151.9428;43.714929;21;1
161.29;48.19415;19;1
127.9906;29.8520235;13;1
160.9852;50.972401;48;1
144.78;43.998424;46;0
132.08;28.292801;11;1
117.983;20.354941;8;1
160.02;48.19415;25;1
154.94;39.179009;16;1
160.9852;46.6916265;51;1
165.989;56.415505;25;1
157.988;48.591043;28;1
154.94;48.2224995;26;0
97.9932;13.2959155;5;1
64.135;6.6621325;1;0
160.655;47.4854125;54;1
147.32;35.550273;66;0
146.7;36.6;20;0
147.32;48.9595865;25;0
172.9994;51.255896;38;1
158.115;46.5215295;51;1
147.32;36.967748;48;0
124.9934;25.117657;13;1
106.045;16.272613;6;1
165.989;48.647742;27;1
149.86;38.045029;22;0
76.2;8.50485;1;0
161.925;47.286966;60;1
140.0048;28.3495;15;0
66.675;8.1363065;0;0
62.865;7.200773;0;1
163.83;55.394923;43;1
147.955;32.488527;12;1
160.02;54.204244;27;1
154.94;48.477645;30;1
152.4;43.0628905;29;0
62.23;7.257472;0;0
146.05;34.189497;23;0
151.9936;49.951819;30;0
157.48;41.3052215;17;1
55.88;4.8477645;0;0
60.96;6.23689;0;1
151.765;44.338618;41;0
144.78;33.45241;42;0
118.11;16.896302;7;0
78.105;8.221355;3;0
160.655;47.286966;43;1
151.13;46.1246365;35;0
121.92;20.184844;10;0
92.71;12.757275;3;1
153.67;47.400364;75.5;1
147.32;40.8516295;64;0
139.7;50.348712;38;1
157.48;45.132404;24.2;0
91.44;11.623295;4;0
154.94;42.240755;26;1
143.51;41.6454155;19;0
83.185;9.1568885;2;1
158.115;45.2174525;43;1
147.32;51.255896;38;0
123.825;21.205426;10;1
88.9;11.5949455;3;1
160.02;49.271431;23;1
137.16;27.952607;16;0
165.1;51.199197;49;1
154.94;43.8566765;41;0
111.125;17.690088;6;1
153.67;35.5219235;23;0
145.415;34.246196;14;0
141.605;42.88542;43;0
144.78;32.545226;15;0
163.83;46.776675;21;1
161.29;41.8722115;24;1
154.9;38.2;20;1
161.3;43.3;20;1
170.18;53.637254;34;1
149.86;42.977842;29;0
123.825;21.54562;11;1
85.09;11.4248485;3;0
160.655;39.7743485;65;1
154.94;43.3463855;46;0
106.045;15.478827;8;0
126.365;21.9141635;15;1
166.37;52.673371;43;1
148.2852;38.441922;39;0
124.46;19.27766;12;0
89.535;11.113004;3;1
101.6;13.494362;4;0
151.765;42.807745;43;0
148.59;35.890467;70;0
153.67;44.22522;26;0
53.975;4.252425;0;0
146.685;38.0733785;48;0
56.515;5.159609;0;0
100.965;14.3164975;5;1
121.92;23.2182405;8;1
81.5848;10.659412;3;0
154.94;44.111822;44;1
156.21;44.0267735;33;0
132.715;24.9759095;15;1
125.095;22.5945515;12;0
101.6;14.344847;5;0
160.655;47.8823055;41;1
146.05;39.405805;37.4;0
132.715;24.777463;13;0
87.63;10.659412;6;0
156.21;41.050076;53;1
152.4;40.82328;49;0
162.56;47.0318205;27;0
114.935;17.519991;7;1
67.945;7.2291225;1;0
142.875;34.246196;31;0
76.835;8.0229085;1;1
145.415;31.127751;17;1
162.56;52.16308;31;1
156.21;54.0624965;21;0
71.12;8.051258;0;1
158.75;52.5316235;68;1


================================================
FILE: data/NWOGrants.csv
================================================
discipline;gender;applications;awards
Chemical sciences;m;83;22
Chemical sciences;f;39;10
Physical sciences;m;135;26
Physical sciences;f;39;9
Physics;m;67;18
Physics;f;9;2
Humanities;m;230;33
Humanities;f;166;32
Technical sciences;m;189;30
Technical sciences;f;62;13
Interdisciplinary;m;105;12
Interdisciplinary;f;78;17
Earth/life sciences;m;156;38
Earth/life sciences;f;126;18
Social sciences;m;425;65
Social sciences;f;409;47
Medical sciences;m;245;46
Medical sciences;f;260;29

================================================
FILE: data/Primates301.csv
================================================
"name";"genus";"species";"subspecies";"spp_id";"genus_id";"social_learning";"research_effort";"brain";"body";"group_size";"gestation";"weaning";"longevity";"sex_maturity";"maternal_investment"
"Allenopithecus_nigroviridis";"Allenopithecus";"nigroviridis";NA;1;1;0;6;58.02;4655;40;NA;106.15;276;NA;NA
"Allocebus_trichotis";"Allocebus";"trichotis";NA;2;2;0;6;NA;78.09;1;NA;NA;NA;NA;NA
"Alouatta_belzebul";"Alouatta";"belzebul";NA;3;3;0;15;52.84;6395;7.4;NA;NA;NA;NA;NA
"Alouatta_caraya";"Alouatta";"caraya";NA;4;3;0;45;52.63;5383;8.9;185.92;323.16;243.6;1276.72;509.08
"Alouatta_guariba";"Alouatta";"guariba";NA;5;3;0;37;51.7;5175;7.4;NA;NA;NA;NA;NA
"Alouatta_palliata";"Alouatta";"palliata";NA;6;3;3;79;49.88;6250;13.1;185.42;495.6;300;1578.42;681.02
"Alouatta_pigra";"Alouatta";"pigra";NA;7;3;0;25;51.13;8915;5.5;185.92;NA;240;NA;NA
"Alouatta_sara";"Alouatta";"sara";NA;8;3;0;4;59.08;6611.04;NA;NA;NA;NA;NA;NA
"Alouatta_seniculus";"Alouatta";"seniculus";NA;9;3;0;82;55.22;5950;7.9;189.9;370.04;300;1690.22;559.94
"Aotus_azarai";"Aotus";"azarai";NA;10;4;0;22;20.67;1205;4.1;NA;229.69;NA;NA;NA
"Aotus_azarai_boliviensis";"Aotus";"azarai";"boliviensis";11;4;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Aotus_brumbacki";"Aotus";"brumbacki";NA;12;4;0;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Aotus_infulatus";"Aotus";"infulatus";NA;13;4;0;6;NA;NA;NA;NA;NA;NA;NA;NA
"Aotus_lemurinus";"Aotus";"lemurinus";NA;14;4;0;16;16.3;734;NA;132.23;74.57;216;755.15;206.8
"Aotus_lemurinus_griseimembra";"Aotus";"lemurinus";"griseimembra";15;4;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Aotus_nancymaae";"Aotus";"nancymaae";NA;16;4;0;5;NA;791.03;4;NA;NA;NA;NA;NA
"Aotus_nigriceps";"Aotus";"nigriceps";NA;17;4;0;1;NA;958;3.3;NA;NA;NA;NA;NA
"Aotus_trivirgatus";"Aotus";"trivirgatus";NA;18;4;0;58;16.85;989;3.15;133.47;76.21;303.6;736.6;209.68
"Aotus_vociferans";"Aotus";"vociferans";NA;19;4;0;12;NA;703;3.3;NA;NA;NA;NA;NA
"Archaeolemur_majori";"Archaeolemur";"majori";NA;20;5;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Arctocebus_aureus";"Arctocebus";"aureus";NA;21;6;NA;NA;5.88;210;NA;NA;NA;NA;NA;NA
"Arctocebus_calabarensis";"Arctocebus";"calabarensis";NA;22;6;0;1;6.92;309;1;133.74;109.26;156;298.91;243
"Ateles_belzebuth";"Ateles";"belzebuth";NA;23;7;0;12;117.02;8167;14.5;138.2;NA;336;NA;NA
"Ateles_fusciceps";"Ateles";"fusciceps";NA;24;7;0;4;114.24;9025;NA;224.7;482.7;288;1799.68;707.4
"Ateles_geoffroyi";"Ateles";"geoffroyi";NA;25;7;2;58;105.09;7535;42;226.37;816.35;327.6;2104.57;1042.72
"Ateles_paniscus";"Ateles";"paniscus";NA;26;7;0;30;103.85;8280;20;228.18;805.41;453.6;2104.57;1033.59
"Avahi_cleesei";"Avahi";"cleesei";NA;27;8;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Avahi_laniger";"Avahi";"laniger";NA;28;8;0;10;9.86;1207;2;136.15;149.15;NA;NA;285.3
"Avahi_occidentalis";"Avahi";"occidentalis";NA;29;8;0;6;7.95;801;3;NA;NA;NA;NA;NA
"Avahi_unicolor";"Avahi";"unicolor";NA;30;8;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Brachyteles_arachnoides";"Brachyteles";"arachnoides";NA;31;9;0;57;NA;10537.31;19.6;221.75;734.82;NA;2876.24;956.57
"Bunopithecus_hoolock";"Bunopithecus";"hoolock";NA;32;10;0;24;110.68;6728;3.2;232.5;635.13;NA;2689.08;867.63
"Cacajao_calvus";"Cacajao";"calvus";NA;33;11;0;11;76;3165;23.7;180;339.29;324;1262.74;519.29
"Cacajao_melanocephalus";"Cacajao";"melanocephalus";NA;34;11;0;8;68.77;2935;30;NA;NA;216;NA;NA
"Callicebus_donacophilus";"Callicebus";"donacophilus";NA;35;12;0;1;NA;897.67;1;NA;NA;NA;NA;NA
"Callicebus_hoffmannsi";"Callicebus";"hoffmannsi";NA;36;12;0;NA;NA;1067.61;1;NA;NA;NA;NA;NA
"Callicebus_moloch";"Callicebus";"moloch";NA;37;12;0;18;NA;958.13;2.95;164;58.85;303.6;1262.74;222.85
"Callicebus_personatus";"Callicebus";"personatus";NA;38;12;0;19;NA;1390.8;2.35;NA;NA;NA;NA;NA
"Callicebus_torquatus";"Callicebus";"torquatus";NA;39;12;0;4;NA;1245;3.85;NA;121.66;NA;1683.65;NA
"Callimico_goeldii";"Callimico";"goeldii";NA;40;13;0;43;11.43;484;6.85;153.99;66.53;214.8;413.84;220.52
"Callithrix_argentata";"Callithrix";"argentata";NA;41;14;0;16;7.95;345;9.5;NA;NA;201.6;701.52;NA
"Callithrix_aurita";"Callithrix";"aurita";NA;42;14;0;NA;NA;429;6;140;NA;NA;NA;NA
"Callithrix_emiliae";"Callithrix";"emiliae";NA;43;14;NA;NA;NA;309.58;NA;NA;NA;NA;NA;NA
"Callithrix_geoffroyi";"Callithrix";"geoffroyi";NA;44;14;0;NA;NA;342;NA;NA;NA;NA;NA;NA
"Callithrix_humeralifera";"Callithrix";"humeralifera";NA;45;14;0;4;NA;370;8.5;NA;99.01;180;NA;NA
"Callithrix_jacchus";"Callithrix";"jacchus";NA;46;14;2;161;7.24;320;8.55;144;60.24;201.6;455.99;204.24
"Callithrix_kuhli";"Callithrix";"kuhli";NA;47;14;0;NA;NA;374.99;NA;NA;NA;NA;NA;NA
"Callithrix_mauesi";"Callithrix";"mauesi";NA;48;14;0;NA;NA;443.79;NA;NA;NA;NA;NA;NA
"Callithrix_penicillata";"Callithrix";"penicillata";NA;49;14;0;NA;7.32;328;5.9;NA;NA;NA;NA;NA
"Callithrix_pygmaea";"Callithrix";"pygmaea";NA;50;14;0;36;4.17;116;6;134.44;90.73;181.2;708.5;225.17
"Cebus_albifrons";"Cebus";"albifrons";NA;51;15;1;13;65.45;2735;25;158.29;270.32;528;1501.69;428.61
"Cebus_apella";"Cebus";"apella";NA;52;15;17;249;66.63;2936;7.9;154.99;263.12;541.2;1760.81;418.11
"Cebus_capucinus";"Cebus";"capucinus";NA;53;15;5;60;72.93;2861;18.15;161.06;514.07;657.6;2134.73;675.13
"Cebus_olivaceus";"Cebus";"olivaceus";NA;54;15;0;18;69.84;2931;11.45;NA;725.86;492;2525.48;NA
"Cebus_xanthosternos";"Cebus";"xanthosternos";NA;55;15;NA;NA;66.09;2440;NA;NA;NA;NA;NA;NA
"Cercocebus_agilis";"Cercocebus";"agilis";NA;56;16;NA;NA;116.43;7580;NA;NA;NA;NA;NA;NA
"Cercocebus_galeritus";"Cercocebus";"galeritus";NA;57;16;0;19;99.07;7435;20.35;174.43;NA;252;2735.94;NA
"Cercocebus_torquatus";"Cercocebus";"torquatus";NA;58;16;1;32;105.99;7485;26.85;168.98;NA;360;1318.86;NA
"Cercocebus_torquatus_atys";"Cercocebus";"torquatus";"atys";59;16;NA;NA;94.68;8600;35;165.08;NA;321.6;1321.67;NA
"Cercopithecus_albogularis";"Cercopithecus";"albogularis";NA;60;17;NA;NA;70.1;5620;32.5;NA;NA;NA;NA;NA
"Cercopithecus_ascanius";"Cercopithecus";"ascanius";NA;61;17;1;26;59.58;3714;26.3;148.5;146.54;339.6;1718.73;295.04
"Cercopithecus_campbelli";"Cercopithecus";"campbelli";NA;62;17;0;11;57.39;3600;11;180.8;362.93;396;NA;543.73
"Cercopithecus_campbelli_lowei";"Cercopithecus";"campbelli";"lowei";63;17;NA;NA;55.64;3187;NA;NA;NA;NA;NA;NA
"Cercopithecus_cephus";"Cercopithecus";"cephus";NA;64;17;0;8;65.26;3585;11;169.51;362.93;276;1521.9;532.44
"Cercopithecus_cephus_cephus";"Cercopithecus";"cephus";"cephus";65;17;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Cercopithecus_cephus_ngottoensis";"Cercopithecus";"cephus";"ngottoensis";66;17;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Cercopithecus_diana";"Cercopithecus";"diana";NA;67;17;1;28;62.61;4550;24.95;NA;362.93;447.6;2279.95;NA
"Cercopithecus_erythrogaster";"Cercopithecus";"erythrogaster";NA;68;17;0;3;NA;3444.88;NA;NA;NA;NA;NA;NA
"Cercopithecus_erythrogaster_erythrogaster";"Cercopithecus";"erythrogaster";"erythrogaster";69;17;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Cercopithecus_erythrotis";"Cercopithecus";"erythrotis";NA;70;17;0;3;65.4;3250;NA;NA;NA;NA;NA;NA
"Cercopithecus_hamlyni";"Cercopithecus";"hamlyni";NA;71;17;0;4;65.9;4425;NA;NA;NA;NA;NA;NA
"Cercopithecus_lhoesti";"Cercopithecus";"lhoesti";NA;72;17;0;7;74.2;4710;17.4;NA;NA;192;NA;NA
"Cercopithecus_mitis";"Cercopithecus";"mitis";NA;73;17;0;56;71.33;6109;16;138.39;688.08;325.2;2049.25;826.47
"Cercopithecus_mona";"Cercopithecus";"mona";NA;74;17;0;8;61.84;3719;NA;NA;NA;360;NA;NA
"Cercopithecus_neglectus";"Cercopithecus";"neglectus";NA;75;17;0;17;65.97;5450;4.5;172.07;417.62;315.6;2076.39;589.69
"Cercopithecus_nictitans";"Cercopithecus";"nictitans";NA;76;17;0;7;71.13;5465;16;169.51;NA;276;1684.59;NA
"Cercopithecus_petaurista";"Cercopithecus";"petaurista";NA;77;17;0;5;55.08;3609;14;NA;NA;228;NA;NA
"Cercopithecus_pogonias";"Cercopithecus";"pogonias";NA;78;17;0;8;59.56;3580;15;169.51;NA;289.2;1684.59;NA
"Cercopithecus_preussi";"Cercopithecus";"preussi";NA;79;17;0;2;NA;5132.57;3;NA;NA;NA;NA;NA
"Cercopithecus_solatus";"Cercopithecus";"solatus";NA;80;17;0;6;NA;5256.91;10;NA;NA;NA;NA;NA
"Cercopithecus_wolfi";"Cercopithecus";"wolfi";NA;81;17;0;7;61.45;3390;NA;NA;NA;NA;NA;NA
"Cheirogaleus_crossleyi";"Cheirogaleus";"crossleyi";NA;82;18;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Cheirogaleus_major";"Cheirogaleus";"major";NA;83;18;0;3;5.81;400;1;70;47.14;180;420.91;117.14
"Cheirogaleus_medius";"Cheirogaleus";"medius";NA;84;18;0;13;2.6;140;1;61.79;60.65;231.6;413.84;122.44
"Chiropotes_satanas";"Chiropotes";"satanas";NA;85;19;0;21;48.33;3030;14.4;157.67;NA;216;NA;NA
"Chlorocebus_aethiops";"Chlorocebus";"aethiops";NA;86;20;5;91;65;3720;NA;NA;217.76;379.2;NA;NA
"Chlorocebus_pygerythrus";"Chlorocebus";"pygerythrus";NA;87;20;NA;NA;62.58;4324;NA;NA;NA;NA;NA;NA
"Chlorocebus_pygerythrus_cynosurus";"Chlorocebus";"pygerythrus";"cynosurus";88;20;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Chlorocebus_sabaeus";"Chlorocebus";"sabaeus";NA;89;20;NA;NA;64.91;4312;NA;NA;NA;NA;NA;NA
"Chlorocebus_tantalus";"Chlorocebus";"tantalus";NA;90;20;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Colobus_angolensis";"Colobus";"angolensis";NA;91;21;0;16;77.7;8625;10.9;NA;NA;NA;NA;NA
"Colobus_angolensis_palliatus";"Colobus";"angolensis";"palliatus";92;21;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Colobus_guereza";"Colobus";"guereza";NA;93;21;0;42;74.39;8589;7.6;169.02;387.79;294;1929.19;556.81
"Colobus_polykomos";"Colobus";"polykomos";NA;94;21;0;17;73.83;9100;10.2;172.69;213.78;366;1629.84;386.47
"Colobus_satanas";"Colobus";"satanas";NA;95;21;0;10;74.9;8910;15.5;192.76;NA;NA;NA;NA
"Colobus_vellerosus";"Colobus";"vellerosus";NA;96;21;NA;NA;73.07;7820;16;NA;NA;NA;NA;NA
"Daubentonia_madagascariensis";"Daubentonia";"madagascariensis";NA;97;22;0;52;44.85;2555;1;166.48;197.7;291.6;834.72;364.18
"Erythrocebus_patas";"Erythrocebus";"patas";NA;98;23;2;33;97.73;9450;28;167.2;211.79;286.8;1246.07;378.99
"Eulemur_coronatus";"Eulemur";"coronatus";NA;99;24;0;11;20.65;1180;6.95;124.04;NA;220.8;701.52;NA
"Eulemur_fulvus_albifrons";"Eulemur";"fulvus";"albifrons";100;24;NA;NA;21.45;2336;NA;NA;NA;NA;NA;NA
"Eulemur_fulvus_albocollaris";"Eulemur";"fulvus";"albocollaris";101;24;NA;NA;22.1;2140;NA;NA;NA;NA;NA;NA
"Eulemur_fulvus_collaris";"Eulemur";"fulvus";"collaris";102;24;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Eulemur_fulvus_fulvus";"Eulemur";"fulvus";"fulvus";103;24;1;81;25.77;2292;9.15;120.83;134.64;444;791.75;255.47
"Eulemur_fulvus_mayottensis";"Eulemur";"fulvus";"mayottensis";104;24;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Eulemur_fulvus_rufus";"Eulemur";"fulvus";"rufus";105;24;NA;NA;25.4;2220;9.5;NA;NA;NA;NA;NA
"Eulemur_fulvus_sanfordi";"Eulemur";"fulvus";"sanfordi";106;24;NA;NA;NA;2394.03;7.7;NA;NA;NA;NA;NA
"Eulemur_macaco_flavifrons";"Eulemur";"macaco";"flavifrons";107;24;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Eulemur_macaco_macaco";"Eulemur";"macaco";"macaco";108;24;0;32;24.51;2390;9.2;127.49;143.28;360;660.75;270.77
"Eulemur_mongoz";"Eulemur";"mongoz";NA;109;24;0;13;20.17;1212;2.7;129;151.13;360;1060.7;280.13
"Eulemur_rubriventer";"Eulemur";"rubriventer";NA;110;24;0;13;26.23;1960;3.3;126.99;151.22;NA;566.36;278.21
"Euoticus_elegantulus";"Euoticus";"elegantulus";NA;111;25;0;1;5.53;274;1;133.45;NA;180;NA;NA
"Galago_alleni";"Galago";"alleni";NA;112;26;0;2;5.58;252;6;133;NA;144;283.18;NA
"Galago_gallarum";"Galago";"gallarum";NA;113;26;NA;NA;NA;250;NA;NA;NA;NA;NA;NA
"Galago_granti";"Galago";"granti";NA;114;26;0;NA;4.07;NA;NA;NA;NA;NA;NA;NA
"Galago_matschiei";"Galago";"matschiei";NA;115;26;NA;NA;4.62;210;1;NA;NA;NA;NA;NA
"Galago_moholi";"Galago";"moholi";NA;116;26;0;14;3.71;148;1;122.29;90.46;198;420.91;212.75
"Galago_senegalensis";"Galago";"senegalensis";NA;117;26;0;20;3.96;194;3.5;126.98;93.93;204;330.37;220.91
"Galagoides_demidoff";"Galagoides";"demidoff";NA;118;27;0;5;2.65;75;5.5;111;43.47;168;345.24;154.47
"Galagoides_zanzibaricus";"Galagoides";"zanzibaricus";NA;119;27;0;NA;3.51;143;1;120;59.27;NA;322.75;179.27
"Gorilla_beringei";"Gorilla";"beringei";NA;120;28;NA;NA;491.27;130000;NA;NA;NA;NA;NA;NA
"Gorilla_gorilla_gorilla";"Gorilla";"gorilla";"gorilla";121;28;13;517;490.41;120950;6;257;920.35;648;3353.12;1177.35
"Gorilla_gorilla_graueri";"Gorilla";"gorilla";"graueri";122;28;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Hapalemur_aureus";"Hapalemur";"aureus";NA;123;29;0;5;NA;1562.41;3;142.5;NA;NA;NA;NA
"Hapalemur_griseus";"Hapalemur";"griseus";NA;124;29;0;40;14.09;709;3.1;141.24;136.29;205.2;1003.17;277.53
"Hapalemur_griseus_alaotrensis";"Hapalemur";"griseus";"alaotrensis";125;29;NA;NA;13.8;1240;NA;NA;NA;NA;NA;NA
"Hapalemur_griseus_griseus";"Hapalemur";"griseus";"griseus";126;29;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Hapalemur_griseus_meridionalis";"Hapalemur";"griseus";"meridionalis";127;29;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Hapalemur_griseus_occidentalis";"Hapalemur";"griseus";"occidentalis";128;29;NA;NA;14.2;NA;NA;NA;NA;NA;NA;NA
"Hapalemur_simus";"Hapalemur";"simus";NA;129;29;0;8;27.14;2150;7.5;140;NA;144;NA;NA
"Homo_sapiens";"Homo";"sapiens";NA;130;30;NA;NA;NA;58540.63;NA;274.78;725.86;1470;5582.93;1000.64
"Homo_sapiens_neanderthalensis";"Homo";"sapiens";"neanderthalensis";131;30;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Hylobates_agilis";"Hylobates";"agilis";NA;132;31;0;16;91.16;5850;4.2;NA;NA;528;NA;NA
"Hylobates_klossii";"Hylobates";"klossii";NA;133;31;0;4;87.99;5795;3;207.59;NA;NA;NA;NA
"Hylobates_lar";"Hylobates";"lar";NA;134;31;0;86;101.87;5595;3.2;212.91;725.86;480;3852.57;938.77
"Hylobates_moloch";"Hylobates";"moloch";NA;135;31;0;16;NA;5860.81;2.15;241.2;NA;NA;NA;NA
"Hylobates_muelleri";"Hylobates";"muelleri";NA;136;31;0;5;85.13;5821;3.2;206.7;NA;NA;NA;NA
"Hylobates_pileatus";"Hylobates";"pileatus";NA;137;31;0;16;84.69;5470;3.25;200.16;635.13;432;2454.24;835.29
"Indri_indri";"Indri";"indri";NA;138;32;0;8;34.81;6335;3.1;136.5;331.34;NA;1605.69;467.84
"Lagothrix_lagotricha";"Lagothrix";"lagotricha";NA;139;33;0;34;96.5;7150;33;223.99;312.66;360;1729.33;536.65
"Lemur_catta";"Lemur";"catta";NA;140;34;4;103;22.9;2210;16.45;134.74;126.51;360;831.62;261.25
"Leontopithecus_chrysomelas";"Leontopithecus";"chrysomelas";NA;141;35;0;46;11.84;655;6.7;NA;NA;NA;NA;NA
"Leontopithecus_chrysopygus";"Leontopithecus";"chrysopygus";NA;142;35;0;38;NA;656.12;3.6;NA;NA;NA;NA;NA
"Leontopithecus_rosalia";"Leontopithecus";"rosalia";NA;143;35;0;85;12.83;609;4.5;134;75.69;297.6;890.34;209.69
"Lepilemur_aeeclis";"Lepilemur";"aeeclis";NA;144;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_ankaranensis";"Lepilemur";"ankaranensis";NA;145;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_dorsalis";"Lepilemur";"dorsalis";NA;146;36;0;1;6.7;870;1;NA;NA;NA;NA;NA
"Lepilemur_edwardsi";"Lepilemur";"edwardsi";NA;147;36;0;5;7.25;931;1;NA;NA;NA;NA;NA
"Lepilemur_hubbardorum";"Lepilemur";"hubbardorum";NA;148;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_leucopus";"Lepilemur";"leucopus";NA;149;36;0;2;6.87;606;1;135.92;121.66;103;620.76;257.58
"Lepilemur_manasamody";"Lepilemur";"manasamody";NA;150;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_microdon";"Lepilemur";"microdon";NA;151;36;0;1;9.75;970;1;NA;NA;NA;NA;NA
"Lepilemur_mitsinjoensis";"Lepilemur";"mitsinjoensis";NA;152;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_mustelinus";"Lepilemur";"mustelinus";NA;153;36;0;5;9.56;777;1;133.45;76.21;144;663.81;209.66
"Lepilemur_otto";"Lepilemur";"otto";NA;154;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_randrianasoli";"Lepilemur";"randrianasoli";NA;155;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_ruficaudatus";"Lepilemur";"ruficaudatus";NA;156;36;0;2;8.25;805;1;135.92;119.32;NA;NA;255.24
"Lepilemur_sahamalazensis";"Lepilemur";"sahamalazensis";NA;157;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_seali";"Lepilemur";"seali";NA;158;36;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Lepilemur_septentrionalis";"Lepilemur";"septentrionalis";NA;159;36;0;NA;NA;755.77;1;134.99;120.97;NA;377.57;255.96
"Lophocebus_albigena";"Lophocebus";"albigena";NA;160;37;0;34;93.97;6950;16;182.64;211.71;392.4;2525.48;394.35
"Lophocebus_aterrimus";"Lophocebus";"aterrimus";NA;161;37;0;6;101.59;6800;17.5;NA;NA;321.6;NA;NA
"Loris_lydekkerianus";"Loris";"lydekkerianus";NA;162;38;NA;NA;6.34;267;NA;NA;NA;NA;NA;NA
"Loris_tardigradus";"Loris";"tardigradus";NA;163;38;0;14;5.87;193;1;165.99;167.49;196.8;350.76;333.48
"Macaca_arctoides";"Macaca";"arctoides";NA;164;39;1;48;100.7;10300;NA;176.6;377.66;360;1570.01;554.26
"Macaca_assamensis";"Macaca";"assamensis";NA;165;39;0;17;90.46;9100;21;NA;NA;NA;NA;NA
"Macaca_brunnescens";"Macaca";"brunnescens";NA;166;39;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Macaca_cyclopis";"Macaca";"cyclopis";NA;167;39;0;12;82;5470;20.2;161.06;205.24;NA;1650.01;366.3
"Macaca_fascicularis";"Macaca";"fascicularis";NA;168;39;7;174;63.98;4251;27;164.69;283.53;456;1319.5;448.22
"Macaca_fuscata";"Macaca";"fuscata";NA;169;39;45;253;102.92;9515;40.65;172.99;265.04;396;1460.77;438.03
"Macaca_hecki";"Macaca";"hecki";NA;170;39;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Macaca_leonina";"Macaca";"leonina";NA;171;39;NA;NA;85.6;5642;NA;NA;NA;NA;NA;NA
"Macaca_maura";"Macaca";"maura";NA;172;39;0;22;NA;7290.3;NA;167.19;497.16;NA;NA;664.35
"Macaca_mulatta";"Macaca";"mulatta";NA;173;39;15;296;88.98;6793;38.5;166.07;304.16;432;1101.07;470.23
"Macaca_munzala";"Macaca";"munzala";NA;174;39;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Macaca_nemestrina";"Macaca";"nemestrina";NA;175;39;3;51;105.59;8821;22.6;171;292.6;411.6;1427.17;463.6
"Macaca_nemestrina_leonina";"Macaca";"nemestrina";"leonina";176;39;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Macaca_nemestrina_siberu";"Macaca";"nemestrina";"siberu";177;39;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Macaca_nigra";"Macaca";"nigra";NA;178;39;0;27;94.9;7680;35;172.43;365;216;1984.51;537.43
"Macaca_nigrescens";"Macaca";"nigrescens";NA;179;39;NA;NA;NA;NA;14.5;NA;NA;NA;NA;NA
"Macaca_ochreata";"Macaca";"ochreata";NA;180;39;0;3;NA;3400;NA;NA;NA;NA;NA;NA
"Macaca_pagensis";"Macaca";"pagensis";NA;181;39;NA;NA;NA;4534.66;NA;NA;272.2;360;1227.12;NA
"Macaca_radiata";"Macaca";"radiata";NA;182;39;0;34;74.87;5084;33.5;161.56;332.25;360;1785.78;493.81
"Macaca_silenus";"Macaca";"silenus";NA;183;39;1;48;85;7500;21;172;362.93;480;1912.19;534.93
"Macaca_sinica";"Macaca";"sinica";NA;184;39;0;12;69.7;4440;20.1;180.9;NA;420;1894.11;NA
"Macaca_sylvanus";"Macaca";"sylvanus";NA;185;39;0;67;93.2;12078;18.3;164.84;210.25;264;1542.25;375.09
"Macaca_thibetana";"Macaca";"thibetana";NA;186;39;1;42;NA;10593.06;21;169.02;451.79;NA;NA;620.81
"Macaca_tonkeana";"Macaca";"tonkeana";NA;187;39;2;26;NA;10035.53;NA;NA;NA;NA;NA;NA
"Mandrillus_leucophaeus";"Mandrillus";"leucophaeus";NA;188;40;0;18;148;15000;17;179.22;486.66;400.8;1745.96;665.88
"Mandrillus_sphinx";"Mandrillus";"sphinx";NA;189;40;3;30;153.88;23600;13.9;173.99;348.01;555.96;2122.11;522
"Microcebus_berthae";"Microcebus";"berthae";NA;190;41;NA;NA;NA;33.45;NA;NA;NA;NA;NA;NA
"Microcebus_bongolavensis";"Microcebus";"bongolavensis";NA;191;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_danfossi";"Microcebus";"danfossi";NA;192;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_griseorufus";"Microcebus";"griseorufus";NA;193;41;NA;NA;NA;70.24;NA;NA;NA;NA;NA;NA
"Microcebus_jollyae";"Microcebus";"jollyae";NA;194;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_lehilahytsara";"Microcebus";"lehilahytsara";NA;195;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_lokobensis";"Microcebus";"lokobensis";NA;196;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_macarthurii";"Microcebus";"macarthurii";NA;197;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_mamiratra";"Microcebus";"mamiratra";NA;198;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_mittermeieri";"Microcebus";"mittermeieri";NA;199;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_murinus";"Microcebus";"murinus";NA;200;41;0;66;1.63;65;1;60.34;40.45;186;355.53;100.79
"Microcebus_myoxinus";"Microcebus";"myoxinus";NA;201;41;0;NA;NA;31.23;1;59.99;NA;NA;NA;NA
"Microcebus_ravelobensis";"Microcebus";"ravelobensis";NA;202;41;0;NA;NA;58.6;NA;NA;NA;NA;NA;NA
"Microcebus_rufus";"Microcebus";"rufus";NA;203;41;0;8;1.72;43;1;59.99;40;144;NA;99.99
"Microcebus_sambiranensis";"Microcebus";"sambiranensis";NA;204;41;NA;NA;NA;49.06;NA;NA;NA;NA;NA;NA
"Microcebus_simmonsi";"Microcebus";"simmonsi";NA;205;41;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Microcebus_tavaratra";"Microcebus";"tavaratra";NA;206;41;NA;NA;NA;68.01;NA;NA;NA;NA;NA;NA
"Miopithecus_talapoin";"Miopithecus";"talapoin";NA;207;42;0;4;NA;1248.86;91.2;164.38;178.98;370.8;1733.36;343.36
"Mirza_coquereli";"Mirza";"coquereli";NA;208;43;0;3;5.8;312;1;88.58;136;183.6;343.74;224.58
"Mirza_zaza";"Mirza";"zaza";NA;209;43;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Nasalis_larvatus";"Nasalis";"larvatus";NA;210;44;0;17;92.3;14561;11.25;165.04;211.75;252;1894.11;376.79
"Nomascus_concolor";"Nomascus";"concolor";NA;211;45;0;21;NA;6410.47;4;205.81;635.13;529.2;2454.24;840.94
"Nomascus_gabriellae";"Nomascus";"gabriellae";NA;212;45;0;4;119.38;7365;1;NA;NA;NA;NA;NA
"Nomascus_leucogenys";"Nomascus";"leucogenys";NA;213;45;0;8;NA;7320;1;NA;NA;NA;NA;NA
"Nomascus_nasutus";"Nomascus";"nasutus";NA;214;45;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Nomascus_siki";"Nomascus";"siki";NA;215;45;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Nycticebus_bengalensis";"Nycticebus";"bengalensis";NA;216;46;NA;NA;13.49;1060;NA;NA;NA;NA;NA;NA
"Nycticebus_coucang";"Nycticebus";"coucang";NA;217;46;0;37;10.13;653;1;191.09;181.21;318;660.82;372.3
"Nycticebus_javanicus";"Nycticebus";"javanicus";NA;218;46;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Nycticebus_menagensis";"Nycticebus";"menagensis";NA;219;46;NA;NA;9.67;634;NA;NA;NA;NA;NA;NA
"Nycticebus_pygmaeus";"Nycticebus";"pygmaeus";NA;220;46;0;19;7.23;307;1;185.42;NA;NA;NA;NA
"Otolemur_crassicaudatus";"Otolemur";"crassicaudatus";NA;221;47;1;36;11.78;1150;3.5;131.04;124.62;225.6;609.86;255.66
"Otolemur_garnettii";"Otolemur";"garnettii";NA;222;47;1;12;11.5;764;1;132.24;139.2;204;592.15;271.44
"Pan_paniscus";"Pan";"paniscus";NA;223;48;5;225;341.29;39100;85;235.24;1081.31;576;5465.72;1316.55
"Pan_troglodytes_schweinfurthii";"Pan";"troglodytes";"schweinfurthii";224;48;NA;NA;390.33;38200;NA;NA;NA;NA;NA;NA
"Pan_troglodytes_troglodytes";"Pan";"troglodytes";"troglodytes";225;48;214;755;363.05;52750;50;231.49;1260.81;720;3897.96;1492.3
"Pan_troglodytes_vellerosus";"Pan";"troglodytes";"vellerosus";226;48;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Pan_troglodytes_verus";"Pan";"troglodytes";"verus";227;48;NA;NA;371.74;43950;NA;NA;NA;NA;NA;NA
"Papio_anubis";"Papio";"anubis";NA;228;49;4;43;167.42;18150;40;178.96;596.6;302.4;NA;775.56
"Papio_cynocephalus";"Papio";"cynocephalus";NA;229;49;2;114;163.19;17150;48.2;172.99;450.42;540;2560.56;623.41
"Papio_hamadryas";"Papio";"hamadryas";NA;230;49;1;78;146.17;14150;36.9;180;363.96;450;1652.37;543.96
"Papio_papio";"Papio";"papio";NA;231;49;3;8;142.5;18026.05;NA;184.42;NA;480;NA;NA
"Papio_ursinus";"Papio";"ursinus";NA;232;49;5;22;178;22300;47;185.92;877.09;540;1543.35;1063.01
"Perodicticus_potto";"Perodicticus";"potto";NA;233;50;0;10;12.42;835;1;193;149.15;312;561.58;342.15
"Phaner_furcifer";"Phaner";"furcifer";NA;234;51;0;1;NA;409.87;1;174.46;NA;144;NA;NA
"Phaner_furcifer_pallescens";"Phaner";"furcifer";"pallescens";235;51;NA;NA;6.68;339;NA;NA;NA;NA;NA;NA
"Piliocolobus_badius";"Piliocolobus";"badius";NA;236;52;0;52;63.59;8285;34;151.41;783.93;NA;1473.2;935.34
"Piliocolobus_foai";"Piliocolobus";"foai";NA;237;52;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Piliocolobus_gordonorum";"Piliocolobus";"gordonorum";NA;238;52;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Piliocolobus_kirkii";"Piliocolobus";"kirkii";NA;239;52;1;7;57.25;5630;33.6;165;NA;NA;NA;NA
"Piliocolobus_pennantii";"Piliocolobus";"pennantii";NA;240;52;0;NA;NA;10896;NA;NA;NA;NA;NA;NA
"Piliocolobus_preussi";"Piliocolobus";"preussi";NA;241;52;0;NA;NA;8865.71;40;195;NA;NA;NA;NA
"Piliocolobus_rufomitratus";"Piliocolobus";"rufomitratus";NA;242;52;NA;NA;NA;8030.75;24.5;195;NA;NA;NA;NA
"Piliocolobus_tephrosceles";"Piliocolobus";"tephrosceles";NA;243;52;NA;NA;70.95;8409;34;NA;NA;NA;NA;NA
"Piliocolobus_tholloni";"Piliocolobus";"tholloni";NA;244;52;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Pithecia_irrorata";"Pithecia";"irrorata";NA;245;53;0;7;NA;2308.17;4.4;NA;NA;NA;NA;NA
"Pithecia_pithecia";"Pithecia";"pithecia";NA;246;53;0;28;32.26;1760;2.7;161.13;113.15;248.4;1089.37;274.28
"Pongo_abelii";"Pongo";"abelii";NA;247;54;NA;NA;389.5;62815;NA;NA;NA;NA;NA;NA
"Pongo_pygmaeus";"Pongo";"pygmaeus";NA;248;54;86;321;377.38;58542;1;259.42;1088.8;720;3318.62;1348.22
"Presbytis_comata";"Presbytis";"comata";NA;249;55;0;11;80.3;6695;7.05;NA;NA;NA;NA;NA
"Presbytis_melalophos";"Presbytis";"melalophos";NA;250;55;0;6;64.85;6560;14;NA;NA;192;NA;NA
"Procolobus_verus";"Procolobus";"verus";NA;251;56;0;3;52.6;4450;6.3;167.84;NA;NA;NA;NA
"Propithecus_coquereli";"Propithecus";"coquereli";NA;252;57;NA;NA;30.19;3729;5.5;140.99;180.96;NA;NA;321.95
"Propithecus_deckenii";"Propithecus";"deckenii";NA;253;57;NA;NA;30.15;3532;NA;NA;NA;NA;NA;NA
"Propithecus_diadema";"Propithecus";"diadema";NA;254;57;0;28;39.8;6130;4.95;152.08;256.27;NA;1683.65;408.35
"Propithecus_edwardsi";"Propithecus";"edwardsi";NA;255;57;NA;NA;39.49;5682;6;NA;NA;NA;NA;NA
"Propithecus_tattersalli";"Propithecus";"tattersalli";NA;256;57;0;9;NA;3531.39;4.1;NA;152.13;NA;NA;NA
"Propithecus_verreauxi";"Propithecus";"verreauxi";NA;257;57;1;41;26.21;2955;6.3;149.77;177.83;247.2;943.94;327.6
"Pygathrix_cinerea";"Pygathrix";"cinerea";NA;258;58;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Pygathrix_nemaeus";"Pygathrix";"nemaeus";NA;259;58;0;25;91.41;9720;9.3;182.88;NA;300;NA;NA
"Rhinopithecus_avunculus";"Rhinopithecus";"avunculus";NA;260;59;0;11;NA;9086.19;30;200;NA;NA;NA;NA
"Rhinopithecus_bieti";"Rhinopithecus";"bieti";NA;261;59;0;NA;NA;11000.54;50;170;NA;NA;755.15;NA
"Rhinopithecus_brelichi";"Rhinopithecus";"brelichi";NA;262;59;0;16;NA;12267.15;NA;200;NA;NA;NA;NA
"Rhinopithecus_roxellana";"Rhinopithecus";"roxellana";NA;263;59;0;36;117.76;14750;65;199.34;NA;NA;NA;NA
"Rungwecebus_kipunji";"Rungwecebus";"kipunji";NA;264;60;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Saguinus_bicolor";"Saguinus";"bicolor";NA;265;61;0;9;NA;465;6.7;158.16;NA;NA;NA;NA
"Saguinus_fuscicollis";"Saguinus";"fuscicollis";NA;266;61;2;81;7.94;401;6;148;90.1;294;406.61;238.1
"Saguinus_fuscicollis_melanoleucus";"Saguinus";"fuscicollis";"melanoleucus";267;61;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Saguinus_geoffroyi";"Saguinus";"geoffroyi";NA;268;61;0;NA;10.14;517;6.9;NA;NA;NA;NA;NA
"Saguinus_imperator";"Saguinus";"imperator";NA;269;61;0;16;NA;407.91;5;NA;NA;242.4;NA;NA
"Saguinus_leucopus";"Saguinus";"leucopus";NA;270;61;0;3;9.7;525;7.5;142.5;NA;NA;NA;NA
"Saguinus_midas";"Saguinus";"midas";NA;271;61;0;17;9.78;563;5.55;138.24;69.6;184.8;841.82;207.84
"Saguinus_mystax";"Saguinus";"mystax";NA;272;61;0;46;11.09;584;5.4;148.28;NA;NA;556.85;NA
"Saguinus_niger";"Saguinus";"niger";NA;273;61;NA;NA;9.48;375;NA;NA;NA;NA;NA;NA
"Saguinus_oedipus";"Saguinus";"oedipus";NA;274;61;0;153;9.76;431;7.05;166.49;49.85;277.2;680.38;216.34
"Saguinus_tripartitus";"Saguinus";"tripartitus";NA;275;61;0;5;NA;385.05;NA;NA;NA;NA;NA;NA
"Saimiri_boliviensis";"Saimiri";"boliviensis";NA;276;62;0;36;NA;799.45;60;157.79;NA;NA;NA;NA
"Saimiri_oerstedii";"Saimiri";"oerstedii";NA;277;62;1;4;25.07;789;25.1;161;362.93;NA;NA;523.93
"Saimiri_sciureus";"Saimiri";"sciureus";NA;278;62;1;89;24.14;799;34.85;164.09;177.41;324;1399.88;341.5
"Saimiri_ustus";"Saimiri";"ustus";NA;279;62;0;4;NA;886.47;NA;NA;238.64;NA;NA;NA
"Semnopithecus_entellus";"Semnopithecus";"entellus";NA;280;63;2;98;110.93;14742;19;197.7;402.1;300;1497.64;599.8
"Symphalangus_syndactylus";"Symphalangus";"syndactylus";NA;281;64;0;40;123.5;11295;3.8;230.66;635.38;456;3788.23;866.04
"Tarsius_bancanus";"Tarsius";"bancanus";NA;282;65;0;8;3.16;126;1;125.84;78.55;144;658.68;204.39
"Tarsius_dentatus";"Tarsius";"dentatus";NA;283;65;0;2;3;113;1;NA;NA;NA;NA;NA
"Tarsius_lariang";"Tarsius";"lariang";NA;284;65;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Tarsius_syrichta";"Tarsius";"syrichta";NA;285;65;0;10;3.36;126;1;177.99;82.49;180;NA;260.48
"Theropithecus_gelada";"Theropithecus";"gelada";NA;286;66;0;34;133.33;15350;10;178.64;494.95;336;1894.11;673.59
"Trachypithecus_auratus";"Trachypithecus";"auratus";NA;287;67;0;2;NA;9719.6;11;NA;NA;NA;NA;NA
"Trachypithecus_cristatus";"Trachypithecus";"cristatus";NA;288;67;0;8;57.86;6394;27.4;NA;362.93;373.2;NA;NA
"Trachypithecus_delacouri";"Trachypithecus";"delacouri";NA;289;67;0;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Trachypithecus_francoisi";"Trachypithecus";"francoisi";NA;290;67;0;45;NA;8139.93;NA;NA;391.76;NA;NA;NA
"Trachypithecus_geei";"Trachypithecus";"geei";NA;291;67;0;7;81.3;10150;11;NA;NA;NA;NA;NA
"Trachypithecus_germaini";"Trachypithecus";"germaini";NA;292;67;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Trachypithecus_johnii";"Trachypithecus";"johnii";NA;293;67;1;9;84.6;11600;10;NA;NA;NA;NA;NA
"Trachypithecus_laotum";"Trachypithecus";"laotum";NA;294;67;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Trachypithecus_obscurus";"Trachypithecus";"obscurus";NA;295;67;0;6;62.12;7056;10;146.63;362.93;300;NA;509.56
"Trachypithecus_phayrei";"Trachypithecus";"phayrei";NA;296;67;0;16;72.84;7475;12.9;180.61;305.87;NA;NA;486.48
"Trachypithecus_pileatus";"Trachypithecus";"pileatus";NA;297;67;0;5;103.64;11794;8.5;NA;NA;NA;NA;NA
"Trachypithecus_poliocephalus";"Trachypithecus";"poliocephalus";NA;298;67;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA
"Trachypithecus_vetulus";"Trachypithecus";"vetulus";NA;299;67;0;2;61.29;6237;8.35;204.72;245.78;276;1113.7;450.5
"Varecia_rubra";"Varecia";"rubra";NA;300;68;NA;NA;31.08;3470;NA;NA;NA;NA;NA;NA
"Varecia_variegata_variegata";"Varecia";"variegata";"variegata";301;68;0;57;32.12;3575;2.8;102.5;90.73;384;701.52;193.23


================================================
FILE: data/Trolley.csv
================================================
"case";"response";"order";"id";"age";"male";"edu";"action";"intention";"contact";"story";"action2"
"cfaqu";4;2;"96;434";14;0;"Middle School";0;0;1;"aqu";1
"cfbur";3;31;"96;434";14;0;"Middle School";0;0;1;"bur";1
"cfrub";4;16;"96;434";14;0;"Middle School";0;0;1;"rub";1
"cibox";3;32;"96;434";14;0;"Middle School";0;1;1;"box";1
"cibur";3;4;"96;434";14;0;"Middle School";0;1;1;"bur";1
"cispe";3;9;"96;434";14;0;"Middle School";0;1;1;"spe";1
"fkaqu";5;29;"96;434";14;0;"Middle School";1;0;0;"aqu";1
"fkboa";4;12;"96;434";14;0;"Middle School";1;0;0;"boa";1
"fkbox";4;23;"96;434";14;0;"Middle School";1;0;0;"box";1
"fkbur";4;22;"96;434";14;0;"Middle School";1;0;0;"bur";1
"fkcar";4;27;"96;434";14;0;"Middle School";1;0;0;"car";1
"fkspe";4;19;"96;434";14;0;"Middle School";1;0;0;"spe";1
"fkswi";4;14;"96;434";14;0;"Middle School";1;0;0;"swi";1
"flboa";5;3;"96;434";14;0;"Middle School";0;0;0;"boa";0
"flcar";4;18;"96;434";14;0;"Middle School";0;0;0;"car";0
"flche";4;15;"96;434";14;0;"Middle School";0;0;0;"che";0
"flsha";4;30;"96;434";14;0;"Middle School";0;0;0;"sha";0
"flswi";4;5;"96;434";14;0;"Middle School";0;0;0;"swi";0
"ikbox";4;1;"96;434";14;0;"Middle School";1;1;0;"box";1
"ikbur";3;13;"96;434";14;0;"Middle School";1;1;0;"bur";1
"ikpon";3;20;"96;434";14;0;"Middle School";1;1;0;"pon";1
"ikshi";3;17;"96;434";14;0;"Middle School";1;1;0;"shi";1
"ikspe";4;28;"96;434";14;0;"Middle School";1;1;0;"spe";1
"ilbox";4;10;"96;434";14;0;"Middle School";0;1;0;"box";0
"ilche";5;6;"96;434";14;0;"Middle School";0;1;0;"che";0
"ilpon";4;11;"96;434";14;0;"Middle School";0;1;0;"pon";0
"ilsha";4;21;"96;434";14;0;"Middle School";0;1;0;"sha";0
"ilshi";3;26;"96;434";14;0;"Middle School";0;1;0;"shi";0
"ilswi";4;24;"96;434";14;0;"Middle School";0;1;0;"swi";0
"nfrub";4;7;"96;434";14;0;"Middle School";1;0;0;"rub";1
"cfaqu";4;31;"96;445";53;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";2;2;"96;445";53;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;17;"96;445";53;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;1;"96;445";53;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";1;29;"96;445";53;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;24;"96;445";53;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;445";53;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;21;"96;445";53;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";7;10;"96;445";53;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;11;"96;445";53;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";1;6;"96;445";53;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";1;14;"96;445";53;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";1;19;"96;445";53;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";1;30;"96;445";53;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;15;"96;445";53;1;"Bachelor's Degree";0;0;0;"car";0
"flche";1;18;"96;445";53;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";1;3;"96;445";53;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";4;28;"96;445";53;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";1;32;"96;445";53;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";1;20;"96;445";53;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;13;"96;445";53;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;16;"96;445";53;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";2;5;"96;445";53;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;23;"96;445";53;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";1;27;"96;445";53;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";2;22;"96;445";53;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";7;12;"96;445";53;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";1;7;"96;445";53;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;9;"96;445";53;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;26;"96;445";53;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";1;20;"96;451";57;1;"Some College";0;0;1;"aqu";1
"cfbur";1;32;"96;451";57;1;"Some College";0;0;1;"bur";1
"cfrub";1;7;"96;451";57;1;"Some College";0;0;1;"rub";1
"cibox";1;12;"96;451";57;1;"Some College";0;1;1;"box";1
"cibur";1;23;"96;451";57;1;"Some College";0;1;1;"bur";1
"cispe";1;27;"96;451";57;1;"Some College";0;1;1;"spe";1
"fkaqu";1;29;"96;451";57;1;"Some College";1;0;0;"aqu";1
"fkboa";1;11;"96;451";57;1;"Some College";1;0;0;"boa";1
"fkbox";1;22;"96;451";57;1;"Some College";1;0;0;"box";1
"fkbur";1;14;"96;451";57;1;"Some College";1;0;0;"bur";1
"fkcar";1;30;"96;451";57;1;"Some College";1;0;0;"car";1
"fkspe";1;9;"96;451";57;1;"Some College";1;0;0;"spe";1
"fkswi";1;25;"96;451";57;1;"Some College";1;0;0;"swi";1
"flboa";4;2;"96;451";57;1;"Some College";0;0;0;"boa";0
"flcar";4;21;"96;451";57;1;"Some College";0;0;0;"car";0
"flche";7;4;"96;451";57;1;"Some College";0;0;0;"che";0
"flsha";4;28;"96;451";57;1;"Some College";0;0;0;"sha";0
"flswi";4;6;"96;451";57;1;"Some College";0;0;0;"swi";0
"ikbox";1;3;"96;451";57;1;"Some College";1;1;0;"box";1
"ikbur";1;5;"96;451";57;1;"Some College";1;1;0;"bur";1
"ikpon";1;1;"96;451";57;1;"Some College";1;1;0;"pon";1
"ikshi";1;17;"96;451";57;1;"Some College";1;1;0;"shi";1
"ikspe";1;19;"96;451";57;1;"Some College";1;1;0;"spe";1
"ilbox";7;31;"96;451";57;1;"Some College";0;1;0;"box";0
"ilche";7;13;"96;451";57;1;"Some College";0;1;0;"che";0
"ilpon";4;10;"96;451";57;1;"Some College";0;1;0;"pon";0
"ilsha";1;18;"96;451";57;1;"Some College";0;1;0;"sha";0
"ilshi";4;26;"96;451";57;1;"Some College";0;1;0;"shi";0
"ilswi";4;15;"96;451";57;1;"Some College";0;1;0;"swi";0
"nfrub";1;16;"96;451";57;1;"Some College";1;0;0;"rub";1
"cfaqu";1;2;"96;456";63;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";1;31;"96;456";63;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";1;16;"96;456";63;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;32;"96;456";63;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";1;4;"96;456";63;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;9;"96;456";63;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";1;29;"96;456";63;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";1;12;"96;456";63;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;23;"96;456";63;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;22;"96;456";63;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";7;27;"96;456";63;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";1;19;"96;456";63;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;14;"96;456";63;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;3;"96;456";63;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;18;"96;456";63;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;15;"96;456";63;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;30;"96;456";63;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;5;"96;456";63;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";1;1;"96;456";63;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";1;13;"96;456";63;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;20;"96;456";63;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;456";63;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";1;28;"96;456";63;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;10;"96;456";63;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;6;"96;456";63;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;11;"96;456";63;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;21;"96;456";63;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;456";63;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;24;"96;456";63;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";7;7;"96;456";63;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";4;31;"96;458";39;0;"Master's Degree";0;0;1;"aqu";1
"cfbur";1;2;"96;458";39;0;"Master's Degree";0;0;1;"bur";1
"cfrub";1;17;"96;458";39;0;"Master's Degree";0;0;1;"rub";1
"cibox";1;1;"96;458";39;0;"Master's Degree";0;1;1;"box";1
"cibur";1;29;"96;458";39;0;"Master's Degree";0;1;1;"bur";1
"cispe";1;24;"96;458";39;0;"Master's Degree";0;1;1;"spe";1
"fkaqu";4;4;"96;458";39;0;"Master's Degree";1;0;0;"aqu";1
"fkboa";1;21;"96;458";39;0;"Master's Degree";1;0;0;"boa";1
"fkbox";1;10;"96;458";39;0;"Master's Degree";1;0;0;"box";1
"fkbur";1;11;"96;458";39;0;"Master's Degree";1;0;0;"bur";1
"fkcar";1;6;"96;458";39;0;"Master's Degree";1;0;0;"car";1
"fkspe";1;14;"96;458";39;0;"Master's Degree";1;0;0;"spe";1
"fkswi";1;19;"96;458";39;0;"Master's Degree";1;0;0;"swi";1
"flboa";4;30;"96;458";39;0;"Master's Degree";0;0;0;"boa";0
"flcar";7;15;"96;458";39;0;"Master's Degree";0;0;0;"car";0
"flche";4;18;"96;458";39;0;"Master's Degree";0;0;0;"che";0
"flsha";4;3;"96;458";39;0;"Master's Degree";0;0;0;"sha";0
"flswi";1;28;"96;458";39;0;"Master's Degree";0;0;0;"swi";0
"ikbox";1;32;"96;458";39;0;"Master's Degree";1;1;0;"box";1
"ikbur";1;20;"96;458";39;0;"Master's Degree";1;1;0;"bur";1
"ikpon";1;13;"96;458";39;0;"Master's Degree";1;1;0;"pon";1
"ikshi";1;16;"96;458";39;0;"Master's Degree";1;1;0;"shi";1
"ikspe";1;5;"96;458";39;0;"Master's Degree";1;1;0;"spe";1
"ilbox";1;23;"96;458";39;0;"Master's Degree";0;1;0;"box";0
"ilche";4;27;"96;458";39;0;"Master's Degree";0;1;0;"che";0
"ilpon";1;22;"96;458";39;0;"Master's Degree";0;1;0;"pon";0
"ilsha";1;12;"96;458";39;0;"Master's Degree";0;1;0;"sha";0
"ilshi";4;7;"96;458";39;0;"Master's Degree";0;1;0;"shi";0
"ilswi";1;9;"96;458";39;0;"Master's Degree";0;1;0;"swi";0
"nfrub";1;26;"96;458";39;0;"Master's Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;466";38;0;"Some College";0;0;1;"aqu";1
"cfbur";5;31;"96;466";38;0;"Some College";0;0;1;"bur";1
"cfrub";6;16;"96;466";38;0;"Some College";0;0;1;"rub";1
"cibox";2;32;"96;466";38;0;"Some College";0;1;1;"box";1
"cibur";6;4;"96;466";38;0;"Some College";0;1;1;"bur";1
"cispe";5;9;"96;466";38;0;"Some College";0;1;1;"spe";1
"fkaqu";6;29;"96;466";38;0;"Some College";1;0;0;"aqu";1
"fkboa";5;12;"96;466";38;0;"Some College";1;0;0;"boa";1
"fkbox";5;23;"96;466";38;0;"Some College";1;0;0;"box";1
"fkbur";5;22;"96;466";38;0;"Some College";1;0;0;"bur";1
"fkcar";4;27;"96;466";38;0;"Some College";1;0;0;"car";1
"fkspe";6;19;"96;466";38;0;"Some College";1;0;0;"spe";1
"fkswi";5;14;"96;466";38;0;"Some College";1;0;0;"swi";1
"flboa";5;3;"96;466";38;0;"Some College";0;0;0;"boa";0
"flcar";6;18;"96;466";38;0;"Some College";0;0;0;"car";0
"flche";6;15;"96;466";38;0;"Some College";0;0;0;"che";0
"flsha";3;30;"96;466";38;0;"Some College";0;0;0;"sha";0
"flswi";5;5;"96;466";38;0;"Some College";0;0;0;"swi";0
"ikbox";5;1;"96;466";38;0;"Some College";1;1;0;"box";1
"ikbur";2;13;"96;466";38;0;"Some College";1;1;0;"bur";1
"ikpon";4;20;"96;466";38;0;"Some College";1;1;0;"pon";1
"ikshi";2;17;"96;466";38;0;"Some College";1;1;0;"shi";1
"ikspe";4;28;"96;466";38;0;"Some College";1;1;0;"spe";1
"ilbox";5;10;"96;466";38;0;"Some College";0;1;0;"box";0
"ilche";6;6;"96;466";38;0;"Some College";0;1;0;"che";0
"ilpon";2;11;"96;466";38;0;"Some College";0;1;0;"pon";0
"ilsha";5;21;"96;466";38;0;"Some College";0;1;0;"sha";0
"ilshi";4;26;"96;466";38;0;"Some College";0;1;0;"shi";0
"ilswi";6;24;"96;466";38;0;"Some College";0;1;0;"swi";0
"nfrub";6;7;"96;466";38;0;"Some College";1;0;0;"rub";1
"cfaqu";7;13;"96;467";46;0;"High School Graduate";0;0;1;"aqu";1
"cfbur";4;1;"96;467";46;0;"High School Graduate";0;0;1;"bur";1
"cfrub";3;26;"96;467";46;0;"High School Graduate";0;0;1;"rub";1
"cibox";2;21;"96;467";46;0;"High School Graduate";0;1;1;"box";1
"cibur";4;10;"96;467";46;0;"High School Graduate";0;1;1;"bur";1
"cispe";2;6;"96;467";46;0;"High School Graduate";0;1;1;"spe";1
"fkaqu";6;4;"96;467";46;0;"High School Graduate";1;0;0;"aqu";1
"fkboa";3;22;"96;467";46;0;"High School Graduate";1;0;0;"boa";1
"fkbox";4;11;"96;467";46;0;"High School Graduate";1;0;0;"box";1
"fkbur";4;19;"96;467";46;0;"High School Graduate";1;0;0;"bur";1
"fkcar";2;3;"96;467";46;0;"High School Graduate";1;0;0;"car";1
"fkspe";2;24;"96;467";46;0;"High School Graduate";1;0;0;"spe";1
"fkswi";4;8;"96;467";46;0;"High School Graduate";1;0;0;"swi";1
"flboa";4;31;"96;467";46;0;"High School Graduate";0;0;0;"boa";0
"flcar";4;12;"96;467";46;0;"High School Graduate";0;0;0;"car";0
"flche";5;29;"96;467";46;0;"High School Graduate";0;0;0;"che";0
"flsha";4;5;"96;467";46;0;"High School Graduate";0;0;0;"sha";0
"flswi";4;27;"96;467";46;0;"High School Graduate";0;0;0;"swi";0
"ikbox";4;30;"96;467";46;0;"High School Graduate";1;1;0;"box";1
"ikbur";4;28;"96;467";46;0;"High School Graduate";1;1;0;"bur";1
"ikpon";3;32;"96;467";46;0;"High School Graduate";1;1;0;"pon";1
"ikshi";7;16;"96;467";46;0;"High School Graduate";1;1;0;"shi";1
"ikspe";2;14;"96;467";46;0;"High School Graduate";1;1;0;"spe";1
"ilbox";4;2;"96;467";46;0;"High School Graduate";0;1;0;"box";0
"ilche";4;20;"96;467";46;0;"High School Graduate";0;1;0;"che";0
"ilpon";4;23;"96;467";46;0;"High School Graduate";0;1;0;"pon";0
"ilsha";5;15;"96;467";46;0;"High School Graduate";0;1;0;"sha";0
"ilshi";7;7;"96;467";46;0;"High School Graduate";0;1;0;"shi";0
"ilswi";4;18;"96;467";46;0;"High School Graduate";0;1;0;"swi";0
"nfrub";4;17;"96;467";46;0;"High School Graduate";1;0;0;"rub";1
"cfaqu";7;2;"96;474";52;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";7;31;"96;474";52;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";7;16;"96;474";52;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;32;"96;474";52;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";4;4;"96;474";52;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;9;"96;474";52;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;474";52;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";7;12;"96;474";52;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";7;23;"96;474";52;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;22;"96;474";52;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";7;27;"96;474";52;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";7;19;"96;474";52;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";7;14;"96;474";52;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;3;"96;474";52;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;18;"96;474";52;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;15;"96;474";52;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;30;"96;474";52;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;5;"96;474";52;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";7;1;"96;474";52;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";7;13;"96;474";52;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;20;"96;474";52;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;17;"96;474";52;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";7;28;"96;474";52;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";1;10;"96;474";52;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;6;"96;474";52;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;11;"96;474";52;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";7;21;"96;474";52;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;474";52;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;24;"96;474";52;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";7;7;"96;474";52;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;20;"96;480";32;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";4;32;"96;480";32;1;"Master's Degree";0;0;1;"bur";1
"cfrub";3;7;"96;480";32;1;"Master's Degree";0;0;1;"rub";1
"cibox";2;12;"96;480";32;1;"Master's Degree";0;1;1;"box";1
"cibur";3;23;"96;480";32;1;"Master's Degree";0;1;1;"bur";1
"cispe";2;27;"96;480";32;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";4;29;"96;480";32;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";4;11;"96;480";32;1;"Master's Degree";1;0;0;"boa";1
"fkbox";3;22;"96;480";32;1;"Master's Degree";1;0;0;"box";1
"fkbur";5;14;"96;480";32;1;"Master's Degree";1;0;0;"bur";1
"fkcar";3;30;"96;480";32;1;"Master's Degree";1;0;0;"car";1
"fkspe";2;9;"96;480";32;1;"Master's Degree";1;0;0;"spe";1
"fkswi";3;25;"96;480";32;1;"Master's Degree";1;0;0;"swi";1
"flboa";5;2;"96;480";32;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;21;"96;480";32;1;"Master's Degree";0;0;0;"car";0
"flche";2;4;"96;480";32;1;"Master's Degree";0;0;0;"che";0
"flsha";3;28;"96;480";32;1;"Master's Degree";0;0;0;"sha";0
"flswi";4;6;"96;480";32;1;"Master's Degree";0;0;0;"swi";0
"ikbox";5;3;"96;480";32;1;"Master's Degree";1;1;0;"box";1
"ikbur";6;5;"96;480";32;1;"Master's Degree";1;1;0;"bur";1
"ikpon";2;1;"96;480";32;1;"Master's Degree";1;1;0;"pon";1
"ikshi";3;17;"96;480";32;1;"Master's Degree";1;1;0;"shi";1
"ikspe";2;19;"96;480";32;1;"Master's Degree";1;1;0;"spe";1
"ilbox";4;31;"96;480";32;1;"Master's Degree";0;1;0;"box";0
"ilche";5;13;"96;480";32;1;"Master's Degree";0;1;0;"che";0
"ilpon";3;10;"96;480";32;1;"Master's Degree";0;1;0;"pon";0
"ilsha";4;18;"96;480";32;1;"Master's Degree";0;1;0;"sha";0
"ilshi";4;26;"96;480";32;1;"Master's Degree";0;1;0;"shi";0
"ilswi";3;15;"96;480";32;1;"Master's Degree";0;1;0;"swi";0
"nfrub";3;16;"96;480";32;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";5;20;"96;481";49;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;32;"96;481";49;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";6;7;"96;481";49;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";5;12;"96;481";49;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";5;23;"96;481";49;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;27;"96;481";49;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;481";49;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";6;11;"96;481";49;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;22;"96;481";49;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";5;14;"96;481";49;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;30;"96;481";49;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";6;9;"96;481";49;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";5;25;"96;481";49;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;2;"96;481";49;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";3;21;"96;481";49;1;"Bachelor's Degree";0;0;0;"car";0
"flche";4;4;"96;481";49;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;28;"96;481";49;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";5;6;"96;481";49;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";5;3;"96;481";49;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";5;5;"96;481";49;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";2;1;"96;481";49;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";6;17;"96;481";49;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;19;"96;481";49;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";3;31;"96;481";49;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;13;"96;481";49;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";5;10;"96;481";49;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";3;18;"96;481";49;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";5;26;"96;481";49;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;15;"96;481";49;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;16;"96;481";49;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;13;"96;497";44;0;"Some College";0;0;1;"aqu";1
"cfbur";5;1;"96;497";44;0;"Some College";0;0;1;"bur";1
"cfrub";5;26;"96;497";44;0;"Some College";0;0;1;"rub";1
"cibox";2;21;"96;497";44;0;"Some College";0;1;1;"box";1
"cibur";5;10;"96;497";44;0;"Some College";0;1;1;"bur";1
"cispe";2;6;"96;497";44;0;"Some College";0;1;1;"spe";1
"fkaqu";5;4;"96;497";44;0;"Some College";1;0;0;"aqu";1
"fkboa";4;22;"96;497";44;0;"Some College";1;0;0;"boa";1
"fkbox";5;11;"96;497";44;0;"Some College";1;0;0;"box";1
"fkbur";6;19;"96;497";44;0;"Some College";1;0;0;"bur";1
"fkcar";5;3;"96;497";44;0;"Some College";1;0;0;"car";1
"fkspe";1;24;"96;497";44;0;"Some College";1;0;0;"spe";1
"fkswi";5;8;"96;497";44;0;"Some College";1;0;0;"swi";1
"flboa";7;31;"96;497";44;0;"Some College";0;0;0;"boa";0
"flcar";5;12;"96;497";44;0;"Some College";0;0;0;"car";0
"flche";7;29;"96;497";44;0;"Some College";0;0;0;"che";0
"flsha";5;5;"96;497";44;0;"Some College";0;0;0;"sha";0
"flswi";5;27;"96;497";44;0;"Some College";0;0;0;"swi";0
"ikbox";6;30;"96;497";44;0;"Some College";1;1;0;"box";1
"ikbur";2;28;"96;497";44;0;"Some College";1;1;0;"bur";1
"ikpon";1;32;"96;497";44;0;"Some College";1;1;0;"pon";1
"ikshi";4;16;"96;497";44;0;"Some College";1;1;0;"shi";1
"ikspe";2;14;"96;497";44;0;"Some College";1;1;0;"spe";1
"ilbox";5;2;"96;497";44;0;"Some College";0;1;0;"box";0
"ilche";6;20;"96;497";44;0;"Some College";0;1;0;"che";0
"ilpon";7;23;"96;497";44;0;"Some College";0;1;0;"pon";0
"ilsha";6;15;"96;497";44;0;"Some College";0;1;0;"sha";0
"ilshi";4;7;"96;497";44;0;"Some College";0;1;0;"shi";0
"ilswi";6;18;"96;497";44;0;"Some College";0;1;0;"swi";0
"nfrub";6;17;"96;497";44;0;"Some College";1;0;0;"rub";1
"cfaqu";6;31;"96;498";27;1;"High School Graduate";0;0;1;"aqu";1
"cfbur";6;2;"96;498";27;1;"High School Graduate";0;0;1;"bur";1
"cfrub";3;17;"96;498";27;1;"High School Graduate";0;0;1;"rub";1
"cibox";1;1;"96;498";27;1;"High School Graduate";0;1;1;"box";1
"cibur";5;29;"96;498";27;1;"High School Graduate";0;1;1;"bur";1
"cispe";3;24;"96;498";27;1;"High School Graduate";0;1;1;"spe";1
"fkaqu";6;4;"96;498";27;1;"High School Graduate";1;0;0;"aqu";1
"fkboa";7;21;"96;498";27;1;"High School Graduate";1;0;0;"boa";1
"fkbox";7;10;"96;498";27;1;"High School Graduate";1;0;0;"box";1
"fkbur";7;11;"96;498";27;1;"High School Graduate";1;0;0;"bur";1
"fkcar";7;6;"96;498";27;1;"High School Graduate";1;0;0;"car";1
"fkspe";6;14;"96;498";27;1;"High School Graduate";1;0;0;"spe";1
"fkswi";7;19;"96;498";27;1;"High School Graduate";1;0;0;"swi";1
"flboa";7;30;"96;498";27;1;"High School Graduate";0;0;0;"boa";0
"flcar";7;15;"96;498";27;1;"High School Graduate";0;0;0;"car";0
"flche";7;18;"96;498";27;1;"High School Graduate";0;0;0;"che";0
"flsha";5;3;"96;498";27;1;"High School Graduate";0;0;0;"sha";0
"flswi";7;28;"96;498";27;1;"High School Graduate";0;0;0;"swi";0
"ikbox";6;32;"96;498";27;1;"High School Graduate";1;1;0;"box";1
"ikbur";5;20;"96;498";27;1;"High School Graduate";1;1;0;"bur";1
"ikpon";7;13;"96;498";27;1;"High School Graduate";1;1;0;"pon";1
"ikshi";7;16;"96;498";27;1;"High School Graduate";1;1;0;"shi";1
"ikspe";7;5;"96;498";27;1;"High School Graduate";1;1;0;"spe";1
"ilbox";7;23;"96;498";27;1;"High School Graduate";0;1;0;"box";0
"ilche";7;27;"96;498";27;1;"High School Graduate";0;1;0;"che";0
"ilpon";7;22;"96;498";27;1;"High School Graduate";0;1;0;"pon";0
"ilsha";6;12;"96;498";27;1;"High School Graduate";0;1;0;"sha";0
"ilshi";1;7;"96;498";27;1;"High School Graduate";0;1;0;"shi";0
"ilswi";1;9;"96;498";27;1;"High School Graduate";0;1;0;"swi";0
"nfrub";5;26;"96;498";27;1;"High School Graduate";1;0;0;"rub";1
"cfaqu";4;20;"96;502";28;1;"Some College";0;0;1;"aqu";1
"cfbur";4;32;"96;502";28;1;"Some College";0;0;1;"bur";1
"cfrub";4;7;"96;502";28;1;"Some College";0;0;1;"rub";1
"cibox";2;12;"96;502";28;1;"Some College";0;1;1;"box";1
"cibur";4;23;"96;502";28;1;"Some College";0;1;1;"bur";1
"cispe";4;27;"96;502";28;1;"Some College";0;1;1;"spe";1
"fkaqu";4;29;"96;502";28;1;"Some College";1;0;0;"aqu";1
"fkboa";4;11;"96;502";28;1;"Some College";1;0;0;"boa";1
"fkbox";4;22;"96;502";28;1;"Some College";1;0;0;"box";1
"fkbur";4;14;"96;502";28;1;"Some College";1;0;0;"bur";1
"fkcar";4;30;"96;502";28;1;"Some College";1;0;0;"car";1
"fkspe";4;9;"96;502";28;1;"Some College";1;0;0;"spe";1
"fkswi";4;25;"96;502";28;1;"Some College";1;0;0;"swi";1
"flboa";4;2;"96;502";28;1;"Some College";0;0;0;"boa";0
"flcar";5;21;"96;502";28;1;"Some College";0;0;0;"car";0
"flche";4;4;"96;502";28;1;"Some College";0;0;0;"che";0
"flsha";4;28;"96;502";28;1;"Some College";0;0;0;"sha";0
"flswi";4;6;"96;502";28;1;"Some College";0;0;0;"swi";0
"ikbox";4;3;"96;502";28;1;"Some College";1;1;0;"box";1
"ikbur";3;5;"96;502";28;1;"Some College";1;1;0;"bur";1
"ikpon";4;1;"96;502";28;1;"Some College";1;1;0;"pon";1
"ikshi";5;17;"96;502";28;1;"Some College";1;1;0;"shi";1
"ikspe";4;19;"96;502";28;1;"Some College";1;1;0;"spe";1
"ilbox";4;31;"96;502";28;1;"Some College";0;1;0;"box";0
"ilche";4;13;"96;502";28;1;"Some College";0;1;0;"che";0
"ilpon";4;10;"96;502";28;1;"Some College";0;1;0;"pon";0
"ilsha";4;18;"96;502";28;1;"Some College";0;1;0;"sha";0
"ilshi";4;26;"96;502";28;1;"Some College";0;1;0;"shi";0
"ilswi";4;15;"96;502";28;1;"Some College";0;1;0;"swi";0
"nfrub";4;16;"96;502";28;1;"Some College";1;0;0;"rub";1
"cfaqu";5;31;"96;505";30;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;2;"96;505";30;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;17;"96;505";30;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";3;1;"96;505";30;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";1;29;"96;505";30;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";2;24;"96;505";30;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";4;4;"96;505";30;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;21;"96;505";30;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;10;"96;505";30;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;11;"96;505";30;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;6;"96;505";30;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;14;"96;505";30;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;19;"96;505";30;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;30;"96;505";30;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;15;"96;505";30;0;"Bachelor's Degree";0;0;0;"car";0
"flche";2;18;"96;505";30;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;3;"96;505";30;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";3;28;"96;505";30;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";2;32;"96;505";30;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";1;20;"96;505";30;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;13;"96;505";30;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;16;"96;505";30;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;5;"96;505";30;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";2;23;"96;505";30;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";2;27;"96;505";30;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";3;22;"96;505";30;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;12;"96;505";30;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;7;"96;505";30;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";1;9;"96;505";30;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;26;"96;505";30;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;13;"96;511";26;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";7;1;"96;511";26;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";6;26;"96;511";26;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";4;21;"96;511";26;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";6;10;"96;511";26;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;6;"96;511";26;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;511";26;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;22;"96;511";26;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;11;"96;511";26;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";6;19;"96;511";26;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";6;3;"96;511";26;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";6;24;"96;511";26;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;8;"96;511";26;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;31;"96;511";26;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;12;"96;511";26;1;"Bachelor's Degree";0;0;0;"car";0
"flche";2;29;"96;511";26;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";6;5;"96;511";26;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";5;27;"96;511";26;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";6;30;"96;511";26;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";5;28;"96;511";26;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";4;32;"96;511";26;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;16;"96;511";26;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";6;14;"96;511";26;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";2;2;"96;511";26;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";6;20;"96;511";26;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;23;"96;511";26;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";6;15;"96;511";26;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";5;7;"96;511";26;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";6;18;"96;511";26;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";6;17;"96;511";26;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;2;"96;512";36;1;"Some College";0;0;1;"aqu";1
"cfbur";1;31;"96;512";36;1;"Some College";0;0;1;"bur";1
"cfrub";1;16;"96;512";36;1;"Some College";0;0;1;"rub";1
"cibox";1;32;"96;512";36;1;"Some College";0;1;1;"box";1
"cibur";1;4;"96;512";36;1;"Some College";0;1;1;"bur";1
"cispe";1;9;"96;512";36;1;"Some College";0;1;1;"spe";1
"fkaqu";4;29;"96;512";36;1;"Some College";1;0;0;"aqu";1
"fkboa";1;12;"96;512";36;1;"Some College";1;0;0;"boa";1
"fkbox";1;23;"96;512";36;1;"Some College";1;0;0;"box";1
"fkbur";1;22;"96;512";36;1;"Some College";1;0;0;"bur";1
"fkcar";4;27;"96;512";36;1;"Some College";1;0;0;"car";1
"fkspe";1;19;"96;512";36;1;"Some College";1;0;0;"spe";1
"fkswi";1;14;"96;512";36;1;"Some College";1;0;0;"swi";1
"flboa";7;3;"96;512";36;1;"Some College";0;0;0;"boa";0
"flcar";7;18;"96;512";36;1;"Some College";0;0;0;"car";0
"flche";7;15;"96;512";36;1;"Some College";0;0;0;"che";0
"flsha";6;30;"96;512";36;1;"Some College";0;0;0;"sha";0
"flswi";7;5;"96;512";36;1;"Some College";0;0;0;"swi";0
"ikbox";1;1;"96;512";36;1;"Some College";1;1;0;"box";1
"ikbur";1;13;"96;512";36;1;"Some College";1;1;0;"bur";1
"ikpon";1;20;"96;512";36;1;"Some College";1;1;0;"pon";1
"ikshi";4;17;"96;512";36;1;"Some College";1;1;0;"shi";1
"ikspe";1;28;"96;512";36;1;"Some College";1;1;0;"spe";1
"ilbox";2;10;"96;512";36;1;"Some College";0;1;0;"box";0
"ilche";7;6;"96;512";36;1;"Some College";0;1;0;"che";0
"ilpon";1;11;"96;512";36;1;"Some College";0;1;0;"pon";0
"ilsha";3;21;"96;512";36;1;"Some College";0;1;0;"sha";0
"ilshi";7;26;"96;512";36;1;"Some College";0;1;0;"shi";0
"ilswi";7;24;"96;512";36;1;"Some College";0;1;0;"swi";0
"nfrub";1;7;"96;512";36;1;"Some College";1;0;0;"rub";1
"cfaqu";4;20;"96;518";53;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";7;32;"96;518";53;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";7;7;"96;518";53;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;12;"96;518";53;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";7;23;"96;518";53;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;27;"96;518";53;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;518";53;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";7;11;"96;518";53;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";7;22;"96;518";53;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;14;"96;518";53;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";1;30;"96;518";53;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";7;9;"96;518";53;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";7;25;"96;518";53;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;2;"96;518";53;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;21;"96;518";53;0;"Bachelor's Degree";0;0;0;"car";0
"flche";4;4;"96;518";53;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;28;"96;518";53;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";2;6;"96;518";53;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;3;"96;518";53;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";7;5;"96;518";53;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;1;"96;518";53;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";1;17;"96;518";53;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";7;19;"96;518";53;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";1;31;"96;518";53;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";4;13;"96;518";53;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;10;"96;518";53;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";7;18;"96;518";53;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;518";53;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;15;"96;518";53;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";7;16;"96;518";53;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;31;"96;519";36;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;2;"96;519";36;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";2;17;"96;519";36;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;1;"96;519";36;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";7;29;"96;519";36;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;24;"96;519";36;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;4;"96;519";36;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";1;21;"96;519";36;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";3;10;"96;519";36;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;11;"96;519";36;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";3;6;"96;519";36;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";1;14;"96;519";36;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;19;"96;519";36;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";1;30;"96;519";36;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;15;"96;519";36;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;18;"96;519";36;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;3;"96;519";36;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";4;28;"96;519";36;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";2;32;"96;519";36;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";5;20;"96;519";36;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;13;"96;519";36;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";2;16;"96;519";36;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";1;5;"96;519";36;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";3;23;"96;519";36;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;27;"96;519";36;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";3;22;"96;519";36;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;12;"96;519";36;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";2;7;"96;519";36;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";4;9;"96;519";36;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";2;26;"96;519";36;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;2;"96;531";23;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;31;"96;531";23;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";3;16;"96;531";23;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";3;32;"96;531";23;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";2;4;"96;531";23;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;9;"96;531";23;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";4;29;"96;531";23;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";3;12;"96;531";23;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";3;23;"96;531";23;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";6;22;"96;531";23;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";3;27;"96;531";23;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";2;19;"96;531";23;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";3;14;"96;531";23;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;3;"96;531";23;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";2;18;"96;531";23;0;"Bachelor's Degree";0;0;0;"car";0
"flche";2;15;"96;531";23;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;30;"96;531";23;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";3;5;"96;531";23;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";5;1;"96;531";23;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;13;"96;531";23;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;20;"96;531";23;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";3;17;"96;531";23;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";2;28;"96;531";23;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";3;10;"96;531";23;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";2;6;"96;531";23;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";2;11;"96;531";23;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";3;21;"96;531";23;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;26;"96;531";23;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;24;"96;531";23;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;7;"96;531";23;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";4;20;"96;533";23;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";3;32;"96;533";23;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;7;"96;533";23;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";3;12;"96;533";23;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";3;23;"96;533";23;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";2;27;"96;533";23;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";4;29;"96;533";23;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";3;11;"96;533";23;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";3;22;"96;533";23;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;14;"96;533";23;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";3;30;"96;533";23;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";5;9;"96;533";23;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;25;"96;533";23;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";5;2;"96;533";23;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;21;"96;533";23;0;"Bachelor's Degree";0;0;0;"car";0
"flche";5;4;"96;533";23;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;28;"96;533";23;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";4;6;"96;533";23;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";3;3;"96;533";23;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;5;"96;533";23;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;1;"96;533";23;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;533";23;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";3;19;"96;533";23;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;31;"96;533";23;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";4;13;"96;533";23;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;10;"96;533";23;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;18;"96;533";23;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";5;26;"96;533";23;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";4;15;"96;533";23;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;16;"96;533";23;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";4;31;"96;538";39;0;"Graduate Degree";0;0;1;"aqu";1
"cfbur";5;2;"96;538";39;0;"Graduate Degree";0;0;1;"bur";1
"cfrub";2;17;"96;538";39;0;"Graduate Degree";0;0;1;"rub";1
"cibox";1;1;"96;538";39;0;"Graduate Degree";0;1;1;"box";1
"cibur";1;29;"96;538";39;0;"Graduate Degree";0;1;1;"bur";1
"cispe";1;24;"96;538";39;0;"Graduate Degree";0;1;1;"spe";1
"fkaqu";5;4;"96;538";39;0;"Graduate Degree";1;0;0;"aqu";1
"fkboa";2;21;"96;538";39;0;"Graduate Degree";1;0;0;"boa";1
"fkbox";6;10;"96;538";39;0;"Graduate Degree";1;0;0;"box";1
"fkbur";6;11;"96;538";39;0;"Graduate Degree";1;0;0;"bur";1
"fkcar";1;6;"96;538";39;0;"Graduate Degree";1;0;0;"car";1
"fkspe";2;14;"96;538";39;0;"Graduate Degree";1;0;0;"spe";1
"fkswi";4;19;"96;538";39;0;"Graduate Degree";1;0;0;"swi";1
"flboa";2;30;"96;538";39;0;"Graduate Degree";0;0;0;"boa";0
"flcar";3;15;"96;538";39;0;"Graduate Degree";0;0;0;"car";0
"flche";4;18;"96;538";39;0;"Graduate Degree";0;0;0;"che";0
"flsha";3;3;"96;538";39;0;"Graduate Degree";0;0;0;"sha";0
"flswi";2;28;"96;538";39;0;"Graduate Degree";0;0;0;"swi";0
"ikbox";1;32;"96;538";39;0;"Graduate Degree";1;1;0;"box";1
"ikbur";1;20;"96;538";39;0;"Graduate Degree";1;1;0;"bur";1
"ikpon";1;13;"96;538";39;0;"Graduate Degree";1;1;0;"pon";1
"ikshi";2;16;"96;538";39;0;"Graduate Degree";1;1;0;"shi";1
"ikspe";1;5;"96;538";39;0;"Graduate Degree";1;1;0;"spe";1
"ilbox";3;23;"96;538";39;0;"Graduate Degree";0;1;0;"box";0
"ilche";5;27;"96;538";39;0;"Graduate Degree";0;1;0;"che";0
"ilpon";2;22;"96;538";39;0;"Graduate Degree";0;1;0;"pon";0
"ilsha";2;12;"96;538";39;0;"Graduate Degree";0;1;0;"sha";0
"ilshi";3;7;"96;538";39;0;"Graduate Degree";0;1;0;"shi";0
"ilswi";1;9;"96;538";39;0;"Graduate Degree";0;1;0;"swi";0
"nfrub";2;26;"96;538";39;0;"Graduate Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;547";26;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";1;31;"96;547";26;1;"Master's Degree";0;0;1;"bur";1
"cfrub";2;16;"96;547";26;1;"Master's Degree";0;0;1;"rub";1
"cibox";1;32;"96;547";26;1;"Master's Degree";0;1;1;"box";1
"cibur";2;4;"96;547";26;1;"Master's Degree";0;1;1;"bur";1
"cispe";1;9;"96;547";26;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;547";26;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";2;12;"96;547";26;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;23;"96;547";26;1;"Master's Degree";1;0;0;"box";1
"fkbur";3;22;"96;547";26;1;"Master's Degree";1;0;0;"bur";1
"fkcar";5;27;"96;547";26;1;"Master's Degree";1;0;0;"car";1
"fkspe";2;19;"96;547";26;1;"Master's Degree";1;0;0;"spe";1
"fkswi";5;14;"96;547";26;1;"Master's Degree";1;0;0;"swi";1
"flboa";6;3;"96;547";26;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;18;"96;547";26;1;"Master's Degree";0;0;0;"car";0
"flche";6;15;"96;547";26;1;"Master's Degree";0;0;0;"che";0
"flsha";5;30;"96;547";26;1;"Master's Degree";0;0;0;"sha";0
"flswi";7;5;"96;547";26;1;"Master's Degree";0;0;0;"swi";0
"ikbox";5;1;"96;547";26;1;"Master's Degree";1;1;0;"box";1
"ikbur";1;13;"96;547";26;1;"Master's Degree";1;1;0;"bur";1
"ikpon";2;20;"96;547";26;1;"Master's Degree";1;1;0;"pon";1
"ikshi";6;17;"96;547";26;1;"Master's Degree";1;1;0;"shi";1
"ikspe";2;28;"96;547";26;1;"Master's Degree";1;1;0;"spe";1
"ilbox";3;10;"96;547";26;1;"Master's Degree";0;1;0;"box";0
"ilche";7;6;"96;547";26;1;"Master's Degree";0;1;0;"che";0
"ilpon";4;11;"96;547";26;1;"Master's Degree";0;1;0;"pon";0
"ilsha";6;21;"96;547";26;1;"Master's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;547";26;1;"Master's Degree";0;1;0;"shi";0
"ilswi";6;24;"96;547";26;1;"Master's Degree";0;1;0;"swi";0
"nfrub";4;7;"96;547";26;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";1;13;"96;550";14;1;"Some High School";0;0;1;"aqu";1
"cfbur";1;1;"96;550";14;1;"Some High School";0;0;1;"bur";1
"cfrub";1;26;"96;550";14;1;"Some High School";0;0;1;"rub";1
"cibox";1;21;"96;550";14;1;"Some High School";0;1;1;"box";1
"cibur";1;10;"96;550";14;1;"Some High School";0;1;1;"bur";1
"cispe";1;6;"96;550";14;1;"Some High School";0;1;1;"spe";1
"fkaqu";1;4;"96;550";14;1;"Some High School";1;0;0;"aqu";1
"fkboa";1;22;"96;550";14;1;"Some High School";1;0;0;"boa";1
"fkbox";1;11;"96;550";14;1;"Some High School";1;0;0;"box";1
"fkbur";1;19;"96;550";14;1;"Some High School";1;0;0;"bur";1
"fkcar";2;3;"96;550";14;1;"Some High School";1;0;0;"car";1
"fkspe";1;24;"96;550";14;1;"Some High School";1;0;0;"spe";1
"fkswi";1;8;"96;550";14;1;"Some High School";1;0;0;"swi";1
"flboa";1;31;"96;550";14;1;"Some High School";0;0;0;"boa";0
"flcar";1;12;"96;550";14;1;"Some High School";0;0;0;"car";0
"flche";1;29;"96;550";14;1;"Some High School";0;0;0;"che";0
"flsha";1;5;"96;550";14;1;"Some High School";0;0;0;"sha";0
"flswi";1;27;"96;550";14;1;"Some High School";0;0;0;"swi";0
"ikbox";1;30;"96;550";14;1;"Some High School";1;1;0;"box";1
"ikbur";1;28;"96;550";14;1;"Some High School";1;1;0;"bur";1
"ikpon";1;32;"96;550";14;1;"Some High School";1;1;0;"pon";1
"ikshi";1;16;"96;550";14;1;"Some High School";1;1;0;"shi";1
"ikspe";1;14;"96;550";14;1;"Some High School";1;1;0;"spe";1
"ilbox";7;2;"96;550";14;1;"Some High School";0;1;0;"box";0
"ilche";1;20;"96;550";14;1;"Some High School";0;1;0;"che";0
"ilpon";1;23;"96;550";14;1;"Some High School";0;1;0;"pon";0
"ilsha";1;15;"96;550";14;1;"Some High School";0;1;0;"sha";0
"ilshi";1;7;"96;550";14;1;"Some High School";0;1;0;"shi";0
"ilswi";1;18;"96;550";14;1;"Some High School";0;1;0;"swi";0
"nfrub";1;17;"96;550";14;1;"Some High School";1;0;0;"rub";1
"cfaqu";3;31;"96;553";56;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";2;2;"96;553";56;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;17;"96;553";56;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;1;"96;553";56;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";2;29;"96;553";56;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";2;24;"96;553";56;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";2;4;"96;553";56;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";2;21;"96;553";56;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;10;"96;553";56;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";2;11;"96;553";56;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";2;6;"96;553";56;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";2;14;"96;553";56;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";2;19;"96;553";56;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";2;30;"96;553";56;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;15;"96;553";56;0;"Bachelor's Degree";0;0;0;"car";0
"flche";4;18;"96;553";56;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";2;3;"96;553";56;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";6;28;"96;553";56;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;32;"96;553";56;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";2;20;"96;553";56;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";4;13;"96;553";56;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;16;"96;553";56;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";2;5;"96;553";56;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";2;23;"96;553";56;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";3;27;"96;553";56;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";2;22;"96;553";56;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";2;12;"96;553";56;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;7;"96;553";56;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";2;9;"96;553";56;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";3;26;"96;553";56;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;555";33;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";3;31;"96;555";33;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";3;16;"96;555";33;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;32;"96;555";33;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";2;4;"96;555";33;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;9;"96;555";33;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;555";33;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";2;12;"96;555";33;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;23;"96;555";33;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";3;22;"96;555";33;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";5;27;"96;555";33;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";3;19;"96;555";33;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;14;"96;555";33;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;3;"96;555";33;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;18;"96;555";33;0;"Bachelor's Degree";0;0;0;"car";0
"flche";5;15;"96;555";33;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;30;"96;555";33;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";3;5;"96;555";33;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;1;"96;555";33;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";2;13;"96;555";33;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";2;20;"96;555";33;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";2;17;"96;555";33;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";3;28;"96;555";33;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;10;"96;555";33;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";6;6;"96;555";33;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";3;11;"96;555";33;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";5;21;"96;555";33;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";5;26;"96;555";33;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";3;24;"96;555";33;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";3;7;"96;555";33;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;558";61;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";5;31;"96;558";61;1;"Master's Degree";0;0;1;"bur";1
"cfrub";5;16;"96;558";61;1;"Master's Degree";0;0;1;"rub";1
"cibox";2;32;"96;558";61;1;"Master's Degree";0;1;1;"box";1
"cibur";5;4;"96;558";61;1;"Master's Degree";0;1;1;"bur";1
"cispe";1;9;"96;558";61;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;558";61;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";5;12;"96;558";61;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;23;"96;558";61;1;"Master's Degree";1;0;0;"box";1
"fkbur";6;22;"96;558";61;1;"Master's Degree";1;0;0;"bur";1
"fkcar";1;27;"96;558";61;1;"Master's Degree";1;0;0;"car";1
"fkspe";3;19;"96;558";61;1;"Master's Degree";1;0;0;"spe";1
"fkswi";6;14;"96;558";61;1;"Master's Degree";1;0;0;"swi";1
"flboa";6;3;"96;558";61;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;18;"96;558";61;1;"Master's Degree";0;0;0;"car";0
"flche";6;15;"96;558";61;1;"Master's Degree";0;0;0;"che";0
"flsha";6;30;"96;558";61;1;"Master's Degree";0;0;0;"sha";0
"flswi";6;5;"96;558";61;1;"Master's Degree";0;0;0;"swi";0
"ikbox";6;1;"96;558";61;1;"Master's Degree";1;1;0;"box";1
"ikbur";6;13;"96;558";61;1;"Master's Degree";1;1;0;"bur";1
"ikpon";1;20;"96;558";61;1;"Master's Degree";1;1;0;"pon";1
"ikshi";6;17;"96;558";61;1;"Master's Degree";1;1;0;"shi";1
"ikspe";2;28;"96;558";61;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;10;"96;558";61;1;"Master's Degree";0;1;0;"box";0
"ilche";6;6;"96;558";61;1;"Master's Degree";0;1;0;"che";0
"ilpon";4;11;"96;558";61;1;"Master's Degree";0;1;0;"pon";0
"ilsha";4;21;"96;558";61;1;"Master's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;558";61;1;"Master's Degree";0;1;0;"shi";0
"ilswi";6;24;"96;558";61;1;"Master's Degree";0;1;0;"swi";0
"nfrub";6;7;"96;558";61;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";7;2;"96;560";65;0;"Graduate Degree";0;0;1;"aqu";1
"cfbur";4;31;"96;560";65;0;"Graduate Degree";0;0;1;"bur";1
"cfrub";6;16;"96;560";65;0;"Graduate Degree";0;0;1;"rub";1
"cibox";2;32;"96;560";65;0;"Graduate Degree";0;1;1;"box";1
"cibur";1;4;"96;560";65;0;"Graduate Degree";0;1;1;"bur";1
"cispe";1;9;"96;560";65;0;"Graduate Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;560";65;0;"Graduate Degree";1;0;0;"aqu";1
"fkboa";2;12;"96;560";65;0;"Graduate Degree";1;0;0;"boa";1
"fkbox";7;23;"96;560";65;0;"Graduate Degree";1;0;0;"box";1
"fkbur";7;22;"96;560";65;0;"Graduate Degree";1;0;0;"bur";1
"fkcar";1;27;"96;560";65;0;"Graduate Degree";1;0;0;"car";1
"fkspe";1;19;"96;560";65;0;"Graduate Degree";1;0;0;"spe";1
"fkswi";7;14;"96;560";65;0;"Graduate Degree";1;0;0;"swi";1
"flboa";7;3;"96;560";65;0;"Graduate Degree";0;0;0;"boa";0
"flcar";7;18;"96;560";65;0;"Graduate Degree";0;0;0;"car";0
"flche";7;15;"96;560";65;0;"Graduate Degree";0;0;0;"che";0
"flsha";7;30;"96;560";65;0;"Graduate Degree";0;0;0;"sha";0
"flswi";1;5;"96;560";65;0;"Graduate Degree";0;0;0;"swi";0
"ikbox";5;1;"96;560";65;0;"Graduate Degree";1;1;0;"box";1
"ikbur";1;13;"96;560";65;0;"Graduate Degree";1;1;0;"bur";1
"ikpon";1;20;"96;560";65;0;"Graduate Degree";1;1;0;"pon";1
"ikshi";6;17;"96;560";65;0;"Graduate Degree";1;1;0;"shi";1
"ikspe";1;28;"96;560";65;0;"Graduate Degree";1;1;0;"spe";1
"ilbox";6;10;"96;560";65;0;"Graduate Degree";0;1;0;"box";0
"ilche";1;6;"96;560";65;0;"Graduate Degree";0;1;0;"che";0
"ilpon";7;11;"96;560";65;0;"Graduate Degree";0;1;0;"pon";0
"ilsha";7;21;"96;560";65;0;"Graduate Degree";0;1;0;"sha";0
"ilshi";7;26;"96;560";65;0;"Graduate Degree";0;1;0;"shi";0
"ilswi";7;24;"96;560";65;0;"Graduate Degree";0;1;0;"swi";0
"nfrub";5;7;"96;560";65;0;"Graduate Degree";1;0;0;"rub";1
"cfaqu";4;2;"96;562";47;0;"Master's Degree";0;0;1;"aqu";1
"cfbur";6;31;"96;562";47;0;"Master's Degree";0;0;1;"bur";1
"cfrub";4;16;"96;562";47;0;"Master's Degree";0;0;1;"rub";1
"cibox";1;32;"96;562";47;0;"Master's Degree";0;1;1;"box";1
"cibur";4;4;"96;562";47;0;"Master's Degree";0;1;1;"bur";1
"cispe";2;9;"96;562";47;0;"Master's Degree";0;1;1;"spe";1
"fkaqu";4;29;"96;562";47;0;"Master's Degree";1;0;0;"aqu";1
"fkboa";6;12;"96;562";47;0;"Master's Degree";1;0;0;"boa";1
"fkbox";4;23;"96;562";47;0;"Master's Degree";1;0;0;"box";1
"fkbur";6;22;"96;562";47;0;"Master's Degree";1;0;0;"bur";1
"fkcar";2;27;"96;562";47;0;"Master's Degree";1;0;0;"car";1
"fkspe";4;19;"96;562";47;0;"Master's Degree";1;0;0;"spe";1
"fkswi";4;14;"96;562";47;0;"Master's Degree";1;0;0;"swi";1
"flboa";4;3;"96;562";47;0;"Master's Degree";0;0;0;"boa";0
"flcar";4;18;"96;562";47;0;"Master's Degree";0;0;0;"car";0
"flche";2;15;"96;562";47;0;"Master's Degree";0;0;0;"che";0
"flsha";4;30;"96;562";47;0;"Master's Degree";0;0;0;"sha";0
"flswi";3;5;"96;562";47;0;"Master's Degree";0;0;0;"swi";0
"ikbox";4;1;"96;562";47;0;"Master's Degree";1;1;0;"box";1
"ikbur";6;13;"96;562";47;0;"Master's Degree";1;1;0;"bur";1
"ikpon";1;20;"96;562";47;0;"Master's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;562";47;0;"Master's Degree";1;1;0;"shi";1
"ikspe";4;28;"96;562";47;0;"Master's Degree";1;1;0;"spe";1
"ilbox";4;10;"96;562";47;0;"Master's Degree";0;1;0;"box";0
"ilche";2;6;"96;562";47;0;"Master's Degree";0;1;0;"che";0
"ilpon";1;11;"96;562";47;0;"Master's Degree";0;1;0;"pon";0
"ilsha";2;21;"96;562";47;0;"Master's Degree";0;1;0;"sha";0
"ilshi";3;26;"96;562";47;0;"Master's Degree";0;1;0;"shi";0
"ilswi";4;24;"96;562";47;0;"Master's Degree";0;1;0;"swi";0
"nfrub";5;7;"96;562";47;0;"Master's Degree";1;0;0;"rub";1
"cfaqu";6;13;"96;566";17;1;"Some High School";0;0;1;"aqu";1
"cfbur";6;1;"96;566";17;1;"Some High School";0;0;1;"bur";1
"cfrub";5;26;"96;566";17;1;"Some High School";0;0;1;"rub";1
"cibox";3;21;"96;566";17;1;"Some High School";0;1;1;"box";1
"cibur";6;10;"96;566";17;1;"Some High School";0;1;1;"bur";1
"cispe";3;6;"96;566";17;1;"Some High School";0;1;1;"spe";1
"fkaqu";6;4;"96;566";17;1;"Some High School";1;0;0;"aqu";1
"fkboa";3;22;"96;566";17;1;"Some High School";1;0;0;"boa";1
"fkbox";6;11;"96;566";17;1;"Some High School";1;0;0;"box";1
"fkbur";6;19;"96;566";17;1;"Some High School";1;0;0;"bur";1
"fkcar";6;3;"96;566";17;1;"Some High School";1;0;0;"car";1
"fkspe";4;24;"96;566";17;1;"Some High School";1;0;0;"spe";1
"fkswi";6;8;"96;566";17;1;"Some High School";1;0;0;"swi";1
"flboa";5;31;"96;566";17;1;"Some High School";0;0;0;"boa";0
"flcar";6;12;"96;566";17;1;"Some High School";0;0;0;"car";0
"flche";6;29;"96;566";17;1;"Some High School";0;0;0;"che";0
"flsha";3;5;"96;566";17;1;"Some High School";0;0;0;"sha";0
"flswi";5;27;"96;566";17;1;"Some High School";0;0;0;"swi";0
"ikbox";5;30;"96;566";17;1;"Some High School";1;1;0;"box";1
"ikbur";4;28;"96;566";17;1;"Some High School";1;1;0;"bur";1
"ikpon";5;32;"96;566";17;1;"Some High School";1;1;0;"pon";1
"ikshi";7;16;"96;566";17;1;"Some High School";1;1;0;"shi";1
"ikspe";6;14;"96;566";17;1;"Some High School";1;1;0;"spe";1
"ilbox";6;2;"96;566";17;1;"Some High School";0;1;0;"box";0
"ilche";6;20;"96;566";17;1;"Some High School";0;1;0;"che";0
"ilpon";4;23;"96;566";17;1;"Some High School";0;1;0;"pon";0
"ilsha";4;15;"96;566";17;1;"Some High School";0;1;0;"sha";0
"ilshi";7;7;"96;566";17;1;"Some High School";0;1;0;"shi";0
"ilswi";6;18;"96;566";17;1;"Some High School";0;1;0;"swi";0
"nfrub";6;17;"96;566";17;1;"Some High School";1;0;0;"rub";1
"cfaqu";6;31;"96;570";57;1;"Graduate Degree";0;0;1;"aqu";1
"cfbur";7;2;"96;570";57;1;"Graduate Degree";0;0;1;"bur";1
"cfrub";4;17;"96;570";57;1;"Graduate Degree";0;0;1;"rub";1
"cibox";6;1;"96;570";57;1;"Graduate Degree";0;1;1;"box";1
"cibur";7;29;"96;570";57;1;"Graduate Degree";0;1;1;"bur";1
"cispe";4;24;"96;570";57;1;"Graduate Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;570";57;1;"Graduate Degree";1;0;0;"aqu";1
"fkboa";6;21;"96;570";57;1;"Graduate Degree";1;0;0;"boa";1
"fkbox";6;10;"96;570";57;1;"Graduate Degree";1;0;0;"box";1
"fkbur";7;11;"96;570";57;1;"Graduate Degree";1;0;0;"bur";1
"fkcar";6;6;"96;570";57;1;"Graduate Degree";1;0;0;"car";1
"fkspe";6;14;"96;570";57;1;"Graduate Degree";1;0;0;"spe";1
"fkswi";5;19;"96;570";57;1;"Graduate Degree";1;0;0;"swi";1
"flboa";6;30;"96;570";57;1;"Graduate Degree";0;0;0;"boa";0
"flcar";6;15;"96;570";57;1;"Graduate Degree";0;0;0;"car";0
"flche";7;18;"96;570";57;1;"Graduate Degree";0;0;0;"che";0
"flsha";6;3;"96;570";57;1;"Graduate Degree";0;0;0;"sha";0
"flswi";6;28;"96;570";57;1;"Graduate Degree";0;0;0;"swi";0
"ikbox";5;32;"96;570";57;1;"Graduate Degree";1;1;0;"box";1
"ikbur";6;20;"96;570";57;1;"Graduate Degree";1;1;0;"bur";1
"ikpon";2;13;"96;570";57;1;"Graduate Degree";1;1;0;"pon";1
"ikshi";3;16;"96;570";57;1;"Graduate Degree";1;1;0;"shi";1
"ikspe";6;5;"96;570";57;1;"Graduate Degree";1;1;0;"spe";1
"ilbox";6;23;"96;570";57;1;"Graduate Degree";0;1;0;"box";0
"ilche";5;27;"96;570";57;1;"Graduate Degree";0;1;0;"che";0
"ilpon";4;22;"96;570";57;1;"Graduate Degree";0;1;0;"pon";0
"ilsha";6;12;"96;570";57;1;"Graduate Degree";0;1;0;"sha";0
"ilshi";6;7;"96;570";57;1;"Graduate Degree";0;1;0;"shi";0
"ilswi";6;9;"96;570";57;1;"Graduate Degree";0;1;0;"swi";0
"nfrub";5;26;"96;570";57;1;"Graduate Degree";1;0;0;"rub";1
"cfaqu";7;20;"96;581";26;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";7;32;"96;581";26;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";7;7;"96;581";26;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";5;12;"96;581";26;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";7;23;"96;581";26;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;27;"96;581";26;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;581";26;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;11;"96;581";26;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";7;22;"96;581";26;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;14;"96;581";26;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;30;"96;581";26;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;9;"96;581";26;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";7;25;"96;581";26;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;2;"96;581";26;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;21;"96;581";26;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;4;"96;581";26;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;28;"96;581";26;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;6;"96;581";26;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";7;3;"96;581";26;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";7;5;"96;581";26;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";6;1;"96;581";26;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;17;"96;581";26;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";6;19;"96;581";26;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;31;"96;581";26;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;13;"96;581";26;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;10;"96;581";26;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";7;18;"96;581";26;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;581";26;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;15;"96;581";26;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";7;16;"96;581";26;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";4;31;"96;586";57;0;"High School Graduate";0;0;1;"aqu";1
"cfbur";4;2;"96;586";57;0;"High School Graduate";0;0;1;"bur";1
"cfrub";4;17;"96;586";57;0;"High School Graduate";0;0;1;"rub";1
"cibox";3;1;"96;586";57;0;"High School Graduate";0;1;1;"box";1
"cibur";4;29;"96;586";57;0;"High School Graduate";0;1;1;"bur";1
"cispe";1;24;"96;586";57;0;"High School Graduate";0;1;1;"spe";1
"fkaqu";4;4;"96;586";57;0;"High School Graduate";1;0;0;"aqu";1
"fkboa";4;21;"96;586";57;0;"High School Graduate";1;0;0;"boa";1
"fkbox";4;10;"96;586";57;0;"High School Graduate";1;0;0;"box";1
"fkbur";3;11;"96;586";57;0;"High School Graduate";1;0;0;"bur";1
"fkcar";2;6;"96;586";57;0;"High School Graduate";1;0;0;"car";1
"fkspe";3;14;"96;586";57;0;"High School Graduate";1;0;0;"spe";1
"fkswi";4;19;"96;586";57;0;"High School Graduate";1;0;0;"swi";1
"flboa";4;30;"96;586";57;0;"High School Graduate";0;0;0;"boa";0
"flcar";4;15;"96;586";57;0;"High School Graduate";0;0;0;"car";0
"flche";4;18;"96;586";57;0;"High School Graduate";0;0;0;"che";0
"flsha";4;3;"96;586";57;0;"High School Graduate";0;0;0;"sha";0
"flswi";4;28;"96;586";57;0;"High School Graduate";0;0;0;"swi";0
"ikbox";4;32;"96;586";57;0;"High School Graduate";1;1;0;"box";1
"ikbur";6;20;"96;586";57;0;"High School Graduate";1;1;0;"bur";1
"ikpon";2;13;"96;586";57;0;"High School Graduate";1;1;0;"pon";1
"ikshi";7;16;"96;586";57;0;"High School Graduate";1;1;0;"shi";1
"ikspe";2;5;"96;586";57;0;"High School Graduate";1;1;0;"spe";1
"ilbox";4;23;"96;586";57;0;"High School Graduate";0;1;0;"box";0
"ilche";3;27;"96;586";57;0;"High School Graduate";0;1;0;"che";0
"ilpon";4;22;"96;586";57;0;"High School Graduate";0;1;0;"pon";0
"ilsha";4;12;"96;586";57;0;"High School Graduate";0;1;0;"sha";0
"ilshi";7;7;"96;586";57;0;"High School Graduate";0;1;0;"shi";0
"ilswi";4;9;"96;586";57;0;"High School Graduate";0;1;0;"swi";0
"nfrub";3;26;"96;586";57;0;"High School Graduate";1;0;0;"rub";1
"cfaqu";5;20;"96;591";60;0;"Master's Degree";0;0;1;"aqu";1
"cfbur";4;32;"96;591";60;0;"Master's Degree";0;0;1;"bur";1
"cfrub";5;7;"96;591";60;0;"Master's Degree";0;0;1;"rub";1
"cibox";5;12;"96;591";60;0;"Master's Degree";0;1;1;"box";1
"cibur";3;23;"96;591";60;0;"Master's Degree";0;1;1;"bur";1
"cispe";3;27;"96;591";60;0;"Master's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;591";60;0;"Master's Degree";1;0;0;"aqu";1
"fkboa";4;11;"96;591";60;0;"Master's Degree";1;0;0;"boa";1
"fkbox";4;22;"96;591";60;0;"Master's Degree";1;0;0;"box";1
"fkbur";4;14;"96;591";60;0;"Master's Degree";1;0;0;"bur";1
"fkcar";4;30;"96;591";60;0;"Master's Degree";1;0;0;"car";1
"fkspe";3;9;"96;591";60;0;"Master's Degree";1;0;0;"spe";1
"fkswi";4;25;"96;591";60;0;"Master's Degree";1;0;0;"swi";1
"flboa";4;2;"96;591";60;0;"Master's Degree";0;0;0;"boa";0
"flcar";4;21;"96;591";60;0;"Master's Degree";0;0;0;"car";0
"flche";4;4;"96;591";60;0;"Master's Degree";0;0;0;"che";0
"flsha";5;28;"96;591";60;0;"Master's Degree";0;0;0;"sha";0
"flswi";4;6;"96;591";60;0;"Master's Degree";0;0;0;"swi";0
"ikbox";5;3;"96;591";60;0;"Master's Degree";1;1;0;"box";1
"ikbur";4;5;"96;591";60;0;"Master's Degree";1;1;0;"bur";1
"ikpon";3;1;"96;591";60;0;"Master's Degree";1;1;0;"pon";1
"ikshi";5;17;"96;591";60;0;"Master's Degree";1;1;0;"shi";1
"ikspe";3;19;"96;591";60;0;"Master's Degree";1;1;0;"spe";1
"ilbox";4;31;"96;591";60;0;"Master's Degree";0;1;0;"box";0
"ilche";4;13;"96;591";60;0;"Master's Degree";0;1;0;"che";0
"ilpon";5;10;"96;591";60;0;"Master's Degree";0;1;0;"pon";0
"ilsha";4;18;"96;591";60;0;"Master's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;591";60;0;"Master's Degree";0;1;0;"shi";0
"ilswi";4;15;"96;591";60;0;"Master's Degree";0;1;0;"swi";0
"nfrub";4;16;"96;591";60;0;"Master's Degree";1;0;0;"rub";1
"cfaqu";4;31;"96;599";46;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";4;2;"96;599";46;1;"Master's Degree";0;0;1;"bur";1
"cfrub";3;17;"96;599";46;1;"Master's Degree";0;0;1;"rub";1
"cibox";1;1;"96;599";46;1;"Master's Degree";0;1;1;"box";1
"cibur";1;29;"96;599";46;1;"Master's Degree";0;1;1;"bur";1
"cispe";1;24;"96;599";46;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";4;4;"96;599";46;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";6;21;"96;599";46;1;"Master's Degree";1;0;0;"boa";1
"fkbox";7;10;"96;599";46;1;"Master's Degree";1;0;0;"box";1
"fkbur";3;11;"96;599";46;1;"Master's Degree";1;0;0;"bur";1
"fkcar";4;6;"96;599";46;1;"Master's Degree";1;0;0;"car";1
"fkspe";2;14;"96;599";46;1;"Master's Degree";1;0;0;"spe";1
"fkswi";3;19;"96;599";46;1;"Master's Degree";1;0;0;"swi";1
"flboa";1;30;"96;599";46;1;"Master's Degree";0;0;0;"boa";0
"flcar";3;15;"96;599";46;1;"Master's Degree";0;0;0;"car";0
"flche";4;18;"96;599";46;1;"Master's Degree";0;0;0;"che";0
"flsha";4;3;"96;599";46;1;"Master's Degree";0;0;0;"sha";0
"flswi";2;28;"96;599";46;1;"Master's Degree";0;0;0;"swi";0
"ikbox";2;32;"96;599";46;1;"Master's Degree";1;1;0;"box";1
"ikbur";1;20;"96;599";46;1;"Master's Degree";1;1;0;"bur";1
"ikpon";1;13;"96;599";46;1;"Master's Degree";1;1;0;"pon";1
"ikshi";2;16;"96;599";46;1;"Master's Degree";1;1;0;"shi";1
"ikspe";1;5;"96;599";46;1;"Master's Degree";1;1;0;"spe";1
"ilbox";4;23;"96;599";46;1;"Master's Degree";0;1;0;"box";0
"ilche";3;27;"96;599";46;1;"Master's Degree";0;1;0;"che";0
"ilpon";3;22;"96;599";46;1;"Master's Degree";0;1;0;"pon";0
"ilsha";3;12;"96;599";46;1;"Master's Degree";0;1;0;"sha";0
"ilshi";3;7;"96;599";46;1;"Master's Degree";0;1;0;"shi";0
"ilswi";1;9;"96;599";46;1;"Master's Degree";0;1;0;"swi";0
"nfrub";2;26;"96;599";46;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";5;31;"96;600";50;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";6;2;"96;600";50;1;"Master's Degree";0;0;1;"bur";1
"cfrub";6;17;"96;600";50;1;"Master's Degree";0;0;1;"rub";1
"cibox";4;1;"96;600";50;1;"Master's Degree";0;1;1;"box";1
"cibur";4;29;"96;600";50;1;"Master's Degree";0;1;1;"bur";1
"cispe";3;24;"96;600";50;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;600";50;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";6;21;"96;600";50;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;10;"96;600";50;1;"Master's Degree";1;0;0;"box";1
"fkbur";5;11;"96;600";50;1;"Master's Degree";1;0;0;"bur";1
"fkcar";6;6;"96;600";50;1;"Master's Degree";1;0;0;"car";1
"fkspe";5;14;"96;600";50;1;"Master's Degree";1;0;0;"spe";1
"fkswi";7;19;"96;600";50;1;"Master's Degree";1;0;0;"swi";1
"flboa";6;30;"96;600";50;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;15;"96;600";50;1;"Master's Degree";0;0;0;"car";0
"flche";7;18;"96;600";50;1;"Master's Degree";0;0;0;"che";0
"flsha";6;3;"96;600";50;1;"Master's Degree";0;0;0;"sha";0
"flswi";7;28;"96;600";50;1;"Master's Degree";0;0;0;"swi";0
"ikbox";4;32;"96;600";50;1;"Master's Degree";1;1;0;"box";1
"ikbur";2;20;"96;600";50;1;"Master's Degree";1;1;0;"bur";1
"ikpon";2;13;"96;600";50;1;"Master's Degree";1;1;0;"pon";1
"ikshi";5;16;"96;600";50;1;"Master's Degree";1;1;0;"shi";1
"ikspe";5;5;"96;600";50;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;23;"96;600";50;1;"Master's Degree";0;1;0;"box";0
"ilche";7;27;"96;600";50;1;"Master's Degree";0;1;0;"che";0
"ilpon";4;22;"96;600";50;1;"Master's Degree";0;1;0;"pon";0
"ilsha";5;12;"96;600";50;1;"Master's Degree";0;1;0;"sha";0
"ilshi";6;7;"96;600";50;1;"Master's Degree";0;1;0;"shi";0
"ilswi";6;9;"96;600";50;1;"Master's Degree";0;1;0;"swi";0
"nfrub";6;26;"96;600";50;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";5;20;"96;603";23;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";6;32;"96;603";23;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";5;7;"96;603";23;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";5;12;"96;603";23;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";5;23;"96;603";23;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;27;"96;603";23;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;603";23;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;11;"96;603";23;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;22;"96;603";23;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";6;14;"96;603";23;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";6;30;"96;603";23;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";5;9;"96;603";23;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";5;25;"96;603";23;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;2;"96;603";23;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;21;"96;603";23;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;4;"96;603";23;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";6;28;"96;603";23;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";6;6;"96;603";23;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";5;3;"96;603";23;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";5;5;"96;603";23;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";5;1;"96;603";23;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";5;17;"96;603";23;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;19;"96;603";23;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";6;31;"96;603";23;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";6;13;"96;603";23;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;10;"96;603";23;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";6;18;"96;603";23;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;603";23;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";6;15;"96;603";23;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";6;16;"96;603";23;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";7;31;"96;606";64;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";6;2;"96;606";64;1;"Master's Degree";0;0;1;"bur";1
"cfrub";7;17;"96;606";64;1;"Master's Degree";0;0;1;"rub";1
"cibox";3;1;"96;606";64;1;"Master's Degree";0;1;1;"box";1
"cibur";7;29;"96;606";64;1;"Master's Degree";0;1;1;"bur";1
"cispe";7;24;"96;606";64;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";6;4;"96;606";64;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";6;21;"96;606";64;1;"Master's Degree";1;0;0;"boa";1
"fkbox";2;10;"96;606";64;1;"Master's Degree";1;0;0;"box";1
"fkbur";7;11;"96;606";64;1;"Master's Degree";1;0;0;"bur";1
"fkcar";2;6;"96;606";64;1;"Master's Degree";1;0;0;"car";1
"fkspe";7;14;"96;606";64;1;"Master's Degree";1;0;0;"spe";1
"fkswi";7;19;"96;606";64;1;"Master's Degree";1;0;0;"swi";1
"flboa";7;30;"96;606";64;1;"Master's Degree";0;0;0;"boa";0
"flcar";7;15;"96;606";64;1;"Master's Degree";0;0;0;"car";0
"flche";1;18;"96;606";64;1;"Master's Degree";0;0;0;"che";0
"flsha";3;3;"96;606";64;1;"Master's Degree";0;0;0;"sha";0
"flswi";1;28;"96;606";64;1;"Master's Degree";0;0;0;"swi";0
"ikbox";6;32;"96;606";64;1;"Master's Degree";1;1;0;"box";1
"ikbur";7;20;"96;606";64;1;"Master's Degree";1;1;0;"bur";1
"ikpon";2;13;"96;606";64;1;"Master's Degree";1;1;0;"pon";1
"ikshi";3;16;"96;606";64;1;"Master's Degree";1;1;0;"shi";1
"ikspe";2;5;"96;606";64;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;23;"96;606";64;1;"Master's Degree";0;1;0;"box";0
"ilche";6;27;"96;606";64;1;"Master's Degree";0;1;0;"che";0
"ilpon";2;22;"96;606";64;1;"Master's Degree";0;1;0;"pon";0
"ilsha";5;12;"96;606";64;1;"Master's Degree";0;1;0;"sha";0
"ilshi";2;7;"96;606";64;1;"Master's Degree";0;1;0;"shi";0
"ilswi";3;9;"96;606";64;1;"Master's Degree";0;1;0;"swi";0
"nfrub";7;26;"96;606";64;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";5;31;"96;618";49;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";3;2;"96;618";49;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";5;17;"96;618";49;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;1;"96;618";49;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";5;29;"96;618";49;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;24;"96;618";49;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;4;"96;618";49;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;21;"96;618";49;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;10;"96;618";49;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";5;11;"96;618";49;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";5;6;"96;618";49;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";5;14;"96;618";49;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";5;19;"96;618";49;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";5;30;"96;618";49;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";5;15;"96;618";49;1;"Bachelor's Degree";0;0;0;"car";0
"flche";5;18;"96;618";49;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";6;3;"96;618";49;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";5;28;"96;618";49;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";5;32;"96;618";49;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";5;20;"96;618";49;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";5;13;"96;618";49;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";5;16;"96;618";49;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;5;"96;618";49;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;23;"96;618";49;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;27;"96;618";49;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";5;22;"96;618";49;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";5;12;"96;618";49;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";3;7;"96;618";49;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;9;"96;618";49;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;26;"96;618";49;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";7;20;"96;622";20;1;"Some College";0;0;1;"aqu";1
"cfbur";6;32;"96;622";20;1;"Some College";0;0;1;"bur";1
"cfrub";7;7;"96;622";20;1;"Some College";0;0;1;"rub";1
"cibox";2;12;"96;622";20;1;"Some College";0;1;1;"box";1
"cibur";2;23;"96;622";20;1;"Some College";0;1;1;"bur";1
"cispe";2;27;"96;622";20;1;"Some College";0;1;1;"spe";1
"fkaqu";6;29;"96;622";20;1;"Some College";1;0;0;"aqu";1
"fkboa";5;11;"96;622";20;1;"Some College";1;0;0;"boa";1
"fkbox";5;22;"96;622";20;1;"Some College";1;0;0;"box";1
"fkbur";7;14;"96;622";20;1;"Some College";1;0;0;"bur";1
"fkcar";6;30;"96;622";20;1;"Some College";1;0;0;"car";1
"fkspe";3;9;"96;622";20;1;"Some College";1;0;0;"spe";1
"fkswi";5;25;"96;622";20;1;"Some College";1;0;0;"swi";1
"flboa";6;2;"96;622";20;1;"Some College";0;0;0;"boa";0
"flcar";7;21;"96;622";20;1;"Some College";0;0;0;"car";0
"flche";7;4;"96;622";20;1;"Some College";0;0;0;"che";0
"flsha";6;28;"96;622";20;1;"Some College";0;0;0;"sha";0
"flswi";7;6;"96;622";20;1;"Some College";0;0;0;"swi";0
"ikbox";2;3;"96;622";20;1;"Some College";1;1;0;"box";1
"ikbur";5;5;"96;622";20;1;"Some College";1;1;0;"bur";1
"ikpon";4;1;"96;622";20;1;"Some College";1;1;0;"pon";1
"ikshi";3;17;"96;622";20;1;"Some College";1;1;0;"shi";1
"ikspe";3;19;"96;622";20;1;"Some College";1;1;0;"spe";1
"ilbox";7;31;"96;622";20;1;"Some College";0;1;0;"box";0
"ilche";7;13;"96;622";20;1;"Some College";0;1;0;"che";0
"ilpon";5;10;"96;622";20;1;"Some College";0;1;0;"pon";0
"ilsha";5;18;"96;622";20;1;"Some College";0;1;0;"sha";0
"ilshi";5;26;"96;622";20;1;"Some College";0;1;0;"shi";0
"ilswi";6;15;"96;622";20;1;"Some College";0;1;0;"swi";0
"nfrub";6;16;"96;622";20;1;"Some College";1;0;0;"rub";1
"cfaqu";7;20;"96;629";34;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";6;32;"96;629";34;1;"Master's Degree";0;0;1;"bur";1
"cfrub";6;7;"96;629";34;1;"Master's Degree";0;0;1;"rub";1
"cibox";1;12;"96;629";34;1;"Master's Degree";0;1;1;"box";1
"cibur";2;23;"96;629";34;1;"Master's Degree";0;1;1;"bur";1
"cispe";1;27;"96;629";34;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;629";34;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";2;11;"96;629";34;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;22;"96;629";34;1;"Master's Degree";1;0;0;"box";1
"fkbur";6;14;"96;629";34;1;"Master's Degree";1;0;0;"bur";1
"fkcar";6;30;"96;629";34;1;"Master's Degree";1;0;0;"car";1
"fkspe";6;9;"96;629";34;1;"Master's Degree";1;0;0;"spe";1
"fkswi";6;25;"96;629";34;1;"Master's Degree";1;0;0;"swi";1
"flboa";7;2;"96;629";34;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;21;"96;629";34;1;"Master's Degree";0;0;0;"car";0
"flche";7;4;"96;629";34;1;"Master's Degree";0;0;0;"che";0
"flsha";7;28;"96;629";34;1;"Master's Degree";0;0;0;"sha";0
"flswi";7;6;"96;629";34;1;"Master's Degree";0;0;0;"swi";0
"ikbox";2;3;"96;629";34;1;"Master's Degree";1;1;0;"box";1
"ikbur";2;5;"96;629";34;1;"Master's Degree";1;1;0;"bur";1
"ikpon";1;1;"96;629";34;1;"Master's Degree";1;1;0;"pon";1
"ikshi";6;17;"96;629";34;1;"Master's Degree";1;1;0;"shi";1
"ikspe";2;19;"96;629";34;1;"Master's Degree";1;1;0;"spe";1
"ilbox";2;31;"96;629";34;1;"Master's Degree";0;1;0;"box";0
"ilche";7;13;"96;629";34;1;"Master's Degree";0;1;0;"che";0
"ilpon";7;10;"96;629";34;1;"Master's Degree";0;1;0;"pon";0
"ilsha";6;18;"96;629";34;1;"Master's Degree";0;1;0;"sha";0
"ilshi";4;26;"96;629";34;1;"Master's Degree";0;1;0;"shi";0
"ilswi";6;15;"96;629";34;1;"Master's Degree";0;1;0;"swi";0
"nfrub";6;16;"96;629";34;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";4;13;"96;633";48;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";4;1;"96;633";48;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;26;"96;633";48;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;21;"96;633";48;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";2;10;"96;633";48;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;6;"96;633";48;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";4;4;"96;633";48;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;22;"96;633";48;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;11;"96;633";48;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;19;"96;633";48;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;3;"96;633";48;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;24;"96;633";48;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;8;"96;633";48;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;31;"96;633";48;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;12;"96;633";48;0;"Bachelor's Degree";0;0;0;"car";0
"flche";4;29;"96;633";48;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;5;"96;633";48;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";4;27;"96;633";48;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;30;"96;633";48;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";2;28;"96;633";48;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";2;32;"96;633";48;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;16;"96;633";48;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";2;14;"96;633";48;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";4;2;"96;633";48;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";4;20;"96;633";48;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";2;23;"96;633";48;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;15;"96;633";48;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;7;"96;633";48;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";4;18;"96;633";48;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;17;"96;633";48;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;31;"96;641";25;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";6;2;"96;641";25;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";6;17;"96;641";25;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";5;1;"96;641";25;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";6;29;"96;641";25;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;24;"96;641";25;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";6;4;"96;641";25;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";6;21;"96;641";25;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";6;10;"96;641";25;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";6;11;"96;641";25;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";5;6;"96;641";25;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";5;14;"96;641";25;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;19;"96;641";25;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;30;"96;641";25;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;15;"96;641";25;1;"Bachelor's Degree";0;0;0;"car";0
"flche";6;18;"96;641";25;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;3;"96;641";25;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";6;28;"96;641";25;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";5;32;"96;641";25;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";6;20;"96;641";25;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";2;13;"96;641";25;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";6;16;"96;641";25;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;5;"96;641";25;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";6;23;"96;641";25;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";6;27;"96;641";25;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;22;"96;641";25;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";6;12;"96;641";25;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";6;7;"96;641";25;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;9;"96;641";25;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";6;26;"96;641";25;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;643";58;1;"Graduate Degree";0;0;1;"aqu";1
"cfbur";6;31;"96;643";58;1;"Graduate Degree";0;0;1;"bur";1
"cfrub";6;16;"96;643";58;1;"Graduate Degree";0;0;1;"rub";1
"cibox";5;32;"96;643";58;1;"Graduate Degree";0;1;1;"box";1
"cibur";6;4;"96;643";58;1;"Graduate Degree";0;1;1;"bur";1
"cispe";4;9;"96;643";58;1;"Graduate Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;643";58;1;"Graduate Degree";1;0;0;"aqu";1
"fkboa";6;12;"96;643";58;1;"Graduate Degree";1;0;0;"boa";1
"fkbox";6;23;"96;643";58;1;"Graduate Degree";1;0;0;"box";1
"fkbur";6;22;"96;643";58;1;"Graduate Degree";1;0;0;"bur";1
"fkcar";6;27;"96;643";58;1;"Graduate Degree";1;0;0;"car";1
"fkspe";4;19;"96;643";58;1;"Graduate Degree";1;0;0;"spe";1
"fkswi";6;14;"96;643";58;1;"Graduate Degree";1;0;0;"swi";1
"flboa";6;3;"96;643";58;1;"Graduate Degree";0;0;0;"boa";0
"flcar";6;18;"96;643";58;1;"Graduate Degree";0;0;0;"car";0
"flche";6;15;"96;643";58;1;"Graduate Degree";0;0;0;"che";0
"flsha";6;30;"96;643";58;1;"Graduate Degree";0;0;0;"sha";0
"flswi";6;5;"96;643";58;1;"Graduate Degree";0;0;0;"swi";0
"ikbox";6;1;"96;643";58;1;"Graduate Degree";1;1;0;"box";1
"ikbur";6;13;"96;643";58;1;"Graduate Degree";1;1;0;"bur";1
"ikpon";5;20;"96;643";58;1;"Graduate Degree";1;1;0;"pon";1
"ikshi";6;17;"96;643";58;1;"Graduate Degree";1;1;0;"shi";1
"ikspe";4;28;"96;643";58;1;"Graduate Degree";1;1;0;"spe";1
"ilbox";6;10;"96;643";58;1;"Graduate Degree";0;1;0;"box";0
"ilche";6;6;"96;643";58;1;"Graduate Degree";0;1;0;"che";0
"ilpon";6;11;"96;643";58;1;"Graduate Degree";0;1;0;"pon";0
"ilsha";6;21;"96;643";58;1;"Graduate Degree";0;1;0;"sha";0
"ilshi";6;26;"96;643";58;1;"Graduate Degree";0;1;0;"shi";0
"ilswi";6;24;"96;643";58;1;"Graduate Degree";0;1;0;"swi";0
"nfrub";6;7;"96;643";58;1;"Graduate Degree";1;0;0;"rub";1
"cfaqu";6;13;"96;646";47;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";6;1;"96;646";47;1;"Master's Degree";0;0;1;"bur";1
"cfrub";4;26;"96;646";47;1;"Master's Degree";0;0;1;"rub";1
"cibox";3;21;"96;646";47;1;"Master's Degree";0;1;1;"box";1
"cibur";6;10;"96;646";47;1;"Master's Degree";0;1;1;"bur";1
"cispe";4;6;"96;646";47;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";3;4;"96;646";47;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";4;22;"96;646";47;1;"Master's Degree";1;0;0;"boa";1
"fkbox";7;11;"96;646";47;1;"Master's Degree";1;0;0;"box";1
"fkbur";4;19;"96;646";47;1;"Master's Degree";1;0;0;"bur";1
"fkcar";5;3;"96;646";47;1;"Master's Degree";1;0;0;"car";1
"fkspe";5;24;"96;646";47;1;"Master's Degree";1;0;0;"spe";1
"fkswi";4;8;"96;646";47;1;"Master's Degree";1;0;0;"swi";1
"flboa";4;31;"96;646";47;1;"Master's Degree";0;0;0;"boa";0
"flcar";3;12;"96;646";47;1;"Master's Degree";0;0;0;"car";0
"flche";4;29;"96;646";47;1;"Master's Degree";0;0;0;"che";0
"flsha";4;5;"96;646";47;1;"Master's Degree";0;0;0;"sha";0
"flswi";4;27;"96;646";47;1;"Master's Degree";0;0;0;"swi";0
"ikbox";4;30;"96;646";47;1;"Master's Degree";1;1;0;"box";1
"ikbur";4;28;"96;646";47;1;"Master's Degree";1;1;0;"bur";1
"ikpon";4;32;"96;646";47;1;"Master's Degree";1;1;0;"pon";1
"ikshi";6;16;"96;646";47;1;"Master's Degree";1;1;0;"shi";1
"ikspe";4;14;"96;646";47;1;"Master's Degree";1;1;0;"spe";1
"ilbox";4;2;"96;646";47;1;"Master's Degree";0;1;0;"box";0
"ilche";5;20;"96;646";47;1;"Master's Degree";0;1;0;"che";0
"ilpon";6;23;"96;646";47;1;"Master's Degree";0;1;0;"pon";0
"ilsha";5;15;"96;646";47;1;"Master's Degree";0;1;0;"sha";0
"ilshi";5;7;"96;646";47;1;"Master's Degree";0;1;0;"shi";0
"ilswi";4;18;"96;646";47;1;"Master's Degree";0;1;0;"swi";0
"nfrub";4;17;"96;646";47;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";5;20;"96;648";16;1;"Some High School";0;0;1;"aqu";1
"cfbur";6;32;"96;648";16;1;"Some High School";0;0;1;"bur";1
"cfrub";6;7;"96;648";16;1;"Some High School";0;0;1;"rub";1
"cibox";3;12;"96;648";16;1;"Some High School";0;1;1;"box";1
"cibur";5;23;"96;648";16;1;"Some High School";0;1;1;"bur";1
"cispe";5;27;"96;648";16;1;"Some High School";0;1;1;"spe";1
"fkaqu";6;29;"96;648";16;1;"Some High School";1;0;0;"aqu";1
"fkboa";5;11;"96;648";16;1;"Some High School";1;0;0;"boa";1
"fkbox";6;22;"96;648";16;1;"Some High School";1;0;0;"box";1
"fkbur";6;14;"96;648";16;1;"Some High School";1;0;0;"bur";1
"fkcar";5;30;"96;648";16;1;"Some High School";1;0;0;"car";1
"fkspe";4;9;"96;648";16;1;"Some High School";1;0;0;"spe";1
"fkswi";1;25;"96;648";16;1;"Some High School";1;0;0;"swi";1
"flboa";5;2;"96;648";16;1;"Some High School";0;0;0;"boa";0
"flcar";6;21;"96;648";16;1;"Some High School";0;0;0;"car";0
"flche";6;4;"96;648";16;1;"Some High School";0;0;0;"che";0
"flsha";5;28;"96;648";16;1;"Some High School";0;0;0;"sha";0
"flswi";4;6;"96;648";16;1;"Some High School";0;0;0;"swi";0
"ikbox";4;3;"96;648";16;1;"Some High School";1;1;0;"box";1
"ikbur";6;5;"96;648";16;1;"Some High School";1;1;0;"bur";1
"ikpon";4;1;"96;648";16;1;"Some High School";1;1;0;"pon";1
"ikshi";7;17;"96;648";16;1;"Some High School";1;1;0;"shi";1
"ikspe";4;19;"96;648";16;1;"Some High School";1;1;0;"spe";1
"ilbox";3;31;"96;648";16;1;"Some High School";0;1;0;"box";0
"ilche";5;13;"96;648";16;1;"Some High School";0;1;0;"che";0
"ilpon";4;10;"96;648";16;1;"Some High School";0;1;0;"pon";0
"ilsha";4;18;"96;648";16;1;"Some High School";0;1;0;"sha";0
"ilshi";6;26;"96;648";16;1;"Some High School";0;1;0;"shi";0
"ilswi";5;15;"96;648";16;1;"Some High School";0;1;0;"swi";0
"nfrub";5;16;"96;648";16;1;"Some High School";1;0;0;"rub";1
"cfaqu";7;2;"96;649";25;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";6;31;"96;649";25;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";6;16;"96;649";25;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";4;32;"96;649";25;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";7;4;"96;649";25;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";2;9;"96;649";25;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;649";25;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;12;"96;649";25;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;23;"96;649";25;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";6;22;"96;649";25;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";6;27;"96;649";25;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";6;19;"96;649";25;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;14;"96;649";25;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";5;3;"96;649";25;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";5;18;"96;649";25;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;15;"96;649";25;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;30;"96;649";25;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;5;"96;649";25;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";1;1;"96;649";25;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";6;13;"96;649";25;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";6;20;"96;649";25;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;17;"96;649";25;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;28;"96;649";25;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;10;"96;649";25;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;6;"96;649";25;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;11;"96;649";25;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";6;21;"96;649";25;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;649";25;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";6;24;"96;649";25;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";7;7;"96;649";25;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;650";31;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";6;31;"96;650";31;1;"Master's Degree";0;0;1;"bur";1
"cfrub";6;16;"96;650";31;1;"Master's Degree";0;0;1;"rub";1
"cibox";6;32;"96;650";31;1;"Master's Degree";0;1;1;"box";1
"cibur";6;4;"96;650";31;1;"Master's Degree";0;1;1;"bur";1
"cispe";6;9;"96;650";31;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;650";31;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";6;12;"96;650";31;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;23;"96;650";31;1;"Master's Degree";1;0;0;"box";1
"fkbur";6;22;"96;650";31;1;"Master's Degree";1;0;0;"bur";1
"fkcar";6;27;"96;650";31;1;"Master's Degree";1;0;0;"car";1
"fkspe";6;19;"96;650";31;1;"Master's Degree";1;0;0;"spe";1
"fkswi";6;14;"96;650";31;1;"Master's Degree";1;0;0;"swi";1
"flboa";6;3;"96;650";31;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;18;"96;650";31;1;"Master's Degree";0;0;0;"car";0
"flche";6;15;"96;650";31;1;"Master's Degree";0;0;0;"che";0
"flsha";6;30;"96;650";31;1;"Master's Degree";0;0;0;"sha";0
"flswi";6;5;"96;650";31;1;"Master's Degree";0;0;0;"swi";0
"ikbox";6;1;"96;650";31;1;"Master's Degree";1;1;0;"box";1
"ikbur";6;13;"96;650";31;1;"Master's Degree";1;1;0;"bur";1
"ikpon";6;20;"96;650";31;1;"Master's Degree";1;1;0;"pon";1
"ikshi";6;17;"96;650";31;1;"Master's Degree";1;1;0;"shi";1
"ikspe";6;28;"96;650";31;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;10;"96;650";31;1;"Master's Degree";0;1;0;"box";0
"ilche";6;6;"96;650";31;1;"Master's Degree";0;1;0;"che";0
"ilpon";6;11;"96;650";31;1;"Master's Degree";0;1;0;"pon";0
"ilsha";6;21;"96;650";31;1;"Master's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;650";31;1;"Master's Degree";0;1;0;"shi";0
"ilswi";6;24;"96;650";31;1;"Master's Degree";0;1;0;"swi";0
"nfrub";6;7;"96;650";31;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";6;20;"96;654";27;1;"Some College";0;0;1;"aqu";1
"cfbur";7;32;"96;654";27;1;"Some College";0;0;1;"bur";1
"cfrub";6;7;"96;654";27;1;"Some College";0;0;1;"rub";1
"cibox";5;12;"96;654";27;1;"Some College";0;1;1;"box";1
"cibur";6;23;"96;654";27;1;"Some College";0;1;1;"bur";1
"cispe";6;27;"96;654";27;1;"Some College";0;1;1;"spe";1
"fkaqu";6;29;"96;654";27;1;"Some College";1;0;0;"aqu";1
"fkboa";6;11;"96;654";27;1;"Some College";1;0;0;"boa";1
"fkbox";7;22;"96;654";27;1;"Some College";1;0;0;"box";1
"fkbur";6;14;"96;654";27;1;"Some College";1;0;0;"bur";1
"fkcar";7;30;"96;654";27;1;"Some College";1;0;0;"car";1
"fkspe";6;9;"96;654";27;1;"Some College";1;0;0;"spe";1
"fkswi";7;25;"96;654";27;1;"Some College";1;0;0;"swi";1
"flboa";7;2;"96;654";27;1;"Some College";0;0;0;"boa";0
"flcar";7;21;"96;654";27;1;"Some College";0;0;0;"car";0
"flche";7;4;"96;654";27;1;"Some College";0;0;0;"che";0
"flsha";6;28;"96;654";27;1;"Some College";0;0;0;"sha";0
"flswi";6;6;"96;654";27;1;"Some College";0;0;0;"swi";0
"ikbox";6;3;"96;654";27;1;"Some College";1;1;0;"box";1
"ikbur";5;5;"96;654";27;1;"Some College";1;1;0;"bur";1
"ikpon";5;1;"96;654";27;1;"Some College";1;1;0;"pon";1
"ikshi";4;17;"96;654";27;1;"Some College";1;1;0;"shi";1
"ikspe";6;19;"96;654";27;1;"Some College";1;1;0;"spe";1
"ilbox";7;31;"96;654";27;1;"Some College";0;1;0;"box";0
"ilche";6;13;"96;654";27;1;"Some College";0;1;0;"che";0
"ilpon";5;10;"96;654";27;1;"Some College";0;1;0;"pon";0
"ilsha";6;18;"96;654";27;1;"Some College";0;1;0;"sha";0
"ilshi";7;26;"96;654";27;1;"Some College";0;1;0;"shi";0
"ilswi";6;15;"96;654";27;1;"Some College";0;1;0;"swi";0
"nfrub";6;16;"96;654";27;1;"Some College";1;0;0;"rub";1
"cfaqu";3;20;"96;655";45;0;"Some College";0;0;1;"aqu";1
"cfbur";3;32;"96;655";45;0;"Some College";0;0;1;"bur";1
"cfrub";3;7;"96;655";45;0;"Some College";0;0;1;"rub";1
"cibox";1;12;"96;655";45;0;"Some College";0;1;1;"box";1
"cibur";2;23;"96;655";45;0;"Some College";0;1;1;"bur";1
"cispe";1;27;"96;655";45;0;"Some College";0;1;1;"spe";1
"fkaqu";3;29;"96;655";45;0;"Some College";1;0;0;"aqu";1
"fkboa";3;11;"96;655";45;0;"Some College";1;0;0;"boa";1
"fkbox";2;22;"96;655";45;0;"Some College";1;0;0;"box";1
"fkbur";3;14;"96;655";45;0;"Some College";1;0;0;"bur";1
"fkcar";2;30;"96;655";45;0;"Some College";1;0;0;"car";1
"fkspe";3;9;"96;655";45;0;"Some College";1;0;0;"spe";1
"fkswi";3;25;"96;655";45;0;"Some College";1;0;0;"swi";1
"flboa";4;2;"96;655";45;0;"Some College";0;0;0;"boa";0
"flcar";3;21;"96;655";45;0;"Some College";0;0;0;"car";0
"flche";3;4;"96;655";45;0;"Some College";0;0;0;"che";0
"flsha";2;28;"96;655";45;0;"Some College";0;0;0;"sha";0
"flswi";2;6;"96;655";45;0;"Some College";0;0;0;"swi";0
"ikbox";3;3;"96;655";45;0;"Some College";1;1;0;"box";1
"ikbur";3;5;"96;655";45;0;"Some College";1;1;0;"bur";1
"ikpon";2;1;"96;655";45;0;"Some College";1;1;0;"pon";1
"ikshi";2;17;"96;655";45;0;"Some College";1;1;0;"shi";1
"ikspe";2;19;"96;655";45;0;"Some College";1;1;0;"spe";1
"ilbox";3;31;"96;655";45;0;"Some College";0;1;0;"box";0
"ilche";3;13;"96;655";45;0;"Some College";0;1;0;"che";0
"ilpon";3;10;"96;655";45;0;"Some College";0;1;0;"pon";0
"ilsha";2;18;"96;655";45;0;"Some College";0;1;0;"sha";0
"ilshi";3;26;"96;655";45;0;"Some College";0;1;0;"shi";0
"ilswi";2;15;"96;655";45;0;"Some College";0;1;0;"swi";0
"nfrub";2;16;"96;655";45;0;"Some College";1;0;0;"rub";1
"cfaqu";6;20;"96;658";19;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";6;32;"96;658";19;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;7;"96;658";19;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";3;12;"96;658";19;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";6;23;"96;658";19;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;27;"96;658";19;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;658";19;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;11;"96;658";19;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";6;22;"96;658";19;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";5;14;"96;658";19;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";5;30;"96;658";19;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";6;9;"96;658";19;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;25;"96;658";19;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;2;"96;658";19;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;21;"96;658";19;0;"Bachelor's Degree";0;0;0;"car";0
"flche";7;4;"96;658";19;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;28;"96;658";19;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";4;6;"96;658";19;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;3;"96;658";19;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;5;"96;658";19;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";6;1;"96;658";19;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";5;17;"96;658";19;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";6;19;"96;658";19;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";6;31;"96;658";19;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;13;"96;658";19;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";4;10;"96;658";19;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";5;18;"96;658";19;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;658";19;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;15;"96;658";19;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";6;16;"96;658";19;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";1;2;"96;662";20;1;"Some College";0;0;1;"aqu";1
"cfbur";2;31;"96;662";20;1;"Some College";0;0;1;"bur";1
"cfrub";5;16;"96;662";20;1;"Some College";0;0;1;"rub";1
"cibox";3;32;"96;662";20;1;"Some College";0;1;1;"box";1
"cibur";2;4;"96;662";20;1;"Some College";0;1;1;"bur";1
"cispe";6;9;"96;662";20;1;"Some College";0;1;1;"spe";1
"fkaqu";6;29;"96;662";20;1;"Some College";1;0;0;"aqu";1
"fkboa";4;12;"96;662";20;1;"Some College";1;0;0;"boa";1
"fkbox";3;23;"96;662";20;1;"Some College";1;0;0;"box";1
"fkbur";6;22;"96;662";20;1;"Some College";1;0;0;"bur";1
"fkcar";4;27;"96;662";20;1;"Some College";1;0;0;"car";1
"fkspe";4;19;"96;662";20;1;"Some College";1;0;0;"spe";1
"fkswi";3;14;"96;662";20;1;"Some College";1;0;0;"swi";1
"flboa";2;3;"96;662";20;1;"Some College";0;0;0;"boa";0
"flcar";7;18;"96;662";20;1;"Some College";0;0;0;"car";0
"flche";7;15;"96;662";20;1;"Some College";0;0;0;"che";0
"flsha";4;30;"96;662";20;1;"Some College";0;0;0;"sha";0
"flswi";2;5;"96;662";20;1;"Some College";0;0;0;"swi";0
"ikbox";1;1;"96;662";20;1;"Some College";1;1;0;"box";1
"ikbur";5;13;"96;662";20;1;"Some College";1;1;0;"bur";1
"ikpon";1;20;"96;662";20;1;"Some College";1;1;0;"pon";1
"ikshi";7;17;"96;662";20;1;"Some College";1;1;0;"shi";1
"ikspe";2;28;"96;662";20;1;"Some College";1;1;0;"spe";1
"ilbox";4;10;"96;662";20;1;"Some College";0;1;0;"box";0
"ilche";4;6;"96;662";20;1;"Some College";0;1;0;"che";0
"ilpon";7;11;"96;662";20;1;"Some College";0;1;0;"pon";0
"ilsha";4;21;"96;662";20;1;"Some College";0;1;0;"sha";0
"ilshi";3;26;"96;662";20;1;"Some College";0;1;0;"shi";0
"ilswi";7;24;"96;662";20;1;"Some College";0;1;0;"swi";0
"nfrub";4;7;"96;662";20;1;"Some College";1;0;0;"rub";1
"cfaqu";5;2;"96;667";24;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;31;"96;667";24;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";5;16;"96;667";24;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";3;32;"96;667";24;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";6;4;"96;667";24;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";5;9;"96;667";24;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;667";24;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;12;"96;667";24;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;23;"96;667";24;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";5;22;"96;667";24;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;27;"96;667";24;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";6;19;"96;667";24;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;14;"96;667";24;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";5;3;"96;667";24;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";5;18;"96;667";24;0;"Bachelor's Degree";0;0;0;"car";0
"flche";5;15;"96;667";24;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;30;"96;667";24;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";5;5;"96;667";24;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";5;1;"96;667";24;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";4;13;"96;667";24;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;20;"96;667";24;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;667";24;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;28;"96;667";24;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";6;10;"96;667";24;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;6;"96;667";24;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;11;"96;667";24;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";5;21;"96;667";24;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";5;26;"96;667";24;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;24;"96;667";24;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;7;"96;667";24;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";1;20;"96;671";29;1;"Graduate Degree";0;0;1;"aqu";1
"cfbur";1;32;"96;671";29;1;"Graduate Degree";0;0;1;"bur";1
"cfrub";1;7;"96;671";29;1;"Graduate Degree";0;0;1;"rub";1
"cibox";1;12;"96;671";29;1;"Graduate Degree";0;1;1;"box";1
"cibur";1;23;"96;671";29;1;"Graduate Degree";0;1;1;"bur";1
"cispe";1;27;"96;671";29;1;"Graduate Degree";0;1;1;"spe";1
"fkaqu";1;29;"96;671";29;1;"Graduate Degree";1;0;0;"aqu";1
"fkboa";1;11;"96;671";29;1;"Graduate Degree";1;0;0;"boa";1
"fkbox";1;22;"96;671";29;1;"Graduate Degree";1;0;0;"box";1
"fkbur";1;14;"96;671";29;1;"Graduate Degree";1;0;0;"bur";1
"fkcar";1;30;"96;671";29;1;"Graduate Degree";1;0;0;"car";1
"fkspe";1;9;"96;671";29;1;"Graduate Degree";1;0;0;"spe";1
"fkswi";1;25;"96;671";29;1;"Graduate Degree";1;0;0;"swi";1
"flboa";7;2;"96;671";29;1;"Graduate Degree";0;0;0;"boa";0
"flcar";7;21;"96;671";29;1;"Graduate Degree";0;0;0;"car";0
"flche";7;4;"96;671";29;1;"Graduate Degree";0;0;0;"che";0
"flsha";4;28;"96;671";29;1;"Graduate Degree";0;0;0;"sha";0
"flswi";7;6;"96;671";29;1;"Graduate Degree";0;0;0;"swi";0
"ikbox";1;3;"96;671";29;1;"Graduate Degree";1;1;0;"box";1
"ikbur";1;5;"96;671";29;1;"Graduate Degree";1;1;0;"bur";1
"ikpon";1;1;"96;671";29;1;"Graduate Degree";1;1;0;"pon";1
"ikshi";1;17;"96;671";29;1;"Graduate Degree";1;1;0;"shi";1
"ikspe";1;19;"96;671";29;1;"Graduate Degree";1;1;0;"spe";1
"ilbox";7;31;"96;671";29;1;"Graduate Degree";0;1;0;"box";0
"ilche";7;13;"96;671";29;1;"Graduate Degree";0;1;0;"che";0
"ilpon";4;10;"96;671";29;1;"Graduate Degree";0;1;0;"pon";0
"ilsha";7;18;"96;671";29;1;"Graduate Degree";0;1;0;"sha";0
"ilshi";7;26;"96;671";29;1;"Graduate Degree";0;1;0;"shi";0
"ilswi";3;15;"96;671";29;1;"Graduate Degree";0;1;0;"swi";0
"nfrub";1;16;"96;671";29;1;"Graduate Degree";1;0;0;"rub";1
"cfaqu";4;13;"96;672";54;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;1;"96;672";54;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;26;"96;672";54;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";5;21;"96;672";54;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";5;10;"96;672";54;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;6;"96;672";54;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;672";54;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;22;"96;672";54;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;11;"96;672";54;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;19;"96;672";54;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;3;"96;672";54;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;24;"96;672";54;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;8;"96;672";54;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;31;"96;672";54;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;12;"96;672";54;0;"Bachelor's Degree";0;0;0;"car";0
"flche";4;29;"96;672";54;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;5;"96;672";54;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";2;27;"96;672";54;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;30;"96;672";54;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";4;28;"96;672";54;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;32;"96;672";54;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;16;"96;672";54;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;14;"96;672";54;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;2;"96;672";54;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";1;20;"96;672";54;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";1;23;"96;672";54;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";6;15;"96;672";54;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;7;"96;672";54;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";2;18;"96;672";54;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;17;"96;672";54;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;13;"96;683";59;0;"Some College";0;0;1;"aqu";1
"cfbur";6;1;"96;683";59;0;"Some College";0;0;1;"bur";1
"cfrub";6;26;"96;683";59;0;"Some College";0;0;1;"rub";1
"cibox";6;21;"96;683";59;0;"Some College";0;1;1;"box";1
"cibur";6;10;"96;683";59;0;"Some College";0;1;1;"bur";1
"cispe";6;6;"96;683";59;0;"Some College";0;1;1;"spe";1
"fkaqu";6;4;"96;683";59;0;"Some College";1;0;0;"aqu";1
"fkboa";6;22;"96;683";59;0;"Some College";1;0;0;"boa";1
"fkbox";6;11;"96;683";59;0;"Some College";1;0;0;"box";1
"fkbur";6;19;"96;683";59;0;"Some College";1;0;0;"bur";1
"fkcar";6;3;"96;683";59;0;"Some College";1;0;0;"car";1
"fkspe";6;24;"96;683";59;0;"Some College";1;0;0;"spe";1
"fkswi";6;8;"96;683";59;0;"Some College";1;0;0;"swi";1
"flboa";6;31;"96;683";59;0;"Some College";0;0;0;"boa";0
"flcar";6;12;"96;683";59;0;"Some College";0;0;0;"car";0
"flche";6;29;"96;683";59;0;"Some College";0;0;0;"che";0
"flsha";6;5;"96;683";59;0;"Some College";0;0;0;"sha";0
"flswi";6;27;"96;683";59;0;"Some College";0;0;0;"swi";0
"ikbox";6;30;"96;683";59;0;"Some College";1;1;0;"box";1
"ikbur";6;28;"96;683";59;0;"Some College";1;1;0;"bur";1
"ikpon";5;32;"96;683";59;0;"Some College";1;1;0;"pon";1
"ikshi";6;16;"96;683";59;0;"Some College";1;1;0;"shi";1
"ikspe";6;14;"96;683";59;0;"Some College";1;1;0;"spe";1
"ilbox";6;2;"96;683";59;0;"Some College";0;1;0;"box";0
"ilche";6;20;"96;683";59;0;"Some College";0;1;0;"che";0
"ilpon";6;23;"96;683";59;0;"Some College";0;1;0;"pon";0
"ilsha";6;15;"96;683";59;0;"Some College";0;1;0;"sha";0
"ilshi";6;7;"96;683";59;0;"Some College";0;1;0;"shi";0
"ilswi";6;18;"96;683";59;0;"Some College";0;1;0;"swi";0
"nfrub";6;17;"96;683";59;0;"Some College";1;0;0;"rub";1
"cfaqu";7;13;"96;684";39;1;"High School Graduate";0;0;1;"aqu";1
"cfbur";6;1;"96;684";39;1;"High School Graduate";0;0;1;"bur";1
"cfrub";7;26;"96;684";39;1;"High School Graduate";0;0;1;"rub";1
"cibox";7;21;"96;684";39;1;"High School Graduate";0;1;1;"box";1
"cibur";7;10;"96;684";39;1;"High School Graduate";0;1;1;"bur";1
"cispe";4;6;"96;684";39;1;"High School Graduate";0;1;1;"spe";1
"fkaqu";4;4;"96;684";39;1;"High School Graduate";1;0;0;"aqu";1
"fkboa";7;22;"96;684";39;1;"High School Graduate";1;0;0;"boa";1
"fkbox";7;11;"96;684";39;1;"High School Graduate";1;0;0;"box";1
"fkbur";7;19;"96;684";39;1;"High School Graduate";1;0;0;"bur";1
"fkcar";7;3;"96;684";39;1;"High School Graduate";1;0;0;"car";1
"fkspe";7;24;"96;684";39;1;"High School Graduate";1;0;0;"spe";1
"fkswi";6;8;"96;684";39;1;"High School Graduate";1;0;0;"swi";1
"flboa";7;31;"96;684";39;1;"High School Graduate";0;0;0;"boa";0
"flcar";7;12;"96;684";39;1;"High School Graduate";0;0;0;"car";0
"flche";7;29;"96;684";39;1;"High School Graduate";0;0;0;"che";0
"flsha";4;5;"96;684";39;1;"High School Graduate";0;0;0;"sha";0
"flswi";7;27;"96;684";39;1;"High School Graduate";0;0;0;"swi";0
"ikbox";7;30;"96;684";39;1;"High School Graduate";1;1;0;"box";1
"ikbur";7;28;"96;684";39;1;"High School Graduate";1;1;0;"bur";1
"ikpon";7;32;"96;684";39;1;"High School Graduate";1;1;0;"pon";1
"ikshi";7;16;"96;684";39;1;"High School Graduate";1;1;0;"shi";1
"ikspe";6;14;"96;684";39;1;"High School Graduate";1;1;0;"spe";1
"ilbox";7;2;"96;684";39;1;"High School Graduate";0;1;0;"box";0
"ilche";6;20;"96;684";39;1;"High School Graduate";0;1;0;"che";0
"ilpon";7;23;"96;684";39;1;"High School Graduate";0;1;0;"pon";0
"ilsha";7;15;"96;684";39;1;"High School Graduate";0;1;0;"sha";0
"ilshi";7;7;"96;684";39;1;"High School Graduate";0;1;0;"shi";0
"ilswi";7;18;"96;684";39;1;"High School Graduate";0;1;0;"swi";0
"nfrub";7;17;"96;684";39;1;"High School Graduate";1;0;0;"rub";1
"cfaqu";4;13;"96;692";28;0;"Some College";0;0;1;"aqu";1
"cfbur";4;1;"96;692";28;0;"Some College";0;0;1;"bur";1
"cfrub";7;26;"96;692";28;0;"Some College";0;0;1;"rub";1
"cibox";1;21;"96;692";28;0;"Some College";0;1;1;"box";1
"cibur";1;10;"96;692";28;0;"Some College";0;1;1;"bur";1
"cispe";1;6;"96;692";28;0;"Some College";0;1;1;"spe";1
"fkaqu";7;4;"96;692";28;0;"Some College";1;0;0;"aqu";1
"fkboa";5;22;"96;692";28;0;"Some College";1;0;0;"boa";1
"fkbox";4;11;"96;692";28;0;"Some College";1;0;0;"box";1
"fkbur";6;19;"96;692";28;0;"Some College";1;0;0;"bur";1
"fkcar";4;3;"96;692";28;0;"Some College";1;0;0;"car";1
"fkspe";4;24;"96;692";28;0;"Some College";1;0;0;"spe";1
"fkswi";4;8;"96;692";28;0;"Some College";1;0;0;"swi";1
"flboa";4;31;"96;692";28;0;"Some College";0;0;0;"boa";0
"flcar";4;12;"96;692";28;0;"Some College";0;0;0;"car";0
"flche";6;29;"96;692";28;0;"Some College";0;0;0;"che";0
"flsha";7;5;"96;692";28;0;"Some College";0;0;0;"sha";0
"flswi";5;27;"96;692";28;0;"Some College";0;0;0;"swi";0
"ikbox";2;30;"96;692";28;0;"Some College";1;1;0;"box";1
"ikbur";4;28;"96;692";28;0;"Some College";1;1;0;"bur";1
"ikpon";1;32;"96;692";28;0;"Some College";1;1;0;"pon";1
"ikshi";7;16;"96;692";28;0;"Some College";1;1;0;"shi";1
"ikspe";1;14;"96;692";28;0;"Some College";1;1;0;"spe";1
"ilbox";4;2;"96;692";28;0;"Some College";0;1;0;"box";0
"ilche";4;20;"96;692";28;0;"Some College";0;1;0;"che";0
"ilpon";6;23;"96;692";28;0;"Some College";0;1;0;"pon";0
"ilsha";4;15;"96;692";28;0;"Some College";0;1;0;"sha";0
"ilshi";7;7;"96;692";28;0;"Some College";0;1;0;"shi";0
"ilswi";2;18;"96;692";28;0;"Some College";0;1;0;"swi";0
"nfrub";7;17;"96;692";28;0;"Some College";1;0;0;"rub";1
"cfaqu";4;31;"96;693";30;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";4;2;"96;693";30;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;17;"96;693";30;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;1;"96;693";30;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";1;29;"96;693";30;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;24;"96;693";30;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";3;4;"96;693";30;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;21;"96;693";30;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;10;"96;693";30;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;11;"96;693";30;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";2;6;"96;693";30;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;14;"96;693";30;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;19;"96;693";30;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;30;"96;693";30;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";3;15;"96;693";30;0;"Bachelor's Degree";0;0;0;"car";0
"flche";4;18;"96;693";30;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;3;"96;693";30;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";3;28;"96;693";30;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;32;"96;693";30;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";1;20;"96;693";30;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;13;"96;693";30;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";2;16;"96;693";30;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";3;5;"96;693";30;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";4;23;"96;693";30;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";2;27;"96;693";30;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";2;22;"96;693";30;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";2;12;"96;693";30;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;7;"96;693";30;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";3;9;"96;693";30;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;26;"96;693";30;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";4;20;"96;699";47;0;"High School Graduate";0;0;1;"aqu";1
"cfbur";1;32;"96;699";47;0;"High School Graduate";0;0;1;"bur";1
"cfrub";1;7;"96;699";47;0;"High School Graduate";0;0;1;"rub";1
"cibox";1;12;"96;699";47;0;"High School Graduate";0;1;1;"box";1
"cibur";1;23;"96;699";47;0;"High School Graduate";0;1;1;"bur";1
"cispe";1;27;"96;699";47;0;"High School Graduate";0;1;1;"spe";1
"fkaqu";4;29;"96;699";47;0;"High School Graduate";1;0;0;"aqu";1
"fkboa";1;11;"96;699";47;0;"High School Graduate";1;0;0;"boa";1
"fkbox";1;22;"96;699";47;0;"High School Graduate";1;0;0;"box";1
"fkbur";4;14;"96;699";47;0;"High School Graduate";1;0;0;"bur";1
"fkcar";7;30;"96;699";47;0;"High School Graduate";1;0;0;"car";1
"fkspe";1;9;"96;699";47;0;"High School Graduate";1;0;0;"spe";1
"fkswi";1;25;"96;699";47;0;"High School Graduate";1;0;0;"swi";1
"flboa";7;2;"96;699";47;0;"High School Graduate";0;0;0;"boa";0
"flcar";4;21;"96;699";47;0;"High School Graduate";0;0;0;"car";0
"flche";1;4;"96;699";47;0;"High School Graduate";0;0;0;"che";0
"flsha";7;28;"96;699";47;0;"High School Graduate";0;0;0;"sha";0
"flswi";4;6;"96;699";47;0;"High School Graduate";0;0;0;"swi";0
"ikbox";1;3;"96;699";47;0;"High School Graduate";1;1;0;"box";1
"ikbur";1;5;"96;699";47;0;"High School Graduate";1;1;0;"bur";1
"ikpon";1;1;"96;699";47;0;"High School Graduate";1;1;0;"pon";1
"ikshi";4;17;"96;699";47;0;"High School Graduate";1;1;0;"shi";1
"ikspe";1;19;"96;699";47;0;"High School Graduate";1;1;0;"spe";1
"ilbox";7;31;"96;699";47;0;"High School Graduate";0;1;0;"box";0
"ilche";1;13;"96;699";47;0;"High School Graduate";0;1;0;"che";0
"ilpon";4;10;"96;699";47;0;"High School Graduate";0;1;0;"pon";0
"ilsha";1;18;"96;699";47;0;"High School Graduate";0;1;0;"sha";0
"ilshi";4;26;"96;699";47;0;"High School Graduate";0;1;0;"shi";0
"ilswi";1;15;"96;699";47;0;"High School Graduate";0;1;0;"swi";0
"nfrub";1;16;"96;699";47;0;"High School Graduate";1;0;0;"rub";1
"cfaqu";6;2;"96;714";27;0;"Some College";0;0;1;"aqu";1
"cfbur";3;31;"96;714";27;0;"Some College";0;0;1;"bur";1
"cfrub";2;16;"96;714";27;0;"Some College";0;0;1;"rub";1
"cibox";4;32;"96;714";27;0;"Some College";0;1;1;"box";1
"cibur";2;4;"96;714";27;0;"Some College";0;1;1;"bur";1
"cispe";1;9;"96;714";27;0;"Some College";0;1;1;"spe";1
"fkaqu";4;29;"96;714";27;0;"Some College";1;0;0;"aqu";1
"fkboa";2;12;"96;714";27;0;"Some College";1;0;0;"boa";1
"fkbox";3;23;"96;714";27;0;"Some College";1;0;0;"box";1
"fkbur";2;22;"96;714";27;0;"Some College";1;0;0;"bur";1
"fkcar";2;27;"96;714";27;0;"Some College";1;0;0;"car";1
"fkspe";2;19;"96;714";27;0;"Some College";1;0;0;"spe";1
"fkswi";3;14;"96;714";27;0;"Some College";1;0;0;"swi";1
"flboa";6;3;"96;714";27;0;"Some College";0;0;0;"boa";0
"flcar";3;18;"96;714";27;0;"Some College";0;0;0;"car";0
"flche";4;15;"96;714";27;0;"Some College";0;0;0;"che";0
"flsha";4;30;"96;714";27;0;"Some College";0;0;0;"sha";0
"flswi";4;5;"96;714";27;0;"Some College";0;0;0;"swi";0
"ikbox";5;1;"96;714";27;0;"Some College";1;1;0;"box";1
"ikbur";1;13;"96;714";27;0;"Some College";1;1;0;"bur";1
"ikpon";4;20;"96;714";27;0;"Some College";1;1;0;"pon";1
"ikshi";4;17;"96;714";27;0;"Some College";1;1;0;"shi";1
"ikspe";3;28;"96;714";27;0;"Some College";1;1;0;"spe";1
"ilbox";4;10;"96;714";27;0;"Some College";0;1;0;"box";0
"ilche";4;6;"96;714";27;0;"Some College";0;1;0;"che";0
"ilpon";4;11;"96;714";27;0;"Some College";0;1;0;"pon";0
"ilsha";3;21;"96;714";27;0;"Some College";0;1;0;"sha";0
"ilshi";4;26;"96;714";27;0;"Some College";0;1;0;"shi";0
"ilswi";3;24;"96;714";27;0;"Some College";0;1;0;"swi";0
"nfrub";4;7;"96;714";27;0;"Some College";1;0;0;"rub";1
"cfaqu";2;31;"96;729";54;0;"Some College";0;0;1;"aqu";1
"cfbur";1;2;"96;729";54;0;"Some College";0;0;1;"bur";1
"cfrub";2;17;"96;729";54;0;"Some College";0;0;1;"rub";1
"cibox";1;1;"96;729";54;0;"Some College";0;1;1;"box";1
"cibur";2;29;"96;729";54;0;"Some College";0;1;1;"bur";1
"cispe";2;24;"96;729";54;0;"Some College";0;1;1;"spe";1
"fkaqu";4;4;"96;729";54;0;"Some College";1;0;0;"aqu";1
"fkboa";3;21;"96;729";54;0;"Some College";1;0;0;"boa";1
"fkbox";4;10;"96;729";54;0;"Some College";1;0;0;"box";1
"fkbur";4;11;"96;729";54;0;"Some College";1;0;0;"bur";1
"fkcar";4;6;"96;729";54;0;"Some College";1;0;0;"car";1
"fkspe";2;14;"96;729";54;0;"Some College";1;0;0;"spe";1
"fkswi";2;19;"96;729";54;0;"Some College";1;0;0;"swi";1
"flboa";5;30;"96;729";54;0;"Some College";0;0;0;"boa";0
"flcar";4;15;"96;729";54;0;"Some College";0;0;0;"car";0
"flche";4;18;"96;729";54;0;"Some College";0;0;0;"che";0
"flsha";4;3;"96;729";54;0;"Some College";0;0;0;"sha";0
"flswi";5;28;"96;729";54;0;"Some College";0;0;0;"swi";0
"ikbox";2;32;"96;729";54;0;"Some College";1;1;0;"box";1
"ikbur";4;20;"96;729";54;0;"Some College";1;1;0;"bur";1
"ikpon";2;13;"96;729";54;0;"Some College";1;1;0;"pon";1
"ikshi";4;16;"96;729";54;0;"Some College";1;1;0;"shi";1
"ikspe";2;5;"96;729";54;0;"Some College";1;1;0;"spe";1
"ilbox";4;23;"96;729";54;0;"Some College";0;1;0;"box";0
"ilche";4;27;"96;729";54;0;"Some College";0;1;0;"che";0
"ilpon";2;22;"96;729";54;0;"Some College";0;1;0;"pon";0
"ilsha";4;12;"96;729";54;0;"Some College";0;1;0;"sha";0
"ilshi";4;7;"96;729";54;0;"Some College";0;1;0;"shi";0
"ilswi";4;9;"96;729";54;0;"Some College";0;1;0;"swi";0
"nfrub";4;26;"96;729";54;0;"Some College";1;0;0;"rub";1
"cfaqu";5;2;"96;741";56;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;31;"96;741";56;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";5;16;"96;741";56;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;32;"96;741";56;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";5;4;"96;741";56;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";3;9;"96;741";56;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;741";56;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";6;12;"96;741";56;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;23;"96;741";56;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";3;22;"96;741";56;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";5;27;"96;741";56;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;19;"96;741";56;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;14;"96;741";56;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;3;"96;741";56;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";5;18;"96;741";56;0;"Bachelor's Degree";0;0;0;"car";0
"flche";5;15;"96;741";56;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;30;"96;741";56;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";5;5;"96;741";56;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";6;1;"96;741";56;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;13;"96;741";56;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;20;"96;741";56;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;741";56;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;28;"96;741";56;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;10;"96;741";56;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;6;"96;741";56;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";4;11;"96;741";56;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;21;"96;741";56;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";5;26;"96;741";56;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;24;"96;741";56;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;7;"96;741";56;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";3;31;"96;744";52;0;"Some College";0;0;1;"aqu";1
"cfbur";3;2;"96;744";52;0;"Some College";0;0;1;"bur";1
"cfrub";3;17;"96;744";52;0;"Some College";0;0;1;"rub";1
"cibox";2;1;"96;744";52;0;"Some College";0;1;1;"box";1
"cibur";3;29;"96;744";52;0;"Some College";0;1;1;"bur";1
"cispe";2;24;"96;744";52;0;"Some College";0;1;1;"spe";1
"fkaqu";3;4;"96;744";52;0;"Some College";1;0;0;"aqu";1
"fkboa";3;21;"96;744";52;0;"Some College";1;0;0;"boa";1
"fkbox";3;10;"96;744";52;0;"Some College";1;0;0;"box";1
"fkbur";3;11;"96;744";52;0;"Some College";1;0;0;"bur";1
"fkcar";3;6;"96;744";52;0;"Some College";1;0;0;"car";1
"fkspe";3;14;"96;744";52;0;"Some College";1;0;0;"spe";1
"fkswi";3;19;"96;744";52;0;"Some College";1;0;0;"swi";1
"flboa";3;30;"96;744";52;0;"Some College";0;0;0;"boa";0
"flcar";3;15;"96;744";52;0;"Some College";0;0;0;"car";0
"flche";3;18;"96;744";52;0;"Some College";0;0;0;"che";0
"flsha";3;3;"96;744";52;0;"Some College";0;0;0;"sha";0
"flswi";3;28;"96;744";52;0;"Some College";0;0;0;"swi";0
"ikbox";3;32;"96;744";52;0;"Some College";1;1;0;"box";1
"ikbur";3;20;"96;744";52;0;"Some College";1;1;0;"bur";1
"ikpon";3;13;"96;744";52;0;"Some College";1;1;0;"pon";1
"ikshi";3;16;"96;744";52;0;"Some College";1;1;0;"shi";1
"ikspe";3;5;"96;744";52;0;"Some College";1;1;0;"spe";1
"ilbox";2;23;"96;744";52;0;"Some College";0;1;0;"box";0
"ilche";3;27;"96;744";52;0;"Some College";0;1;0;"che";0
"ilpon";4;22;"96;744";52;0;"Some College";0;1;0;"pon";0
"ilsha";3;12;"96;744";52;0;"Some College";0;1;0;"sha";0
"ilshi";3;7;"96;744";52;0;"Some College";0;1;0;"shi";0
"ilswi";3;9;"96;744";52;0;"Some College";0;1;0;"swi";0
"nfrub";3;26;"96;744";52;0;"Some College";1;0;0;"rub";1
"cfaqu";4;20;"96;749";20;0;"Some College";0;0;1;"aqu";1
"cfbur";4;32;"96;749";20;0;"Some College";0;0;1;"bur";1
"cfrub";3;7;"96;749";20;0;"Some College";0;0;1;"rub";1
"cibox";3;12;"96;749";20;0;"Some College";0;1;1;"box";1
"cibur";3;23;"96;749";20;0;"Some College";0;1;1;"bur";1
"cispe";2;27;"96;749";20;0;"Some College";0;1;1;"spe";1
"fkaqu";4;29;"96;749";20;0;"Some College";1;0;0;"aqu";1
"fkboa";4;11;"96;749";20;0;"Some College";1;0;0;"boa";1
"fkbox";4;22;"96;749";20;0;"Some College";1;0;0;"box";1
"fkbur";5;14;"96;749";20;0;"Some College";1;0;0;"bur";1
"fkcar";5;30;"96;749";20;0;"Some College";1;0;0;"car";1
"fkspe";4;9;"96;749";20;0;"Some College";1;0;0;"spe";1
"fkswi";4;25;"96;749";20;0;"Some College";1;0;0;"swi";1
"flboa";6;2;"96;749";20;0;"Some College";0;0;0;"boa";0
"flcar";5;21;"96;749";20;0;"Some College";0;0;0;"car";0
"flche";4;4;"96;749";20;0;"Some College";0;0;0;"che";0
"flsha";4;28;"96;749";20;0;"Some College";0;0;0;"sha";0
"flswi";4;6;"96;749";20;0;"Some College";0;0;0;"swi";0
"ikbox";3;3;"96;749";20;0;"Some College";1;1;0;"box";1
"ikbur";6;5;"96;749";20;0;"Some College";1;1;0;"bur";1
"ikpon";3;1;"96;749";20;0;"Some College";1;1;0;"pon";1
"ikshi";7;17;"96;749";20;0;"Some College";1;1;0;"shi";1
"ikspe";3;19;"96;749";20;0;"Some College";1;1;0;"spe";1
"ilbox";4;31;"96;749";20;0;"Some College";0;1;0;"box";0
"ilche";4;13;"96;749";20;0;"Some College";0;1;0;"che";0
"ilpon";5;10;"96;749";20;0;"Some College";0;1;0;"pon";0
"ilsha";4;18;"96;749";20;0;"Some College";0;1;0;"sha";0
"ilshi";6;26;"96;749";20;0;"Some College";0;1;0;"shi";0
"ilswi";4;15;"96;749";20;0;"Some College";0;1;0;"swi";0
"nfrub";3;16;"96;749";20;0;"Some College";1;0;0;"rub";1
"cfaqu";7;13;"96;756";28;1;"Graduate Degree";0;0;1;"aqu";1
"cfbur";7;1;"96;756";28;1;"Graduate Degree";0;0;1;"bur";1
"cfrub";1;26;"96;756";28;1;"Graduate Degree";0;0;1;"rub";1
"cibox";1;21;"96;756";28;1;"Graduate Degree";0;1;1;"box";1
"cibur";1;10;"96;756";28;1;"Graduate Degree";0;1;1;"bur";1
"cispe";1;6;"96;756";28;1;"Graduate Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;756";28;1;"Graduate Degree";1;0;0;"aqu";1
"fkboa";5;22;"96;756";28;1;"Graduate Degree";1;0;0;"boa";1
"fkbox";1;11;"96;756";28;1;"Graduate Degree";1;0;0;"box";1
"fkbur";7;19;"96;756";28;1;"Graduate Degree";1;0;0;"bur";1
"fkcar";1;3;"96;756";28;1;"Graduate Degree";1;0;0;"car";1
"fkspe";1;24;"96;756";28;1;"Graduate Degree";1;0;0;"spe";1
"fkswi";6;8;"96;756";28;1;"Graduate Degree";1;0;0;"swi";1
"flboa";6;31;"96;756";28;1;"Graduate Degree";0;0;0;"boa";0
"flcar";7;12;"96;756";28;1;"Graduate Degree";0;0;0;"car";0
"flche";4;29;"96;756";28;1;"Graduate Degree";0;0;0;"che";0
"flsha";4;5;"96;756";28;1;"Graduate Degree";0;0;0;"sha";0
"flswi";7;27;"96;756";28;1;"Graduate Degree";0;0;0;"swi";0
"ikbox";1;30;"96;756";28;1;"Graduate Degree";1;1;0;"box";1
"ikbur";1;28;"96;756";28;1;"Graduate Degree";1;1;0;"bur";1
"ikpon";1;32;"96;756";28;1;"Graduate Degree";1;1;0;"pon";1
"ikshi";4;16;"96;756";28;1;"Graduate Degree";1;1;0;"shi";1
"ikspe";1;14;"96;756";28;1;"Graduate Degree";1;1;0;"spe";1
"ilbox";1;2;"96;756";28;1;"Graduate Degree";0;1;0;"box";0
"ilche";3;20;"96;756";28;1;"Graduate Degree";0;1;0;"che";0
"ilpon";3;23;"96;756";28;1;"Graduate Degree";0;1;0;"pon";0
"ilsha";7;15;"96;756";28;1;"Graduate Degree";0;1;0;"sha";0
"ilshi";7;7;"96;756";28;1;"Graduate Degree";0;1;0;"shi";0
"ilswi";7;18;"96;756";28;1;"Graduate Degree";0;1;0;"swi";0
"nfrub";1;17;"96;756";28;1;"Graduate Degree";1;0;0;"rub";1
"cfaqu";7;13;"96;763";20;1;"High School Graduate";0;0;1;"aqu";1
"cfbur";7;1;"96;763";20;1;"High School Graduate";0;0;1;"bur";1
"cfrub";7;26;"96;763";20;1;"High School Graduate";0;0;1;"rub";1
"cibox";7;21;"96;763";20;1;"High School Graduate";0;1;1;"box";1
"cibur";5;10;"96;763";20;1;"High School Graduate";0;1;1;"bur";1
"cispe";4;6;"96;763";20;1;"High School Graduate";0;1;1;"spe";1
"fkaqu";7;4;"96;763";20;1;"High School Graduate";1;0;0;"aqu";1
"fkboa";7;22;"96;763";20;1;"High School Graduate";1;0;0;"boa";1
"fkbox";7;11;"96;763";20;1;"High School Graduate";1;0;0;"box";1
"fkbur";7;19;"96;763";20;1;"High School Graduate";1;0;0;"bur";1
"fkcar";7;3;"96;763";20;1;"High School Graduate";1;0;0;"car";1
"fkspe";7;24;"96;763";20;1;"High School Graduate";1;0;0;"spe";1
"fkswi";7;8;"96;763";20;1;"High School Graduate";1;0;0;"swi";1
"flboa";7;31;"96;763";20;1;"High School Graduate";0;0;0;"boa";0
"flcar";7;12;"96;763";20;1;"High School Graduate";0;0;0;"car";0
"flche";7;29;"96;763";20;1;"High School Graduate";0;0;0;"che";0
"flsha";7;5;"96;763";20;1;"High School Graduate";0;0;0;"sha";0
"flswi";7;27;"96;763";20;1;"High School Graduate";0;0;0;"swi";0
"ikbox";7;30;"96;763";20;1;"High School Graduate";1;1;0;"box";1
"ikbur";7;28;"96;763";20;1;"High School Graduate";1;1;0;"bur";1
"ikpon";7;32;"96;763";20;1;"High School Graduate";1;1;0;"pon";1
"ikshi";1;16;"96;763";20;1;"High School Graduate";1;1;0;"shi";1
"ikspe";7;14;"96;763";20;1;"High School Graduate";1;1;0;"spe";1
"ilbox";7;2;"96;763";20;1;"High School Graduate";0;1;0;"box";0
"ilche";7;20;"96;763";20;1;"High School Graduate";0;1;0;"che";0
"ilpon";7;23;"96;763";20;1;"High School Graduate";0;1;0;"pon";0
"ilsha";7;15;"96;763";20;1;"High School Graduate";0;1;0;"sha";0
"ilshi";7;7;"96;763";20;1;"High School Graduate";0;1;0;"shi";0
"ilswi";7;18;"96;763";20;1;"High School Graduate";0;1;0;"swi";0
"nfrub";7;17;"96;763";20;1;"High School Graduate";1;0;0;"rub";1
"cfaqu";5;2;"96;764";52;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;31;"96;764";52;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";5;16;"96;764";52;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";4;32;"96;764";52;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";4;4;"96;764";52;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;9;"96;764";52;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;764";52;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";5;12;"96;764";52;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;23;"96;764";52;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";5;22;"96;764";52;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";3;27;"96;764";52;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";5;19;"96;764";52;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;14;"96;764";52;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;3;"96;764";52;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";3;18;"96;764";52;0;"Bachelor's Degree";0;0;0;"car";0
"flche";3;15;"96;764";52;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;30;"96;764";52;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";3;5;"96;764";52;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;1;"96;764";52;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";5;13;"96;764";52;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;20;"96;764";52;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";5;17;"96;764";52;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;28;"96;764";52;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";5;10;"96;764";52;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;6;"96;764";52;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";3;11;"96;764";52;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";5;21;"96;764";52;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";3;26;"96;764";52;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";5;24;"96;764";52;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;7;"96;764";52;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";7;20;"96;767";20;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;32;"96;767";20;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;7;"96;767";20;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";4;12;"96;767";20;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";5;23;"96;767";20;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;27;"96;767";20;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;767";20;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;11;"96;767";20;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;22;"96;767";20;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;14;"96;767";20;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;30;"96;767";20;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;9;"96;767";20;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;25;"96;767";20;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;2;"96;767";20;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;21;"96;767";20;0;"Bachelor's Degree";0;0;0;"car";0
"flche";7;4;"96;767";20;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;28;"96;767";20;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;6;"96;767";20;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;3;"96;767";20;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";6;5;"96;767";20;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";6;1;"96;767";20;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;17;"96;767";20;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";5;19;"96;767";20;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;31;"96;767";20;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;13;"96;767";20;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;10;"96;767";20;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";7;18;"96;767";20;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;767";20;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";6;15;"96;767";20;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";6;16;"96;767";20;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";7;31;"96;769";43;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";7;2;"96;769";43;1;"Master's Degree";0;0;1;"bur";1
"cfrub";7;17;"96;769";43;1;"Master's Degree";0;0;1;"rub";1
"cibox";2;1;"96;769";43;1;"Master's Degree";0;1;1;"box";1
"cibur";7;29;"96;769";43;1;"Master's Degree";0;1;1;"bur";1
"cispe";2;24;"96;769";43;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;769";43;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";7;21;"96;769";43;1;"Master's Degree";1;0;0;"boa";1
"fkbox";4;10;"96;769";43;1;"Master's Degree";1;0;0;"box";1
"fkbur";7;11;"96;769";43;1;"Master's Degree";1;0;0;"bur";1
"fkcar";7;6;"96;769";43;1;"Master's Degree";1;0;0;"car";1
"fkspe";6;14;"96;769";43;1;"Master's Degree";1;0;0;"spe";1
"fkswi";7;19;"96;769";43;1;"Master's Degree";1;0;0;"swi";1
"flboa";7;30;"96;769";43;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;15;"96;769";43;1;"Master's Degree";0;0;0;"car";0
"flche";7;18;"96;769";43;1;"Master's Degree";0;0;0;"che";0
"flsha";7;3;"96;769";43;1;"Master's Degree";0;0;0;"sha";0
"flswi";6;28;"96;769";43;1;"Master's Degree";0;0;0;"swi";0
"ikbox";7;32;"96;769";43;1;"Master's Degree";1;1;0;"box";1
"ikbur";7;20;"96;769";43;1;"Master's Degree";1;1;0;"bur";1
"ikpon";7;13;"96;769";43;1;"Master's Degree";1;1;0;"pon";1
"ikshi";7;16;"96;769";43;1;"Master's Degree";1;1;0;"shi";1
"ikspe";6;5;"96;769";43;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;23;"96;769";43;1;"Master's Degree";0;1;0;"box";0
"ilche";7;27;"96;769";43;1;"Master's Degree";0;1;0;"che";0
"ilpon";6;22;"96;769";43;1;"Master's Degree";0;1;0;"pon";0
"ilsha";7;12;"96;769";43;1;"Master's Degree";0;1;0;"sha";0
"ilshi";7;7;"96;769";43;1;"Master's Degree";0;1;0;"shi";0
"ilswi";6;9;"96;769";43;1;"Master's Degree";0;1;0;"swi";0
"nfrub";7;26;"96;769";43;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";4;20;"96;777";45;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";3;32;"96;777";45;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";3;7;"96;777";45;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;12;"96;777";45;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";3;23;"96;777";45;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";3;27;"96;777";45;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";3;29;"96;777";45;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";3;11;"96;777";45;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;22;"96;777";45;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;14;"96;777";45;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";3;30;"96;777";45;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";3;9;"96;777";45;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;25;"96;777";45;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;2;"96;777";45;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";4;21;"96;777";45;0;"Bachelor's Degree";0;0;0;"car";0
"flche";4;4;"96;777";45;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;28;"96;777";45;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";4;6;"96;777";45;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;3;"96;777";45;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;5;"96;777";45;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;1;"96;777";45;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;777";45;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;19;"96;777";45;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";4;31;"96;777";45;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";4;13;"96;777";45;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";4;10;"96;777";45;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";3;18;"96;777";45;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;26;"96;777";45;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";3;15;"96;777";45;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;16;"96;777";45;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;20;"96;782";34;0;"Graduate Degree";0;0;1;"aqu";1
"cfbur";5;32;"96;782";34;0;"Graduate Degree";0;0;1;"bur";1
"cfrub";4;7;"96;782";34;0;"Graduate Degree";0;0;1;"rub";1
"cibox";4;12;"96;782";34;0;"Graduate Degree";0;1;1;"box";1
"cibur";5;23;"96;782";34;0;"Graduate Degree";0;1;1;"bur";1
"cispe";5;27;"96;782";34;0;"Graduate Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;782";34;0;"Graduate Degree";1;0;0;"aqu";1
"fkboa";4;11;"96;782";34;0;"Graduate Degree";1;0;0;"boa";1
"fkbox";5;22;"96;782";34;0;"Graduate Degree";1;0;0;"box";1
"fkbur";5;14;"96;782";34;0;"Graduate Degree";1;0;0;"bur";1
"fkcar";5;30;"96;782";34;0;"Graduate Degree";1;0;0;"car";1
"fkspe";5;9;"96;782";34;0;"Graduate Degree";1;0;0;"spe";1
"fkswi";5;25;"96;782";34;0;"Graduate Degree";1;0;0;"swi";1
"flboa";5;2;"96;782";34;0;"Graduate Degree";0;0;0;"boa";0
"flcar";5;21;"96;782";34;0;"Graduate Degree";0;0;0;"car";0
"flche";5;4;"96;782";34;0;"Graduate Degree";0;0;0;"che";0
"flsha";5;28;"96;782";34;0;"Graduate Degree";0;0;0;"sha";0
"flswi";4;6;"96;782";34;0;"Graduate Degree";0;0;0;"swi";0
"ikbox";4;3;"96;782";34;0;"Graduate Degree";1;1;0;"box";1
"ikbur";5;5;"96;782";34;0;"Graduate Degree";1;1;0;"bur";1
"ikpon";4;1;"96;782";34;0;"Graduate Degree";1;1;0;"pon";1
"ikshi";5;17;"96;782";34;0;"Graduate Degree";1;1;0;"shi";1
"ikspe";5;19;"96;782";34;0;"Graduate Degree";1;1;0;"spe";1
"ilbox";5;31;"96;782";34;0;"Graduate Degree";0;1;0;"box";0
"ilche";5;13;"96;782";34;0;"Graduate Degree";0;1;0;"che";0
"ilpon";4;10;"96;782";34;0;"Graduate Degree";0;1;0;"pon";0
"ilsha";5;18;"96;782";34;0;"Graduate Degree";0;1;0;"sha";0
"ilshi";3;26;"96;782";34;0;"Graduate Degree";0;1;0;"shi";0
"ilswi";4;15;"96;782";34;0;"Graduate Degree";0;1;0;"swi";0
"nfrub";5;16;"96;782";34;0;"Graduate Degree";1;0;0;"rub";1
"cfaqu";7;13;"96;795";53;0;"Some College";0;0;1;"aqu";1
"cfbur";7;1;"96;795";53;0;"Some College";0;0;1;"bur";1
"cfrub";7;26;"96;795";53;0;"Some College";0;0;1;"rub";1
"cibox";1;21;"96;795";53;0;"Some College";0;1;1;"box";1
"cibur";7;10;"96;795";53;0;"Some College";0;1;1;"bur";1
"cispe";1;6;"96;795";53;0;"Some College";0;1;1;"spe";1
"fkaqu";7;4;"96;795";53;0;"Some College";1;0;0;"aqu";1
"fkboa";7;22;"96;795";53;0;"Some College";1;0;0;"boa";1
"fkbox";7;11;"96;795";53;0;"Some College";1;0;0;"box";1
"fkbur";7;19;"96;795";53;0;"Some College";1;0;0;"bur";1
"fkcar";5;3;"96;795";53;0;"Some College";1;0;0;"car";1
"fkspe";7;24;"96;795";53;0;"Some College";1;0;0;"spe";1
"fkswi";4;8;"96;795";53;0;"Some College";1;0;0;"swi";1
"flboa";7;31;"96;795";53;0;"Some College";0;0;0;"boa";0
"flcar";7;12;"96;795";53;0;"Some College";0;0;0;"car";0
"flche";7;29;"96;795";53;0;"Some College";0;0;0;"che";0
"flsha";6;5;"96;795";53;0;"Some College";0;0;0;"sha";0
"flswi";2;27;"96;795";53;0;"Some College";0;0;0;"swi";0
"ikbox";1;30;"96;795";53;0;"Some College";1;1;0;"box";1
"ikbur";1;28;"96;795";53;0;"Some College";1;1;0;"bur";1
"ikpon";1;32;"96;795";53;0;"Some College";1;1;0;"pon";1
"ikshi";4;16;"96;795";53;0;"Some College";1;1;0;"shi";1
"ikspe";7;14;"96;795";53;0;"Some College";1;1;0;"spe";1
"ilbox";4;2;"96;795";53;0;"Some College";0;1;0;"box";0
"ilche";6;20;"96;795";53;0;"Some College";0;1;0;"che";0
"ilpon";1;23;"96;795";53;0;"Some College";0;1;0;"pon";0
"ilsha";2;15;"96;795";53;0;"Some College";0;1;0;"sha";0
"ilshi";2;7;"96;795";53;0;"Some College";0;1;0;"shi";0
"ilswi";1;18;"96;795";53;0;"Some College";0;1;0;"swi";0
"nfrub";7;17;"96;795";53;0;"Some College";1;0;0;"rub";1
"cfaqu";6;2;"96;802";21;0;"Some College";0;0;1;"aqu";1
"cfbur";6;31;"96;802";21;0;"Some College";0;0;1;"bur";1
"cfrub";6;16;"96;802";21;0;"Some College";0;0;1;"rub";1
"cibox";6;32;"96;802";21;0;"Some College";0;1;1;"box";1
"cibur";6;4;"96;802";21;0;"Some College";0;1;1;"bur";1
"cispe";5;9;"96;802";21;0;"Some College";0;1;1;"spe";1
"fkaqu";6;29;"96;802";21;0;"Some College";1;0;0;"aqu";1
"fkboa";6;12;"96;802";21;0;"Some College";1;0;0;"boa";1
"fkbox";6;23;"96;802";21;0;"Some College";1;0;0;"box";1
"fkbur";6;22;"96;802";21;0;"Some College";1;0;0;"bur";1
"fkcar";6;27;"96;802";21;0;"Some College";1;0;0;"car";1
"fkspe";6;19;"96;802";21;0;"Some College";1;0;0;"spe";1
"fkswi";6;14;"96;802";21;0;"Some College";1;0;0;"swi";1
"flboa";6;3;"96;802";21;0;"Some College";0;0;0;"boa";0
"flcar";6;18;"96;802";21;0;"Some College";0;0;0;"car";0
"flche";6;15;"96;802";21;0;"Some College";0;0;0;"che";0
"flsha";6;30;"96;802";21;0;"Some College";0;0;0;"sha";0
"flswi";2;5;"96;802";21;0;"Some College";0;0;0;"swi";0
"ikbox";6;1;"96;802";21;0;"Some College";1;1;0;"box";1
"ikbur";6;13;"96;802";21;0;"Some College";1;1;0;"bur";1
"ikpon";6;20;"96;802";21;0;"Some College";1;1;0;"pon";1
"ikshi";6;17;"96;802";21;0;"Some College";1;1;0;"shi";1
"ikspe";6;28;"96;802";21;0;"Some College";1;1;0;"spe";1
"ilbox";6;10;"96;802";21;0;"Some College";0;1;0;"box";0
"ilche";6;6;"96;802";21;0;"Some College";0;1;0;"che";0
"ilpon";6;11;"96;802";21;0;"Some College";0;1;0;"pon";0
"ilsha";6;21;"96;802";21;0;"Some College";0;1;0;"sha";0
"ilshi";6;26;"96;802";21;0;"Some College";0;1;0;"shi";0
"ilswi";6;24;"96;802";21;0;"Some College";0;1;0;"swi";0
"nfrub";6;7;"96;802";21;0;"Some College";1;0;0;"rub";1
"cfaqu";5;2;"96;805";24;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";5;31;"96;805";24;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";5;16;"96;805";24;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";3;32;"96;805";24;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";3;4;"96;805";24;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;9;"96;805";24;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;805";24;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;12;"96;805";24;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";6;23;"96;805";24;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";5;22;"96;805";24;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";6;27;"96;805";24;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;19;"96;805";24;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";5;14;"96;805";24;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";7;3;"96;805";24;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;18;"96;805";24;1;"Bachelor's Degree";0;0;0;"car";0
"flche";5;15;"96;805";24;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";6;30;"96;805";24;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;5;"96;805";24;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;1;"96;805";24;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;13;"96;805";24;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;20;"96;805";24;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;805";24;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;28;"96;805";24;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;10;"96;805";24;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";5;6;"96;805";24;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;11;"96;805";24;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";6;21;"96;805";24;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;805";24;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;24;"96;805";24;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;7;"96;805";24;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";3;31;"96;808";19;1;"Some High School";0;0;1;"aqu";1
"cfbur";6;2;"96;808";19;1;"Some High School";0;0;1;"bur";1
"cfrub";6;17;"96;808";19;1;"Some High School";0;0;1;"rub";1
"cibox";4;1;"96;808";19;1;"Some High School";0;1;1;"box";1
"cibur";3;29;"96;808";19;1;"Some High School";0;1;1;"bur";1
"cispe";3;24;"96;808";19;1;"Some High School";0;1;1;"spe";1
"fkaqu";5;4;"96;808";19;1;"Some High School";1;0;0;"aqu";1
"fkboa";3;21;"96;808";19;1;"Some High School";1;0;0;"boa";1
"fkbox";6;10;"96;808";19;1;"Some High School";1;0;0;"box";1
"fkbur";6;11;"96;808";19;1;"Some High School";1;0;0;"bur";1
"fkcar";7;6;"96;808";19;1;"Some High School";1;0;0;"car";1
"fkspe";6;14;"96;808";19;1;"Some High School";1;0;0;"spe";1
"fkswi";4;19;"96;808";19;1;"Some High School";1;0;0;"swi";1
"flboa";4;30;"96;808";19;1;"Some High School";0;0;0;"boa";0
"flcar";6;15;"96;808";19;1;"Some High School";0;0;0;"car";0
"flche";6;18;"96;808";19;1;"Some High School";0;0;0;"che";0
"flsha";3;3;"96;808";19;1;"Some High School";0;0;0;"sha";0
"flswi";5;28;"96;808";19;1;"Some High School";0;0;0;"swi";0
"ikbox";5;32;"96;808";19;1;"Some High School";1;1;0;"box";1
"ikbur";6;20;"96;808";19;1;"Some High School";1;1;0;"bur";1
"ikpon";5;13;"96;808";19;1;"Some High School";1;1;0;"pon";1
"ikshi";6;16;"96;808";19;1;"Some High School";1;1;0;"shi";1
"ikspe";6;5;"96;808";19;1;"Some High School";1;1;0;"spe";1
"ilbox";5;23;"96;808";19;1;"Some High School";0;1;0;"box";0
"ilche";5;27;"96;808";19;1;"Some High School";0;1;0;"che";0
"ilpon";6;22;"96;808";19;1;"Some High School";0;1;0;"pon";0
"ilsha";4;12;"96;808";19;1;"Some High School";0;1;0;"sha";0
"ilshi";2;7;"96;808";19;1;"Some High School";0;1;0;"shi";0
"ilswi";3;9;"96;808";19;1;"Some High School";0;1;0;"swi";0
"nfrub";5;26;"96;808";19;1;"Some High School";1;0;0;"rub";1
"cfaqu";6;31;"96;810";34;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";6;2;"96;810";34;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";7;17;"96;810";34;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";7;1;"96;810";34;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";6;29;"96;810";34;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";7;24;"96;810";34;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;810";34;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";7;21;"96;810";34;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";7;10;"96;810";34;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;11;"96;810";34;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";7;6;"96;810";34;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";7;14;"96;810";34;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;19;"96;810";34;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;30;"96;810";34;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";7;15;"96;810";34;0;"Bachelor's Degree";0;0;0;"car";0
"flche";6;18;"96;810";34;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;3;"96;810";34;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";6;28;"96;810";34;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";7;32;"96;810";34;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";7;20;"96;810";34;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";7;13;"96;810";34;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;16;"96;810";34;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";6;5;"96;810";34;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;23;"96;810";34;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";6;27;"96;810";34;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;22;"96;810";34;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";1;12;"96;810";34;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;7;"96;810";34;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";7;9;"96;810";34;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";7;26;"96;810";34;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";3;2;"96;817";18;0;"High School Graduate";0;0;1;"aqu";1
"cfbur";5;31;"96;817";18;0;"High School Graduate";0;0;1;"bur";1
"cfrub";4;16;"96;817";18;0;"High School Graduate";0;0;1;"rub";1
"cibox";3;32;"96;817";18;0;"High School Graduate";0;1;1;"box";1
"cibur";5;4;"96;817";18;0;"High School Graduate";0;1;1;"bur";1
"cispe";3;9;"96;817";18;0;"High School Graduate";0;1;1;"spe";1
"fkaqu";4;29;"96;817";18;0;"High School Graduate";1;0;0;"aqu";1
"fkboa";6;12;"96;817";18;0;"High School Graduate";1;0;0;"boa";1
"fkbox";5;23;"96;817";18;0;"High School Graduate";1;0;0;"box";1
"fkbur";6;22;"96;817";18;0;"High School Graduate";1;0;0;"bur";1
"fkcar";5;27;"96;817";18;0;"High School Graduate";1;0;0;"car";1
"fkspe";6;19;"96;817";18;0;"High School Graduate";1;0;0;"spe";1
"fkswi";5;14;"96;817";18;0;"High School Graduate";1;0;0;"swi";1
"flboa";1;3;"96;817";18;0;"High School Graduate";0;0;0;"boa";0
"flcar";6;18;"96;817";18;0;"High School Graduate";0;0;0;"car";0
"flche";4;15;"96;817";18;0;"High School Graduate";0;0;0;"che";0
"flsha";3;30;"96;817";18;0;"High School Graduate";0;0;0;"sha";0
"flswi";2;5;"96;817";18;0;"High School Graduate";0;0;0;"swi";0
"ikbox";4;1;"96;817";18;0;"High School Graduate";1;1;0;"box";1
"ikbur";5;13;"96;817";18;0;"High School Graduate";1;1;0;"bur";1
"ikpon";4;20;"96;817";18;0;"High School Graduate";1;1;0;"pon";1
"ikshi";4;17;"96;817";18;0;"High School Graduate";1;1;0;"shi";1
"ikspe";5;28;"96;817";18;0;"High School Graduate";1;1;0;"spe";1
"ilbox";4;10;"96;817";18;0;"High School Graduate";0;1;0;"box";0
"ilche";4;6;"96;817";18;0;"High School Graduate";0;1;0;"che";0
"ilpon";4;11;"96;817";18;0;"High School Graduate";0;1;0;"pon";0
"ilsha";5;21;"96;817";18;0;"High School Graduate";0;1;0;"sha";0
"ilshi";4;26;"96;817";18;0;"High School Graduate";0;1;0;"shi";0
"ilswi";3;24;"96;817";18;0;"High School Graduate";0;1;0;"swi";0
"nfrub";5;7;"96;817";18;0;"High School Graduate";1;0;0;"rub";1
"cfaqu";6;20;"96;821";41;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";4;32;"96;821";41;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";4;7;"96;821";41;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;12;"96;821";41;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";4;23;"96;821";41;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";3;27;"96;821";41;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;821";41;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";4;11;"96;821";41;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";4;22;"96;821";41;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";4;14;"96;821";41;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;30;"96;821";41;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";4;9;"96;821";41;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";4;25;"96;821";41;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;2;"96;821";41;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";3;21;"96;821";41;0;"Bachelor's Degree";0;0;0;"car";0
"flche";7;4;"96;821";41;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;28;"96;821";41;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";7;6;"96;821";41;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";6;3;"96;821";41;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;5;"96;821";41;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";3;1;"96;821";41;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";4;17;"96;821";41;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;19;"96;821";41;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";4;31;"96;821";41;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;13;"96;821";41;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";6;10;"96;821";41;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;18;"96;821";41;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;821";41;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";4;15;"96;821";41;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;16;"96;821";41;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";7;13;"96;824";28;0;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";7;1;"96;824";28;0;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";1;26;"96;824";28;0;"Bachelor's Degree";0;0;1;"rub";1
"cibox";2;21;"96;824";28;0;"Bachelor's Degree";0;1;1;"box";1
"cibur";3;10;"96;824";28;0;"Bachelor's Degree";0;1;1;"bur";1
"cispe";4;6;"96;824";28;0;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";7;4;"96;824";28;0;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";3;22;"96;824";28;0;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";7;11;"96;824";28;0;"Bachelor's Degree";1;0;0;"box";1
"fkbur";7;19;"96;824";28;0;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;3;"96;824";28;0;"Bachelor's Degree";1;0;0;"car";1
"fkspe";3;24;"96;824";28;0;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";7;8;"96;824";28;0;"Bachelor's Degree";1;0;0;"swi";1
"flboa";4;31;"96;824";28;0;"Bachelor's Degree";0;0;0;"boa";0
"flcar";2;12;"96;824";28;0;"Bachelor's Degree";0;0;0;"car";0
"flche";7;29;"96;824";28;0;"Bachelor's Degree";0;0;0;"che";0
"flsha";7;5;"96;824";28;0;"Bachelor's Degree";0;0;0;"sha";0
"flswi";6;27;"96;824";28;0;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";4;30;"96;824";28;0;"Bachelor's Degree";1;1;0;"box";1
"ikbur";6;28;"96;824";28;0;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;32;"96;824";28;0;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";6;16;"96;824";28;0;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";3;14;"96;824";28;0;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;2;"96;824";28;0;"Bachelor's Degree";0;1;0;"box";0
"ilche";4;20;"96;824";28;0;"Bachelor's Degree";0;1;0;"che";0
"ilpon";7;23;"96;824";28;0;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";4;15;"96;824";28;0;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;7;"96;824";28;0;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";4;18;"96;824";28;0;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";5;17;"96;824";28;0;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";6;13;"96;827";43;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";6;1;"96;827";43;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";3;26;"96;827";43;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;21;"96;827";43;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";6;10;"96;827";43;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";3;6;"96;827";43;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";6;4;"96;827";43;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";2;22;"96;827";43;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";5;11;"96;827";43;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";6;19;"96;827";43;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";4;3;"96;827";43;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";2;24;"96;827";43;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";6;8;"96;827";43;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";6;31;"96;827";43;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";5;12;"96;827";43;1;"Bachelor's Degree";0;0;0;"car";0
"flche";7;29;"96;827";43;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";5;5;"96;827";43;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";5;27;"96;827";43;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";2;30;"96;827";43;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";3;28;"96;827";43;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;32;"96;827";43;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";7;16;"96;827";43;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";4;14;"96;827";43;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";4;2;"96;827";43;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";7;20;"96;827";43;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";4;23;"96;827";43;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";7;15;"96;827";43;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";7;7;"96;827";43;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";4;18;"96;827";43;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";4;17;"96;827";43;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";1;20;"96;838";61;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";5;32;"96;838";61;1;"Master's Degree";0;0;1;"bur";1
"cfrub";1;7;"96;838";61;1;"Master's Degree";0;0;1;"rub";1
"cibox";1;12;"96;838";61;1;"Master's Degree";0;1;1;"box";1
"cibur";1;23;"96;838";61;1;"Master's Degree";0;1;1;"bur";1
"cispe";1;27;"96;838";61;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";6;29;"96;838";61;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";1;11;"96;838";61;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;22;"96;838";61;1;"Master's Degree";1;0;0;"box";1
"fkbur";1;14;"96;838";61;1;"Master's Degree";1;0;0;"bur";1
"fkcar";5;30;"96;838";61;1;"Master's Degree";1;0;0;"car";1
"fkspe";1;9;"96;838";61;1;"Master's Degree";1;0;0;"spe";1
"fkswi";6;25;"96;838";61;1;"Master's Degree";1;0;0;"swi";1
"flboa";6;2;"96;838";61;1;"Master's Degree";0;0;0;"boa";0
"flcar";6;21;"96;838";61;1;"Master's Degree";0;0;0;"car";0
"flche";6;4;"96;838";61;1;"Master's Degree";0;0;0;"che";0
"flsha";7;28;"96;838";61;1;"Master's Degree";0;0;0;"sha";0
"flswi";6;6;"96;838";61;1;"Master's Degree";0;0;0;"swi";0
"ikbox";1;3;"96;838";61;1;"Master's Degree";1;1;0;"box";1
"ikbur";1;5;"96;838";61;1;"Master's Degree";1;1;0;"bur";1
"ikpon";1;1;"96;838";61;1;"Master's Degree";1;1;0;"pon";1
"ikshi";1;17;"96;838";61;1;"Master's Degree";1;1;0;"shi";1
"ikspe";1;19;"96;838";61;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;31;"96;838";61;1;"Master's Degree";0;1;0;"box";0
"ilche";7;13;"96;838";61;1;"Master's Degree";0;1;0;"che";0
"ilpon";1;10;"96;838";61;1;"Master's Degree";0;1;0;"pon";0
"ilsha";1;18;"96;838";61;1;"Master's Degree";0;1;0;"sha";0
"ilshi";6;26;"96;838";61;1;"Master's Degree";0;1;0;"shi";0
"ilswi";1;15;"96;838";61;1;"Master's Degree";0;1;0;"swi";0
"nfrub";1;16;"96;838";61;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";4;20;"96;839";36;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";7;32;"96;839";36;1;"Master's Degree";0;0;1;"bur";1
"cfrub";4;7;"96;839";36;1;"Master's Degree";0;0;1;"rub";1
"cibox";3;12;"96;839";36;1;"Master's Degree";0;1;1;"box";1
"cibur";4;23;"96;839";36;1;"Master's Degree";0;1;1;"bur";1
"cispe";4;27;"96;839";36;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";7;29;"96;839";36;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";4;11;"96;839";36;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;22;"96;839";36;1;"Master's Degree";1;0;0;"box";1
"fkbur";6;14;"96;839";36;1;"Master's Degree";1;0;0;"bur";1
"fkcar";5;30;"96;839";36;1;"Master's Degree";1;0;0;"car";1
"fkspe";4;9;"96;839";36;1;"Master's Degree";1;0;0;"spe";1
"fkswi";6;25;"96;839";36;1;"Master's Degree";1;0;0;"swi";1
"flboa";7;2;"96;839";36;1;"Master's Degree";0;0;0;"boa";0
"flcar";5;21;"96;839";36;1;"Master's Degree";0;0;0;"car";0
"flche";5;4;"96;839";36;1;"Master's Degree";0;0;0;"che";0
"flsha";7;28;"96;839";36;1;"Master's Degree";0;0;0;"sha";0
"flswi";7;6;"96;839";36;1;"Master's Degree";0;0;0;"swi";0
"ikbox";4;3;"96;839";36;1;"Master's Degree";1;1;0;"box";1
"ikbur";3;5;"96;839";36;1;"Master's Degree";1;1;0;"bur";1
"ikpon";7;1;"96;839";36;1;"Master's Degree";1;1;0;"pon";1
"ikshi";3;17;"96;839";36;1;"Master's Degree";1;1;0;"shi";1
"ikspe";5;19;"96;839";36;1;"Master's Degree";1;1;0;"spe";1
"ilbox";7;31;"96;839";36;1;"Master's Degree";0;1;0;"box";0
"ilche";3;13;"96;839";36;1;"Master's Degree";0;1;0;"che";0
"ilpon";6;10;"96;839";36;1;"Master's Degree";0;1;0;"pon";0
"ilsha";6;18;"96;839";36;1;"Master's Degree";0;1;0;"sha";0
"ilshi";7;26;"96;839";36;1;"Master's Degree";0;1;0;"shi";0
"ilswi";4;15;"96;839";36;1;"Master's Degree";0;1;0;"swi";0
"nfrub";4;16;"96;839";36;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";1;20;"96;841";28;1;"Bachelor's Degree";0;0;1;"aqu";1
"cfbur";1;32;"96;841";28;1;"Bachelor's Degree";0;0;1;"bur";1
"cfrub";1;7;"96;841";28;1;"Bachelor's Degree";0;0;1;"rub";1
"cibox";1;12;"96;841";28;1;"Bachelor's Degree";0;1;1;"box";1
"cibur";1;23;"96;841";28;1;"Bachelor's Degree";0;1;1;"bur";1
"cispe";1;27;"96;841";28;1;"Bachelor's Degree";0;1;1;"spe";1
"fkaqu";1;29;"96;841";28;1;"Bachelor's Degree";1;0;0;"aqu";1
"fkboa";1;11;"96;841";28;1;"Bachelor's Degree";1;0;0;"boa";1
"fkbox";1;22;"96;841";28;1;"Bachelor's Degree";1;0;0;"box";1
"fkbur";1;14;"96;841";28;1;"Bachelor's Degree";1;0;0;"bur";1
"fkcar";6;30;"96;841";28;1;"Bachelor's Degree";1;0;0;"car";1
"fkspe";1;9;"96;841";28;1;"Bachelor's Degree";1;0;0;"spe";1
"fkswi";1;25;"96;841";28;1;"Bachelor's Degree";1;0;0;"swi";1
"flboa";2;2;"96;841";28;1;"Bachelor's Degree";0;0;0;"boa";0
"flcar";6;21;"96;841";28;1;"Bachelor's Degree";0;0;0;"car";0
"flche";1;4;"96;841";28;1;"Bachelor's Degree";0;0;0;"che";0
"flsha";4;28;"96;841";28;1;"Bachelor's Degree";0;0;0;"sha";0
"flswi";1;6;"96;841";28;1;"Bachelor's Degree";0;0;0;"swi";0
"ikbox";1;3;"96;841";28;1;"Bachelor's Degree";1;1;0;"box";1
"ikbur";1;5;"96;841";28;1;"Bachelor's Degree";1;1;0;"bur";1
"ikpon";1;1;"96;841";28;1;"Bachelor's Degree";1;1;0;"pon";1
"ikshi";1;17;"96;841";28;1;"Bachelor's Degree";1;1;0;"shi";1
"ikspe";1;19;"96;841";28;1;"Bachelor's Degree";1;1;0;"spe";1
"ilbox";7;31;"96;841";28;1;"Bachelor's Degree";0;1;0;"box";0
"ilche";1;13;"96;841";28;1;"Bachelor's Degree";0;1;0;"che";0
"ilpon";1;10;"96;841";28;1;"Bachelor's Degree";0;1;0;"pon";0
"ilsha";1;18;"96;841";28;1;"Bachelor's Degree";0;1;0;"sha";0
"ilshi";4;26;"96;841";28;1;"Bachelor's Degree";0;1;0;"shi";0
"ilswi";1;15;"96;841";28;1;"Bachelor's Degree";0;1;0;"swi";0
"nfrub";1;16;"96;841";28;1;"Bachelor's Degree";1;0;0;"rub";1
"cfaqu";5;20;"96;842";32;1;"Master's Degree";0;0;1;"aqu";1
"cfbur";5;32;"96;842";32;1;"Master's Degree";0;0;1;"bur";1
"cfrub";6;7;"96;842";32;1;"Master's Degree";0;0;1;"rub";1
"cibox";5;12;"96;842";32;1;"Master's Degree";0;1;1;"box";1
"cibur";6;23;"96;842";32;1;"Master's Degree";0;1;1;"bur";1
"cispe";5;27;"96;842";32;1;"Master's Degree";0;1;1;"spe";1
"fkaqu";5;29;"96;842";32;1;"Master's Degree";1;0;0;"aqu";1
"fkboa";5;11;"96;842";32;1;"Master's Degree";1;0;0;"boa";1
"fkbox";6;22;"96;842";32;1;"Master's Degree";1;0;0;"box";1
"fkbur";4;14;"96;842";32;1;"Master's Degree";1;0;0;"bur";1
"fkcar";5;30;"96;842";32;1;"Master's Degree";1;0;0;"car";1
"fkspe";7;9;"96;842";32;1;"Master's Degree";1;0;0;"spe";1
"fkswi";6;25;"96;842";32;1;"Master's Degree";1;0;0;"swi";1
"flboa";7;2;"96;842";32;1;"Master's Degree";0;0;0;"boa";0
"flcar";5;21;"96;842";32;1;"Master's Degree";0;0;0;"car";0
"flche";5;4;"96;842";32;1;"Master's Degree";0;0;0;"che";0
"flsha";4;28;"96;842";32;1;"Master's Degree";0;0;0;"sha";0
"flswi";3;6;"96;842";32;1;"Master's Degree";0;0;0;"swi";0
"ikbox";7;3;"96;842";32;1;"Master's Degree";1;1;0;"box";1
"ikbur";4;5;"96;842";32;1;"Master's Degree";1;1;0;"bur";1
"ikpon";1;1;"96;842";32;1;"Master's Degree";1;1;0;"pon";1
"ikshi";7;17;"96;842";32;1;"Master's Degree";1;1;0;"shi";1
"ikspe";5;19;"96;842";32;1;"Master's Degree";1;1;0;"spe";1
"ilbox";6;31;"96;842";32;1;"Master's Degree";0;1;0;"box";0
"ilche";5;13;"96;842";32;1;"Master's Degree";0;1;0;"che";0
"ilpon";7;10;"96;842";32;1;"Master's Degree";0;1;0;"pon";0
"ilsha";5;18;"96;842";32;1;"Master's Degree";0;1;0;"sha";0
"ilshi";2;26;"96;842";32;1;"Master's Degree";0;1;0;"shi";0
"ilswi";4;15;"96;842";32;1;"Master's Degree";0;1;0;"swi";0
"nfrub";5;16;"96;842";32;1;"Master's Degree";1;0;0;"rub";1
"cfaqu";6;2;"96;859";54;1;"Some College";0;0;1;"aqu";1
"cfbur";7;31;"96;859";54;1;"Some College";0;0;1;"bur";1
"cfrub";7;16;"96;859";54;1;"Some College";0;0;1;"rub";1
"cibox";1;32;"96;859";54;1;"Some College";0;1;1;"box";1
"cibur";6;4;"96;859";54;1;"Some College";0;1;1;"bur";1
"cispe";1;9;"96;859";54;1;"Some College";0;1;1;"spe";1
"fkaqu";6;29;"96;859";54;1;"Some College";1;0;0;"aqu";1
"fkboa";6;12;"96;859";54;1;"Some College";1;0;0;"boa";1
"fkbox";5;23;"96;859";54;1;"Some College";1;0;0;"box";1
"fkbur";7;22;"96;859";54;1;"Some College";1;0;0;"bur";1
"fkcar";7;27;"96;859";54;1;"Some College";1;0;0;"car";1
"fkspe";1;19;"96;859";54;1;"Some College";1;0;0;"spe";1
"fkswi";7;14;"96;859";54;1;"Some College";1;0;0;"swi";1
"flboa";1;3;"96;859";54;1;"Some College";0;0;0;"boa";0
"flcar";7;18;"96;859";54;1;"Some College";0;0;0;"car";0
"flche";6;15;"96;859";54;1;"Some College";0;0;0;"che";0
"flsha";2;30;"96;859";54;1;"Some College";0;0;0;"sha";0
"flswi";7;5;"96;859";54;1;"Some College";0;0;0;"swi";0
"ikbox";5;1;"96;859";54;1;"Some 
Download .txt
gitextract_mnlt0r6o/

├── README.md
├── data/
│   ├── Howell1.csv
│   ├── NWOGrants.csv
│   ├── Primates301.csv
│   ├── Trolley.csv
│   ├── Wines2012.csv
│   ├── bangladesh.csv
│   ├── foxes.csv
│   ├── happiness.csv
│   └── reedfrogs.csv
└── notebooks/
    └── pymc3/
        ├── rethink_stats_pymc3_w01.ipynb
        ├── rethink_stats_pymc3_w02.ipynb
        ├── rethink_stats_pymc3_w03.ipynb
        ├── rethink_stats_pymc3_w04.ipynb
        ├── rethink_stats_pymc3_w05.ipynb
        ├── rethink_stats_pymc3_w06.ipynb
        ├── rethink_stats_pymc3_w07.ipynb
        ├── rethink_stats_pymc3_w08.ipynb
        ├── rethink_stats_pymc3_w09.ipynb
        └── rethink_stats_pymc3_w10.ipynb
Condensed preview — 20 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (8,446K chars).
[
  {
    "path": "README.md",
    "chars": 7097,
    "preview": "Statistical Rethinking: A Bayesian Course Using python and pymc3\n===============\n\n## Intro\n\nHello everybody!\n\nThis repo "
  },
  {
    "path": "data/Howell1.csv",
    "chars": 12205,
    "preview": "\"height\";\"weight\";\"age\";\"male\"\n151.765;47.8256065;63;1\n139.7;36.4858065;63;0\n136.525;31.864838;65;0\n156.845;53.0419145;4"
  },
  {
    "path": "data/NWOGrants.csv",
    "chars": 479,
    "preview": "discipline;gender;applications;awards\nChemical sciences;m;83;22\nChemical sciences;f;39;10\nPhysical sciences;m;135;26\nPhy"
  },
  {
    "path": "data/Primates301.csv",
    "chars": 28965,
    "preview": "\"name\";\"genus\";\"species\";\"subspecies\";\"spp_id\";\"genus_id\";\"social_learning\";\"research_effort\";\"brain\";\"body\";\"group_size"
  },
  {
    "path": "data/Trolley.csv",
    "chars": 587671,
    "preview": "\"case\";\"response\";\"order\";\"id\";\"age\";\"male\";\"edu\";\"action\";\"intention\";\"contact\";\"story\";\"action2\"\n\"cfaqu\";4;2;\"96;434\";"
  },
  {
    "path": "data/Wines2012.csv",
    "chars": 6377,
    "preview": "\"judge\";\"flight\";\"wine\";\"score\";\"wine.amer\";\"judge.amer\"\n\"Jean-M Cardebat\";\"white\";\"A1\";10;1;0\n\"Jean-M Cardebat\";\"white\""
  },
  {
    "path": "data/bangladesh.csv",
    "chars": 38675,
    "preview": "\"woman\";\"district\";\"use.contraception\";\"living.children\";\"age.centered\";\"urban\"\n1;1;0;4;18.44;1\n2;1;0;1;-5.5599;1\n3;1;0;"
  },
  {
    "path": "data/foxes.csv",
    "chars": 2323,
    "preview": "\"group\";\"avgfood\";\"groupsize\";\"area\";\"weight\"\n1;0.37;2;1.09;5.02\n1;0.37;2;1.09;2.84\n2;0.53;2;2.05;5.33\n2;0.53;2;2.05;6.0"
  },
  {
    "path": "data/happiness.csv",
    "chars": 27798,
    "preview": "\"age\",\"married\",\"happiness\"\n65,0,-2\n65,0,-1.78947368421053\n65,1,-1.57894736842105\n65,0,-1.36842105263158\n65,0,-1.1578947"
  },
  {
    "path": "data/reedfrogs.csv",
    "chars": 1326,
    "preview": "\"density\";\"pred\";\"size\";\"surv\";\"propsurv\"\n10;\"no\";\"big\";9;0.9\n10;\"no\";\"big\";10;1\n10;\"no\";\"big\";7;0.7\n10;\"no\";\"big\";10;1\n"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w01.ipynb",
    "chars": 740926,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w03.ipynb",
    "chars": 1778252,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in P"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w04.ipynb",
    "chars": 521614,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in P"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w05.ipynb",
    "chars": 848255,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w06.ipynb",
    "chars": 1082342,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w07.ipynb",
    "chars": 47055,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w08.ipynb",
    "chars": 138301,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w09.ipynb",
    "chars": 111878,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  },
  {
    "path": "notebooks/pymc3/rethink_stats_pymc3_w10.ipynb",
    "chars": 2032108,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Rethinking Statistics course in p"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the gbosquechacon/statrethink_course_in_pymc3 GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 20 files (18.0 MB), approximately 2.0M tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!