From 094201eeb46da0b3e41bc3721e00bdf85c1d3bdb Mon Sep 17 00:00:00 2001 From: Irina Levit Date: Wed, 28 Jan 2026 17:25:10 -0500 Subject: [PATCH] eohi3 var creation and recode scripts --- .gitignore | 3 +- eohi3/00 - var creation.md | 315 ++++++++ eohi3/datap 04 - combined vars.r | 343 ++++++++ eohi3/datap 05 - ehi vars.r | 187 +++++ eohi3/datap 06 - mean vars.r | 225 ++++++ eohi3/datap 07 - scales and recodes.r | 462 +++++++++++ eohi3/eohi3.csv | 1046 ++++++++++++------------- 7 files changed, 2057 insertions(+), 524 deletions(-) create mode 100644 eohi3/00 - var creation.md create mode 100644 eohi3/datap 04 - combined vars.r create mode 100644 eohi3/datap 05 - ehi vars.r create mode 100644 eohi3/datap 06 - mean vars.r create mode 100644 eohi3/datap 07 - scales and recodes.r diff --git a/.gitignore b/.gitignore index c138f46..791e731 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.history/ \ No newline at end of file +.history/ +eohi3_2.csv \ No newline at end of file diff --git a/eohi3/00 - var creation.md b/eohi3/00 - var creation.md new file mode 100644 index 0000000..738b6c2 --- /dev/null +++ b/eohi3/00 - var creation.md @@ -0,0 +1,315 @@ +# Variable Creation Scripts Documentation + +This document describes the data processing scripts used to create derived variables in the EOHI3 dataset. Each script performs specific transformations and should be run in sequence. + +--- + +## datap 04 - combined vars.r + +### Goal +Combine self-perspective and other-perspective variables into single columns. For each row, values exist in either the self-perspective variables OR the other-perspective variables, never both. + +### Transformations + +#### Past Variables (p5 = past) +Combines `self[VAL/PERS/PREF]_p5_[string]` and `other[VAL/PERS/PREF]_p5_[string]` into `past_[val/pers/pref]_[string]`. + +**Source Variables:** +- **Values (VAL)**: `selfVAL_p5_trad`, `otherVAL_p5_trad`, `selfVAL_p5_autonomy`, `otherVAL_p5_autonomy`, `selfVAL_p5_personal`, `otherVAL_p5_personal`, `selfVAL_p5_justice`, `otherVAL_p5_justice`, `selfVAL_p5_close`, `otherVAL_p5_close`, `selfVAL_p5_connect`, `otherVAL_p5_connect`, `selfVAL_p5_dgen`, `otherVAL_p5_dgen` +- **Personality (PERS)**: `selfPERS_p5_open`, `otherPESR_p5_open` (note: typo in source data), `selfPERS_p5_goal`, `otherPERS_p5_goal`, `selfPERS_p5_social`, `otherPERS_p5_social`, `selfPERS_p5_agree`, `otherPERS_p5_agree`, `selfPERS_p5_stress`, `otherPERS_p5_stress`, `selfPERS_p5_dgen`, `otherPERS_p5_dgen` +- **Preferences (PREF)**: `selfPREF_p5_hobbies`, `otherPREF_p5_hobbies`, `selfPREF_p5_music`, `otherPREF_p5_music`, `selfPREF_p5_dress`, `otherPREF_p5_dress`, `selfPREF_p5_exer`, `otherPREF_p5_exer`, `selfPREF_p5_food`, `otherPREF_p5_food`, `selfPREF_p5_friends`, `otherPREF_p5_friends`, `selfPREF_p5_dgen`, `otherPREF_p5_dgen` + +**Target Variables:** +- `past_val_trad`, `past_val_autonomy`, `past_val_personal`, `past_val_justice`, `past_val_close`, `past_val_connect`, `past_val_DGEN` +- `past_pers_open`, `past_pers_goal`, `past_pers_social`, `past_pers_agree`, `past_pers_stress`, `past_pers_DGEN` +- `past_pref_hobbies`, `past_pref_music`, `past_pref_dress`, `past_pref_exer`, `past_pref_food`, `past_pref_friends`, `past_pref_DGEN` + +#### Future Variables (f5 = future) +Combines `self[VAL/PERS/PREF]_f5_[string]` and `other[VAL/PERS/PREF]_f5_[string]` into `fut_[val/pers/pref]_[string]`. + +**Source Variables:** +- **Values (VAL)**: `selfVAL_f5_trad`, `otherVAL_f5_trad`, `selfVAL_f5_autonomy`, `otherVAL_f5_autonomy`, `selfVAL_f5_personal`, `otherVAL_f5_personal`, `selfVAL_f5_justice`, `otherVAL_f5_justice`, `selfVAL_f5_close`, `otherVAL_f5_close`, `selfVAL_f5_connect`, `otherVAL_f5_connect`, `selfVAL_f5_dgen`, `otherVAL_f5_dgen` +- **Personality (PERS)**: `selfPERS_f5_open`, `otherPERS_f5_open`, `selfPERS_f5_goal`, `otherPERS_f5_goal`, `selfPERS_f5_social`, `otherPERS_f5_social`, `selfPERS_f5_agree`, `otherPERS_f5_agree`, `selfPERS_f5_stress`, `otherPERS_f5_stress`, `selfPERS_f5_dgen`, `otherPERS_f5_dgen` +- **Preferences (PREF)**: `selfPREF_f5_hobbies`, `otherPREF_f5_hobbies`, `selfPREF_f5_music`, `otherPREF_f5_music`, `selfPREF_f5_dress`, `otherPREF_f5_dress`, `selfPREF_f5_exer`, `otherPREF_f5_exer`, `selfPREF_f5_food`, `otherPREF_f5_food`, `selfPREF_f5_friends`, `otherPREF_f5_friends`, `selfPREF_f5_dgen`, `otherPREF_f5_dgen` + +**Target Variables:** +- `fut_val_trad`, `fut_val_autonomy`, `fut_val_personal`, `fut_val_justice`, `fut_val_close`, `fut_val_connect`, `fut_val_DGEN` +- `fut_pers_open`, `fut_pers_goal`, `fut_pers_social`, `fut_pers_agree`, `fut_pers_stress`, `fut_pers_DGEN` +- `fut_pref_hobbies`, `fut_pref_music`, `fut_pref_dress`, `fut_pref_exer`, `fut_pref_food`, `fut_pref_friends`, `fut_pref_DGEN` + +### Logic +- Uses self value if present (not empty/NA), otherwise uses other value +- If both are empty/NA, result is NA +- Assumes mutual exclusivity: each row has values in either self OR other, never both + +### Validation Checks +1. **Conflict Check**: Verifies no rows have values in both self and other for the same variable +2. **Coverage Check**: Verifies combined columns have expected number of non-empty values (self_count + other_count = combined_count) +3. **Sample Row Check**: Shows examples of how values were combined + +### Output +- Updates existing target columns in `eohi3.csv` +- Creates backup `eohi3_2.csv` before processing + +--- + +## datap 05 - ehi vars.r + +### Goal +Calculate EHI (End of History Illusion) variables as the difference between past and future variables. Each EHI variable represents the change from past to future perspective. + +### Transformations + +**Calculation Formula:** `ehi_[pref/pers/val]_[string] = past_[pref/pers/val]_[string] - fut_[pref/pers/val]_[string]` + +#### EHI Variables Created + +**EHI Preferences:** +- `ehi_pref_hobbies` = `past_pref_hobbies` - `fut_pref_hobbies` +- `ehi_pref_music` = `past_pref_music` - `fut_pref_music` +- `ehi_pref_dress` = `past_pref_dress` - `fut_pref_dress` +- `ehi_pref_exer` = `past_pref_exer` - `fut_pref_exer` +- `ehi_pref_food` = `past_pref_food` - `fut_pref_food` +- `ehi_pref_friends` = `past_pref_friends` - `fut_pref_friends` +- `ehi_pref_DGEN` = `past_pref_DGEN` - `fut_pref_DGEN` + +**EHI Personality:** +- `ehi_pers_open` = `past_pers_open` - `fut_pers_open` +- `ehi_pers_goal` = `past_pers_goal` - `fut_pers_goal` +- `ehi_pers_social` = `past_pers_social` - `fut_pers_social` +- `ehi_pers_agree` = `past_pers_agree` - `fut_pers_agree` +- `ehi_pers_stress` = `past_pers_stress` - `fut_pers_stress` +- `ehi_pers_DGEN` = `past_pers_DGEN` - `fut_pers_DGEN` + +**EHI Values:** +- `ehi_val_trad` = `past_val_trad` - `fut_val_trad` +- `ehi_val_autonomy` = `past_val_autonomy` - `fut_val_autonomy` +- `ehi_val_personal` = `past_val_personal` - `fut_val_personal` +- `ehi_val_justice` = `past_val_justice` - `fut_val_justice` +- `ehi_val_close` = `past_val_close` - `fut_val_close` +- `ehi_val_connect` = `past_val_connect` - `fut_val_connect` +- `ehi_val_DGEN` = `past_val_DGEN` - `fut_val_DGEN` + +### Logic +- Converts source variables to numeric (handling empty strings and NA) +- Calculates difference: past - future +- Result can be positive (past > future), negative (past < future), or zero (past = future) + +### Validation Checks +1. **Variable Existence**: Checks that all target variables exist before processing +2. **Source Variable Check**: Verifies source columns exist +3. **Random Row Validation**: Checks 5 random rows showing source values, target value, expected calculation, and match status + +### Output +- Updates existing target columns in `eohi3.csv` +- Creates backup `eohi3_2.csv` before processing + +--- + +## datap 06 - mean vars.r + +### Goal +Calculate mean variables for various scales by averaging multiple related variables. Creates both domain-specific means and overall composite means. + +### Transformations + +#### Domain-Specific Means + +**Past Preferences MEAN:** +- **Source Variables**: `past_pref_hobbies`, `past_pref_music`, `past_pref_dress`, `past_pref_exer`, `past_pref_food`, `past_pref_friends` (6 variables) +- **Target Variable**: `past_pref_MEAN` + +**Future Preferences MEAN:** +- **Source Variables**: `fut_pref_hobbies`, `fut_pref_music`, `fut_pref_dress`, `fut_pref_exer`, `fut_pref_food`, `fut_pref_friends` (6 variables) +- **Target Variable**: `fut_pref_MEAN` + +**Past Personality MEAN:** +- **Source Variables**: `past_pers_open`, `past_pers_goal`, `past_pers_social`, `past_pers_agree`, `past_pers_stress` (5 variables) +- **Target Variable**: `past_pers_MEAN` + +**Future Personality MEAN:** +- **Source Variables**: `fut_pers_open`, `fut_pers_goal`, `fut_pers_social`, `fut_pers_agree`, `fut_pers_stress` (5 variables) +- **Target Variable**: `fut_pers_MEAN` + +**Past Values MEAN:** +- **Source Variables**: `past_val_trad`, `past_val_autonomy`, `past_val_personal`, `past_val_justice`, `past_val_close`, `past_val_connect` (6 variables) +- **Target Variable**: `past_val_MEAN` + +**Future Values MEAN:** +- **Source Variables**: `fut_val_trad`, `fut_val_autonomy`, `fut_val_personal`, `fut_val_justice`, `fut_val_close`, `fut_val_connect` (6 variables) +- **Target Variable**: `fut_val_MEAN` + +**EHI Preferences MEAN:** +- **Source Variables**: `ehi_pref_hobbies`, `ehi_pref_music`, `ehi_pref_dress`, `ehi_pref_exer`, `ehi_pref_food`, `ehi_pref_friends` (6 variables) +- **Target Variable**: `ehi_pref_MEAN` + +**EHI Personality MEAN:** +- **Source Variables**: `ehi_pers_open`, `ehi_pers_goal`, `ehi_pers_social`, `ehi_pers_agree`, `ehi_pers_stress` (5 variables) +- **Target Variable**: `ehi_pers_MEAN` + +**EHI Values MEAN:** +- **Source Variables**: `ehi_val_trad`, `ehi_val_autonomy`, `ehi_val_personal`, `ehi_val_justice`, `ehi_val_close`, `ehi_val_connect` (6 variables) +- **Target Variable**: `ehi_val_MEAN` + +#### Composite Means + +**EHI Domain-Specific Mean:** +- **Source Variables**: `ehi_pref_MEAN`, `ehi_pers_MEAN`, `ehi_val_MEAN` (3 variables) +- **Target Variable**: `ehiDS_mean` + +**EHI Domain-General Mean:** +- **Source Variables**: `ehi_pref_DGEN`, `ehi_pers_DGEN`, `ehi_val_DGEN` (3 variables) +- **Target Variable**: `ehiDGEN_mean` + +### Logic +- Converts source variables to numeric (handling empty strings and NA) +- Calculates row means using `rowMeans()` with `na.rm = TRUE` (ignores NA values) +- Each mean represents the average of non-missing values for that row + +### Validation Checks +1. **Variable Existence**: Uses `setdiff()` to check source and target variables exist +2. **Random Row Validation**: Checks 5 random rows showing source variable names, source values, target value, expected mean calculation, and match status + +### Output +- Updates existing target columns in `eohi3.csv` +- Creates backup `eohi3_2.csv` before processing + +--- + +## datap 07 - scales and recodes.r + +### Goal +Recode various variables and calculate scale scores. Includes recoding categorical variables, processing cognitive reflection test (CRT) items, calculating ICAR scores, and recoding demographic variables. + +### Transformations + +#### 1. Recode other_length2 → other_length +**Source Variable**: `other_length2` +**Target Variable**: `other_length` + +**Recoding Rules:** +- Values 5-9 → "5-9" +- Values 10-14 → "10-14" +- Values 15-19 → "15-19" +- Value "20+" → "20+" (handled as special case) +- Empty strings → preserved as empty string (not NA) +- NA → NA + +#### 2. Recode other_like2 → other_like +**Source Variable**: `other_like2` +**Target Variable**: `other_like` + +**Recoding Rules:** +- "Dislike a great deal" → "-2" +- "Dislike somewhat" → "-1" +- "Neither like nor dislike" → "0" +- "Like somewhat" → "1" +- "Like a great deal" → "2" +- Empty strings → preserved as empty string (not NA) +- NA → NA + +#### 3. Calculate aot_total (Actively Open-Minded Thinking) +**Source Variables**: `aot01`, `aot02`, `aot03`, `aot04_r`, `aot05_r`, `aot06_r`, `aot07_r`, `aot08` +**Target Variable**: `aot_total` + +**Calculation:** +1. Reverse code `aot04_r`, `aot05_r`, `aot06_r`, `aot07_r` by multiplying by -1 +2. Calculate mean of all 8 variables: 4 original (`aot01`, `aot02`, `aot03`, `aot08`) + 4 reversed (`aot04_r`, `aot05_r`, `aot06_r`, `aot07_r`) + +#### 4. Process CRT Questions → crt_correct and crt_int +**Source Variables**: `crt01`, `crt02`, `crt03` +**Target Variables**: `crt_correct`, `crt_int` + +**CRT01:** +- "5 cents" → `crt_correct` = 1, `crt_int` = 0 +- "10 cents" → `crt_correct` = 0, `crt_int` = 1 +- Other values → `crt_correct` = 0, `crt_int` = 0 + +**CRT02:** +- "5 minutes" → `crt_correct` += 1, `crt_int` unchanged +- "100 minutes" → `crt_correct` unchanged, `crt_int` += 1 +- Other values → both unchanged + +**CRT03:** +- "47 days" → `crt_correct` += 1, `crt_int` unchanged +- "24 days" → `crt_correct` unchanged, `crt_int` += 1 +- Other values → both unchanged + +**Note**: `crt_correct` and `crt_int` are cumulative across all 3 questions (range: 0-3) + +#### 5. Calculate icar_verbal +**Source Variables**: `verbal01`, `verbal02`, `verbal03`, `verbal04`, `verbal05` +**Target Variable**: `icar_verbal` + +**Correct Answers:** +- `verbal01` = "5" +- `verbal02` = "8" +- `verbal03` = "It's impossible to tell" +- `verbal04` = "47" +- `verbal05` = "Sunday" + +**Calculation**: Proportion correct = (number of correct responses) / 5 + +#### 6. Calculate icar_matrix +**Source Variables**: `matrix01`, `matrix02`, `matrix03`, `matrix04`, `matrix05` +**Target Variable**: `icar_matrix` + +**Correct Answers:** +- `matrix01` = "D" +- `matrix02` = "E" +- `matrix03` = "B" +- `matrix04` = "B" +- `matrix05` = "D" + +**Calculation**: Proportion correct = (number of correct responses) / 5 + +#### 7. Calculate icar_total +**Source Variables**: `verbal01`-`verbal05`, `matrix01`-`matrix05` (10 variables total) +**Target Variable**: `icar_total` + +**Calculation**: Proportion correct across all 10 items = (number of correct responses) / 10 + +#### 8. Recode demo_sex → sex +**Source Variable**: `demo_sex` +**Target Variable**: `sex` + +**Recoding Rules:** +- "Male" (case-insensitive) → 0 +- "Female" (case-insensitive) → 1 +- Other values (e.g., "Prefer not to say") → 2 +- Empty/NA → NA + +#### 9. Recode demo_edu → education +**Source Variable**: `demo_edu` +**Target Variable**: `education` (ordered factor) + +**Recoding Rules:** +- "High School (or equivalent)" or "Trade School" → "HS_TS" +- "College Diploma/Certificate" or "University - Undergraduate" → "C_Ug" +- "University - Graduate (Masters)" or "University - PhD" or "Professional Degree (ex. JD/MD)" → "grad_prof" +- Empty/NA → NA + +**Factor Levels**: `HS_TS` < `C_Ug` < `grad_prof` (ordered) + +### Validation Checks +Each transformation includes: +1. **Variable Existence Check**: Verifies source and target variables exist +2. **Value Check**: Verifies expected values exist in source variables (warns about unexpected values) +3. **Post-Processing Verification**: Checks 5 random rows showing source values, target values, and calculations + +### Output +- Updates existing target columns in `eohi3.csv` +- Creates backup `eohi3_2.csv` before processing + +--- + +## Script Execution Order + +These scripts should be run in the following order: + +1. **datap 04 - combined vars.r** - Combines self/other variables into past/future variables +2. **datap 05 - ehi vars.r** - Calculates EHI variables from past/future differences +3. **datap 06 - mean vars.r** - Calculates mean variables for scales +4. **datap 07 - scales and recodes.r** - Recodes variables and calculates scale scores + +Each script creates a backup (`eohi3_2.csv`) before processing and includes validation checks to ensure transformations are performed correctly. diff --git a/eohi3/datap 04 - combined vars.r b/eohi3/datap 04 - combined vars.r new file mode 100644 index 0000000..4e30181 --- /dev/null +++ b/eohi3/datap 04 - combined vars.r @@ -0,0 +1,343 @@ +library(dplyr) + +setwd("/home/ladmin/Documents/DND/EOHI/eohi3") + +# Read the data (with check.names=FALSE to preserve original column names) +# Keep empty cells as empty strings, not NA +# Only convert the literal string "NA" to NA, not empty strings +df <- read.csv("eohi3.csv", stringsAsFactors = FALSE, check.names = FALSE, na.strings = "NA") + +# ============================================================================= +# 1. CREATE BACKUP +# ============================================================================= +#file.copy("eohi3.csv", "eohi3_2.csv", overwrite = TRUE) + +# ============================================================================= +# 2. DEFINE VARIABLE MAPPINGS +# ============================================================================= + +# Past variables mapping: [self/other][VAL/PERS/PREF]_p5_[string] -> past_[val/pers/pref]_[string] +past_mappings <- list( + # Values (VAL) + "past_val_trad" = c("selfVAL_p5_trad", "otherVAL_p5_trad"), + "past_val_autonomy" = c("selfVAL_p5_autonomy", "otherVAL_p5_autonomy"), + "past_val_personal" = c("selfVAL_p5_personal", "otherVAL_p5_personal"), + "past_val_justice" = c("selfVAL_p5_justice", "otherVAL_p5_justice"), + "past_val_close" = c("selfVAL_p5_close", "otherVAL_p5_close"), + "past_val_connect" = c("selfVAL_p5_connect", "otherVAL_p5_connect"), + "past_val_DGEN" = c("selfVAL_p5_dgen", "otherVAL_p5_dgen"), + + # Personality (PERS) + "past_pers_open" = c("selfPERS_p5_open", "otherPERS_p5_open"), + "past_pers_goal" = c("selfPERS_p5_goal", "otherPERS_p5_goal"), + "past_pers_social" = c("selfPERS_p5_social", "otherPERS_p5_social"), + "past_pers_agree" = c("selfPERS_p5_agree", "otherPERS_p5_agree"), + "past_pers_stress" = c("selfPERS_p5_stress", "otherPERS_p5_stress"), + "past_pers_DGEN" = c("selfPERS_p5_dgen", "otherPERS_p5_dgen"), + + # Preferences (PREF) + "past_pref_hobbies" = c("selfPREF_p5_hobbies", "otherPREF_p5_hobbies"), + "past_pref_music" = c("selfPREF_p5_music", "otherPREF_p5_music"), + "past_pref_dress" = c("selfPREF_p5_dress", "otherPREF_p5_dress"), + "past_pref_exer" = c("selfPREF_p5_exer", "otherPREF_p5_exer"), + "past_pref_food" = c("selfPREF_p5_food", "otherPREF_p5_food"), + "past_pref_friends" = c("selfPREF_p5_friends", "otherPREF_p5_friends"), + "past_pref_DGEN" = c("selfPREF_p5_dgen", "otherPREF_p5_dgen") +) + +# Future variables mapping: [self/other][VAL/PERS/PREF]_f5_[string] -> fut_[val/pers/pref]_[string] +future_mappings <- list( + # Values (VAL) + "fut_val_trad" = c("selfVAL_f5_trad", "otherVAL_f5_trad"), + "fut_val_autonomy" = c("selfVAL_f5_autonomy", "otherVAL_f5_autonomy"), + "fut_val_personal" = c("selfVAL_f5_personal", "otherVAL_f5_personal"), + "fut_val_justice" = c("selfVAL_f5_justice", "otherVAL_f5_justice"), + "fut_val_close" = c("selfVAL_f5_close", "otherVAL_f5_close"), + "fut_val_connect" = c("selfVAL_f5_connect", "otherVAL_f5_connect"), + "fut_val_DGEN" = c("selfVAL_f5_dgen", "otherVAL_f5_dgen"), + + # Personality (PERS) + "fut_pers_open" = c("selfPERS_f5_open", "otherPERS_f5_open"), + "fut_pers_goal" = c("selfPERS_f5_goal", "otherPERS_f5_goal"), + "fut_pers_social" = c("selfPERS_f5_social", "otherPERS_f5_social"), + "fut_pers_agree" = c("selfPERS_f5_agree", "otherPERS_f5_agree"), + "fut_pers_stress" = c("selfPERS_f5_stress", "otherPERS_f5_stress"), + "fut_pers_DGEN" = c("selfPERS_f5_dgen", "otherPERS_f5_dgen"), + + # Preferences (PREF) + "fut_pref_hobbies" = c("selfPREF_f5_hobbies", "otherPREF_f5_hobbies"), + "fut_pref_music" = c("selfPREF_f5_music", "otherPREF_f5_music"), + "fut_pref_dress" = c("selfPREF_f5_dress", "otherPREF_f5_dress"), + "fut_pref_exer" = c("selfPREF_f5_exer", "otherPREF_f5_exer"), + "fut_pref_food" = c("selfPREF_f5_food", "otherPREF_f5_food"), + "fut_pref_friends" = c("selfPREF_f5_friends", "otherPREF_f5_friends"), + "fut_pref_DGEN" = c("selfPREF_f5_dgen", "otherPREF_f5_dgen") +) + +# ============================================================================= +# 3. COMBINE VARIABLES +# ============================================================================= + +# Function to combine self and other variables +# For each row, values exist in either self OR other, never both +# NOTE: Column existence should be checked before calling this function +combine_vars <- function(df, self_col, other_col) { + # Safety check: if columns don't exist, return appropriate fallback + if (!self_col %in% names(df)) { + stop(paste("ERROR: Column", self_col, "not found. This should have been caught earlier.")) + } + if (!other_col %in% names(df)) { + stop(paste("ERROR: Column", other_col, "not found. This should have been caught earlier.")) + } + + # Combine: use self value if not empty/NA, otherwise use other value + # Handle both NA and empty strings + result <- ifelse( + !is.na(df[[self_col]]) & df[[self_col]] != "", + df[[self_col]], + ifelse( + !is.na(df[[other_col]]) & df[[other_col]] != "", + df[[other_col]], + NA + ) + ) + + return(result) +} + +# Apply past mappings +cat("\nCombining past variables...\n") +missing_cols <- list() +for (new_col in names(past_mappings)) { + self_col <- past_mappings[[new_col]][1] + other_col <- past_mappings[[new_col]][2] + + # Check if all required columns exist + missing <- c() + if (!new_col %in% names(df)) { + missing <- c(missing, paste("target:", new_col)) + } + if (!self_col %in% names(df)) { + missing <- c(missing, paste("self:", self_col)) + } + if (!other_col %in% names(df)) { + missing <- c(missing, paste("other:", other_col)) + } + + if (length(missing) > 0) { + missing_cols[[new_col]] <- missing + warning(paste("Skipping", new_col, "- missing columns:", paste(missing, collapse = ", "))) + next + } + + # All columns exist, proceed with combination + df[[new_col]] <- combine_vars(df, self_col, other_col) + cat(paste(" Updated:", new_col, "\n")) +} + +# Report any missing columns +if (length(missing_cols) > 0) { + cat("\n⚠ Missing columns detected in PAST variables:\n") + for (var in names(missing_cols)) { + cat(paste(" ", var, ":", paste(missing_cols[[var]], collapse = ", "), "\n")) + } +} + +# Apply future mappings +cat("\nCombining future variables...\n") +missing_cols_future <- list() +for (new_col in names(future_mappings)) { + self_col <- future_mappings[[new_col]][1] + other_col <- future_mappings[[new_col]][2] + + # Check if all required columns exist + missing <- c() + if (!new_col %in% names(df)) { + missing <- c(missing, paste("target:", new_col)) + } + if (!self_col %in% names(df)) { + missing <- c(missing, paste("self:", self_col)) + } + if (!other_col %in% names(df)) { + missing <- c(missing, paste("other:", other_col)) + } + + if (length(missing) > 0) { + missing_cols_future[[new_col]] <- missing + warning(paste("Skipping", new_col, "- missing columns:", paste(missing, collapse = ", "))) + next + } + + # All columns exist, proceed with combination + df[[new_col]] <- combine_vars(df, self_col, other_col) + cat(paste(" Updated:", new_col, "\n")) +} + +# Report any missing columns +if (length(missing_cols_future) > 0) { + cat("\n⚠ Missing columns detected in FUTURE variables:\n") + for (var in names(missing_cols_future)) { + cat(paste(" ", var, ":", paste(missing_cols_future[[var]], collapse = ", "), "\n")) + } +} + +# ============================================================================= +# 4. VALIDATION CHECKS +# ============================================================================= + +cat("\n=== VALIDATION CHECKS ===\n\n") + +# Check 1: Ensure no row has values in both self and other for the same variable +check_conflicts <- function(df, mappings) { + conflicts <- data.frame() + + for (new_col in names(mappings)) { + self_col <- mappings[[new_col]][1] + other_col <- mappings[[new_col]][2] + + if (self_col %in% names(df) && other_col %in% names(df)) { + # Find rows where both self and other have non-empty values + both_filled <- !is.na(df[[self_col]]) & df[[self_col]] != "" & + !is.na(df[[other_col]]) & df[[other_col]] != "" + + if (any(both_filled, na.rm = TRUE)) { + conflict_rows <- which(both_filled) + conflicts <- rbind(conflicts, data.frame( + variable = new_col, + self_col = self_col, + other_col = other_col, + n_conflicts = length(conflict_rows), + example_rows = paste(head(conflict_rows, 5), collapse = ", ") + )) + } + } + } + + return(conflicts) +} + +past_conflicts <- check_conflicts(df, past_mappings) +future_conflicts <- check_conflicts(df, future_mappings) + +if (nrow(past_conflicts) > 0) { + cat("WARNING: Found conflicts in PAST variables (both self and other have values):\n") + print(past_conflicts) +} else { + cat("✓ No conflicts found in PAST variables\n") +} + +if (nrow(future_conflicts) > 0) { + cat("\nWARNING: Found conflicts in FUTURE variables (both self and other have values):\n") + print(future_conflicts) +} else { + cat("✓ No conflicts found in FUTURE variables\n") +} + +# Check 2: Verify that combined columns have values where expected +check_coverage <- function(df, mappings) { + coverage <- data.frame() + + for (new_col in names(mappings)) { + self_col <- mappings[[new_col]][1] + other_col <- mappings[[new_col]][2] + + # Check if columns exist before counting + self_exists <- self_col %in% names(df) + other_exists <- other_col %in% names(df) + target_exists <- new_col %in% names(df) + + # Count non-empty values in original columns (only if they exist) + self_count <- if (self_exists) { + sum(!is.na(df[[self_col]]) & df[[self_col]] != "", na.rm = TRUE) + } else { + NA + } + + other_count <- if (other_exists) { + sum(!is.na(df[[other_col]]) & df[[other_col]] != "", na.rm = TRUE) + } else { + NA + } + + combined_count <- if (target_exists) { + sum(!is.na(df[[new_col]]) & df[[new_col]] != "", na.rm = TRUE) + } else { + NA + } + + # Combined should equal sum of self and other (since they don't overlap) + expected_count <- if (!is.na(self_count) && !is.na(other_count)) { + self_count + other_count + } else { + NA + } + + match <- if (!is.na(combined_count) && !is.na(expected_count)) { + combined_count == expected_count + } else { + NA + } + + coverage <- rbind(coverage, data.frame( + variable = new_col, + self_non_empty = self_count, + other_non_empty = other_count, + combined_non_empty = combined_count, + expected_non_empty = expected_count, + match = match + )) + } + + return(coverage) +} + +past_coverage <- check_coverage(df, past_mappings) +future_coverage <- check_coverage(df, future_mappings) + +cat("\n=== COVERAGE CHECK ===\n") +cat("\nPAST variables:\n") +print(past_coverage) + +cat("\nFUTURE variables:\n") +print(future_coverage) + +# Check if all coverage matches +all_past_match <- all(past_coverage$match, na.rm = TRUE) +all_future_match <- all(future_coverage$match, na.rm = TRUE) + +if (all_past_match && all_future_match) { + cat("\n✓ All combined variables have correct coverage\n") +} else { + cat("\n⚠ Some variables may have missing coverage - check the table above\n") +} + +# Check 3: Sample check - verify a few rows manually +cat("\n=== SAMPLE ROW CHECK ===\n") +sample_rows <- min(5, nrow(df)) +cat(paste("Checking first", sample_rows, "rows:\n\n")) + +for (i in 1:sample_rows) { + cat(paste("Row", i, ":\n")) + + # Check one past variable + test_var <- "past_val_trad" + self_val <- if (past_mappings[[test_var]][1] %in% names(df)) df[i, past_mappings[[test_var]][1]] else NA + other_val <- if (past_mappings[[test_var]][2] %in% names(df)) df[i, past_mappings[[test_var]][2]] else NA + combined_val <- df[i, test_var] + + cat(sprintf(" %s: self=%s, other=%s, combined=%s\n", + test_var, + ifelse(is.na(self_val) || self_val == "", "empty", self_val), + ifelse(is.na(other_val) || other_val == "", "empty", other_val), + ifelse(is.na(combined_val) || combined_val == "", "empty", combined_val))) +} + +# ============================================================================= +# 5. SAVE UPDATED DATA +# ============================================================================= + + +write.csv(df, "eohi3.csv", row.names = FALSE, na = "") +cat("Updated data saved to: eohi3.csv\n") +cat(paste("Total rows:", nrow(df), "\n")) +cat(paste("Total columns:", ncol(df), "\n")) diff --git a/eohi3/datap 05 - ehi vars.r b/eohi3/datap 05 - ehi vars.r new file mode 100644 index 0000000..239ac71 --- /dev/null +++ b/eohi3/datap 05 - ehi vars.r @@ -0,0 +1,187 @@ +library(dplyr) + +setwd("/home/ladmin/Documents/DND/EOHI/eohi3") + +# Read the data (with check.names=FALSE to preserve original column names) +# Keep empty cells as empty strings, not NA +# Only convert the literal string "NA" to NA, not empty strings +df <- read.csv("eohi3.csv", stringsAsFactors = FALSE, check.names = FALSE, na.strings = "NA") + +# ============================================================================= +# 1. CREATE BACKUP +# ============================================================================= +file.copy("eohi3.csv", "eohi3_2.csv", overwrite = TRUE) + +# ============================================================================= +# 2. DEFINE VARIABLE MAPPINGS +# ============================================================================= + +# Target variables (excluding those ending in _MEAN) +# Each target var = past_var - fut_var +ehi_mappings <- list( + # Preferences (PREF) + "ehi_pref_hobbies" = c("past_pref_hobbies", "fut_pref_hobbies"), + "ehi_pref_music" = c("past_pref_music", "fut_pref_music"), + "ehi_pref_dress" = c("past_pref_dress", "fut_pref_dress"), + "ehi_pref_exer" = c("past_pref_exer", "fut_pref_exer"), + "ehi_pref_food" = c("past_pref_food", "fut_pref_food"), + "ehi_pref_friends" = c("past_pref_friends", "fut_pref_friends"), + "ehi_pref_DGEN" = c("past_pref_DGEN", "fut_pref_DGEN"), + + # Personality (PERS) + "ehi_pers_open" = c("past_pers_open", "fut_pers_open"), + "ehi_pers_goal" = c("past_pers_goal", "fut_pers_goal"), + "ehi_pers_social" = c("past_pers_social", "fut_pers_social"), + "ehi_pers_agree" = c("past_pers_agree", "fut_pers_agree"), + "ehi_pers_stress" = c("past_pers_stress", "fut_pers_stress"), + "ehi_pers_DGEN" = c("past_pers_DGEN", "fut_pers_DGEN"), + + # Values (VAL) + "ehi_val_trad" = c("past_val_trad", "fut_val_trad"), + "ehi_val_autonomy" = c("past_val_autonomy", "fut_val_autonomy"), + "ehi_val_personal" = c("past_val_personal", "fut_val_personal"), + "ehi_val_justice" = c("past_val_justice", "fut_val_justice"), + "ehi_val_close" = c("past_val_close", "fut_val_close"), + "ehi_val_connect" = c("past_val_connect", "fut_val_connect"), + "ehi_val_DGEN" = c("past_val_DGEN", "fut_val_DGEN") +) + +# ============================================================================= +# 3. CHECK IF TARGET VARIABLES EXIST +# ============================================================================= + +missing_targets <- c() +for (target_var in names(ehi_mappings)) { + if (!target_var %in% names(df)) { + missing_targets <- c(missing_targets, target_var) + cat(paste("⚠ Target variable not found:", target_var, "\n")) + } +} + +if (length(missing_targets) > 0) { + cat("\nERROR: The following target variables are missing from eohi3.csv:\n") + for (var in missing_targets) { + cat(paste(" -", var, "\n")) + } + stop("Cannot proceed without target variables. Please add them to the CSV file.") +} + +# ============================================================================= +# 4. CALCULATE EHI VARIABLES (past - future) +# ============================================================================= + +missing_source_cols <- list() + +for (target_var in names(ehi_mappings)) { + past_var <- ehi_mappings[[target_var]][1] + fut_var <- ehi_mappings[[target_var]][2] + + # Check if source columns exist + missing <- c() + if (!past_var %in% names(df)) { + missing <- c(missing, past_var) + } + if (!fut_var %in% names(df)) { + missing <- c(missing, fut_var) + } + + if (length(missing) > 0) { + missing_source_cols[[target_var]] <- missing + warning(paste("Skipping", target_var, "- missing source columns:", paste(missing, collapse = ", "))) + next + } + + # Convert to numeric, handling empty strings and NA + past_vals <- as.numeric(ifelse(df[[past_var]] == "" | is.na(df[[past_var]]), NA, df[[past_var]])) + fut_vals <- as.numeric(ifelse(df[[fut_var]] == "" | is.na(df[[fut_var]]), NA, df[[fut_var]])) + + # Calculate difference: past - future + ehi_vals <- past_vals - fut_vals + + # Update target column + df[[target_var]] <- ehi_vals + cat(paste(" Calculated:", target_var, "=", past_var, "-", fut_var, "\n")) +} + +# Report any missing source columns +if (length(missing_source_cols) > 0) { + for (var in names(missing_source_cols)) { + cat(paste(" ", var, ":", paste(missing_source_cols[[var]], collapse = ", "), "\n")) + } +} + +# ============================================================================= +# 5. VALIDATION: CHECK 5 RANDOM ROWS +# ============================================================================= + +cat("\n=== VALIDATION: CHECKING 5 RANDOM ROWS ===\n\n") + +# Set seed for reproducibility +set.seed(123) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +sample_rows <- sort(sample_rows) + +for (i in sample_rows) { + cat(paste("Row", i, ":\n")) + + # Check a few representative variables from each category + test_vars <- c( + "ehi_pref_hobbies", + "ehi_pers_open", + "ehi_val_trad" + ) + + for (target_var in test_vars) { + if (target_var %in% names(ehi_mappings)) { + past_var <- ehi_mappings[[target_var]][1] + fut_var <- ehi_mappings[[target_var]][2] + + if (past_var %in% names(df) && fut_var %in% names(df)) { + past_val <- df[i, past_var] + fut_val <- df[i, fut_var] + ehi_val <- df[i, target_var] + + # Convert to numeric for calculation check + past_num <- as.numeric(ifelse(past_val == "" | is.na(past_val), NA, past_val)) + fut_num <- as.numeric(ifelse(fut_val == "" | is.na(fut_val), NA, fut_val)) + ehi_num <- as.numeric(ifelse(is.na(ehi_val), NA, ehi_val)) + + # Calculate expected value + expected <- if (!is.na(past_num) && !is.na(fut_num)) { + past_num - fut_num + } else { + NA + } + + # Check if calculation is correct + match <- if (!is.na(expected) && !is.na(ehi_num)) { + abs(expected - ehi_num) < 0.0001 # Allow for floating point precision + } else { + is.na(expected) && is.na(ehi_num) + } + + cat(sprintf(" %s:\n", target_var)) + cat(sprintf(" %s = %s\n", past_var, ifelse(is.na(past_val) || past_val == "", "NA/empty", past_val))) + cat(sprintf(" %s = %s\n", fut_var, ifelse(is.na(fut_val) || fut_val == "", "NA/empty", fut_val))) + cat(sprintf(" %s = %s\n", target_var, ifelse(is.na(ehi_val), "NA", ehi_val))) + cat(sprintf(" Expected: %s - %s = %s\n", + ifelse(is.na(past_num), "NA", past_num), + ifelse(is.na(fut_num), "NA", fut_num), + ifelse(is.na(expected), "NA", expected))) + cat(sprintf(" Match: %s\n\n", ifelse(match, "✓", "✗ ERROR"))) + } + } + } +} + +# ============================================================================= +# 6. SAVE UPDATED DATA +# ============================================================================= +# COMMENTED OUT: Uncomment when ready to save + +# cat("\n=== SAVING DATA ===\n") +write.csv(df, "eohi3.csv", row.names = FALSE, na = "") +# cat("Updated data saved to: eohi3.csv\n") +# cat(paste("Total rows:", nrow(df), "\n")) +# cat(paste("Total columns:", ncol(df), "\n")) + diff --git a/eohi3/datap 06 - mean vars.r b/eohi3/datap 06 - mean vars.r new file mode 100644 index 0000000..df16bb8 --- /dev/null +++ b/eohi3/datap 06 - mean vars.r @@ -0,0 +1,225 @@ +library(dplyr) + +setwd("/home/ladmin/Documents/DND/EOHI/eohi3") + +# Read the data (with check.names=FALSE to preserve original column names) +# Keep empty cells as empty strings, not NA +# Only convert the literal string "NA" to NA, not empty strings +df <- read.csv("eohi3.csv", stringsAsFactors = FALSE, check.names = FALSE, na.strings = "NA") + +# ============================================================================= +# 1. CREATE BACKUP +# ============================================================================= +file.copy("eohi3.csv", "eohi3_2.csv", overwrite = TRUE) + +# ============================================================================= +# 2. DEFINE MEAN VARIABLE MAPPINGS +# ============================================================================= + +mean_mappings <- list( + # Past Preferences MEAN + "past_pref_MEAN" = c("past_pref_hobbies", "past_pref_music", "past_pref_dress", + "past_pref_exer", "past_pref_food", "past_pref_friends"), + + # Future Preferences MEAN + "fut_pref_MEAN" = c("fut_pref_hobbies", "fut_pref_music", "fut_pref_dress", + "fut_pref_exer", "fut_pref_food", "fut_pref_friends"), + + # Past Personality MEAN + "past_pers_MEAN" = c("past_pers_open", "past_pers_goal", "past_pers_social", + "past_pers_agree", "past_pers_stress"), + + # Future Personality MEAN + "fut_pers_MEAN" = c("fut_pers_open", "fut_pers_goal", "fut_pers_social", + "fut_pers_agree", "fut_pers_stress"), + + # Past Values MEAN + "past_val_MEAN" = c("past_val_trad", "past_val_autonomy", "past_val_personal", + "past_val_justice", "past_val_close", "past_val_connect"), + + # Future Values MEAN + "fut_val_MEAN" = c("fut_val_trad", "fut_val_autonomy", "fut_val_personal", + "fut_val_justice", "fut_val_close", "fut_val_connect"), + + # EHI Preferences MEAN + "ehi_pref_MEAN" = c("ehi_pref_hobbies", "ehi_pref_music", "ehi_pref_dress", + "ehi_pref_exer", "ehi_pref_food", "ehi_pref_friends"), + + # EHI Personality MEAN + "ehi_pers_MEAN" = c("ehi_pers_open", "ehi_pers_goal", "ehi_pers_social", + "ehi_pers_agree", "ehi_pers_stress"), + + # EHI Values MEAN + "ehi_val_MEAN" = c("ehi_val_trad", "ehi_val_autonomy", "ehi_val_personal", + "ehi_val_justice", "ehi_val_close", "ehi_val_connect") +) + +# Additional means +additional_means <- list( + "ehiDS_mean" = c("ehi_pref_MEAN", "ehi_pers_MEAN", "ehi_val_MEAN"), + "ehiDGEN_mean" = c("ehi_pref_DGEN", "ehi_pers_DGEN", "ehi_val_DGEN") +) + +# ============================================================================= +# 3. CHECK IF VARIABLES EXIST +# ============================================================================= + +# Check source variables for mean_mappings +missing_source_vars <- list() +for (target_var in names(mean_mappings)) { + source_vars <- mean_mappings[[target_var]] + missing <- setdiff(source_vars, names(df)) + if (length(missing) > 0) { + missing_source_vars[[target_var]] <- missing + cat(paste("⚠ Missing source variables for", target_var, ":", paste(missing, collapse = ", "), "\n")) + } +} + +# Check source variables for additional_means +missing_additional_vars <- list() +for (target_var in names(additional_means)) { + source_vars <- additional_means[[target_var]] + missing <- setdiff(source_vars, names(df)) + if (length(missing) > 0) { + missing_additional_vars[[target_var]] <- missing + cat(paste("⚠ Missing source variables for", target_var, ":", paste(missing, collapse = ", "), "\n")) + } +} + +# Check if target variables exist +expected_targets <- c(names(mean_mappings), names(additional_means)) +actual_targets <- names(df) +missing_targets <- setdiff(expected_targets, actual_targets) + +if (length(missing_targets) > 0) { + cat("\nERROR: The following target variables are missing from eohi3.csv:\n") + for (var in missing_targets) { + cat(paste(" -", var, "\n")) + } + stop("Cannot proceed without target variables. Please add them to the CSV file.") +} + +# ============================================================================= +# 4. CALCULATE MEAN VARIABLES +# ============================================================================= + +# Function to calculate row means, handling NA and empty strings +calculate_mean <- function(df, source_vars) { + # Extract columns and convert to numeric + cols_data <- df[, source_vars, drop = FALSE] + + # Convert to numeric matrix, treating empty strings and "NA" as NA + numeric_matrix <- apply(cols_data, 2, function(x) { + as.numeric(ifelse(x == "" | is.na(x) | x == "NA", NA, x)) + }) + + # Calculate row means, ignoring NA values + rowMeans(numeric_matrix, na.rm = TRUE) +} + +# Calculate means for main mappings +for (target_var in names(mean_mappings)) { + source_vars <- mean_mappings[[target_var]] + + # Check if all source variables exist + missing <- setdiff(source_vars, names(df)) + if (length(missing) > 0) { + warning(paste("Skipping", target_var, "- missing source variables:", paste(missing, collapse = ", "))) + next + } + + # Calculate mean + df[[target_var]] <- calculate_mean(df, source_vars) + cat(paste(" Calculated:", target_var, "from", length(source_vars), "variables\n")) +} + +# Calculate additional means +for (target_var in names(additional_means)) { + source_vars <- additional_means[[target_var]] + + # Check if all source variables exist + missing <- setdiff(source_vars, names(df)) + if (length(missing) > 0) { + warning(paste("Skipping", target_var, "- missing source variables:", paste(missing, collapse = ", "))) + next + } + + # Calculate mean + df[[target_var]] <- calculate_mean(df, source_vars) + cat(paste(" Calculated:", target_var, "from", length(source_vars), "variables\n")) +} + +# ============================================================================= +# 5. VALIDATION: CHECK 5 RANDOM ROWS +# ============================================================================= + +# Set seed for reproducibility +set.seed(123) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +sample_rows <- sort(sample_rows) + +for (i in sample_rows) { + cat(paste("Row", i, ":\n")) + + # Check a few representative mean variables + test_vars <- c( + "past_pref_MEAN", + "ehi_pref_MEAN", + "ehiDS_mean" + ) + + for (target_var in test_vars) { + # Determine which mapping to use + if (target_var %in% names(mean_mappings)) { + source_vars <- mean_mappings[[target_var]] + } else if (target_var %in% names(additional_means)) { + source_vars <- additional_means[[target_var]] + } else { + next + } + + # Check if all source variables exist + if (!all(source_vars %in% names(df))) { + next + } + + # Get values + source_vals <- df[i, source_vars] + target_val <- df[i, target_var] + + # Convert to numeric for calculation + source_nums <- as.numeric(ifelse(source_vals == "" | is.na(source_vals) | source_vals == "NA", NA, source_vals)) + target_num <- as.numeric(ifelse(is.na(target_val), NA, target_val)) + + # Calculate expected mean (ignoring NA) + expected <- mean(source_nums, na.rm = TRUE) + if (all(is.na(source_nums))) { + expected <- NA + } + + # Check if calculation is correct + match <- if (!is.na(expected) && !is.na(target_num)) { + abs(expected - target_num) < 0.0001 # Allow for floating point precision + } else { + is.na(expected) && is.na(target_num) + } + + cat(sprintf(" %s:\n", target_var)) + cat(sprintf(" Source variables: %s\n", paste(source_vars, collapse = ", "))) + cat(sprintf(" Source values: %s\n", paste(ifelse(is.na(source_vals) | source_vals == "", "NA/empty", source_vals), collapse = ", "))) + cat(sprintf(" %s = %s\n", target_var, ifelse(is.na(target_val), "NA", round(target_val, 4)))) + cat(sprintf(" Expected mean: %s\n", ifelse(is.na(expected), "NA", round(expected, 4)))) + cat(sprintf(" Match: %s\n\n", ifelse(match, "✓", "✗ ERROR"))) + } +} + +# ============================================================================= +# 6. SAVE UPDATED DATA +# ============================================================================= +# COMMENTED OUT: Uncomment when ready to save + +write.csv(df, "eohi3.csv", row.names = FALSE, na = "") +# cat("Updated data saved to: eohi3.csv\n") +# cat(paste("Total rows:", nrow(df), "\n")) +# cat(paste("Total columns:", ncol(df), "\n")) + diff --git a/eohi3/datap 07 - scales and recodes.r b/eohi3/datap 07 - scales and recodes.r new file mode 100644 index 0000000..7d5ebf7 --- /dev/null +++ b/eohi3/datap 07 - scales and recodes.r @@ -0,0 +1,462 @@ +library(dplyr) + +setwd("/home/ladmin/Documents/DND/EOHI/eohi3") + +# Read the data (with check.names=FALSE to preserve original column names) +# Keep empty cells as empty strings, not NA +# Only convert the literal string "NA" to NA, not empty strings +df <- read.csv("eohi3.csv", stringsAsFactors = FALSE, check.names = FALSE, na.strings = "NA") + +# ============================================================================= +# 1. CREATE BACKUP +# ============================================================================= +file.copy("eohi3.csv", "eohi3_2.csv", overwrite = TRUE) + +# ============================================================================= +# HELPER FUNCTION: Check variable existence and values +# ============================================================================= + +check_vars_exist <- function(source_vars, target_vars) { + missing_source <- setdiff(source_vars, names(df)) + missing_target <- setdiff(target_vars, names(df)) + + if (length(missing_source) > 0) { + stop(paste("Missing source variables:", paste(missing_source, collapse = ", "))) + } + if (length(missing_target) > 0) { + stop(paste("Missing target variables:", paste(missing_target, collapse = ", "))) + } + return(TRUE) +} + +check_values_exist <- function(var_name, expected_values) { + unique_vals <- unique(df[[var_name]]) + unique_vals <- unique_vals[!is.na(unique_vals) & unique_vals != ""] + missing_vals <- setdiff(expected_values, unique_vals) + extra_vals <- setdiff(unique_vals, expected_values) + + if (length(missing_vals) > 0) { + cat(paste(" ⚠ Expected values not found in", var_name, ":", paste(missing_vals, collapse = ", "), "\n")) + } + if (length(extra_vals) > 0) { + cat(paste(" ⚠ Unexpected values found in", var_name, ":", paste(extra_vals, collapse = ", "), "\n")) + } + return(list(missing = missing_vals, extra = extra_vals)) +} + +# ============================================================================= +# 2. RECODE other_length2 TO other_length +# ============================================================================= + +cat("\n=== 1. RECODING other_length2 TO other_length ===\n\n") + +# Check variables exist +check_vars_exist("other_length2", "other_length") + +# Check values in source +cat("Checking source variable values...\n") +length_vals <- unique(df$other_length2[!is.na(df$other_length2) & df$other_length2 != ""]) +cat(paste(" Unique values in other_length2:", paste(length_vals, collapse = ", "), "\n")) + +# Recode - handle "20+" as special case first, then convert to numeric for ranges +# Convert to numeric once, suppressing warnings for non-numeric values +num_length <- suppressWarnings(as.numeric(df$other_length2)) + +df$other_length <- ifelse( + is.na(df$other_length2), + NA, + ifelse( + df$other_length2 == "", + "", + ifelse( + df$other_length2 == "20+", + "20+", + ifelse( + !is.na(num_length) & num_length >= 5 & num_length <= 9, + "5-9", + ifelse( + !is.na(num_length) & num_length >= 10 & num_length <= 14, + "10-14", + ifelse( + !is.na(num_length) & num_length >= 15 & num_length <= 19, + "15-19", + NA + ) + ) + ) + ) + ) +) + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(123) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + source_val <- df$other_length2[i] + target_val <- df$other_length[i] + cat(sprintf(" Row %d: other_length2 = %s -> other_length = %s\n", + i, ifelse(is.na(source_val), "NA", ifelse(source_val == "", "empty", source_val)), + ifelse(is.na(target_val), "NA", ifelse(target_val == "", "empty", target_val)))) +} + +# ============================================================================= +# 3. RECODE other_like2 TO other_like +# ============================================================================= + +cat("\n=== 2. RECODING other_like2 TO other_like ===\n\n") + +# Check variables exist +check_vars_exist("other_like2", "other_like") + +# Check expected values exist +expected_like <- c("Dislike a great deal", "Dislike somewhat", "Neither like nor dislike", + "Like somewhat", "Like a great deal") +check_values_exist("other_like2", expected_like) + +# Recode +df$other_like <- ifelse( + is.na(df$other_like2), + NA, + ifelse( + df$other_like2 == "", + "", + ifelse( + df$other_like2 == "Dislike a great deal", + "-2", + ifelse( + df$other_like2 == "Dislike somewhat", + "-1", + ifelse( + df$other_like2 == "Neither like nor dislike", + "0", + ifelse( + df$other_like2 == "Like somewhat", + "1", + ifelse( + df$other_like2 == "Like a great deal", + "2", + NA + ) + ) + ) + ) + ) + ) +) + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(456) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + source_val <- df$other_like2[i] + target_val <- df$other_like[i] + cat(sprintf(" Row %d: other_like2 = %s -> other_like = %s\n", + i, ifelse(is.na(source_val), "NA", ifelse(source_val == "", "empty", source_val)), + ifelse(is.na(target_val), "NA", ifelse(target_val == "", "empty", target_val)))) +} + +# ============================================================================= +# 4. CALCULATE aot_total +# ============================================================================= + +cat("\n=== 3. CALCULATING aot_total ===\n\n") + +# Check variables exist +aot_vars <- c("aot01", "aot02", "aot03", "aot04_r", "aot05_r", "aot06_r", "aot07_r", "aot08") +check_vars_exist(aot_vars, "aot_total") + +# Reverse code aot04_r through aot07_r +reverse_vars <- c("aot04_r", "aot05_r", "aot06_r", "aot07_r") +for (var in reverse_vars) { + df[[paste0(var, "_reversed")]] <- as.numeric(ifelse( + df[[var]] == "" | is.na(df[[var]]), + NA, + as.numeric(df[[var]]) * -1 + )) +} + +# Calculate mean of all 8 variables (4 reversed + 4 original) +all_aot_vars <- c("aot01", "aot02", "aot03", "aot04_r_reversed", "aot05_r_reversed", + "aot06_r_reversed", "aot07_r_reversed", "aot08") + +# Convert to numeric matrix +aot_matrix <- df[, all_aot_vars] +aot_numeric <- apply(aot_matrix, 2, function(x) { + as.numeric(ifelse(x == "" | is.na(x), NA, x)) +}) + +# Calculate mean +df$aot_total <- rowMeans(aot_numeric, na.rm = TRUE) + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(789) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + aot_vals <- df[i, all_aot_vars] + aot_nums <- as.numeric(ifelse(aot_vals == "" | is.na(aot_vals), NA, aot_vals)) + expected_mean <- mean(aot_nums, na.rm = TRUE) + actual_mean <- df$aot_total[i] + cat(sprintf(" Row %d: aot_total = %s (expected: %s)\n", + i, ifelse(is.na(actual_mean), "NA", round(actual_mean, 4)), + ifelse(is.na(expected_mean), "NA", round(expected_mean, 4)))) +} + +# ============================================================================= +# 5. PROCESS CRT QUESTIONS +# ============================================================================= + +cat("\n=== 4. PROCESSING CRT QUESTIONS ===\n\n") + +# Check variables exist +check_vars_exist(c("crt01", "crt02", "crt03"), c("crt_correct", "crt_int")) + +# Initialize CRT variables +df$crt_correct <- 0 +df$crt_int <- 0 + +# CRT01: "5 cents" = correct (1,0), "10 cents" = intuitive (0,1), else (0,0) +df$crt_correct <- ifelse(df$crt01 == "5 cents", 1, df$crt_correct) +df$crt_int <- ifelse(df$crt01 == "10 cents", 1, df$crt_int) + +# CRT02: "5 minutes" = correct (1,0), "100 minutes" = intuitive (0,1), else (0,0) +df$crt_correct <- ifelse(df$crt02 == "5 minutes", df$crt_correct + 1, df$crt_correct) +df$crt_int <- ifelse(df$crt02 == "100 minutes", df$crt_int + 1, df$crt_int) + +# CRT03: "47 days" = correct (1,0), "24 days" = intuitive (0,1), else (0,0) +df$crt_correct <- ifelse(df$crt03 == "47 days", df$crt_correct + 1, df$crt_correct) +df$crt_int <- ifelse(df$crt03 == "24 days", df$crt_int + 1, df$crt_int) + +# Check expected values exist +expected_crt01 <- c("5 cents", "10 cents") +expected_crt02 <- c("5 minutes", "100 minutes") +expected_crt03 <- c("47 days", "24 days") +check_values_exist("crt01", expected_crt01) +check_values_exist("crt02", expected_crt02) +check_values_exist("crt03", expected_crt03) + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(1011) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + cat(sprintf(" Row %d:\n", i)) + cat(sprintf(" crt01 = %s -> crt_correct = %d, crt_int = %d\n", + ifelse(is.na(df$crt01[i]) || df$crt01[i] == "", "NA/empty", df$crt01[i]), + ifelse(df$crt01[i] == "5 cents", 1, 0), + ifelse(df$crt01[i] == "10 cents", 1, 0))) + cat(sprintf(" crt02 = %s -> crt_correct = %d, crt_int = %d\n", + ifelse(is.na(df$crt02[i]) || df$crt02[i] == "", "NA/empty", df$crt02[i]), + ifelse(df$crt02[i] == "5 minutes", 1, 0), + ifelse(df$crt02[i] == "100 minutes", 1, 0))) + cat(sprintf(" crt03 = %s -> crt_correct = %d, crt_int = %d\n", + ifelse(is.na(df$crt03[i]) || df$crt03[i] == "", "NA/empty", df$crt03[i]), + ifelse(df$crt03[i] == "47 days", 1, 0), + ifelse(df$crt03[i] == "24 days", 1, 0))) + cat(sprintf(" Total: crt_correct = %d, crt_int = %d\n\n", + df$crt_correct[i], df$crt_int[i])) +} + +# ============================================================================= +# 6. CALCULATE icar_verbal +# ============================================================================= + +cat("\n=== 5. CALCULATING icar_verbal ===\n\n") + +# Check variables exist +verbal_vars <- c("verbal01", "verbal02", "verbal03", "verbal04", "verbal05") +check_vars_exist(verbal_vars, "icar_verbal") + +# Correct answers +correct_verbal <- c("5", "8", "It's impossible to tell", "47", "Sunday") + +# Calculate proportion correct +verbal_responses <- df[, verbal_vars] +correct_count <- rowSums( + sapply(1:5, function(i) { + verbal_responses[, i] == correct_verbal[i] + }), + na.rm = TRUE +) +df$icar_verbal <- correct_count / 5 + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(1213) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + responses <- df[i, verbal_vars] + correct <- sum(sapply(1:5, function(j) responses[j] == correct_verbal[j]), na.rm = TRUE) + prop <- correct / 5 + cat(sprintf(" Row %d: Correct = %d/5, icar_verbal = %s\n", + i, correct, round(prop, 4))) +} + +# ============================================================================= +# 7. CALCULATE icar_matrix +# ============================================================================= + +cat("\n=== 6. CALCULATING icar_matrix ===\n\n") + +# Check variables exist +matrix_vars <- c("matrix01", "matrix02", "matrix03", "matrix04", "matrix05") +check_vars_exist(matrix_vars, "icar_matrix") + +# Correct answers +correct_matrix <- c("D", "E", "B", "B", "D") + +# Calculate proportion correct +matrix_responses <- df[, matrix_vars] +correct_count <- rowSums( + sapply(1:5, function(i) { + matrix_responses[, i] == correct_matrix[i] + }), + na.rm = TRUE +) +df$icar_matrix <- correct_count / 5 + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(1415) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + responses <- df[i, matrix_vars] + correct <- sum(sapply(1:5, function(j) responses[j] == correct_matrix[j]), na.rm = TRUE) + prop <- correct / 5 + cat(sprintf(" Row %d: Correct = %d/5, icar_matrix = %s\n", + i, correct, round(prop, 4))) +} + +# ============================================================================= +# 8. CALCULATE icar_total +# ============================================================================= + +cat("\n=== 7. CALCULATING icar_total ===\n\n") + +# Check variables exist +check_vars_exist(c(verbal_vars, matrix_vars), "icar_total") + +# Calculate proportion correct across all 10 items +all_correct <- c(correct_verbal, correct_matrix) +all_responses <- df[, c(verbal_vars, matrix_vars)] +correct_count <- rowSums( + sapply(1:10, function(i) { + all_responses[, i] == all_correct[i] + }), + na.rm = TRUE +) +df$icar_total <- correct_count / 10 + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(1617) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + responses <- df[i, c(verbal_vars, matrix_vars)] + correct <- sum(sapply(1:10, function(j) responses[j] == all_correct[j]), na.rm = TRUE) + prop <- correct / 10 + cat(sprintf(" Row %d: Correct = %d/10, icar_total = %s\n", + i, correct, round(prop, 4))) +} + +# ============================================================================= +# 9. RECODE demo_sex TO sex +# ============================================================================= + +cat("\n=== 8. RECODING demo_sex TO sex ===\n\n") + +# Check variables exist +check_vars_exist("demo_sex", "sex") + +# Check values +sex_vals <- unique(df$demo_sex[!is.na(df$demo_sex) & df$demo_sex != ""]) +cat(paste(" Unique values in demo_sex:", paste(sex_vals, collapse = ", "), "\n")) + +# Recode: male = 0, female = 1, else = 2 +df$sex <- ifelse( + is.na(df$demo_sex) | df$demo_sex == "", + NA, + ifelse( + tolower(df$demo_sex) == "male", + 0, + ifelse( + tolower(df$demo_sex) == "female", + 1, + 2 + ) + ) +) + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(1819) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + source_val <- df$demo_sex[i] + target_val <- df$sex[i] + cat(sprintf(" Row %d: demo_sex = %s -> sex = %s\n", + i, ifelse(is.na(source_val) || source_val == "", "NA/empty", source_val), + ifelse(is.na(target_val), "NA", target_val))) +} + +# ============================================================================= +# 10. RECODE demo_edu TO education +# ============================================================================= + +cat("\n=== 9. RECODING demo_edu TO education ===\n\n") + +# Check variables exist +check_vars_exist("demo_edu", "education") + +# Check values +edu_vals <- unique(df$demo_edu[!is.na(df$demo_edu) & df$demo_edu != ""]) +cat(paste(" Unique values in demo_edu:", paste(edu_vals, collapse = ", "), "\n")) + +# Recode +df$education <- ifelse( + is.na(df$demo_edu) | df$demo_edu == "", + NA, + ifelse( + df$demo_edu %in% c("High School (or equivalent)", "Trade School"), + "HS_TS", + ifelse( + df$demo_edu %in% c("College Diploma/Certificate", "University - Undergraduate"), + "C_Ug", + ifelse( + df$demo_edu %in% c("University - Graduate (Masters)", "University - PhD", "Professional Degree (ex. JD/MD)"), + "grad_prof", + NA + ) + ) + ) +) + +# Convert to ordered factor +df$education <- factor(df$education, + levels = c("HS_TS", "C_Ug", "grad_prof"), + ordered = TRUE) + +# Verification check +cat("\nVerification (5 random rows):\n") +set.seed(2021) +sample_rows <- sample(1:nrow(df), min(5, nrow(df))) +for (i in sample_rows) { + source_val <- df$demo_edu[i] + target_val <- df$education[i] + cat(sprintf(" Row %d: demo_edu = %s -> education = %s\n", + i, ifelse(is.na(source_val) || source_val == "", "NA/empty", source_val), + ifelse(is.na(target_val), "NA", as.character(target_val)))) +} + +# ============================================================================= +# 11. SAVE UPDATED DATA +# ============================================================================= +# COMMENTED OUT: Uncomment when ready to save + +# write.csv(df, "eohi3.csv", row.names = FALSE, na = "") +# cat("\nUpdated data saved to: eohi3.csv\n") +# cat(paste("Total rows:", nrow(df), "\n")) +# cat(paste("Total columns:", ncol(df), "\n")) + diff --git a/eohi3/eohi3.csv b/eohi3/eohi3.csv index 090334e..aa71c14 100644 --- a/eohi3/eohi3.csv +++ b/eohi3/eohi3.csv @@ -1,523 +1,523 @@ -pID,IPAddress,ResponseId,perspective,group,temporalDO,selfPREF_p5_hobbies,selfPREF_p5_music,selfPREF_p5_dress,selfPREF_p5_exer,selfPREF_p5_food,selfPREF_p5_friends,selfPREF_p5_dgen,selfPERS_p5_open,selfPERS_p5_goal,selfPERS_p5_social,selfPERS_p5_agree,selfPERS_p5_stress,selfPERS_p5_dgen,selfVAL_p5_trad,selfVAL_p5_autonomy,selfVAL_p5_personal,selfVAL_p5_justice,selfVAL_p5_close,selfVAL_p5_connect,selfVAL_p5_dgen,selfPREF_f5_hobbies,selfPREF_f5_music,selfPREF_f5_dress,selfPREF_f5_exer,selfPREF_f5_food,selfPREF_f5_friends,selfPREF_f5_dgen,selfPERS_f5_open,selfPERS_f5_goal,selfPERS_f5_social,selfPERS_f5_agree,selfPERS_f5_stress,selfPERS_f5_dgen,selfVAL_f5_trad,selfVAL_f5_autonomy,selfVAL_f5_personal,selfVAL_f5_justice,selfVAL_f5_close,selfVAL_f5_connect,selfVAL_f5_dgen,other_know,other_length,other_like,otherPREF_p5_hobbies,otherPREF_p5_music,otherPREF_p5_dress,otherPREF_p5_exer,otherPREF_p5_food,otherPREF_p5_friends,otherPREF_p5_dgen,otherPESR_p5_open,otherPERS_p5_goal,otherPERS_p5_social,otherPERS_p5_agree,otherPERS_p5_stress,otherPERS_p5_dgen,otherVAL_p5_trad,otherVAL_p5_autonomy,otherVAL_p5_personal,otherVAL_p5_justice,otherVAL_p5_close,otherVAL_p5_connect,otherVAL_p5_dgen,otherPREF_f5_hobbies,otherPREF_f5_music,otherPREF_f5_dress,otherPREF_f5_exer,otherPREF_f5_food,otherPREF_f5_friends,otherPREF_f5_dgen,otherPERS_f5_open,otherPERS_f5_goal,otherPERS_f5_social,otherPERS_f5_agree,otherPERS_f5_stress,otherPERS_f5_dgen,otherVAL_f5_trad,otherVAL_f5_autonomy,otherVAL_f5_personal,otherVAL_f5_justice,otherVAL_f5_close,otherVAL_f5_connect,otherVAL_f5_dgen,past_pref_hobbies,,,,,,,,,,,,,,,,,,,,,,,,,aot_total,crt_correct,crt_int,icar_verbal,icar_matrix,icar_total,aot01,aot02,aot03,aot04_r,aot05_r,aot06_r,aot07_r,aot08,crt01,crt02,crt03,verbal01,verbal02,verbal03,verbal04,verbal05,matrix01,matrix02,matrix03,matrix04,matrix05,demo_sex,demo_edu,demo_age,taq_age,citizenship,taq_sex,FL_259_DO_FL_260,FL_259_DO_FL_261,FL_262_DO_FL_263,FL_262_DO_FL_264,FL_262_DO_FL_265,FL_266_DO_FL_267,FL_266_DO_FL_268,SELF[F]Preferences-PAST_DO_selfPREF_p5_friends,SELF[F]Preferences-PAST_DO_pref_text,SELF[F]Preferences-PAST_DO_selfPREF_p5_dgen,SELF[F]Preferences-PAST_DO_selfPREF_p5_music,SELF[F]Preferences-PAST_DO_selfPREF_p5_dress,SELF[F]Preferences-PAST_DO_selfPREF_p5_exer,SELF[F]Preferences-PAST_DO_selfPREF_p5_food,SELF[F]Preferences-PAST_DO_selfPREF_p5_hobbies,SELF[P]Personality-PAST_DO_selfPERS_p5_agree,SELF[P]Personality-PAST_DO_selfPERS_p5_stress,SELF[P]Personality-PAST_DO_selfPERS_p5_dgen,SELF[P]Personality-PAST_DO_pers_text,SELF[P]Personality-PAST_DO_selfPERS_p5_open,SELF[P]Personality-PAST_DO_selfPERS_p5_goal,SELF[P]Personality-PAST_DO_selfPERS_p5_social,SELF[V]Values-PAST_DO_selfVAL_p5_connect,SELF[V]Values-PAST_DO_selfVAL_p5_personal,SELF[V]Values-PAST_DO_selfVAL_p5_justice,SELF[V]Values-PAST_DO_selfVAL_p5_close,SELF[V]Values-PAST_DO_selfVAL_p5_dgen,SELF[V]Values-PAST_DO_values_text,SELF[V]Values-PAST_DO_selfVAL_p5_trad,SELF[V]Values-PAST_DO_selfVAL_p5_autonomy,SELF[F]Preferences-FUTURE_DO_pref_text,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_hobbies,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_friends,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_dgen,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_music,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_dress,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_exer,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_food,SELF[P]Personality-FUTURE_DO_selfPERS_f5_goal,SELF[P]Personality-FUTURE_DO_selfPERS_f5_social,SELF[P]Personality-FUTURE_DO_pers_text,SELF[P]Personality-FUTURE_DO_selfPERS_f5_open,SELF[P]Personality-FUTURE_DO_selfPERS_f5_stress,SELF[P]Personality-FUTURE_DO_selfPERS_f5_dgen,SELF[P]Personality-FUTURE_DO_selfPERS_f5_agree,SELF[V]Values-FUTURE_DO_selfVAL_f5_connect,SELF[V]Values-FUTURE_DO_selfVAL_f5_autonomy,SELF[V]Values-FUTURE_DO_selfVAL_f5_personal,SELF[V]Values-FUTURE_DO_selfVAL_f5_justice,SELF[V]Values-FUTURE_DO_selfVAL_f5_close,SELF[V]Values-FUTURE_DO_values_text,SELF[V]Values-FUTURE_DO_selfVAL_f5_trad,SELF[V]Values-FUTURE_DO_selfVAL_f5_dgen,OTHER[F]Preferences-PAST_DO_otherPREF_p5_food,OTHER[F]Preferences-PAST_DO_otherPREF_p5_friends,OTHER[F]Preferences-PAST_DO_otherPREF_p5_dgen,OTHER[F]Preferences-PAST_DO_otherPREF_p5_hobbies,OTHER[F]Preferences-PAST_DO_otherPREF_p5_music,OTHER[F]Preferences-PAST_DO_otherPREF_p5_dress,OTHER[F]Preferences-PAST_DO_otherPREF_p5_exer,OTHER[F]Preferences-PAST_DO_pref_text,OTHER[P]Personality-PAST_DO_pers_text,OTHER[P]Personality-PAST_DO_otherPERS_p5_agree,OTHER[P]Personality-PAST_DO_otherPERS_p5_stress,OTHER[P]Personality-PAST_DO_otherPERS_p5_dgen,OTHER[P]Personality-PAST_DO_otherPESR_p5_open,OTHER[P]Personality-PAST_DO_otherPERS_p5_goal,OTHER[P]Personality-PAST_DO_otherPERS_p5_social,OTHER[V]Values-PAST_DO_otherVAL_p5_close,OTHER[V]Values-PAST_DO_otherVAL_p5_connect,OTHER[V]Values-PAST_DO_otherVAL_p5_dgen,OTHER[V]Values-PAST_DO_otherVAL_p5_trad,OTHER[V]Values-PAST_DO_otherVAL_p5_autonomy,OTHER[V]Values-PAST_DO_otherVAL_p5_personal,OTHER[V]Values-PAST_DO_otherVAL_p5_justice,OTHER[V]Values-PAST_DO_val_text,OTHER[F]Preferences-FUTURE_DO_pref_text,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_friends,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_dgen,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_food,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_hobbies,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_music,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_dress,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_exer,OTHER[P]Personality-FUTURE_DO_pers_text,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_open,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_goal,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_social,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_agree,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_stress,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_dgen,OTHER[V]Values-FUTURE_DO_otherVAL_f5_justice,OTHER[V]Values-FUTURE_DO_otherVAL_f5_close,OTHER[V]Values-FUTURE_DO_otherVAL_f5_connect,OTHER[V]Values-FUTURE_DO_otherVAL_f5_dgen,OTHER[V]Values-FUTURE_DO_otherVAL_f5_trad,OTHER[V]Values-FUTURE_DO_otherVAL_f5_autonomy,OTHER[V]Values-FUTURE_DO_otherVAL_f5_personal,OTHER[V]Values-FUTURE_DO_val_text,ActivelyOpen-MindedThinking_DO_aot07_r,ActivelyOpen-MindedThinking_DO_aot08,ActivelyOpen-MindedThinking_DO_aot01,ActivelyOpen-MindedThinking_DO_aot02,ActivelyOpen-MindedThinking_DO_aot03,ActivelyOpen-MindedThinking_DO_aot04_r,ActivelyOpen-MindedThinking_DO_aot05_r,ActivelyOpen-MindedThinking_DO_Q494,ActivelyOpen-MindedThinking_DO_aot06_r,CognitiveReflectionTest_DO_crt01,CognitiveReflectionTest_DO_crt02,CognitiveReflectionTest_DO_crt03,CognitiveReflectionTest_DO_Q495 -1,68.83.234.19,R_3VCirgCJI8v1gRJ,self,03VFP,past,8,10,10,8,9,6,7,8,9,5,8,10,9,10,8,10,6,9,8,5,6,9,8,8,8,8,7,8,10,8,9,5,9,8,8,9,9,7,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,1,1,2,1,1,10 cents,100 minutes,24 days,2,9,Richard is shorter than Matt,44,Monday,C,D,D,E,D,Female,High School (or equivalent),44,39 - 45,American,Female,1,,,,1,1,,6,1,8,4,5,3,2,7,2,5,7,1,6,4,3,3,2,5,4,8,1,7,6,1,4,7,8,6,5,2,3,5,2,1,6,3,7,4,6,7,2,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,7,2,5,4,3,1,8,2,4,3,1 -2,76.36.167.137,R_3fF5ZTyy0VeZKsV,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,9,3,3,9,2,10,10,4,3,7,1,8,5,5,7,10,7,10,10,8,10,4,5,6,7,5,4,3,4,5,9,6,7,8,4,10,3,10,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,2,1,-2,0,10 cents,100 minutes,24 days,3,8,Richard is as tall as Matt,47,Tuesday,D,E,B,B,F,Female,High School (or equivalent),39,39 - 45,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,4,7,5,1,1,4,5,7,6,3,2,4,2,8,3,5,6,7,1,1,2,8,3,4,7,5,6,1,4,6,3,5,2,7,3,7,4,8,5,2,6,1,3,7,4,2,5,8,6,1,9,4,2,3,1 -3,24.115.235.11,R_7isKCViDsKQlEKI,self,02PVF,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,-2,0,1,10 cents,100 minutes,15 days,5,7,It's impossible to tell,47,Monday,E,E,E,E,E,Female,High School (or equivalent),54,53 - 59,American,Female,1,,,1,,1,,2,1,8,5,6,4,7,3,4,2,7,1,3,5,6,2,5,4,7,8,1,3,6,1,6,3,8,5,7,4,2,6,3,1,4,5,7,2,4,7,5,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,4,2,9,1,7,2,3,4,1 -4,172.56.33.104,R_3mspEm6JKWUXXKp,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,10,10,10,10,10,10,10,5,6,5,5,10,10,9,8,7,8,10,7,10,10,5,5,5,6,5,5,6,10,6,7,8,10,5,6,6,8,5,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,-1,-1,-1,0,20 cents,100 minutes,24 days,6,9,Richard is as tall as Matt,47,Friday,D,D,B,F,F,Female,High School (or equivalent),56,53 - 59,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,7,4,5,3,1,1,5,3,7,4,6,2,5,2,8,7,4,6,3,1,1,5,8,4,6,7,2,3,1,3,5,2,6,4,7,4,3,7,8,2,6,5,1,4,6,2,5,3,7,8,1,9,3,2,4,1 -5,24.11.126.124,R_1uVtGJuKgZgiKkN,self,02PVF,past,6,5,6,8,6,7,6,7,6,9,5,6,7,6,7,8,7,5,8,3,4,4,4,4,3,3,4,4,4,5,4,4,5,2,4,5,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,0,0,1,10 cents,100 minutes,24 days,5,10,Richard is shorter than Matt,47,Saturday,D,D,C,C,B,Female,High School (or equivalent),46,46 - 52,American,Female,1,,,1,,1,,7,1,8,2,6,5,3,4,2,5,7,1,4,3,6,6,3,4,5,8,1,7,2,1,7,3,8,6,4,5,2,2,6,1,5,3,7,4,5,6,4,3,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,6,4,3,8,1,9,4,2,3,1 -6,174.243.208.59,R_7kYVHH87VjQDJ37,self,01FPV,future,7,1,3,10,1,7,8,1,10,4,4,1,1,10,9,9,1,8,6,6,9,1,4,6,6,8,7,1,6,0,0,1,4,5,8,10,1,6,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,0,-1,-2,0,10 cents,100 minutes,24 days,6,11,It's impossible to tell,35,Sunday,B,C,A,B,D,Female,University - Undergraduate,31,25 - 31,American,Female,1,,1,,,,1,5,1,8,3,4,7,6,2,3,6,7,1,4,2,5,3,4,6,7,8,1,5,2,1,3,7,8,6,5,4,2,4,3,1,2,5,7,6,3,7,6,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,4,2,6,7,3,1,5,2,4,3,1 -7,96.50.224.131,R_5pcojF1YyKdFg6i,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like a great deal,6,6,9,2,1,8,5,7,4,1,1,5,9,1,2,3,1,1,4,1,7,2,1,2,2,2,2,4,2,1,2,2,3,3,1,1,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Wednesday,B,F,A,B,B,Female,University - Undergraduate,70,67 - 73,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,2,6,5,1,1,2,5,7,3,6,4,2,3,8,7,6,4,5,1,1,6,8,3,5,2,4,7,1,6,4,2,5,3,7,4,3,2,8,6,7,5,1,3,6,8,2,5,4,7,1,9,4,2,3,1 -8,172.59.130.23,R_1owighir7JWSFeA,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,4,3,5,6,2,6,5,3,5,5,3,4,5,2,3,6,5,6,6,4,5,3,3,5,3,3,4,5,4,4,3,6,5,4,5,6,4,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-1,0,-1,-1,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,44,Sunday,C,F,E,B,C,Female,High School (or equivalent),37,32 - 38,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,5,6,7,3,1,1,6,3,7,4,5,2,6,2,8,7,5,3,4,1,1,4,8,3,7,6,5,2,1,3,2,6,4,5,7,4,3,5,8,2,7,6,1,8,7,5,2,9,6,3,1,4,4,3,2,1 -9,8.8.218.55,R_1uQFSQaH9JruGI8,self,02PVF,past,1,1,1,6,1,1,2,1,1,1,1,7,2,1,1,8,1,1,1,2,1,1,3,7,1,2,3,2,1,2,2,1,4,2,2,8,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,1,0,-2,0,10 cents,100 minutes,24 days,3,7,It's impossible to tell,57,Tuesday,D,D,A,D,D,Female,Trade School,68,67 - 73,American,Female,1,,,1,,1,,2,1,8,6,4,5,7,3,2,4,7,1,3,6,5,5,3,6,2,8,1,7,4,1,7,3,8,5,6,2,4,5,3,1,2,4,7,6,4,3,7,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,7,8,5,6,4,1,3,2,3,4,1 -10,71.72.86.140,R_3Kzdff3EmGP735n,self,02PVF,future,5,3,2,9,5,7,1,3,5,6,1,6,2,1,6,2,10,10,7,1,8,1,1,9,6,2,2,10,6,5,5,8,6,1,1,1,1,2,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,-1,0,0,1,1,10 cents,5 minutes,15 days,5,8,Richard is shorter than Matt,47,Tuesday,D,E,E,F,D,Male,Trade School,71,67 - 73,American,Male,1,,,1,,,1,4,1,8,3,5,2,6,7,4,6,7,1,5,2,3,5,3,2,6,8,1,7,4,1,4,3,8,6,7,5,2,4,5,1,6,2,7,3,2,3,5,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,5,3,4,2,6,1,7,4,3,2,1 -11,99.253.170.26,R_62VOh0w1n0XCqri,self,03VFP,future,9,1,5,10,4,1,9,3,9,9,4,9,7,8,2,8,1,7,8,2,2,1,5,10,3,8,8,2,2,6,3,6,8,9,9,9,7,5,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,-1,1,0,0,1,10 cents,25 minutes,24 days,5,10,It's impossible to tell,57,Friday,A,F,C,F,A,Female,College Diploma/Certificate,66,60 - 66,Canadian,Female,1,,,,1,,1,3,1,8,2,5,4,7,6,2,6,7,1,5,4,3,3,4,2,7,8,1,5,6,1,3,2,8,7,4,5,6,6,2,1,4,5,7,3,6,7,5,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,2,5,9,7,6,1,3,3,4,2,1 -12,184.65.123.102,R_3q9OHXdB2Zwvzjd,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,4,3,5,3,2,6,3,5,5,5,5,2,2,3,3,3,3,5,2,4,5,5,6,6,5,5,3,3,5,3,4,3,3,6,5,5,4,2,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-1,0,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,University - Graduate (Masters),40,39 - 45,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,6,5,7,1,1,3,6,7,5,2,4,7,2,8,3,5,6,4,1,1,4,8,6,2,5,7,3,1,2,5,4,6,3,7,6,5,7,8,3,4,2,1,4,8,5,2,9,6,3,1,7,4,2,3,1 -13,70.48.115.69,R_5Se0YtQoxtOlNfj,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,3,2,7,1,1,0,7,1,3,1,1,3,1,4,0,5,2,1,0,1,3,1,1,1,0,1,1,2,4,2,1,4,0,5,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,-1,-1,-1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,D,Male,University - Undergraduate,68,67 - 73,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,3,5,7,2,1,1,2,5,7,6,3,4,3,5,8,2,7,4,6,1,1,5,8,4,2,7,6,3,1,6,3,4,2,5,7,5,6,4,8,3,7,2,1,7,8,4,5,2,3,6,1,9,2,3,4,1 -14,67.164.57.2,R_32PWbFhczPJMtVJ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,1,4,4,0,4,2,0,7,2,0,5,2,1,6,6,1,0,6,2,5,1,3,4,0,0,4,2,5,4,4,6,5,3,5,7,3,1,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,2,0,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Female,University - Undergraduate,55,53 - 59,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,4,5,6,2,1,1,3,2,7,6,5,4,5,7,8,6,3,4,2,1,1,3,8,4,6,5,2,7,1,2,6,5,4,3,7,4,6,5,8,2,3,7,1,3,6,8,4,5,7,9,1,2,3,2,4,1 -15,143.105.203.124,R_7ffgbuVEJwOpSKn,self,02PVF,past,10,0,0,5,0,9,3,0,0,10,0,0,2,0,0,0,0,0,10,2,5,0,0,3,0,4,2,0,0,5,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,0,-2,0,0,2,-2,10 cents,100 minutes,24 days,2,8,It's impossible to tell,44,Sunday,D,E,A,B,F,Female,College Diploma/Certificate,55,53 - 59,Canadian,Female,1,,,1,,1,,3,1,8,7,4,2,5,6,3,4,7,1,5,2,6,4,3,5,7,8,1,6,2,1,5,4,8,6,2,3,7,3,2,1,6,4,7,5,3,4,5,2,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,3,9,2,5,1,8,4,3,2,1 -16,142.68.247.142,R_7LbkNs6kej1ZjNv,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,1,9,10,10,1,5,1,1,1,0,6,3,1,1,5,2,2,7,2,7,1,9,10,10,2,2,2,2,2,1,2,2,1,7,7,0,8,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,2,1,-2,-2,2,10 cents,100 minutes,24 days,5,12,It's impossible to tell,57,Monday,D,C,A,F,C,Male,College Diploma/Certificate,58,53 - 59,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,4,6,2,3,1,1,4,6,7,3,2,5,7,6,8,4,3,5,2,1,1,6,8,3,7,4,5,2,1,3,2,4,5,6,7,7,2,4,8,3,5,6,1,8,9,2,5,6,3,7,1,4,4,2,3,1 -17,50.101.180.162,R_7qxOZidaFMJCdTb,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,1,0,1,0,0,0,0,10,1,1,1,1,1,1,1,10,10,1,1,1,1,1,1,1,2,1,1,2,1,1,10,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,1,1,1,10 cents,25 minutes,24 days,3,7,It's impossible to tell,47,Tuesday,B,D,F,B,C,Male,High School (or equivalent),59,53 - 59,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,2,7,4,6,1,1,3,2,7,6,5,4,2,5,8,4,6,7,3,1,1,5,8,4,6,3,2,7,1,3,4,6,2,5,7,2,4,6,8,7,3,5,1,2,8,5,6,4,9,7,1,3,2,4,3,1 -18,70.77.111.224,R_5dQbcX29Sasc60g,self,03VFP,future,6,0,2,1,0,4,3,7,5,4,0,0,1,1,2,2,4,0,2,0,5,0,1,7,0,5,1,3,8,6,1,6,1,1,8,7,5,1,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,1,0,-1,0,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,57,Monday,D,D,B,B,C,Female,High School (or equivalent),37,32 - 38,Canadian,Female,1,,,,1,,1,2,1,8,3,7,4,5,6,5,4,7,1,6,3,2,5,7,6,2,8,1,4,3,1,7,6,8,5,2,3,4,2,3,1,4,6,7,5,3,4,6,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,8,7,4,5,2,1,3,4,3,2,1 -19,107.201.216.244,R_5d7bsweNx5eZlys,self,03VFP,future,6,6,3,8,5,6,5,3,5,7,6,8,6,8,5,6,7,8,7,6,7,6,2,5,4,6,4,5,5,9,5,4,7,7,5,5,2,8,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-2,-2,-2,1,10 cents,5 minutes,24 days,5,8,Richard is shorter than Matt,57,Sunday,D,E,B,B,D,Male,University - Undergraduate,53,53 - 59,American,Male,1,,,,1,,1,4,1,8,5,7,2,3,6,3,5,7,1,6,4,2,6,7,3,2,8,1,4,5,1,4,3,8,6,7,2,5,5,4,1,3,6,7,2,5,4,3,6,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,7,2,8,3,9,1,6,3,2,4,1 -20,172.59.84.21,R_1jwelY9lGGNWLTh,self,03VFP,future,1,1,5,9,1,8,4,2,3,2,1,7,2,1,2,8,5,4,2,3,7,1,8,8,3,7,4,9,4,6,1,6,1,6,5,9,3,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,1,1,-1,0,10 cents,100 minutes,24 days,5,9,It's impossible to tell,39,Tuesday,D,E,B,B,C,Female,University - Graduate (Masters),71,67 - 73,American,Female,1,,,,1,,1,7,1,8,3,6,5,2,4,6,4,7,1,5,2,3,6,4,7,2,8,1,5,3,1,5,7,8,4,3,2,6,2,4,1,3,6,7,5,7,3,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,7,5,6,9,1,3,4,3,2,1 -21,38.40.122.117,R_3dHn2flSFuZ1t1s,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,2,6,2,8,4,6,4,5,4,4,5,4,4,7,5,4,6,5,3,2,2,7,3,5,6,6,3,6,5,4,5,7,6,7,3,3,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,0,-1,1,1,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,College Diploma/Certificate,64,60 - 66,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,7,2,3,5,1,1,4,6,7,5,2,3,4,5,8,2,3,6,7,1,1,7,8,5,2,3,6,4,1,6,3,5,2,4,7,5,6,2,8,4,3,7,1,6,4,8,9,3,5,7,1,2,4,3,2,1 -22,173.69.35.165,R_1oouRtI22pb64Yp,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,2,3,3,1,7,4,4,2,7,1,4,3,1,1,2,1,4,4,2,2,0,1,6,0,2,3,1,5,7,7,4,1,2,6,2,0,3,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,24 days,7,11,It's impossible to tell,47,Sunday,E,C,C,D,F,Male,High School (or equivalent),48,46 - 52,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,6,5,7,1,1,4,2,7,5,6,3,5,4,8,7,6,3,2,1,1,7,8,2,4,3,6,5,1,2,4,6,5,3,7,3,7,4,8,5,2,6,1,9,2,5,7,4,3,6,1,8,2,4,3,1 -23,166.48.226.181,R_3U2WuvCG5VmYZul,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like a great deal,4,0,10,10,0,10,10,1,10,10,9,5,9,10,10,10,10,9,9,5,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,2,2,-2,2,-1,-2,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Tuesday,D,E,B,F,E,Male,High School (or equivalent),69,67 - 73,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,6,3,4,1,1,6,3,7,5,4,2,4,3,8,7,6,5,2,1,1,2,8,3,4,7,5,6,1,3,6,2,4,5,7,3,5,7,8,6,4,2,1,9,5,2,8,3,6,4,1,7,4,3,2,1 -24,72.205.245.200,R_7EEj4xtAIYfKd9L,self,03VFP,past,4,0,0,2,3,0,1,0,3,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,4,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,-2,-1,-1,-2,-1,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Sunday,B,E,F,A,E,Female,High School (or equivalent),61,60 - 66,American,Female,1,,,,1,1,,6,1,8,4,7,5,2,3,5,6,7,1,2,3,4,5,2,3,4,8,1,6,7,1,6,7,8,3,5,2,4,3,6,1,5,2,7,4,6,2,4,3,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,6,7,9,5,8,1,3,4,2,3,1 -25,73.181.28.193,R_3gGiBBhlBOvVFlE,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,2,5,2,0,2,7,2,2,2,6,2,7,7,7,2,7,4,2,1,1,2,3,1,3,2,1,1,1,1,1,1,2,1,4,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,2,-1,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,C,Male,University - Undergraduate,73,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,3,2,5,4,1,1,2,5,7,3,6,4,4,6,8,3,5,2,7,1,1,4,8,2,3,6,5,7,1,2,6,5,3,4,7,7,5,2,8,3,6,4,1,9,7,6,2,8,5,3,1,4,4,2,3,1 -26,216.121.132.147,R_7nMT8diHeTSIihb,self,01FPV,past,3,3,3,3,4,3,3,4,4,5,5,5,4,3,4,4,3,5,5,4,3,4,3,4,3,3,3,4,4,4,5,5,4,4,5,3,4,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-1,0,1,0,1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,57,Tuesday,F,C,A,D,F,Male,High School (or equivalent),72,67 - 73,Canadian,Male,1,,1,,,1,,4,1,8,2,7,3,6,5,3,5,7,1,6,2,4,3,7,4,2,8,1,5,6,1,5,3,8,4,2,7,6,3,4,1,5,2,7,6,6,4,2,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,9,6,3,1,5,2,3,4,1 -27,158.222.70.249,R_7zU3tK7JmKlvXx8,self,02PVF,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,1,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Sunday,B,E,E,E,D,Female,University - Undergraduate,70,67 - 73,American,Female,1,,,1,,,1,2,1,8,5,6,3,7,4,4,2,7,1,5,3,6,7,3,6,5,8,1,4,2,1,3,6,8,7,5,2,4,2,6,1,5,4,7,3,2,6,5,4,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,7,8,6,4,5,1,2,3,4,2,1 -28,99.231.20.84,R_77s3k6J8GEal3QI,self,02PVF,future,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,-1,-1,-2,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,C,B,D,Male,Trade School,59,53 - 59,Canadian,Male,1,,,1,,,1,3,1,8,2,5,7,4,6,4,6,7,1,2,3,5,2,7,6,5,8,1,4,3,1,2,4,8,5,6,3,7,2,5,1,6,3,7,4,2,5,3,7,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,3,6,4,9,7,1,8,3,2,4,1 -29,142.112.92.160,R_342D9dblbY7XyOP,self,01FPV,past,5,1,3,1,1,7,1,1,1,1,1,2,1,1,1,5,1,1,4,1,7,2,7,3,5,6,4,1,1,5,1,1,1,5,1,7,2,4,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,-2,2,1,1,0,10 cents,100 minutes,24 days,2,7,Richard is as tall as Matt,57,Tuesday,B,D,A,A,A,Female,College Diploma/Certificate,64,60 - 66,Canadian,Female,1,,1,,,1,,3,1,8,7,2,5,6,4,5,4,7,1,6,3,2,7,2,3,4,8,1,6,5,1,6,3,8,2,4,5,7,3,5,1,2,6,7,4,4,6,5,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,7,9,3,2,1,4,3,4,2,1 -30,99.239.208.184,R_5q4bJFwk4H4AlL4,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Dislike somewhat,6,8,9,9,5,8,7,8,8,4,6,6,7,6,6,3,6,8,5,9,9,7,5,3,5,6,6,5,6,7,4,6,5,4,8,7,5,6,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-1,0,1,0,1,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Tuesday,D,D,E,A,F,Female,University - Undergraduate,33,32 - 38,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,2,5,3,7,1,1,6,4,7,3,5,2,5,6,8,4,2,3,7,1,1,5,8,3,6,4,7,2,1,4,6,5,2,3,7,5,4,2,8,3,6,7,1,4,7,6,8,9,3,2,1,5,2,4,3,1 -31,73.125.236.39,R_60JGyV3eFFLRTFT,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,4,4,4,3,3,3,4,3,3,3,4,3,2,3,3,2,3,3,3,4,3,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,1,2,-2,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,B,E,F,A,B,Male,College Diploma/Certificate,70,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,2,3,6,7,1,1,6,5,7,2,3,4,6,2,8,5,7,4,3,1,1,6,8,2,4,5,7,3,1,6,2,3,4,5,7,4,2,6,8,3,5,7,1,9,2,3,6,7,8,5,1,4,2,4,3,1 -32,216.167.87.72,R_6z0e0WZAYrvGkFj,self,02PVF,past,8,6,7,7,0,6,6,7,1,8,4,5,7,8,6,8,1,0,6,0,2,8,7,6,2,6,7,4,2,6,8,6,8,2,7,2,8,6,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-1,2,5 cents,5 minutes,47 days,5,12,It's impossible to tell,39,Wednesday,D,D,E,F,E,Male,University - Undergraduate,36,32 - 38,American,Male,1,,,1,,1,,4,1,8,2,6,3,7,5,2,4,7,1,3,5,6,7,4,5,2,8,1,6,3,1,4,3,8,5,6,7,2,5,6,1,4,2,7,3,3,7,2,5,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,4,6,7,5,3,1,9,3,2,4,1 -33,76.209.9.90,R_1kaI6Bv5ooY5rSI,self,02PVF,future,8,9,9,9,9,9,8,8,8,8,8,8,7,9,9,9,8,9,8,9,10,7,7,8,8,8,10,10,8,8,9,8,9,8,8,8,8,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,1,2,1,1,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,D,A,B,F,Female,University - Graduate (Masters),39,39 - 45,American,Female,1,,,1,,,1,7,1,8,5,2,6,3,4,5,4,7,1,6,2,3,7,4,5,2,8,1,6,3,1,3,5,8,6,7,2,4,3,6,1,2,5,7,4,3,4,6,7,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,4,6,5,2,3,1,8,3,2,4,1 -34,99.240.69.37,R_1D7O1sEmb68E3Je,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,-2,-2,0,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,B,D,B,E,Female,College Diploma/Certificate,41,39 - 45,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,3,2,1,1,5,6,7,2,3,4,6,4,8,5,7,2,3,1,1,2,8,7,3,6,4,5,1,6,4,2,5,3,7,4,6,7,8,3,2,5,1,9,2,3,8,4,7,5,1,6,4,3,2,1 -35,142.68.87.37,R_1PT9NJHpYIRMv6B,self,01FPV,future,1,2,1,1,1,6,3,1,2,2,1,3,1,5,1,1,1,1,1,0,1,1,2,5,1,1,2,2,3,1,2,1,4,3,2,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-2,0,0,1,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,D,F,F,F,A,Female,High School (or equivalent),60,60 - 66,Canadian,Female,1,,1,,,,1,2,1,8,4,7,3,6,5,6,3,7,1,2,4,5,4,2,3,5,8,1,7,6,1,6,7,8,4,3,2,5,3,5,1,4,6,7,2,6,5,7,3,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,7,5,8,3,4,1,9,4,3,2,1 -36,50.32.38.147,R_3D7Cup12BIh6Khr,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,8,0,7,9,0,4,5,4,0,6,0,9,5,0,4,7,0,0,8,5,4,0,7,9,0,7,5,3,0,6,0,6,1,0,6,7,0,0,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,-2,-2,1,10 cents,100 minutes,24 days,5,12,Richard is as tall as Matt,47,Sunday,D,E,B,D,F,Female,University - Undergraduate,59,53 - 59,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,6,4,2,1,1,3,5,7,6,2,4,3,5,8,6,7,4,2,1,1,5,8,6,3,2,7,4,1,6,4,2,5,3,7,3,4,7,8,6,5,2,1,7,8,9,6,3,5,2,1,4,2,4,3,1 -37,142.255.66.165,R_6QaRsEcmhpAOA1u,self,02PVF,past,5,0,6,8,3,7,4,6,3,5,0,3,6,0,4,5,0,5,5,0,3,0,3,4,3,2,3,5,3,4,5,4,3,0,0,1,0,1,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,0,1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,A,C,B,B,A,Female,University - Graduate (Masters),68,67 - 73,American,Female,1,,,1,,1,,5,1,8,4,3,2,6,7,2,4,7,1,5,6,3,2,4,7,5,8,1,6,3,1,6,7,8,2,5,4,3,5,2,1,6,4,7,3,5,4,7,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,9,3,6,5,7,1,2,3,4,2,1 -38,97.71.84.16,R_6YbIJPh0dD6EwFo,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,3,2,0,1,1,2,2,0,1,0,1,1,2,1,0,3,1,3,0,0,4,0,2,2,2,3,0,0,2,0,3,3,2,0,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,0,-2,0,2,-2,1,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Monday,D,E,B,A,C,Male,High School (or equivalent),71,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,3,6,5,1,1,3,6,7,5,2,4,5,7,8,3,4,6,2,1,1,3,8,6,4,2,7,5,1,3,2,5,6,4,7,3,4,7,8,6,2,5,1,9,4,7,5,2,6,8,1,3,4,3,2,1 -39,76.142.100.45,R_5JCUQ4pY2tfedrh,self,01FPV,past,2,2,2,2,2,2,5,2,0,1,1,2,1,1,1,1,2,1,1,1,1,3,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,2,-2,-2,-2,-1,-1,10 cents,100 minutes,24 days,4,10,It's impossible to tell,44,Tuesday,D,E,D,D,B,Male,College Diploma/Certificate,63,60 - 66,American,Male,1,,1,,,1,,4,1,8,2,3,7,6,5,4,3,7,1,6,2,5,6,2,4,7,8,1,5,3,1,6,3,8,7,5,2,4,2,6,1,3,4,7,5,7,6,3,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,9,8,5,2,1,4,4,3,2,1 -40,172.56.162.27,R_3j1EEJSUHUokMeg,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,2,3,6,5,4,5,5,7,4,6,6,4,4,5,4,4,3,5,5,3,1,6,3,1,6,4,3,3,4,4,4,3,5,5,4,3,2,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,2,2,-2,2,0,1,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Saturday,D,E,B,B,D,Male,University - Undergraduate,43,39 - 45,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,7,2,6,3,1,1,6,3,7,5,2,4,7,3,8,4,5,2,6,1,1,7,8,5,6,4,2,3,1,2,4,3,6,5,7,5,3,2,8,7,6,4,1,3,7,4,6,5,8,2,1,9,2,3,4,1 -41,24.138.24.19,R_13AwsDN7KCU3Cq5,self,02PVF,future,2,1,2,4,1,4,2,2,2,5,1,2,2,1,2,1,2,1,6,1,4,1,3,2,1,5,2,1,1,7,10,1,2,2,2,1,1,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,1,-1,-2,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,D,D,C,D,D,Female,High School (or equivalent),70,67 - 73,Canadian,Female,1,,,1,,,1,4,1,8,3,5,6,7,2,4,5,7,1,6,2,3,4,7,2,3,8,1,6,5,1,3,4,8,7,2,6,5,5,2,1,6,4,7,3,4,3,6,7,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,5,7,6,8,4,1,3,2,3,4,1 -42,71.51.64.53,R_7mejY7lPfou9ciJ,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,3,3,4,3,10,3,5,5,5,4,4,4,3,3,3,3,4,3,5,3,3,3,3,4,4,3,4,4,4,5,4,4,4,4,5,8,3,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,0,0,1,-1,0,5 cents,5 minutes,24 days,5,11,Richard is taller than Matt,47,Wednesday,E,E,B,A,B,Female,College Diploma/Certificate,66,60 - 66,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,6,3,7,5,1,1,6,5,7,2,4,3,2,4,8,7,3,6,5,1,1,6,8,5,2,4,7,3,1,3,5,6,4,2,7,4,3,2,8,7,6,5,1,7,3,8,6,4,9,2,1,5,2,4,3,1 -43,68.104.115.31,R_3QlovrUx5E5BdYo,self,01FPV,future,1,3,1,2,1,1,2,3,2,4,7,3,4,2,3,7,2,4,7,5,3,1,2,5,6,2,4,8,7,1,7,7,6,1,4,4,1,9,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,-2,-1,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,High School (or equivalent),44,39 - 45,American,Male,1,,1,,,,1,3,1,8,6,4,7,5,2,6,3,7,1,5,4,2,4,3,5,6,8,1,7,2,1,6,5,8,4,3,2,7,6,3,1,5,2,7,4,4,2,3,6,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,4,3,8,5,7,1,6,4,3,2,1 -44,24.114.109.109,R_5Ase2FAMi56eceJ,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,5,2,5,2,2,2,2,1,1,2,2,1,2,2,1,1,1,2,3,2,7,2,3,5,2,10,10,3,2,5,2,1,2,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0,0,-2,2,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,F,A,B,D,Female,University - Undergraduate,65,60 - 66,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,2,5,6,3,1,1,2,5,7,6,3,4,5,2,8,4,7,6,3,1,1,7,8,3,4,5,2,6,1,4,3,6,5,2,7,5,7,4,8,3,6,2,1,9,6,2,5,8,7,4,1,3,4,2,3,1 -45,72.69.113.7,R_1wm3LNKiuw3UbTz,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,10,10,10,0,0,10,10,0,0,0,0,0,10,10,0,0,0,10,0,0,0,9,10,10,10,10,10,0,0,10,0,0,10,10,10,0,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,-1,1,1,2,1,2,5 cents,5 minutes,47 days,5,8,Zach is shorter than Matt,47,Sunday,B,E,B,B,F,Male,College Diploma/Certificate,25,25 - 31,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,6,3,4,1,1,6,5,7,3,4,2,4,5,8,2,3,7,6,1,1,3,8,5,2,7,6,4,1,3,5,4,6,2,7,6,2,4,8,5,7,3,1,4,9,2,8,6,3,7,1,5,2,3,4,1 -46,174.91.107.208,R_1isv4eQ4kiY5ubV,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,0,0,1,1,1,1,4,2,5,4,1,4,8,6,2,7,0,3,8,0,0,0,4,2,1,1,5,5,3,2,1,0,0,1,5,4,1,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-2,1,1,0,-2,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Wednesday,D,C,D,B,E,Male,Professional Degree (ex. JD/MD),52,46 - 52,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,5,2,4,6,1,1,2,5,7,3,6,4,6,5,8,3,7,4,2,1,1,7,8,2,3,5,6,4,1,5,3,2,4,6,7,4,3,7,8,2,6,5,1,4,2,7,5,9,8,6,1,3,2,3,4,1 -47,216.121.193.201,R_6VqHtxCkLOn3PNF,self,01FPV,past,7,8,7,8,8,8,8,8,7,6,7,7,8,7,8,8,8,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,0,1,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,C,E,D,Male,College Diploma/Certificate,64,60 - 66,Canadian,Male,1,,1,,,1,,7,1,8,5,3,4,2,6,4,3,7,1,6,5,2,5,4,7,3,8,1,2,6,1,7,3,8,5,2,4,6,6,2,1,5,4,7,3,6,5,7,2,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,8,4,9,6,1,7,2,3,4,1 -48,143.105.101.173,R_5FT5EjbiJm8AySl,self,02PVF,past,4,7,9,8,5,6,8,5,7,8,8,7,8,10,8,8,9,8,6,10,6,3,6,7,6,6,6,6,6,8,8,7,6,7,5,6,7,8,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-1,1,-1,-1,-2,10 cents,100 minutes,24 days,5,12,Richard is taller than Matt,44,Sunday,D,D,D,C,D,Female,University - Undergraduate,42,39 - 45,Canadian,Female,1,,,1,,1,,5,1,8,3,4,6,7,2,5,6,7,1,3,2,4,2,5,4,3,8,1,6,7,1,7,3,8,5,6,4,2,2,5,1,6,4,7,3,4,3,2,7,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,8,2,4,7,1,9,4,3,2,1 -49,142.169.18.148,R_3jnWiifnEJIg85r,self,03VFP,future,5,5,5,5,6,6,4,3,3,4,4,4,4,6,6,6,5,6,5,6,5,5,4,4,5,5,5,6,5,5,5,5,5,2,7,7,6,8,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,1,-1,1,0,0,1,10 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,47,Sunday,B,D,F,B,E,Female,College Diploma/Certificate,52,46 - 52,Canadian,Female,1,,,,1,,1,6,1,8,3,7,4,5,2,4,5,7,1,3,2,6,7,3,5,2,8,1,6,4,1,6,3,8,4,7,2,5,3,5,1,6,2,7,4,4,5,6,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,9,5,7,8,4,3,1,6,4,2,3,1 -50,99.252.65.40,R_5BeV3dKxkPhAiP1,self,01FPV,future,5,2,5,2,2,6,4,3,1,2,2,3,2,1,2,4,1,3,4,3,5,2,8,3,3,8,5,3,2,5,2,6,4,1,2,2,1,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,-2,1,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,D,E,B,B,F,Male,University - Undergraduate,58,53 - 59,Canadian,Male,1,,1,,,,1,4,1,8,3,7,6,2,5,3,5,7,1,4,6,2,7,2,4,6,8,1,5,3,1,6,2,8,4,5,7,3,2,5,1,6,4,7,3,7,4,2,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,7,4,5,6,9,1,2,2,4,3,1 -51,134.41.254.166,R_7e9ByLnD0buHMBP,self,01FPV,past,7,1,1,10,10,10,7,5,6,9,6,5,7,1,6,1,8,1,7,1,10,1,1,10,9,8,8,7,1,5,5,5,5,6,6,10,7,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,1,-1,-1,0,10 cents,100 minutes,24 days,3,10,Zach is shorter than Matt,47,Tuesday,F,E,C,F,F,Female,High School (or equivalent),68,67 - 73,Canadian,Female,1,,1,,,1,,7,1,8,5,6,3,4,2,2,5,7,1,3,6,4,6,2,7,5,8,1,3,4,1,6,2,8,3,4,5,7,2,4,1,5,6,7,3,6,3,7,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,2,7,6,1,9,4,3,2,1 -52,174.88.96.249,R_6FmlPVXEd2nsotV,self,03VFP,past,0,0,10,10,0,0,3,0,0,0,0,7,0,10,10,10,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,0,2,-2,1,10 cents,100 minutes,24 days,5,11,It's impossible to tell,57,Sunday,D,C,B,B,C,Female,High School (or equivalent),60,60 - 66,Canadian,Female,1,,,,1,1,,6,1,8,5,7,3,4,2,2,5,7,1,4,6,3,7,6,5,4,8,1,3,2,1,5,2,8,7,4,6,3,5,3,1,4,2,7,6,4,3,5,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,8,7,9,6,1,5,2,4,3,1 -53,174.116.67.224,R_6ehrzLvA3tq4NJ6,self,03VFP,future,1,1,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,1,1,2,1,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-1,0,0,-1,1,10 cents,100 minutes,24 days,4,12,Richard is taller than Zach,57,Monday,D,E,D,F,C,Female,University - PhD,61,60 - 66,Canadian,Female,1,,,,1,,1,3,1,8,5,4,6,7,2,5,6,7,1,3,2,4,7,4,2,6,8,1,3,5,1,3,5,8,7,6,4,2,6,5,1,3,4,7,2,4,5,7,6,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,7,9,5,2,6,1,4,4,2,3,1 -54,173.238.254.245,R_5Kl2CxT4vz2BWNG,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,1,5,5,5,5,3,5,5,5,5,5,5,5,5,5,5,5,5,5,5,9,10,9,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,0,-2,1,-1,0,0,10 cents,100 minutes,47 days,5,12,Richard is taller than Zach,57,Tuesday,B,C,C,C,C,Female,High School (or equivalent),56,53 - 59,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,5,6,7,1,1,5,3,7,4,2,6,4,3,8,6,2,7,5,1,1,7,8,5,4,6,3,2,1,4,2,6,3,5,7,2,6,5,8,7,3,4,1,5,8,9,7,4,3,2,1,6,3,4,2,1 -55,99.224.218.61,R_6CDETRM6asYrSlE,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,1,6,4,2,4,3,4,5,3,3,1,3,1,3,4,3,2,3,2,4,2,3,5,4,3,3,4,3,3,3,4,3,2,2,3,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,University - Undergraduate,47,46 - 52,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,4,7,3,6,1,1,4,3,7,5,2,6,7,4,8,2,3,5,6,1,1,3,8,4,6,5,7,2,1,3,2,6,5,4,7,3,7,4,8,5,6,2,1,4,7,8,9,6,5,2,1,3,4,3,2,1 -56,134.41.96.233,R_6c0zmyhOdksAzvR,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,0,0,2,1,0,0,0,0,2,0,0,2,0,0,0,5,0,0,0,0,0,0,4,3,4,0,1,2,2,0,0,2,1,0,0,5,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,0,-2,0,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Tuesday,D,E,D,E,E,Female,College Diploma/Certificate,67,67 - 73,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,6,5,4,3,1,1,6,4,7,5,3,2,3,7,8,5,4,6,2,1,1,4,8,2,7,6,3,5,1,2,3,4,5,6,7,3,4,5,8,7,2,6,1,9,3,5,4,6,7,8,1,2,3,4,2,1 -57,129.222.112.69,R_5Q3nM2jp9LArI1a,self,02PVF,past,2,1,2,7,1,4,5,7,6,7,8,8,7,5,7,6,8,8,4,6,5,5,1,4,1,6,4,5,6,5,5,3,5,4,6,5,4,6,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,0,-1,2,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,53,Wednesday,A,E,B,A,F,Female,College Diploma/Certificate,60,60 - 66,Canadian,Female,1,,,1,,1,,5,1,8,7,2,6,4,3,6,4,7,1,5,2,3,6,3,2,7,8,1,4,5,1,2,4,8,3,6,7,5,5,4,1,3,2,7,6,2,6,4,7,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,6,2,9,8,5,1,4,3,4,2,1 -58,198.84.161.112,R_3Du74dFeGNl3Vyc,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,5,3,6,3,2,5,3,3,3,3,2,2,3,2,3,2,3,2,3,3,3,3,2,3,2,2,2,4,3,2,1,6,1,3,4,2,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-1,-1,-1,-1,1,5 cents,100 minutes,24 days,2,11,Richard is shorter than Matt,47,Tuesday,D,E,B,B,B,Male,University - Graduate (Masters),58,53 - 59,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,7,2,6,1,1,2,6,7,5,3,4,3,6,8,2,5,4,7,1,1,3,8,6,5,7,4,2,1,2,4,3,6,5,7,7,5,2,8,6,3,4,1,3,4,5,2,9,8,7,1,6,2,3,4,1 -59,173.33.241.120,R_5J4RNznyirWMEfF,self,02PVF,past,2,1,2,4,4,3,4,6,5,6,8,3,5,8,5,3,9,9,9,7,3,1,2,7,2,2,1,3,3,3,6,2,2,1,2,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,1,-2,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,C,Male,University - Graduate (Masters),60,60 - 66,Canadian,Male,1,,,1,,1,,4,1,8,5,6,7,3,2,4,5,7,1,2,6,3,7,3,2,5,8,1,4,6,1,2,6,8,3,5,4,7,6,3,1,2,4,7,5,2,7,6,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,6,7,5,9,1,8,2,4,3,1 -60,24.72.60.125,R_63D5OgaUrnExDI7,self,03VFP,future,0,0,1,3,5,7,3,7,0,8,4,7,5,1,6,6,5,4,7,3,1,1,0,5,4,1,2,2,0,3,3,6,5,1,2,7,3,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,1,-1,-2,-1,10 cents,5 minutes,15 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,B,C,Male,High School (or equivalent),67,67 - 73,Canadian,Male,1,,,,1,,1,4,1,8,6,3,5,7,2,2,4,7,1,6,3,5,5,6,4,7,8,1,3,2,1,6,2,8,4,5,3,7,4,6,1,3,5,7,2,7,4,3,5,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,9,8,5,7,1,2,4,3,2,1 -61,46.110.110.142,R_6XoWva3vJmwrgSl,self,03VFP,future,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,5,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,-2,-2,0,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Monday,D,C,B,F,C,Male,University - Graduate (Masters),73,67 - 73,American,Male,1,,,,1,,1,2,1,8,6,3,5,4,7,4,6,7,1,3,2,5,4,5,7,2,8,1,6,3,1,3,6,8,2,4,7,5,4,3,1,6,2,7,5,4,7,3,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,2,3,6,9,7,1,8,2,4,3,1 -62,99.241.188.56,R_7uNFCO6KtDohgg2,self,02PVF,future,10,0,0,10,0,10,7,0,0,5,4,0,5,0,0,10,0,0,0,2,8,0,0,0,0,7,5,10,7,10,5,7,6,0,0,10,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,0,-1,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,C,C,C,C,C,Female,University - Graduate (Masters),54,53 - 59,Canadian,Female,1,,,1,,,1,6,1,8,3,4,7,5,2,2,5,7,1,4,3,6,7,5,2,3,8,1,4,6,1,6,4,8,7,2,3,5,3,5,1,4,6,7,2,3,6,7,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,6,3,7,9,2,1,4,4,2,3,1 -63,143.244.122.244,R_7SisiLLTX8HUQdG,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,9,2,9,5,1,5,5,3,5,5,5,5,3,3,7,9,5,2,3,5,9,2,9,10,1,1,3,3,5,1,9,1,7,5,5,9,5,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,-2,-2,-2,1,2,2,-2,10 cents,100 minutes,47 days,3,10,Richard is taller than Zach,35,Monday,C,E,A,F,B,Female,University - Undergraduate,59,53 - 59,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,5,3,6,1,1,5,4,7,6,2,3,5,6,8,7,3,2,4,1,1,3,8,7,2,6,5,4,1,4,2,5,6,3,7,5,2,7,8,3,6,4,1,8,5,4,6,7,9,3,1,2,3,2,4,1 -64,24.86.12.98,R_51ExPwx99VTA8t0,self,03VFP,past,4,3,3,2,3,6,5,3,3,5,4,3,5,6,5,5,5,6,6,5,2,5,4,3,3,3,5,5,3,5,5,5,5,5,4,4,5,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,0,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,E,D,B,Male,High School (or equivalent),40,39 - 45,Canadian,Male,1,,,,1,1,,4,1,8,5,2,7,6,3,2,3,7,1,4,5,6,2,5,3,6,8,1,7,4,1,3,5,8,7,2,6,4,2,5,1,3,6,7,4,3,5,2,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,9,7,4,5,3,1,2,3,4,2,1 -65,98.254.176.121,R_65DiNnXjMRm9opH,self,01FPV,past,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,0,-1,-1,0,-2,0,10 cents,25 minutes,24 days,4,8,Richard is taller than Zach,35,Tuesday,A,C,A,B,E,Female,High School (or equivalent),73,67 - 73,American,Female,1,,1,,,1,,4,1,8,7,2,3,6,5,2,5,7,1,4,3,6,7,4,2,5,8,1,3,6,1,3,4,8,6,2,7,5,5,6,1,2,3,7,4,2,4,7,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,7,8,5,3,6,1,9,4,3,2,1 -66,67.80.34.146,R_1VkCpA4ZtAJiPyY,self,02PVF,future,6,6,7,6,7,7,6,6,8,7,5,6,6,6,5,6,6,8,6,7,6,7,7,6,7,7,6,7,6,8,8,8,8,6,7,6,7,7,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,1,1,0,10 cents,100 minutes,24 days,5,7,Richard is taller than Matt,57,Sunday,D,C,E,E,E,Female,High School (or equivalent),53,53 - 59,American,Female,1,,,1,,,1,2,1,8,6,5,4,3,7,6,4,7,1,5,3,2,2,6,5,7,8,1,3,4,1,2,3,8,7,4,5,6,5,6,1,2,4,7,3,6,3,7,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,6,8,9,3,4,1,5,2,3,4,1 -67,99.237.227.30,R_6enUTHdqt8jqkQ9,self,02PVF,past,3,1,3,5,6,2,3,7,7,5,7,6,6,7,6,7,8,6,6,6,1,2,4,2,3,2,2,2,4,2,2,4,1,2,3,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,College Diploma/Certificate,62,60 - 66,Canadian,Male,1,,,1,,1,,6,1,8,4,5,2,7,3,4,2,7,1,6,3,5,7,6,4,3,8,1,2,5,1,3,7,8,6,2,4,5,5,6,1,3,4,7,2,4,2,3,7,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,4,9,3,7,1,6,3,2,4,1 -68,24.80.152.201,R_6dFCig2dIm0MOvF,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,3,6,5,3,4,6,0,0,3,0,1,1,4,5,5,2,0,2,1,4,2,4,6,3,5,1,3,1,5,3,1,1,6,6,6,2,0,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-2,2,-2,-1,-2,-2,2,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,A,B,Male,University - Graduate (Masters),49,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,2,6,1,1,5,4,7,6,2,3,2,3,8,5,6,4,7,1,1,5,8,4,6,7,2,3,1,3,5,2,4,6,7,6,7,5,8,4,3,2,1,3,6,9,5,8,2,7,1,4,2,3,4,1 -69,67.85.244.6,R_3VplmHt5gie22yZ,self,01FPV,past,8,5,1,9,7,5,10,8,6,7,9,10,5,5,6,6,5,5,5,6,2,6,6,6,6,6,6,9,7,4,4,4,8,8,7,8,8,7,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,1,-2,1,10 cents,100 minutes,24 days,5,9,Richard is shorter than Matt,35,Monday,A,C,C,E,C,Female,University - Graduate (Masters),70,67 - 73,American,Female,1,,1,,,1,,5,1,8,6,2,3,4,7,3,5,7,1,4,6,2,7,3,6,5,8,1,4,2,1,2,3,8,4,5,7,6,6,3,1,2,5,7,4,3,4,6,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,9,2,3,6,1,5,4,2,3,1 -70,184.169.60.167,R_6kLgt72pgtLfPne,self,01FPV,future,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,2,1,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,0,0,-2,0,10 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,F,D,Male,College Diploma/Certificate,61,60 - 66,Canadian,Male,1,,1,,,,1,7,1,8,4,6,2,3,5,2,6,7,1,3,5,4,4,6,2,5,8,1,3,7,1,2,6,8,5,7,3,4,6,2,1,4,3,7,5,7,2,5,4,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,9,7,5,2,8,1,6,3,2,4,1 -71,73.148.183.115,R_6JEGpSAGYZBdF5K,self,01FPV,future,0,5,0,0,3,5,4,6,3,5,5,1,3,5,2,0,5,4,4,6,0,3,1,0,1,3,2,4,5,3,5,1,1,3,1,1,3,4,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,39,Saturday,D,C,B,C,C,Male,University - Undergraduate,72,67 - 73,American,Male,1,,1,,,,1,7,1,8,5,2,4,3,6,3,6,7,1,2,4,5,6,2,3,5,8,1,4,7,1,5,7,8,3,4,6,2,6,3,1,2,5,7,4,2,6,4,7,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,5,8,4,6,1,9,4,2,3,1 -72,23.248.115.101,R_5MtzZgsP8EizNib,self,02PVF,past,9,5,1,9,5,5,6,9,8,9,6,3,9,8,8,8,7,9,5,7,8,2,5,7,2,6,7,8,4,6,5,5,8,5,8,8,8,9,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,2,0,-1,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,E,D,A,Female,University - Undergraduate,45,39 - 45,Canadian,Female,1,,,1,,1,,4,1,8,5,7,6,3,2,2,3,7,1,5,4,6,4,5,6,7,8,1,2,3,1,4,7,8,3,6,5,2,2,6,1,3,4,7,5,6,3,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,9,3,2,4,6,1,5,2,3,4,1 -73,207.161.30.64,R_62RS93zXyC4HDl3,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,6,1,4,4,6,7,4,1,1,5,1,1,1,1,1,3,1,1,4,3,2,1,1,7,1,1,2,2,1,1,1,1,1,1,1,4,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-2,-2,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,B,D,Female,University - Undergraduate,66,60 - 66,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,7,6,5,1,1,2,4,7,5,6,3,2,6,8,3,4,7,5,1,1,2,8,4,5,3,7,6,1,2,4,3,5,6,7,6,7,5,8,2,3,4,1,3,8,4,6,2,9,7,1,5,4,3,2,1 -74,172.58.135.254,R_58NfGisEaAzSJFu,self,03VFP,future,6,7,6,6,7,5,7,5,6,5,6,4,6,4,5,5,4,6,5,4,5,4,4,6,4,5,5,6,5,4,5,4,5,3,4,5,5,4,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,1,2,2,2,1,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,D,C,B,Male,University - Graduate (Masters),50,46 - 52,American,Male,1,,,,1,,1,6,1,8,2,7,5,4,3,5,4,7,1,2,3,6,2,5,4,3,8,1,6,7,1,6,2,8,7,5,4,3,5,4,1,3,6,7,2,4,5,7,3,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,7,8,3,6,5,1,2,4,2,3,1 -75,99.209.87.226,R_5ANNaaMEeRfcpy6,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,1,1,1,0,1,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,1,0,0,1,0,2,2,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,1,-2,-2,0,10 cents,5 minutes,36 days,5,8,It's impossible to tell,47,Sunday,D,E,F,B,F,Female,College Diploma/Certificate,66,60 - 66,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,7,3,2,6,1,1,3,5,7,4,6,2,6,7,8,3,5,4,2,1,1,7,8,6,2,5,3,4,1,4,3,6,5,2,7,6,7,4,8,3,2,5,1,6,4,3,5,2,9,8,1,7,4,3,2,1 -76,73.25.246.32,R_1FDaryfnKpCFkKB,self,03VFP,past,0,0,2,2,0,5,1,0,0,0,0,2,0,0,0,10,0,0,3,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-2,-1,0,-1,2,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,E,D,B,D,Female,University - PhD,73,67 - 73,American,Female,1,,,,1,1,,6,1,8,5,3,2,4,7,5,3,7,1,2,6,4,4,5,3,6,8,1,7,2,1,4,6,8,7,3,5,2,4,6,1,5,2,7,3,4,2,6,3,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,7,6,8,3,2,1,5,2,3,4,1 -77,24.77.49.246,R_5YjY0VJCzPNHvB7,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,1,1,6,2,4,3,5,1,3,2,1,2,1,1,5,3,2,4,3,4,1,1,6,1,3,3,5,2,4,2,2,3,2,4,4,2,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,-1,0,-1,-1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,D,A,E,Male,High School (or equivalent),66,60 - 66,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,6,3,4,2,1,1,6,2,7,5,4,3,2,3,8,5,4,6,7,1,1,6,8,2,4,7,5,3,1,6,4,3,2,5,7,4,5,3,8,7,2,6,1,9,3,6,7,4,2,5,1,8,3,2,4,1 -78,99.233.212.7,R_3G2FLFviHwLyDTd,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Dislike a great deal,1,2,3,0,2,3,1,0,1,0,0,4,2,0,3,4,2,3,1,2,2,2,3,0,1,2,2,1,0,1,0,0,1,2,0,2,0,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,2,1,-1,-2,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,F,B,A,D,Female,High School (or equivalent),56,53 - 59,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,5,6,2,7,1,1,4,2,7,3,5,6,2,3,8,4,5,7,6,1,1,6,8,3,5,7,4,2,1,4,2,6,5,3,7,6,3,7,8,2,4,5,1,2,9,8,4,5,3,6,1,7,4,2,3,1 -79,75.159.23.32,R_1oBx43Lpqx4rzcg,self,01FPV,past,1,1,1,1,1,1,1,1,1,1,1,6,2,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,3,0,1,0,1,0,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,2,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Monday,D,E,B,A,D,Male,High School (or equivalent),35,32 - 38,Canadian,Male,1,,1,,,1,,5,1,8,6,7,3,4,2,5,6,7,1,3,2,4,7,3,6,5,8,1,4,2,1,3,6,8,2,7,4,5,2,4,1,6,3,7,5,5,6,7,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,8,9,5,4,1,7,2,4,3,1 -80,104.189.85.218,R_6n2X6XMJ7kuJbpF,self,03VFP,future,1,1,2,1,1,1,2,4,1,1,5,6,4,1,5,5,4,1,4,3,3,2,2,2,2,1,4,5,1,6,2,4,1,9,5,5,5,10,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,A,A,C,Male,University - Undergraduate,68,67 - 73,American,Male,1,,,,1,,1,3,1,8,2,4,5,6,7,5,3,7,1,4,6,2,7,5,4,3,8,1,2,6,1,5,4,8,7,2,6,3,5,3,1,4,2,7,6,5,2,3,4,7,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,2,7,9,8,1,6,3,4,2,1 -81,173.183.128.251,R_7zjm4Hg0EXB9VoR,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,3,2,3,0,0,1,3,1,1,0,1,1,0,1,1,0,0,3,1,3,1,2,3,1,1,1,1,2,1,0,1,1,0,1,1,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,1,10 cents,5 minutes,24 days,2,8,Richard is as tall as Matt,44,Monday,A,B,C,B,B,Male,Trade School,66,60 - 66,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,5,6,3,1,1,2,6,7,4,3,5,3,4,8,2,6,5,7,1,1,5,8,6,3,2,7,4,1,5,4,6,2,3,7,5,6,7,8,2,4,3,1,7,3,6,8,4,5,9,1,2,3,2,4,1 -82,199.241.129.19,R_6kwdsauEnWtYIMR,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,5,6,7,7,7,5,7,6,5,6,5,7,5,7,7,6,5,7,7,5,7,5,6,5,7,5,5,5,5,6,5,7,5,6,8,6,5,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,0,0,1,0,0,10 cents,75 minutes,24 days,5,7,It's impossible to tell,44,Saturday,C,D,E,C,D,Male,Trade School,59,53 - 59,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,5,6,4,3,1,1,3,4,7,5,2,6,4,3,8,5,2,6,7,1,1,6,8,2,7,5,4,3,1,4,3,5,2,6,7,2,5,6,8,7,3,4,1,7,9,2,3,4,8,6,1,5,2,3,4,1 -83,73.79.30.157,R_5exH3LNChBKRKhT,self,02PVF,future,6,6,9,9,8,8,8,8,7,8,5,9,8,9,7,9,9,8,6,8,6,6,8,7,7,8,8,6,7,8,7,6,7,9,7,8,7,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-2,-2,1,10 cents,5 minutes,15 days,2,8,Zach is shorter than Matt,47,Wednesday,D,F,E,F,A,Female,College Diploma/Certificate,60,60 - 66,American,Female,1,,,1,,,1,2,1,8,4,5,7,6,3,4,3,7,1,2,5,6,4,5,3,7,8,1,2,6,1,5,6,8,2,4,7,3,5,4,1,2,6,7,3,6,2,5,4,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,4,6,3,9,1,8,2,3,4,1 -84,129.222.157.48,R_6Rgsk9aXRKJeJrl,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,3,2,3,1,2,4,2,3,3,4,2,1,2,1,2,1,1,1,1,1,3,3,2,1,4,3,1,1,5,5,2,3,4,3,2,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-1,0,0,-1,0,10 cents,100 minutes,24 days,2,11,Richard is as tall as Matt,35,Tuesday,F,A,A,C,C,Female,High School (or equivalent),63,60 - 66,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,6,3,5,2,1,1,4,6,7,2,5,3,5,7,8,2,4,3,6,1,1,6,8,4,2,3,7,5,1,2,4,3,6,5,7,4,6,7,8,2,3,5,1,5,6,9,4,3,7,8,1,2,3,2,4,1 -85,50.100.223.169,R_6R1zqGwKWiiGVQ5,self,03VFP,past,4,0,0,5,0,4,3,3,0,3,0,4,2,1,2,3,0,0,3,1,5,0,0,5,0,2,3,5,0,3,0,5,1,0,4,5,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-2,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,C,B,C,Female,High School (or equivalent),66,60 - 66,Canadian,Female,1,,,,1,1,,4,1,8,5,2,3,7,6,4,6,7,1,2,5,3,6,4,7,3,8,1,5,2,1,2,7,8,6,4,3,5,4,6,1,3,5,7,2,4,5,3,6,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,4,7,6,8,5,1,3,2,3,4,1 -86,174.118.49.14,R_7oOOr1xDElQ9VbH,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Neither like nor dislike,6,7,7,6,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,6,7,7,7,7,6,7,6,6,6,7,7,7,7,7,7,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,5 cents,25 minutes,24 days,4,10,Richard is as tall as Matt,39,Sunday,C,C,C,B,C,Male,High School (or equivalent),24,18 - 24,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,6,4,3,1,1,2,3,7,6,4,5,7,2,8,6,3,4,5,1,1,4,8,7,3,5,2,6,1,4,6,5,2,3,7,4,5,2,8,6,3,7,1,3,7,2,8,5,9,6,1,4,2,3,4,1 -87,129.222.126.173,R_37KKsBzNWPCVLDH,self,03VFP,past,0,0,0,2,2,0,1,0,0,0,0,5,1,0,5,0,0,8,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,-2,-2,-2,1,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Monday,D,A,B,B,D,Female,Trade School,71,67 - 73,American,Female,1,,,,1,1,,4,1,8,5,6,7,2,3,3,5,7,1,2,6,4,3,7,4,5,8,1,2,6,1,2,6,8,4,3,5,7,5,4,1,6,3,7,2,6,7,4,2,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,8,3,7,5,6,1,2,3,4,2,1 -88,204.101.206.34,R_5HzCHr5ELqtmrex,self,03VFP,future,1,1,3,8,1,4,5,8,9,8,8,1,7,1,2,8,7,2,3,5,4,1,4,8,2,4,7,4,1,4,2,1,1,1,8,9,5,1,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-1,-1,-1,1,1,-1,-1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,B,B,Female,University - Undergraduate,53,53 - 59,Canadian,Female,1,,,,1,,1,5,1,8,6,7,4,3,2,4,2,7,1,6,3,5,2,6,7,5,8,1,4,3,1,3,6,8,7,5,4,2,4,5,1,2,3,7,6,5,2,4,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,4,9,3,5,6,1,2,2,3,4,1 -89,108.51.245.167,R_5IbEAPOo0nw9V4N,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,0,0,1,2,4,1,1,3,1,1,1,1,1,1,4,1,2,5,2,1,0,0,2,2,3,1,3,3,2,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,-1,0,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Graduate (Masters),68,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,2,4,3,7,1,1,6,5,7,4,2,3,6,5,8,2,3,4,7,1,1,2,8,5,3,4,6,7,1,4,3,6,5,2,7,5,3,2,8,6,7,4,1,5,3,2,9,6,8,4,1,7,2,3,4,1 -90,70.92.78.134,R_5ezUaljEyDE2Zax,self,03VFP,future,1,1,1,4,1,1,1,1,1,4,1,2,2,1,1,2,1,1,1,2,1,1,1,3,0,2,2,1,1,2,1,1,1,5,5,4,4,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,-1,0,2,0,1,1,-1,10 cents,100 minutes,24 days,4,8,It's impossible to tell,57,Tuesday,C,B,C,B,F,Female,High School (or equivalent),70,67 - 73,American,Female,1,,,,1,,1,6,1,8,5,3,2,4,7,6,3,7,1,5,4,2,3,4,7,6,8,1,5,2,1,3,2,8,5,7,4,6,4,6,1,5,3,7,2,7,4,5,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,9,4,8,5,1,7,4,3,2,1 -91,76.30.206.204,R_1lhmDAo7szHMAeJ,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,2,3,6,3,6,3,3,6,8,6,5,7,6,8,6,8,5,7,4,4,2,2,2,2,2,2,2,5,5,5,5,5,5,1,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,1,-1,1,0,-1,1,10 cents,5 minutes,24 days,3,11,It's impossible to tell,47,Tuesday,D,C,E,E,E,Male,High School (or equivalent),69,67 - 73,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,7,3,6,5,1,1,5,6,7,4,3,2,4,7,8,6,5,2,3,1,1,7,8,6,2,4,3,5,1,6,3,2,4,5,7,7,5,3,8,2,4,6,1,8,3,2,9,6,7,4,1,5,4,2,3,1 -92,99.44.246.251,R_6LSQzj8XrtffVq0,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,0,0,2,2,1,1,3,1,2,0,1,1,2,2,0,2,2,3,1,2,0,1,0,2,2,1,3,1,2,2,1,0,2,1,0,2,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,1,-2,1,10 cents,100 minutes,24 days,2,11,It's impossible to tell,47,Tuesday,D,C,F,B,E,Male,High School (or equivalent),62,60 - 66,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,3,2,5,1,1,5,6,7,4,3,2,5,2,8,6,4,7,3,1,1,4,8,2,6,5,7,3,1,4,5,6,2,3,7,2,6,7,8,5,4,3,1,6,9,3,7,5,8,4,1,2,2,3,4,1 -93,149.76.79.180,R_5iqY1cmBomefnTf,self,03VFP,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,0,-1,-1,-2,5 cents,5 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,D,B,B,B,F,Female,University - Graduate (Masters),56,53 - 59,American,Female,1,,,,1,1,,2,1,8,6,3,4,7,5,4,6,7,1,3,2,5,5,6,2,7,8,1,4,3,1,7,3,8,5,2,4,6,3,5,1,4,2,7,6,2,3,6,4,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,6,9,4,8,1,7,3,2,4,1 -94,99.238.39.97,R_1eM9ErpbFJmpZVn,self,03VFP,future,2,1,1,4,2,3,2,2,1,2,2,3,2,5,2,3,2,5,4,4,6,1,3,4,3,5,2,3,1,3,1,2,2,5,3,2,2,4,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,-1,0,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,D,D,B,B,Female,University - Undergraduate,48,46 - 52,Canadian,Female,1,,,,1,,1,2,1,8,3,4,6,7,5,2,4,7,1,6,5,3,3,4,6,7,8,1,5,2,1,2,3,8,7,5,6,4,4,6,1,5,2,7,3,5,2,7,6,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,3,5,6,4,2,1,8,2,4,3,1 -95,172.219.33.223,R_54hk4HwsI1mdYfD,self,03VFP,future,1,1,1,1,1,2,2,1,1,2,1,2,2,6,1,1,6,3,2,3,1,1,1,2,1,7,1,1,1,1,2,2,1,5,7,4,5,8,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,-1,-1,-1,-1,10 cents,100 minutes,24 days,3,10,It's impossible to tell,35,Monday,B,D,D,F,F,Female,College Diploma/Certificate,59,53 - 59,Canadian,Female,1,,,,1,,1,5,1,8,7,6,3,2,4,6,5,7,1,3,4,2,6,2,3,5,8,1,4,7,1,5,3,8,6,4,2,7,6,5,1,2,3,7,4,6,7,2,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,2,9,3,7,5,1,4,2,4,3,1 -96,172.56.97.60,R_6pLZtUdBgIwX2ut,self,02PVF,future,4,4,6,7,5,5,5,7,6,4,6,4,7,5,7,6,4,6,5,8,4,4,7,6,4,5,6,4,5,5,6,6,4,4,6,6,6,5,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,1,0,0,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,57,Sunday,C,A,E,A,E,Female,College Diploma/Certificate,49,46 - 52,American,Female,1,,,1,,,1,7,1,8,4,5,6,3,2,4,3,7,1,6,2,5,5,4,3,2,8,1,7,6,1,2,3,8,7,6,4,5,6,2,1,5,3,7,4,7,2,4,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,4,2,8,5,7,1,6,2,3,4,1 -97,174.116.49.13,R_7LZIymYpGdDtFZn,self,03VFP,past,5,4,5,7,7,5,5,5,6,4,5,5,5,5,7,6,5,4,4,5,5,5,5,7,6,5,5,6,7,4,5,5,5,6,7,5,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,-1,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,D,B,F,C,Male,University - Undergraduate,36,32 - 38,Canadian,Male,1,,,,1,1,,4,1,8,3,6,5,2,7,6,2,7,1,3,5,4,2,3,7,4,8,1,6,5,1,3,4,8,5,2,7,6,2,4,1,6,5,7,3,4,2,6,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,2,9,4,6,3,1,8,2,3,4,1 -98,207.6.57.139,R_7ZOfCe8fRgdClSS,self,03VFP,future,2,2,3,9,4,4,3,6,7,4,5,6,4,4,5,7,2,2,5,4,4,2,3,8,4,6,2,6,5,4,6,5,6,6,7,8,2,1,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-2,1,-1,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,B,B,B,B,Male,University - Graduate (Masters),47,46 - 52,Canadian,Male,1,,,,1,,1,2,1,8,7,6,4,3,5,5,4,7,1,3,6,2,4,6,7,3,8,1,2,5,1,5,3,8,6,4,2,7,2,3,1,4,5,7,6,4,6,5,3,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,8,4,7,5,1,9,2,3,4,1 -99,38.213.168.18,R_7RjrJaHJ2XV1ieG,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,5,6,8,8,8,7,7,7,9,8,10,6,8,7,8,8,8,9,6,6,8,7,7,6,8,6,7,8,8,8,8,7,8,6,8,6,7,8,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,2,1,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,E,Male,University - Graduate (Masters),32,32 - 38,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,2,3,5,4,1,1,5,6,7,2,4,3,4,7,8,5,2,3,6,1,1,3,8,7,5,2,4,6,1,5,2,6,4,3,7,2,4,7,8,5,6,3,1,9,6,3,7,4,8,5,1,2,4,2,3,1 -100,73.105.89.205,R_7y9qL4QO62uZFM6,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,1,8,1,6,5,2,6,6,2,1,8,1,6,1,1,7,1,4,1,1,1,8,1,6,6,1,4,1,4,1,5,1,8,1,7,6,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,-1,0,0,-1,0,10 cents,100 minutes,15 days,5,11,Richard is taller than Matt,47,Wednesday,B,C,D,B,C,Female,College Diploma/Certificate,68,67 - 73,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,4,6,2,1,1,2,5,7,6,4,3,7,5,8,6,2,4,3,1,1,5,8,6,7,2,4,3,1,6,3,5,2,4,7,4,3,6,8,5,2,7,1,7,5,8,4,6,3,9,1,2,3,2,4,1 -101,154.5.244.254,R_7gSFCwEcBtweZHd,self,01FPV,future,3,3,4,3,4,4,4,3,3,3,4,3,3,4,3,4,4,3,3,3,4,3,3,4,5,3,4,4,3,4,3,3,3,4,2,3,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,0,1,-1,1,10 cents,100 minutes,24 days,5,10,Zach is shorter than Matt,47,Monday,B,B,B,B,B,Female,High School (or equivalent),72,67 - 73,Canadian,Female,1,,1,,,,1,5,1,8,6,4,2,3,7,5,4,7,1,6,3,2,2,3,4,5,8,1,6,7,1,4,6,8,7,2,3,5,6,4,1,2,5,7,3,4,3,7,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,2,8,5,7,4,1,6,4,2,3,1 -102,172.58.128.234,R_5KQUYMXebvCbJoB,self,02PVF,future,8,8,9,9,9,9,9,1,9,7,7,7,8,8,8,10,9,8,10,10,9,9,9,10,9,9,9,9,5,5,8,6,8,9,9,9,10,9,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,0,-1,1,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Male,University - Graduate (Masters),41,39 - 45,American,Male,1,,,1,,,1,2,1,8,5,3,6,7,4,3,2,7,1,4,5,6,3,4,2,6,8,1,7,5,1,7,4,8,2,5,6,3,5,4,1,3,2,7,6,3,6,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,3,8,7,6,5,1,4,2,3,4,1 -103,23.16.156.64,R_7jTMOqiIIIRNtBP,self,03VFP,future,7,1,4,8,6,5,5,6,4,6,6,4,4,1,2,2,3,2,1,2,1,2,2,3,2,1,2,1,2,2,1,2,2,2,2,3,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,-1,-1,0,-1,-1,1,10 cents,100 minutes,24 days,2,10,It's impossible to tell,47,Tuesday,D,D,C,D,F,Female,College Diploma/Certificate,67,67 - 73,Canadian,Female,1,,,,1,,1,4,1,8,5,2,6,3,7,3,4,7,1,2,6,5,4,3,7,5,8,1,2,6,1,5,4,8,2,7,6,3,6,5,1,2,4,7,3,4,5,2,7,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,9,6,2,3,1,5,3,4,2,1 -104,68.185.177.98,R_7EEgbd5si62ndeJ,self,01FPV,past,6,3,2,6,5,5,4,5,6,5,4,5,5,4,4,4,4,4,6,5,5,4,4,6,4,5,5,7,3,5,4,5,5,4,3,6,4,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,0,-1,-1,0,10 cents,5 minutes,24 days,2,8,It's impossible to tell,39,Tuesday,D,D,D,F,D,Female,High School (or equivalent),69,67 - 73,American,Female,1,,1,,,1,,5,1,8,7,4,6,2,3,6,3,7,1,5,4,2,7,3,4,5,8,1,6,2,1,6,7,8,4,3,2,5,4,3,1,2,5,7,6,2,6,7,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,6,5,9,4,8,1,3,2,4,3,1 -105,142.190.18.210,R_7o5MYlhXW8OjpUL,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,2,0,0,2,10 cents,100 minutes,24 days,4,11,It's impossible to tell,35,Tuesday,A,C,D,B,A,Female,Trade School,69,67 - 73,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,7,3,4,2,1,1,3,5,7,2,6,4,6,3,8,7,4,5,2,1,1,4,8,6,7,2,3,5,1,5,3,2,6,4,7,3,7,2,8,5,6,4,1,4,9,2,3,6,8,7,1,5,3,4,2,1 -106,70.77.254.143,R_60eskoiyY6xqMFa,self,01FPV,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-2,-2,-2,1,10 cents,100 minutes,15 days,5,8,Richard is shorter than Matt,57,Sunday,D,E,B,B,A,Male,College Diploma/Certificate,53,53 - 59,Canadian,Male,1,,1,,,1,,4,1,8,3,7,5,6,2,3,5,7,1,2,4,6,6,2,3,5,8,1,7,4,1,7,2,8,3,6,5,4,3,5,1,2,6,7,4,4,7,6,3,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,3,7,6,4,8,1,2,2,3,4,1 -107,184.147.94.244,R_3HcQj4gzXVVi3AO,self,01FPV,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,-2,2,-1,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,F,B,B,D,Male,University - Undergraduate,42,39 - 45,Canadian,Male,1,,1,,,,1,3,1,8,7,6,5,4,2,5,2,7,1,6,3,4,6,5,3,4,8,1,7,2,1,6,5,8,3,4,2,7,3,2,1,6,5,7,4,6,3,7,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,6,3,8,7,4,1,5,3,2,4,1 -108,172.58.240.82,R_1TKLroieW4rkdUO,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,2,0,3,3,0,2,1,0,0,0,0,0,4,4,0,0,0,0,2,1,3,0,1,3,0,2,3,2,0,0,0,0,0,1,4,0,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,0,-2,1,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Tuesday,D,F,B,C,E,Female,College Diploma/Certificate,66,60 - 66,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,3,5,6,4,1,1,3,6,7,4,2,5,4,7,8,3,5,6,2,1,1,6,8,7,3,2,5,4,1,4,6,5,2,3,7,6,3,7,8,2,5,4,1,3,2,7,4,8,9,6,1,5,3,4,2,1 -109,47.229.168.175,R_6S6LXxe939NurPg,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,5,7,1,8,5,7,5,10,1,10,3,6,1,7,7,8,7,2,8,1,1,1,1,1,1,1,4,3,2,5,5,5,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,E,B,F,Female,High School (or equivalent),70,67 - 73,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,6,2,4,5,1,1,4,6,7,3,2,5,5,3,8,7,6,4,2,1,1,2,8,7,6,3,5,4,1,5,4,6,2,3,7,3,2,6,8,7,5,4,1,9,3,5,2,7,8,6,1,4,2,4,3,1 -110,154.20.26.2,R_1PeuzQGHonnOOu5,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,2,2,0,7,7,0,2,2,0,2,0,5,2,0,2,0,0,0,0,0,2,0,0,2,0,2,1,2,0,0,0,0,0,0,2,2,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,1,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Monday,B,D,B,F,D,Female,University - Graduate (Masters),62,60 - 66,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,7,2,5,6,1,1,5,2,7,4,3,6,3,6,8,7,4,2,5,1,1,6,8,4,5,3,7,2,1,2,5,3,6,4,7,6,4,3,8,5,2,7,1,7,8,6,5,3,9,4,1,2,4,3,2,1 -111,38.18.105.192,R_10bO7BAJj0Dw58g,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,1,0,0,1,10 cents,100 minutes,24 days,5,11,Richard is shorter than Matt,57,Tuesday,D,D,C,D,D,Female,High School (or equivalent),66,60 - 66,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,2,4,6,3,1,1,4,3,7,5,2,6,6,2,8,4,7,5,3,1,1,4,8,5,7,2,6,3,1,6,3,2,5,4,7,7,2,5,8,4,3,6,1,3,6,8,4,2,5,7,1,9,2,4,3,1 -112,70.249.242.132,R_1kRM7yrJwRaFUMZ,self,03VFP,future,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,4,3,3,1,2,0,1,2,1,1,1,1,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,0,0,-1,0,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Tuesday,D,B,B,B,D,Male,University - Undergraduate,40,39 - 45,American,Male,1,,,,1,,1,4,1,8,3,5,6,2,7,6,5,7,1,2,4,3,6,3,7,4,8,1,5,2,1,6,4,8,5,7,3,2,4,3,1,2,5,7,6,6,4,2,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,9,7,5,1,4,4,2,3,1 -113,24.245.49.195,R_3EbBfHJdI6s7oiY,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,4,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,1,1,0,1,0,0,0,0,0,2,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-1,-1,-2,-2,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,35,Tuesday,A,F,C,A,A,Female,College Diploma/Certificate,64,60 - 66,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,5,6,3,7,1,1,2,3,7,6,4,5,7,2,8,4,5,3,6,1,1,6,8,3,7,4,5,2,1,4,5,2,3,6,7,4,6,3,8,7,5,2,1,2,7,3,5,8,4,6,1,9,3,2,4,1 -114,64.7.156.26,R_7mVJuK6RiMmLedH,self,02PVF,future,1,1,6,9,4,9,6,3,3,3,2,2,2,2,4,4,5,7,7,5,1,1,1,3,1,2,3,1,2,2,1,1,2,1,4,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,2,1,1,0,1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,E,E,B,E,D,Male,College Diploma/Certificate,62,60 - 66,Canadian,Male,1,,,1,,,1,7,1,8,6,4,2,5,3,3,5,7,1,4,6,2,3,5,7,6,8,1,2,4,1,7,4,8,2,3,5,6,5,4,1,6,2,7,3,6,5,7,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,2,3,6,5,7,1,9,4,3,2,1 -115,96.53.144.174,R_3vO4kOcljBGsjst,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,7,3,3,5,4,5,4,5,4,6,6,6,6,7,4,3,7,5,7,4,6,6,7,6,7,7,6,7,8,7,7,7,7,6,7,7,6,6,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,1,-1,1,0,-2,-1,5 cents,5 minutes,15 days,3,8,Richard is as tall as Matt,57,Sunday,D,D,B,B,F,Female,College Diploma/Certificate,55,53 - 59,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,2,7,4,5,1,1,5,3,7,4,2,6,6,4,8,2,7,5,3,1,1,2,8,7,5,3,4,6,1,6,5,2,3,4,7,6,5,3,8,2,4,7,1,3,9,2,4,7,8,6,1,5,4,3,2,1 -116,107.77.198.224,R_7HYzcUpCaMCTTbC,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,8,9,7,9,8,9,9,7,8,6,7,9,9,8,8,7,8,8,6,9,7,8,8,9,9,6,6,7,7,8,8,6,9,8,9,8,9,8,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,1,2,1,2,1,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Sunday,D,D,C,B,D,Male,University - Graduate (Masters),48,46 - 52,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,6,3,5,1,1,5,6,7,2,4,3,2,5,8,7,4,3,6,1,1,5,8,2,7,6,4,3,1,4,2,3,6,5,7,5,2,4,8,3,7,6,1,4,3,2,9,8,7,5,1,6,3,4,2,1 -117,96.52.17.157,R_7aAcXcqPKC7z93r,self,03VFP,past,7,0,0,8,1,8,5,4,8,1,3,7,2,5,7,5,3,7,6,6,4,0,0,2,0,6,3,2,5,4,5,4,4,5,6,6,5,8,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-2,1,1,-1,-1,10 cents,100 minutes,24 days,7,10,Richard is shorter than Matt,57,Tuesday,D,B,A,B,E,Female,University - Undergraduate,61,60 - 66,Canadian,Female,1,,,,1,1,,2,1,8,5,3,6,7,4,6,2,7,1,5,4,3,4,2,7,6,8,1,3,5,1,5,3,8,6,7,4,2,2,5,1,6,3,7,4,2,4,6,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,2,5,3,8,4,1,6,2,3,4,1 -118,170.199.96.217,R_3KHHqa4Os1qsaZ3,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,4,8,3,4,3,3,2,1,1,0,3,0,2,2,2,1,1,1,1,4,8,8,8,4,5,5,5,1,5,1,5,4,4,3,8,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,2,1,-2,1,-2,-1,2,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Tuesday,D,E,E,C,C,Female,College Diploma/Certificate,67,67 - 73,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,4,3,6,1,1,6,4,7,5,2,3,3,5,8,7,2,4,6,1,1,5,8,7,3,2,4,6,1,6,4,2,3,5,7,3,4,5,8,2,6,7,1,5,3,4,9,2,6,8,1,7,2,3,4,1 -119,172.56.35.100,R_63WzuNStzEppBLg,self,01FPV,future,0,1,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,1,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,-2,-2,2,5 cents,5 minutes,36 days,7,8,It's impossible to tell,39,Monday,F,F,A,B,A,Female,High School (or equivalent),72,67 - 73,American,Female,1,,1,,,,1,6,1,8,4,2,7,3,5,3,4,7,1,6,2,5,6,5,2,7,8,1,4,3,1,4,6,8,2,5,3,7,4,3,1,6,5,7,2,4,2,3,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,6,5,4,2,7,1,9,2,3,4,1 -120,199.120.252.122,R_5Mu7WwYZqiecEJU,self,01FPV,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,24 days,3,8,Richard is taller than Matt,47,Sunday,B,D,B,D,D,Male,High School (or equivalent),50,46 - 52,American,Male,1,,1,,,1,,7,1,8,2,3,6,4,5,6,4,7,1,5,2,3,3,6,2,7,8,1,5,4,1,7,3,8,5,4,2,6,5,4,1,3,2,7,6,4,3,7,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,7,3,6,4,8,1,5,3,4,2,1 -121,172.91.49.216,R_7ZglsBGfy25LvmF,self,03VFP,past,5,2,2,7,6,2,4,2,3,5,3,5,5,4,5,5,5,5,4,5,2,1,1,4,1,1,1,3,3,3,3,3,3,5,5,5,5,5,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,0,0,0,1,0,5 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,57,Wednesday,F,F,D,A,C,Male,High School (or equivalent),62,60 - 66,American,Male,1,,,,1,1,,7,1,8,5,6,4,3,2,2,6,7,1,4,3,5,5,3,7,2,8,1,6,4,1,6,7,8,4,2,3,5,3,4,1,6,2,7,5,2,5,7,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,2,6,7,3,5,1,4,4,3,2,1 -122,71.203.87.125,R_5xo1KZ2wM6WhbkR,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,5,0,5,2,5,4,5,6,5,7,2,6,8,4,5,8,1,1,4,3,5,1,8,7,7,5,6,6,5,2,3,6,5,5,7,7,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-1,-2,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Wednesday,D,C,A,F,C,Female,College Diploma/Certificate,55,53 - 59,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,7,2,4,1,1,4,2,7,5,3,6,2,7,8,3,5,4,6,1,1,5,8,6,2,4,7,3,1,3,4,5,2,6,7,6,4,2,8,3,7,5,1,8,3,4,7,2,9,5,1,6,4,2,3,1 -123,142.166.189.235,R_5lFR1spGbJ6Y13P,self,02PVF,past,6,7,8,6,6,7,6,6,6,7,6,6,7,6,6,6,6,7,6,6,6,5,7,5,6,6,5,6,6,6,6,6,6,5,5,6,7,5,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,10 cents,75 minutes,24 days,4,12,It's impossible to tell,35,Tuesday,A,A,D,D,D,Female,High School (or equivalent),72,67 - 73,Canadian,Female,1,,,1,,1,,3,1,8,5,2,4,6,7,5,2,7,1,4,3,6,5,2,7,6,8,1,3,4,1,4,6,8,7,2,3,5,6,2,1,3,4,7,5,3,4,5,2,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,5,3,2,7,6,1,9,3,4,2,1 -124,64.201.204.196,R_5OuD2CJYlpl3gWo,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,1,1,4,5,6,6,3,2,3,2,3,2,1,2,2,3,3,2,2,3,2,3,6,3,4,2,2,3,0,0,3,5,0,1,2,2,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,1,-2,-2,2,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,C,B,B,B,Female,High School (or equivalent),43,39 - 45,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,2,5,6,4,1,1,4,2,7,3,6,5,6,7,8,2,3,4,5,1,1,6,8,5,4,2,3,7,1,3,6,2,4,5,7,7,6,2,8,5,3,4,1,9,3,7,2,8,6,4,1,5,4,2,3,1 -125,72.143.217.100,R_765wIbjYg9A4q7S,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,10,1,3,8,4,5,4,3,2,3,4,4,5,4,5,4,2,4,5,3,9,2,5,7,7,5,5,5,5,5,5,5,3,6,5,5,6,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,0,0,0,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,57,Tuesday,C,D,D,A,D,Female,College Diploma/Certificate,37,32 - 38,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,3,6,4,7,1,1,3,5,7,2,6,4,7,4,8,2,3,5,6,1,1,3,8,4,6,2,5,7,1,6,5,4,2,3,7,4,7,2,8,3,5,6,1,9,7,8,5,2,4,6,1,3,2,4,3,1 -126,209.29.168.96,R_18TincnJAlEo1lq,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,6,2,6,3,5,3,5,4,3,2,3,1,2,2,5,3,2,3,2,2,3,1,3,1,1,2,2,1,2,2,1,1,2,3,5,3,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,1,0,-1,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,F,Female,High School (or equivalent),64,60 - 66,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,7,2,6,4,1,1,3,2,7,6,4,5,6,5,8,3,4,2,7,1,1,6,8,4,3,7,5,2,1,4,5,2,3,6,7,5,2,4,8,6,3,7,1,6,9,4,3,5,2,7,1,8,2,3,4,1 -127,64.26.97.60,R_5cvWXOndWtLKHJv,self,02PVF,past,6,8,7,5,4,7,7,8,4,5,7,6,7,7,9,5,5,7,8,5,5,5,8,8,5,7,7,4,7,6,5,7,6,5,7,9,8,3,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,0,1,2,1,0,15 cents,75 minutes,24 days,5,8,Richard is shorter than Matt,47,Tuesday,B,A,E,C,B,Male,College Diploma/Certificate,41,39 - 45,American,Male,1,,,1,,1,,6,1,8,3,4,7,5,2,5,2,7,1,4,3,6,2,5,3,7,8,1,4,6,1,6,5,8,4,7,3,2,2,3,1,6,5,7,4,2,5,3,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,9,4,7,2,6,1,5,2,3,4,1 -128,24.19.33.128,R_5WAmc3kcKngujnK,self,01FPV,past,6,1,0,7,7,6,3,4,1,1,1,2,1,1,1,4,1,5,1,1,1,1,0,3,2,2,3,2,1,1,1,1,2,2,2,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,1,-2,-1,0,10 cents,100 minutes,47 days,2,7,Richard is taller than Matt,57,Tuesday,D,C,C,B,D,Female,Trade School,69,67 - 73,American,Female,1,,1,,,1,,2,1,8,4,6,5,3,7,2,3,7,1,6,4,5,3,4,2,6,8,1,7,5,1,5,2,8,4,7,6,3,3,6,1,4,2,7,5,4,5,6,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,4,6,5,8,3,1,9,2,3,4,1 -129,99.234.178.176,R_7DoEYSibBeS52PW,self,03VFP,future,1,0,2,2,0,3,3,1,5,2,0,0,3,0,0,9,0,0,6,1,2,0,0,2,0,0,2,0,1,0,1,4,2,0,0,9,0,0,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,1,-2,-2,1,10 cents,100 minutes,24 days,4,8,Richard is shorter than Matt,57,Tuesday,D,D,D,D,D,Female,High School (or equivalent),59,53 - 59,Canadian,Female,1,,,,1,,1,6,1,8,5,3,2,4,7,2,5,7,1,4,6,3,3,5,2,6,8,1,4,7,1,5,6,8,3,2,4,7,2,6,1,5,4,7,3,3,5,7,4,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,7,3,5,6,1,9,4,2,3,1 -130,170.203.209.31,R_7iB7meGFXOhMco1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,2,2,4,8,3,4,8,8,4,6,8,6,6,8,9,6,7,6,7,4,3,4,3,7,3,4,6,7,3,4,7,5,5,6,8,5,9,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,-1,-2,1,1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,57,Sunday,E,D,B,A,D,Female,High School (or equivalent),57,53 - 59,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,4,2,7,3,1,1,5,6,7,2,3,4,2,3,8,7,5,4,6,1,1,3,8,4,5,6,2,7,1,6,2,5,4,3,7,4,5,2,8,3,6,7,1,2,8,3,4,7,6,9,1,5,2,3,4,1 -131,71.205.82.245,R_5MA67Za7RB8B5Z7,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,2,3,4,3,2,4,8,4,8,7,4,6,6,5,4,4,7,3,3,2,4,1,2,4,5,3,3,2,3,3,3,2,4,3,3,6,1,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,-1,1,0,-1,0,10 cents,100 minutes,24 days,3,9,It's impossible to tell,47,Monday,D,B,E,E,D,Male,High School (or equivalent),67,67 - 73,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,2,5,4,1,1,4,3,7,2,5,6,5,7,8,4,6,2,3,1,1,6,8,7,3,5,2,4,1,3,4,6,5,2,7,6,3,5,8,7,4,2,1,2,4,5,7,9,6,3,1,8,4,3,2,1 -132,50.65.136.55,R_1VV9R7YElnJKrXr,self,02PVF,past,8,3,5,6,4,0,3,5,3,2,2,7,2,3,6,3,1,1,1,1,3,3,7,5,4,0,3,6,2,1,0,4,2,0,5,7,0,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-2,1,-1,0,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,B,E,C,A,E,Female,High School (or equivalent),55,53 - 59,Canadian,Female,1,,,1,,1,,7,1,8,4,5,6,3,2,2,5,7,1,4,6,3,2,3,7,4,8,1,5,6,1,3,7,8,5,2,6,4,2,3,1,6,4,7,5,7,3,4,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,2,4,5,3,6,1,9,4,3,2,1 -133,35.147.7.147,R_3bKrmW58BYIC6Va,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,5,2,9,1,5,5,5,3,5,3,5,6,3,5,5,2,4,5,5,5,5,0,9,1,1,4,5,8,3,5,8,6,5,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,10 cents,100 minutes,24 days,4,7,It's impossible to tell,57,Saturday,D,D,D,D,F,Male,College Diploma/Certificate,61,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,3,2,7,1,1,5,3,7,4,6,2,2,4,8,3,7,6,5,1,1,5,8,3,7,4,6,2,1,2,3,4,6,5,7,4,6,7,8,2,3,5,1,3,7,6,8,4,9,5,1,2,3,4,2,1 -134,174.114.212.136,R_5416HRNBDIjNVSO,self,02PVF,future,10,0,0,10,2,10,7,3,0,10,0,5,5,9,8,8,2,6,8,6,7,0,0,10,0,7,4,0,1,4,3,2,4,0,7,7,2,5,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,-2,-1,-2,-1,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,C,A,D,Female,University - Undergraduate,69,67 - 73,Canadian,Female,1,,,1,,,1,4,1,8,2,6,3,7,5,2,3,7,1,5,4,6,6,4,7,2,8,1,5,3,1,7,5,8,2,4,3,6,4,3,1,5,2,7,6,2,4,3,5,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,6,5,3,4,7,1,9,3,2,4,1 -135,98.169.74.69,R_3chuyVKM0Lk4eFH,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,6,1,1,7,4,1,9,2,1,5,6,10,8,8,3,1,9,7,0,3,7,2,0,8,4,1,8,7,1,8,3,9,8,8,1,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-1,1,0,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Female,University - Graduate (Masters),69,67 - 73,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,2,6,4,5,1,1,3,6,7,5,4,2,6,4,8,7,3,5,2,1,1,2,8,7,5,4,3,6,1,3,4,2,6,5,7,6,4,2,8,5,7,3,1,7,8,5,2,9,4,6,1,3,2,3,4,1 -136,50.70.217.144,R_7xhmBeZWCBMtCsV,self,01FPV,future,1,2,1,3,1,2,2,2,1,2,1,1,2,1,1,2,1,1,2,2,5,2,2,3,3,5,3,2,2,3,2,2,3,1,3,4,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,C,B,B,F,Female,College Diploma/Certificate,64,60 - 66,Canadian,Female,1,,1,,,,1,7,1,8,5,4,3,2,6,3,2,7,1,6,4,5,5,4,2,6,8,1,7,3,1,4,6,8,3,5,2,7,6,5,1,2,3,7,4,4,2,7,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,3,7,9,4,2,1,5,2,4,3,1 -137,69.118.204.67,R_77CmvewHgzvDE5L,self,01FPV,past,1,1,1,10,3,1,2,1,3,1,1,1,1,1,1,1,1,2,4,1,1,1,1,5,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,2,-2,1,10 cents,100 minutes,24 days,5,12,Richard is shorter than Matt,47,Sunday,D,D,C,E,F,Male,Professional Degree (ex. JD/MD),51,46 - 52,American,Male,1,,1,,,1,,5,1,8,7,2,3,4,6,3,2,7,1,5,4,6,3,7,2,6,8,1,4,5,1,4,3,8,6,5,7,2,6,5,1,3,4,7,2,7,3,4,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,9,2,8,4,5,1,3,4,3,2,1 -138,104.251.240.218,R_5r1j7GJzDmqRi8c,self,02PVF,past,6,2,2,7,5,7,6,4,2,6,6,7,5,6,6,6,5,4,7,5,4,5,6,6,5,6,6,2,2,4,3,5,3,2,2,3,2,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,-1,-2,1,1,-1,1,10 cents,5 minutes,24 days,5,8,Richard is taller than Matt,39,Sunday,D,D,B,D,F,Female,College Diploma/Certificate,61,60 - 66,American,Female,1,,,1,,1,,5,1,8,6,3,7,4,2,6,5,7,1,3,4,2,7,3,4,2,8,1,5,6,1,6,3,8,4,5,2,7,2,4,1,6,3,7,5,5,4,3,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,5,9,6,2,7,3,1,4,3,4,2,1 -139,198.254.250.50,R_6ef8doWSFbaIwyO,self,03VFP,past,5,5,5,6,5,5,5,6,7,7,8,4,7,8,9,7,9,8,7,8,6,5,5,5,5,5,6,5,5,5,5,6,6,5,5,5,5,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-2,-2,0,10 cents,100 minutes,24 days,4,8,Richard is taller than Matt,57,Monday,D,C,B,F,F,Female,University - Undergraduate,58,53 - 59,Canadian,Female,1,,,,1,1,,3,1,8,6,4,2,5,7,6,4,7,1,3,5,2,3,4,6,7,8,1,5,2,1,4,2,8,7,3,6,5,2,6,1,3,4,7,5,6,3,4,2,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,6,8,5,9,1,7,3,2,4,1 -140,70.71.244.24,R_1R9YOGwT0wQsFlh,self,01FPV,future,0,0,0,2,0,7,1,0,0,6,0,1,1,1,0,5,4,0,3,3,0,0,0,4,0,2,1,0,1,0,0,2,0,0,1,2,1,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,-1,0,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Graduate (Masters),71,67 - 73,Canadian,Male,1,,1,,,,1,2,1,8,3,5,6,4,7,3,2,7,1,5,4,6,6,7,2,4,8,1,3,5,1,4,2,8,7,6,5,3,4,3,1,6,2,7,5,3,5,6,2,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,4,6,8,9,1,3,3,2,4,1 -141,66.226.42.92,R_34JlD6FShjjejuo,self,02PVF,past,1,0,0,1,0,1,1,1,1,1,0,5,1,0,1,1,1,0,8,1,0,0,0,1,0,1,1,0,1,1,0,5,1,0,0,0,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,-1,-2,0,0,0,0,10 cents,5 minutes,24 days,5,12,It's impossible to tell,57,Tuesday,C,F,E,A,F,Female,High School (or equivalent),66,60 - 66,American,Female,1,,,1,,1,,3,1,8,7,5,2,6,4,3,4,7,1,2,5,6,4,3,5,6,8,1,7,2,1,6,4,8,2,5,3,7,3,4,1,6,5,7,2,3,5,2,6,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,8,9,6,1,7,2,3,4,1 -142,73.48.127.185,R_1QEFbWQgJIrv3CB,self,02PVF,future,10,10,10,10,10,10,10,1,10,10,10,10,10,9,10,7,10,8,8,9,10,10,10,10,10,10,10,6,1,9,8,10,5,10,10,7,7,8,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,-2,2,2,2,1,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,A,D,D,B,F,Female,College Diploma/Certificate,65,60 - 66,American,Female,1,,,1,,,1,2,1,8,3,6,7,4,5,4,3,7,1,2,5,6,2,3,4,6,8,1,7,5,1,6,4,8,3,5,2,7,6,5,1,2,3,7,4,2,5,3,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,9,8,2,4,5,1,7,2,3,4,1 -143,32.216.242.163,R_7jCmUUqGqsXiKIz,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like somewhat,9,0,0,6,0,7,5,10,5,5,5,8,10,0,8,7,8,7,0,4,3,0,0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,-1,1,0,0,10 cents,100 minutes,24 days,4,10,Richard is taller than Matt,57,Tuesday,B,C,E,D,E,Female,University - Undergraduate,37,32 - 38,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,7,5,4,1,1,5,6,7,4,3,2,2,7,8,5,4,3,6,1,1,3,8,4,6,5,7,2,1,2,6,5,4,3,7,6,4,3,8,7,2,5,1,8,3,5,9,6,7,4,1,2,2,4,3,1 -144,99.51.9.58,R_5pcefnamU8yJMu0,self,03VFP,past,2,1,2,6,3,0,2,3,1,3,1,1,3,1,1,0,0,0,5,1,1,1,2,0,2,2,1,2,1,2,1,2,1,2,1,0,1,1,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-2,1,1,0,0,10 cents,25 minutes,24 days,2,12,It's impossible to tell,47,Monday,A,B,D,E,D,Female,College Diploma/Certificate,66,60 - 66,American,Female,1,,,,1,1,,3,1,8,5,7,2,4,6,6,2,7,1,5,3,4,3,6,5,7,8,1,4,2,1,6,2,8,5,7,3,4,6,3,1,4,2,7,5,7,6,5,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,6,8,3,2,9,1,4,3,2,4,1 -145,66.133.147.196,R_5dXQP5gvumXkSGZ,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,3,6,6,6,7,6,6,3,2,3,5,6,3,3,3,6,5,5,2,5,3,3,7,3,6,2,5,3,2,2,3,4,2,3,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,0,-1,-1,-2,0,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Monday,D,E,B,B,D,Female,University - Undergraduate,53,53 - 59,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,2,5,6,1,1,5,2,7,4,3,6,7,2,8,3,4,5,6,1,1,6,8,7,5,4,3,2,1,6,2,4,5,3,7,3,6,4,8,2,5,7,1,7,2,4,8,9,6,5,1,3,4,2,3,1 -146,72.157.222.87,R_7rjYVUBgGZrkVHH,self,03VFP,past,5,5,5,5,5,5,6,5,5,5,5,4,5,6,6,6,6,6,6,6,7,7,5,6,7,4,5,6,6,5,5,6,5,6,6,6,6,6,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,1,1,1,1,0,10 cents,100 minutes,36 days,3,9,Richard is shorter than Matt,47,Monday,C,C,B,D,B,Female,College Diploma/Certificate,61,60 - 66,American,Female,1,,,,1,1,,5,1,8,2,6,7,3,4,2,6,7,1,5,4,3,3,4,6,7,8,1,2,5,1,2,7,8,4,6,5,3,3,2,1,4,6,7,5,7,2,6,3,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,4,6,8,5,1,9,3,2,4,1 -147,99.253.74.46,R_1is7FAgG2Y70gM0,self,03VFP,future,4,4,4,5,5,4,5,5,5,4,5,4,5,5,5,4,5,5,4,5,5,2,5,4,5,5,4,5,5,4,5,5,5,5,5,5,5,6,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-1,0,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,F,Female,College Diploma/Certificate,37,32 - 38,Canadian,Female,1,,,,1,,1,2,1,8,4,7,5,3,6,6,5,7,1,3,4,2,2,5,3,4,8,1,7,6,1,4,3,8,2,5,7,6,2,3,1,6,4,7,5,3,4,5,7,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,3,6,8,2,9,1,4,2,4,3,1 -148,192.248.193.20,R_1m9epxEcfmV2k37,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,5,1,5,2,5,4,1,4,1,4,1,4,3,4,4,1,4,2,2,3,1,3,3,2,2,6,3,3,2,7,2,3,2,2,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-1,1,2,1,1,10 cents,100 minutes,24 days,5,9,Richard is taller than Matt,57,Tuesday,E,C,B,B,C,Female,Professional Degree (ex. JD/MD),68,67 - 73,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,4,3,7,5,1,1,6,4,7,5,2,3,2,4,8,7,5,3,6,1,1,3,8,5,4,6,2,7,1,5,3,2,4,6,7,5,4,7,8,2,3,6,1,6,8,4,9,3,7,5,1,2,3,2,4,1 -149,174.3.145.120,R_7mt4BTSLWsvcHWJ,self,03VFP,past,1,1,1,2,1,1,1,4,5,1,6,1,1,1,1,7,7,1,3,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-2,0,1,-2,-2,10 cents,100 minutes,24 days,4,7,Richard is shorter than Matt,47,Sunday,D,B,B,B,A,Female,College Diploma/Certificate,59,53 - 59,Canadian,Female,1,,,,1,1,,6,1,8,2,5,3,4,7,5,3,7,1,4,2,6,6,4,7,2,8,1,5,3,1,3,4,8,6,2,5,7,5,6,1,3,2,7,4,7,6,4,5,3,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,7,6,4,9,5,1,8,3,2,4,1 -150,173.88.221.18,R_7OGDePsyM0FyRtM,self,02PVF,past,2,2,3,1,1,2,1,6,8,5,8,5,5,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3,2,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,0,1,0,1,10 cents,100 minutes,24 days,5,7,It's impossible to tell,57,Tuesday,D,F,E,F,B,Male,College Diploma/Certificate,61,60 - 66,American,Male,1,,,1,,1,,3,1,8,5,6,7,4,2,3,6,7,1,2,4,5,4,6,2,7,8,1,5,3,1,7,3,8,6,4,2,5,2,5,1,6,4,7,3,3,7,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,2,3,6,7,9,5,1,4,4,2,3,1 -151,99.254.214.153,R_6STJr3WMG4vfZtv,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,3,4,2,2,2,2,3,2,2,2,2,2,2,3,3,1,4,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,0,-2,1,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,39,Wednesday,A,D,C,B,E,Female,High School (or equivalent),71,67 - 73,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,6,2,3,7,1,1,4,5,7,2,3,6,3,6,8,2,7,4,5,1,1,6,8,3,7,4,5,2,1,6,5,3,4,2,7,5,4,2,8,6,3,7,1,5,9,6,4,2,8,7,1,3,2,4,3,1 -152,204.195.170.98,R_7s12RcLZlHOhTmN,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,5,3,3,6,6,3,3,7,1,3,1,2,3,1,1,1,2,4,3,3,3,2,2,2,2,3,2,2,1,2,1,2,1,2,1,1,1,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,-1,-2,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,F,A,B,D,Female,University - Graduate (Masters),66,60 - 66,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,6,5,2,1,1,3,2,7,6,5,4,7,6,8,4,5,3,2,1,1,4,8,3,7,5,6,2,1,4,3,2,6,5,7,4,7,3,8,6,2,5,1,9,7,5,8,4,2,3,1,6,4,3,2,1 -153,75.152.249.196,R_5Yy7TmjAmlmkplu,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,4,0,0,0,0,0,5,0,5,0,0,0,5,1,0,5,2,2,0,0,5,2,2,0,0,0,2,0,3,0,0,0,5,0,0,5,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-1,0,-1,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,E,E,F,Female,University - Graduate (Masters),72,67 - 73,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,7,4,2,6,1,1,5,4,7,6,2,3,4,5,8,7,6,2,3,1,1,7,8,5,4,6,3,2,1,6,4,3,5,2,7,3,5,7,8,6,2,4,1,7,8,2,9,4,3,6,1,5,2,4,3,1 -154,73.244.71.246,R_3yBmgEQoSxIE2Yx,self,01FPV,past,5,6,3,4,4,6,4,7,3,7,5,6,6,7,6,6,7,5,8,6,6,2,3,4,4,4,4,6,6,7,4,7,7,7,7,8,7,6,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,1,0,-1,1,10 cents,100 minutes,36 days,5,9,Richard is taller than Matt,44,Monday,A,E,B,B,C,Female,College Diploma/Certificate,55,53 - 59,American,Female,1,,1,,,1,,6,1,8,5,7,3,2,4,4,6,7,1,3,5,2,4,3,2,5,8,1,6,7,1,6,7,8,2,4,3,5,6,4,1,5,3,7,2,6,3,2,4,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,6,2,9,3,4,1,5,2,4,3,1 -155,73.221.239.30,R_6cBnn8stcUnbwlH,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Neither like nor dislike,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,0,0,0,0,10 cents,100 minutes,24 days,4,11,It's impossible to tell,39,Tuesday,D,C,A,C,F,Female,High School (or equivalent),54,53 - 59,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,4,5,3,7,1,1,2,6,7,5,4,3,5,2,8,3,6,7,4,1,1,4,8,7,5,3,6,2,1,3,4,5,6,2,7,7,5,6,8,4,3,2,1,3,7,5,9,4,6,8,1,2,4,3,2,1 -156,99.100.101.110,R_7yADvJdmibTypzP,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,10,0,0,10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,10,0,0,0,5,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,0,0,-2,-2,2,10 cents,100 minutes,24 days,3,12,It's impossible to tell,47,Tuesday,D,C,A,F,D,Female,College Diploma/Certificate,64,60 - 66,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,2,7,4,3,1,1,2,3,7,5,4,6,7,2,8,3,5,6,4,1,1,4,8,5,6,2,7,3,1,4,3,6,5,2,7,3,2,4,8,7,5,6,1,6,9,8,2,4,7,3,1,5,3,4,2,1 -157,142.161.73.212,R_14bG6syyYkjQkax,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,4,2,2,2,1,1,2,1,1,2,1,1,1,1,1,3,1,5,3,1,5,3,3,2,5,1,1,2,2,1,1,1,5,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,0,2,2,-1,2,10 cents,100 minutes,24 days,7,8,Richard is shorter than Matt,57,Tuesday,E,A,F,D,B,Female,High School (or equivalent),73,67 - 73,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,4,7,5,6,1,1,6,5,7,2,4,3,5,2,8,6,3,4,7,1,1,3,8,4,6,2,7,5,1,4,6,3,5,2,7,3,4,6,8,2,7,5,1,5,7,4,3,9,8,6,1,2,4,2,3,1 -158,98.122.154.42,R_5NEzGe9KuOl772T,self,02PVF,past,5,1,7,8,5,10,7,6,2,7,7,9,3,8,9,6,9,7,9,3,8,1,5,9,7,7,8,9,6,8,7,10,5,4,7,8,3,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,2,-2,-2,2,10 cents,100 minutes,24 days,5,8,Zach is shorter than Matt,47,Sunday,E,E,C,B,F,Female,University - Graduate (Masters),57,53 - 59,American,Female,1,,,1,,1,,7,1,8,4,2,6,3,5,5,3,7,1,4,6,2,7,6,5,4,8,1,2,3,1,2,3,8,4,5,7,6,3,5,1,4,2,7,6,5,6,3,2,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,2,6,3,4,9,1,7,4,2,3,1 -159,73.101.138.209,R_3w0svZJfSYqqA5G,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,1,6,8,0,6,6,3,6,6,1,0,3,0,1,7,0,0,5,4,2,4,6,1,1,0,3,1,1,2,1,1,0,0,4,3,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,24 days,2,11,It's impossible to tell,47,Sunday,A,C,C,B,B,Female,College Diploma/Certificate,46,46 - 52,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,6,7,3,2,1,1,5,2,7,6,3,4,5,7,8,6,2,3,4,1,1,5,8,7,6,4,2,3,1,3,4,6,5,2,7,7,3,4,8,5,6,2,1,2,5,9,3,6,4,8,1,7,2,4,3,1 -160,70.89.81.37,R_5KkeM15guDtaZtS,self,01FPV,future,1,1,1,4,1,3,3,1,1,2,2,5,2,2,2,3,2,3,2,3,3,1,2,6,1,7,2,3,4,4,1,6,2,5,1,2,5,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,0,1,1,5 cents,100 minutes,47 days,4,8,It's impossible to tell,47,Sunday,A,E,A,D,D,Female,University - Graduate (Masters),42,39 - 45,American,Female,1,,1,,,,1,5,1,8,2,6,4,7,3,4,2,7,1,3,6,5,5,4,2,7,8,1,3,6,1,2,4,8,5,7,3,6,3,2,1,4,5,7,6,7,6,3,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,7,3,8,9,1,2,4,3,2,1 -161,67.209.30.114,R_3QAIeV4HaE2rc4X,self,01FPV,past,5,1,2,10,5,1,3,7,6,9,1,2,2,3,2,5,0,1,6,0,7,4,3,4,2,1,4,5,1,1,0,3,0,0,0,0,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-1,1,-1,-2,0,10 cents,5 minutes,36 days,5,8,It's impossible to tell,47,Monday,D,D,B,B,D,Female,College Diploma/Certificate,38,32 - 38,American,Female,1,,1,,,1,,7,1,8,4,6,2,3,5,3,2,7,1,4,5,6,7,5,2,4,8,1,6,3,1,6,3,8,5,7,4,2,3,4,1,2,5,7,6,7,5,3,6,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,9,5,4,2,6,1,8,4,2,3,1 -162,73.12.239.29,R_5MrGB7fwMWqMDqS,self,02PVF,future,6,3,2,0,3,8,5,6,1,7,4,3,4,2,5,6,3,4,8,6,3,2,3,4,2,4,4,4,3,4,7,6,6,1,2,8,5,5,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-1,-2,1,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,D,D,B,Female,University - PhD,44,39 - 45,American,Female,1,,,1,,,1,5,1,8,4,7,2,6,3,5,2,7,1,4,6,3,4,3,6,7,8,1,5,2,1,2,3,8,5,7,6,4,3,2,1,5,4,7,6,5,3,7,4,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,3,9,2,8,4,1,5,4,2,3,1 -163,173.70.193.36,R_1IEl17m0nyMJSEA,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Dislike a great deal,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,5,5,0,0,0,0,0,0,0,5,0,5,0,5,10,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,2,0,-2,2,0,-2,2,10 cents,5 minutes,24 days,5,10,Richard is shorter than Matt,57,Sunday,D,D,C,A,B,Female,College Diploma/Certificate,59,53 - 59,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,2,4,3,5,1,1,6,2,7,4,5,3,6,3,8,2,5,4,7,1,1,3,8,2,4,5,7,6,1,6,4,5,3,2,7,5,3,2,8,4,6,7,1,5,7,3,4,8,2,9,1,6,2,3,4,1 -164,174.115.18.69,R_7fHTMaZaOsHb5p0,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,5,2,2,2,3,3,3,2,3,3,5,3,2,2,3,3,3,3,3,1,2,1,2,1,1,1,2,3,2,3,3,2,1,1,1,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,1,-2,-2,1,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,A,B,E,Female,College Diploma/Certificate,71,67 - 73,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,4,2,3,1,1,2,6,7,4,5,3,7,5,8,3,6,2,4,1,1,7,8,6,2,5,4,3,1,2,5,3,4,6,7,7,3,5,8,4,2,6,1,7,9,2,6,3,4,5,1,8,4,2,3,1 -165,142.170.160.206,R_7sjmbyS9FzQx3Vv,self,01FPV,future,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,1,3,0,1,0,0,2,0,0,1,1,2,2,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-2,-1,-1,-2,1,5 cents,5 minutes,36 days,5,8,Richard is shorter than Matt,47,Monday,D,C,C,E,A,Female,High School (or equivalent),59,53 - 59,Canadian,Female,1,,1,,,,1,5,1,8,7,3,6,2,4,2,5,7,1,4,6,3,3,5,2,6,8,1,4,7,1,3,6,8,7,2,4,5,3,5,1,2,6,7,4,7,3,5,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,8,2,9,3,1,4,4,3,2,1 -166,45.59.188.162,R_1979eZC5yU0xG3U,self,03VFP,future,2,2,2,3,1,1,2,3,3,2,2,3,4,1,4,8,1,3,5,4,5,5,2,2,2,2,5,5,2,3,2,4,3,6,4,6,4,2,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,0,-2,1,-1,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,C,C,Female,College Diploma/Certificate,34,32 - 38,Canadian,Female,1,,,,1,,1,3,1,8,7,6,2,4,5,5,4,7,1,3,2,6,4,6,5,2,8,1,7,3,1,7,5,8,2,4,6,3,5,2,1,4,3,7,6,2,6,7,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,7,9,2,8,6,1,3,2,3,4,1 -167,136.226.76.84,R_5emkyuS1OTqJ8cX,self,03VFP,past,10,0,0,0,5,0,0,5,0,0,0,5,0,6,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,3,0,0,5,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,0,5 cents,5 minutes,47 days,5,9,It's impossible to tell,47,Sunday,B,E,B,B,B,Female,University - Undergraduate,49,46 - 52,Canadian,Female,1,,,,1,1,,4,1,8,3,7,6,5,2,6,3,7,1,4,2,5,7,3,5,6,8,1,4,2,1,7,4,8,5,3,6,2,2,3,1,4,6,7,5,3,5,6,7,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,5,6,9,8,1,7,4,3,2,1 -168,206.251.88.239,R_6hlVDDVQuqNjJcZ,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,6,3,1,3,4,8,7,7,6,5,8,8,8,5,3,2,7,8,9,8,1,1,1,4,1,8,2,1,2,1,5,5,4,7,2,8,8,8,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,-1,-2,0,0,-1,-2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Wednesday,D,D,B,B,F,Female,College Diploma/Certificate,47,46 - 52,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,2,4,3,6,1,1,6,4,7,2,3,5,2,4,8,3,5,6,7,1,1,6,8,7,3,2,4,5,1,4,3,6,2,5,7,2,4,6,8,3,7,5,1,7,3,2,9,8,6,5,1,4,3,4,2,1 -169,151.197.233.82,R_5SIdvg5B0eHFLRP,self,03VFP,future,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,-1,0,-2,1,10 cents,100 minutes,36 days,5,8,It's impossible to tell,57,Tuesday,D,B,E,C,C,Female,University - Graduate (Masters),54,53 - 59,American,Female,1,,,,1,,1,4,1,8,5,6,3,7,2,5,3,7,1,2,4,6,4,3,2,5,8,1,7,6,1,7,3,8,4,2,5,6,6,5,1,2,3,7,4,6,2,7,3,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,5,2,6,3,7,1,4,2,3,4,1 -170,174.208.163.141,R_6pEdQmNh3h4mdBY,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,2,7,2,5,1,1,1,3,2,3,2,1,3,4,4,6,4,2,4,3,3,8,1,6,1,3,5,3,3,4,1,7,5,4,5,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,0,-1,0,2,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,35,Wednesday,D,D,A,A,D,Female,University - Undergraduate,40,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,2,7,4,6,1,1,6,3,7,2,4,5,4,3,8,6,2,7,5,1,1,7,8,6,2,5,3,4,1,5,6,2,4,3,7,5,7,3,8,6,2,4,1,4,9,3,5,2,7,6,1,8,2,3,4,1 -171,75.196.15.92,R_7bZ2ausxgE4QiOd,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,6,2,4,5,9,5,7,10,8,5,4,8,8,8,10,8,10,9,7,10,1,1,0,3,5,1,4,2,1,3,2,5,3,1,3,2,3,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,0,2,-2,1,2,1,1,10 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,47,Tuesday,E,D,B,D,E,Female,High School (or equivalent),22,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,2,4,3,5,1,1,2,5,7,3,4,6,3,6,8,5,7,2,4,1,1,6,8,5,7,2,4,3,1,2,5,4,6,3,7,7,4,5,8,6,3,2,1,6,3,9,4,7,5,2,1,8,2,3,4,1 -172,64.180.78.207,R_7jNsW9q3nxaXJgl,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,0,0,6,0,7,0,0,0,6,4,9,7,0,0,0,7,5,8,0,5,0,0,7,0,8,0,5,0,9,8,8,9,0,4,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,-1,0,-1,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Monday,E,E,E,B,D,Female,High School (or equivalent),68,67 - 73,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,5,6,2,1,1,5,3,7,4,6,2,7,5,8,3,4,6,2,1,1,5,8,4,2,3,6,7,1,5,4,6,2,3,7,5,6,7,8,4,3,2,1,5,8,9,2,4,3,7,1,6,3,4,2,1 -173,72.1.195.11,R_5dEXfDaL0D2fqmH,self,02PVF,past,1,1,1,3,1,3,2,3,1,3,1,1,2,4,1,1,1,3,3,2,5,1,5,5,1,3,5,1,1,3,3,3,3,8,1,1,5,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-1,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,B,Female,University - Undergraduate,47,46 - 52,Canadian,Female,1,,,1,,1,,6,1,8,4,3,5,7,2,2,4,7,1,5,6,3,7,5,2,6,8,1,4,3,1,2,4,8,6,5,3,7,5,4,1,6,2,7,3,4,7,3,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,6,3,2,4,8,1,7,2,3,4,1 -174,108.170.188.2,R_1LcejuzWYuwVmpU,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,F,C,D,E,B,Female,College Diploma/Certificate,33,32 - 38,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,4,5,7,6,1,1,2,5,7,6,3,4,3,4,8,5,7,2,6,1,1,5,8,2,6,3,4,7,1,2,6,4,3,5,7,3,5,4,8,6,2,7,1,3,8,2,4,5,6,9,1,7,4,3,2,1 -175,67.44.224.56,R_74fHLt2I7H6GVy1,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,0,0,1,2,3,2,0,0,2,0,2,1,0,1,1,0,0,0,1,1,0,0,1,2,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-1,-2,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,C,B,B,B,Female,University - Undergraduate,65,60 - 66,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,6,7,3,4,1,1,5,3,7,2,4,6,7,3,8,6,2,5,4,1,1,3,8,2,7,6,5,4,1,3,4,6,2,5,7,7,3,2,8,4,6,5,1,8,6,9,3,7,5,4,1,2,2,3,4,1 -176,23.154.184.164,R_5ghW0E3NmA301kv,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,3,3,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-2,0,0,-2,-1,10 cents,5 minutes,15 days,2,9,It's impossible to tell,47,Monday,D,D,A,D,F,Female,High School (or equivalent),55,53 - 59,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,7,6,4,5,1,1,4,5,7,3,2,6,4,2,8,5,7,6,3,1,1,7,8,2,3,6,5,4,1,6,3,5,2,4,7,2,4,5,8,3,7,6,1,3,5,7,9,6,4,2,1,8,3,2,4,1 -177,172.102.229.73,R_68Xh1mj6hRDBycV,self,01FPV,future,1,1,1,1,1,2,1,5,5,5,4,5,5,5,5,5,5,5,5,6,1,1,1,7,1,7,2,2,2,2,5,3,3,1,4,2,7,5,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,1,0,0,0,10 cents,25 minutes,15 days,3,8,It's impossible to tell,53,Tuesday,A,F,B,D,F,Male,Trade School,64,60 - 66,Canadian,Male,1,,1,,,,1,5,1,8,2,6,3,4,7,3,2,7,1,4,6,5,2,4,6,3,8,1,5,7,1,3,7,8,4,2,5,6,4,5,1,6,3,7,2,6,3,4,2,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,6,8,7,5,1,9,3,2,4,1 -178,74.12.48.225,R_5lit9e73EtczkFv,self,03VFP,future,5,2,2,0,3,3,3,0,0,1,0,0,0,2,0,1,0,2,2,1,2,2,2,1,3,1,1,3,0,1,0,1,1,0,2,3,1,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,-2,-2,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,C,D,Female,University - Undergraduate,37,32 - 38,Canadian,Female,1,,,,1,,1,7,1,8,4,3,6,5,2,3,5,7,1,2,6,4,3,6,4,7,8,1,2,5,1,4,2,8,3,7,5,6,5,2,1,4,3,7,6,5,4,2,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,5,8,2,6,4,1,7,2,4,3,1 -179,76.9.84.130,R_60yR4jxoIfsw9vb,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,-1,0,0,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,57,Sunday,D,F,E,B,D,Female,University - Undergraduate,65,60 - 66,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,6,5,3,7,1,1,2,5,7,3,6,4,7,4,8,3,5,6,2,1,1,6,8,2,7,4,3,5,1,2,4,3,5,6,7,3,5,2,8,6,7,4,1,8,6,9,2,5,7,3,1,4,3,4,2,1 -180,173.33.208.207,R_3bOZ7PtruTYq3Nk,self,03VFP,past,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,20 cents,100 minutes,15 days,6,12,Richard is shorter than Matt,47,Wednesday,F,B,E,E,F,Female,University - Undergraduate,25,25 - 31,Canadian,Female,1,,,,1,1,,5,1,8,7,3,4,6,2,4,3,7,1,6,5,2,3,5,2,7,8,1,4,6,1,2,6,8,3,4,7,5,2,3,1,6,4,7,5,2,7,4,6,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,6,9,7,5,2,1,3,3,2,4,1 -181,75.33.88.147,R_54ijQ6ltO8i7hyF,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,5,4,6,4,5,5,6,5,6,5,5,3,5,3,4,7,3,4,6,6,6,5,6,5,6,4,5,4,5,5,5,6,5,6,6,5,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-1,1,0,1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,A,B,Female,Professional Degree (ex. JD/MD),30,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,5,6,7,1,1,4,3,7,5,6,2,2,6,8,4,7,5,3,1,1,2,8,5,6,7,3,4,1,6,4,2,5,3,7,6,5,3,8,2,7,4,1,4,3,9,2,7,6,8,1,5,3,2,4,1 -182,172.56.67.185,R_5Y7TmGAfgSs9cSl,self,02PVF,past,7,8,10,5,4,6,9,7,6,8,7,7,5,7,5,6,5,5,10,5,6,7,8,7,7,8,6,5,7,8,8,8,8,10,7,8,9,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,0,0,-1,0,-1,1,10 cents,100 minutes,24 days,3,11,Richard is taller than Matt,39,Sunday,B,E,B,F,E,Female,University - Undergraduate,65,60 - 66,American,Female,1,,,1,,1,,2,1,8,3,4,6,5,7,4,3,7,1,2,5,6,7,6,3,2,8,1,4,5,1,2,6,8,5,4,7,3,2,5,1,4,3,7,6,7,3,4,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,5,6,4,2,9,1,8,2,3,4,1 -183,74.135.82.215,R_3fQSaQR0xeuPvSV,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,0,0,10 cents,100 minutes,24 days,6,8,Richard is taller than Matt,47,Tuesday,D,F,F,A,E,Male,College Diploma/Certificate,68,67 - 73,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,2,4,7,3,1,1,3,5,7,6,2,4,5,4,8,3,6,2,7,1,1,7,8,3,2,5,4,6,1,3,4,5,6,2,7,3,5,6,8,7,2,4,1,5,4,2,9,7,6,8,1,3,2,4,3,1 -184,99.232.146.11,R_1ng5n8CyAFaD0pX,self,01FPV,past,1,1,1,2,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-2,-1,-1,-1,-1,-1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,F,Female,University - Graduate (Masters),41,39 - 45,Canadian,Female,1,,1,,,1,,4,1,8,7,6,3,5,2,6,4,7,1,2,5,3,6,5,7,4,8,1,3,2,1,3,4,8,5,2,7,6,4,2,1,3,5,7,6,7,4,2,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,2,9,5,8,3,1,4,4,2,3,1 -185,173.238.3.28,R_1DzEVuaXhfNNmVt,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,5,0,8,10,8,5,8,10,10,10,10,10,8,8,5,10,9,5,9,5,9,5,9,10,5,5,9,7,7,7,7,7,7,7,9,10,9,9,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,0,-1,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,57,Sunday,D,C,C,B,D,Male,High School (or equivalent),55,53 - 59,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,6,5,3,4,1,1,5,2,7,6,4,3,7,3,8,5,4,6,2,1,1,6,8,3,2,7,4,5,1,5,4,3,6,2,7,5,6,4,8,3,2,7,1,3,8,5,6,7,2,4,1,9,3,4,2,1 -186,174.6.12.149,R_62rjslG8oSPf6M3,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,4,1,3,2,6,1,5,1,2,3,1,1,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,-1,-2,0,5 cents,100 minutes,24 days,5,11,Richard is taller than Matt,47,Sunday,B,C,B,B,F,Female,University - Undergraduate,36,32 - 38,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,4,3,2,6,1,1,3,2,7,6,5,4,5,7,8,4,2,3,6,1,1,4,8,5,2,3,6,7,1,4,5,3,6,2,7,7,2,4,8,6,3,5,1,8,9,7,4,6,2,3,1,5,4,3,2,1 -187,135.23.41.88,R_10Uojumj1mzlq4m,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,8,9,8,6,9,8,2,2,5,2,2,2,2,2,6,1,6,4,2,3,1,2,3,2,3,2,3,3,3,3,3,3,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,-2,-2,1,2,2,2,-2,10 cents,25 minutes,15 days,2,7,It's impossible to tell,57,Wednesday,A,A,A,F,A,Male,High School (or equivalent),51,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,3,7,2,4,1,1,5,3,7,4,2,6,5,6,8,3,2,4,7,1,1,7,8,3,4,6,5,2,1,2,5,4,6,3,7,3,6,5,8,7,4,2,1,5,3,2,4,7,6,8,1,9,3,4,2,1 -188,209.121.229.241,R_15wEmcF3KbEYfxn,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,0,0,0,0,0,0,0,2,0,0,0,0,2,7,7,4,8,8,9,8,0,1,7,1,9,7,5,6,1,7,1,2,1,8,5,1,7,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,1,2,-1,2,10 cents,5 minutes,24 days,3,12,It's impossible to tell,44,Monday,D,B,F,B,E,Male,Trade School,68,67 - 73,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,3,2,5,1,1,5,4,7,3,2,6,4,6,8,5,2,3,7,1,1,7,8,6,4,5,2,3,1,6,4,2,5,3,7,7,5,4,8,2,6,3,1,9,5,3,4,7,8,6,1,2,2,3,4,1 -189,142.198.180.246,R_5ErMgmil09hQ2ub,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,10,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,10,0,0,10,10,10,0,0,10,0,10,10,10,0,0,0,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,-1,-1,-1,0,-1,0,10 cents,5 minutes,24 days,5,11,It's impossible to tell,47,Tuesday,D,F,A,F,F,Male,University - Undergraduate,64,60 - 66,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,3,7,2,4,1,1,5,2,7,3,6,4,6,4,8,3,2,7,5,1,1,5,8,3,6,2,7,4,1,4,6,2,3,5,7,2,6,5,8,4,7,3,1,7,6,3,2,4,9,8,1,5,4,3,2,1 -190,216.66.136.6,R_79wXfwIj6vhiuHf,self,02PVF,future,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,6,4,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,-2,-1,-2,0,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Monday,A,C,B,D,B,Male,University - Undergraduate,57,53 - 59,Canadian,Male,1,,,1,,,1,2,1,8,4,3,5,6,7,5,3,7,1,2,4,6,2,4,5,3,8,1,6,7,1,6,5,8,3,4,7,2,4,2,1,5,6,7,3,3,2,5,6,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,7,4,3,9,8,1,5,4,3,2,1 -191,108.56.219.170,R_6f9OqcIhFfNdkWG,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,4,6,7,8,4,7,3,2,4,7,6,5,5,2,8,4,1,6,3,7,3,7,8,3,8,5,6,5,7,6,7,5,4,7,6,3,4,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-1,0,0,-2,0,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Monday,B,D,C,B,F,Male,University - Undergraduate,69,67 - 73,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,7,4,5,6,1,1,2,3,7,6,5,4,6,2,8,3,7,4,5,1,1,4,8,7,2,6,3,5,1,5,6,4,3,2,7,5,3,7,8,4,6,2,1,8,7,3,6,2,5,9,1,4,4,2,3,1 -192,96.255.238.218,R_55MdkoIAn1HWObs,self,03VFP,past,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,7,5,6,5,5,5,5,5,6,6,6,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,E,B,D,C,Female,University - Graduate (Masters),35,32 - 38,American,Female,1,,,,1,1,,6,1,8,5,4,7,2,3,6,4,7,1,2,3,5,6,2,4,3,8,1,5,7,1,3,6,8,5,4,2,7,4,3,1,6,2,7,5,5,4,7,3,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,9,7,4,8,3,1,6,3,4,2,1 -193,198.16.211.53,R_1qgF2gf2qFnKEzF,self,01FPV,future,0,4,4,9,2,6,6,3,2,3,2,3,3,3,0,3,2,3,1,4,8,0,4,5,1,2,4,5,7,8,5,5,7,5,8,9,1,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-1,-2,1,0,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,E,C,D,B,Male,University - Undergraduate,62,60 - 66,Canadian,Male,1,,1,,,,1,4,1,8,5,6,7,3,2,3,6,7,1,5,2,4,3,5,4,6,8,1,7,2,1,4,7,8,6,3,2,5,2,6,1,4,3,7,5,7,6,5,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,9,2,8,5,3,1,7,4,2,3,1 -194,99.251.141.18,R_3hLsRYe2TUd5O8f,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like a great deal,2,1,3,5,2,4,3,5,4,3,2,4,3,2,4,4,3,2,5,3,5,3,5,7,3,6,5,6,4,5,3,4,4,1,5,7,3,2,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,0,-1,-2,0,1,0,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,B,Male,High School (or equivalent),71,67 - 73,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,2,5,6,1,1,2,6,7,3,5,4,6,3,8,5,7,4,2,1,1,2,8,3,4,6,5,7,1,5,4,6,2,3,7,5,4,7,8,2,6,3,1,8,3,7,2,6,4,9,1,5,2,4,3,1 -195,99.243.109.196,R_1dyJk0pjJmIW7iG,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,-1,-2,1,10 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,B,B,F,B,Male,University - Undergraduate,60,60 - 66,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,7,4,5,6,1,1,4,2,7,3,6,5,3,5,8,6,7,4,2,1,1,5,8,2,6,4,7,3,1,5,2,4,6,3,7,7,5,4,8,3,2,6,1,2,7,3,4,6,8,9,1,5,4,3,2,1 -196,80.71.36.20,R_5shpke7bmFw8KL2,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,6,7,7,6,8,8,6,8,7,7,7,6,6,6,6,7,7,5,8,6,7,7,4,6,7,6,6,6,7,6,5,7,6,7,6,7,7,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,0,0,0,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Female,University - Undergraduate,39,39 - 45,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,5,4,2,6,1,1,5,2,7,4,3,6,5,3,8,4,6,7,2,1,1,7,8,6,3,4,2,5,1,2,5,3,6,4,7,4,7,3,8,6,5,2,1,5,6,7,3,2,4,8,1,9,3,4,2,1 -197,76.46.3.149,R_7eUNrbm7ZZr1RcD,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,0,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,3,0,1,1,3,1,1,3,0,3,1,1,2,1,2,2,1,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-2,0,0,-2,0,10 cents,100 minutes,24 days,5,7,It's impossible to tell,57,Monday,D,F,B,F,A,Male,University - Graduate (Masters),72,67 - 73,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,6,3,7,4,2,5,2,4,8,3,7,6,5,1,1,6,8,5,2,4,7,3,1,2,6,5,4,3,7,3,7,4,8,5,2,6,1,4,5,2,6,8,9,7,1,3,4,2,3,1 -198,206.176.149.176,R_7zlzbCdEcoq7XWN,self,01FPV,future,6,8,6,7,7,7,6,9,6,8,7,8,7,8,6,7,6,8,7,8,7,6,7,6,7,7,7,7,6,7,7,7,8,7,6,7,7,8,8,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,0,1,1,1,0,10 cents,75 minutes,24 days,5,9,Richard is as tall as Matt,44,Monday,C,D,D,B,A,Male,University - Undergraduate,48,46 - 52,Canadian,Male,1,,1,,,,1,5,1,8,4,6,3,2,7,4,6,7,1,2,3,5,4,3,5,2,8,1,7,6,1,6,7,8,5,2,4,3,6,4,1,2,5,7,3,3,5,2,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,2,9,5,8,1,7,2,4,3,1 -199,104.158.197.165,R_3LZ4LsM57Avk5bM,self,01FPV,future,2,1,2,1,2,1,2,2,1,1,2,1,2,1,1,2,1,2,3,2,3,1,4,4,1,1,3,2,1,1,1,1,1,1,1,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,-1,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,D,Male,University - Graduate (Masters),49,46 - 52,Canadian,Male,1,,1,,,,1,7,1,8,5,4,3,2,6,6,3,7,1,2,4,5,2,6,7,5,8,1,3,4,1,3,7,8,5,4,6,2,2,4,1,6,3,7,5,7,5,6,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,3,8,9,4,1,6,3,2,4,1 -200,154.20.38.28,R_36uzSWsOpOQWjwl,self,02PVF,past,10,1,6,10,3,1,5,8,1,9,2,1,4,1,2,9,1,1,1,3,4,1,4,4,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,D,Female,University - Undergraduate,50,46 - 52,Canadian,Female,1,,,1,,1,,3,1,8,2,4,5,6,7,5,2,7,1,4,3,6,2,3,5,6,8,1,4,7,1,3,4,8,7,2,5,6,2,3,1,6,4,7,5,2,3,5,6,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,3,9,8,5,6,1,2,3,2,4,1 -201,100.12.27.170,R_5V7LbLkar6CIjpT,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Dislike somewhat,0,0,0,0,0,3,0,3,1,1,1,2,0,2,1,3,3,0,5,1,0,0,0,0,0,2,0,0,0,0,2,5,1,1,0,1,0,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-1,0,-1,2,0,-1,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,57,Wednesday,D,C,B,B,D,Male,High School (or equivalent),67,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,6,2,4,1,1,4,5,7,3,2,6,4,7,8,3,6,2,5,1,1,4,8,3,2,6,5,7,1,4,6,5,3,2,7,5,2,3,8,4,7,6,1,5,9,3,8,2,6,7,1,4,4,3,2,1 -202,65.31.107.174,R_3PBwhkVA2ghNmO6,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",16,Like a great deal,0,0,1,1,0,0,0,0,0,0,0,1,0,9,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,1,0,-1,1,10 cents,5 minutes,24 days,5,7,Zach is shorter than Matt,57,Tuesday,D,B,C,E,B,Male,High School (or equivalent),61,60 - 66,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,5,2,6,1,1,4,2,7,5,6,3,6,4,8,2,3,5,7,1,1,6,8,2,7,3,5,4,1,6,3,2,5,4,7,7,6,4,8,5,3,2,1,9,6,5,2,7,4,3,1,8,4,2,3,1 -203,198.55.233.203,R_5J0z6MdJsR2r15L,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,8,8,2,7,5,5,2,7,2,8,6,5,8,8,2,5,8,6,5,2,2,7,2,5,4,5,5,8,2,6,7,3,7,9,2,2,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,-1,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,C,A,Male,University - PhD,64,60 - 66,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,4,2,3,6,1,1,5,2,7,6,4,3,4,2,8,6,7,3,5,1,1,6,8,4,3,5,2,7,1,2,3,5,4,6,7,3,2,4,8,7,5,6,1,8,4,2,9,6,5,7,1,3,4,2,3,1 -204,208.96.95.203,R_3IhCIYd49zbbX0I,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,0,9,0,8,9,10,5,0,5,8,9,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,-1,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,A,A,A,A,Male,Trade School,45,39 - 45,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,6,5,3,7,1,1,6,5,7,2,4,3,4,5,8,6,2,3,7,1,1,6,8,3,2,7,4,5,1,3,4,5,6,2,7,4,2,5,8,3,6,7,1,5,7,6,2,4,9,8,1,3,4,2,3,1 -205,24.71.116.155,R_6kjCxK3ZR0UJkPf,self,01FPV,future,1,0,0,4,0,0,2,0,0,0,2,1,1,0,0,0,0,3,0,1,1,0,0,2,1,1,1,0,0,0,0,2,1,0,1,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-1,-2,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,A,B,Male,College Diploma/Certificate,68,67 - 73,Canadian,Male,1,,1,,,,1,6,1,8,7,3,4,2,5,6,4,7,1,2,5,3,5,7,6,2,8,1,3,4,1,7,3,8,4,6,2,5,4,5,1,6,3,7,2,6,2,7,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,9,5,6,2,1,4,4,2,3,1 -206,142.161.255.138,R_3fcfNAw5M9wlsqt,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,0,-2,-2,0,10 cents,5 minutes,24 days,2,8,It's impossible to tell,47,Monday,D,F,E,B,B,Male,College Diploma/Certificate,65,60 - 66,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,6,4,3,5,1,1,2,5,7,6,4,3,4,7,8,6,3,2,5,1,1,7,8,5,6,3,2,4,1,4,3,2,5,6,7,5,7,3,8,2,4,6,1,4,8,9,6,2,3,5,1,7,2,3,4,1 -207,192.0.216.195,R_1O1WCIFYxPNJqh0,self,01FPV,past,7,6,1,1,1,1,3,2,1,2,2,4,1,4,4,2,2,2,2,4,6,2,2,6,2,2,5,2,6,2,2,6,5,3,4,3,2,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,1,-2,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Male,University - Undergraduate,64,60 - 66,Canadian,Male,1,,1,,,1,,7,1,8,4,5,6,2,3,3,5,7,1,4,6,2,5,3,4,2,8,1,6,7,1,5,7,8,3,6,4,2,5,2,1,3,4,7,6,6,7,3,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,5,3,4,6,2,1,9,2,3,4,1 -208,70.51.236.71,R_7nLZFWU30FLnCi5,self,01FPV,future,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,4,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,0,1,-1,0,-1,-1,0,10 cents,5 minutes,47 days,5,11,It's impossible to tell,47,Wednesday,D,B,C,B,F,Male,University - Undergraduate,66,60 - 66,Canadian,Male,1,,1,,,,1,5,1,8,2,7,6,4,3,3,5,7,1,6,2,4,5,3,2,7,8,1,6,4,1,5,7,8,4,3,6,2,5,2,1,3,6,7,4,5,6,4,3,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,7,4,8,5,2,1,3,3,2,4,1 -209,142.68.241.141,R_6DdjtpNkPuTY7bX,self,02PVF,past,5,0,0,2,0,2,1,1,2,6,1,5,3,1,1,5,1,0,1,1,3,0,0,3,0,1,1,0,1,4,0,2,1,0,0,4,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,0,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,A,D,D,Female,University - Undergraduate,54,53 - 59,Canadian,Female,1,,,1,,1,,7,1,8,5,3,4,6,2,5,4,7,1,6,2,3,4,6,5,2,8,1,7,3,1,5,3,8,2,4,7,6,2,4,1,5,3,7,6,2,6,4,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,3,5,4,9,1,6,4,3,2,1 -210,184.64.22.170,R_60tTHIyZIuqgPuC,self,02PVF,past,6,6,5,5,5,5,6,6,5,6,5,5,6,5,6,6,5,5,5,6,6,6,6,5,6,6,6,5,6,6,6,6,6,6,6,6,6,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,1,1,0,1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Wednesday,E,B,D,B,E,Female,College Diploma/Certificate,50,46 - 52,Canadian,Female,1,,,1,,1,,5,1,8,4,3,2,6,7,2,5,7,1,4,3,6,3,6,2,7,8,1,4,5,1,4,2,8,5,6,7,3,6,5,1,3,2,7,4,7,3,5,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,6,2,9,3,5,1,8,2,3,4,1 -211,108.172.29.178,R_1dDPSdwZimjC8dt,self,03VFP,future,2,7,5,0,3,1,2,2,3,3,1,2,2,0,0,1,1,2,2,1,3,2,5,3,1,6,5,1,3,7,6,5,5,5,7,9,2,7,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,2,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,University - Graduate (Masters),37,32 - 38,Canadian,Female,1,,,,1,,1,3,1,8,6,7,2,4,5,6,3,7,1,4,2,5,5,2,4,6,8,1,7,3,1,7,3,8,5,4,2,6,4,5,1,2,6,7,3,7,2,6,3,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,3,8,6,9,4,1,2,4,2,3,1 -212,99.239.32.166,R_7phGa7jbBxOUXRi,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,0,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,University - Undergraduate,45,39 - 45,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,3,6,4,7,1,1,2,5,7,3,4,6,2,6,8,3,5,4,7,1,1,6,8,3,5,4,7,2,1,4,6,2,5,3,7,2,3,7,8,4,6,5,1,4,6,5,9,3,8,2,1,7,3,4,2,1 -213,99.229.9.11,R_6IRGUkL5WBWpyLu,self,03VFP,past,2,0,0,0,0,1,0,3,0,2,0,3,1,0,0,0,8,0,0,2,0,0,0,8,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,0,-2,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,39,Sunday,D,D,B,E,F,Female,High School (or equivalent),59,53 - 59,Canadian,Female,1,,,,1,1,,4,1,8,2,7,3,6,5,3,4,7,1,6,5,2,6,2,7,5,8,1,3,4,1,7,3,8,4,5,2,6,2,3,1,5,4,7,6,6,5,2,3,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,9,2,5,6,1,7,3,2,4,1 -214,208.161.208.21,R_5OTNuYOq1MEZh9D,self,02PVF,past,2,1,2,2,2,1,2,1,8,1,4,2,4,8,8,2,4,2,8,1,2,1,1,8,5,2,3,8,8,1,1,2,6,2,1,2,1,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,1,-1,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,College Diploma/Certificate,56,53 - 59,American,Female,1,,,1,,1,,3,1,8,2,6,7,5,4,5,2,7,1,4,3,6,2,7,3,5,8,1,4,6,1,2,3,8,7,4,5,6,4,2,1,5,3,7,6,4,3,5,7,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,9,3,2,7,8,1,6,3,2,4,1 -215,174.112.117.28,R_7dv2rDE1kigmoMj,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,7,8,8,8,7,8,8,8,9,8,8,2,5,2,6,7,4,4,4,6,4,5,4,7,4,5,7,7,5,6,6,4,4,4,4,4,4,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,2,2,2,2,2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,D,E,D,Male,University - Undergraduate,44,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,6,2,7,1,1,2,6,7,4,5,3,7,4,8,6,2,3,5,1,1,3,8,4,6,5,2,7,1,3,2,4,5,6,7,5,7,6,8,4,2,3,1,7,3,4,8,2,5,9,1,6,4,3,2,1 -216,99.245.157.7,R_5DnzeG3XnzlhAtz,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,2,4,2,4,5,4,3,2,5,3,4,3,5,2,3,4,5,5,4,5,4,4,3,2,4,3,3,2,4,4,4,3,3,4,3,2,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-1,-1,-2,-2,0,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,C,Female,University - Undergraduate,53,53 - 59,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,6,7,4,3,1,1,6,3,7,5,4,2,3,6,8,4,7,2,5,1,1,6,8,7,4,3,2,5,1,3,6,2,5,4,7,2,5,6,8,3,4,7,1,9,6,5,7,8,2,4,1,3,4,3,2,1 -217,69.158.14.169,R_6TFvfHtcY0QBTQ5,self,02PVF,future,0,0,0,0,0,2,1,2,0,3,0,3,2,0,2,0,0,2,0,0,0,0,2,2,0,2,1,1,1,3,1,1,2,0,1,2,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Monday,A,E,B,B,B,Male,University - Undergraduate,72,67 - 73,Canadian,Male,1,,,1,,,1,4,1,8,2,7,3,5,6,4,3,7,1,2,6,5,5,2,4,7,8,1,6,3,1,7,6,8,5,3,2,4,3,5,1,2,6,7,4,7,3,5,6,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,7,8,5,6,4,1,9,2,3,4,1 -218,166.182.86.116,R_5Srkr692IrZHd6c,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,20 cents,100 minutes,15 days,5,8,It's impossible to tell,57,Tuesday,F,C,E,A,F,Male,High School (or equivalent),59,53 - 59,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,6,7,5,1,1,4,2,7,5,6,3,5,7,8,4,2,3,6,1,1,5,8,4,7,6,2,3,1,6,5,2,4,3,7,3,5,4,8,7,2,6,1,4,9,5,3,6,8,7,1,2,4,3,2,1 -219,75.158.108.145,R_7QPzbR1u4DAL8Wr,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like somewhat,6,7,7,7,4,8,6,7,3,7,6,6,6,7,4,4,6,5,6,5,7,2,6,7,3,6,6,6,4,7,6,5,6,4,4,6,6,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,-1,-1,-1,-2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,B,B,D,Male,University - Undergraduate,42,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,6,7,1,1,3,4,7,6,2,5,6,4,8,2,7,5,3,1,1,3,8,7,6,2,4,5,1,6,5,2,3,4,7,2,4,5,8,6,3,7,1,7,5,4,8,9,3,2,1,6,2,3,4,1 -220,99.241.216.184,R_1RyAW27tZPnjZi9,self,02PVF,future,6,5,5,5,6,5,5,4,6,5,6,6,5,6,5,6,5,6,6,5,6,5,5,5,6,6,5,4,6,5,6,6,5,7,6,6,5,6,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,-2,0,-1,1,5 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Tuesday,D,E,D,E,D,Female,University - Graduate (Masters),35,32 - 38,Canadian,Female,1,,,1,,,1,2,1,8,5,3,6,4,7,2,4,7,1,3,6,5,3,7,5,6,8,1,2,4,1,2,3,8,4,6,7,5,5,2,1,4,6,7,3,7,4,2,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,9,2,3,7,6,1,5,3,2,4,1 -221,216.8.157.186,R_5ovGSifgd6YbEj5,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,7,4,7,5,2,8,6,4,3,7,2,5,9,3,9,7,1,1,5,7,8,2,6,4,1,7,6,6,1,9,5,3,8,4,5,3,2,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,-1,0,10 cents,100 minutes,47 days,5,11,It's impossible to tell,47,Saturday,B,E,E,C,F,Male,University - Undergraduate,53,53 - 59,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,5,7,6,3,1,1,5,3,7,2,4,6,3,2,8,5,7,6,4,1,1,6,8,5,7,2,3,4,1,4,2,5,6,3,7,7,4,6,8,3,5,2,1,7,8,6,4,2,3,5,1,9,2,3,4,1 -222,99.249.137.2,R_6UVOi5jHAPPoAfi,self,02PVF,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,1,-1,1,-1,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,E,Female,College Diploma/Certificate,56,53 - 59,Canadian,Female,1,,,1,,,1,5,1,8,7,2,3,4,6,4,2,7,1,6,5,3,2,4,3,7,8,1,6,5,1,2,5,8,3,4,6,7,4,5,1,6,2,7,3,6,4,7,3,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,5,6,3,2,9,1,4,3,2,4,1 -223,172.58.134.54,R_1tktQU4X6xuzjj3,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,5,4,5,6,6,6,5,5,5,5,4,4,6,6,6,5,5,5,7,7,5,4,6,5,4,5,4,6,4,6,5,5,4,4,4,5,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,1,1,1,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Sunday,D,D,C,F,E,Male,University - Graduate (Masters),44,39 - 45,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,6,2,5,1,1,3,5,7,2,6,4,3,4,8,2,6,7,5,1,1,5,8,3,2,6,4,7,1,6,4,2,5,3,7,4,6,2,8,5,7,3,1,3,5,8,9,6,2,4,1,7,3,4,2,1 -224,67.225.24.119,R_13UKgpvWwLvsZJS,self,01FPV,past,5,4,2,1,1,10,3,2,3,6,1,4,2,3,5,6,5,3,5,4,3,2,2,3,2,3,4,3,4,4,2,4,3,3,6,4,2,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,B,D,A,B,D,Female,High School (or equivalent),28,25 - 31,Canadian,Female,1,,1,,,1,,2,1,8,5,7,6,4,3,4,2,7,1,3,5,6,2,6,4,3,8,1,7,5,1,4,5,8,3,7,2,6,6,2,1,4,3,7,5,7,2,5,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,5,3,6,2,4,1,8,4,2,3,1 -225,96.125.252.134,R_7XjnnB02wrjZrrM,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,4,6,4,4,5,4,3,5,3,5,4,5,3,5,5,4,3,4,4,4,4,3,3,4,4,4,3,2,3,3,2,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,0,0,-1,-1,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,35,Sunday,A,E,E,E,D,Female,University - Undergraduate,51,46 - 52,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,4,3,7,1,1,4,3,7,5,6,2,2,5,8,3,6,4,7,1,1,7,8,4,5,6,3,2,1,4,3,5,6,2,7,2,7,3,8,6,5,4,1,7,4,8,3,2,6,9,1,5,4,2,3,1 -226,70.53.70.117,R_6Hv5eUrFq2oQwiv,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,6,6,6,5,6,5,5,6,5,6,7,6,5,5,5,5,5,5,5,6,6,6,6,5,5,5,5,6,5,5,7,6,4,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,-1,-1,0,1,-1,-1,10 cents,100 minutes,24 days,5,11,Richard is as tall as Matt,47,Monday,E,E,A,B,E,Male,High School (or equivalent),69,67 - 73,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,3,2,5,4,1,1,3,4,7,6,2,5,2,3,8,7,5,6,4,1,1,4,8,5,3,2,6,7,1,3,5,4,2,6,7,4,3,2,8,5,6,7,1,3,4,7,9,5,8,2,1,6,4,3,2,1 -227,99.244.227.3,R_1jCCpSksfp72HvP,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,7,5,8,5,4,6,5,9,8,6,4,5,5,6,6,6,5,8,5,7,9,4,7,4,7,9,5,5,7,9,5,9,8,4,7,5,5,7,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,-1,1,0,1,0,1,10 cents,5 minutes,24 days,5,11,Richard is shorter than Matt,57,Monday,E,E,D,C,D,Male,High School (or equivalent),50,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,2,5,4,1,1,5,2,7,3,4,6,7,3,8,2,5,6,4,1,1,7,8,6,2,5,4,3,1,2,4,3,5,6,7,4,2,5,8,6,7,3,1,8,2,5,6,4,7,3,1,9,2,4,3,1 -228,45.44.85.172,R_5Bxk78qLYxbeYRk,self,02PVF,future,5,0,2,3,3,2,2,3,1,1,0,5,1,2,1,2,1,0,1,1,3,0,1,1,3,0,3,6,6,7,7,2,3,2,1,2,3,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,-1,0,-1,0,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,B,Male,University - Graduate (Masters),50,46 - 52,Canadian,Male,1,,,1,,,1,6,1,8,7,4,3,5,2,4,5,7,1,2,6,3,4,2,6,3,8,1,5,7,1,3,4,8,5,6,7,2,2,6,1,3,5,7,4,3,7,5,2,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,4,9,5,1,7,3,2,4,1 -229,99.231.208.76,R_1la7CjUIYtJxAQG,self,01FPV,past,2,1,1,2,4,3,2,1,1,2,1,1,1,2,1,2,2,1,3,1,2,1,1,2,3,2,2,1,2,3,2,2,2,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,1,-2,-2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Tuesday,D,C,B,E,C,Male,University - Graduate (Masters),71,67 - 73,Canadian,Male,1,,1,,,1,,4,1,8,2,7,3,6,5,4,6,7,1,2,3,5,3,5,4,7,8,1,2,6,1,6,5,8,3,2,4,7,2,3,1,5,4,7,6,3,7,5,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,5,2,9,8,6,1,4,3,2,4,1 -230,172.97.205.131,R_5FmKX8NYnam5xPl,self,02PVF,past,0,0,0,0,0,0,0,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,-1,-2,2,10 cents,100 minutes,47 days,4,11,Richard is as tall as Matt,44,Tuesday,C,C,C,C,C,Female,College Diploma/Certificate,44,39 - 45,Canadian,Female,1,,,1,,1,,5,1,8,6,7,4,3,2,4,3,7,1,5,6,2,4,6,3,5,8,1,7,2,1,5,4,8,3,2,7,6,4,5,1,3,6,7,2,4,7,2,3,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,2,9,6,4,7,1,3,4,2,3,1 -231,192.234.159.142,R_7PMu1gMMZblJcot,self,01FPV,future,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,2,0,3,0,0,2,2,1,1,2,2,1,1,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,0,10 cents,100 minutes,24 days,3,8,Richard is shorter than Matt,47,Sunday,D,C,B,E,B,Male,Trade School,71,67 - 73,American,Male,1,,1,,,,1,6,1,8,4,5,2,3,7,4,5,7,1,6,3,2,4,6,5,7,8,1,2,3,1,2,5,8,3,4,7,6,6,3,1,2,5,7,4,7,6,3,4,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,9,5,4,8,6,1,7,2,4,3,1 -232,64.180.196.68,R_5eSCaDWFLh7pMJz,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,1,2,5,1,3,2,5,2,2,3,3,3,2,3,2,1,2,2,2,5,2,4,6,2,3,3,5,2,2,2,4,4,2,5,4,2,8,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,1,0,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,B,Female,University - Undergraduate,30,25 - 31,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,7,6,5,2,1,1,3,4,7,5,6,2,3,6,8,5,4,2,7,1,1,6,8,4,2,7,3,5,1,6,4,2,5,3,7,4,5,6,8,3,2,7,1,2,8,7,4,9,3,6,1,5,2,4,3,1 -233,99.192.14.4,R_3RSLCN2SHpTbpuN,self,02PVF,past,4,0,0,5,7,0,2,0,0,0,0,1,4,0,0,10,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,-1,-1,-2,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,57,Sunday,D,C,E,D,E,Female,High School (or equivalent),41,39 - 45,Canadian,Female,1,,,1,,1,,4,1,8,5,3,2,7,6,4,3,7,1,6,2,5,4,2,3,6,8,1,5,7,1,7,3,8,5,2,6,4,2,4,1,5,6,7,3,4,7,6,3,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,7,5,6,9,1,3,3,4,2,1 -234,24.89.87.253,R_1uweiPco4J34T6R,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like somewhat,8,8,8,8,8,8,8,7,8,9,9,8,9,8,8,9,8,8,9,8,7,5,7,6,7,6,7,7,6,7,7,7,7,7,7,7,7,7,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,0,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,E,E,A,E,Male,University - Undergraduate,45,39 - 45,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,3,7,4,1,1,5,2,7,4,6,3,4,7,8,6,3,5,2,1,1,5,8,7,6,2,4,3,1,5,2,6,4,3,7,2,3,4,8,6,7,5,1,6,4,2,5,8,9,3,1,7,3,2,4,1 -235,204.112.166.180,R_7kpI9F1c3dVKZgY,self,02PVF,past,3,0,0,2,0,1,3,5,1,6,6,6,2,0,0,2,4,2,0,0,0,0,0,1,0,2,0,4,0,3,0,1,2,0,0,0,0,0,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,-1,0,-1,0,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,D,Male,University - Graduate (Masters),69,67 - 73,Canadian,Male,1,,,1,,1,,3,1,8,7,2,6,4,5,5,2,7,1,4,6,3,4,3,5,6,8,1,7,2,1,7,2,8,4,6,5,3,4,3,1,6,2,7,5,3,7,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,7,2,9,6,4,1,3,4,3,2,1 -236,174.236.224.242,R_52r90HwTFtx1Iss,self,03VFP,past,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,-1,2,2,1,2,-2,1,15 cents,75 minutes,47 days,5,10,Richard is taller than Matt,35,Tuesday,A,E,C,F,B,Female,University - Graduate (Masters),38,32 - 38,American,Female,1,,,,1,1,,4,1,8,5,6,2,7,3,5,2,7,1,6,4,3,5,2,3,6,8,1,7,4,1,7,3,8,6,2,5,4,6,5,1,2,3,7,4,4,3,6,5,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,6,5,2,7,8,1,3,2,4,3,1 -237,216.102.22.108,R_5wqhlZKxH4VEpxv,self,01FPV,future,1,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,-2,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Saturday,C,E,D,B,B,Male,High School (or equivalent),30,25 - 31,American,Male,1,,1,,,,1,7,1,8,5,2,3,4,6,2,5,7,1,3,4,6,7,5,2,4,8,1,6,3,1,2,7,8,3,5,6,4,4,3,1,6,5,7,2,7,5,4,2,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,4,3,5,8,9,1,6,3,2,4,1 -238,136.175.119.194,R_1g5iR7YsTKCVbmE,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,5,1,3,6,6,4,1,1,1,3,6,2,3,3,2,2,3,2,3,1,6,3,5,7,4,6,7,2,2,3,6,6,1,6,4,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-1,1,0,-1,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,F,Female,High School (or equivalent),39,39 - 45,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,2,6,3,5,1,1,3,6,7,2,4,5,4,3,8,2,5,7,6,1,1,5,8,7,3,6,4,2,1,2,4,6,3,5,7,7,5,4,8,3,2,6,1,5,2,9,8,4,3,7,1,6,3,4,2,1 -239,142.126.206.16,R_3i42M7ycVtTt2F1,self,02PVF,future,2,3,1,4,1,2,2,4,2,3,3,1,3,3,3,3,3,3,2,3,4,2,3,4,2,3,3,2,2,2,3,1,2,4,2,3,1,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,B,Female,Professional Degree (ex. JD/MD),45,39 - 45,Canadian,Female,1,,,1,,,1,5,1,8,2,7,3,6,4,6,2,7,1,3,4,5,5,7,3,4,8,1,6,2,1,2,4,8,3,7,5,6,4,6,1,2,5,7,3,5,3,7,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,6,7,5,4,2,1,9,3,2,4,1 -240,142.127.4.14,R_5af3GWdobHETpCk,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,0,4,3,3,0,5,0,0,0,0,0,3,0,3,0,0,0,4,0,2,0,3,2,2,3,3,2,2,2,2,2,2,3,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,1,1,0,0,10 cents,100 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,E,B,B,D,Male,University - Graduate (Masters),59,53 - 59,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,2,4,5,3,1,1,6,5,7,3,4,2,7,4,8,5,6,2,3,1,1,2,8,5,4,6,7,3,1,3,5,4,2,6,7,2,3,6,8,7,4,5,1,8,3,6,9,2,7,4,1,5,3,2,4,1 -241,50.158.239.98,R_5OgfDkyWj4XfrzP,self,03VFP,past,0,0,0,4,1,1,1,0,0,0,1,3,1,0,1,2,0,0,1,1,0,0,0,2,2,1,1,0,0,1,1,1,1,0,1,0,1,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,-1,0,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,C,Male,University - Undergraduate,72,67 - 73,American,Male,1,,,,1,1,,7,1,8,6,5,4,3,2,4,5,7,1,6,3,2,2,5,3,6,8,1,4,7,1,4,7,8,6,3,2,5,6,4,1,2,3,7,5,2,4,6,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,3,2,6,8,9,1,5,4,2,3,1 -242,75.157.183.68,R_3GLYDrTseavUcVz,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,4,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,2,0,-2,0,0,1,0,10 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,57,Sunday,B,E,B,E,B,Male,Trade School,68,67 - 73,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,7,3,4,5,1,1,5,3,7,4,6,2,7,5,8,6,4,2,3,1,1,4,8,5,2,3,7,6,1,3,4,6,5,2,7,6,2,7,8,3,5,4,1,6,8,3,4,2,7,5,1,9,4,3,2,1 -243,70.26.95.19,R_6WuqFVPMOdjIdkN,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,2,5,1,6,1,6,2,2,5,2,6,3,5,4,3,2,2,2,3,2,1,4,2,4,2,2,3,1,2,4,4,4,1,4,1,3,3,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,0,-2,0,0,-1,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,B,Male,College Diploma/Certificate,70,67 - 73,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,7,6,1,1,6,4,7,5,2,3,7,2,8,5,4,6,3,1,1,3,8,6,2,5,7,4,1,3,6,2,5,4,7,5,4,2,8,3,7,6,1,5,4,2,6,7,8,3,1,9,3,4,2,1 -244,172.56.64.86,R_6VBhSBcSfa5npp7,self,01FPV,future,6,5,5,6,8,6,7,7,7,6,5,7,6,6,7,7,7,8,6,7,5,5,7,7,6,6,7,8,7,5,8,7,8,7,6,6,6,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,2,1,1,1,10 cents,25 minutes,24 days,5,10,It's impossible to tell,57,Tuesday,D,B,E,D,D,Male,University - Undergraduate,34,32 - 38,American,Male,1,,1,,,,1,6,1,8,4,5,2,3,7,2,6,7,1,4,5,3,2,3,7,5,8,1,4,6,1,2,4,8,3,7,5,6,4,2,1,6,5,7,3,4,5,3,2,7,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,4,6,5,2,7,1,8,2,4,3,1 -245,99.250.37.132,R_1er9vKXMT5As656,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,4,2,7,4,0,3,3,5,2,2,2,2,2,2,2,1,2,3,2,2,4,4,5,5,2,2,5,3,2,2,2,2,2,2,2,2,0,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,0,-2,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,B,B,D,Female,University - Undergraduate,25,25 - 31,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,7,6,1,1,6,4,7,2,5,3,5,4,8,3,2,6,7,1,1,6,8,5,2,4,3,7,1,2,3,5,6,4,7,4,3,7,8,6,5,2,1,2,3,4,8,9,6,7,1,5,3,4,2,1 -246,142.134.193.97,R_7wazjifsky7xf31,self,02PVF,future,7,7,8,7,8,8,8,10,7,6,8,7,6,7,9,6,8,8,6,8,5,3,10,10,6,9,6,8,8,9,9,8,8,7,7,6,4,8,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,-1,2,1,0,1,10 cents,100 minutes,24 days,6,10,Richard is shorter than Matt,47,Sunday,D,F,C,B,B,Female,High School (or equivalent),28,25 - 31,Canadian,Female,1,,,1,,,1,2,1,8,3,4,6,7,5,3,2,7,1,6,4,5,4,2,7,5,8,1,3,6,1,5,7,8,2,3,4,6,2,5,1,4,6,7,3,2,7,5,6,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,7,6,9,3,8,1,5,3,2,4,1 -247,162.156.71.79,R_5QG7Wn09xXSKqPC,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like somewhat,7,7,9,7,9,8,7,8,8,9,9,7,7,5,7,8,9,9,10,6,8,4,9,5,8,7,9,7,6,7,9,8,8,8,7,6,9,9,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,0,-2,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,D,B,B,D,Female,University - Undergraduate,43,39 - 45,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,3,5,6,1,1,4,3,7,2,5,6,4,6,8,7,2,3,5,1,1,3,8,7,4,5,2,6,1,3,5,6,4,2,7,6,2,5,8,3,4,7,1,2,8,5,9,7,3,6,1,4,4,2,3,1 -248,166.48.50.98,R_3s5CIY1mmG5MfAz,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like a great deal,1,1,7,7,3,5,4,6,6,3,6,5,5,1,1,3,3,2,5,3,3,5,2,2,2,5,3,5,2,2,6,5,5,1,2,2,5,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,-1,-2,-2,-1,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Monday,D,D,A,C,B,Female,University - Undergraduate,27,25 - 31,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,6,7,4,2,1,1,5,4,7,6,3,2,4,7,8,2,5,3,6,1,1,7,8,6,2,5,3,4,1,2,3,6,4,5,7,7,3,6,8,2,5,4,1,7,8,3,5,4,9,2,1,6,2,3,4,1 -249,170.203.207.252,R_5IfIBhSF6QWEIHR,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,3,2,2,1,3,2,6,3,3,6,7,2,3,3,7,2,3,6,3,6,8,2,2,3,4,3,4,4,4,2,7,2,1,5,1,5,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,2,-1,-1,1,10 cents,5 minutes,24 days,4,12,It's impossible to tell,53,Saturday,D,C,A,C,F,Female,College Diploma/Certificate,46,46 - 52,Both,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,4,6,3,1,1,4,2,7,3,6,5,2,5,8,7,6,4,3,1,1,7,8,5,6,4,3,2,1,2,5,4,6,3,7,5,2,3,8,7,4,6,1,9,4,8,2,6,3,5,1,7,2,3,4,1 -250,174.116.89.222,R_6KvamkPIBYjWL15,self,02PVF,past,8,9,7,9,10,9,10,10,8,8,10,8,10,8,9,8,8,10,9,8,6,8,7,7,7,9,7,9,8,10,10,9,10,8,9,9,9,10,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,0,2,-2,2,0,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,D,Female,University - Graduate (Masters),37,32 - 38,Canadian,Female,1,,,1,,1,,3,1,8,5,4,6,2,7,2,4,7,1,5,3,6,4,6,2,3,8,1,5,7,1,4,2,8,7,6,3,5,6,4,1,3,5,7,2,4,7,3,5,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,9,7,6,3,8,1,5,2,3,4,1 -251,73.145.211.123,R_17WFzDiyJZ39BSg,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,2,3,7,2,5,4,7,6,8,1,5,3,1,1,3,1,1,8,2,7,3,6,7,2,4,2,1,4,4,1,2,5,2,3,8,2,1,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,-1,0,-1,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,D,E,B,B,F,Male,College Diploma/Certificate,64,60 - 66,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,4,2,3,7,1,1,4,5,7,3,2,6,7,6,8,2,3,5,4,1,1,4,8,5,6,3,7,2,1,4,6,2,3,5,7,5,6,4,8,2,3,7,1,4,7,5,3,8,9,6,1,2,4,2,3,1 -252,142.114.241.100,R_1I0EynvQgNiYRLX,self,03VFP,future,7,6,8,8,7,6,7,7,8,7,8,6,6,7,7,7,6,7,6,7,6,6,8,7,5,7,7,8,7,7,6,8,6,6,6,8,8,9,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,1,0,1,15 cents,25 minutes,24 days,3,10,Richard is shorter than Matt,53,Saturday,D,E,D,B,B,Male,College Diploma/Certificate,46,46 - 52,Canadian,Male,1,,,,1,,1,2,1,8,5,6,7,3,4,5,3,7,1,6,2,4,6,3,4,7,8,1,2,5,1,3,4,8,6,5,2,7,3,5,1,2,6,7,4,4,7,3,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,4,6,3,8,2,1,9,2,3,4,1 -253,76.11.34.167,R_7IZb0KlGWnmd0k1,self,01FPV,future,2,2,2,2,2,4,2,4,2,2,2,1,2,1,4,4,2,1,2,2,2,1,2,2,2,2,2,4,1,4,1,1,1,1,4,4,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-1,-2,2,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,D,D,C,F,F,Male,High School (or equivalent),56,53 - 59,Canadian,Male,1,,1,,,,1,6,1,8,4,7,2,3,5,2,6,7,1,5,4,3,3,7,6,2,8,1,4,5,1,2,3,8,6,5,7,4,2,5,1,3,4,7,6,4,2,6,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,5,8,7,9,1,2,3,2,4,1 -254,166.181.248.92,R_1h9Bcj5rKaaZOwL,self,02PVF,future,4,3,6,5,5,5,6,6,5,6,4,5,6,5,7,8,8,7,6,6,7,5,8,6,5,5,5,5,6,4,7,7,5,5,7,6,6,5,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,1,0,0,1,10 cents,75 minutes,24 days,5,10,Richard is shorter than Matt,39,Wednesday,E,C,C,D,C,Male,High School (or equivalent),30,25 - 31,American,Male,1,,,1,,,1,5,1,8,2,7,4,6,3,6,5,7,1,2,3,4,3,7,4,6,8,1,2,5,1,6,2,8,5,4,3,7,2,6,1,5,4,7,3,5,4,2,6,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,6,9,7,8,1,5,3,2,4,1 -255,172.59.210.115,R_1O6OsjC0yo4NMmd,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Like a great deal,4,2,2,3,3,4,3,2,4,2,3,3,3,4,4,3,3,2,3,3,4,2,3,4,3,4,3,3,3,4,3,4,3,3,3,4,3,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-1,-2,2,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,D,C,B,B,Male,University - Graduate (Masters),42,39 - 45,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,2,6,7,1,1,5,2,7,3,6,4,3,2,8,5,4,6,7,1,1,2,8,5,7,3,4,6,1,5,3,6,2,4,7,4,2,3,8,5,7,6,1,2,7,9,8,5,4,3,1,6,2,4,3,1 -256,99.254.93.171,R_5YXFJsMk7FWbeH7,self,01FPV,past,8,6,2,4,6,7,3,2,2,6,2,3,3,2,5,4,1,2,6,3,3,2,1,4,1,3,2,3,1,3,1,4,2,2,3,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Undergraduate,54,53 - 59,Canadian,Male,1,,1,,,1,,2,1,8,4,6,7,5,3,3,6,7,1,4,2,5,7,3,2,5,8,1,4,6,1,4,3,8,2,5,7,6,5,6,1,4,2,7,3,2,6,4,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,7,4,5,8,6,1,2,3,2,4,1 -257,109.231.100.181,R_72ltPNAXeZGG1eE,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,6,6,7,6,6,7,6,7,6,6,7,7,6,7,6,7,6,6,6,6,6,6,6,5,5,5,6,6,5,5,6,6,5,5,6,7,4,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,0,1,1,0,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,D,C,C,Male,High School (or equivalent),33,32 - 38,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,5,6,7,3,1,1,4,5,7,2,3,6,5,2,8,4,6,7,3,1,1,4,8,6,7,3,2,5,1,5,2,3,6,4,7,5,4,2,8,6,3,7,1,5,4,8,2,9,6,3,1,7,2,4,3,1 -258,74.65.34.138,R_3Cd1xfFMRfuhUwV,self,01FPV,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,-1,-2,-2,-1,20 cents,100 minutes,24 days,5,10,It's impossible to tell,53,Sunday,D,D,B,B,A,Male,College Diploma/Certificate,54,53 - 59,American,Male,1,,1,,,1,,5,1,8,3,6,2,7,4,6,4,7,1,2,3,5,3,2,6,4,8,1,7,5,1,6,7,8,4,3,5,2,6,3,1,5,2,7,4,4,5,6,7,3,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,5,6,9,4,1,8,4,2,3,1 -259,137.155.29.69,R_6Eb3tHjg08s8TU9,self,02PVF,past,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,2,2,-1,2,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,E,E,A,E,Male,University - Graduate (Masters),48,46 - 52,American,Male,1,,,1,,1,,7,1,8,6,4,5,3,2,6,5,7,1,2,4,3,6,4,5,7,8,1,2,3,1,2,3,8,7,6,5,4,3,2,1,5,6,7,4,7,5,6,3,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,6,2,5,4,7,1,9,4,3,2,1 -260,98.168.183.240,R_1NmHvDvy0QS1wBb,self,03VFP,future,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,2,-2,-2,-2,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Monday,B,E,B,B,A,Male,High School (or equivalent),46,46 - 52,American,Male,1,,,,1,,1,3,1,8,6,7,4,5,2,3,4,7,1,5,6,2,3,4,5,6,8,1,2,7,1,3,7,8,4,6,5,2,6,5,1,4,2,7,3,7,2,5,6,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,3,7,4,9,6,1,2,3,4,2,1 -261,73.26.194.237,R_5Nxj3FM6nCiZJDP,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,2,-2,2,10 cents,100 minutes,24 days,7,7,It's impossible to tell,39,Tuesday,F,D,C,A,D,Male,College Diploma/Certificate,65,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,6,2,3,5,1,1,6,5,7,3,4,2,2,7,8,4,5,6,3,1,1,3,8,7,6,2,4,5,1,3,2,6,4,5,7,7,2,5,8,3,6,4,1,7,5,2,8,4,9,3,1,6,3,4,2,1 -262,174.27.15.184,R_6YnnHpHyy4ti0yl,self,02PVF,future,9,1,1,10,9,10,3,7,6,3,6,5,2,2,7,2,2,8,4,4,1,1,2,9,1,5,1,5,3,7,5,3,1,7,4,9,8,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-1,0,-1,-1,1,10 cents,25 minutes,24 days,5,11,Richard is shorter than Matt,47,Monday,D,C,B,A,D,Male,Trade School,64,60 - 66,American,Male,1,,,1,,,1,7,1,8,3,2,4,6,5,2,3,7,1,5,6,4,3,6,5,2,8,1,4,7,1,2,5,8,6,3,4,7,5,4,1,6,3,7,2,4,3,7,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,9,2,4,5,3,1,8,2,3,4,1 -263,104.159.98.174,R_3nBZjaWtRiMLopr,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,4,2,0,1,3,1,2,1,2,1,2,1,2,2,4,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,1,1,-2,0,10 cents,100 minutes,24 days,5,11,Richard is shorter than Matt,57,Saturday,F,B,D,D,C,Female,High School (or equivalent),31,25 - 31,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,4,3,7,5,2,6,6,5,8,2,4,3,7,1,1,2,8,4,3,7,5,6,1,5,4,3,6,2,7,3,6,7,8,4,5,2,1,7,4,2,5,3,9,6,1,8,2,4,3,1 -264,172.88.83.215,R_6aV4sQqepvDNNlu,self,03VFP,past,8,8,7,8,7,8,8,8,8,8,8,8,9,8,8,8,8,8,8,8,8,8,9,8,8,8,9,6,5,5,6,5,4,8,8,8,8,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-1,0,-1,-1,0,10 cents,100 minutes,24 days,4,9,Richard is taller than Matt,35,Tuesday,B,C,A,C,C,Male,College Diploma/Certificate,35,32 - 38,American,Male,1,,,,1,1,,5,1,8,4,3,6,7,2,4,6,7,1,2,5,3,4,6,2,3,8,1,5,7,1,4,7,8,5,3,6,2,2,4,1,6,5,7,3,7,3,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,7,5,2,3,6,1,4,4,3,2,1 -265,75.222.218.7,R_6wbFOpVsg3SyZk0,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like somewhat,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,10,10,0,10,10,10,0,0,10,0,10,10,0,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,-2,-2,2,-2,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Tuesday,D,D,D,A,B,Male,University - Graduate (Masters),36,32 - 38,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,4,2,6,1,1,5,2,7,6,4,3,4,2,8,7,5,3,6,1,1,3,8,4,5,2,6,7,1,6,3,4,2,5,7,2,3,6,8,5,7,4,1,2,4,3,9,6,5,7,1,8,3,4,2,1 -266,98.242.164.124,R_5kzVP61UUTUKk0P,self,03VFP,future,6,6,8,6,8,9,9,9,7,8,8,6,9,9,8,9,8,8,8,7,10,9,8,8,8,9,8,8,9,9,8,8,9,8,10,10,9,10,8,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,1,1,1,1,1,10 cents,100 minutes,36 days,5,8,Richard is taller than Matt,35,Monday,A,B,C,B,C,Male,High School (or equivalent),47,46 - 52,American,Male,1,,,,1,,1,3,1,8,6,4,5,2,7,3,5,7,1,4,6,2,4,2,5,6,8,1,3,7,1,3,6,8,7,4,5,2,3,5,1,4,2,7,6,5,7,2,3,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,2,4,9,8,6,1,3,2,3,4,1 -267,76.36.86.74,R_3QQRT7tNVZFSll7,self,03VFP,past,5,1,10,7,4,6,6,7,7,6,9,9,9,8,9,6,10,9,9,7,10,8,10,10,8,8,8,10,8,9,8,10,9,10,8,8,8,10,9,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,1,0,2,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Tuesday,D,C,D,B,C,Female,High School (or equivalent),33,32 - 38,American,Female,1,,,,1,1,,3,1,8,5,2,6,7,4,2,6,7,1,4,5,3,3,2,5,7,8,1,6,4,1,5,4,8,2,7,3,6,6,2,1,3,5,7,4,7,6,4,2,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,3,6,5,4,2,1,7,3,4,2,1 -268,38.253.4.235,R_3QfINfyjWpKmkN2,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,6,7,5,2,3,6,0,4,0,0,0,3,0,2,2,0,0,0,1,6,1,7,2,1,1,5,4,0,1,0,2,6,0,7,4,0,0,0,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,0,-2,-1,2,-2,1,10 cents,5 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,B,E,B,B,D,Female,University - Undergraduate,25,25 - 31,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,2,7,4,6,1,1,5,4,7,6,3,2,3,4,8,2,6,7,5,1,1,3,8,4,6,5,7,2,1,6,3,4,2,5,7,2,7,4,8,5,3,6,1,4,8,2,3,6,5,7,1,9,4,3,2,1 -269,172.12.182.52,R_5EVA4C5RX92s3K1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,-1,-2,-2,1,10 cents,5 minutes,24 days,6,12,It's impossible to tell,47,Monday,D,C,D,B,F,Male,Trade School,59,53 - 59,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,6,4,3,5,1,1,4,2,7,6,3,5,4,3,8,2,7,6,5,1,1,7,8,4,2,3,6,5,1,6,5,4,3,2,7,4,6,5,8,7,2,3,1,4,2,7,6,5,8,9,1,3,2,4,3,1 -270,99.227.242.205,R_1f1UabdtM85R01k,self,01FPV,future,3,1,5,5,1,5,1,4,2,0,0,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,1,2,3,1,0,2,1,0,0,2,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,0,1,0,-1,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,B,B,D,Male,High School (or equivalent),42,39 - 45,Canadian,Male,1,,1,,,,1,2,1,8,7,4,3,6,5,2,4,7,1,3,5,6,6,4,3,5,8,1,2,7,1,4,3,8,5,2,7,6,6,3,1,4,5,7,2,3,2,6,5,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,7,9,3,5,1,4,3,4,2,1 -271,174.85.242.218,R_11FemTYtZwEQdm7,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,8,1,8,2,6,3,1,1,2,2,1,1,1,1,1,5,1,1,1,1,8,1,8,1,1,2,2,3,2,2,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-1,-2,1,10 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Tuesday,B,C,F,F,E,Male,University - Undergraduate,66,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,3,2,1,1,2,6,7,3,4,5,6,5,8,3,2,7,4,1,1,2,8,3,5,6,7,4,1,3,6,5,4,2,7,5,4,7,8,3,2,6,1,9,5,4,3,7,2,8,1,6,2,3,4,1 -272,172.59.194.25,R_1SVgC2pwp2ksrrX,self,03VFP,past,4,2,3,5,3,5,4,4,3,4,3,4,3,4,5,4,4,2,3,4,4,2,3,5,3,4,4,3,2,3,3,4,2,3,4,4,4,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-1,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,E,Male,University - Graduate (Masters),45,39 - 45,American,Male,1,,,,1,1,,5,1,8,7,6,3,2,4,5,6,7,1,3,2,4,7,2,6,4,8,1,5,3,1,6,5,8,7,4,3,2,3,4,1,2,5,7,6,6,4,3,7,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,8,2,6,7,1,9,2,4,3,1 -273,97.146.2.107,R_34BNkZuAtmBlvUJ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,6,6,7,6,6,6,7,5,6,6,7,5,6,5,5,6,7,6,7,5,6,5,6,6,5,6,6,5,6,5,5,5,5,5,5,5,5,5,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,0,-2,0,0,-1,0,5 cents,100 minutes,24 days,5,9,Richard is as tall as Matt,47,Tuesday,D,E,D,C,E,Male,College Diploma/Certificate,64,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,3,2,7,1,1,4,2,7,3,6,5,2,6,8,3,7,5,4,1,1,7,8,3,2,5,4,6,1,3,2,4,5,6,7,2,6,3,8,4,7,5,1,6,7,8,9,4,2,3,1,5,3,2,4,1 -274,75.136.61.136,R_3IhIUchNEeiOMVU,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,2,5,1,0,2,3,2,0,6,0,2,3,2,0,7,0,1,5,2,5,3,1,3,3,3,2,0,1,4,0,2,0,0,0,6,0,0,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,1,-2,-2,1,5 cents,5 minutes,24 days,2,8,Richard is taller than Matt,47,Sunday,A,E,D,D,D,Prefer not to say,University - Undergraduate,67,67 - 73,American,Prefer not to say,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,2,3,1,1,4,2,7,5,6,3,2,6,8,5,4,3,7,1,1,7,8,3,4,2,6,5,1,6,3,2,4,5,7,6,4,7,8,5,3,2,1,2,8,6,5,9,4,7,1,3,2,3,4,1 -275,172.58.130.36,R_7cUI9huWEZ9k9ws,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,3,3,5,2,4,4,4,4,3,3,4,4,3,4,4,2,2,3,3,4,3,3,5,2,4,4,3,2,3,2,4,3,3,3,4,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,D,D,D,B,B,Male,University - Graduate (Masters),41,39 - 45,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,6,7,4,5,1,1,2,3,7,6,4,5,3,4,8,2,6,5,7,1,1,5,8,3,2,6,4,7,1,2,3,4,6,5,7,7,3,6,8,4,2,5,1,4,3,7,2,8,6,9,1,5,3,2,4,1 -276,24.150.3.100,R_1JIrRFBUbzJVagx,self,03VFP,future,1,1,1,4,1,1,1,2,1,1,2,1,2,3,1,1,3,1,4,1,1,1,1,2,1,2,2,1,2,1,1,1,1,9,7,4,7,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,0,-1,-1,-1,-2,-1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,B,B,F,Male,University - Undergraduate,35,32 - 38,Canadian,Male,1,,,,1,,1,3,1,8,7,4,2,5,6,2,4,7,1,3,5,6,2,4,6,3,8,1,5,7,1,2,4,8,3,5,7,6,6,5,1,4,2,7,3,7,2,5,6,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,3,2,4,9,5,1,8,3,4,2,1 -277,64.46.15.189,R_6F2U2R4Lrswp5aP,self,02PVF,future,2,3,2,3,5,2,3,4,2,2,6,4,4,2,2,2,4,7,5,3,5,4,5,5,6,5,5,4,1,1,2,3,2,1,1,2,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,0,0,-1,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,C,F,B,Male,University - Graduate (Masters),51,46 - 52,Canadian,Male,1,,,1,,,1,3,1,8,4,6,5,2,7,3,2,7,1,4,5,6,2,6,4,3,8,1,5,7,1,6,5,8,2,4,3,7,5,6,1,3,2,7,4,4,3,7,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,9,5,6,7,8,3,1,4,4,3,2,1 -278,172.56.156.217,R_3f0Z8ffCybaiiKn,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,4,2,3,4,3,5,5,3,3,2,4,4,3,3,4,5,5,3,3,2,3,3,4,2,3,3,3,5,3,3,5,4,3,4,4,3,2,4,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,-1,2,1,0,2,0,10 cents,25 minutes,15 days,5,8,It's impossible to tell,47,Sunday,A,E,E,B,A,Male,University - Graduate (Masters),38,32 - 38,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,2,4,7,1,1,6,3,7,5,2,4,7,6,8,4,2,5,3,1,1,6,8,2,7,5,3,4,1,6,5,2,4,3,7,5,2,7,8,4,6,3,1,9,7,2,6,5,3,8,1,4,4,2,3,1 -279,76.28.62.198,R_5tspz5uOKK0KbbP,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,0,0,0,0,10 cents,100 minutes,24 days,6,9,Richard is taller than Matt,39,Monday,D,E,B,B,F,Female,High School (or equivalent),36,32 - 38,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,4,6,2,1,1,6,2,7,3,5,4,3,2,8,5,6,7,4,1,1,5,8,7,4,2,3,6,1,6,4,5,3,2,7,2,7,6,8,5,3,4,1,6,9,3,2,7,8,5,1,4,2,3,4,1 -280,172.218.7.172,R_1wuRR8qLYC4YQM1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,0,1,8,10,2,2,5,7,5,6,7,7,1,1,9,2,1,0,3,3,0,1,5,1,2,3,2,2,2,3,2,2,2,2,9,9,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,2,0,-2,0,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Undergraduate,49,46 - 52,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,6,3,4,2,1,1,4,6,7,5,3,2,7,3,8,4,5,6,2,1,1,6,8,5,7,2,3,4,1,6,2,4,3,5,7,4,6,2,8,7,3,5,1,5,8,2,3,7,6,4,1,9,3,2,4,1 -281,174.69.25.145,R_73fedXf3vY2ulAY,self,03VFP,past,6,5,7,7,4,5,7,6,7,7,8,8,7,3,7,5,7,6,4,8,8,6,7,8,7,8,8,6,9,9,8,8,8,8,7,7,6,8,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,2,1,1,1,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,A,B,A,B,C,Male,High School (or equivalent),19,18 - 24,American,Male,1,,,,1,1,,5,1,8,3,2,4,6,7,5,2,7,1,4,3,6,2,6,4,3,8,1,5,7,1,2,5,8,4,3,6,7,4,6,1,3,5,7,2,7,5,4,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,5,4,9,2,7,1,3,3,2,4,1 -282,172.59.194.64,R_3SjZt72Eigx8uor,self,02PVF,future,3,3,3,3,3,3,4,7,7,7,8,8,9,4,3,4,3,4,3,3,8,7,7,8,7,8,8,9,7,8,8,7,8,7,8,8,8,8,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,2,2,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,C,D,E,E,Male,University - Graduate (Masters),40,39 - 45,American,Male,1,,,1,,,1,3,1,8,4,2,7,5,6,2,3,7,1,6,5,4,4,3,7,5,8,1,2,6,1,5,2,8,4,6,7,3,5,2,1,4,6,7,3,3,5,4,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,3,9,7,8,5,1,4,3,2,4,1 -283,67.5.102.253,R_732aj7urEaYfVfW,self,01FPV,future,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,2,1,2,1,0,0,0,0,1,0,0,0,0,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-2,0,0,-1,0,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,D,A,Male,University - Undergraduate,62,60 - 66,American,Male,1,,1,,,,1,4,1,8,7,3,6,2,5,3,6,7,1,5,2,4,6,7,4,3,8,1,2,5,1,3,4,8,6,5,7,2,2,3,1,5,6,7,4,5,3,6,4,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,9,3,8,7,2,1,6,4,3,2,1 -284,108.178.196.58,R_3yMyDJ1hKsBzEWJ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,3,0,0,0,0,0,0,0,0,0,2,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,47 days,5,8,It's impossible to tell,57,Sunday,B,D,E,B,D,Male,University - Graduate (Masters),37,32 - 38,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,2,3,4,7,1,1,5,4,7,6,3,2,3,5,8,6,7,4,2,1,1,4,8,3,7,6,5,2,1,4,2,5,6,3,7,7,2,6,8,3,5,4,1,3,5,4,6,8,7,9,1,2,4,3,2,1 -285,99.229.54.185,R_3EeSPqAVI5RyhWx,self,02PVF,future,5,6,7,5,6,4,5,6,4,6,4,5,6,7,7,5,7,4,7,6,6,5,4,5,5,3,6,6,5,6,5,4,7,8,6,4,7,5,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Wednesday,D,D,A,A,C,Male,College Diploma/Certificate,51,46 - 52,Canadian,Male,1,,,1,,,1,7,1,8,2,5,4,6,3,5,3,7,1,6,4,2,4,5,7,6,8,1,2,3,1,2,5,8,3,4,6,7,4,6,1,5,3,7,2,6,7,2,3,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,4,5,8,2,3,1,9,4,3,2,1 -286,73.78.59.197,R_5oz6tkfGe0R89zy,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,2,3,0,1,2,2,1,1,0,2,2,2,1,1,2,2,2,2,2,3,1,4,2,4,2,3,1,1,3,2,3,3,2,1,3,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,11,Richard is shorter than Matt,44,Tuesday,D,E,C,F,E,Female,College Diploma/Certificate,37,32 - 38,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,2,5,4,7,1,1,5,3,7,6,2,4,3,5,8,4,6,2,7,1,1,6,8,7,4,2,5,3,1,2,5,3,4,6,7,7,6,4,8,5,3,2,1,2,8,4,5,3,7,6,1,9,4,3,2,1 -287,205.250.196.17,R_6ccKGc1u9Kyqb2p,self,03VFP,past,3,0,0,4,0,2,2,1,2,4,1,3,2,0,0,2,2,2,2,1,2,0,0,1,0,6,2,1,1,2,1,5,2,0,2,2,1,6,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,-2,0,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Graduate (Masters),48,46 - 52,Canadian,Male,1,,,,1,1,,3,1,8,4,7,5,6,2,2,6,7,1,3,5,4,7,5,2,6,8,1,4,3,1,6,7,8,3,4,2,5,4,3,1,6,5,7,2,4,5,2,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,8,7,3,9,1,6,3,4,2,1 -288,99.239.68.192,R_7k3H8E6SEjE51iV,self,01FPV,past,2,5,4,4,4,2,4,1,1,1,1,2,1,2,0,0,1,0,0,1,2,3,3,2,3,2,3,2,1,0,0,1,1,1,0,1,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - PhD,32,32 - 38,American,Male,1,,1,,,1,,4,1,8,5,6,2,7,3,6,3,7,1,5,2,4,4,5,2,7,8,1,3,6,1,4,7,8,5,2,6,3,5,3,1,6,2,7,4,3,5,7,4,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,5,8,3,7,2,1,4,3,2,4,1 -289,70.50.90.175,R_35NWtAhEORHAv6N,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,3,5,6,3,5,4,6,3,6,6,5,3,2,5,2,4,7,7,5,3,6,5,5,3,10,6,7,7,8,10,6,4,8,2,6,1,10,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,0,-2,-2,0,10 cents,75 minutes,24 days,5,7,Richard is shorter than Matt,53,Monday,D,B,A,E,C,Male,College Diploma/Certificate,59,53 - 59,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,4,3,2,6,1,1,3,5,7,4,6,2,5,6,8,3,7,4,2,1,1,2,8,6,3,7,4,5,1,6,5,2,3,4,7,4,6,7,8,5,3,2,1,7,8,4,2,3,6,5,1,9,3,4,2,1 -290,73.218.82.204,R_3c59Ros8WgrDxmS,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,3,1,2,2,3,5,5,1,5,3,3,3,7,2,1,5,2,5,5,5,5,5,5,5,2,2,2,1,2,2,2,3,3,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,0,-1,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Prefer not to say,University - PhD,47,46 - 52,American,Prefer not to say,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,6,5,4,7,1,1,3,5,7,4,2,6,4,2,8,6,7,3,5,1,1,5,8,7,2,4,6,3,1,4,6,2,3,5,7,5,7,2,8,3,4,6,1,9,6,3,7,2,4,8,1,5,2,3,4,1 -291,172.116.70.92,R_7aUYjtPG3r4xZND,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,6,6,6,6,6,6,6,7,6,6,6,7,6,6,7,6,6,7,6,7,7,6,6,6,6,7,7,7,6,7,6,7,6,6,6,6,5,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,-1,0,1,0,15 cents,100 minutes,36 days,5,10,It's impossible to tell,39,Tuesday,B,D,C,C,C,Female,College Diploma/Certificate,44,39 - 45,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,5,7,4,2,1,1,4,3,7,5,6,2,3,4,8,2,5,7,6,1,1,5,8,2,7,6,4,3,1,6,5,2,3,4,7,2,7,4,8,3,6,5,1,2,5,4,3,6,8,9,1,7,4,2,3,1 -292,16.98.10.34,R_72mtH6ho3Qvv930,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,4,2,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,0,0,1,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Wednesday,F,C,A,B,A,Female,High School (or equivalent),41,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,7,4,2,6,1,1,3,5,7,4,6,2,6,5,8,7,2,4,3,1,1,4,8,2,6,5,3,7,1,4,3,5,6,2,7,3,4,7,8,6,5,2,1,5,9,4,2,7,3,8,1,6,4,3,2,1 -293,73.2.73.190,R_7vtObr4rlmo3Fap,self,03VFP,future,0,1,7,0,5,1,0,0,0,0,3,6,0,5,1,1,1,1,1,3,1,0,5,4,1,5,0,4,6,6,2,2,0,7,3,2,2,0,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,1,-1,-2,0,10 cents,100 minutes,24 days,3,9,It's impossible to tell,47,Monday,E,D,A,B,D,Male,High School (or equivalent),52,46 - 52,American,Male,1,,,,1,,1,4,1,8,5,7,6,2,3,6,5,7,1,2,4,3,7,6,5,3,8,1,4,2,1,7,2,8,5,6,3,4,6,5,1,2,3,7,4,7,6,2,4,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,8,7,9,4,1,6,3,2,4,1 -294,24.235.191.164,R_5iILY0FyrwZ81Oa,self,02PVF,future,4,4,5,8,2,3,6,6,5,6,4,2,6,5,7,6,5,6,3,5,3,2,8,6,5,4,7,6,9,7,6,3,6,7,9,9,6,9,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,-1,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,B,D,Male,University - Undergraduate,35,32 - 38,Canadian,Male,1,,,1,,,1,6,1,8,4,7,2,3,5,4,5,7,1,6,2,3,6,7,4,3,8,1,5,2,1,5,3,8,4,2,7,6,4,2,1,3,6,7,5,3,7,2,4,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,4,3,6,2,5,1,7,4,2,3,1 -295,108.244.84.60,R_7dwZXD6O1byOAHD,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,8,7,7,7,6,7,7,6,8,7,8,7,6,6,7,6,7,7,8,6,6,6,6,6,7,7,7,6,7,7,6,6,7,6,5,6,5,7,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,1,1,0,1,10 cents,100 minutes,24 days,7,12,Richard is shorter than Matt,35,Tuesday,B,F,C,B,B,Male,University - PhD,29,25 - 31,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,7,2,3,1,1,6,5,7,4,3,2,5,6,8,2,7,4,3,1,1,3,8,6,2,7,5,4,1,6,2,5,4,3,7,6,3,5,8,7,4,2,1,3,2,7,6,4,8,9,1,5,4,2,3,1 -296,174.114.48.68,R_77U4S2yk0SfBYSj,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,5,6,5,5,5,5,5,6,5,5,5,6,5,6,5,5,5,5,5,6,5,5,5,6,5,5,5,5,6,5,5,5,5,5,5,5,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-1,-2,1,10 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,57,Sunday,C,D,B,A,C,Male,University - Graduate (Masters),49,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,2,7,6,1,1,3,2,7,6,5,4,2,6,8,7,5,3,4,1,1,4,8,2,5,7,3,6,1,5,2,3,6,4,7,2,3,4,8,7,5,6,1,7,9,8,6,4,5,3,1,2,2,4,3,1 -297,71.83.182.221,R_6OvxHRcgy7XJdmx,self,02PVF,future,8,6,8,9,6,7,7,7,8,7,7,8,6,7,9,8,7,6,7,7,8,7,7,6,6,8,7,7,6,8,8,7,7,6,8,7,6,8,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,1,1,1,0,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,D,Female,High School (or equivalent),27,25 - 31,American,Female,1,,,1,,,1,2,1,8,7,4,5,3,6,3,4,7,1,2,5,6,3,7,2,6,8,1,5,4,1,4,6,8,5,2,7,3,2,3,1,4,5,7,6,7,3,4,5,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,4,2,5,3,6,1,9,2,3,4,1 -298,107.77.227.13,R_5PhdtezmzdRThHH,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,5,1,1,1,2,1,3,1,2,1,4,1,1,3,6,1,1,1,1,6,7,4,6,5,6,6,6,6,5,6,6,6,2,5,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-1,1,1,-1,1,10 cents,5 minutes,24 days,5,7,Richard is as tall as Matt,47,Tuesday,D,E,C,B,F,Male,University - Graduate (Masters),61,60 - 66,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,4,5,2,7,1,1,4,6,7,2,3,5,6,2,8,3,7,4,5,1,1,7,8,6,5,4,3,2,1,4,6,2,3,5,7,4,5,2,8,3,6,7,1,6,8,5,9,7,4,2,1,3,4,3,2,1 -299,174.117.233.123,R_3CDHxPogDwYdAMp,self,02PVF,future,1,2,1,2,7,5,5,8,5,5,5,7,2,5,5,5,2,1,1,2,1,5,1,5,7,1,5,5,3,7,5,6,5,5,5,3,5,1,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,0,-1,1,10 cents,5 minutes,47 days,4,12,Richard is shorter than Matt,47,Sunday,D,E,B,B,D,Male,College Diploma/Certificate,37,32 - 38,Canadian,Male,1,,,1,,,1,6,1,8,3,7,5,2,4,6,3,7,1,2,4,5,7,6,2,4,8,1,3,5,1,7,6,8,5,3,2,4,4,6,1,5,3,7,2,7,3,4,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,8,4,9,6,1,7,4,3,2,1 -300,99.239.110.186,R_32hkLGt2LHxIeqU,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like somewhat,7,1,2,10,1,8,4,5,4,2,1,3,3,3,1,1,2,2,2,2,8,1,2,8,1,7,5,1,1,2,2,0,1,2,3,1,1,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Graduate (Masters),39,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,7,4,2,5,1,1,2,3,7,6,5,4,6,5,8,2,7,3,4,1,1,7,8,2,4,6,3,5,1,6,3,2,5,4,7,6,2,7,8,4,3,5,1,8,3,4,9,5,7,6,1,2,3,2,4,1 -301,65.92.53.160,R_6dGAZahbVSoqJVm,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,3,0,0,2,6,1,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,1,2,8,1,7,0,1,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,-1,-2,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Monday,D,E,B,B,D,Male,University - Graduate (Masters),57,53 - 59,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,5,7,6,3,1,1,4,3,7,5,6,2,3,7,8,2,6,4,5,1,1,6,8,7,3,2,5,4,1,5,3,2,4,6,7,2,4,6,8,5,3,7,1,8,4,5,7,6,9,3,1,2,4,3,2,1 -302,70.70.53.97,R_5YkXGSQuswzX3H6,self,02PVF,future,1,1,2,6,2,2,2,2,1,1,2,5,1,1,2,4,2,3,3,2,3,1,1,7,2,2,2,5,5,5,5,5,5,5,4,4,4,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,-1,-1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,B,C,B,B,Male,University - Undergraduate,56,53 - 59,Canadian,Male,1,,,1,,,1,3,1,8,5,6,7,2,4,6,2,7,1,5,4,3,6,2,5,3,8,1,4,7,1,4,6,8,3,2,7,5,4,6,1,3,2,7,5,4,3,2,5,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,2,6,4,3,8,1,9,4,2,3,1 -303,199.167.119.206,R_5rD10A6i5j17FvM,self,02PVF,past,1,1,1,10,2,10,5,10,10,10,6,10,10,1,10,10,0,10,10,9,1,1,1,1,1,1,1,1,8,10,3,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,2,0,-1,0,10 cents,100 minutes,24 days,5,11,It's impossible to tell,47,Wednesday,D,E,E,A,C,Female,College Diploma/Certificate,28,25 - 31,Canadian,Female,1,,,1,,1,,2,1,8,6,3,4,5,7,3,6,7,1,4,2,5,7,3,4,2,8,1,6,5,1,4,3,8,5,6,7,2,4,2,1,5,6,7,3,7,4,3,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,3,9,6,1,4,2,4,3,1 -304,141.195.114.182,R_3gMoZSXRne7KTOp,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,4,5,5,6,5,8,4,6,6,4,5,2,4,6,6,6,6,6,5,4,6,5,2,5,5,2,4,7,2,5,2,1,4,7,8,7,4,3,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,-1,-1,2,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Saturday,D,E,B,B,D,Female,University - Undergraduate,35,32 - 38,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,7,3,4,1,1,5,3,7,2,4,6,5,7,8,6,3,2,4,1,1,5,8,6,3,7,4,2,1,4,3,5,2,6,7,6,2,4,8,5,7,3,1,2,6,8,7,4,3,9,1,5,3,2,4,1 -305,136.56.17.73,R_1Q9JAJe8NMuhzLb,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,C,B,E,B,Male,High School (or equivalent),30,25 - 31,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,2,6,7,1,1,5,3,7,2,4,6,7,5,8,3,2,6,4,1,1,4,8,5,3,7,6,2,1,3,6,4,2,5,7,7,5,6,8,3,4,2,1,2,9,8,5,6,7,4,1,3,3,2,4,1 -306,173.53.8.215,R_7z9UwnuJx3MYBTH,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,8,7,6,6,6,7,7,7,8,6,6,7,7,7,6,8,7,5,7,6,8,7,7,7,5,8,8,7,7,5,8,8,8,6,8,9,7,7,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-1,1,1,0,0,0,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,C,E,E,Male,University - Undergraduate,35,32 - 38,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,4,6,7,5,1,1,2,3,7,5,4,6,5,2,8,4,7,6,3,1,1,5,8,7,3,2,4,6,1,2,6,5,4,3,7,3,6,4,8,2,7,5,1,2,5,7,3,4,9,6,1,8,2,4,3,1 -307,69.247.78.11,R_1S3r1eJdneTbuIk,self,02PVF,future,4,7,3,5,2,6,3,7,1,1,5,4,6,4,6,5,5,4,6,4,8,4,2,7,4,6,6,0,0,0,0,0,10,5,10,2,3,6,10,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,0,1,-1,0,0,0,20 cents,100 minutes,15 days,3,10,Richard is as tall as Matt,53,Wednesday,C,E,D,C,B,Female,University - Undergraduate,45,39 - 45,American,Female,1,,,1,,,1,3,1,8,6,2,7,4,5,5,3,7,1,2,4,6,5,6,7,2,8,1,3,4,1,2,4,8,3,6,5,7,4,2,1,6,3,7,5,2,7,3,6,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,8,2,7,4,6,1,5,3,2,4,1 -308,172.56.218.22,R_32PEWYFOD00QTch,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like somewhat,3,7,3,4,8,4,4,4,5,5,4,5,5,6,5,4,5,4,4,3,2,5,5,4,6,6,6,3,3,4,4,6,6,6,4,6,3,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,0,0,1,1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,F,A,E,F,B,Female,University - Undergraduate,30,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,3,4,2,5,1,1,4,6,7,3,5,2,4,3,8,7,6,5,2,1,1,7,8,6,5,3,4,2,1,6,2,5,3,4,7,4,2,7,8,6,5,3,1,7,3,2,8,5,6,9,1,4,4,2,3,1 -309,172.56.219.159,R_709Y7OoNjuYvctj,self,01FPV,past,2,3,5,4,5,5,3,4,5,7,3,3,3,4,3,5,4,6,3,5,4,5,3,5,3,3,4,4,3,3,4,5,1,2,5,3,2,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-1,1,-1,1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,D,A,D,C,Female,University - Undergraduate,30,25 - 31,American,Female,1,,1,,,1,,3,1,8,5,6,7,4,2,3,5,7,1,2,6,4,6,5,7,3,8,1,2,4,1,7,4,8,5,2,6,3,4,3,1,5,2,7,6,5,6,2,4,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,8,9,3,4,1,7,3,4,2,1 -310,172.56.221.79,R_6f3yApTGYoT6RKV,self,01FPV,future,3,4,5,2,4,4,4,3,4,5,3,3,3,3,4,4,3,7,5,4,6,5,4,4,3,6,6,5,4,4,3,6,7,4,4,4,3,5,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,-1,1,1,1,1,1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,D,B,A,Female,University - Undergraduate,30,25 - 31,American,Female,1,,1,,,,1,2,1,8,5,4,7,6,3,4,6,7,1,2,3,5,6,4,5,3,8,1,7,2,1,6,3,8,5,7,2,4,6,5,1,2,4,7,3,6,5,4,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,4,5,7,3,9,1,8,3,4,2,1 -311,172.56.223.26,R_3CpiXAB5fYeWHdh,self,03VFP,past,8,5,2,5,3,4,5,3,4,6,3,5,6,6,4,7,4,3,2,4,2,3,5,5,4,6,6,5,2,6,3,7,4,4,7,5,2,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,-1,1,0,0,0,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,C,C,D,B,Female,University - Undergraduate,30,25 - 31,American,Female,1,,,,1,1,,2,1,8,3,6,5,4,7,6,2,7,1,5,3,4,7,2,6,5,8,1,4,3,1,4,5,8,6,3,2,7,5,6,1,2,4,7,3,5,3,6,7,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,3,2,9,6,8,1,5,3,2,4,1 -312,142.180.11.168,R_3IQv0uWBTl9SILW,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,1,1,8,1,1,3,2,5,2,2,8,3,2,1,9,2,2,2,2,9,1,1,9,1,8,8,4,1,6,1,10,2,1,4,10,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-1,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,E,B,F,Male,University - Undergraduate,52,46 - 52,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,6,5,4,2,1,1,6,5,7,3,4,2,2,3,8,6,5,4,7,1,1,6,8,7,2,3,4,5,1,3,6,2,5,4,7,5,7,6,8,4,2,3,1,5,9,4,6,3,8,7,1,2,2,4,3,1 -313,184.53.32.39,R_32A78lr0O8VQsyb,self,02PVF,future,5,5,5,7,5,6,4,4,5,4,6,7,6,7,5,4,5,4,5,6,5,5,4,4,5,7,5,6,4,5,6,7,5,4,4,6,6,6,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,1,1,0,-1,10 cents,100 minutes,24 days,3,10,Richard is taller than Matt,47,Sunday,A,E,B,E,E,Female,High School (or equivalent),52,46 - 52,American,Female,1,,,1,,,1,5,1,8,2,6,3,7,4,3,5,7,1,6,2,4,3,6,5,2,8,1,4,7,1,7,3,8,2,5,6,4,6,3,1,2,5,7,4,6,5,7,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,3,5,8,2,7,1,4,3,2,4,1 -314,71.224.116.119,R_11FdVEsioL72N8k,self,02PVF,future,1,1,1,2,2,3,1,3,2,4,3,3,3,2,4,3,3,3,3,3,2,4,4,3,5,4,3,3,2,3,1,2,3,3,3,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,0,0,-1,0,10 cents,100 minutes,24 days,5,10,It's impossible to tell,57,Sunday,D,D,D,E,B,Female,University - Undergraduate,37,32 - 38,American,Female,1,,,1,,,1,3,1,8,4,5,6,2,7,6,3,7,1,5,4,2,2,6,5,3,8,1,4,7,1,4,6,8,2,3,5,7,6,2,1,3,4,7,5,6,2,3,5,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,2,3,9,5,4,1,6,3,2,4,1 -315,65.195.39.181,R_61bc5RuPWkEFeoB,self,01FPV,future,10,8,8,8,10,9,10,10,8,8,6,8,10,8,6,6,3,6,5,8,8,9,5,8,9,8,8,5,8,8,9,9,8,7,8,9,7,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,2,1,1,2,1,10 cents,5 minutes,36 days,5,10,It's impossible to tell,39,Monday,E,B,D,D,C,Female,University - Undergraduate,24,18 - 24,American,Female,1,,1,,,,1,2,1,8,5,3,7,4,6,2,6,7,1,3,4,5,2,7,3,4,8,1,5,6,1,4,3,8,7,5,6,2,2,4,1,6,3,7,5,3,6,5,4,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,2,9,4,6,7,1,5,4,3,2,1 -316,108.208.180.180,R_3gS5mQCnsB8yIzn,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",19,Like somewhat,1,1,2,2,2,1,2,1,2,2,1,1,2,2,2,1,1,1,1,2,1,1,2,1,2,1,1,1,1,1,1,1,1,2,3,2,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,0,0,1,-1,0,10 cents,100 minutes,24 days,5,10,Richard is taller than Matt,47,Sunday,D,E,A,F,A,Male,High School (or equivalent),37,32 - 38,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,3,2,6,7,1,1,2,3,7,5,6,4,3,7,8,2,4,5,6,1,1,6,8,4,3,5,2,7,1,5,6,3,2,4,7,2,3,7,8,6,4,5,1,7,9,4,2,3,8,5,1,6,4,2,3,1 -317,98.223.153.26,R_1G9DuRCAArltHIR,self,01FPV,past,3,4,1,4,2,0,3,1,3,1,3,6,5,3,5,3,0,2,4,2,5,0,3,6,6,5,5,4,3,5,2,2,4,1,6,4,0,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,1,1,-2,0,5 cents,25 minutes,24 days,5,8,It's impossible to tell,35,Sunday,D,E,B,B,D,Female,University - Undergraduate,50,46 - 52,American,Female,1,,1,,,1,,5,1,8,2,7,6,3,4,4,3,7,1,6,2,5,2,4,5,7,8,1,6,3,1,2,4,8,3,7,5,6,6,2,1,5,3,7,4,5,3,7,2,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,5,3,8,6,2,1,4,4,2,3,1 -318,108.167.101.162,R_5uEWkkzDq4xRvmk,self,02PVF,future,7,6,6,7,5,5,9,6,6,5,7,6,7,10,7,9,9,8,8,7,6,5,5,5,6,6,5,5,5,5,5,5,5,6,6,5,5,5,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,10 cents,25 minutes,24 days,4,9,Richard is shorter than Matt,35,Tuesday,F,F,D,F,A,Male,Trade School,63,60 - 66,American,Male,1,,,1,,,1,2,1,8,5,4,6,3,7,3,6,7,1,4,2,5,7,4,6,3,8,1,5,2,1,4,6,8,7,3,5,2,4,3,1,5,6,7,2,3,7,4,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,4,3,7,9,5,1,8,4,3,2,1 -319,73.252.198.119,R_6j6tmjVssmAVy6w,self,03VFP,past,6,3,7,5,5,6,5,3,4,4,5,3,5,3,4,6,4,4,4,5,4,7,5,4,4,4,5,3,5,6,4,5,4,5,4,6,4,4,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,0,1,1,1,5 cents,5 minutes,47 days,5,8,Zach is shorter than Matt,47,Sunday,D,E,C,C,D,Male,University - Undergraduate,58,53 - 59,American,Male,1,,,,1,1,,6,1,8,2,5,4,3,7,6,2,7,1,4,5,3,2,4,3,5,8,1,7,6,1,4,7,8,6,3,5,2,6,3,1,2,5,7,4,2,3,5,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,8,2,9,3,1,4,2,4,3,1 -320,24.89.219.179,R_3V7P3COI1Uq6gAk,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,4,4,5,6,4,5,3,5,6,7,7,5,5,3,5,3,4,5,4,4,4,5,4,3,4,4,3,3,3,4,4,5,4,4,4,4,5,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,-1,0,0,-1,1,10 cents,100 minutes,24 days,3,8,It's impossible to tell,57,Tuesday,E,C,B,C,B,Female,High School (or equivalent),25,25 - 31,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,2,6,5,1,1,4,5,7,2,3,6,4,7,8,3,6,2,5,1,1,6,8,3,4,2,5,7,1,4,5,3,2,6,7,2,4,6,8,5,3,7,1,9,4,8,6,3,5,2,1,7,4,3,2,1 -321,198.53.143.192,R_6SdcBmiFRim89bz,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,5,1,1,1,1,2,1,0,1,1,0,0,1,0,2,1,0,1,1,1,1,1,1,1,0,0,1,0,2,1,0,1,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,-1,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Undergraduate,48,46 - 52,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,6,7,5,1,1,4,2,7,5,6,3,3,5,8,6,4,7,2,1,1,7,8,6,4,3,5,2,1,5,6,2,3,4,7,7,6,5,8,2,4,3,1,8,7,9,5,3,6,2,1,4,3,4,2,1 -322,70.79.232.16,R_3uAmPf7mLGgXM8V,self,01FPV,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,-1,-2,1,1,-2,-1,10 cents,100 minutes,47 days,5,12,It's impossible to tell,57,Tuesday,A,E,A,A,B,Male,College Diploma/Certificate,40,39 - 45,Canadian,Male,1,,1,,,,1,2,1,8,3,6,5,7,4,3,5,7,1,4,2,6,2,5,6,7,8,1,3,4,1,4,2,8,5,6,3,7,3,2,1,6,4,7,5,2,4,6,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,4,3,5,8,9,1,6,3,4,2,1 -323,63.88.218.239,R_1woWryLO8QUnr8f,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,3,3,4,4,9,6,7,7,3,4,6,3,5,2,9,7,5,2,7,4,6,5,3,5,4,6,4,6,8,7,5,7,4,5,5,6,6,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,0,0,1,2,-1,0,10 cents,25 minutes,24 days,4,10,Richard is shorter than Matt,44,Saturday,D,E,B,E,B,Male,University - Undergraduate,25,25 - 31,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,4,3,2,1,1,4,2,7,5,3,6,5,6,8,4,3,7,2,1,1,6,8,2,5,7,4,3,1,2,4,6,3,5,7,2,4,7,8,5,3,6,1,4,8,7,5,3,6,9,1,2,3,2,4,1 -324,172.56.65.102,R_1HfztLd76VyOgZr,self,01FPV,future,8,8,7,8,8,8,8,8,8,8,8,7,8,8,9,9,8,8,8,8,7,6,7,7,7,8,7,8,8,8,8,7,8,10,9,9,9,9,8,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,2,1,-1,1,10 cents,5 minutes,24 days,3,8,Richard is as tall as Matt,53,Monday,D,D,A,D,E,Male,University - Graduate (Masters),38,32 - 38,American,Male,1,,1,,,,1,2,1,8,5,7,4,6,3,6,2,7,1,3,5,4,7,5,4,6,8,1,3,2,1,5,6,8,3,4,7,2,4,3,1,2,6,7,5,3,7,2,4,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,3,9,8,5,2,1,7,4,2,3,1 -325,108.170.135.174,R_7dQFYvRuAnneh9h,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,0,-1,-2,2,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,D,Female,University - Undergraduate,36,32 - 38,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,2,7,6,1,1,5,2,7,6,4,3,7,6,8,3,2,4,5,1,1,5,8,7,3,2,4,6,1,4,3,6,2,5,7,2,4,5,8,6,7,3,1,6,9,7,4,8,5,2,1,3,3,2,4,1 -326,99.248.33.202,R_7ncp03FnOvuth64,self,02PVF,future,2,1,0,6,2,1,2,2,2,0,3,0,2,0,0,0,2,1,3,2,4,1,3,2,2,7,2,3,2,5,2,6,3,0,0,2,1,2,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,0,-1,-2,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,F,Male,University - Graduate (Masters),37,32 - 38,Canadian,Male,1,,,1,,,1,3,1,8,6,7,5,4,2,3,5,7,1,2,4,6,7,4,5,3,8,1,2,6,1,5,6,8,4,2,7,3,5,4,1,3,6,7,2,3,5,2,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,5,7,9,8,1,4,3,2,4,1 -327,75.36.104.66,R_3IxLjBW7fUNtiZr,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,-1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,D,C,F,B,D,Female,High School (or equivalent),24,18 - 24,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,5,6,7,1,1,3,2,7,6,4,5,4,2,8,3,5,7,6,1,1,3,8,7,2,4,5,6,1,3,4,2,6,5,7,3,2,7,8,6,5,4,1,6,7,9,4,3,2,8,1,5,2,3,4,1 -328,67.171.91.183,R_7CrdeQuO6RcT1rB,self,01FPV,future,4,3,4,3,4,3,4,4,3,3,2,4,3,4,3,2,5,2,3,4,6,4,3,5,4,6,1,5,3,3,3,3,5,4,8,2,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,-1,-2,1,0,0,0,10 cents,100 minutes,24 days,3,11,Richard is shorter than Matt,57,Monday,D,A,A,D,D,Female,High School (or equivalent),51,46 - 52,American,Female,1,,1,,,,1,2,1,8,7,5,3,6,4,4,5,7,1,3,6,2,3,7,6,5,8,1,2,4,1,6,5,8,3,2,7,4,5,3,1,6,2,7,4,5,7,6,3,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,8,5,2,6,4,1,7,3,2,4,1 -329,92.113.191.159,R_8p7Oe2lgMGfiWqZ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,1,8,2,9,4,4,4,8,5,7,5,6,4,4,5,0,5,3,5,5,3,3,5,1,4,5,4,5,5,5,4,5,6,8,4,6,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,-1,-1,2,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,D,F,A,B,A,Male,Professional Degree (ex. JD/MD),30,25 - 31,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,6,2,4,1,1,4,6,7,2,3,5,3,4,8,7,6,5,2,1,1,4,8,3,7,5,2,6,1,6,3,5,2,4,7,6,7,5,8,2,4,3,1,7,6,3,2,5,8,9,1,4,4,2,3,1 -330,174.167.61.151,R_1rqCqgHbXs7kZph,self,02PVF,past,5,6,4,3,4,6,5,6,3,1,4,1,4,6,7,6,5,2,4,6,4,2,4,4,4,3,2,4,3,6,3,5,5,3,3,2,3,6,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,1,-1,0,0,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,B,B,D,Male,University - Undergraduate,43,39 - 45,American,Male,1,,,1,,1,,4,1,8,2,5,6,7,3,3,2,7,1,5,4,6,7,5,6,3,8,1,4,2,1,7,4,8,3,2,5,6,5,4,1,6,2,7,3,3,2,4,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,6,7,8,4,1,9,4,2,3,1 -331,172.56.101.4,R_56XtSDip0XLrAw9,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,4,2,1,2,1,2,1,0,0,0,2,1,5,2,3,0,0,1,0,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Monday,D,C,A,B,F,Male,College Diploma/Certificate,49,46 - 52,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,2,4,7,3,1,1,3,4,7,5,6,2,4,7,8,5,3,2,6,1,1,7,8,5,6,4,3,2,1,5,4,3,6,2,7,7,3,2,8,4,5,6,1,3,2,8,5,9,4,6,1,7,4,3,2,1 -332,70.75.193.94,R_3MyZwpxbLCoNFbn,self,01FPV,past,7,1,1,10,9,0,1,2,8,2,7,7,3,4,5,2,10,6,1,7,3,1,4,5,3,7,5,3,4,8,1,3,2,5,2,2,0,5,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,2,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,College Diploma/Certificate,45,39 - 45,Canadian,Male,1,,1,,,1,,6,1,8,7,4,2,5,3,4,2,7,1,5,6,3,4,5,3,2,8,1,6,7,1,2,5,8,6,4,7,3,5,3,1,2,4,7,6,6,7,2,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,9,2,8,7,1,5,3,2,4,1 -333,107.171.135.6,R_5K7JbjXDGJQtsLx,self,01FPV,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,A,A,B,Female,University - Undergraduate,48,46 - 52,Canadian,Female,1,,1,,,,1,2,1,8,7,3,5,4,6,4,3,7,1,2,6,5,2,6,3,7,8,1,5,4,1,3,6,8,5,2,4,7,4,6,1,5,2,7,3,4,7,5,3,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,2,3,4,8,5,1,9,4,2,3,1 -334,76.88.241.6,R_5s4C4u4pdkJx28U,self,02PVF,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-2,1,0,-1,0,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,C,B,C,E,Male,University - Graduate (Masters),62,60 - 66,American,Male,1,,,1,,1,,6,1,8,3,7,5,4,2,3,5,7,1,6,2,4,5,4,3,6,8,1,7,2,1,7,6,8,4,2,5,3,3,4,1,2,5,7,6,5,4,7,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,4,9,2,5,3,1,6,2,4,3,1 -335,69.142.96.12,R_5Fb0rPfsNUlYJQP,self,03VFP,past,1,1,1,8,1,1,2,1,5,2,2,9,8,7,3,6,10,8,8,8,2,2,1,4,4,5,5,1,6,8,6,4,6,2,2,1,8,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,-1,1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,44,Wednesday,A,E,C,A,D,Male,High School (or equivalent),45,39 - 45,American,Male,1,,,,1,1,,7,1,8,2,3,4,5,6,5,2,7,1,4,3,6,2,3,4,6,8,1,7,5,1,2,3,8,5,4,7,6,5,6,1,3,4,7,2,4,6,2,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,7,4,3,9,1,8,3,2,4,1 -336,174.244.145.141,R_7cjgCcG3JLxcq1H,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,6,6,6,6,6,6,7,6,6,6,6,6,6,3,4,5,4,6,6,6,6,7,4,6,5,5,7,6,5,5,6,6,6,6,6,6,6,5,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,2,0,-1,0,10 cents,100 minutes,24 days,3,8,Richard is as tall as Matt,39,Monday,A,E,D,B,F,Female,University - Undergraduate,41,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,5,6,3,2,1,1,3,2,7,6,5,4,4,3,8,5,7,2,6,1,1,4,8,5,6,7,3,2,1,2,3,5,4,6,7,4,7,3,8,6,5,2,1,5,9,2,6,4,3,8,1,7,4,3,2,1 -337,64.253.87.161,R_7r5C4iFwSIHglBn,self,03VFP,future,5,3,5,5,3,5,5,10,10,5,8,2,7,10,10,8,7,9,10,9,5,3,2,5,4,10,5,10,10,5,3,1,5,10,7,10,5,7,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,1,-2,2,-2,0,1,10 cents,5 minutes,24 days,6,8,Richard is as tall as Matt,47,Sunday,A,C,B,D,B,Female,University - Undergraduate,27,25 - 31,American,Female,1,,,,1,,1,4,1,8,6,7,3,2,5,3,4,7,1,6,2,5,4,6,5,7,8,1,3,2,1,4,5,8,6,7,3,2,5,3,1,6,4,7,2,2,7,6,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,9,6,7,2,5,1,4,4,3,2,1 -338,192.204.50.52,R_77IR8u37y0ytZia,self,02PVF,future,6,5,4,3,5,3,7,4,5,7,6,7,6,4,5,7,6,6,5,3,6,8,4,7,5,7,6,6,5,7,6,9,4,6,5,6,7,8,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,1,0,0,1,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,B,C,D,B,D,Male,University - Graduate (Masters),43,39 - 45,American,Male,1,,,1,,,1,6,1,8,2,7,5,4,3,5,3,7,1,2,4,6,6,5,7,2,8,1,4,3,1,6,7,8,4,2,3,5,4,5,1,6,2,7,3,2,6,7,4,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,7,9,6,4,1,5,3,2,4,1 -339,68.145.28.151,R_1tkTwMNDx2wLAQw,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,4,4,6,4,3,5,4,6,6,6,7,4,4,7,6,6,6,6,6,4,4,3,4,6,2,6,4,6,6,6,6,6,6,4,6,4,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,-1,-2,1,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Monday,D,E,B,E,D,Male,University - Undergraduate,37,32 - 38,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,7,2,4,3,1,1,2,4,7,5,3,6,6,4,8,5,2,3,7,1,1,2,8,6,5,4,7,3,1,6,4,3,2,5,7,5,3,4,8,7,2,6,1,3,7,6,9,8,2,4,1,5,2,4,3,1 -340,216.232.177.75,R_69gMNQdMil4Ifkp,self,03VFP,past,3,3,6,4,3,10,4,9,5,10,10,8,3,5,5,10,8,10,10,6,9,3,7,3,8,10,10,8,8,10,3,6,6,4,3,10,10,0,10,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,1,-1,1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,A,E,B,B,D,Male,University - Undergraduate,34,32 - 38,Canadian,Male,1,,,,1,1,,7,1,8,3,6,5,4,2,6,2,7,1,4,3,5,7,4,3,2,8,1,5,6,1,3,7,8,6,5,4,2,5,2,1,3,6,7,4,7,2,3,4,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,9,6,5,3,2,1,8,2,4,3,1 -341,184.53.0.73,R_1ujK126JYRnMr9D,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,3,0,1,4,1,1,0,4,0,0,0,1,2,2,2,1,1,2,1,0,2,0,0,3,0,1,0,0,0,0,0,0,1,1,4,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,-1,-2,-1,1,-1,0,5 cents,5 minutes,47 days,2,8,Richard is as tall as Matt,47,Tuesday,D,E,D,D,F,Female,High School (or equivalent),40,39 - 45,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,4,7,3,5,1,1,4,5,7,2,6,3,5,2,8,7,4,3,6,1,1,6,8,4,7,2,5,3,1,5,6,4,2,3,7,2,7,6,8,4,3,5,1,7,2,9,4,8,5,3,1,6,4,2,3,1 -342,72.136.102.30,R_3gVHynVWVGZTk4N,self,02PVF,future,5,6,4,5,3,7,5,6,4,4,7,6,6,7,5,7,4,5,6,5,4,5,4,6,6,3,6,6,4,7,5,7,5,5,6,7,6,5,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,-1,1,-1,1,0,10 cents,25 minutes,24 days,5,9,Richard is shorter than Matt,47,Wednesday,D,C,B,A,E,Male,High School (or equivalent),36,32 - 38,Both,Male,1,,,1,,,1,7,1,8,5,4,3,2,6,3,2,7,1,6,4,5,4,7,3,6,8,1,2,5,1,3,7,8,4,6,2,5,4,5,1,6,2,7,3,7,4,3,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,3,7,4,9,1,8,4,2,3,1 -343,38.240.45.211,R_5O78ZGBd3K0pGNz,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,1,1,1,1,1,2,2,5,1,2,0,0,1,3,2,3,0,3,2,2,2,0,5,0,1,1,0,5,0,0,0,0,0,0,5,5,1,1,5,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,1,0,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,B,D,C,Female,University - Undergraduate,26,25 - 31,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,5,3,6,1,1,2,5,7,3,6,4,6,2,8,4,3,5,7,1,1,3,8,7,5,2,6,4,1,4,3,2,6,5,7,5,4,7,8,2,3,6,1,4,7,8,6,9,2,5,1,3,2,3,4,1 -344,70.54.87.197,R_6LMY1FDHF0KWnOW,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,5,2,3,3,4,5,3,4,5,3,2,4,2,4,2,3,4,2,4,3,2,2,3,3,4,3,2,2,3,3,3,4,3,2,4,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,-1,-2,-2,2,5 cents,100 minutes,47 days,4,7,Richard is shorter than Matt,39,Sunday,D,D,E,E,C,Male,University - Undergraduate,32,32 - 38,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,7,5,4,1,1,6,3,7,2,4,5,3,5,8,2,7,6,4,1,1,4,8,6,3,5,2,7,1,5,3,6,2,4,7,5,2,3,8,4,7,6,1,4,6,5,3,7,9,2,1,8,3,4,2,1 -345,99.234.39.103,R_7QWQdtB7jP4j62s,self,01FPV,past,5,2,5,2,1,3,3,5,1,3,4,4,5,5,4,5,4,6,6,2,3,4,2,5,3,2,4,4,2,4,4,3,5,5,6,5,7,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,0,2,1,1,5 cents,25 minutes,47 days,5,8,Richard is as tall as Matt,44,Tuesday,D,D,E,D,B,Female,University - Undergraduate,32,32 - 38,Canadian,Female,1,,1,,,1,,2,1,8,6,4,7,3,5,4,6,7,1,5,2,3,5,7,2,6,8,1,4,3,1,3,2,8,6,4,7,5,2,5,1,6,3,7,4,6,4,2,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,5,7,6,2,4,1,3,2,3,4,1 -346,104.246.217.228,R_65QruUrLN9vrvwH,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,9,6,9,5,1,3,5,4,0,0,3,0,2,7,0,0,2,2,0,2,4,3,2,0,2,4,3,0,0,0,0,1,0,4,1,1,1,1,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,-1,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,A,B,B,Prefer not to say,High School (or equivalent),32,32 - 38,Canadian,Prefer not to say,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,7,4,2,1,1,5,6,7,3,4,2,2,5,8,6,7,4,3,1,1,4,8,5,6,3,7,2,1,6,4,5,2,3,7,5,3,2,8,4,6,7,1,8,3,2,9,7,5,6,1,4,4,2,3,1 -347,173.177.25.250,R_70vZpGFVeJvqpdB,self,02PVF,past,3,4,0,3,3,2,2,2,2,2,4,5,2,1,2,5,3,5,4,3,3,2,0,2,4,3,3,3,3,3,4,6,3,2,5,4,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-1,0,0,-1,0,10 cents,5 minutes,15 days,5,8,Richard is taller than Matt,47,Monday,B,D,A,B,F,Female,Trade School,27,25 - 31,Canadian,Female,1,,,1,,1,,6,1,8,5,2,4,3,7,4,6,7,1,2,5,3,6,7,3,5,8,1,2,4,1,7,2,8,6,3,4,5,6,3,1,2,4,7,5,5,4,6,7,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,2,9,4,5,7,6,1,3,3,4,2,1 -348,64.20.22.21,R_7hheUffkpGknKiU,self,02PVF,future,7,3,2,1,4,6,6,3,6,9,7,5,2,3,3,2,4,5,7,4,4,6,3,5,6,4,9,7,7,2,6,3,3,5,3,5,2,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,2,0,1,1,1,10 cents,100 minutes,24 days,3,11,Richard is taller than Zach,39,Tuesday,D,C,C,F,C,Male,High School (or equivalent),22,18 - 24,American,Male,1,,,1,,,1,4,1,8,3,5,7,2,6,2,4,7,1,6,3,5,7,6,4,3,8,1,2,5,1,2,5,8,3,7,4,6,4,5,1,6,3,7,2,3,4,6,7,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,6,7,4,8,1,9,3,4,2,1 -349,207.6.163.66,R_5n6RjxtZo2Fbddr,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like somewhat,7,7,4,3,5,6,6,2,0,2,1,0,1,0,0,1,0,0,1,0,4,5,2,2,2,1,3,1,0,1,0,1,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,-1,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,High School (or equivalent),19,18 - 24,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,2,5,3,7,1,1,5,3,7,6,2,4,3,2,8,5,7,6,4,1,1,4,8,5,2,3,7,6,1,6,3,2,4,5,7,4,3,7,8,2,6,5,1,6,3,9,7,4,5,8,1,2,4,2,3,1 -350,173.210.218.223,R_7oBiVJ0EeRvd9gm,self,02PVF,future,5,2,3,5,4,7,7,6,7,6,7,7,7,2,1,5,4,4,5,5,5,4,1,4,1,4,3,8,6,10,7,5,7,4,5,3,5,10,2,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-1,1,2,0,1,15 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,E,F,E,Male,High School (or equivalent),31,25 - 31,Canadian,Male,1,,,1,,,1,3,1,8,2,5,4,6,7,2,6,7,1,3,4,5,3,4,2,7,8,1,5,6,1,5,4,8,6,7,3,2,4,5,1,6,3,7,2,5,7,2,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,7,8,9,3,1,4,4,3,2,1 -351,217.67.71.79,R_5gI9Kgdq4aAqHZG,self,03VFP,future,0,5,5,9,1,5,5,8,5,8,5,9,5,0,5,9,0,10,5,0,9,5,9,10,5,8,7,8,0,5,0,5,0,4,5,2,5,7,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,-2,1,-2,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,E,Female,University - Undergraduate,25,25 - 31,American,Female,1,,,,1,,1,2,1,8,7,5,3,6,4,2,5,7,1,4,3,6,5,4,7,3,8,1,6,2,1,5,2,8,7,4,6,3,4,3,1,2,6,7,5,6,3,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,5,9,2,4,7,1,3,3,4,2,1 -352,99.227.189.7,R_3spqWjjI5WXsuQ5,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,4,3,8,6,2,2,4,6,4,4,5,2,5,5,7,4,4,4,4,3,5,6,7,4,5,6,3,3,3,8,5,3,5,6,4,4,4,5,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,0,-1,1,1,-1,10 cents,25 minutes,15 days,5,9,Richard is shorter than Matt,39,Saturday,B,D,D,C,A,Male,University - Undergraduate,28,25 - 31,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,2,6,5,1,1,3,2,7,4,6,5,7,6,8,2,5,4,3,1,1,7,8,4,6,3,2,5,1,3,6,2,5,4,7,6,5,7,8,3,4,2,1,7,3,5,8,2,9,6,1,4,3,4,2,1 -353,72.143.66.178,R_1QEerraAVAokZdi,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,6,6,6,7,6,7,7,3,3,6,3,6,3,5,6,5,6,6,6,6,7,9,8,7,8,8,8,7,7,8,6,7,7,7,8,6,8,7,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,2,1,1,1,1,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,B,B,A,Male,University - PhD,30,25 - 31,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,6,2,1,1,4,2,7,5,6,3,6,3,8,2,7,5,4,1,1,2,8,5,3,4,6,7,1,3,6,4,5,2,7,2,7,5,8,3,6,4,1,4,2,9,3,5,8,7,1,6,3,4,2,1 -354,192.230.188.17,R_38HCN3TQTLZizLG,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,2,10,5,5,5,5,2,7,5,7,5,1,10,5,10,5,5,1,4,1,1,5,7,7,7,5,5,5,5,5,5,2,8,4,5,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,-1,-1,2,10 cents,75 minutes,24 days,6,12,Richard is shorter than Matt,53,Monday,C,C,B,F,D,Female,High School (or equivalent),33,32 - 38,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,4,6,7,3,1,1,5,6,7,3,4,2,6,5,8,2,7,4,3,1,1,5,8,6,4,3,2,7,1,3,4,6,5,2,7,3,6,4,8,2,7,5,1,4,5,2,7,8,6,9,1,3,4,2,3,1 -355,97.171.10.40,R_5GKcBulhFn6Uxtc,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,8,7,5,6,9,7,7,7,8,5,7,7,8,6,6,4,7,7,4,5,6,9,4,6,5,6,6,5,8,8,4,7,7,5,6,7,7,5,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,1,0,1,0,1,10 cents,100 minutes,24 days,2,8,It's impossible to tell,57,Sunday,B,E,B,F,C,Male,College Diploma/Certificate,32,32 - 38,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,6,4,7,2,1,1,5,2,7,6,3,4,7,6,8,2,5,3,4,1,1,4,8,3,5,6,7,2,1,4,5,3,6,2,7,7,6,2,8,4,3,5,1,8,2,4,9,7,3,6,1,5,4,3,2,1 -356,65.37.98.229,R_5hSUPHjmDAIh6Bb,self,02PVF,future,7,4,4,5,7,10,3,4,8,4,2,5,5,10,2,5,1,6,8,4,7,8,5,6,6,6,9,6,4,7,9,5,3,2,4,6,4,4,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,0,1,0,2,0,2,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,A,C,D,A,F,Male,High School (or equivalent),31,25 - 31,American,Male,1,,,1,,,1,4,1,8,2,5,6,3,7,4,2,7,1,6,3,5,5,3,7,4,8,1,6,2,1,5,6,8,4,2,7,3,4,6,1,5,2,7,3,2,3,4,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,9,2,4,3,5,1,7,2,4,3,1 -357,52.119.90.162,R_1nwqjmQGf6cN0db,self,03VFP,future,9,9,8,8,10,8,8,8,9,9,8,9,8,8,8,9,8,7,9,9,9,7,5,8,9,8,8,8,8,9,9,6,8,7,7,8,9,7,8,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-2,1,-1,1,1,10 cents,25 minutes,24 days,3,11,Richard is shorter than Matt,53,Tuesday,B,E,C,F,C,Male,College Diploma/Certificate,33,32 - 38,American,Male,1,,,,1,,1,7,1,8,6,2,3,5,4,5,4,7,1,2,6,3,5,6,7,4,8,1,2,3,1,5,6,8,3,2,4,7,4,5,1,3,2,7,6,5,6,7,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,4,7,3,5,8,1,2,2,4,3,1 -358,72.84.211.234,R_1X2NVnuUmzp2wXD,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,6,3,3,7,3,7,5,3,5,3,5,5,6,6,8,8,6,7,7,7,4,4,4,4,4,4,5,4,6,4,5,6,5,6,6,5,5,6,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,0,-1,-2,0,10 cents,100 minutes,24 days,3,10,Richard is taller than Matt,53,Tuesday,D,C,B,B,B,Female,College Diploma/Certificate,31,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,2,3,5,1,1,5,6,7,2,4,3,3,4,8,7,5,2,6,1,1,4,8,2,3,7,6,5,1,5,2,6,4,3,7,5,4,7,8,2,3,6,1,8,7,6,9,4,5,3,1,2,2,3,4,1 -359,73.213.176.242,R_6DIEabrc8rsEPf3,self,01FPV,past,5,8,5,7,9,7,5,7,5,7,7,7,8,5,7,7,10,7,9,8,7,6,8,10,5,9,7,8,8,9,4,6,7,6,3,9,8,9,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-1,-1,0,1,1,10 cents,5 minutes,24 days,5,10,It's impossible to tell,47,Tuesday,B,E,B,D,C,Male,Trade School,24,18 - 24,American,Male,1,,1,,,1,,7,1,8,3,4,2,5,6,4,3,7,1,6,5,2,2,7,3,6,8,1,5,4,1,3,2,8,5,6,7,4,2,4,1,6,3,7,5,7,6,5,4,3,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,4,3,5,7,6,1,9,2,3,4,1 -360,72.84.68.110,R_10vLGpnvfGWD3JT,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,10,10,10,10,10,0,10,10,10,0,0,0,10,10,10,10,10,10,10,10,10,10,10,5,5,5,5,10,10,0,0,0,0,0,10,10,0,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,-2,-2,-2,1,1,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,A,B,F,Male,High School (or equivalent),24,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,5,3,2,1,1,5,3,7,2,6,4,2,5,8,7,6,3,4,1,1,3,8,7,5,4,6,2,1,6,4,3,2,5,7,5,4,2,8,6,3,7,1,2,4,8,6,3,7,5,1,9,3,2,4,1 -361,74.192.10.82,R_5KwlOBIClKlLze8,self,02PVF,future,2,8,3,7,4,2,6,3,2,1,2,4,2,2,7,5,1,2,6,5,5,0,2,3,2,3,5,1,3,1,1,2,2,1,3,3,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,-1,1,-2,0,-2,-2,1,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Sunday,D,F,D,F,F,Female,High School (or equivalent),19,18 - 24,American,Female,1,,,1,,,1,2,1,8,4,5,3,6,7,5,4,7,1,6,2,3,4,3,6,2,8,1,7,5,1,3,7,8,4,6,2,5,4,6,1,5,3,7,2,2,4,6,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,9,6,4,1,3,4,2,3,1 -362,73.32.80.54,R_1cuR1q14B7f0LmN,self,01FPV,past,0,6,0,0,0,5,0,3,4,3,5,7,4,5,7,4,6,6,5,3,1,2,1,1,1,1,1,3,2,1,1,2,1,2,1,3,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,-1,0,-2,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,D,F,B,D,A,Male,High School (or equivalent),24,18 - 24,American,Male,1,,1,,,1,,3,1,8,2,6,5,7,4,2,3,7,1,5,6,4,6,3,4,2,8,1,5,7,1,6,5,8,4,2,7,3,5,3,1,4,2,7,6,7,2,3,5,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,2,6,3,9,4,1,7,3,2,4,1 -363,99.236.105.99,R_6HkvwxSgrYQF8BI,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Sunday,D,E,C,A,B,Male,Professional Degree (ex. JD/MD),25,25 - 31,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,6,4,3,1,1,2,3,7,5,6,4,2,4,8,7,3,5,6,1,1,7,8,5,4,3,6,2,1,3,2,6,4,5,7,3,7,2,8,5,4,6,1,9,4,8,6,7,3,2,1,5,3,2,4,1 -364,71.194.5.167,R_51cTE5Xav3rgMqf,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Dislike somewhat,6,4,8,5,5,4,3,6,4,2,6,4,5,6,6,3,7,5,4,3,4,8,3,5,6,4,5,4,6,3,5,3,3,3,3,4,3,6,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-1,1,-1,2,1,0,0,10 cents,100 minutes,24 days,4,9,Richard is taller than Zach,57,Tuesday,D,C,A,A,C,Female,High School (or equivalent),30,25 - 31,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,7,2,4,1,1,4,3,7,5,6,2,5,3,8,7,2,6,4,1,1,4,8,3,6,7,2,5,1,3,6,2,5,4,7,4,5,3,8,6,2,7,1,8,2,4,9,5,3,6,1,7,2,4,3,1 -365,104.251.32.27,R_60oWVSHf3rLrzW1,self,01FPV,past,5,8,7,7,8,9,8,9,10,8,9,7,8,8,6,7,5,8,7,8,10,5,8,9,8,7,7,7,9,6,8,8,10,6,9,6,5,7,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-1,1,0,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,C,D,B,C,Male,University - Undergraduate,25,25 - 31,Canadian,Male,1,,1,,,1,,3,1,8,2,5,4,6,7,2,6,7,1,4,5,3,7,3,5,6,8,1,4,2,1,3,2,8,6,5,4,7,2,6,1,4,3,7,5,4,5,2,7,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,6,5,7,4,2,1,9,3,4,2,1 -366,24.233.225.42,R_5l5F8sxBoddTdmh,self,01FPV,future,4,3,3,5,3,2,5,4,3,3,6,3,2,5,6,2,1,3,2,2,3,7,5,3,4,6,5,3,5,2,4,2,3,4,3,1,3,4,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,1,1,1,2,1,20 cents,100 minutes,36 days,4,8,Richard is taller than Zach,35,Tuesday,D,E,B,A,D,Male,High School (or equivalent),27,25 - 31,American,Male,1,,1,,,,1,4,1,8,7,2,5,6,3,3,5,7,1,2,4,6,4,2,6,7,8,1,3,5,1,2,4,8,6,3,5,7,6,2,1,4,5,7,3,2,7,5,4,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,9,3,6,4,1,5,2,3,4,1 -367,47.133.95.66,R_35YekCKfJdd0wAo,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,5,6,6,6,6,6,6,6,6,7,5,6,6,5,6,5,5,6,6,6,6,6,5,6,4,6,5,5,5,5,6,6,5,5,6,5,6,5,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,2,5 cents,5 minutes,47 days,4,7,Richard is as tall as Matt,47,Monday,D,E,B,A,F,Male,University - PhD,24,18 - 24,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,6,7,1,1,3,6,7,5,2,4,5,2,8,4,6,7,3,1,1,4,8,3,2,5,6,7,1,6,4,3,2,5,7,5,4,7,8,2,3,6,1,5,3,9,8,4,2,6,1,7,4,3,2,1 -368,108.255.196.116,R_62BTBqHqCTRxGcp,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,2,3,4,1,4,3,4,4,3,2,3,3,2,2,2,4,2,3,3,4,3,1,1,1,2,2,4,3,4,3,3,3,2,3,3,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,-1,-1,-2,1,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,D,Female,University - Undergraduate,25,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,2,4,6,5,1,1,2,4,7,6,5,3,2,6,8,4,7,5,3,1,1,4,8,6,2,3,7,5,1,5,2,6,3,4,7,7,3,4,8,5,6,2,1,2,6,5,4,9,8,3,1,7,2,4,3,1 -369,76.140.135.0,R_3IoMGiUvnysJXuY,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,6,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,2,10 cents,25 minutes,24 days,5,9,It's impossible to tell,35,Tuesday,B,A,C,C,C,Female,College Diploma/Certificate,28,25 - 31,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,5,2,7,3,1,1,4,2,7,3,5,6,7,3,8,4,2,5,6,1,1,3,8,2,5,6,4,7,1,5,6,2,4,3,7,3,2,6,8,4,5,7,1,2,6,4,5,8,7,3,1,9,4,3,2,1 -370,99.138.46.73,R_5HJABPeTraXnFoB,self,01FPV,past,5,1,1,8,0,0,3,4,3,0,0,4,4,2,2,2,1,6,0,1,1,0,1,3,1,0,1,3,6,3,0,0,2,0,5,6,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,0,-1,-1,-2,1,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Undergraduate,26,25 - 31,American,Male,1,,1,,,1,,7,1,8,5,4,2,6,3,3,5,7,1,4,6,2,4,3,7,6,8,1,5,2,1,6,4,8,7,5,2,3,2,4,1,6,5,7,3,4,3,7,5,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,9,8,6,7,1,4,4,3,2,1 -371,216.231.33.105,R_33VIa5s3BMWSVCJ,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,9,10,10,0,0,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-2,-2,2,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,39,Sunday,D,D,F,C,A,Male,University - Undergraduate,27,25 - 31,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,2,3,7,4,5,6,3,2,8,7,4,6,5,1,1,6,8,3,4,7,2,5,1,3,2,6,5,4,7,7,4,5,8,2,3,6,1,5,7,4,9,6,3,2,1,8,4,2,3,1 -372,174.83.3.58,R_6kMx8fNBaGeV7HP,self,02PVF,past,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,1,-1,0,10 cents,100 minutes,24 days,5,7,It's impossible to tell,57,Sunday,C,C,E,E,B,Prefer not to say,High School (or equivalent),32,32 - 38,American,Prefer not to say,1,,,1,,1,,7,1,8,6,5,3,2,4,2,5,7,1,3,4,6,5,4,2,6,8,1,7,3,1,7,4,8,2,6,3,5,4,6,1,5,2,7,3,3,2,4,7,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,7,5,8,3,4,1,2,2,4,3,1 -373,174.117.206.241,R_1MLtPpFn7eAJ7ot,self,02PVF,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,0,0,0,0,10 cents,100 minutes,24 days,5,12,Richard is taller than Matt,47,Tuesday,D,C,C,A,B,Male,High School (or equivalent),32,32 - 38,Canadian,Male,1,,,1,,,1,6,1,8,4,7,3,2,5,4,6,7,1,2,3,5,5,2,4,3,8,1,6,7,1,4,5,8,6,7,2,3,6,4,1,3,5,7,2,3,7,4,5,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,9,5,2,4,7,1,3,2,4,3,1 -374,75.207.71.222,R_7uEbKSnI1GWBlUC,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,5,3,6,8,6,6,4,5,3,2,6,4,4,5,6,4,5,3,3,5,4,4,6,3,3,2,5,5,4,5,3,4,6,5,3,4,3,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,2,-2,-1,1,0,1,10 cents,100 minutes,24 days,5,12,Richard is shorter than Matt,47,Saturday,E,B,D,E,D,Female,High School (or equivalent),20,18 - 24,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,3,7,2,5,1,1,4,2,7,3,5,6,6,7,8,2,5,4,3,1,1,3,8,2,6,5,4,7,1,4,2,5,6,3,7,6,2,3,8,5,4,7,1,2,5,7,3,4,6,8,1,9,4,3,2,1 -375,65.195.34.134,R_1eQr71jlOG8k0nm,self,01FPV,future,7,9,5,7,8,9,9,7,8,9,9,7,9,8,9,7,9,9,9,7,5,8,8,8,7,1,6,7,8,4,7,8,8,1,1,1,1,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-1,1,-1,-1,1,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,E,F,B,B,D,Male,University - Graduate (Masters),40,39 - 45,American,Male,1,,1,,,,1,7,1,8,4,5,2,3,6,4,3,7,1,5,2,6,6,7,3,2,8,1,4,5,1,2,6,8,4,3,7,5,6,3,1,2,4,7,5,7,5,2,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,8,5,6,2,3,1,7,3,4,2,1 -376,172.59.88.189,R_5lE3HkFajdEOHva,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,9,6,6,4,7,4,6,5,7,5,8,6,8,6,7,5,6,6,3,4,5,5,5,3,5,6,4,5,6,6,4,7,6,9,6,6,6,5,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,0,-1,0,0,1,10 cents,100 minutes,24 days,5,12,Richard is shorter than Matt,39,Wednesday,D,D,B,D,B,Female,Professional Degree (ex. JD/MD),27,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,7,2,5,4,1,1,5,4,7,2,6,3,7,6,8,5,3,2,4,1,1,4,8,7,5,6,2,3,1,2,6,5,3,4,7,5,6,2,8,3,7,4,1,9,2,4,6,5,3,8,1,7,3,2,4,1 -377,45.23.160.159,R_67C1bFWw9BrW0rS,self,01FPV,past,8,7,7,9,8,7,8,8,7,7,9,8,7,9,9,9,8,8,7,8,8,7,9,8,7,9,8,8,7,7,9,9,8,9,7,9,8,8,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,1,1,2,1,2,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,E,D,B,D,Male,High School (or equivalent),22,18 - 24,American,Male,1,,1,,,1,,4,1,8,6,3,7,5,2,2,4,7,1,6,5,3,6,7,3,5,8,1,2,4,1,7,6,8,3,2,4,5,5,3,1,4,2,7,6,5,3,6,7,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,6,3,8,4,2,1,7,4,3,2,1 -378,184.145.5.158,R_5j0zwcw3OovhBLP,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,3,2,1,2,1,1,1,1,3,5,1,1,1,1,1,3,1,1,3,1,3,1,3,1,1,1,1,5,6,5,3,1,1,1,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-2,0,0,-1,1,10 cents,100 minutes,24 days,3,12,Richard is shorter than Matt,57,Tuesday,E,F,D,D,D,Female,University - Undergraduate,26,25 - 31,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,2,6,4,7,1,1,4,2,7,3,6,5,2,3,8,5,4,7,6,1,1,2,8,6,3,4,5,7,1,6,4,2,3,5,7,5,6,2,8,4,7,3,1,7,2,6,9,4,3,5,1,8,2,4,3,1 -379,107.77.236.181,R_5zq1rl9D92kHs0d,self,02PVF,future,10,1,7,1,1,10,5,8,9,8,1,2,8,7,1,8,1,8,8,8,9,1,3,10,1,9,8,5,9,4,9,3,2,1,7,6,1,8,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-2,0,-2,2,1,-1,-2,10 cents,100 minutes,24 days,3,9,It's impossible to tell,53,Sunday,A,C,E,A,F,Female,College Diploma/Certificate,26,25 - 31,American,Female,1,,,1,,,1,6,1,8,4,2,5,3,7,3,4,7,1,6,5,2,2,4,5,3,8,1,7,6,1,2,3,8,4,7,5,6,3,2,1,4,6,7,5,2,7,6,3,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,3,2,8,7,5,1,9,2,3,4,1 -380,142.127.170.82,R_7gGx2o7gknVPNRy,self,03VFP,past,9,3,8,8,5,10,8,9,7,10,7,6,9,10,10,10,10,7,7,8,9,10,7,9,8,10,9,9,10,10,10,9,9,7,6,10,8,10,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,0,-1,-1,-1,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,E,C,B,D,Male,University - Undergraduate,31,25 - 31,Canadian,Male,1,,,,1,1,,5,1,8,4,6,7,3,2,5,4,7,1,2,6,3,6,2,3,7,8,1,5,4,1,7,2,8,6,3,5,4,6,2,1,5,3,7,4,4,6,3,7,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,9,8,3,5,2,1,7,3,4,2,1 -381,154.5.142.100,R_3NakrBlLXVOR13X,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,6,6,8,1,6,3,5,4,4,4,3,5,4,3,6,6,4,3,4,4,3,4,3,4,5,2,4,3,3,3,3,3,3,2,3,2,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,0,-2,-2,1,-2,1,10 cents,100 minutes,47 days,5,11,Richard is as tall as Matt,47,Sunday,D,D,A,B,B,Male,Trade School,25,25 - 31,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,6,4,2,1,1,5,3,7,4,6,2,3,2,8,6,5,7,4,1,1,4,8,5,6,2,7,3,1,3,2,4,6,5,7,7,6,3,8,5,4,2,1,8,2,9,7,5,6,3,1,4,2,4,3,1 -382,207.148.176.80,R_5z7IufDWQKJ5wZy,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,8,9,7,8,8,8,8,8,7,9,8,8,7,8,9,7,7,9,8,6,8,7,8,7,8,9,8,7,8,8,8,8,8,7,8,9,7,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,0,0,-1,10 cents,5 minutes,24 days,4,8,Richard is shorter than Matt,57,Tuesday,D,B,E,C,D,Male,College Diploma/Certificate,25,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,4,5,7,1,1,4,2,7,6,3,5,4,7,8,2,5,3,6,1,1,6,8,7,5,4,2,3,1,4,3,2,5,6,7,7,5,2,8,3,6,4,1,5,6,7,9,2,4,3,1,8,3,2,4,1 -383,96.51.146.255,R_6RhqbauH8w4vHJT,self,03VFP,future,3,1,2,3,2,2,3,2,2,2,1,3,3,1,3,2,3,3,2,3,2,1,3,1,3,3,2,1,2,1,2,4,3,4,2,1,3,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,-1,-1,1,1,-1,0,10 cents,5 minutes,47 days,6,8,Zach is shorter than Matt,47,Sunday,E,D,C,D,A,Male,University - Graduate (Masters),20,18 - 24,Canadian,Male,1,,,,1,,1,4,1,8,5,6,3,7,2,4,6,7,1,2,5,3,4,7,5,3,8,1,2,6,1,3,5,8,2,7,6,4,2,4,1,3,5,7,6,6,3,5,2,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,6,7,5,3,2,1,8,4,2,3,1 -384,76.125.50.5,R_3vVBHXD1pXCgXi9,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,8,10,8,8,10,6,6,4,9,10,7,7,7,5,3,9,1,7,4,5,8,7,7,4,5,6,8,6,4,6,4,4,1,6,4,3,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-2,1,2,-1,0,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Tuesday,E,C,E,A,F,Female,High School (or equivalent),20,18 - 24,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,4,5,6,7,1,1,3,6,7,4,5,2,6,2,8,4,5,7,3,1,1,6,8,7,4,3,2,5,1,4,2,3,6,5,7,2,7,5,8,6,3,4,1,6,3,5,9,2,4,7,1,8,2,3,4,1 -385,98.176.223.247,R_3D1qPnh1CbqZgq9,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like a great deal,3,1,5,1,1,2,3,6,1,8,4,4,4,1,4,6,3,2,5,4,1,1,4,1,4,1,2,3,5,1,1,3,3,2,2,8,3,1,3,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,-2,-1,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Female,High School (or equivalent),20,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,4,5,7,1,1,3,4,7,2,6,5,5,6,8,7,3,4,2,1,1,6,8,4,5,7,2,3,1,4,3,6,2,5,7,6,2,5,8,3,4,7,1,5,7,8,2,3,4,9,1,6,3,2,4,1 -386,68.145.152.10,R_5fH7YriYxeG4Bim,self,02PVF,past,0,0,2,0,0,1,0,4,2,0,0,1,3,0,0,1,2,2,4,1,0,0,0,0,0,0,0,2,1,0,0,4,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,2,-1,0,1,-1,1,5 cents,25 minutes,47 days,5,8,Richard is as tall as Matt,53,Wednesday,C,E,B,C,E,Male,High School (or equivalent),25,25 - 31,Canadian,Male,1,,,1,,1,,5,1,8,7,4,3,2,6,4,3,7,1,6,2,5,5,6,3,7,8,1,2,4,1,2,5,8,6,4,3,7,4,5,1,3,2,7,6,5,2,6,4,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,4,9,5,3,6,1,2,3,4,2,1 -387,172.58.120.144,R_5HRg2amxN9F3wsG,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,2,4,7,3,5,3,3,4,4,4,2,6,5,5,2,5,5,5,5,4,5,5,5,5,5,5,5,6,4,4,5,4,3,3,3,3,2,1,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,1,0,0,0,10 cents,100 minutes,24 days,7,10,Richard is as tall as Matt,47,Tuesday,C,B,E,B,F,Female,High School (or equivalent),18,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,2,3,7,1,1,5,4,7,6,2,3,3,4,8,6,7,5,2,1,1,6,8,5,2,3,7,4,1,5,3,2,4,6,7,3,5,4,8,7,2,6,1,2,9,6,7,5,3,4,1,8,3,4,2,1 -388,98.188.174.46,R_5pxtmR0BAzQUOXi,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,1,1,-2,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,A,C,Female,High School (or equivalent),21,18 - 24,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,4,7,2,1,1,6,4,7,5,2,3,6,5,8,2,4,7,3,1,1,4,8,5,6,2,7,3,1,5,6,2,3,4,7,2,3,6,8,4,5,7,1,3,4,6,9,7,2,8,1,5,4,3,2,1 -389,108.162.167.39,R_6zAweMChNFT1Lm7,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,10,0,5,2,6,3,3,4,7,2,6,1,2,3,1,6,9,0,3,3,10,0,6,2,6,5,2,3,7,5,0,3,2,5,4,3,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,-2,0,1,-1,5 cents,100 minutes,47 days,4,9,Richard is taller than Matt,47,Monday,D,E,B,B,D,Male,University - Graduate (Masters),32,32 - 38,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,3,2,4,5,1,1,2,6,7,3,5,4,5,2,8,4,6,3,7,1,1,3,8,4,5,6,2,7,1,3,6,4,5,2,7,6,3,4,8,2,7,5,1,6,5,7,8,3,9,4,1,2,4,2,3,1 -390,192.139.122.26,R_5jd0PLutNEvdjMJ,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,-2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,C,Male,University - Undergraduate,43,39 - 45,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,2,5,6,4,1,1,2,5,7,4,3,6,6,2,8,7,5,3,4,1,1,3,8,4,2,7,6,5,1,5,2,4,6,3,7,5,6,4,8,2,3,7,1,4,3,8,7,6,2,5,1,9,3,2,4,1 -391,67.71.90.140,R_1V4QW9S2LiT2ZEd,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,9,5,7,6,7,6,5,6,5,7,6,6,4,1,7,2,1,1,4,2,5,6,7,8,5,8,6,6,7,5,8,6,6,7,5,7,7,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-2,-1,-1,-2,0,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,D,D,F,Female,College Diploma/Certificate,48,46 - 52,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,4,7,5,2,1,1,2,4,7,3,6,5,2,3,8,4,7,5,6,1,1,5,8,6,3,2,4,7,1,4,6,5,3,2,7,3,5,7,8,2,4,6,1,5,9,3,4,7,2,8,1,6,3,2,4,1 -392,8.9.95.52,R_5FLCzsLNfvMQWq1,self,02PVF,future,3,4,4,6,3,4,4,6,4,5,3,3,5,4,6,5,3,2,6,3,4,5,4,4,3,5,3,4,3,3,2,3,5,3,2,5,4,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-1,1,0,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,A,B,A,Female,University - Graduate (Masters),50,46 - 52,American,Female,1,,,1,,,1,4,1,8,6,3,5,2,7,3,6,7,1,2,5,4,7,5,2,3,8,1,4,6,1,3,4,8,6,5,7,2,3,6,1,2,5,7,4,4,7,6,2,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,7,9,4,8,1,6,4,3,2,1 -393,72.225.10.191,R_6PHzxeHQoj4VUPn,self,02PVF,past,1,0,1,0,1,2,1,10,8,5,10,0,6,6,8,8,8,3,6,3,1,0,0,0,2,0,0,5,0,0,2,0,1,1,0,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,-2,0,0,-2,1,10 cents,100 minutes,24 days,4,7,It's impossible to tell,57,Sunday,D,A,B,B,F,Male,University - Undergraduate,55,53 - 59,American,Male,1,,,1,,1,,6,1,8,4,3,5,2,7,6,5,7,1,4,3,2,2,4,6,7,8,1,3,5,1,3,7,8,6,2,4,5,3,4,1,2,6,7,5,2,7,6,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,3,4,2,5,8,1,9,4,3,2,1 -394,24.57.143.238,R_3eKqYIzGF1s2Hh1,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,10,8,2,4,5,2,2,6,2,4,2,2,6,6,2,2,8,5,4,2,6,6,2,4,2,2,1,6,1,2,2,2,4,8,1,1,8,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,-1,-1,-2,1,5 cents,5 minutes,15 days,5,7,It's impossible to tell,47,Sunday,D,B,D,E,D,Female,University - Graduate (Masters),52,46 - 52,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,3,5,2,7,1,1,4,5,7,2,3,6,3,2,8,4,7,5,6,1,1,2,8,7,4,3,5,6,1,6,2,4,3,5,7,7,3,5,8,4,6,2,1,4,9,6,8,3,5,2,1,7,2,4,3,1 -395,173.252.52.111,R_3VdN2gLDMhsYZ4k,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,0,0,0,0,2,2,2,10,4,0,2,1,0,2,0,0,1,3,2,1,0,0,0,0,0,1,2,0,0,0,0,0,0,3,0,10,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-1,0,0,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,E,D,B,Female,University - Undergraduate,49,46 - 52,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,2,3,5,7,1,1,5,6,7,2,4,3,6,7,8,2,3,4,5,1,1,6,8,7,4,2,3,5,1,4,2,3,6,5,7,5,2,3,8,6,7,4,1,8,4,6,5,9,3,2,1,7,4,3,2,1 -396,172.58.0.105,R_3eJq3TLILK6QKSv,self,02PVF,past,5,1,10,10,5,1,10,8,10,7,1,10,8,10,10,10,1,5,1,10,10,1,10,6,1,1,5,10,10,5,1,10,5,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,1,-1,-2,1,10 cents,25 minutes,24 days,4,10,Richard is taller than Matt,53,Tuesday,D,D,B,B,F,Female,University - Undergraduate,47,46 - 52,American,Female,1,,,1,,1,,3,1,8,5,7,2,4,6,5,6,7,1,3,2,4,4,6,3,2,8,1,5,7,1,6,2,8,5,4,7,3,2,5,1,4,3,7,6,4,3,5,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,6,3,4,5,7,1,8,4,3,2,1 -397,64.203.50.157,R_5pwLnc9yoHKUWJ3,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,1,4,1,2,1,1,4,1,4,6,5,1,1,1,1,1,2,2,2,1,5,1,2,1,1,1,1,1,2,3,1,1,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,0,0,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,C,E,C,Female,College Diploma/Certificate,49,46 - 52,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,4,2,6,3,1,1,2,5,7,4,6,3,4,3,8,6,2,5,7,1,1,4,8,5,3,6,2,7,1,6,4,5,2,3,7,6,2,7,8,4,5,3,1,3,4,9,2,7,6,8,1,5,4,3,2,1 -398,71.250.85.11,R_1dn43ob5ZmYI0bS,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Dislike somewhat,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,4,4,6,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,0,-2,1,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,A,B,B,F,C,Female,College Diploma/Certificate,43,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,4,2,3,5,1,1,5,3,7,2,4,6,7,4,8,3,5,6,2,1,1,5,8,2,7,4,6,3,1,2,4,5,3,6,7,4,2,3,8,6,5,7,1,7,5,8,9,6,4,3,1,2,4,3,2,1 -399,24.102.244.88,R_3g1Ou3iWHxnVHNb,self,03VFP,past,6,0,0,2,3,0,1,1,6,1,3,4,2,0,0,0,3,4,4,1,4,0,0,1,1,1,1,1,4,1,2,1,2,0,0,0,5,5,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,-1,-2,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,B,F,Male,University - Undergraduate,57,53 - 59,American,Male,1,,,,1,1,,6,1,8,3,7,4,2,5,2,6,7,1,5,3,4,4,7,3,5,8,1,2,6,1,2,7,8,4,5,6,3,5,3,1,2,4,7,6,3,4,6,5,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,9,2,7,5,3,1,8,4,2,3,1 -400,98.97.137.6,R_5Lek5PdC1LGFrLb,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Neither like nor dislike,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,10 cents,25 minutes,24 days,5,12,Richard is taller than Zach,53,Wednesday,E,C,B,C,C,Male,University - Undergraduate,53,53 - 59,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,5,3,6,2,1,1,3,4,7,5,2,6,6,5,8,7,3,2,4,1,1,4,8,6,3,2,5,7,1,6,5,3,4,2,7,6,3,2,8,7,5,4,1,6,5,9,4,8,2,7,1,3,4,3,2,1 -401,173.238.78.187,R_3Qh1bIVKAUw3eXD,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,4,5,6,6,3,6,6,5,4,4,5,5,6,5,4,6,5,7,5,6,5,4,4,5,5,4,4,5,5,4,6,3,6,6,6,6,4,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,-1,0,-1,0,1,10 cents,100 minutes,24 days,5,12,Richard is as tall as Matt,35,Tuesday,D,E,D,C,E,Female,High School (or equivalent),18,18 - 24,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,5,3,2,6,1,1,3,5,7,4,2,6,5,7,8,2,3,6,4,1,1,4,8,2,7,6,3,5,1,3,4,6,5,2,7,4,7,5,8,2,3,6,1,4,8,5,2,7,3,6,1,9,3,4,2,1 -402,73.168.75.51,R_1kmJHoPDpOYpIpq,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,2,2,1,5,2,1,3,2,2,2,4,4,4,4,5,5,5,8,2,5,1,2,2,5,2,5,5,8,7,2,7,5,8,8,2,2,9,9,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,0,1,1,-1,2,10 cents,100 minutes,24 days,4,7,Richard is shorter than Matt,39,Tuesday,C,B,D,B,F,Male,Trade School,55,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,2,3,5,6,1,1,6,5,7,4,3,2,3,7,8,6,2,4,5,1,1,3,8,5,7,2,4,6,1,5,2,3,6,4,7,6,7,5,8,2,4,3,1,7,4,3,9,5,6,8,1,2,3,4,2,1 -403,70.92.175.225,R_3v7hTpxvuMrbgCF,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,2,1,2,1,2,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,2,2,2,2,10 cents,100 minutes,24 days,5,12,Richard is as tall as Matt,39,Monday,E,B,D,D,D,Female,College Diploma/Certificate,44,39 - 45,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,5,6,2,1,1,6,4,7,5,2,3,4,7,8,3,6,2,5,1,1,6,8,2,4,7,3,5,1,2,5,4,3,6,7,6,5,3,8,7,2,4,1,8,3,5,9,4,2,7,1,6,2,3,4,1 -404,98.43.192.81,R_6EaIUClpubFnSRP,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,8,1,1,4,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,3,1,2,2,1,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,0,-2,0,0,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,D,C,C,A,Male,University - Undergraduate,49,46 - 52,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,2,6,3,7,1,1,6,5,7,3,2,4,6,5,8,7,3,4,2,1,1,4,8,7,6,2,5,3,1,6,3,5,2,4,7,4,5,2,8,6,7,3,1,3,8,9,5,7,2,4,1,6,2,3,4,1 -405,173.206.16.114,R_3QWN691vvWo8CFn,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,9,8,8,8,9,8,8,8,8,8,8,8,8,8,8,8,9,8,9,8,7,8,8,6,8,8,8,8,7,8,8,9,8,8,8,8,9,8,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,1,1,1,1,2,10 cents,100 minutes,36 days,5,8,Richard is shorter than Matt,47,Tuesday,B,B,C,D,B,Male,University - Undergraduate,26,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,7,6,2,5,1,1,6,3,7,4,2,5,5,2,8,6,3,4,7,1,1,6,8,3,5,7,4,2,1,6,2,5,4,3,7,6,2,3,8,5,7,4,1,7,6,4,8,5,2,3,1,9,4,2,3,1 -406,67.208.31.167,R_7R1SLdgqNYtRdUg,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,4,6,7,6,6,6,8,7,8,7,7,7,3,5,8,2,7,7,4,7,6,7,3,6,6,3,6,7,6,6,6,6,7,6,6,6,4,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,1,-1,-1,10 cents,100 minutes,24 days,4,11,It's impossible to tell,57,Saturday,A,B,F,E,A,Male,University - Undergraduate,30,25 - 31,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,5,2,7,3,1,1,5,2,7,6,3,4,2,4,8,6,5,3,7,1,1,7,8,2,4,3,5,6,1,4,5,2,6,3,7,7,2,3,8,6,4,5,1,3,7,8,4,2,6,5,1,9,4,3,2,1 -407,97.70.193.27,R_6yM0L86NkF7PuN3,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,1,3,1,1,1,1,2,1,1,1,1,2,3,2,1,1,1,1,2,1,2,1,2,2,1,3,2,3,2,2,2,2,1,2,3,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,-1,-1,1,0,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,B,Male,University - Undergraduate,23,18 - 24,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,4,6,7,2,5,3,4,6,8,5,7,3,2,1,1,4,8,3,7,2,6,5,1,6,4,2,5,3,7,4,7,6,8,3,2,5,1,5,7,4,8,3,6,9,1,2,2,4,3,1 -408,99.192.124.197,R_3A4BpmGsewhTpOV,self,03VFP,future,0,3,0,2,2,5,3,3,2,3,3,3,3,0,5,0,5,5,6,3,0,5,1,5,2,4,3,4,1,5,3,2,3,0,5,0,0,3,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,-1,-1,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,F,B,B,Male,College Diploma/Certificate,31,25 - 31,Canadian,Male,1,,,,1,,1,7,1,8,6,3,4,2,5,5,4,7,1,6,2,3,6,2,7,5,8,1,3,4,1,4,7,8,5,2,3,6,5,3,1,4,6,7,2,6,5,2,3,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,5,9,7,2,1,8,3,2,4,1 -409,74.56.27.249,R_5FXFgGNV9QGmhgZ,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like somewhat,9,8,2,9,3,8,6,1,1,2,2,1,2,2,5,2,2,2,8,3,6,5,1,7,1,3,4,1,1,2,2,1,1,2,2,4,1,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,1,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,A,F,B,Male,College Diploma/Certificate,25,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,2,7,4,1,1,5,4,7,3,2,6,5,4,8,7,3,6,2,1,1,6,8,3,2,5,4,7,1,2,6,5,4,3,7,3,6,7,8,4,5,2,1,5,2,3,6,9,7,4,1,8,4,2,3,1 -410,142.134.226.145,R_6OI1mDql1ScXJHO,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,3,4,6,5,5,4,6,7,0,4,2,4,1,3,3,4,4,3,5,4,3,6,4,2,6,3,6,7,0,6,1,4,0,0,8,6,6,6,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,-2,0,-2,1,0,0,0,10 cents,5 minutes,24 days,5,7,It's impossible to tell,35,Saturday,D,C,C,B,F,Female,University - Graduate (Masters),31,25 - 31,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,6,3,5,4,1,1,6,3,7,5,2,4,4,5,8,3,2,6,7,1,1,4,8,7,5,2,6,3,1,3,6,5,2,4,7,7,6,4,8,2,5,3,1,7,9,3,6,4,2,8,1,5,4,3,2,1 -411,24.36.110.149,R_3S8dKCJT2AZlpzb,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,2,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,5,0,0,2,0,0,0,0,5,2,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-2,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,E,B,A,Female,University - Undergraduate,28,25 - 31,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,3,4,5,2,1,1,2,6,7,3,4,5,7,6,8,3,2,4,5,1,1,3,8,6,4,2,5,7,1,4,2,5,3,6,7,7,2,5,8,6,3,4,1,9,5,8,4,7,6,3,1,2,3,2,4,1 -412,69.232.41.217,R_7AMuxZJzTVlrQgW,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,6,8,5,8,6,3,6,0,0,0,9,0,1,5,0,0,9,0,0,0,8,5,6,2,3,7,7,6,6,7,9,9,3,6,7,9,6,8,5,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,-1,-2,-1,1,-1,-2,10 cents,100 minutes,24 days,6,10,Richard is as tall as Matt,39,Saturday,D,B,E,C,F,Female,University - Graduate (Masters),24,18 - 24,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,5,4,6,2,1,1,4,6,7,5,3,2,5,4,8,7,6,3,2,1,1,4,8,7,5,6,2,3,1,4,6,2,3,5,7,7,2,6,8,3,5,4,1,3,7,2,4,5,8,6,1,9,3,2,4,1 -413,35.147.98.47,R_6SHyHM0QnE1W8cU,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,3,2,4,4,4,4,5,5,4,1,5,3,3,3,4,1,4,3,2,3,3,1,5,3,3,2,3,5,2,2,5,2,4,6,4,3,1,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,-1,0,0,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,F,D,F,F,A,Female,College Diploma/Certificate,21,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,4,2,7,1,1,4,6,7,3,2,5,7,2,8,4,3,6,5,1,1,4,8,5,2,7,3,6,1,3,6,2,4,5,7,3,7,5,8,4,2,6,1,3,4,9,2,5,7,8,1,6,3,4,2,1 -414,98.48.179.84,R_6Kgc1zEBXD7tYsI,self,03VFP,past,10,1,2,9,3,4,8,0,10,1,10,10,6,7,10,10,1,10,8,7,9,1,2,9,1,6,3,2,10,8,9,3,8,10,6,10,3,10,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,1,-2,-2,-1,10 cents,100 minutes,24 days,6,8,It's impossible to tell,47,Sunday,D,E,F,A,C,Male,High School (or equivalent),24,18 - 24,American,Male,1,,,,1,1,,7,1,8,5,2,6,4,3,2,4,7,1,5,6,3,2,4,5,3,8,1,6,7,1,5,7,8,3,2,6,4,4,5,1,6,2,7,3,7,5,4,3,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,7,6,4,2,5,1,8,2,4,3,1 -415,172.56.188.226,R_1L8eEleGH0UKknX,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,3,3,0,1,1,2,0,0,2,0,0,3,0,0,0,0,0,0,0,2,3,2,0,3,3,3,0,0,0,0,2,0,0,3,4,0,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,-2,-1,1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,University - Undergraduate,24,18 - 24,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,6,5,2,7,1,1,2,5,7,3,4,6,2,3,8,6,7,5,4,1,1,7,8,4,2,6,5,3,1,6,4,5,3,2,7,6,3,7,8,2,5,4,1,4,5,3,6,2,9,7,1,8,2,4,3,1 -416,223.29.130.245,R_5VD4KJHMcXWdzOi,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,5,4,1,3,3,3,2,6,3,7,6,3,3,6,4,6,7,5,6,7,6,6,5,5,7,6,5,5,3,4,4,5,6,7,7,6,5,6,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-2,-2,0,1,1,5 cents,100 minutes,24 days,5,8,It's impossible to tell,44,Sunday,D,C,B,B,B,Male,University - Undergraduate,24,18 - 24,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,7,2,3,4,1,1,5,3,7,2,4,6,4,7,8,6,3,2,5,1,1,5,8,7,2,6,4,3,1,4,3,6,2,5,7,4,3,2,8,6,5,7,1,4,6,7,3,2,9,5,1,8,3,4,2,1 -417,185.113.181.31,R_5FFcLoImbeOXa7d,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like somewhat,6,7,6,6,7,6,7,6,6,7,7,6,8,6,7,7,6,6,5,6,4,6,5,6,5,4,6,6,6,5,5,6,6,4,5,6,7,6,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,0,-2,0,-1,0,1,5 cents,100 minutes,47 days,5,8,Richard is as tall as Matt,47,Monday,F,C,B,D,C,Male,University - Undergraduate,21,18 - 24,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,3,2,7,1,1,4,5,7,2,3,6,3,4,8,6,2,7,5,1,1,7,8,2,3,6,5,4,1,6,2,5,3,4,7,4,2,6,8,5,3,7,1,2,3,8,6,5,7,9,1,4,2,4,3,1 -418,130.113.109.48,R_7e1dY5cjTtDeyGZ,self,01FPV,future,5,6,5,5,3,7,6,5,9,8,6,6,5,5,6,6,8,7,5,9,8,6,7,5,4,5,6,5,7,8,6,4,6,9,5,3,6,5,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,1,1,0,0,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,D,B,C,B,Female,University - Undergraduate,24,18 - 24,Canadian,Female,1,,1,,,,1,3,1,8,6,2,5,4,7,4,2,7,1,3,6,5,3,2,4,5,8,1,6,7,1,4,5,8,6,7,2,3,4,5,1,6,2,7,3,4,5,2,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,9,7,6,8,3,1,2,4,2,3,1 -419,97.64.116.142,R_1YE4Q3pxC6BcXTA,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,3,3,4,9,3,5,3,2,1,6,2,8,4,0,1,3,0,2,4,3,7,9,8,4,4,10,5,10,1,2,10,4,6,1,1,3,1,5,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,-1,-1,1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,B,C,D,Female,University - Graduate (Masters),37,32 - 38,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,7,5,6,1,1,2,5,7,4,6,3,5,4,8,6,3,2,7,1,1,7,8,5,2,6,3,4,1,4,5,2,6,3,7,6,4,3,8,7,5,2,1,9,3,4,5,7,2,8,1,6,2,3,4,1 -420,69.58.32.211,R_1UWWJId1qYm83Vn,self,01FPV,future,7,1,7,7,2,7,5,5,5,5,6,5,5,7,5,5,5,5,5,4,7,2,7,7,8,8,6,6,6,6,7,7,6,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,-2,-1,-2,-1,0,1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,D,A,B,F,Female,University - Graduate (Masters),40,39 - 45,American,Female,1,,1,,,,1,2,1,8,6,4,3,7,5,3,5,7,1,4,6,2,5,3,6,2,8,1,7,4,1,4,2,8,7,3,5,6,3,4,1,2,5,7,6,6,5,7,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,4,9,7,8,1,2,3,4,2,1 -421,50.27.0.105,R_7EEgA0eaSpasrvx,self,01FPV,future,1,0,0,1,1,1,1,1,0,1,1,1,1,0,0,1,0,0,0,0,2,1,0,2,1,2,2,3,0,1,1,0,1,0,2,3,0,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,D,D,Male,High School (or equivalent),45,39 - 45,American,Male,1,,1,,,,1,7,1,8,2,5,4,6,3,4,2,7,1,6,5,3,6,3,7,2,8,1,4,5,1,4,6,8,5,2,7,3,5,2,1,6,4,7,3,7,6,3,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,3,7,5,6,9,1,4,2,3,4,1 -422,71.197.6.198,R_7VdoFtj6jr0YNR5,self,03VFP,future,6,6,6,8,6,8,5,6,5,8,8,6,8,9,9,7,6,8,5,7,8,10,7,7,9,8,8,7,8,7,6,4,9,9,8,8,8,9,8,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,2,-1,0,10 cents,100 minutes,24 days,4,10,Richard is taller than Matt,47,Saturday,D,D,D,F,B,Female,Professional Degree (ex. JD/MD),36,32 - 38,American,Female,1,,,,1,,1,3,1,8,6,4,5,2,7,4,2,7,1,3,5,6,4,5,7,2,8,1,6,3,1,5,7,8,6,4,2,3,3,6,1,2,4,7,5,2,6,7,4,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,7,4,6,9,2,1,8,3,2,4,1 -423,38.56.137.140,R_3pNfwEOlOylPkZ3,self,02PVF,past,3,1,1,1,1,2,1,2,3,2,1,1,1,1,2,2,1,2,1,2,1,1,1,1,2,2,1,2,1,2,1,2,2,3,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,0,-2,-1,0,0,0,10 cents,25 minutes,24 days,2,11,It's impossible to tell,47,Tuesday,E,D,B,D,C,Male,University - Graduate (Masters),55,53 - 59,American,Male,1,,,1,,1,,6,1,8,3,7,5,4,2,5,4,7,1,2,6,3,4,2,6,7,8,1,5,3,1,7,6,8,5,4,3,2,6,4,1,2,5,7,3,4,2,6,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,2,8,7,9,1,6,2,3,4,1 -424,71.244.212.152,R_5eViwysYaSl4wEV,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,5,1,6,3,3,2,2,2,6,2,6,3,6,2,3,3,3,1,1,1,2,3,2,2,3,2,2,2,2,4,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,-1,-1,-1,1,10 cents,5 minutes,47 days,3,8,Richard is taller than Matt,47,Tuesday,D,D,B,B,C,Male,University - Undergraduate,38,32 - 38,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,6,2,7,1,1,5,4,7,6,2,3,7,2,8,6,3,5,4,1,1,6,8,5,3,4,2,7,1,2,4,3,5,6,7,2,4,6,8,3,7,5,1,7,3,9,2,5,6,4,1,8,4,2,3,1 -425,99.233.158.246,R_50UYiSlA41mNxIh,self,01FPV,past,6,7,7,5,6,5,6,8,5,6,5,7,5,6,6,6,5,6,6,6,6,7,6,5,6,5,6,5,5,6,5,5,5,5,4,6,6,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,1,0,0,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,B,D,C,Male,College Diploma/Certificate,20,18 - 24,Canadian,Male,1,,1,,,1,,5,1,8,4,3,7,2,6,3,5,7,1,4,6,2,4,7,3,6,8,1,5,2,1,3,4,8,2,7,6,5,5,6,1,3,2,7,4,3,5,7,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,8,5,6,9,1,4,4,2,3,1 -426,47.219.242.246,R_7KVfUI5dgK72NHb,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,6,5,6,6,3,4,4,6,5,4,4,2,4,2,1,1,0,0,4,1,5,5,6,6,2,4,6,6,1,6,1,6,3,3,2,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,-1,-2,1,1,-2,-1,5 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,B,F,Female,College Diploma/Certificate,21,18 - 24,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,3,7,2,1,1,2,6,7,4,3,5,5,4,8,2,6,3,7,1,1,6,8,7,2,4,3,5,1,2,6,3,5,4,7,6,5,7,8,4,2,3,1,5,8,9,3,7,6,2,1,4,3,4,2,1 -427,142.165.36.87,R_7Gt9KaV8NT2oVEZ,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,3,0,2,1,2,2,3,1,3,5,7,2,1,2,2,0,2,0,1,0,1,2,2,0,3,1,0,0,1,0,1,0,0,1,1,2,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,-1,-1,-2,1,5 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,57,Sunday,D,D,A,B,D,Male,High School (or equivalent),22,18 - 24,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,2,5,4,3,1,1,4,5,7,6,3,2,2,4,8,5,6,3,7,1,1,6,8,5,3,7,4,2,1,2,6,5,3,4,7,4,6,7,8,5,3,2,1,2,6,3,5,8,4,9,1,7,2,3,4,1 -428,71.62.93.92,R_5Jud7qA7emHTnJn,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,2,2,1,2,3,1,2,2,2,1,1,2,2,3,2,1,3,1,2,3,3,4,3,4,2,2,2,3,2,2,3,2,3,1,3,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,-2,0,-2,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,C,D,C,B,C,Male,University - Graduate (Masters),52,46 - 52,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,4,5,3,7,1,1,3,5,7,6,4,2,6,2,8,4,3,7,5,1,1,5,8,2,3,6,4,7,1,4,5,3,6,2,7,2,7,5,8,6,3,4,1,2,5,3,6,4,7,9,1,8,3,2,4,1 -429,97.204.198.145,R_7zutYLK27PLIqWd,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,4,2,4,9,8,3,4,7,7,6,7,2,4,8,8,8,9,9,8,6,1,6,1,3,1,6,4,1,8,2,4,9,6,2,6,2,1,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-2,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Saturday,D,E,B,B,C,Male,Trade School,21,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,7,4,2,1,1,3,2,7,6,4,5,3,7,8,2,5,4,6,1,1,2,8,5,7,6,3,4,1,3,4,2,6,5,7,3,6,7,8,2,4,5,1,6,8,3,2,5,4,7,1,9,2,4,3,1 -430,142.232.152.22,R_7zevqe6JEsBvB81,self,03VFP,future,7,5,7,5,8,8,7,6,7,6,7,8,7,7,8,7,7,6,7,6,5,8,6,6,6,5,7,7,7,8,8,6,7,8,6,7,7,6,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,0,0,1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Male,University - Undergraduate,22,18 - 24,Canadian,Male,1,,,,1,,1,7,1,8,3,5,6,4,2,3,6,7,1,4,5,2,5,6,7,2,8,1,3,4,1,4,6,8,7,3,5,2,5,6,1,2,3,7,4,4,3,7,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,5,9,6,4,1,7,3,2,4,1 -431,38.15.87.165,R_7zN2IHwjOKXwqnR,self,02PVF,future,7,8,7,1,1,5,6,6,8,8,2,7,6,7,7,8,1,5,8,6,3,8,7,1,1,4,5,8,6,8,3,7,7,8,3,2,1,1,9,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-1,-1,2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,B,B,B,Female,University - Undergraduate,21,18 - 24,Canadian,Female,1,,,1,,,1,4,1,8,7,6,2,3,5,6,3,7,1,5,4,2,4,3,6,5,8,1,2,7,1,3,5,8,4,7,2,6,6,2,1,4,3,7,5,2,4,6,7,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,3,8,5,9,4,1,2,3,2,4,1 -432,47.55.230.209,R_7QJGpChMosm2slY,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,5,5,5,6,6,5,8,7,7,7,7,7,7,7,3,7,5,3,8,6,7,7,7,7,7,7,6,7,7,7,7,8,7,7,7,7,6,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,2,1,0,1,10 cents,5 minutes,24 days,3,7,It's impossible to tell,47,Saturday,A,B,D,B,E,Female,University - Undergraduate,24,18 - 24,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,4,6,7,2,1,1,2,5,7,3,4,6,6,2,8,3,4,5,7,1,1,7,8,5,3,2,6,4,1,4,2,5,3,6,7,2,5,4,8,7,6,3,1,6,3,2,7,5,8,9,1,4,2,4,3,1 -433,174.114.62.90,R_1cCLty0mSqotM0j,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like somewhat,6,5,6,8,2,9,9,7,10,5,8,7,3,5,5,4,8,3,6,10,8,4,6,7,2,8,7,9,7,3,8,1,1,4,8,5,7,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,-1,-2,-1,0,0,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,57,Sunday,D,C,A,A,F,Female,High School (or equivalent),18,18 - 24,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,5,3,6,1,1,6,4,7,2,3,5,2,6,8,4,3,7,5,1,1,7,8,4,5,3,6,2,1,3,2,6,4,5,7,4,5,6,8,3,7,2,1,8,2,4,3,7,6,5,1,9,3,4,2,1 -434,206.12.14.66,R_7e4uq1KExPGUBuA,self,03VFP,past,3,2,2,6,2,2,6,1,3,2,3,2,2,5,1,3,7,2,4,2,6,3,5,4,5,4,4,5,4,2,2,4,4,4,1,3,1,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,-1,-1,1,0,-1,1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Saturday,D,E,A,B,C,Female,High School (or equivalent),19,18 - 24,Canadian,Female,1,,,,1,1,,4,1,8,6,2,3,7,5,6,5,7,1,3,4,2,6,4,5,3,8,1,2,7,1,5,4,8,6,7,2,3,4,5,1,3,2,7,6,5,3,7,4,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,2,7,6,4,8,1,3,2,4,3,1 -435,72.139.193.52,R_1hncitrSn18O0FB,self,02PVF,future,3,6,4,10,5,10,5,8,10,8,3,10,8,8,10,6,6,8,8,8,8,10,8,4,6,7,8,3,5,5,2,6,6,6,6,2,6,8,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,1,-2,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,A,B,C,Female,High School (or equivalent),21,18 - 24,Canadian,Female,1,,,1,,,1,6,1,8,3,4,5,2,7,3,5,7,1,6,4,2,3,5,7,4,8,1,6,2,1,4,6,8,7,5,3,2,2,5,1,6,4,7,3,7,3,2,6,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,6,4,8,3,1,9,4,3,2,1 -436,96.225.22.26,R_3U8ULanD1q88rYw,self,03VFP,future,7,5,2,6,4,7,8,4,5,5,7,3,8,3,4,10,5,5,3,4,5,7,3,2,6,5,4,8,6,4,3,5,9,8,5,4,6,3,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,0,1,1,1,1,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,A,E,D,D,Male,Professional Degree (ex. JD/MD),26,25 - 31,American,Male,1,,,,1,,1,6,1,8,2,5,7,4,3,6,2,7,1,3,4,5,4,2,3,6,8,1,7,5,1,6,2,8,4,5,7,3,6,4,1,5,2,7,3,3,2,6,5,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,9,6,7,8,1,5,3,2,4,1 -437,129.222.137.144,R_5V21CP4D902wuSB,self,03VFP,past,3,3,1,3,1,1,5,4,4,1,1,10,8,10,10,6,7,8,3,7,2,4,2,4,2,3,1,5,2,1,1,5,3,3,2,1,4,6,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-1,-2,2,5 cents,100 minutes,47 days,5,9,Richard is shorter than Matt,47,Sunday,C,D,C,B,D,Male,High School (or equivalent),23,18 - 24,Canadian,Male,1,,,,1,1,,5,1,8,7,2,3,6,4,2,6,7,1,5,4,3,6,7,4,5,8,1,3,2,1,7,3,8,5,2,6,4,2,4,1,3,5,7,6,6,7,3,5,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,3,2,4,9,6,1,5,4,3,2,1 -438,162.156.94.73,R_5f2TurcYNVUY7EM,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,1,-1,-2,1,-1,-2,-2,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,D,E,A,B,D,Female,University - Undergraduate,24,18 - 24,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,2,7,6,1,1,4,6,7,2,3,5,7,2,8,4,6,3,5,1,1,7,8,5,3,4,2,6,1,6,3,5,4,2,7,7,4,2,8,3,5,6,1,3,4,2,7,8,6,5,1,9,4,2,3,1 -439,73.244.185.115,R_31KrJoFQWL1wDo3,self,01FPV,future,7,9,5,5,8,7,7,7,8,8,6,5,9,5,10,8,9,6,6,5,9,2,3,7,3,6,6,8,10,8,4,8,8,9,9,7,7,8,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,1,1,2,2,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,F,C,B,Male,High School (or equivalent),22,18 - 24,American,Male,1,,1,,,,1,6,1,8,5,4,7,2,3,5,4,7,1,3,2,6,6,5,7,2,8,1,4,3,1,3,2,8,4,7,5,6,5,4,1,6,2,7,3,3,7,2,5,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,8,2,9,3,1,7,2,3,4,1 -440,50.65.185.128,R_3ARPABhv6tJZOLv,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,10,6,10,1,2,9,8,3,6,8,1,10,7,6,4,5,2,2,3,5,6,3,2,8,1,8,5,7,4,7,2,6,4,1,1,2,2,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-2,0,0,-1,1,5 cents,100 minutes,24 days,5,9,It's impossible to tell,47,Sunday,D,C,A,B,E,Female,University - Undergraduate,23,18 - 24,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,6,4,5,2,1,1,6,4,7,5,3,2,2,4,8,7,5,3,6,1,1,7,8,2,4,3,5,6,1,5,4,6,3,2,7,2,5,4,8,3,7,6,1,3,7,5,9,4,8,6,1,2,4,2,3,1 -441,174.92.29.98,R_7fLO7uGbZLG7wEp,self,03VFP,future,7,7,8,4,3,5,7,4,5,7,3,5,7,8,5,4,3,6,5,3,4,4,3,5,2,5,4,4,4,5,2,6,5,6,4,4,2,8,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,0,0,-1,-1,5 cents,5 minutes,47 days,5,8,Richard is taller than Zach,47,Sunday,E,C,D,D,A,Female,High School (or equivalent),21,18 - 24,Canadian,Female,1,,,,1,,1,2,1,8,7,6,4,5,3,3,2,7,1,5,6,4,7,5,4,2,8,1,6,3,1,5,7,8,4,2,6,3,3,6,1,4,5,7,2,2,6,3,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,6,4,9,2,7,1,5,4,2,3,1 -442,139.57.217.30,R_6JfzeMPbx8LFTyh,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Like a great deal,7,1,2,1,1,3,1,1,1,1,1,2,1,2,2,4,1,1,1,1,6,1,1,4,1,10,2,1,1,2,1,7,2,3,4,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,1,0,1,0,-2,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,44,Sunday,D,E,A,B,D,Female,High School (or equivalent),18,18 - 24,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,7,5,2,3,1,1,5,3,7,4,6,2,7,4,8,3,2,5,6,1,1,5,8,2,6,3,7,4,1,3,6,4,5,2,7,3,6,7,8,4,5,2,1,9,5,3,8,6,7,4,1,2,4,2,3,1 -443,47.146.35.219,R_58n30RcKJanhspH,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like somewhat,3,4,6,1,2,5,5,2,5,2,3,3,4,5,5,4,3,1,3,5,2,2,2,0,1,5,1,1,3,2,2,5,3,2,2,2,2,3,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,1,1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,44,Monday,D,E,D,E,E,Male,University - Undergraduate,28,25 - 31,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,6,2,1,1,2,5,7,6,4,3,4,7,8,6,3,2,5,1,1,5,8,6,2,3,7,4,1,4,3,2,6,5,7,7,6,4,8,5,3,2,1,7,6,5,3,9,4,2,1,8,2,4,3,1 -444,24.207.74.3,R_7Oi8TSxNH9MDhSW,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,6,4,5,7,7,5,6,4,4,5,5,6,6,5,4,5,6,6,5,5,0,2,0,2,4,0,6,6,4,4,6,5,5,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-1,1,1,0,0,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,B,Female,High School (or equivalent),19,18 - 24,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,5,2,3,7,1,1,2,3,7,6,4,5,6,5,8,7,3,2,4,1,1,2,8,7,4,5,3,6,1,6,5,2,3,4,7,6,5,2,8,4,7,3,1,7,6,4,8,2,9,3,1,5,3,2,4,1 -445,76.128.149.53,R_70vpthhnT9Db8Vi,self,01FPV,future,6,7,5,7,7,7,6,7,7,7,6,6,5,6,8,7,7,6,5,8,6,8,5,7,8,6,6,7,7,5,6,8,6,5,5,7,5,8,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,0,1,1,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,44,Sunday,D,E,D,A,D,Male,University - Undergraduate,31,25 - 31,American,Male,1,,1,,,,1,5,1,8,7,4,2,3,6,5,2,7,1,3,4,6,7,2,4,5,8,1,3,6,1,4,6,8,5,2,3,7,4,2,1,3,6,7,5,3,4,6,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,7,4,6,8,5,1,2,2,4,3,1 -446,184.144.125.32,R_5DZJdjFzc6chJ1Z,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,2,1,2,2,1,2,2,2,3,6,1,7,3,1,6,4,1,1,6,2,1,1,5,3,1,6,2,6,1,6,2,10,4,1,6,6,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,1,0,-2,1,5 cents,100 minutes,24 days,3,8,It's impossible to tell,53,Sunday,C,E,A,B,E,Female,University - Undergraduate,23,18 - 24,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,6,4,3,7,1,1,4,3,7,5,6,2,4,5,8,3,7,2,6,1,1,7,8,5,2,6,4,3,1,4,5,3,2,6,7,4,6,3,8,2,5,7,1,9,3,7,4,6,5,2,1,8,4,3,2,1 -447,96.247.192.168,R_6fCH1s1k2SeAJvm,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like a great deal,6,2,2,7,8,8,6,6,8,1,7,2,6,4,3,9,4,2,3,3,8,2,1,2,1,7,4,8,4,2,3,6,6,1,3,7,2,1,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,-1,2,-1,-1,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,D,D,A,B,C,Female,University - Undergraduate,36,32 - 38,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,2,7,4,5,1,1,6,2,7,5,4,3,2,3,8,6,7,5,4,1,1,5,8,6,4,3,7,2,1,5,3,6,2,4,7,4,3,5,8,6,7,2,1,6,8,9,7,5,3,4,1,2,3,4,2,1 -448,69.235.35.205,R_6usLiPkSyqGyF31,self,02PVF,future,1,1,1,1,0,0,2,1,0,2,3,1,1,2,0,2,1,1,1,0,0,1,1,2,2,0,1,1,2,0,1,2,2,2,1,1,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,1,2,-1,1,10 cents,100 minutes,24 days,3,10,Richard is taller than Matt,35,Monday,D,E,C,D,A,Female,High School (or equivalent),49,46 - 52,American,Female,1,,,1,,,1,5,1,8,2,6,7,4,3,3,2,7,1,6,4,5,7,3,2,6,8,1,4,5,1,6,5,8,2,3,7,4,2,6,1,3,5,7,4,7,2,3,4,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,7,2,6,4,3,1,5,2,4,3,1 -449,205.206.139.96,R_1o6xJ3eW4KgPs7H,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,1,0,0,0,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Tuesday,D,C,E,C,C,Female,University - Undergraduate,41,39 - 45,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,5,6,2,1,1,4,2,7,5,6,3,4,6,8,5,3,2,7,1,1,7,8,2,6,3,5,4,1,2,3,4,5,6,7,3,6,2,8,7,5,4,1,8,5,9,3,6,7,2,1,4,3,2,4,1 -450,209.121.38.16,R_6bFqG1DLTJCHDX3,self,01FPV,past,1,1,1,2,2,2,1,1,1,1,1,5,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,6,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,0,-2,-2,2,10 cents,5 minutes,24 days,5,9,It's impossible to tell,47,Sunday,D,E,A,A,E,Female,University - Graduate (Masters),70,67 - 73,Canadian,Female,1,,1,,,1,,4,1,8,6,5,2,3,7,3,5,7,1,6,4,2,3,7,5,4,8,1,6,2,1,7,6,8,2,4,5,3,5,6,1,3,4,7,2,7,4,2,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,2,3,8,6,5,1,4,2,3,4,1 -451,144.172.223.96,R_31WIJPbAvEaDbiZ,self,03VFP,future,2,1,2,1,2,1,1,2,1,2,2,3,3,2,1,0,3,5,2,0,5,2,4,3,4,2,1,2,0,2,1,6,2,2,0,0,1,3,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,0,0,0,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,C,A,B,Female,University - Graduate (Masters),46,46 - 52,Canadian,Female,1,,,,1,,1,7,1,8,6,2,3,5,4,6,4,7,1,2,3,5,7,6,2,4,8,1,5,3,1,5,2,8,7,3,6,4,5,3,1,2,6,7,4,7,5,3,6,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,9,3,4,1,6,3,4,2,1 -452,99.241.245.96,R_1xSTnU3mCNuX0tz,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,9,7,7,7,3,8,8,8,7,7,7,8,7,8,6,5,5,6,6,5,3,7,8,7,7,7,8,2,6,7,8,2,9,8,8,9,7,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,-1,2,2,1,-2,10 cents,5 minutes,24 days,4,8,It's impossible to tell,47,Saturday,B,E,D,C,C,Female,University - Undergraduate,28,25 - 31,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,3,4,7,1,1,2,6,7,5,3,4,2,6,8,5,7,3,4,1,1,6,8,4,3,5,2,7,1,5,2,6,4,3,7,2,3,7,8,6,5,4,1,4,2,3,7,8,6,9,1,5,4,2,3,1 -453,172.58.255.77,R_1NJea0ifFvWBJ6h,self,03VFP,future,6,1,1,4,3,1,2,1,2,2,0,4,2,0,3,6,0,2,2,2,4,1,1,3,2,2,2,0,1,2,0,3,2,3,1,6,0,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,-1,-2,-1,-1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,44,Monday,C,D,D,C,A,Male,University - PhD,57,53 - 59,American,Male,1,,,,1,,1,3,1,8,4,2,5,7,6,6,5,7,1,4,2,3,7,4,6,3,8,1,2,5,1,7,2,8,3,4,6,5,3,4,1,2,6,7,5,3,6,2,7,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,3,6,5,8,9,1,4,3,4,2,1 -454,96.52.250.15,R_7z7ohJlFu0ZSSVv,self,02PVF,past,3,2,9,10,8,7,7,10,10,10,6,10,10,6,7,7,6,9,7,8,8,10,5,9,9,6,6,10,9,9,9,10,8,10,10,10,10,8,10,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,-1,-1,2,0,2,-1,10 cents,75 minutes,15 days,7,8,Zach is shorter than Matt,47,Friday,D,F,C,F,B,Male,High School (or equivalent),28,25 - 31,Canadian,Male,1,,,1,,1,,4,1,8,2,7,3,5,6,6,4,7,1,2,5,3,7,4,5,3,8,1,6,2,1,3,4,8,6,5,7,2,4,5,1,2,3,7,6,6,4,2,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,9,5,8,3,2,1,6,2,4,3,1 -455,74.12.35.245,R_51cfYISWM39UcfD,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,6,7,5,7,6,5,6,4,5,5,8,7,5,4,5,4,5,7,7,6,3,6,7,5,3,4,7,5,5,3,5,7,7,3,2,5,7,6,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,0,1,-1,-1,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Male,University - Undergraduate,25,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,5,3,2,1,1,2,6,7,3,4,5,2,3,8,6,4,7,5,1,1,5,8,4,7,6,3,2,1,2,6,3,5,4,7,7,2,6,8,3,5,4,1,3,7,5,6,9,2,8,1,4,3,4,2,1 -456,98.5.241.246,R_1GrUaB2MxbedwA1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,5,6,6,5,5,8,8,5,6,6,8,5,5,7,8,6,5,6,8,8,5,5,6,7,6,5,5,6,7,4,8,3,7,8,8,7,5,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,2,2,-2,-1,-1,-2,-2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,D,C,D,Male,High School (or equivalent),46,46 - 52,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,4,3,6,1,1,5,6,7,4,3,2,7,2,8,3,4,6,5,1,1,6,8,3,5,2,7,4,1,4,3,5,2,6,7,2,3,5,8,7,6,4,1,8,2,4,5,6,7,3,1,9,4,3,2,1 -457,75.157.209.140,R_1KWbqeO0e9eHpjf,self,01FPV,past,3,0,2,2,0,3,2,1,0,0,4,2,2,4,1,6,5,0,1,2,3,0,0,3,0,3,2,1,0,1,4,2,2,3,1,3,3,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,0,-1,-1,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,B,B,D,Male,University - Graduate (Masters),65,60 - 66,Canadian,Male,1,,1,,,1,,2,1,8,7,5,4,6,3,6,3,7,1,4,2,5,4,7,5,3,8,1,2,6,1,3,4,8,2,7,5,6,6,2,1,4,3,7,5,6,3,7,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,5,2,3,4,7,1,8,4,2,3,1 -458,67.193.104.43,R_3U9IAJkILq5ixEt,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,0,1,1,1,0,0,0,0,1,0,1,3,0,1,1,1,1,0,0,1,0,0,1,3,1,0,1,1,2,0,1,4,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-2,0,1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,C,Male,University - Undergraduate,69,67 - 73,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,7,6,4,2,1,1,6,3,7,4,2,5,6,5,8,7,3,4,2,1,1,4,8,6,5,3,2,7,1,5,6,4,3,2,7,7,2,6,8,3,4,5,1,5,8,9,7,4,6,2,1,3,4,2,3,1 -459,98.151.80.203,R_1IHkAEkWdGKL5iK,self,01FPV,future,2,3,3,5,4,2,1,2,1,2,2,1,1,1,1,1,2,1,2,1,6,4,6,2,3,3,3,1,1,2,1,1,1,1,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,0,-2,2,1,-1,-1,10 cents,100 minutes,24 days,5,11,It's impossible to tell,47,Monday,D,D,D,C,A,Male,High School (or equivalent),50,46 - 52,American,Male,1,,1,,,,1,7,1,8,6,3,5,4,2,6,3,7,1,5,2,4,3,7,6,4,8,1,5,2,1,5,4,8,3,7,6,2,2,5,1,3,4,7,6,4,6,2,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,5,6,2,1,9,4,2,3,1 -460,72.76.251.111,R_3NyozEmuO42XPnm,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,5,4,4,4,4,6,5,6,5,5,5,6,6,6,6,5,5,5,5,5,5,5,6,4,5,4,3,5,5,5,5,5,5,4,5,6,6,5,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,-2,1,0,0,-1,10 cents,5 minutes,24 days,7,7,Richard is taller than Zach,47,Tuesday,C,C,C,C,C,Female,College Diploma/Certificate,50,46 - 52,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,2,3,4,5,1,1,4,2,7,6,3,5,2,4,8,3,6,7,5,1,1,7,8,5,2,3,4,6,1,6,2,4,3,5,7,2,5,3,8,4,6,7,1,3,5,4,6,7,8,9,1,2,3,4,2,1 -461,99.247.235.166,R_7gjdUGqzVazVeie,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Like a great deal,3,1,1,1,1,1,1,4,3,1,1,6,1,1,3,1,1,1,1,1,3,3,3,3,3,3,3,2,4,1,1,5,3,1,4,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,0,-2,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,F,Female,University - Graduate (Masters),42,39 - 45,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,3,5,2,4,1,1,6,4,7,3,2,5,5,3,8,7,2,4,6,1,1,4,8,5,3,6,2,7,1,2,6,5,4,3,7,5,2,7,8,3,6,4,1,6,4,3,8,5,9,2,1,7,2,3,4,1 -462,70.50.42.95,R_7JRCfiCRiHyWCzJ,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,9,10,8,8,10,6,5,8,10,8,6,7,9,5,8,5,5,5,7,7,8,8,10,5,7,10,8,7,6,7,8,0,8,7,9,9,5,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-1,1,0,0,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,F,D,D,B,D,Male,University - Graduate (Masters),38,32 - 38,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,5,6,4,2,1,1,5,4,7,6,2,3,4,6,8,3,7,5,2,1,1,4,8,2,3,6,5,7,1,2,3,5,6,4,7,4,7,2,8,5,6,3,1,5,9,3,4,2,6,8,1,7,2,4,3,1 -463,162.157.178.242,R_3kMKk354Cf74Jv9,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,2,4,10,4,5,4,2,5,6,6,1,4,3,6,5,3,5,7,4,2,1,5,7,2,5,2,2,1,2,2,2,2,2,1,4,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-1,-1,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,F,F,B,F,Female,University - Undergraduate,49,46 - 52,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,3,7,4,6,1,1,5,3,7,2,6,4,2,5,8,7,3,6,4,1,1,6,8,3,2,7,4,5,1,2,3,5,4,6,7,2,5,4,8,3,6,7,1,2,3,7,4,6,9,8,1,5,4,3,2,1 -464,172.59.193.61,R_3dpkXS920BkAbie,self,02PVF,future,4,3,2,4,2,3,3,4,3,3,2,5,3,3,4,4,2,6,3,3,3,2,2,4,2,3,3,3,2,3,2,4,3,2,3,3,2,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,E,B,A,F,Male,University - Graduate (Masters),53,53 - 59,American,Male,1,,,1,,,1,5,1,8,4,7,2,3,6,5,4,7,1,3,2,6,5,3,4,7,8,1,2,6,1,2,7,8,6,3,4,5,4,5,1,6,3,7,2,7,6,3,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,7,6,3,9,5,1,2,2,4,3,1 -465,142.127.9.170,R_7FDjflDoZ3vnpzF,self,01FPV,future,8,1,1,4,3,1,9,4,2,10,3,9,1,7,4,6,1,1,5,4,7,1,2,6,2,5,3,5,10,3,2,3,0,5,8,10,1,2,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,2,-1,0,2,0,2,10 cents,100 minutes,24 days,2,10,It's impossible to tell,35,Tuesday,F,E,B,D,A,Female,High School (or equivalent),35,32 - 38,Canadian,Female,1,,1,,,,1,2,1,8,5,7,6,3,4,6,3,7,1,2,5,4,6,2,7,5,8,1,3,4,1,6,7,8,3,4,2,5,2,5,1,3,4,7,6,2,4,6,3,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,9,8,3,7,1,6,3,2,4,1 -466,142.182.128.142,R_5y3gA20PXofyJX1,self,03VFP,past,9,8,8,9,8,7,9,9,8,8,7,7,4,9,9,8,8,9,8,9,7,8,5,7,5,4,6,7,4,5,7,7,7,3,7,7,3,8,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-1,1,1,-1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,A,D,Male,College Diploma/Certificate,32,32 - 38,Canadian,Male,1,,,,1,1,,3,1,8,6,2,5,7,4,3,6,7,1,4,5,2,2,5,7,3,8,1,4,6,1,4,5,8,2,3,7,6,5,3,1,6,4,7,2,4,3,7,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,2,8,5,6,9,1,3,2,3,4,1 -467,69.156.166.205,R_5QLYgD7xbqAj7Ty,self,02PVF,past,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,-1,0,-1,1,-1,-2,10 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Sunday,D,E,B,B,E,Male,Trade School,21,18 - 24,Canadian,Male,1,,,1,,1,,2,1,8,3,6,7,4,5,3,2,7,1,4,5,6,3,2,5,6,8,1,4,7,1,3,5,8,7,2,4,6,5,6,1,4,2,7,3,6,2,3,7,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,7,5,8,9,6,1,2,4,3,2,1 -468,147.26.140.4,R_1EX7MPUF3uaqmnT,self,02PVF,future,6,7,8,8,9,7,6,8,6,8,7,8,7,9,7,8,8,7,7,7,8,6,8,8,7,7,6,7,8,6,7,8,7,7,7,5,8,8,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,1,1,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,E,B,C,A,C,Female,University - Undergraduate,46,46 - 52,American,Female,1,,,1,,,1,4,1,8,6,2,3,5,7,5,6,7,1,3,2,4,6,3,4,2,8,1,7,5,1,2,6,8,3,7,5,4,4,2,1,3,6,7,5,3,6,4,5,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,3,7,6,9,2,1,8,2,4,3,1 -469,129.222.159.34,R_1jdg9BUAqp6JwFD,self,03VFP,past,7,9,10,10,9,10,7,10,9,8,8,10,10,9,10,10,10,9,10,10,8,8,8,10,10,10,10,8,10,10,8,9,8,7,10,7,10,7,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,2,1,1,1,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,A,C,C,B,E,Male,University - Undergraduate,18,18 - 24,Canadian,Male,1,,,,1,1,,3,1,8,2,7,5,4,6,4,5,7,1,3,2,6,2,3,5,4,8,1,6,7,1,3,4,8,7,5,2,6,6,4,1,5,3,7,2,2,4,3,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,5,9,6,2,7,1,3,2,4,3,1 -470,99.65.58.68,R_5fOTiGlxirk98Tt,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like somewhat,5,5,6,6,6,5,5,6,5,5,6,5,6,5,5,5,6,5,6,5,6,7,5,8,7,7,6,5,5,5,6,6,6,6,6,6,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,-1,0,10 cents,100 minutes,24 days,5,9,Richard is as tall as Matt,39,Tuesday,B,C,B,C,C,Male,College Diploma/Certificate,56,53 - 59,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,6,4,7,5,1,1,4,3,7,2,5,6,3,2,8,6,4,7,5,1,1,4,8,2,6,5,7,3,1,6,5,2,3,4,7,6,3,7,8,4,2,5,1,2,5,9,3,6,8,7,1,4,2,4,3,1 -471,99.227.147.21,R_71cHtlddLQljLw1,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like somewhat,8,2,9,9,9,8,9,8,8,10,9,9,10,7,8,7,8,9,10,9,9,10,10,9,8,10,9,10,8,10,8,9,8,8,9,8,9,10,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,-2,2,1,2,2,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,B,Male,University - Undergraduate,41,39 - 45,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,2,7,3,6,1,1,2,5,7,4,6,3,5,7,8,4,6,3,2,1,1,5,8,2,6,7,3,4,1,4,5,6,3,2,7,2,5,3,8,4,7,6,1,9,7,2,6,3,4,8,1,5,3,4,2,1 -472,64.72.232.198,R_3TXcF6uFt072ae7,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Dislike somewhat,6,5,3,7,2,8,7,8,10,7,7,3,8,7,8,9,8,5,8,9,6,2,3,2,6,7,7,8,7,8,8,4,8,8,8,8,8,8,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-1,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,C,Male,University - PhD,40,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,5,7,6,2,1,1,5,3,7,2,6,4,4,7,8,3,5,2,6,1,1,5,8,6,7,2,3,4,1,4,2,5,3,6,7,3,2,4,8,7,6,5,1,3,2,8,7,4,6,5,1,9,3,4,2,1 -473,108.173.38.222,R_6LUwl4lDv3XCSz1,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,9,10,8,8,10,10,10,10,10,10,10,10,10,4,4,5,10,4,4,4,9,10,10,8,9,9,10,10,9,8,9,10,9,10,10,10,10,8,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,C,B,A,C,C,Male,University - Undergraduate,18,18 - 24,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,6,2,4,1,1,4,2,7,5,6,3,5,4,8,7,3,6,2,1,1,4,8,5,6,2,7,3,1,2,3,4,5,6,7,5,3,2,8,7,6,4,1,3,7,8,9,6,2,4,1,5,4,2,3,1 -474,23.233.244.160,R_1N7ALhMzYJmKuCl,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,10,10,10,10,10,10,8,10,5,4,4,4,4,10,10,10,10,9,8,10,10,9,8,9,9,10,6,8,10,10,10,10,10,9,10,8,9,10,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,C,B,A,C,C,Male,University - Undergraduate,18,18 - 24,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,2,4,7,1,1,5,4,7,2,6,3,3,4,8,7,2,5,6,1,1,2,8,3,6,5,4,7,1,3,5,6,4,2,7,5,2,6,8,4,7,3,1,8,5,2,9,3,6,4,1,7,2,3,4,1 -475,74.56.176.91,R_11atSoMCmVyZnz3,self,02PVF,past,10,10,10,10,10,10,8,4,4,4,5,10,4,9,8,10,10,10,8,10,10,8,9,9,9,10,6,10,10,10,10,8,10,10,10,8,9,9,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,C,B,A,C,C,Male,University - Undergraduate,18,18 - 24,Canadian,Male,1,,,1,,1,,3,1,8,4,7,6,5,2,6,2,7,1,4,3,5,2,7,6,5,8,1,3,4,1,6,2,8,4,5,3,7,6,5,1,4,3,7,2,5,2,3,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,4,2,5,9,3,1,7,2,4,3,1 -476,69.154.150.24,R_1JDSnM1XteMbGTO,self,01FPV,future,2,4,1,7,1,6,2,4,1,6,6,2,4,1,1,4,1,1,2,1,6,6,6,7,6,7,6,6,6,6,5,4,7,2,2,7,1,7,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,1,-2,2,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,C,E,D,B,F,Male,College Diploma/Certificate,48,46 - 52,American,Male,1,,1,,,,1,6,1,8,2,4,3,5,7,2,5,7,1,3,4,6,5,3,4,2,8,1,6,7,1,2,7,8,3,5,4,6,3,2,1,4,6,7,5,5,3,4,2,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,5,2,3,6,8,1,4,3,2,4,1 -477,134.41.246.9,R_6SHwiPhmWttSuxr,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,0,0,0,0,2,2,0,1,1,0,0,0,1,2,2,1,1,0,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,4,2,2,2,7,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,0,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,F,B,D,Female,University - Graduate (Masters),31,25 - 31,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,4,7,5,1,1,3,6,7,4,2,5,6,5,8,4,2,7,3,1,1,4,8,5,7,2,3,6,1,6,4,3,2,5,7,6,2,4,8,3,5,7,1,9,6,8,7,4,3,2,1,5,3,4,2,1 -478,174.170.20.86,R_5PAflzHpaoFTbtl,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,-2,1,1,-2,1,10 cents,100 minutes,24 days,4,12,Richard is taller than Matt,57,Tuesday,D,E,D,A,B,Male,Trade School,53,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,2,4,6,5,1,1,2,5,7,4,6,3,2,5,8,6,3,4,7,1,1,4,8,5,3,6,7,2,1,6,3,4,2,5,7,2,7,4,8,3,5,6,1,4,7,6,3,2,8,9,1,5,3,4,2,1 -479,209.253.171.218,R_6yuZB2pjee6q2YN,self,03VFP,future,4,5,6,6,7,5,5,5,4,6,4,5,7,6,4,6,5,5,5,5,5,5,5,6,6,5,6,5,5,6,5,5,4,5,5,6,5,6,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,-1,0,0,-1,0,10 cents,100 minutes,24 days,3,12,Richard is taller than Zach,47,Tuesday,D,D,B,E,D,Female,High School (or equivalent),50,46 - 52,American,Female,1,,,,1,,1,2,1,8,5,3,6,4,7,6,4,7,1,2,3,5,2,5,6,3,8,1,7,4,1,3,5,8,7,2,4,6,4,2,1,3,6,7,5,4,3,2,6,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,7,8,2,5,1,9,2,3,4,1 -480,73.213.52.58,R_5gtHIlVOAYbib6g,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,0,4,1,3,2,5,1,1,1,4,1,1,0,0,0,0,1,0,2,2,2,4,0,2,1,3,0,1,1,2,1,0,2,0,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,0,-1,-2,1,10 cents,5 minutes,15 days,5,8,Richard is shorter than Matt,47,Sunday,D,E,C,B,B,Female,University - Undergraduate,61,60 - 66,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,2,4,7,1,1,5,4,7,6,3,2,2,6,8,4,3,7,5,1,1,4,8,6,5,2,3,7,1,2,5,3,6,4,7,6,4,2,8,3,7,5,1,8,2,4,5,3,6,7,1,9,2,4,3,1 -481,142.177.159.189,R_7hbjAoMCuNwCIMr,self,03VFP,past,3,1,8,2,2,1,2,6,7,2,2,6,6,6,7,8,6,7,4,5,8,2,6,7,2,4,6,7,7,5,2,5,7,2,9,9,3,3,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,1,-2,-2,1,10 cents,100 minutes,24 days,5,12,It's impossible to tell,47,Sunday,B,F,D,A,E,Female,University - Graduate (Masters),38,32 - 38,Canadian,Female,1,,,,1,1,,5,1,8,4,3,2,6,7,4,6,7,1,2,3,5,7,5,2,4,8,1,3,6,1,2,3,8,5,4,6,7,3,6,1,4,2,7,5,3,6,4,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,9,3,4,6,5,1,8,3,2,4,1 -482,173.206.34.146,R_6sbreZCqUrDr1n6,self,01FPV,past,2,2,4,4,3,2,3,2,2,5,1,5,5,5,5,5,1,5,1,1,1,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,-2,-2,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,B,F,F,Male,University - Undergraduate,45,39 - 45,Canadian,Male,1,,1,,,1,,3,1,8,2,6,4,7,5,2,6,7,1,3,4,5,7,4,6,3,8,1,5,2,1,5,4,8,2,3,6,7,5,3,1,4,6,7,2,3,4,5,7,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,4,2,8,7,3,6,1,5,2,4,3,1 -483,165.225.210.104,R_1XbSB4Y3cwz7CPw,self,01FPV,past,3,3,7,7,7,7,7,7,6,3,5,7,6,7,6,6,5,6,5,6,6,3,7,6,6,7,7,5,6,4,4,7,6,5,6,7,4,7,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,0,1,-1,-1,-1,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,D,D,C,B,Male,High School (or equivalent),39,39 - 45,Canadian,Male,1,,1,,,1,,3,1,8,7,4,5,2,6,2,3,7,1,5,4,6,2,6,5,4,8,1,7,3,1,3,4,8,5,7,2,6,3,4,1,6,2,7,5,4,3,5,6,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,4,2,6,8,5,3,1,7,2,4,3,1 -484,71.72.1.109,R_7S2GbG5MZ1VHYwD,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,-2,0,0,-1,1,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,A,D,F,Male,High School (or equivalent),55,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,7,2,4,1,1,5,6,7,2,4,3,7,6,8,4,3,5,2,1,1,3,8,7,5,2,4,6,1,2,3,6,5,4,7,3,5,7,8,2,6,4,1,8,4,5,2,9,6,7,1,3,3,4,2,1 -485,24.218.194.48,R_7FsLngIgiROJICT,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,3,2,2,1,2,1,2,2,2,1,2,2,2,1,1,1,1,4,2,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,-1,2,0,0,0,10 cents,100 minutes,24 days,5,10,It's impossible to tell,57,Tuesday,F,C,C,F,E,Female,University - Undergraduate,45,39 - 45,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,7,3,2,4,1,1,3,2,7,4,6,5,7,2,8,5,3,6,4,1,1,5,8,2,4,6,7,3,1,4,3,2,5,6,7,3,4,6,8,7,5,2,1,2,7,6,4,8,5,9,1,3,2,4,3,1 -486,73.89.250.55,R_7QmdrxOQfjD0DCQ,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,10 cents,5 minutes,24 days,5,11,Richard is as tall as Matt,35,Saturday,D,D,C,C,C,Male,Trade School,54,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,6,5,2,1,1,6,2,7,3,5,4,2,5,8,3,6,4,7,1,1,3,8,5,6,4,7,2,1,4,3,2,6,5,7,5,4,7,8,6,3,2,1,8,3,5,6,9,7,4,1,2,4,3,2,1 -487,68.204.96.133,R_5yaxJCi7syOFxdP,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like somewhat,1,1,3,3,1,7,2,4,3,5,3,2,3,3,3,2,3,3,7,4,3,3,2,2,3,7,2,3,3,4,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-1,0,-1,-1,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,D,B,E,Female,College Diploma/Certificate,44,39 - 45,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,4,7,2,1,1,3,6,7,5,4,2,6,5,8,2,4,3,7,1,1,2,8,4,5,3,6,7,1,3,2,4,5,6,7,5,4,6,8,3,7,2,1,7,9,8,2,4,5,6,1,3,4,3,2,1 -488,172.56.69.102,R_5B5bvk6BNXSyOgV,self,02PVF,future,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,4,1,0,0,0,0,0,0,1,0,0,0,1,0,0,2,2,1,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-2,-1,1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,D,B,D,Male,Trade School,64,60 - 66,American,Male,1,,,1,,,1,4,1,8,2,6,5,7,3,3,4,7,1,5,2,6,4,3,5,6,8,1,7,2,1,7,4,8,3,6,2,5,2,4,1,3,6,7,5,2,6,5,3,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,7,8,6,9,1,2,3,4,2,1 -489,99.11.95.84,R_1CvZc5lAKCDp6lS,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,2,-2,-2,2,10 cents,100 minutes,24 days,2,12,Richard is shorter than Matt,57,Saturday,D,C,C,D,E,Female,University - Graduate (Masters),55,53 - 59,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,2,6,1,1,6,5,7,4,3,2,7,5,8,4,2,6,3,1,1,5,8,2,3,6,7,4,1,4,2,6,5,3,7,4,5,6,8,2,7,3,1,9,6,5,4,2,8,7,1,3,3,4,2,1 -490,198.209.40.94,R_54GgOAL1OP6NYIM,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,2,2,4,4,0,6,1,0,3,0,0,0,0,4,2,4,7,0,3,0,2,5,0,2,1,2,0,3,0,2,1,0,0,5,3,1,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,D,B,D,Male,College Diploma/Certificate,56,53 - 59,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,5,7,2,3,1,1,4,2,7,6,5,3,6,4,8,7,2,3,5,1,1,7,8,6,4,2,3,5,1,6,3,4,2,5,7,3,4,2,8,7,6,5,1,7,8,3,4,5,9,2,1,6,2,4,3,1 -491,72.190.160.147,R_7zcJDRCCSuqZJ7E,self,03VFP,future,1,1,3,8,7,3,6,5,2,3,5,7,6,6,6,5,3,5,5,6,5,5,5,3,3,5,5,6,5,3,6,7,5,3,5,3,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,1,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,B,Female,College Diploma/Certificate,64,60 - 66,American,Female,1,,,,1,,1,5,1,8,2,4,7,6,3,4,5,7,1,3,6,2,5,4,3,6,8,1,2,7,1,7,6,8,4,5,3,2,5,4,1,3,6,7,2,4,5,3,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,4,3,8,6,9,1,2,3,2,4,1 -492,65.49.154.117,R_7OVt9V0wy8Vc8bn,self,01FPV,future,2,4,0,3,1,2,2,6,1,3,2,1,2,0,2,3,1,0,1,2,1,0,0,2,1,2,1,2,1,2,0,1,1,1,0,1,0,0,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,1,1,-2,-1,-2,-2,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,C,Male,High School (or equivalent),39,39 - 45,Canadian,Male,1,,1,,,,1,7,1,8,6,4,2,5,3,3,4,7,1,2,6,5,4,2,6,5,8,1,7,3,1,5,2,8,4,7,3,6,3,2,1,6,4,7,5,5,3,7,4,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,4,7,6,2,3,1,5,3,2,4,1 -493,67.220.42.144,R_5fP3UDU0ZP5yILu,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,3,1,3,2,2,2,2,1,2,1,1,3,3,1,1,1,1,1,2,2,2,2,1,2,2,3,2,2,2,2,2,1,2,2,2,2,0,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,-2,1,-1,-2,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,D,A,A,Female,University - Undergraduate,48,46 - 52,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,4,2,1,1,2,5,7,6,4,3,7,5,8,3,2,6,4,1,1,4,8,5,7,3,6,2,1,6,2,5,4,3,7,3,5,6,8,4,2,7,1,6,3,9,5,4,2,8,1,7,2,4,3,1 -494,207.148.176.141,R_7OE4lG30tG0P0OL,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,1,3,2,1,3,2,1,5,5,3,6,5,2,2,2,2,2,1,2,2,1,3,0,1,1,1,2,2,3,1,1,2,1,1,2,4,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,-1,1,2,0,0,20 cents,100 minutes,24 days,4,8,Richard is shorter than Matt,44,Monday,A,A,A,B,A,Male,College Diploma/Certificate,72,67 - 73,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,6,3,4,1,1,2,3,7,5,4,6,6,2,8,7,4,5,3,1,1,3,8,7,4,6,2,5,1,4,6,3,2,5,7,4,3,2,8,7,6,5,1,2,4,8,6,7,5,3,1,9,3,2,4,1 -495,142.114.204.104,R_5pXYctZg259RwTG,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,2,2,2,2,2,2,3,1,2,1,2,1,2,2,2,2,2,2,2,3,2,2,2,1,1,3,2,1,2,3,1,1,2,1,3,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,0,1,-1,0,-1,1,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,F,E,D,C,F,Male,University - Undergraduate,29,25 - 31,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,2,4,5,1,1,2,6,7,3,5,4,2,5,8,7,3,4,6,1,1,3,8,6,4,2,5,7,1,6,2,3,5,4,7,7,6,5,8,3,2,4,1,4,8,7,6,5,9,3,1,2,4,3,2,1 -496,207.81.65.49,R_33msX6RzzA7lQ0V,self,03VFP,future,4,2,1,5,2,3,3,3,4,5,5,6,4,3,6,7,5,5,7,5,6,4,7,7,3,5,6,6,4,6,3,6,3,7,2,5,6,0,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,0,-2,1,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,University - Undergraduate,63,60 - 66,Canadian,Female,1,,,,1,,1,3,1,8,2,5,6,4,7,3,2,7,1,4,6,5,2,4,3,7,8,1,6,5,1,4,7,8,6,2,3,5,2,3,1,6,5,7,4,4,5,6,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,9,4,5,7,3,1,2,3,2,4,1 -497,99.170.154.63,R_5V8G0ha49XeQRgp,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,3,4,4,2,5,6,7,7,5,7,5,7,5,6,7,5,3,5,4,5,6,4,2,5,5,6,7,5,6,5,5,7,6,4,2,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-1,2,1,0,0,10 cents,100 minutes,24 days,3,10,It's impossible to tell,39,Tuesday,D,F,A,B,D,Male,College Diploma/Certificate,45,39 - 45,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,6,2,7,1,1,2,3,7,4,6,5,3,2,8,4,6,5,7,1,1,5,8,2,6,3,7,4,1,5,4,3,2,6,7,7,3,6,8,5,4,2,1,7,4,3,2,8,6,5,1,9,2,3,4,1 -498,24.143.87.138,R_6IRHlYTGaJaGvS4,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,2,1,3,1,4,2,2,4,1,1,1,3,5,2,3,1,1,1,1,2,5,1,3,1,1,2,4,2,2,2,3,2,2,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,-1,2,2,-1,1,10 cents,100 minutes,24 days,3,8,It's impossible to tell,39,Tuesday,D,D,B,C,E,Male,High School (or equivalent),51,46 - 52,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,7,4,5,6,1,1,5,6,7,2,3,4,4,7,8,6,3,2,5,1,1,6,8,2,7,3,4,5,1,3,4,5,2,6,7,3,2,7,8,5,4,6,1,9,4,8,5,7,6,3,1,2,2,4,3,1 -499,76.22.53.154,R_62VnbJU9Jar2rFF,self,01FPV,future,3,0,0,6,0,0,3,4,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,3,0,0,5,0,4,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,-1,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,D,Female,University - Undergraduate,45,39 - 45,American,Female,1,,1,,,,1,3,1,8,4,2,6,5,7,3,4,7,1,5,6,2,4,7,6,2,8,1,5,3,1,3,5,8,7,6,2,4,6,3,1,2,4,7,5,2,3,5,6,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,5,6,4,9,7,1,3,2,3,4,1 -500,98.41.84.136,R_7eWP3QGUW5IoqZW,self,02PVF,past,6,0,2,6,2,8,5,1,2,4,0,4,4,2,1,3,1,4,2,7,7,5,7,8,8,8,8,3,8,5,3,5,5,5,2,5,7,7,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,0,-2,1,1,-1,-1,20 cents,100 minutes,36 days,6,9,Zach is shorter than Matt,47,Tuesday,D,C,D,E,B,Male,College Diploma/Certificate,23,18 - 24,American,Male,1,,,1,,1,,6,1,8,7,5,3,4,2,5,2,7,1,3,4,6,7,6,2,4,8,1,5,3,1,6,7,8,4,3,2,5,5,6,1,2,4,7,3,5,2,4,6,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,9,3,2,7,1,8,4,3,2,1 -501,172.59.155.152,R_3IRV9r2HR3Skjh7,self,01FPV,future,0,6,0,0,1,1,2,1,4,1,2,5,3,5,8,8,2,7,3,6,7,2,3,8,3,7,3,8,1,4,6,6,5,2,6,4,3,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,1,0,0,-2,-2,5 cents,100 minutes,47 days,2,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,High School (or equivalent),22,18 - 24,American,Female,1,,1,,,,1,2,1,8,7,6,3,5,4,4,3,7,1,2,5,6,2,6,7,4,8,1,5,3,1,4,6,8,3,2,7,5,3,2,1,4,5,7,6,6,5,3,4,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,7,3,2,9,1,5,2,3,4,1 -502,68.194.90.25,R_5FW0TLFkz6hKIBa,self,03VFP,past,9,1,2,7,6,4,6,8,9,6,7,7,6,5,7,8,8,9,7,6,6,6,8,8,6,7,7,7,6,9,5,10,8,9,8,7,7,6,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,0,2,1,2,-1,15 cents,25 minutes,24 days,5,10,It's impossible to tell,57,Monday,D,A,E,B,D,Male,Professional Degree (ex. JD/MD),22,18 - 24,American,Male,1,,,,1,1,,4,1,8,6,3,7,5,2,3,6,7,1,4,2,5,4,5,6,2,8,1,3,7,1,4,2,8,6,3,5,7,3,6,1,2,5,7,4,7,2,4,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,4,5,6,7,8,3,1,2,3,4,2,1 -503,47.150.217.201,R_7QfZ4gUkrgl3QA2,self,02PVF,future,7,5,5,5,7,6,6,7,7,5,6,7,7,5,4,5,4,8,5,7,8,5,5,5,7,6,7,6,7,6,5,10,5,5,7,7,1,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,1,-1,-1,1,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Tuesday,A,E,B,B,C,Female,High School (or equivalent),21,18 - 24,American,Female,1,,,1,,,1,2,1,8,4,5,3,6,7,4,3,7,1,2,6,5,6,5,4,7,8,1,2,3,1,7,4,8,6,3,2,5,5,3,1,2,4,7,6,2,3,6,7,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,9,8,2,7,4,1,3,4,2,3,1 -504,97.235.112.106,R_3bSm234PQ5A6PQZ,self,02PVF,future,9,1,10,4,7,6,8,6,6,0,0,3,3,1,7,5,4,2,6,8,3,6,10,10,6,3,3,8,9,7,7,2,3,1,2,8,6,5,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,2,10 cents,5 minutes,24 days,5,11,Richard is as tall as Matt,47,Sunday,A,D,A,B,B,Female,High School (or equivalent),20,18 - 24,American,Female,1,,,1,,,1,5,1,8,7,4,2,3,6,3,4,7,1,2,5,6,2,7,4,6,8,1,3,5,1,5,2,8,3,7,4,6,3,2,1,4,5,7,6,6,3,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,7,4,3,2,8,1,5,2,4,3,1 -505,24.208.175.120,R_65FnbiDetioxUG6,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,4,4,2,4,2,5,3,1,2,2,1,2,2,1,5,6,3,3,4,4,1,6,4,3,2,2,3,4,2,1,3,2,2,1,2,3,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,0,-2,0,-1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,B,B,D,Male,High School (or equivalent),19,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,5,2,3,4,1,1,3,6,7,4,5,2,4,5,8,2,3,6,7,1,1,7,8,5,6,4,3,2,1,2,4,5,3,6,7,7,5,6,8,2,4,3,1,4,2,7,9,3,5,8,1,6,2,3,4,1 -506,107.128.1.97,R_3YbyCqCezhR7avL,self,02PVF,past,5,2,7,2,4,2,3,4,8,7,4,6,8,5,8,6,4,7,4,6,6,5,6,8,3,4,6,7,6,4,2,4,5,5,4,5,3,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,-2,-1,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,College Diploma/Certificate,22,18 - 24,American,Female,1,,,1,,1,,3,1,8,2,6,7,4,5,6,4,7,1,5,3,2,2,3,5,6,8,1,4,7,1,4,7,8,3,2,6,5,4,5,1,2,3,7,6,4,2,7,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,3,6,7,5,4,1,2,2,4,3,1 -507,71.77.227.133,R_384eXA30yoaSBax,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,10,0,2,7,7,6,7,5,7,6,4,7,7,3,2,3,0,8,7,4,8,0,2,5,6,5,7,7,4,4,6,7,7,3,3,3,1,6,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,0,-2,-2,-1,5 cents,5 minutes,47 days,5,10,It's impossible to tell,53,Sunday,D,B,D,B,D,Female,High School (or equivalent),24,18 - 24,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,4,5,7,2,1,1,3,2,7,6,5,4,7,2,8,6,5,3,4,1,1,2,8,6,5,3,7,4,1,3,5,2,6,4,7,3,5,4,8,2,6,7,1,8,6,9,7,4,3,5,1,2,3,2,4,1 -508,70.52.48.57,R_7k6d4hvNQj4iQVs,self,02PVF,past,10,10,2,8,2,6,2,6,7,10,0,4,10,10,4,8,3,8,6,10,2,3,6,4,6,1,1,2,0,3,6,5,5,8,8,2,2,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,1,-2,-2,2,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,F,D,C,A,Male,College Diploma/Certificate,23,18 - 24,Canadian,Male,1,,,1,,1,,2,1,8,4,7,5,3,6,6,5,7,1,2,4,3,5,6,7,2,8,1,3,4,1,2,3,8,4,7,5,6,2,3,1,4,6,7,5,7,4,6,5,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,3,5,9,6,1,2,2,3,4,1 -509,99.234.132.15,R_1BnOKkJOdoUhbOh,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",16,Like a great deal,5,3,4,3,7,6,4,4,6,8,7,7,3,4,3,3,7,3,5,5,2,3,2,2,3,3,2,3,4,4,3,4,4,3,4,3,2,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,D,E,B,B,D,Male,Professional Degree (ex. JD/MD),24,18 - 24,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,7,6,5,1,1,4,5,7,6,2,3,4,2,8,3,6,7,5,1,1,7,8,2,6,5,3,4,1,6,3,2,4,5,7,3,5,2,8,4,6,7,1,9,4,3,6,2,5,7,1,8,4,3,2,1 -510,76.23.57.88,R_7i56aBpzWrpm4XA,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,0,0,1,0,1,2,2,0,1,2,1,2,0,0,2,0,1,2,0,3,3,1,2,3,1,1,1,1,1,1,1,3,1,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,-1,1,0,-1,1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,B,B,B,Male,High School (or equivalent),23,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,4,2,5,1,1,2,5,7,4,6,3,4,6,8,5,7,2,3,1,1,7,8,6,3,5,2,4,1,4,3,5,2,6,7,6,2,3,8,7,5,4,1,7,3,6,2,4,8,9,1,5,3,2,4,1 -511,68.146.63.119,R_5GPopW1GUWqxqFT,self,03VFP,past,6,3,4,5,1,1,5,4,4,5,2,6,4,1,6,5,1,2,2,4,1,1,3,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-2,1,-1,-2,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,High School (or equivalent),22,18 - 24,Canadian,Female,1,,,,1,1,,3,1,8,7,5,4,2,6,4,6,7,1,2,5,3,3,6,7,4,8,1,5,2,1,5,4,8,6,2,7,3,3,2,1,6,4,7,5,7,5,4,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,4,2,5,6,9,1,8,2,4,3,1 -512,184.163.42.151,R_6HHLGnX0FHnCggg,self,03VFP,past,8,3,4,3,6,7,7,8,7,2,3,5,3,3,7,5,8,5,8,4,4,7,4,4,7,7,8,6,4,7,8,3,4,7,4,4,8,4,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,1,1,-1,-2,1,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,B,B,B,B,Prefer not to say,Trade School,21,18 - 24,Canadian,Prefer not to say,1,,,,1,1,,4,1,8,7,5,3,2,6,4,5,7,1,6,3,2,7,4,5,6,8,1,3,2,1,5,4,8,2,7,3,6,3,6,1,2,5,7,4,7,3,4,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,3,5,4,9,1,7,3,4,2,1 -513,72.28.228.98,R_3xGSbiotlAQC4BX,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,6,6,7,4,5,7,5,8,6,6,5,6,5,6,5,4,7,7,5,5,6,6,7,6,9,5,8,5,9,5,7,8,7,9,7,7,5,5,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-2,1,2,0,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Saturday,D,E,E,A,B,Female,High School (or equivalent),23,18 - 24,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,2,3,1,1,3,6,7,4,5,2,6,5,8,7,3,2,4,1,1,4,8,3,2,7,5,6,1,2,6,5,4,3,7,5,7,3,8,4,6,2,1,2,8,4,5,7,9,3,1,6,2,3,4,1 -514,64.58.206.255,R_1rTUUHS801BV2kp,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,5,6,6,6,6,7,7,6,7,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,1,1,0,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,C,C,B,Female,High School (or equivalent),20,18 - 24,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,7,3,4,1,1,2,5,7,3,4,6,5,4,8,6,2,3,7,1,1,7,8,2,3,5,4,6,1,2,6,3,5,4,7,7,5,3,8,6,4,2,1,3,7,8,6,2,5,4,1,9,2,4,3,1 -515,98.16.11.118,R_73unDbcTsqFJ18R,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,6,5,5,7,3,6,7,3,6,6,3,3,5,6,5,7,3,6,7,7,5,3,3,8,1,6,3,3,2,3,5,4,4,2,2,3,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,0,0,0,10 cents,100 minutes,47 days,5,7,Richard is taller than Matt,47,Sunday,D,C,C,C,C,Male,High School (or equivalent),21,18 - 24,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,2,3,7,6,1,1,2,3,7,4,6,5,6,4,8,2,3,7,5,1,1,4,8,2,6,5,3,7,1,5,2,6,4,3,7,3,2,5,8,7,4,6,1,7,2,4,9,6,8,5,1,3,2,3,4,1 -516,207.195.120.248,R_74eo3DDGJqiwaVW,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,4,3,3,1,7,3,1,1,5,3,4,10,2,3,4,8,7,8,8,3,4,5,2,2,6,2,4,2,3,6,2,3,3,2,3,1,2,6,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,-2,2,-1,-2,1,10 cents,100 minutes,24 days,5,11,It's impossible to tell,57,Monday,D,B,A,F,B,Female,High School (or equivalent),21,18 - 24,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,2,6,5,3,1,1,5,4,7,3,2,6,6,7,8,4,5,3,2,1,1,5,8,7,3,4,2,6,1,2,3,5,6,4,7,4,3,5,8,2,7,6,1,6,4,7,9,2,5,3,1,8,4,2,3,1 -517,66.244.237.35,R_5kLZMR15dZhxr8v,self,02PVF,past,6,6,7,6,5,8,8,7,6,6,7,7,7,6,6,4,7,4,6,6,7,7,6,7,6,6,7,6,6,7,7,5,8,7,7,6,6,5,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,1,0,1,1,1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,F,B,B,B,B,Male,High School (or equivalent),22,18 - 24,Canadian,Male,1,,,1,,1,,6,1,8,5,2,7,3,4,2,4,7,1,3,6,5,3,6,5,4,8,1,2,7,1,5,7,8,2,4,6,3,6,4,1,3,5,7,2,2,5,6,4,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,9,8,5,4,7,1,6,4,2,3,1 -518,65.94.203.5,R_5jJkwF9IX92fxc8,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,2,3,6,2,4,1,4,5,3,1,2,2,3,5,2,3,2,1,2,3,3,3,7,6,5,2,2,7,1,2,1,2,2,6,3,1,2,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,-1,0,-1,-1,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,F,C,C,Female,University - Graduate (Masters),23,18 - 24,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,6,2,7,1,1,5,6,7,4,2,3,7,2,8,6,5,3,4,1,1,7,8,2,3,5,4,6,1,3,4,5,6,2,7,7,5,6,8,4,2,3,1,7,2,9,3,5,8,4,1,6,2,4,3,1 -519,198.166.98.254,R_5bD7Asfr8Y3iTxn,self,03VFP,past,4,8,9,6,3,8,5,5,5,3,2,7,4,1,4,2,6,1,7,3,5,8,8,4,4,5,5,4,7,7,3,3,4,6,6,2,3,1,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,-2,1,-1,-1,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,D,B,D,Female,High School (or equivalent),19,18 - 24,Canadian,Female,1,,,,1,1,,2,1,8,6,3,4,7,5,5,6,7,1,3,2,4,6,3,4,5,8,1,7,2,1,5,2,8,4,6,7,3,3,6,1,2,4,7,5,6,5,3,4,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,4,7,8,3,9,1,2,3,4,2,1 -520,134.117.249.49,R_6dLLEenjojAooZU,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,3,5,6,4,4,4,4,6,3,3,5,6,4,2,7,3,4,3,7,9,4,3,8,2,4,7,5,7,6,5,5,3,4,7,7,8,5,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,-2,-1,-1,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,B,A,C,Male,University - Undergraduate,35,32 - 38,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,7,6,3,5,1,1,2,6,7,4,5,3,2,6,8,4,3,5,7,1,1,4,8,5,3,6,2,7,1,5,2,6,3,4,7,7,4,6,8,5,2,3,1,5,9,2,6,7,3,8,1,4,2,3,4,1 -521,96.21.170.141,R_1ls22RL71rJCWIr,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,7,8,6,7,10,8,5,6,7,5,4,7,7,6,5,6,6,6,5,5,10,10,5,10,10,3,3,5,7,6,5,6,6,4,4,6,3,7,1,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,0,1,1,0,-1,10 cents,25 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,B,C,D,C,D,Male,High School (or equivalent),24,18 - 24,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,2,6,4,1,1,4,3,7,5,2,6,4,3,8,6,2,5,7,1,1,6,8,4,2,5,3,7,1,3,2,4,5,6,7,4,5,7,8,3,6,2,1,4,9,7,3,8,5,6,1,2,2,3,4,1 -522,198.52.132.28,R_1NIgjJZ3DsPMFmq,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,9,2,6,3,7,8,2,6,5,2,3,7,8,3,7,4,8,2,5,5,8,7,6,9,4,4,8,1,2,4,5,8,3,6,6,6,5,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,-1,0,1,2,-1,1,1,10 cents,100 minutes,24 days,4,11,It's impossible to tell,57,Sunday,A,A,A,A,C,Male,High School (or equivalent),23,18 - 24,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,4,3,6,1,1,3,2,7,6,4,5,3,5,8,4,6,7,2,1,1,7,8,6,5,3,2,4,1,2,5,3,6,4,7,7,2,6,8,5,3,4,1,3,7,2,9,4,5,8,1,6,2,4,3,1 +pID,IPAddress,ResponseId,perspective,group,temporalDO,selfPREF_p5_hobbies,selfPREF_p5_music,selfPREF_p5_dress,selfPREF_p5_exer,selfPREF_p5_food,selfPREF_p5_friends,selfPREF_p5_dgen,selfPERS_p5_open,selfPERS_p5_goal,selfPERS_p5_social,selfPERS_p5_agree,selfPERS_p5_stress,selfPERS_p5_dgen,selfVAL_p5_trad,selfVAL_p5_autonomy,selfVAL_p5_personal,selfVAL_p5_justice,selfVAL_p5_close,selfVAL_p5_connect,selfVAL_p5_dgen,selfPREF_f5_hobbies,selfPREF_f5_music,selfPREF_f5_dress,selfPREF_f5_exer,selfPREF_f5_food,selfPREF_f5_friends,selfPREF_f5_dgen,selfPERS_f5_open,selfPERS_f5_goal,selfPERS_f5_social,selfPERS_f5_agree,selfPERS_f5_stress,selfPERS_f5_dgen,selfVAL_f5_trad,selfVAL_f5_autonomy,selfVAL_f5_personal,selfVAL_f5_justice,selfVAL_f5_close,selfVAL_f5_connect,selfVAL_f5_dgen,other_know,other_length2,other_like2,otherPREF_p5_hobbies,otherPREF_p5_music,otherPREF_p5_dress,otherPREF_p5_exer,otherPREF_p5_food,otherPREF_p5_friends,otherPREF_p5_dgen,otherPERS_p5_open,otherPERS_p5_goal,otherPERS_p5_social,otherPERS_p5_agree,otherPERS_p5_stress,otherPERS_p5_dgen,otherVAL_p5_trad,otherVAL_p5_autonomy,otherVAL_p5_personal,otherVAL_p5_justice,otherVAL_p5_close,otherVAL_p5_connect,otherVAL_p5_dgen,otherPREF_f5_hobbies,otherPREF_f5_music,otherPREF_f5_dress,otherPREF_f5_exer,otherPREF_f5_food,otherPREF_f5_friends,otherPREF_f5_dgen,otherPERS_f5_open,otherPERS_f5_goal,otherPERS_f5_social,otherPERS_f5_agree,otherPERS_f5_stress,otherPERS_f5_dgen,otherVAL_f5_trad,otherVAL_f5_autonomy,otherVAL_f5_personal,otherVAL_f5_justice,otherVAL_f5_close,otherVAL_f5_connect,otherVAL_f5_dgen,other_length,other_like,past_pref_hobbies,past_pref_music,past_pref_dress,past_pref_exer,past_pref_food,past_pref_friends,past_pref_DGEN,past_pref_MEAN,fut_pref_hobbies,fut_pref_music,fut_pref_dress,fut_pref_exer,fut_pref_food,fut_pref_friends,fut_pref_DGEN,fut_pref_MEAN,past_pers_open,past_pers_goal,past_pers_social,past_pers_agree,past_pers_stress,past_pers_DGEN,past_pers_MEAN,fut_pers_open,fut_pers_goal,fut_pers_social,fut_pers_agree,fut_pers_stress,fut_pers_DGEN,fut_pers_MEAN,past_val_trad,past_val_autonomy,past_val_personal,past_val_justice,past_val_close,past_val_connect,past_val_DGEN,past_val_MEAN,fut_val_trad,fut_val_autonomy,fut_val_personal,fut_val_justice,fut_val_close,fut_val_connect,fut_val_DGEN,fut_val_MEAN,ehi_pref_hobbies,ehi_pref_music,ehi_pref_dress,ehi_pref_exer,ehi_pref_food,ehi_pref_friends,ehi_pref_DGEN,ehi_pref_MEAN,ehi_pers_open,ehi_pers_goal,ehi_pers_social,ehi_pers_agree,ehi_pers_stress,ehi_pers_DGEN,ehi_pers_MEAN,ehi_val_trad,ehi_val_autonomy,ehi_val_personal,ehi_val_justice,ehi_val_close,ehi_val_connect,ehi_val_DGEN,ehi_val_MEAN,ehiDS_mean,ehiDGEN_mean,aot_total,crt_correct,crt_int,icar_verbal,icar_matrix,icar_total,aot01,aot02,aot03,aot04_r,aot05_r,aot06_r,aot07_r,aot08,crt01,crt02,crt03,verbal01,verbal02,verbal03,verbal04,verbal05,matrix01,matrix02,matrix03,matrix04,matrix05,demo_sex,sex,demo_edu,education,demo_age,taq_age,citizenship,taq_sex,FL_259_DO_FL_260,FL_259_DO_FL_261,FL_262_DO_FL_263,FL_262_DO_FL_264,FL_262_DO_FL_265,FL_266_DO_FL_267,FL_266_DO_FL_268,SELF[F]Preferences-PAST_DO_selfPREF_p5_friends,SELF[F]Preferences-PAST_DO_pref_text,SELF[F]Preferences-PAST_DO_selfPREF_p5_dgen,SELF[F]Preferences-PAST_DO_selfPREF_p5_music,SELF[F]Preferences-PAST_DO_selfPREF_p5_dress,SELF[F]Preferences-PAST_DO_selfPREF_p5_exer,SELF[F]Preferences-PAST_DO_selfPREF_p5_food,SELF[F]Preferences-PAST_DO_selfPREF_p5_hobbies,SELF[P]Personality-PAST_DO_selfPERS_p5_agree,SELF[P]Personality-PAST_DO_selfPERS_p5_stress,SELF[P]Personality-PAST_DO_selfPERS_p5_dgen,SELF[P]Personality-PAST_DO_pers_text,SELF[P]Personality-PAST_DO_selfPERS_p5_open,SELF[P]Personality-PAST_DO_selfPERS_p5_goal,SELF[P]Personality-PAST_DO_selfPERS_p5_social,SELF[V]Values-PAST_DO_selfVAL_p5_connect,SELF[V]Values-PAST_DO_selfVAL_p5_personal,SELF[V]Values-PAST_DO_selfVAL_p5_justice,SELF[V]Values-PAST_DO_selfVAL_p5_close,SELF[V]Values-PAST_DO_selfVAL_p5_dgen,SELF[V]Values-PAST_DO_values_text,SELF[V]Values-PAST_DO_selfVAL_p5_trad,SELF[V]Values-PAST_DO_selfVAL_p5_autonomy,SELF[F]Preferences-FUTURE_DO_pref_text,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_hobbies,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_friends,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_dgen,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_music,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_dress,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_exer,SELF[F]Preferences-FUTURE_DO_selfPREF_f5_food,SELF[P]Personality-FUTURE_DO_selfPERS_f5_goal,SELF[P]Personality-FUTURE_DO_selfPERS_f5_social,SELF[P]Personality-FUTURE_DO_pers_text,SELF[P]Personality-FUTURE_DO_selfPERS_f5_open,SELF[P]Personality-FUTURE_DO_selfPERS_f5_stress,SELF[P]Personality-FUTURE_DO_selfPERS_f5_dgen,SELF[P]Personality-FUTURE_DO_selfPERS_f5_agree,SELF[V]Values-FUTURE_DO_selfVAL_f5_connect,SELF[V]Values-FUTURE_DO_selfVAL_f5_autonomy,SELF[V]Values-FUTURE_DO_selfVAL_f5_personal,SELF[V]Values-FUTURE_DO_selfVAL_f5_justice,SELF[V]Values-FUTURE_DO_selfVAL_f5_close,SELF[V]Values-FUTURE_DO_values_text,SELF[V]Values-FUTURE_DO_selfVAL_f5_trad,SELF[V]Values-FUTURE_DO_selfVAL_f5_dgen,OTHER[F]Preferences-PAST_DO_otherPREF_p5_food,OTHER[F]Preferences-PAST_DO_otherPREF_p5_friends,OTHER[F]Preferences-PAST_DO_otherPREF_p5_dgen,OTHER[F]Preferences-PAST_DO_otherPREF_p5_hobbies,OTHER[F]Preferences-PAST_DO_otherPREF_p5_music,OTHER[F]Preferences-PAST_DO_otherPREF_p5_dress,OTHER[F]Preferences-PAST_DO_otherPREF_p5_exer,OTHER[F]Preferences-PAST_DO_pref_text,OTHER[P]Personality-PAST_DO_pers_text,OTHER[P]Personality-PAST_DO_otherPERS_p5_agree,OTHER[P]Personality-PAST_DO_otherPERS_p5_stress,OTHER[P]Personality-PAST_DO_otherPERS_p5_dgen,OTHER[P]Personality-PAST_DO_otherPERS_p5_open,OTHER[P]Personality-PAST_DO_otherPERS_p5_goal,OTHER[P]Personality-PAST_DO_otherPERS_p5_social,OTHER[V]Values-PAST_DO_otherVAL_p5_close,OTHER[V]Values-PAST_DO_otherVAL_p5_connect,OTHER[V]Values-PAST_DO_otherVAL_p5_dgen,OTHER[V]Values-PAST_DO_otherVAL_p5_trad,OTHER[V]Values-PAST_DO_otherVAL_p5_autonomy,OTHER[V]Values-PAST_DO_otherVAL_p5_personal,OTHER[V]Values-PAST_DO_otherVAL_p5_justice,OTHER[V]Values-PAST_DO_val_text,OTHER[F]Preferences-FUTURE_DO_pref_text,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_friends,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_dgen,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_food,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_hobbies,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_music,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_dress,OTHER[F]Preferences-FUTURE_DO_otherPREF_f5_exer,OTHER[P]Personality-FUTURE_DO_pers_text,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_open,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_goal,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_social,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_agree,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_stress,OTHER[P]Personality-FUTURE_DO_otherPERS_f5_dgen,OTHER[V]Values-FUTURE_DO_otherVAL_f5_justice,OTHER[V]Values-FUTURE_DO_otherVAL_f5_close,OTHER[V]Values-FUTURE_DO_otherVAL_f5_connect,OTHER[V]Values-FUTURE_DO_otherVAL_f5_dgen,OTHER[V]Values-FUTURE_DO_otherVAL_f5_trad,OTHER[V]Values-FUTURE_DO_otherVAL_f5_autonomy,OTHER[V]Values-FUTURE_DO_otherVAL_f5_personal,OTHER[V]Values-FUTURE_DO_val_text,ActivelyOpen-MindedThinking_DO_aot07_r,ActivelyOpen-MindedThinking_DO_aot08,ActivelyOpen-MindedThinking_DO_aot01,ActivelyOpen-MindedThinking_DO_aot02,ActivelyOpen-MindedThinking_DO_aot03,ActivelyOpen-MindedThinking_DO_aot04_r,ActivelyOpen-MindedThinking_DO_aot05_r,ActivelyOpen-MindedThinking_DO_Q494,ActivelyOpen-MindedThinking_DO_aot06_r,CognitiveReflectionTest_DO_crt01,CognitiveReflectionTest_DO_crt02,CognitiveReflectionTest_DO_crt03,CognitiveReflectionTest_DO_Q495,aot04_r_reversed,aot05_r_reversed,aot06_r_reversed,aot07_r_reversed +1,68.83.234.19,R_3VCirgCJI8v1gRJ,self,03VFP,past,8,10,10,8,9,6,7,8,9,5,8,10,9,10,8,10,6,9,8,5,6,9,8,8,8,8,7,8,10,8,9,5,9,8,8,9,9,7,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,10,10,8,9,6,7,8.5,6,9,8,8,8,8,7,7.83333333333333,8,9,5,8,10,9,8,8,10,8,9,5,9,8,10,8,10,6,9,8,5,8.5,8,8,9,9,7,10,10,8.5,2,1,2,0,1,-2,0,0.666666666666667,0,-1,-3,-1,5,0,0,2,0,1,-3,2,-2,-5,0,0.222222222222222,-1.66666666666667,0,0,3,0,0.2,0.1,2,1,1,1,1,2,1,1,10 cents,100 minutes,24 days,2,9,Richard is shorter than Matt,44,Monday,C,D,D,E,D,Female,1,High School (or equivalent),HS_TS,44,39 - 45,American,Female,1,,,,1,1,,6,1,8,4,5,3,2,7,2,5,7,1,6,4,3,3,2,5,4,8,1,7,6,1,4,7,8,6,5,2,3,5,2,1,6,3,7,4,6,7,2,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,7,2,5,4,3,1,8,2,4,3,1,-1,-1,-2,-1 +2,76.36.167.137,R_3fF5ZTyy0VeZKsV,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,9,3,3,9,2,10,10,4,3,7,1,8,5,5,7,10,7,10,10,8,10,4,5,6,7,5,4,3,4,5,9,6,7,8,4,10,3,10,6,5,20+,2,9,3,3,9,2,10,10,6,10,4,5,6,7,5,4,6.16666666666667,4,3,7,1,8,5,4.6,3,4,5,9,6,7,5.4,5,7,10,7,10,10,8,8.16666666666667,8,4,10,3,10,6,5,6.83333333333333,-1,-1,-2,3,-5,5,6,-0.166666666666667,1,-1,2,-8,2,-2,-0.8,-3,3,0,4,0,4,3,1.33333333333333,0.122222222222222,2.33333333333333,0,0,3,0.4,0.8,0.6,0,0,0,-1,2,1,-2,0,10 cents,100 minutes,24 days,3,8,Richard is as tall as Matt,47,Tuesday,D,E,B,B,F,Female,1,High School (or equivalent),HS_TS,39,39 - 45,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,4,7,5,1,1,4,5,7,6,3,2,4,2,8,3,5,6,7,1,1,2,8,3,4,7,5,6,1,4,6,3,5,2,7,3,7,4,8,5,2,6,1,3,7,4,2,5,8,6,1,9,4,2,3,1,1,-2,-1,2 +3,24.115.235.11,R_7isKCViDsKQlEKI,self,02PVF,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.375,0,2,0.6,0.2,0.4,2,2,2,-2,0,-2,0,1,10 cents,100 minutes,15 days,5,7,It's impossible to tell,47,Monday,E,E,E,E,E,Female,1,High School (or equivalent),HS_TS,54,53 - 59,American,Female,1,,,1,,1,,2,1,8,5,6,4,7,3,4,2,7,1,3,5,6,2,5,4,7,8,1,3,6,1,6,3,8,5,7,4,2,6,3,1,4,5,7,2,4,7,5,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,4,2,9,1,7,2,3,4,1,2,0,2,0 +4,172.56.33.104,R_3mspEm6JKWUXXKp,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,10,10,10,10,10,10,10,5,6,5,5,10,10,9,8,7,8,10,7,10,10,5,5,5,6,5,5,6,10,6,7,8,10,5,6,6,8,5,5,7,10-14,2,10,10,10,10,10,10,10,10,10,5,5,5,6,5,5,6,5,6,5,5,10,10,6.2,6,10,6,7,8,10,7.4,9,8,7,8,10,7,10,8.16666666666667,5,6,6,8,5,5,7,5.83333333333333,0,5,5,5,4,5,5,4,-1,-4,-1,-2,2,0,-1.2,4,2,1,0,5,2,3,2.33333333333333,1.71111111111111,2.66666666666667,0.5,0,2,0.2,0.4,0.3,0,0,0,-1,-1,-1,-1,0,20 cents,100 minutes,24 days,6,9,Richard is as tall as Matt,47,Friday,D,D,B,F,F,Female,1,High School (or equivalent),HS_TS,56,53 - 59,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,7,4,5,3,1,1,5,3,7,4,6,2,5,2,8,7,4,6,3,1,1,5,8,4,6,7,2,3,1,3,5,2,6,4,7,4,3,7,8,2,6,5,1,4,6,2,5,3,7,8,1,9,3,2,4,1,1,1,1,1 +5,24.11.126.124,R_1uVtGJuKgZgiKkN,self,02PVF,past,6,5,6,8,6,7,6,7,6,9,5,6,7,6,7,8,7,5,8,3,4,4,4,4,3,3,4,4,4,5,4,4,5,2,4,5,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,8,6,7,6,6.33333333333333,4,4,4,4,3,3,4,3.66666666666667,7,6,9,5,6,7,6.6,4,4,5,4,4,5,4.2,6,7,8,7,5,8,3,6.83333333333333,2,4,5,4,3,3,4,3.5,2,1,2,4,3,4,2,2.66666666666667,3,2,4,1,2,2,2.4,4,3,3,3,2,5,-1,3.33333333333333,2.8,1,0.5,0,3,0.4,0.2,0.3,1,1,1,-1,1,0,0,1,10 cents,100 minutes,24 days,5,10,Richard is shorter than Matt,47,Saturday,D,D,C,C,B,Female,1,High School (or equivalent),HS_TS,46,46 - 52,American,Female,1,,,1,,1,,7,1,8,2,6,5,3,4,2,5,7,1,4,3,6,6,3,4,5,8,1,7,2,1,7,3,8,6,4,5,2,2,6,1,5,3,7,4,5,6,4,3,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,6,4,3,8,1,9,4,2,3,1,1,-1,0,0 +6,174.243.208.59,R_7kYVHH87VjQDJ37,self,01FPV,future,7,1,3,10,1,7,8,1,10,4,4,1,1,10,9,9,1,8,6,6,9,1,4,6,6,8,7,1,6,0,0,1,4,5,8,10,1,6,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1,3,10,1,7,8,4.83333333333333,9,1,4,6,6,8,7,5.66666666666667,1,10,4,4,1,1,4,1,6,0,0,1,4,1.6,10,9,9,1,8,6,6,7.16666666666667,5,8,10,1,6,4,5,5.66666666666667,-2,0,-1,4,-5,-1,1,-0.833333333333333,0,4,4,4,0,-3,2.4,5,1,-1,0,2,2,1,1.5,1.02222222222222,-0.333333333333333,1.125,0,3,0.4,0.4,0.4,1,2,1,-2,0,-1,-2,0,10 cents,100 minutes,24 days,6,11,It's impossible to tell,35,Sunday,B,C,A,B,D,Female,1,University - Undergraduate,C_Ug,31,25 - 31,American,Female,1,,1,,,,1,5,1,8,3,4,7,6,2,3,6,7,1,4,2,5,3,4,6,7,8,1,5,2,1,3,7,8,6,5,4,2,4,3,1,2,5,7,6,3,7,6,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,4,2,6,7,3,1,5,2,4,3,1,2,0,1,2 +7,96.50.224.131,R_5pcojF1YyKdFg6i,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like a great deal,6,6,9,2,1,8,5,7,4,1,1,5,9,1,2,3,1,1,4,1,7,2,1,2,2,2,2,4,2,1,2,2,3,3,1,1,1,2,2,2,15-19,2,6,6,9,2,1,8,5,5.33333333333333,7,2,1,2,2,2,2,2.66666666666667,7,4,1,1,5,9,3.6,4,2,1,2,2,3,2.2,1,2,3,1,1,4,1,2,3,1,1,1,2,2,2,1.66666666666667,-1,4,8,0,-1,6,3,2.66666666666667,3,2,0,-1,3,6,1.4,-2,1,2,0,-1,2,-1,0.333333333333333,1.46666666666667,2.66666666666667,2,1,2,0.8,0.2,0.5,2,2,2,-2,-2,-2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Wednesday,B,F,A,B,B,Female,1,University - Undergraduate,C_Ug,70,67 - 73,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,2,6,5,1,1,2,5,7,3,6,4,2,3,8,7,6,4,5,1,1,6,8,3,5,2,4,7,1,6,4,2,5,3,7,4,3,2,8,6,7,5,1,3,6,8,2,5,4,7,1,9,4,2,3,1,2,2,2,2 +8,172.59.130.23,R_1owighir7JWSFeA,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,4,3,5,6,2,6,5,3,5,5,3,4,5,2,3,6,5,6,6,4,5,3,3,5,3,3,4,5,4,4,3,6,5,4,5,6,4,5,4,5,10-14,2,4,3,5,6,2,6,5,4.33333333333333,5,3,3,5,3,3,4,3.66666666666667,3,5,5,3,4,5,4,5,4,4,3,6,5,4.4,2,3,6,5,6,6,4,4.66666666666667,4,5,6,4,5,4,5,4.66666666666667,-1,0,2,1,-1,3,1,0.666666666666667,-2,1,1,0,-2,0,-0.4,-2,-2,0,1,1,2,-1,0,0.0888888888888889,0,0.875,0,3,0.6,0.2,0.4,1,2,1,-1,0,-1,-1,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,44,Sunday,C,F,E,B,C,Female,1,High School (or equivalent),HS_TS,37,32 - 38,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,5,6,7,3,1,1,6,3,7,4,5,2,6,2,8,7,5,3,4,1,1,4,8,3,7,6,5,2,1,3,2,6,4,5,7,4,3,5,8,2,7,6,1,8,7,5,2,9,6,3,1,4,4,3,2,1,1,0,1,1 +9,8.8.218.55,R_1uQFSQaH9JruGI8,self,02PVF,past,1,1,1,6,1,1,2,1,1,1,1,7,2,1,1,8,1,1,1,2,1,1,3,7,1,2,3,2,1,2,2,1,4,2,2,8,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,6,1,1,2,1.83333333333333,1,1,3,7,1,2,3,2.5,1,1,1,1,7,2,2.2,2,1,2,2,1,4,1.6,1,1,8,1,1,1,2,2.16666666666667,2,2,8,2,3,2,2,3.16666666666667,0,0,-2,-1,0,-1,-1,-0.666666666666667,-1,0,-1,-1,6,-2,0.6,-1,-1,0,-1,-2,-1,0,-1,-0.355555555555556,-1,0.625,0,3,0.2,0.4,0.3,0,2,0,-2,1,0,-2,0,10 cents,100 minutes,24 days,3,7,It's impossible to tell,57,Tuesday,D,D,A,D,D,Female,1,Trade School,HS_TS,68,67 - 73,American,Female,1,,,1,,1,,2,1,8,6,4,5,7,3,2,4,7,1,3,6,5,5,3,6,2,8,1,7,4,1,7,3,8,5,6,2,4,5,3,1,2,4,7,6,4,3,7,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,7,8,5,6,4,1,3,2,3,4,1,2,-1,0,2 +10,71.72.86.140,R_3Kzdff3EmGP735n,self,02PVF,future,5,3,2,9,5,7,1,3,5,6,1,6,2,1,6,2,10,10,7,1,8,1,1,9,6,2,2,10,6,5,5,8,6,1,1,1,1,2,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,2,9,5,7,1,5.16666666666667,8,1,1,9,6,2,2,4.5,3,5,6,1,6,2,4.2,10,6,5,5,8,6,6.8,1,6,2,10,10,7,1,6,1,1,1,1,2,6,1,2,-3,2,1,0,-1,5,-1,0.666666666666667,-7,-1,1,-4,-2,-4,-2.6,0,5,1,9,8,1,0,4,0.688888888888889,-1.66666666666667,0.25,1,1,0.6,0.6,0.6,1,0,0,-1,0,0,1,1,10 cents,5 minutes,15 days,5,8,Richard is shorter than Matt,47,Tuesday,D,E,E,F,D,Male,0,Trade School,HS_TS,71,67 - 73,American,Male,1,,,1,,,1,4,1,8,3,5,2,6,7,4,6,7,1,5,2,3,5,3,2,6,8,1,7,4,1,4,3,8,6,7,5,2,4,5,1,6,2,7,3,2,3,5,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,5,3,4,2,6,1,7,4,3,2,1,1,0,0,-1 +11,99.253.170.26,R_62VOh0w1n0XCqri,self,03VFP,future,9,1,5,10,4,1,9,3,9,9,4,9,7,8,2,8,1,7,8,2,2,1,5,10,3,8,8,2,2,6,3,6,8,9,9,9,7,5,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,1,5,10,4,1,9,5,2,1,5,10,3,8,8,4.83333333333333,3,9,9,4,9,7,6.8,2,2,6,3,6,8,3.8,8,2,8,1,7,8,2,5.66666666666667,9,9,9,7,5,6,3,7.5,7,0,0,0,1,-7,1,0.166666666666667,1,7,3,1,3,-1,3,-1,-7,-1,-6,2,2,-1,-1.83333333333333,0.444444444444444,-0.333333333333333,0.375,0,2,0.4,0,0.2,1,1,0,-1,1,0,0,1,10 cents,25 minutes,24 days,5,10,It's impossible to tell,57,Friday,A,F,C,F,A,Female,1,College Diploma/Certificate,C_Ug,66,60 - 66,Canadian,Female,1,,,,1,,1,3,1,8,2,5,4,7,6,2,6,7,1,5,4,3,3,4,2,7,8,1,5,6,1,3,2,8,7,4,5,6,6,2,1,4,5,7,3,6,7,5,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,2,5,9,7,6,1,3,3,4,2,1,1,-1,0,0 +12,184.65.123.102,R_3q9OHXdB2Zwvzjd,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,4,3,5,3,2,6,3,5,5,5,5,2,2,3,3,3,3,5,2,4,5,5,6,6,5,5,3,3,5,3,4,3,3,6,5,5,4,2,5,5,20+,1,4,3,5,3,2,6,3,3.83333333333333,5,5,6,6,5,5,3,5.33333333333333,5,5,5,5,2,2,4.4,3,5,3,4,3,3,3.6,3,3,3,3,5,2,4,3.16666666666667,6,5,5,4,2,5,5,4.5,-1,-2,-1,-3,-3,1,0,-1.5,2,0,2,1,-1,-1,0.8,-3,-2,-2,-1,3,-3,-1,-1.33333333333333,-0.677777777777778,-0.666666666666667,0.875,0,3,1,1,1,0,2,1,-1,0,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,University - Graduate (Masters),grad_prof,40,39 - 45,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,6,5,7,1,1,3,6,7,5,2,4,7,2,8,3,5,6,4,1,1,4,8,6,2,5,7,3,1,2,5,4,6,3,7,6,5,7,8,3,4,2,1,4,8,5,2,9,6,3,1,7,4,2,3,1,1,0,1,2 +13,70.48.115.69,R_5Se0YtQoxtOlNfj,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,3,2,7,1,1,0,7,1,3,1,1,3,1,4,0,5,2,1,0,1,3,1,1,1,0,1,1,2,4,2,1,4,0,5,3,0,0,20+,2,1,1,1,3,2,7,1,2.5,1,0,1,3,1,1,1,1.16666666666667,1,0,7,1,3,1,2.4,0,1,1,2,4,2,1.6,1,3,1,4,0,5,2,2.33333333333333,1,4,0,5,3,0,0,2.16666666666667,0,1,0,0,1,6,0,1.33333333333333,1,-1,6,-1,-1,-1,0.8,0,-1,1,-1,-3,5,2,0.166666666666667,0.766666666666667,0.333333333333333,0.75,2,1,1,0.8,0.9,0,1,1,-1,-1,-1,-1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,D,Male,0,University - Undergraduate,C_Ug,68,67 - 73,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,3,5,7,2,1,1,2,5,7,6,3,4,3,5,8,2,7,4,6,1,1,5,8,4,2,7,6,3,1,6,3,4,2,5,7,5,6,4,8,3,7,2,1,7,8,4,5,2,3,6,1,9,2,3,4,1,1,1,1,1 +14,67.164.57.2,R_32PWbFhczPJMtVJ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,1,4,4,0,4,2,0,7,2,0,5,2,1,6,6,1,0,6,2,5,1,3,4,0,0,4,2,5,4,4,6,5,3,5,7,3,1,5,4,20+,2,5,1,4,4,0,4,2,3,5,1,3,4,0,0,4,2.16666666666667,0,7,2,0,5,2,2.8,2,5,4,4,6,5,4.2,1,6,6,1,0,6,2,3.33333333333333,3,5,7,3,1,5,4,4,0,0,1,0,0,4,-2,0.833333333333333,-2,2,-2,-4,-1,-3,-1.4,-2,1,-1,-2,-1,1,-2,-0.666666666666667,-0.411111111111111,-2.33333333333333,1,3,0,1,0.8,0.9,1,2,2,-2,2,0,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Female,1,University - Undergraduate,C_Ug,55,53 - 59,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,4,5,6,2,1,1,3,2,7,6,5,4,5,7,8,6,3,4,2,1,1,3,8,4,6,5,2,7,1,2,6,5,4,3,7,4,6,5,8,2,3,7,1,3,6,8,4,5,7,9,1,2,3,2,4,1,2,-2,0,2 +15,143.105.203.124,R_7ffgbuVEJwOpSKn,self,02PVF,past,10,0,0,5,0,9,3,0,0,10,0,0,2,0,0,0,0,0,10,2,5,0,0,3,0,4,2,0,0,5,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,0,0,5,0,9,3,4,5,0,0,3,0,4,2,2,0,0,10,0,0,2,2,0,0,5,0,0,1,1,0,0,0,0,0,10,2,1.66666666666667,0,0,0,0,0,0,0,0,5,0,0,2,0,5,1,2,0,0,5,0,0,1,1,0,0,0,0,0,10,2,1.66666666666667,1.55555555555556,1.33333333333333,0.25,0,3,0.6,0.6,0.6,2,2,0,-2,0,0,2,-2,10 cents,100 minutes,24 days,2,8,It's impossible to tell,44,Sunday,D,E,A,B,F,Female,1,College Diploma/Certificate,C_Ug,55,53 - 59,Canadian,Female,1,,,1,,1,,3,1,8,7,4,2,5,6,3,4,7,1,5,2,6,4,3,5,7,8,1,6,2,1,5,4,8,6,2,3,7,3,2,1,6,4,7,5,3,4,5,2,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,3,9,2,5,1,8,4,3,2,1,2,0,0,-2 +16,142.68.247.142,R_7LbkNs6kej1ZjNv,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,1,9,10,10,1,5,1,1,1,0,6,3,1,1,5,2,2,7,2,7,1,9,10,10,2,2,2,2,2,1,2,2,1,7,7,0,8,1,1,20+,2,8,1,9,10,10,1,5,6.5,7,1,9,10,10,2,2,6.5,1,1,1,0,6,3,1.8,2,2,2,1,2,2,1.8,1,1,5,2,2,7,2,3,1,7,7,0,8,1,1,4,1,0,0,0,0,-1,3,0,-1,-1,-1,-1,4,1,0,0,-6,-2,2,-6,6,1,-1,-0.333333333333333,1.66666666666667,1,0,3,0.4,0.2,0.3,1,2,2,2,1,-2,-2,2,10 cents,100 minutes,24 days,5,12,It's impossible to tell,57,Monday,D,C,A,F,C,Male,0,College Diploma/Certificate,C_Ug,58,53 - 59,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,4,6,2,3,1,1,4,6,7,3,2,5,7,6,8,4,3,5,2,1,1,6,8,3,7,4,5,2,1,3,2,4,5,6,7,7,2,4,8,3,5,6,1,8,9,2,5,6,3,7,1,4,4,2,3,1,-2,-1,2,2 +17,50.101.180.162,R_7qxOZidaFMJCdTb,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,1,0,1,0,0,0,0,10,1,1,1,1,1,1,1,10,10,1,1,1,1,1,1,1,2,1,1,2,1,1,10,1,1,1,1,1,1,1,1,1,15-19,2,1,0,1,0,0,0,0,0.333333333333333,1,1,1,1,2,1,1,1.16666666666667,10,1,1,1,1,1,2.8,2,1,1,10,1,1,3,1,1,10,10,1,1,1,4,1,1,1,1,1,1,1,1,0,-1,0,-1,-2,-1,-1,-0.833333333333333,8,0,0,-9,0,0,-0.2,0,0,9,9,0,0,0,3,0.655555555555556,-0.333333333333333,0.875,0,2,0.4,0.2,0.3,2,2,2,-2,0,1,1,1,10 cents,25 minutes,24 days,3,7,It's impossible to tell,47,Tuesday,B,D,F,B,C,Male,0,High School (or equivalent),HS_TS,59,53 - 59,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,2,7,4,6,1,1,3,2,7,6,5,4,2,5,8,4,6,7,3,1,1,5,8,4,6,3,2,7,1,3,4,6,2,5,7,2,4,6,8,7,3,5,1,2,8,5,6,4,9,7,1,3,2,4,3,1,2,0,-1,-1 +18,70.77.111.224,R_5dQbcX29Sasc60g,self,03VFP,future,6,0,2,1,0,4,3,7,5,4,0,0,1,1,2,2,4,0,2,0,5,0,1,7,0,5,1,3,8,6,1,6,1,1,8,7,5,1,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,0,2,1,0,4,3,2.16666666666667,5,0,1,7,0,5,1,3,7,5,4,0,0,1,3.2,3,8,6,1,6,1,4.8,1,2,2,4,0,2,0,1.83333333333333,1,8,7,5,1,6,1,4.66666666666667,1,0,1,-6,0,-1,2,-0.833333333333333,4,-3,-2,-1,-6,0,-1.6,0,-6,-5,-1,-1,-4,-1,-2.83333333333333,-1.75555555555556,0.333333333333333,0.625,1,2,0.4,0.6,0.5,0,2,1,-2,1,0,-1,0,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,57,Monday,D,D,B,B,C,Female,1,High School (or equivalent),HS_TS,37,32 - 38,Canadian,Female,1,,,,1,,1,2,1,8,3,7,4,5,6,5,4,7,1,6,3,2,5,7,6,2,8,1,4,3,1,7,6,8,5,2,3,4,2,3,1,4,6,7,5,3,4,6,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,8,7,4,5,2,1,3,4,3,2,1,2,-1,0,1 +19,107.201.216.244,R_5d7bsweNx5eZlys,self,03VFP,future,6,6,3,8,5,6,5,3,5,7,6,8,6,8,5,6,7,8,7,6,7,6,2,5,4,6,4,5,5,9,5,4,7,7,5,5,2,8,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,3,8,5,6,5,5.66666666666667,7,6,2,5,4,6,4,5,3,5,7,6,8,6,5.8,5,5,9,5,4,7,5.6,8,5,6,7,8,7,6,6.83333333333333,7,5,5,2,8,6,7,5.5,-1,0,1,3,1,0,1,0.666666666666667,-2,0,-2,1,4,-1,0.2,1,0,1,5,0,1,-1,1.33333333333333,0.733333333333333,-0.333333333333333,1.75,1,2,0.6,1,0.8,1,2,2,-2,-2,-2,-2,1,10 cents,5 minutes,24 days,5,8,Richard is shorter than Matt,57,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,53,53 - 59,American,Male,1,,,,1,,1,4,1,8,5,7,2,3,6,3,5,7,1,6,4,2,6,7,3,2,8,1,4,5,1,4,3,8,6,7,2,5,5,4,1,3,6,7,2,5,4,3,6,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,7,2,8,3,9,1,6,3,2,4,1,2,2,2,2 +20,172.59.84.21,R_1jwelY9lGGNWLTh,self,03VFP,future,1,1,5,9,1,8,4,2,3,2,1,7,2,1,2,8,5,4,2,3,7,1,8,8,3,7,4,9,4,6,1,6,1,6,5,9,3,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,5,9,1,8,4,4.16666666666667,7,1,8,8,3,7,4,5.66666666666667,2,3,2,1,7,2,3,9,4,6,1,6,1,5.2,1,2,8,5,4,2,3,3.66666666666667,6,5,9,3,5,5,5,5.5,-6,0,-3,1,-2,1,0,-1.5,-7,-1,-4,0,1,1,-2.2,-5,-3,-1,2,-1,-3,-2,-1.83333333333333,-1.84444444444444,-0.333333333333333,0.375,0,3,0.4,0.8,0.6,0,1,1,-2,1,1,-1,0,10 cents,100 minutes,24 days,5,9,It's impossible to tell,39,Tuesday,D,E,B,B,C,Female,1,University - Graduate (Masters),grad_prof,71,67 - 73,American,Female,1,,,,1,,1,7,1,8,3,6,5,2,4,6,4,7,1,5,2,3,6,4,7,2,8,1,5,3,1,5,7,8,4,3,2,6,2,4,1,3,6,7,5,7,3,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,7,5,6,9,1,3,4,3,2,1,2,-1,-1,1 +21,38.40.122.117,R_3dHn2flSFuZ1t1s,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,2,6,2,8,4,6,4,5,4,4,5,4,4,7,5,4,6,5,3,2,2,7,3,5,6,6,3,6,5,4,5,7,6,7,3,3,5,5,20+,1,3,1,2,6,2,8,4,3.66666666666667,3,2,2,7,3,5,6,3.66666666666667,6,4,5,4,4,5,4.6,6,3,6,5,4,5,4.8,4,4,7,5,4,6,5,5,7,6,7,3,3,5,5,5.16666666666667,0,-1,0,-1,-1,3,-2,0,0,1,-1,-1,0,0,-0.2,-3,-2,0,2,1,1,0,-0.166666666666667,-0.122222222222222,-0.666666666666667,0.125,2,1,1,1,1,0,1,1,0,-1,1,1,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,College Diploma/Certificate,C_Ug,64,60 - 66,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,7,2,3,5,1,1,4,6,7,5,2,3,4,5,8,2,3,6,7,1,1,7,8,5,2,3,6,4,1,6,3,5,2,4,7,5,6,2,8,4,3,7,1,6,4,8,9,3,5,7,1,2,4,3,2,1,0,1,-1,-1 +22,173.69.35.165,R_1oouRtI22pb64Yp,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,2,3,3,1,7,4,4,2,7,1,4,3,1,1,2,1,4,4,2,2,0,1,6,0,2,3,1,5,7,7,4,1,2,6,2,0,3,7,2,20+,2,8,2,3,3,1,7,4,4,2,0,1,6,0,2,3,1.83333333333333,4,2,7,1,4,3,3.6,1,5,7,7,4,1,4.8,1,1,2,1,4,4,2,2.16666666666667,2,6,2,0,3,7,2,3.33333333333333,6,2,2,-3,1,5,1,2.16666666666667,3,-3,0,-6,0,2,-1.2,-1,-5,0,1,1,-3,0,-1.16666666666667,-0.0666666666666667,1,1.875,0,3,0.6,0,0.3,1,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,24 days,7,11,It's impossible to tell,47,Sunday,E,C,C,D,F,Male,0,High School (or equivalent),HS_TS,48,46 - 52,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,6,5,7,1,1,4,2,7,5,6,3,5,4,8,7,6,3,2,1,1,7,8,2,4,3,6,5,1,2,4,6,5,3,7,3,7,4,8,5,2,6,1,9,2,5,7,4,3,6,1,8,2,4,3,1,2,2,2,2 +23,166.48.226.181,R_3U2WuvCG5VmYZul,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like a great deal,4,0,10,10,0,10,10,1,10,10,9,5,9,10,10,10,10,9,9,5,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10,10,10,10,15-19,2,4,0,10,10,0,10,10,5.66666666666667,10,10,10,10,10,10,10,10,1,10,10,9,5,9,7,10,10,10,10,10,10,10,10,10,10,10,9,9,5,9.66666666666667,10,10,9,10,10,10,10,9.83333333333333,-6,-10,0,0,-10,0,0,-4.33333333333333,-9,0,0,-1,-5,-1,-3,0,0,1,0,-1,-1,-5,-0.166666666666667,-2.5,-2,0.625,0,3,0.6,0.6,0.6,-2,2,2,-2,2,-1,-2,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Tuesday,D,E,B,F,E,Male,0,High School (or equivalent),HS_TS,69,67 - 73,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,6,3,4,1,1,6,3,7,5,4,2,4,3,8,7,6,5,2,1,1,2,8,3,4,7,5,6,1,3,6,2,4,5,7,3,5,7,8,6,4,2,1,9,5,2,8,3,6,4,1,7,4,3,2,1,2,-2,1,2 +24,72.205.245.200,R_7EEj4xtAIYfKd9L,self,03VFP,past,4,0,0,2,3,0,1,0,3,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,4,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0,0,2,3,0,1,1.5,2,0,0,0,4,0,2,1,0,3,0,0,4,2,1.4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,-1,0,-1,0.5,0,3,0,0,4,1,1.4,0,0,0,0,0,0,0,0,0.633333333333333,0,0.875,0,3,0.8,0.2,0.5,1,1,0,-2,-1,-1,-2,-1,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Sunday,B,E,F,A,E,Female,1,High School (or equivalent),HS_TS,61,60 - 66,American,Female,1,,,,1,1,,6,1,8,4,7,5,2,3,5,6,7,1,2,3,4,5,2,3,4,8,1,6,7,1,6,7,8,3,5,2,4,3,6,1,5,2,7,4,6,2,4,3,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,6,7,9,5,8,1,3,4,2,3,1,2,1,1,2 +25,73.181.28.193,R_3gGiBBhlBOvVFlE,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,2,5,2,0,2,7,2,2,2,6,2,7,7,7,2,7,4,2,1,1,2,3,1,3,2,1,1,1,1,1,1,2,1,4,1,1,2,1,20+,2,2,2,2,5,2,0,2,2.16666666666667,1,1,2,3,1,3,2,1.83333333333333,7,2,2,2,6,2,3.8,1,1,1,1,1,1,1,7,7,7,2,7,4,2,5.66666666666667,2,1,4,1,1,2,1,1.83333333333333,1,1,0,2,1,-3,0,0.333333333333333,6,1,1,1,5,1,2.8,5,6,3,1,6,2,1,3.83333333333333,2.32222222222222,0.666666666666667,1,2,1,0.8,0.8,0.8,2,2,1,-2,2,-1,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,C,Male,0,University - Undergraduate,C_Ug,73,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,3,2,5,4,1,1,2,5,7,3,6,4,4,6,8,3,5,2,7,1,1,4,8,2,3,6,5,7,1,2,6,5,3,4,7,7,5,2,8,3,6,4,1,9,7,6,2,8,5,3,1,4,4,2,3,1,2,-2,1,2 +26,216.121.132.147,R_7nMT8diHeTSIihb,self,01FPV,past,3,3,3,3,4,3,3,4,4,5,5,5,4,3,4,4,3,5,5,4,3,4,3,4,3,3,3,4,4,4,5,5,4,4,5,3,4,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,4,3,3,3.16666666666667,3,4,3,4,3,3,3,3.33333333333333,4,4,5,5,5,4,4.6,4,4,4,5,5,4,4.4,3,4,4,3,5,5,4,4,4,5,3,4,5,5,5,4.33333333333333,0,-1,0,-1,1,0,0,-0.166666666666667,0,0,1,0,0,0,0.2,-1,-1,1,-1,0,0,-1,-0.333333333333333,-0.1,-0.333333333333333,0.375,0,3,0.4,0,0.2,1,0,1,-1,0,1,0,1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,57,Tuesday,F,C,A,D,F,Male,0,High School (or equivalent),HS_TS,72,67 - 73,Canadian,Male,1,,1,,,1,,4,1,8,2,7,3,6,5,3,5,7,1,6,2,4,3,7,4,2,8,1,5,6,1,5,3,8,4,2,7,6,3,4,1,5,2,7,6,6,4,2,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,9,6,3,1,5,2,3,4,1,1,0,-1,0 +27,158.222.70.249,R_7zU3tK7JmKlvXx8,self,02PVF,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0.166666666666667,0,0,0,0,0,0,0,0,-1,0,-1,0,0,-1,-0.4,0,0,0,0,0,-1,0,-0.166666666666667,-0.188888888888889,-0.333333333333333,1.875,0,3,0.8,0.4,0.6,2,2,2,-2,-2,-2,-2,1,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Sunday,B,E,E,E,D,Female,1,University - Undergraduate,C_Ug,70,67 - 73,American,Female,1,,,1,,,1,2,1,8,5,6,3,7,4,4,2,7,1,5,3,6,7,3,6,5,8,1,4,2,1,3,6,8,7,5,2,4,2,6,1,5,4,7,3,2,6,5,4,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,7,8,6,4,5,1,2,3,4,2,1,2,2,2,2 +28,99.231.20.84,R_77s3k6J8GEal3QI,self,02PVF,future,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0.5,1,0,0,1,1,0,0.6,0,1,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0.5,-1,0,0,-1,0,-1,0,-0.5,1,-1,0,1,1,0,0.4,0,-1,0,0,-1,-1,-1,-0.5,-0.2,-0.333333333333333,1.125,3,0,1,0.8,0.9,1,1,2,-2,-1,-1,-2,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,C,B,D,Male,0,Trade School,HS_TS,59,53 - 59,Canadian,Male,1,,,1,,,1,3,1,8,2,5,7,4,6,4,6,7,1,2,3,5,2,7,6,5,8,1,4,3,1,2,4,8,5,6,3,7,2,5,1,6,3,7,4,2,5,3,7,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,3,6,4,9,7,1,8,3,2,4,1,2,1,1,2 +29,142.112.92.160,R_342D9dblbY7XyOP,self,01FPV,past,5,1,3,1,1,7,1,1,1,1,1,2,1,1,1,5,1,1,4,1,7,2,7,3,5,6,4,1,1,5,1,1,1,5,1,7,2,4,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,3,1,1,7,1,3,7,2,7,3,5,6,4,5,1,1,1,1,2,1,1.2,1,1,5,1,1,1,1.8,1,1,5,1,1,4,1,2.16666666666667,5,1,7,2,4,7,1,4.33333333333333,-2,-1,-4,-2,-4,1,-3,-2,0,0,-4,0,1,0,-0.6,-4,0,-2,-1,-3,-3,0,-2.16666666666667,-1.58888888888889,-1,0.375,0,3,0,0,0,2,1,2,-2,2,1,1,0,10 cents,100 minutes,24 days,2,7,Richard is as tall as Matt,57,Tuesday,B,D,A,A,A,Female,1,College Diploma/Certificate,C_Ug,64,60 - 66,Canadian,Female,1,,1,,,1,,3,1,8,7,2,5,6,4,5,4,7,1,6,3,2,7,2,3,4,8,1,6,5,1,6,3,8,2,4,5,7,3,5,1,2,6,7,4,4,6,5,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,7,9,3,2,1,4,3,4,2,1,2,-2,-1,-1 +30,99.239.208.184,R_5q4bJFwk4H4AlL4,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Dislike somewhat,6,8,9,9,5,8,7,8,8,4,6,6,7,6,6,3,6,8,5,9,9,7,5,3,5,6,6,5,6,7,4,6,5,4,8,7,5,6,6,8,10-14,-1,6,8,9,9,5,8,7,7.5,9,7,5,3,5,6,6,5.83333333333333,8,8,4,6,6,7,6.4,5,6,7,4,6,5,5.6,6,6,3,6,8,5,9,5.66666666666667,4,8,7,5,6,6,8,6,-3,1,4,6,0,2,1,1.66666666666667,3,2,-3,2,0,2,0.8,2,-2,-4,1,2,-1,1,-0.333333333333333,0.711111111111111,1.33333333333333,0.25,2,1,0.6,0.2,0.4,0,0,1,-1,0,1,0,1,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Tuesday,D,D,E,A,F,Female,1,University - Undergraduate,C_Ug,33,32 - 38,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,2,5,3,7,1,1,6,4,7,3,5,2,5,6,8,4,2,3,7,1,1,5,8,3,6,4,7,2,1,4,6,5,2,3,7,5,4,2,8,3,6,7,1,4,7,6,8,9,3,2,1,5,2,4,3,1,1,0,-1,0 +31,73.125.236.39,R_60JGyV3eFFLRTFT,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,4,4,4,3,3,3,4,3,3,3,4,3,2,3,3,2,3,3,3,4,3,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,10-14,2,4,4,4,4,3,3,3,3.66666666666667,4,3,4,4,3,3,3,3.5,4,3,3,3,4,3,3.4,4,3,3,3,4,3,3.4,2,3,3,2,3,3,3,2.66666666666667,3,3,4,3,3,3,3,3.16666666666667,0,1,0,0,0,0,0,0.166666666666667,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,-0.5,-0.111111111111111,0,1,0,3,0.8,0.2,0.5,1,2,2,-2,1,2,-2,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,B,E,F,A,B,Male,0,College Diploma/Certificate,C_Ug,70,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,2,3,6,7,1,1,6,5,7,2,3,4,6,2,8,5,7,4,3,1,1,6,8,2,4,5,7,3,1,6,2,3,4,5,7,4,2,6,8,3,5,7,1,9,2,3,6,7,8,5,1,4,2,4,3,1,2,-1,-2,2 +32,216.167.87.72,R_6z0e0WZAYrvGkFj,self,02PVF,past,8,6,7,7,0,6,6,7,1,8,4,5,7,8,6,8,1,0,6,0,2,8,7,6,2,6,7,4,2,6,8,6,8,2,7,2,8,6,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,7,7,0,6,6,5.66666666666667,2,8,7,6,2,6,7,5.16666666666667,7,1,8,4,5,7,5,4,2,6,8,6,8,5.2,8,6,8,1,0,6,0,4.83333333333333,2,7,2,8,6,7,6,5.33333333333333,6,-2,0,1,-2,0,-1,0.5,3,-1,2,-4,-1,-1,-0.2,6,-1,6,-7,-6,-1,-6,-0.5,-0.0666666666666667,-2.66666666666667,1.875,3,0,0.4,0.2,0.3,2,2,2,-2,-2,-2,-1,2,5 cents,5 minutes,47 days,5,12,It's impossible to tell,39,Wednesday,D,D,E,F,E,Male,0,University - Undergraduate,C_Ug,36,32 - 38,American,Male,1,,,1,,1,,4,1,8,2,6,3,7,5,2,4,7,1,3,5,6,7,4,5,2,8,1,6,3,1,4,3,8,5,6,7,2,5,6,1,4,2,7,3,3,7,2,5,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,4,6,7,5,3,1,9,3,2,4,1,2,2,2,1 +33,76.209.9.90,R_1kaI6Bv5ooY5rSI,self,02PVF,future,8,9,9,9,9,9,8,8,8,8,8,8,7,9,9,9,8,9,8,9,10,7,7,8,8,8,10,10,8,8,9,8,9,8,8,8,8,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,9,9,9,9,8,8.83333333333333,10,7,7,8,8,8,10,8,8,8,8,8,8,7,8,10,8,8,9,8,9,8.6,9,9,9,8,9,8,9,8.66666666666667,8,8,8,8,9,9,8,8.33333333333333,-2,2,2,1,1,1,-2,0.833333333333333,-2,0,0,-1,0,-2,-0.6,1,1,1,0,0,-1,1,0.333333333333333,0.188888888888889,-1,0.25,3,0,1,0.2,0.6,2,2,1,1,2,1,1,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,D,A,B,F,Female,1,University - Graduate (Masters),grad_prof,39,39 - 45,American,Female,1,,,1,,,1,7,1,8,5,2,6,3,4,5,4,7,1,6,2,3,7,4,5,2,8,1,6,3,1,3,5,8,6,7,2,4,3,6,1,2,5,7,4,3,4,6,7,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,4,6,5,2,3,1,8,3,2,4,1,-1,-2,-1,-1 +34,99.240.69.37,R_1D7O1sEmb68E3Je,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,2,0,0,0,5,0,0,0,0.833333333333333,0,0,0,5,0,0,0,0.833333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,3,0.8,0.4,0.6,0,2,2,-2,0,-2,-2,0,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,B,D,B,E,Female,1,College Diploma/Certificate,C_Ug,41,39 - 45,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,3,2,1,1,5,6,7,2,3,4,6,4,8,5,7,2,3,1,1,2,8,7,3,6,4,5,1,6,4,2,5,3,7,4,6,7,8,3,2,5,1,9,2,3,8,4,7,5,1,6,4,3,2,1,2,0,2,2 +35,142.68.87.37,R_1PT9NJHpYIRMv6B,self,01FPV,future,1,2,1,1,1,6,3,1,2,2,1,3,1,5,1,1,1,1,1,0,1,1,2,5,1,1,2,2,3,1,2,1,4,3,2,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,1,1,6,3,2,1,1,2,5,1,1,2,1.83333333333333,1,2,2,1,3,1,1.8,2,3,1,2,1,4,1.8,5,1,1,1,1,1,0,1.66666666666667,3,2,1,3,1,1,1,1.83333333333333,0,1,-1,-4,0,5,1,0.166666666666667,-1,-1,1,-1,2,-3,0,2,-1,0,-2,0,0,-1,-0.166666666666667,0,-1,0,0,3,0.8,0.2,0.5,0,0,-1,-2,0,0,1,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,D,F,F,F,A,Female,1,High School (or equivalent),HS_TS,60,60 - 66,Canadian,Female,1,,1,,,,1,2,1,8,4,7,3,6,5,6,3,7,1,2,4,5,4,2,3,5,8,1,7,6,1,6,7,8,4,3,2,5,3,5,1,4,6,7,2,6,5,7,3,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,7,5,8,3,4,1,9,4,3,2,1,2,0,0,-1 +36,50.32.38.147,R_3D7Cup12BIh6Khr,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,8,0,7,9,0,4,5,4,0,6,0,9,5,0,4,7,0,0,8,5,4,0,7,9,0,7,5,3,0,6,0,6,1,0,6,7,0,0,6,2,10-14,2,8,0,7,9,0,4,5,4.66666666666667,4,0,7,9,0,7,5,4.5,4,0,6,0,9,5,3.8,3,0,6,0,6,1,3,0,4,7,0,0,8,5,3.16666666666667,0,6,7,0,0,6,2,3.16666666666667,4,0,0,0,0,-3,0,0.166666666666667,1,0,0,0,3,4,0.8,0,-2,0,0,0,2,3,0,0.322222222222222,2.33333333333333,0.875,0,3,0.6,0.6,0.6,2,2,2,2,2,-2,-2,1,10 cents,100 minutes,24 days,5,12,Richard is as tall as Matt,47,Sunday,D,E,B,D,F,Female,1,University - Undergraduate,C_Ug,59,53 - 59,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,6,4,2,1,1,3,5,7,6,2,4,3,5,8,6,7,4,2,1,1,5,8,6,3,2,7,4,1,6,4,2,5,3,7,3,4,7,8,6,5,2,1,7,8,9,6,3,5,2,1,4,2,4,3,1,-2,-2,2,2 +37,142.255.66.165,R_6QaRsEcmhpAOA1u,self,02PVF,past,5,0,6,8,3,7,4,6,3,5,0,3,6,0,4,5,0,5,5,0,3,0,3,4,3,2,3,5,3,4,5,4,3,0,0,1,0,1,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,0,6,8,3,7,4,4.83333333333333,3,0,3,4,3,2,3,2.5,6,3,5,0,3,6,3.4,5,3,4,5,4,3,4.2,0,4,5,0,5,5,0,3.16666666666667,0,0,1,0,1,5,2,1.16666666666667,2,0,3,4,0,5,1,2.33333333333333,1,0,1,-5,-1,3,-0.8,0,4,4,0,4,0,-2,2,1.17777777777778,0.666666666666667,0.75,0,3,0.8,0.4,0.6,0,1,2,-2,0,1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,A,C,B,B,A,Female,1,University - Graduate (Masters),grad_prof,68,67 - 73,American,Female,1,,,1,,1,,5,1,8,4,3,2,6,7,2,4,7,1,5,6,3,2,4,7,5,8,1,6,3,1,6,7,8,2,5,4,3,5,2,1,6,4,7,3,5,4,7,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,9,3,6,5,7,1,2,3,4,2,1,2,0,-1,1 +38,97.71.84.16,R_6YbIJPh0dD6EwFo,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,3,2,0,1,1,2,2,0,1,0,1,1,2,1,0,3,1,3,0,0,4,0,2,2,2,3,0,0,2,0,3,3,2,0,2,1,0,20+,2,0,0,0,3,2,0,1,0.833333333333333,3,0,0,4,0,2,2,1.5,1,2,2,0,1,0,1.2,2,3,0,0,2,0,1.4,1,1,2,1,0,3,1,1.33333333333333,3,3,2,0,2,1,0,1.83333333333333,-3,0,0,-1,2,-2,-1,-0.666666666666667,-1,-1,2,0,-1,0,-0.2,-2,-2,0,1,-2,2,1,-0.5,-0.455555555555556,0,0.375,2,0,0.8,0.6,0.7,-1,1,0,-2,0,2,-2,1,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Monday,D,E,B,A,C,Male,0,High School (or equivalent),HS_TS,71,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,3,6,5,1,1,3,6,7,5,2,4,5,7,8,3,4,6,2,1,1,3,8,6,4,2,7,5,1,3,2,5,6,4,7,3,4,7,8,6,2,5,1,9,4,7,5,2,6,8,1,3,4,3,2,1,2,0,-2,2 +39,76.142.100.45,R_5JCUQ4pY2tfedrh,self,01FPV,past,2,2,2,2,2,2,5,2,0,1,1,2,1,1,1,1,2,1,1,1,1,3,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,5,2,1,3,1,1,1,1,2,1.33333333333333,2,0,1,1,2,1,1.2,2,1,1,2,2,2,1.6,1,1,1,2,1,1,1,1.16666666666667,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,3,0.666666666666667,0,-1,0,-1,0,-1,-0.4,0,0,0,1,0,0,0,0.166666666666667,0.144444444444444,0.666666666666667,1,0,3,0.2,0.4,0.3,-1,1,2,-2,-2,-2,-1,-1,10 cents,100 minutes,24 days,4,10,It's impossible to tell,44,Tuesday,D,E,D,D,B,Male,0,College Diploma/Certificate,C_Ug,63,60 - 66,American,Male,1,,1,,,1,,4,1,8,2,3,7,6,5,4,3,7,1,6,2,5,6,2,4,7,8,1,5,3,1,6,3,8,7,5,2,4,2,6,1,3,4,7,5,7,6,3,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,9,8,5,2,1,4,4,3,2,1,2,2,2,1 +40,172.56.162.27,R_3j1EEJSUHUokMeg,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,2,3,6,5,4,5,5,7,4,6,6,4,4,5,4,4,3,5,5,3,1,6,3,1,6,4,3,3,4,4,4,3,5,5,4,3,2,3,6,20+,2,4,2,3,6,5,4,5,4,3,1,6,3,1,6,4,3.33333333333333,5,7,4,6,6,4,5.6,3,3,4,4,4,3,3.6,4,5,4,4,3,5,5,4.16666666666667,5,5,4,3,2,3,6,3.66666666666667,1,1,-3,3,4,-2,1,0.666666666666667,2,4,0,2,2,1,2,-1,0,0,1,1,2,-1,0.5,1.05555555555556,0.333333333333333,0.25,2,1,0.8,1,0.9,-1,2,2,-2,2,0,1,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Saturday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,43,39 - 45,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,7,2,6,3,1,1,6,3,7,5,2,4,7,3,8,4,5,2,6,1,1,7,8,5,6,4,2,3,1,2,4,3,6,5,7,5,3,2,8,7,6,4,1,3,7,4,6,5,8,2,1,9,2,3,4,1,2,-2,0,-1 +41,24.138.24.19,R_13AwsDN7KCU3Cq5,self,02PVF,future,2,1,2,4,1,4,2,2,2,5,1,2,2,1,2,1,2,1,6,1,4,1,3,2,1,5,2,1,1,7,10,1,2,2,2,1,1,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,4,1,4,2,2.33333333333333,4,1,3,2,1,5,2,2.66666666666667,2,2,5,1,2,2,2.4,1,1,7,10,1,2,4,1,2,1,2,1,6,1,2.16666666666667,2,2,1,1,1,5,1,2,-2,0,-1,2,0,-1,0,-0.333333333333333,1,1,-2,-9,1,0,-1.6,-1,0,0,1,0,1,0,0.166666666666667,-0.588888888888889,0,0.75,0,3,0.8,0.4,0.6,1,1,1,-2,1,-1,-2,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,D,D,C,D,D,Female,1,High School (or equivalent),HS_TS,70,67 - 73,Canadian,Female,1,,,1,,,1,4,1,8,3,5,6,7,2,4,5,7,1,6,2,3,4,7,2,3,8,1,6,5,1,3,4,8,7,2,6,5,5,2,1,6,4,7,3,4,3,6,7,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,5,7,6,8,4,1,3,2,3,4,1,2,-1,1,2 +42,71.51.64.53,R_7mejY7lPfou9ciJ,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,3,3,4,3,10,3,5,5,5,4,4,4,3,3,3,3,4,3,5,3,3,3,3,4,4,3,4,4,4,5,4,4,4,4,5,8,3,4,5,20+,2,3,3,3,4,3,10,3,4.33333333333333,3,3,3,3,4,4,3,3.33333333333333,5,5,5,4,4,4,4.6,4,4,4,5,4,4,4.2,3,3,3,3,4,3,5,3.16666666666667,4,4,5,8,3,4,5,4.66666666666667,0,0,0,1,-1,6,0,1,1,1,1,-1,0,0,0.4,-1,-1,-2,-5,1,-1,0,-1.5,-0.0333333333333333,0,0.25,2,1,0.4,0.4,0.4,0,1,1,0,0,1,-1,0,5 cents,5 minutes,24 days,5,11,Richard is taller than Matt,47,Wednesday,E,E,B,A,B,Female,1,College Diploma/Certificate,C_Ug,66,60 - 66,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,6,3,7,5,1,1,6,5,7,2,4,3,2,4,8,7,3,6,5,1,1,6,8,5,2,4,7,3,1,3,5,6,4,2,7,4,3,2,8,7,6,5,1,7,3,8,6,4,9,2,1,5,2,4,3,1,0,0,-1,1 +43,68.104.115.31,R_3QlovrUx5E5BdYo,self,01FPV,future,1,3,1,2,1,1,2,3,2,4,7,3,4,2,3,7,2,4,7,5,3,1,2,5,6,2,4,8,7,1,7,7,6,1,4,4,1,9,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,1,2,1,1,2,1.5,3,1,2,5,6,2,4,3.16666666666667,3,2,4,7,3,4,3.8,8,7,1,7,7,6,6,2,3,7,2,4,7,5,4.16666666666667,1,4,4,1,9,2,4,3.5,-2,2,-1,-3,-5,-1,-2,-1.66666666666667,-5,-5,3,0,-4,-2,-2.2,1,-1,3,1,-5,5,1,0.666666666666667,-1.06666666666667,-1,1.5,2,1,1,1,1,1,2,2,-1,-2,-1,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,High School (or equivalent),HS_TS,44,39 - 45,American,Male,1,,1,,,,1,3,1,8,6,4,7,5,2,6,3,7,1,5,4,2,4,3,5,6,8,1,7,2,1,6,5,8,4,3,2,7,6,3,1,5,2,7,4,4,2,3,6,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,4,3,8,5,7,1,6,4,3,2,1,1,2,1,2 +44,24.114.109.109,R_5Ase2FAMi56eceJ,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,5,2,5,2,2,2,2,1,1,2,2,1,2,2,1,1,1,2,3,2,7,2,3,5,2,10,10,3,2,5,2,1,2,2,1,1,2,1,20+,2,2,2,5,2,5,2,2,3,3,2,7,2,3,5,2,3.66666666666667,2,2,1,1,2,2,1.6,10,10,3,2,5,2,6,1,2,2,1,1,1,2,1.33333333333333,1,2,2,1,1,2,1,1.5,-1,0,-2,0,2,-3,0,-0.666666666666667,-8,-8,-2,-1,-3,0,-4.4,0,0,0,0,0,-1,1,-0.166666666666667,-1.74444444444444,0.333333333333333,0.375,0,3,1,0.4,0.7,2,0,0,-2,2,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,F,A,B,D,Female,1,University - Undergraduate,C_Ug,65,60 - 66,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,2,5,6,3,1,1,2,5,7,6,3,4,5,2,8,4,7,6,3,1,1,7,8,3,4,5,2,6,1,4,3,6,5,2,7,5,7,4,8,3,6,2,1,9,6,2,5,8,7,4,1,3,4,2,3,1,2,-2,0,1 +45,72.69.113.7,R_1wm3LNKiuw3UbTz,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,10,10,10,0,0,10,10,0,0,0,0,0,10,10,0,0,0,10,0,0,0,9,10,10,10,10,10,0,0,10,0,0,10,10,10,0,10,10,20+,2,0,0,10,10,10,0,0,5,0,0,0,9,10,10,10,4.83333333333333,10,10,0,0,0,0,4,10,10,0,0,10,0,6,0,10,10,0,0,0,10,3.33333333333333,0,10,10,10,0,10,10,6.66666666666667,0,0,10,1,0,-10,-10,0.166666666666667,0,0,0,0,-10,0,-2,0,0,0,-10,0,-10,0,-3.33333333333333,-1.72222222222222,-3.33333333333333,-0.125,3,0,0.8,0.6,0.7,2,1,-1,1,1,2,1,2,5 cents,5 minutes,47 days,5,8,Zach is shorter than Matt,47,Sunday,B,E,B,B,F,Male,0,College Diploma/Certificate,C_Ug,25,25 - 31,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,6,3,4,1,1,6,5,7,3,4,2,4,5,8,2,3,7,6,1,1,3,8,5,2,7,6,4,1,3,5,4,6,2,7,6,2,4,8,5,7,3,1,4,9,2,8,6,3,7,1,5,2,3,4,1,-1,-1,-2,-1 +46,174.91.107.208,R_1isv4eQ4kiY5ubV,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,0,0,1,1,1,1,4,2,5,4,1,4,8,6,2,7,0,3,8,0,0,0,4,2,1,1,5,5,3,2,1,0,0,1,5,4,1,3,0,10-14,2,4,0,0,1,1,1,1,1.16666666666667,0,0,0,4,2,1,1,1.16666666666667,4,2,5,4,1,4,3.2,5,5,3,2,1,0,3.2,8,6,2,7,0,3,8,4.33333333333333,0,1,5,4,1,3,0,2.33333333333333,4,0,0,-3,-1,0,0,0,-1,-3,2,2,0,4,0,8,5,-3,3,-1,0,8,2,0.666666666666667,4,-0.375,0,3,0.6,0.4,0.5,0,0,-1,-2,1,1,0,-2,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Wednesday,D,C,D,B,E,Male,0,Professional Degree (ex. JD/MD),grad_prof,52,46 - 52,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,5,2,4,6,1,1,2,5,7,3,6,4,6,5,8,3,7,4,2,1,1,7,8,2,3,5,6,4,1,5,3,2,4,6,7,4,3,7,8,2,6,5,1,4,2,7,5,9,8,6,1,3,2,3,4,1,2,-1,-1,0 +47,216.121.193.201,R_6VqHtxCkLOn3PNF,self,01FPV,past,7,8,7,8,8,8,8,8,7,6,7,7,8,7,8,8,8,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,7,8,8,8,8,7.66666666666667,8,8,8,8,8,8,8,8,8,7,6,7,7,8,7,8,8,8,8,8,8,8,7,8,8,8,7,7,8,7.5,8,8,8,8,8,8,8,8,-1,0,-1,0,0,0,0,-0.333333333333333,0,-1,-2,-1,-1,0,-1,-1,0,0,0,-1,-1,0,-0.5,-0.611111111111111,0,0.125,3,0,1,0.2,0.6,1,1,1,1,0,1,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,C,E,D,Male,0,College Diploma/Certificate,C_Ug,64,60 - 66,Canadian,Male,1,,1,,,1,,7,1,8,5,3,4,2,6,4,3,7,1,6,5,2,5,4,7,3,8,1,2,6,1,7,3,8,5,2,4,6,6,2,1,5,4,7,3,6,5,7,2,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,8,4,9,6,1,7,2,3,4,1,-1,0,-1,-1 +48,143.105.101.173,R_5FT5EjbiJm8AySl,self,02PVF,past,4,7,9,8,5,6,8,5,7,8,8,7,8,10,8,8,9,8,6,10,6,3,6,7,6,6,6,6,6,8,8,7,6,7,5,6,7,8,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,9,8,5,6,8,6.5,6,3,6,7,6,6,6,5.66666666666667,5,7,8,8,7,8,7,6,6,8,8,7,6,7,10,8,8,9,8,6,10,8.16666666666667,7,5,6,7,8,6,7,6.5,-2,4,3,1,-1,0,2,0.833333333333333,-1,1,0,0,0,2,0,3,3,2,2,0,0,3,1.66666666666667,0.833333333333333,2.33333333333333,0.125,0,3,0.4,0.4,0.4,0,0,1,-1,1,-1,-1,-2,10 cents,100 minutes,24 days,5,12,Richard is taller than Matt,44,Sunday,D,D,D,C,D,Female,1,University - Undergraduate,C_Ug,42,39 - 45,Canadian,Female,1,,,1,,1,,5,1,8,3,4,6,7,2,5,6,7,1,3,2,4,2,5,4,3,8,1,6,7,1,7,3,8,5,6,4,2,2,5,1,6,4,7,3,4,3,2,7,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,8,2,4,7,1,9,4,3,2,1,1,-1,1,1 +49,142.169.18.148,R_3jnWiifnEJIg85r,self,03VFP,future,5,5,5,5,6,6,4,3,3,4,4,4,4,6,6,6,5,6,5,6,5,5,4,4,5,5,5,6,5,5,5,5,5,2,7,7,6,8,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,6,4,5.33333333333333,5,5,4,4,5,5,5,4.66666666666667,3,3,4,4,4,4,3.6,6,5,5,5,5,5,5.2,6,6,6,5,6,5,6,5.66666666666667,2,7,7,6,8,8,4,6.33333333333333,0,0,1,1,1,1,-1,0.666666666666667,-3,-2,-1,-1,-1,-1,-1.6,4,-1,-1,-1,-2,-3,2,-0.666666666666667,-0.533333333333333,0,0.25,0,3,0.6,0.2,0.4,-1,1,1,-1,1,0,0,1,10 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,47,Sunday,B,D,F,B,E,Female,1,College Diploma/Certificate,C_Ug,52,46 - 52,Canadian,Female,1,,,,1,,1,6,1,8,3,7,4,5,2,4,5,7,1,3,2,6,7,3,5,2,8,1,6,4,1,6,3,8,4,7,2,5,3,5,1,6,2,7,4,4,5,6,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,9,5,7,8,4,3,1,6,4,2,3,1,1,-1,0,0 +50,99.252.65.40,R_5BeV3dKxkPhAiP1,self,01FPV,future,5,2,5,2,2,6,4,3,1,2,2,3,2,1,2,4,1,3,4,3,5,2,8,3,3,8,5,3,2,5,2,6,4,1,2,2,1,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,2,2,6,4,3.66666666666667,5,2,8,3,3,8,5,4.83333333333333,3,1,2,2,3,2,2.2,3,2,5,2,6,4,3.6,1,2,4,1,3,4,3,2.5,1,2,2,1,2,4,4,2,0,0,-3,-1,-1,-2,-1,-1.16666666666667,0,-1,-3,0,-3,-2,-1.4,0,0,2,0,1,0,-1,0.5,-0.688888888888889,-1.33333333333333,0.5,3,0,0.8,0.8,0.8,0,1,0,-2,-2,1,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,D,E,B,B,F,Male,0,University - Undergraduate,C_Ug,58,53 - 59,Canadian,Male,1,,1,,,,1,4,1,8,3,7,6,2,5,3,5,7,1,4,6,2,7,2,4,6,8,1,5,3,1,6,2,8,4,5,7,3,2,5,1,6,4,7,3,7,4,2,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,7,4,5,6,9,1,2,2,4,3,1,2,2,-1,1 +51,134.41.254.166,R_7e9ByLnD0buHMBP,self,01FPV,past,7,1,1,10,10,10,7,5,6,9,6,5,7,1,6,1,8,1,7,1,10,1,1,10,9,8,8,7,1,5,5,5,5,6,6,10,7,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1,1,10,10,10,7,6.5,10,1,1,10,9,8,8,6.5,5,6,9,6,5,7,6.2,7,1,5,5,5,5,4.6,1,6,1,8,1,7,1,4,6,6,10,7,1,1,1,5.16666666666667,-3,0,0,0,1,2,-1,0,-2,5,4,1,0,2,1.6,-5,0,-9,1,0,6,0,-1.16666666666667,0.144444444444444,0.333333333333333,0.5,0,3,0.2,0.2,0.2,0,1,0,-2,1,-1,-1,0,10 cents,100 minutes,24 days,3,10,Zach is shorter than Matt,47,Tuesday,F,E,C,F,F,Female,1,High School (or equivalent),HS_TS,68,67 - 73,Canadian,Female,1,,1,,,1,,7,1,8,5,6,3,4,2,2,5,7,1,3,6,4,6,2,7,5,8,1,3,4,1,6,2,8,3,4,5,7,2,4,1,5,6,7,3,6,3,7,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,2,7,6,1,9,4,3,2,1,2,-1,1,1 +52,174.88.96.249,R_6FmlPVXEd2nsotV,self,03VFP,past,0,0,10,10,0,0,3,0,0,0,0,7,0,10,10,10,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,10,10,0,0,3,3.33333333333333,0,0,0,7,0,0,0,1.16666666666667,0,0,0,0,7,0,1.4,0,0,0,0,0,0,0,10,10,10,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,3,0,0,3,2.16666666666667,0,0,0,0,7,0,1.4,10,10,10,0,0,0,0,5,2.85555555555556,1,0.875,0,3,0.6,0.6,0.6,1,2,1,-2,0,2,-2,1,10 cents,100 minutes,24 days,5,11,It's impossible to tell,57,Sunday,D,C,B,B,C,Female,1,High School (or equivalent),HS_TS,60,60 - 66,Canadian,Female,1,,,,1,1,,6,1,8,5,7,3,4,2,2,5,7,1,4,6,3,7,6,5,4,8,1,3,2,1,5,2,8,7,4,6,3,5,3,1,4,2,7,6,4,3,5,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,8,7,9,6,1,5,2,4,3,1,2,0,-2,2 +53,174.116.67.224,R_6ehrzLvA3tq4NJ6,self,03VFP,future,1,1,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,1,1,2,1,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,2,1,1,1,1.33333333333333,1,1,1,2,2,1,1,1.33333333333333,2,1,2,1,1,1,1.4,1,1,1,2,1,1,1.2,1,1,1,1,1,1,1,1,2,1,1,1,4,2,1,1.83333333333333,0,0,1,0,-1,0,0,0,1,0,1,-1,0,0,0.2,-1,0,0,0,-3,-1,0,-0.833333333333333,-0.211111111111111,0,0.875,0,3,0,0.4,0.2,1,1,2,-1,0,0,-1,1,10 cents,100 minutes,24 days,4,12,Richard is taller than Zach,57,Monday,D,E,D,F,C,Female,1,University - PhD,grad_prof,61,60 - 66,Canadian,Female,1,,,,1,,1,3,1,8,5,4,6,7,2,5,6,7,1,3,2,4,7,4,2,6,8,1,3,5,1,3,5,8,7,6,4,2,6,5,1,3,4,7,2,4,5,7,6,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,7,9,5,2,6,1,4,4,2,3,1,1,0,0,1 +54,173.238.254.245,R_5Kl2CxT4vz2BWNG,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,1,5,5,5,5,3,5,5,5,5,5,5,5,5,5,5,5,5,5,5,9,10,9,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,10-14,2,1,5,5,5,5,3,5,4,9,10,9,5,5,5,5,7.16666666666667,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,-8,-5,-4,0,0,-2,0,-3.16666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.05555555555556,0,0.125,1,2,0.2,0,0.1,-1,0,0,-2,1,-1,0,0,10 cents,100 minutes,47 days,5,12,Richard is taller than Zach,57,Tuesday,B,C,C,C,C,Female,1,High School (or equivalent),HS_TS,56,53 - 59,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,5,6,7,1,1,5,3,7,4,2,6,4,3,8,6,2,7,5,1,1,7,8,5,4,6,3,2,1,4,2,6,3,5,7,2,6,5,8,7,3,4,1,5,8,9,7,4,3,2,1,6,3,4,2,1,2,-1,1,0 +55,99.224.218.61,R_6CDETRM6asYrSlE,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,1,6,4,2,4,3,4,5,3,3,1,3,1,3,4,3,2,3,2,4,2,3,5,4,3,3,4,3,3,3,4,3,2,2,3,3,2,2,3,20+,2,3,1,6,4,2,4,3,3.33333333333333,4,2,3,5,4,3,3,3.5,4,5,3,3,1,3,3.2,4,3,3,3,4,3,3.4,1,3,4,3,2,3,2,2.66666666666667,2,2,3,3,2,2,3,2.33333333333333,-1,-1,3,-1,-2,1,0,-0.166666666666667,0,2,0,0,-3,0,-0.2,-1,1,1,0,0,1,-1,0.333333333333333,-0.0111111111111111,-0.333333333333333,1.75,3,0,1,1,1,2,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,47,46 - 52,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,4,7,3,6,1,1,4,3,7,5,2,6,7,4,8,2,3,5,6,1,1,3,8,4,6,5,7,2,1,3,2,6,5,4,7,3,7,4,8,5,6,2,1,4,7,8,9,6,5,2,1,3,4,3,2,1,2,0,2,2 +56,134.41.96.233,R_6c0zmyhOdksAzvR,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,0,0,2,1,0,0,0,0,2,0,0,2,0,0,0,5,0,0,0,0,0,0,4,3,4,0,1,2,2,0,0,2,1,0,0,5,0,0,0,0,10-14,2,0,0,2,1,0,0,0,0.5,0,0,4,3,4,0,1,1.83333333333333,0,2,0,0,2,0,0.8,2,2,0,0,2,1,1.2,0,0,5,0,0,0,0,0.833333333333333,0,0,5,0,0,0,0,0.833333333333333,0,0,-2,-2,-4,0,-1,-1.33333333333333,-2,0,0,0,0,-1,-0.4,0,0,0,0,0,0,0,0,-0.577777777777778,-0.666666666666667,1.5,0,3,0.6,0.4,0.5,2,2,2,-2,-2,0,-2,0,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Tuesday,D,E,D,E,E,Female,1,College Diploma/Certificate,C_Ug,67,67 - 73,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,6,5,4,3,1,1,6,4,7,5,3,2,3,7,8,5,4,6,2,1,1,4,8,2,7,6,3,5,1,2,3,4,5,6,7,3,4,5,8,7,2,6,1,9,3,5,4,6,7,8,1,2,3,4,2,1,2,2,0,2 +57,129.222.112.69,R_5Q3nM2jp9LArI1a,self,02PVF,past,2,1,2,7,1,4,5,7,6,7,8,8,7,5,7,6,8,8,4,6,5,5,1,4,1,6,4,5,6,5,5,3,5,4,6,5,4,6,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,7,1,4,5,2.83333333333333,5,5,1,4,1,6,4,3.66666666666667,7,6,7,8,8,7,7.2,5,6,5,5,3,5,4.8,5,7,6,8,8,4,6,6.33333333333333,4,6,5,4,6,6,7,5.16666666666667,-3,-4,1,3,0,-2,1,-0.833333333333333,2,0,2,3,5,2,2.4,1,1,1,4,2,-2,-1,1.16666666666667,0.911111111111111,0.666666666666667,1,0,3,0.4,0.4,0.4,1,2,1,-2,1,0,-1,2,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,53,Wednesday,A,E,B,A,F,Female,1,College Diploma/Certificate,C_Ug,60,60 - 66,Canadian,Female,1,,,1,,1,,5,1,8,7,2,6,4,3,6,4,7,1,5,2,3,6,3,2,7,8,1,4,5,1,2,4,8,3,6,7,5,5,4,1,3,2,7,6,2,6,4,7,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,6,2,9,8,5,1,4,3,4,2,1,2,-1,0,1 +58,198.84.161.112,R_3Du74dFeGNl3Vyc,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,5,3,6,3,2,5,3,3,3,3,2,2,3,2,3,2,3,2,3,3,3,3,2,3,2,2,2,4,3,2,1,6,1,3,4,2,2,2,3,2,15-19,2,5,3,6,3,2,5,3,4,3,3,2,3,2,2,2,2.5,3,3,3,2,2,3,2.6,4,3,2,1,6,1,3.2,2,3,2,3,2,3,3,2.5,3,4,2,2,2,3,2,2.66666666666667,2,0,4,0,0,3,1,1.5,-1,0,1,1,-4,2,-0.6,-1,-1,0,1,0,0,1,-0.166666666666667,0.244444444444444,1.33333333333333,1.125,1,2,0.2,0.8,0.5,1,1,2,-1,-1,-1,-1,1,5 cents,100 minutes,24 days,2,11,Richard is shorter than Matt,47,Tuesday,D,E,B,B,B,Male,0,University - Graduate (Masters),grad_prof,58,53 - 59,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,7,2,6,1,1,2,6,7,5,3,4,3,6,8,2,5,4,7,1,1,3,8,6,5,7,4,2,1,2,4,3,6,5,7,7,5,2,8,6,3,4,1,3,4,5,2,9,8,7,1,6,2,3,4,1,1,1,1,1 +59,173.33.241.120,R_5J4RNznyirWMEfF,self,02PVF,past,2,1,2,4,4,3,4,6,5,6,8,3,5,8,5,3,9,9,9,7,3,1,2,7,2,2,1,3,3,3,6,2,2,1,2,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,4,4,3,4,2.66666666666667,3,1,2,7,2,2,1,2.83333333333333,6,5,6,8,3,5,5.6,3,3,3,6,2,2,3.4,8,5,3,9,9,9,7,7.16666666666667,1,2,2,1,1,1,1,1.33333333333333,-1,0,0,-3,2,1,3,-0.166666666666667,3,2,3,2,1,3,2.2,7,3,1,8,8,8,6,5.83333333333333,2.62222222222222,4,1.25,2,1,1,0.6,0.8,1,2,2,-2,1,-2,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,C,Male,0,University - Graduate (Masters),grad_prof,60,60 - 66,Canadian,Male,1,,,1,,1,,4,1,8,5,6,7,3,2,4,5,7,1,2,6,3,7,3,2,5,8,1,4,6,1,2,6,8,3,5,4,7,6,3,1,2,4,7,5,2,7,6,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,6,7,5,9,1,8,2,4,3,1,2,-1,2,2 +60,24.72.60.125,R_63D5OgaUrnExDI7,self,03VFP,future,0,0,1,3,5,7,3,7,0,8,4,7,5,1,6,6,5,4,7,3,1,1,0,5,4,1,2,2,0,3,3,6,5,1,2,7,3,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,3,5,7,3,2.66666666666667,1,1,0,5,4,1,2,2,7,0,8,4,7,5,5.2,2,0,3,3,6,5,2.8,1,6,6,5,4,7,3,4.83333333333333,1,2,7,3,0,0,1,2.16666666666667,-1,-1,1,-2,1,6,1,0.666666666666667,5,0,5,1,1,0,2.4,0,4,-1,2,4,7,2,2.66666666666667,1.91111111111111,1,0.875,1,1,0.6,0.8,0.7,1,1,2,-2,1,-1,-2,-1,10 cents,5 minutes,15 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,B,C,Male,0,High School (or equivalent),HS_TS,67,67 - 73,Canadian,Male,1,,,,1,,1,4,1,8,6,3,5,7,2,2,4,7,1,6,3,5,5,6,4,7,8,1,3,2,1,6,2,8,4,5,3,7,4,6,1,3,5,7,2,7,4,3,5,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,9,8,5,7,1,2,4,3,2,1,2,-1,1,2 +61,46.110.110.142,R_6XoWva3vJmwrgSl,self,03VFP,future,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,5,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0,0,0,0,0,1,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,5,0,0,1.83333333333333,3,0,0,0,0,0,1,0.5,0,0,0,0,0,0,0,-5,-1,0,0,-5,0,0,-1.83333333333333,-0.444444444444444,0.333333333333333,1.5,0,3,0.6,0.4,0.5,2,2,2,-2,0,-2,-2,0,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Monday,D,C,B,F,C,Male,0,University - Graduate (Masters),grad_prof,73,67 - 73,American,Male,1,,,,1,,1,2,1,8,6,3,5,4,7,4,6,7,1,3,2,5,4,5,7,2,8,1,6,3,1,3,6,8,2,4,7,5,4,3,1,6,2,7,5,4,7,3,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,2,3,6,9,7,1,8,2,4,3,1,2,0,2,2 +62,99.241.188.56,R_7uNFCO6KtDohgg2,self,02PVF,future,10,0,0,10,0,10,7,0,0,5,4,0,5,0,0,10,0,0,0,2,8,0,0,0,0,7,5,10,7,10,5,7,6,0,0,10,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,0,0,10,0,10,7,5,8,0,0,0,0,7,5,2.5,0,0,5,4,0,5,1.8,10,7,10,5,7,6,7.8,0,0,10,0,0,0,2,1.66666666666667,0,0,10,0,0,0,0,1.66666666666667,2,0,0,10,0,3,2,2.5,-10,-7,-5,-1,-7,-1,-6,0,0,0,0,0,0,2,0,-1.16666666666667,1,1.25,0,3,1,0,0.5,1,2,2,-2,0,0,-1,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,C,C,C,C,C,Female,1,University - Graduate (Masters),grad_prof,54,53 - 59,Canadian,Female,1,,,1,,,1,6,1,8,3,4,7,5,2,2,5,7,1,4,3,6,7,5,2,3,8,1,4,6,1,6,4,8,7,2,3,5,3,5,1,4,6,7,2,3,6,7,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,6,3,7,9,2,1,4,4,2,3,1,2,0,0,1 +63,143.244.122.244,R_7SisiLLTX8HUQdG,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,9,2,9,5,1,5,5,3,5,5,5,5,3,3,7,9,5,2,3,5,9,2,9,10,1,1,3,3,5,1,9,1,7,5,5,9,5,2,4,4,20+,2,9,2,9,5,1,5,5,5.16666666666667,9,2,9,10,1,1,3,5.33333333333333,3,5,5,5,5,3,4.6,3,5,1,9,1,7,3.8,3,7,9,5,2,3,5,4.83333333333333,5,5,9,5,2,4,4,5,0,0,0,-5,0,4,2,-0.166666666666667,0,0,4,-4,4,-4,0.8,-2,2,0,0,0,-1,1,-0.166666666666667,0.155555555555556,-0.333333333333333,-1.375,1,2,0,0.2,0.1,-2,-2,-2,-2,1,2,2,-2,10 cents,100 minutes,47 days,3,10,Richard is taller than Zach,35,Monday,C,E,A,F,B,Female,1,University - Undergraduate,C_Ug,59,53 - 59,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,5,3,6,1,1,5,4,7,6,2,3,5,6,8,7,3,2,4,1,1,3,8,7,2,6,5,4,1,4,2,5,6,3,7,5,2,7,8,3,6,4,1,8,5,4,6,7,9,3,1,2,3,2,4,1,2,-1,-2,-2 +64,24.86.12.98,R_51ExPwx99VTA8t0,self,03VFP,past,4,3,3,2,3,6,5,3,3,5,4,3,5,6,5,5,5,6,6,5,2,5,4,3,3,3,5,5,3,5,5,5,5,5,4,4,5,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,2,3,6,5,3.5,2,5,4,3,3,3,5,3.33333333333333,3,3,5,4,3,5,3.6,5,3,5,5,5,5,4.6,6,5,5,5,6,6,5,5.5,5,4,4,5,4,4,5,4.33333333333333,2,-2,-1,-1,0,3,0,0.166666666666667,-2,0,0,-1,-2,0,-1,1,1,1,0,2,2,0,1.16666666666667,0.111111111111111,0,0.25,0,3,1,0.2,0.6,0,0,0,-1,0,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,E,D,B,Male,0,High School (or equivalent),HS_TS,40,39 - 45,Canadian,Male,1,,,,1,1,,4,1,8,5,2,7,6,3,2,3,7,1,4,5,6,2,5,3,6,8,1,7,4,1,3,5,8,7,2,6,4,2,5,1,3,6,7,4,3,5,2,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,9,7,4,5,3,1,2,3,4,2,1,1,0,0,1 +65,98.254.176.121,R_65DiNnXjMRm9opH,self,01FPV,past,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1.16666666666667,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-0.166666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0555555555555556,0,0.375,0,2,0.2,0.2,0.2,0,-1,0,-1,-1,0,-2,0,10 cents,25 minutes,24 days,4,8,Richard is taller than Zach,35,Tuesday,A,C,A,B,E,Female,1,High School (or equivalent),HS_TS,73,67 - 73,American,Female,1,,1,,,1,,4,1,8,7,2,3,6,5,2,5,7,1,4,3,6,7,4,2,5,8,1,3,6,1,3,4,8,6,2,7,5,5,6,1,2,3,7,4,2,4,7,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,7,8,5,3,6,1,9,4,3,2,1,1,1,0,2 +66,67.80.34.146,R_1VkCpA4ZtAJiPyY,self,02PVF,future,6,6,7,6,7,7,6,6,8,7,5,6,6,6,5,6,6,8,6,7,6,7,7,6,7,7,6,7,6,8,8,8,8,6,7,6,7,7,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,7,6,6.5,6,7,7,6,7,7,6,6.66666666666667,6,8,7,5,6,6,6.4,7,6,8,8,8,8,7.4,6,5,6,6,8,6,7,6.16666666666667,6,7,6,7,7,5,7,6.33333333333333,0,-1,0,0,0,0,0,-0.166666666666667,-1,2,-1,-3,-2,-2,-1,0,-2,0,-1,1,1,0,-0.166666666666667,-0.444444444444444,-0.666666666666667,0.125,0,3,0.4,0.2,0.3,1,1,1,-1,1,1,1,0,10 cents,100 minutes,24 days,5,7,Richard is taller than Matt,57,Sunday,D,C,E,E,E,Female,1,High School (or equivalent),HS_TS,53,53 - 59,American,Female,1,,,1,,,1,2,1,8,6,5,4,3,7,6,4,7,1,5,3,2,2,6,5,7,8,1,3,4,1,2,3,8,7,4,5,6,5,6,1,2,4,7,3,6,3,7,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,6,8,9,3,4,1,5,2,3,4,1,1,-1,-1,-1 +67,99.237.227.30,R_6enUTHdqt8jqkQ9,self,02PVF,past,3,1,3,5,6,2,3,7,7,5,7,6,6,7,6,7,8,6,6,6,1,2,4,2,3,2,2,2,4,2,2,4,1,2,3,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,3,5,6,2,3,3.33333333333333,1,2,4,2,3,2,2,2.33333333333333,7,7,5,7,6,6,6.4,2,4,2,2,4,1,2.8,7,6,7,8,6,6,6,6.66666666666667,2,3,2,2,2,2,1,2.16666666666667,2,-1,-1,3,3,0,1,1,5,3,3,5,2,5,3.6,5,3,5,6,4,4,5,4.5,3.03333333333333,3.66666666666667,1.75,3,0,1,1,1,2,2,2,-2,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,College Diploma/Certificate,C_Ug,62,60 - 66,Canadian,Male,1,,,1,,1,,6,1,8,4,5,2,7,3,4,2,7,1,6,3,5,7,6,4,3,8,1,2,5,1,3,7,8,6,2,4,5,5,6,1,3,4,7,2,4,2,3,7,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,4,9,3,7,1,6,3,2,4,1,2,1,2,2 +68,24.80.152.201,R_6dFCig2dIm0MOvF,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,3,6,5,3,4,6,0,0,3,0,1,1,4,5,5,2,0,2,1,4,2,4,6,3,5,1,3,1,5,3,1,1,6,6,6,2,0,6,2,20+,2,5,3,6,5,3,4,6,4.33333333333333,4,2,4,6,3,5,1,4,0,0,3,0,1,1,0.8,3,1,5,3,1,1,2.6,4,5,5,2,0,2,1,3,6,6,6,2,0,6,2,4.33333333333333,1,1,2,-1,0,-1,5,0.333333333333333,-3,-1,-2,-3,0,0,-1.8,-2,-1,-1,0,0,-4,-1,-1.33333333333333,-0.933333333333333,1.33333333333333,1.25,2,1,1,0.6,0.8,1,-2,2,-2,-1,-2,-2,2,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,A,B,Male,0,University - Graduate (Masters),grad_prof,49,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,2,6,1,1,5,4,7,6,2,3,2,3,8,5,6,4,7,1,1,5,8,4,6,7,2,3,1,3,5,2,4,6,7,6,7,5,8,4,3,2,1,3,6,9,5,8,2,7,1,4,2,3,4,1,2,1,2,2 +69,67.85.244.6,R_3VplmHt5gie22yZ,self,01FPV,past,8,5,1,9,7,5,10,8,6,7,9,10,5,5,6,6,5,5,5,6,2,6,6,6,6,6,6,9,7,4,4,4,8,8,7,8,8,7,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,5,1,9,7,5,10,5.83333333333333,2,6,6,6,6,6,6,5.33333333333333,8,6,7,9,10,5,8,9,7,4,4,4,8,5.6,5,6,6,5,5,5,6,5.33333333333333,8,7,8,8,7,7,8,7.5,6,-1,-5,3,1,-1,4,0.5,-1,-1,3,5,6,-3,2.4,-3,-1,-2,-3,-2,-2,-2,-2.16666666666667,0.244444444444444,-0.333333333333333,0.875,0,3,0.2,0,0.1,1,1,1,-2,0,1,-2,1,10 cents,100 minutes,24 days,5,9,Richard is shorter than Matt,35,Monday,A,C,C,E,C,Female,1,University - Graduate (Masters),grad_prof,70,67 - 73,American,Female,1,,1,,,1,,5,1,8,6,2,3,4,7,3,5,7,1,4,6,2,7,3,6,5,8,1,4,2,1,2,3,8,4,5,7,6,6,3,1,2,5,7,4,3,4,6,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,9,2,3,6,1,5,4,2,3,1,2,0,-1,2 +70,184.169.60.167,R_6kLgt72pgtLfPne,self,01FPV,future,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,2,1,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,5,2,1,5,5,1,1,3.16666666666667,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-1,0,-4,-4,0,0,-2.16666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.722222222222222,0,0.75,2,1,0.6,0.8,0.7,0,2,0,-2,0,0,-2,0,10 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,F,D,Male,0,College Diploma/Certificate,C_Ug,61,60 - 66,Canadian,Male,1,,1,,,,1,7,1,8,4,6,2,3,5,2,6,7,1,3,5,4,4,6,2,5,8,1,3,7,1,2,6,8,5,7,3,4,6,2,1,4,3,7,5,7,2,5,4,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,9,7,5,2,8,1,6,3,2,4,1,2,0,0,2 +71,73.148.183.115,R_6JEGpSAGYZBdF5K,self,01FPV,future,0,5,0,0,3,5,4,6,3,5,5,1,3,5,2,0,5,4,4,6,0,3,1,0,1,3,2,4,5,3,5,1,1,3,1,1,3,4,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,5,0,0,3,5,4,2.16666666666667,0,3,1,0,1,3,2,1.33333333333333,6,3,5,5,1,3,4,4,5,3,5,1,1,3.6,5,2,0,5,4,4,6,3.33333333333333,3,1,1,3,4,0,1,2,0,2,-1,0,2,2,2,0.833333333333333,2,-2,2,0,0,2,0.4,2,1,-1,2,0,4,5,1.33333333333333,0.855555555555556,3,0.75,0,3,0.6,0.4,0.5,1,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,39,Saturday,D,C,B,C,C,Male,0,University - Undergraduate,C_Ug,72,67 - 73,American,Male,1,,1,,,,1,7,1,8,5,2,4,3,6,3,6,7,1,2,4,5,6,2,3,5,8,1,4,7,1,5,7,8,3,4,6,2,6,3,1,2,5,7,4,2,6,4,7,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,5,8,4,6,1,9,4,2,3,1,1,0,0,1 +72,23.248.115.101,R_5MtzZgsP8EizNib,self,02PVF,past,9,5,1,9,5,5,6,9,8,9,6,3,9,8,8,8,7,9,5,7,8,2,5,7,2,6,7,8,4,6,5,5,8,5,8,8,8,9,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,1,9,5,5,6,5.66666666666667,8,2,5,7,2,6,7,5,9,8,9,6,3,9,7,8,4,6,5,5,8,5.6,8,8,8,7,9,5,7,7.5,5,8,8,8,9,5,7,7.16666666666667,1,3,-4,2,3,-1,-1,0.666666666666667,1,4,3,1,-2,1,1.4,3,0,0,-1,0,0,0,0.333333333333333,0.8,0,0.375,1,2,1,0.2,0.6,1,1,1,-1,2,0,-1,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,E,D,A,Female,1,University - Undergraduate,C_Ug,45,39 - 45,Canadian,Female,1,,,1,,1,,4,1,8,5,7,6,3,2,2,3,7,1,5,4,6,4,5,6,7,8,1,2,3,1,4,7,8,3,6,5,2,2,6,1,3,4,7,5,6,3,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,9,3,2,4,6,1,5,2,3,4,1,1,-2,0,1 +73,207.161.30.64,R_62RS93zXyC4HDl3,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,6,1,4,4,6,7,4,1,1,5,1,1,1,1,1,3,1,1,4,3,2,1,1,7,1,1,2,2,1,1,1,1,1,1,1,4,1,1,3,1,5-9,2,6,1,4,4,6,7,4,4.66666666666667,2,1,1,7,1,1,2,2.16666666666667,1,1,5,1,1,1,1.8,2,1,1,1,1,1,1.2,1,1,3,1,1,4,3,1.83333333333333,1,1,4,1,1,3,1,1.83333333333333,4,0,3,-3,5,6,2,2.5,-1,0,4,0,0,0,0.6,0,0,-1,0,0,1,2,0,1.03333333333333,1.33333333333333,1.875,0,3,1,0.8,0.9,2,2,2,-2,-1,-2,-2,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,B,D,Female,1,University - Undergraduate,C_Ug,66,60 - 66,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,7,6,5,1,1,2,4,7,5,6,3,2,6,8,3,4,7,5,1,1,2,8,4,5,3,7,6,1,2,4,3,5,6,7,6,7,5,8,2,3,4,1,3,8,4,6,2,9,7,1,5,4,3,2,1,2,1,2,2 +74,172.58.135.254,R_58NfGisEaAzSJFu,self,03VFP,future,6,7,6,6,7,5,7,5,6,5,6,4,6,4,5,5,4,6,5,4,5,4,4,6,4,5,5,6,5,4,5,4,5,3,4,5,5,4,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,7,5,7,6.16666666666667,5,4,4,6,4,5,5,4.66666666666667,5,6,5,6,4,6,5.2,6,5,4,5,4,5,4.8,4,5,5,4,6,5,4,4.83333333333333,3,4,5,5,4,6,4,4.5,1,3,2,0,3,0,2,1.5,-1,1,1,1,0,1,0.4,1,1,0,-1,2,-1,0,0.333333333333333,0.744444444444444,1,-0.125,3,0,0.8,0.4,0.6,2,2,1,1,2,2,2,1,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,D,C,B,Male,0,University - Graduate (Masters),grad_prof,50,46 - 52,American,Male,1,,,,1,,1,6,1,8,2,7,5,4,3,5,4,7,1,2,3,6,2,5,4,3,8,1,6,7,1,6,2,8,7,5,4,3,5,4,1,3,6,7,2,4,5,7,3,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,7,8,3,6,5,1,2,4,2,3,1,-1,-2,-2,-2 +75,99.209.87.226,R_5ANNaaMEeRfcpy6,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,1,1,1,0,1,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,1,0,0,1,0,2,2,0,1,0,0,20+,2,0,0,1,1,1,0,1,0.5,0,0,0,2,0,0,1,0.333333333333333,0,0,0,0,0,1,0,1,0,1,0,0,1,0.4,6,0,0,0,0,0,0,1,0,2,2,0,1,0,0,0.833333333333333,0,0,1,-1,1,0,0,0.166666666666667,-1,0,-1,0,0,0,-0.4,6,-2,-2,0,-1,0,0,0.166666666666667,-0.0222222222222222,0,1,1,1,1,0.6,0.8,0,2,1,-2,1,-2,-2,0,10 cents,5 minutes,36 days,5,8,It's impossible to tell,47,Sunday,D,E,F,B,F,Female,1,College Diploma/Certificate,C_Ug,66,60 - 66,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,7,3,2,6,1,1,3,5,7,4,6,2,6,7,8,3,5,4,2,1,1,7,8,6,2,5,3,4,1,4,3,6,5,2,7,6,7,4,8,3,2,5,1,6,4,3,5,2,9,8,1,7,4,3,2,1,2,-1,2,2 +76,73.25.246.32,R_1FDaryfnKpCFkKB,self,03VFP,past,0,0,2,2,0,5,1,0,0,0,0,2,0,0,0,10,0,0,3,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,2,2,0,5,1,1.5,0,0,0,3,0,0,1,0.5,0,0,0,0,2,0,0.4,0,0,0,0,0,0,0,0,0,10,0,0,3,0,2.16666666666667,0,0,0,0,0,0,0,0,0,0,2,-1,0,5,0,1,0,0,0,0,2,0,0.4,0,0,10,0,0,3,0,2.16666666666667,1.18888888888889,0,1.125,1,2,0.8,0.8,0.8,1,2,0,-2,-1,0,-1,2,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,E,D,B,D,Female,1,University - PhD,grad_prof,73,67 - 73,American,Female,1,,,,1,1,,6,1,8,5,3,2,4,7,5,3,7,1,2,6,4,4,5,3,6,8,1,7,2,1,4,6,8,7,3,5,2,4,6,1,5,2,7,3,4,2,6,3,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,7,6,8,3,2,1,5,2,3,4,1,2,1,0,1 +77,24.77.49.246,R_5YjY0VJCzPNHvB7,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,1,1,6,2,4,3,5,1,3,2,1,2,1,1,5,3,2,4,3,4,1,1,6,1,3,3,5,2,4,2,2,3,2,4,4,2,4,4,3,20+,1,1,1,1,6,2,4,3,2.5,4,1,1,6,1,3,3,2.66666666666667,5,1,3,2,1,2,2.4,5,2,4,2,2,3,3,1,1,5,3,2,4,3,2.66666666666667,2,4,4,2,4,4,3,3.33333333333333,-3,0,0,0,1,1,0,-0.166666666666667,0,-1,-1,0,-1,-1,-0.6,-1,-3,1,1,-2,0,0,-0.666666666666667,-0.477777777777778,-0.333333333333333,0.5,1,2,1,0.2,0.6,0,1,1,-1,-1,0,-1,-1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,D,A,E,Male,0,High School (or equivalent),HS_TS,66,60 - 66,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,6,3,4,2,1,1,6,2,7,5,4,3,2,3,8,5,4,6,7,1,1,6,8,2,4,7,5,3,1,6,4,3,2,5,7,4,5,3,8,7,2,6,1,9,3,6,7,4,2,5,1,8,3,2,4,1,1,1,0,1 +78,99.233.212.7,R_3G2FLFviHwLyDTd,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Dislike a great deal,1,2,3,0,2,3,1,0,1,0,0,4,2,0,3,4,2,3,1,2,2,2,3,0,1,2,2,1,0,1,0,0,1,2,0,2,0,3,0,1,20+,-2,1,2,3,0,2,3,1,1.83333333333333,2,2,3,0,1,2,2,1.66666666666667,0,1,0,0,4,2,1,1,0,1,0,0,1,0.4,0,3,4,2,3,1,2,2.16666666666667,2,0,2,0,3,0,1,1.16666666666667,-1,0,0,0,1,1,-1,0.166666666666667,-1,1,-1,0,4,1,0.6,-2,3,2,2,0,1,1,1,0.588888888888889,0.333333333333333,0.125,0,2,1,0.6,0.8,1,1,1,-2,2,1,-1,-2,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,F,B,A,D,Female,1,High School (or equivalent),HS_TS,56,53 - 59,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,5,6,2,7,1,1,4,2,7,3,5,6,2,3,8,4,5,7,6,1,1,6,8,3,5,7,4,2,1,4,2,6,5,3,7,6,3,7,8,2,4,5,1,2,9,8,4,5,3,6,1,7,4,2,3,1,2,-2,-1,1 +79,75.159.23.32,R_1oBx43Lpqx4rzcg,self,01FPV,past,1,1,1,1,1,1,1,1,1,1,1,6,2,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,3,0,1,0,1,0,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1.16666666666667,1,1,1,1,6,2,2,1,1,1,2,3,0,1.6,1,1,1,1,1,1,1,1,1,0,1,0,1,2,2,0.833333333333333,0,-1,0,0,0,0,-1,-0.166666666666667,0,0,0,-1,3,2,0.4,0,1,0,1,0,-1,-1,0.166666666666667,0.133333333333333,0,1.625,0,2,0.8,0.8,0.8,2,2,2,-2,1,-2,-2,2,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Monday,D,E,B,A,D,Male,0,High School (or equivalent),HS_TS,35,32 - 38,Canadian,Male,1,,1,,,1,,5,1,8,6,7,3,4,2,5,6,7,1,3,2,4,7,3,6,5,8,1,4,2,1,3,6,8,2,7,4,5,2,4,1,6,3,7,5,5,6,7,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,8,9,5,4,1,7,2,4,3,1,2,-1,2,2 +80,104.189.85.218,R_6n2X6XMJ7kuJbpF,self,03VFP,future,1,1,2,1,1,1,2,4,1,1,5,6,4,1,5,5,4,1,4,3,3,2,2,2,2,1,4,5,1,6,2,4,1,9,5,5,5,10,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,1,1,1,2,1.16666666666667,3,2,2,2,2,1,4,2,4,1,1,5,6,4,3.4,5,1,6,2,4,1,3.6,1,5,5,4,1,4,3,3.33333333333333,9,5,5,5,10,5,8,6.5,-2,-1,0,-1,-1,0,-2,-0.833333333333333,-1,0,-5,3,2,3,-0.2,-8,0,0,-1,-9,-1,-5,-3.16666666666667,-1.4,-1.33333333333333,0.625,0,3,1,0.4,0.7,1,1,1,-1,0,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,A,A,C,Male,0,University - Undergraduate,C_Ug,68,67 - 73,American,Male,1,,,,1,,1,3,1,8,2,4,5,6,7,5,3,7,1,4,6,2,7,5,4,3,8,1,2,6,1,5,4,8,7,2,6,3,5,3,1,4,2,7,6,5,2,3,4,7,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,2,7,9,8,1,6,3,4,2,1,1,0,0,1 +81,173.183.128.251,R_7zjm4Hg0EXB9VoR,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,3,2,3,0,0,1,3,1,1,0,1,1,0,1,1,0,0,3,1,3,1,2,3,1,1,1,1,2,1,0,1,1,0,1,1,0,0,1,1,20+,2,3,3,2,3,0,0,1,1.83333333333333,3,1,2,3,1,1,1,1.83333333333333,3,1,1,0,1,1,1.2,1,2,1,0,1,1,1,0,1,1,0,0,3,1,0.833333333333333,0,1,1,0,0,1,1,0.5,0,2,0,0,-1,-1,0,0,2,-1,0,0,0,0,0.2,0,0,0,0,0,2,0,0.333333333333333,0.177777777777778,0,1.875,1,2,0.2,0.2,0.2,2,2,2,-2,-2,-2,-2,1,10 cents,5 minutes,24 days,2,8,Richard is as tall as Matt,44,Monday,A,B,C,B,B,Male,0,Trade School,HS_TS,66,60 - 66,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,5,6,3,1,1,2,6,7,4,3,5,3,4,8,2,6,5,7,1,1,5,8,6,3,2,7,4,1,5,4,6,2,3,7,5,6,7,8,2,4,3,1,7,3,6,8,4,5,9,1,2,3,2,4,1,2,2,2,2 +82,199.241.129.19,R_6kwdsauEnWtYIMR,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,5,6,7,7,7,5,7,6,5,6,5,7,5,7,7,6,5,7,7,5,7,5,6,5,7,5,5,5,5,6,5,7,5,6,8,6,5,7,6,20+,2,6,5,6,7,7,7,5,6.33333333333333,5,7,5,6,5,7,5,5.83333333333333,7,6,5,6,5,7,5.8,5,5,5,6,5,7,5.2,5,7,7,6,5,7,7,6.16666666666667,5,6,8,6,5,7,6,6.16666666666667,1,-2,1,1,2,0,0,0.5,2,1,0,0,0,0,0.6,0,1,-1,0,0,0,1,0,0.366666666666667,0.333333333333333,0,0,2,0.4,0.2,0.3,0,0,1,0,0,1,0,0,10 cents,75 minutes,24 days,5,7,It's impossible to tell,44,Saturday,C,D,E,C,D,Male,0,Trade School,HS_TS,59,53 - 59,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,5,6,4,3,1,1,3,4,7,5,2,6,4,3,8,5,2,6,7,1,1,6,8,2,7,5,4,3,1,4,3,5,2,6,7,2,5,6,8,7,3,4,1,7,9,2,3,4,8,6,1,5,2,3,4,1,0,0,-1,0 +83,73.79.30.157,R_5exH3LNChBKRKhT,self,02PVF,future,6,6,9,9,8,8,8,8,7,8,5,9,8,9,7,9,9,8,6,8,6,6,8,7,7,8,8,6,7,8,7,6,7,9,7,8,7,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,9,9,8,8,8,7.66666666666667,6,6,8,7,7,8,8,7,8,7,8,5,9,8,7.4,6,7,8,7,6,7,6.8,9,7,9,9,8,6,8,8,9,7,8,7,9,9,8,8.16666666666667,0,0,1,2,1,0,0,0.666666666666667,2,0,0,-2,3,1,0.6,0,0,1,2,-1,-3,0,-0.166666666666667,0.366666666666667,0.333333333333333,1.75,1,1,0.4,0.2,0.3,2,2,2,-2,-1,-2,-2,1,10 cents,5 minutes,15 days,2,8,Zach is shorter than Matt,47,Wednesday,D,F,E,F,A,Female,1,College Diploma/Certificate,C_Ug,60,60 - 66,American,Female,1,,,1,,,1,2,1,8,4,5,7,6,3,4,3,7,1,2,5,6,4,5,3,7,8,1,2,6,1,5,6,8,2,4,7,3,5,4,1,2,6,7,3,6,2,5,4,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,4,6,3,9,1,8,2,3,4,1,2,1,2,2 +84,129.222.157.48,R_6Rgsk9aXRKJeJrl,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,3,2,3,1,2,4,2,3,3,4,2,1,2,1,2,1,1,1,1,1,3,3,2,1,4,3,1,1,5,5,2,3,4,3,2,5,5,3,20+,2,2,2,3,2,3,1,2,2.16666666666667,1,1,3,3,2,1,4,1.83333333333333,4,2,3,3,4,2,3.2,3,1,1,5,5,2,3,1,2,1,2,1,1,1,1.33333333333333,3,4,3,2,5,5,3,3.66666666666667,1,1,0,-1,1,0,-2,0.333333333333333,1,1,2,-2,-1,0,0.2,-2,-2,-2,0,-4,-4,-2,-2.33333333333333,-0.6,-1.33333333333333,0.125,0,3,0,0,0,0,0,-1,-1,0,0,-1,0,10 cents,100 minutes,24 days,2,11,Richard is as tall as Matt,35,Tuesday,F,A,A,C,C,Female,1,High School (or equivalent),HS_TS,63,60 - 66,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,6,3,5,2,1,1,4,6,7,2,5,3,5,7,8,2,4,3,6,1,1,6,8,4,2,3,7,5,1,2,4,3,6,5,7,4,6,7,8,2,3,5,1,5,6,9,4,3,7,8,1,2,3,2,4,1,1,0,0,1 +85,50.100.223.169,R_6R1zqGwKWiiGVQ5,self,03VFP,past,4,0,0,5,0,4,3,3,0,3,0,4,2,1,2,3,0,0,3,1,5,0,0,5,0,2,3,5,0,3,0,5,1,0,4,5,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0,0,5,0,4,3,2.16666666666667,5,0,0,5,0,2,3,2,3,0,3,0,4,2,2,5,0,3,0,5,1,2.6,1,2,3,0,0,3,1,1.5,0,4,5,0,0,0,2,1.5,-1,0,0,0,0,2,0,0.166666666666667,-2,0,0,0,-1,1,-0.6,1,-2,-2,0,0,3,-1,0,-0.144444444444444,0,1.5,1,2,1,0.6,0.8,1,2,2,-2,0,-2,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,C,B,C,Female,1,High School (or equivalent),HS_TS,66,60 - 66,Canadian,Female,1,,,,1,1,,4,1,8,5,2,3,7,6,4,6,7,1,2,5,3,6,4,7,3,8,1,5,2,1,2,7,8,6,4,3,5,4,6,1,3,5,7,2,4,5,3,6,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,4,7,6,8,5,1,3,2,3,4,1,2,0,2,2 +86,174.118.49.14,R_7oOOr1xDElQ9VbH,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Neither like nor dislike,6,7,7,6,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,6,7,7,7,7,6,7,6,6,6,7,7,7,7,7,7,6,7,10-14,0,6,7,7,6,7,6,6,6.5,7,7,6,7,7,7,7,6.83333333333333,6,6,6,6,6,6,6,6,7,6,6,6,7,6.2,6,6,6,6,6,6,6,6,7,7,7,7,7,6,7,6.83333333333333,-1,0,1,-1,0,-1,-1,-0.333333333333333,0,-1,0,0,0,-1,-0.2,-1,-1,-1,-1,-1,0,-1,-0.833333333333333,-0.455555555555556,-1,0,1,1,0.2,0.2,0.2,1,1,1,1,1,1,1,1,5 cents,25 minutes,24 days,4,10,Richard is as tall as Matt,39,Sunday,C,C,C,B,C,Male,0,High School (or equivalent),HS_TS,24,18 - 24,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,6,4,3,1,1,2,3,7,6,4,5,7,2,8,6,3,4,5,1,1,4,8,7,3,5,2,6,1,4,6,5,2,3,7,4,5,2,8,6,3,7,1,3,7,2,8,5,9,6,1,4,2,3,4,1,-1,-1,-1,-1 +87,129.222.126.173,R_37KKsBzNWPCVLDH,self,03VFP,past,0,0,0,2,2,0,1,0,0,0,0,5,1,0,5,0,0,8,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,2,0,1,0.666666666666667,0,0,0,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,5,0,0,8,5,2,3,0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0.666666666666667,0,0,0,0,5,1,1,0,5,0,0,8,5,2,3,1.55555555555556,1.33333333333333,1.625,0,3,0.6,0.8,0.7,1,2,1,-2,-2,-2,-2,1,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Monday,D,A,B,B,D,Female,1,Trade School,HS_TS,71,67 - 73,American,Female,1,,,,1,1,,4,1,8,5,6,7,2,3,3,5,7,1,2,6,4,3,7,4,5,8,1,2,6,1,2,6,8,4,3,5,7,5,4,1,6,3,7,2,6,7,4,2,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,8,3,7,5,6,1,2,3,4,2,1,2,2,2,2 +88,204.101.206.34,R_5HzCHr5ELqtmrex,self,03VFP,future,1,1,3,8,1,4,5,8,9,8,8,1,7,1,2,8,7,2,3,5,4,1,4,8,2,4,7,4,1,4,2,1,1,1,8,9,5,1,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,3,8,1,4,5,3,4,1,4,8,2,4,7,3.83333333333333,8,9,8,8,1,7,6.8,4,1,4,2,1,1,2.4,1,2,8,7,2,3,5,3.83333333333333,1,8,9,5,1,6,1,5,-3,0,-1,0,-1,0,-2,-0.833333333333333,4,8,4,6,0,6,4.4,0,-6,-1,2,1,-3,4,-1.16666666666667,0.8,2.66666666666667,-0.25,0,3,0.6,0.8,0.7,1,-1,-1,-1,1,1,-1,-1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,B,B,Female,1,University - Undergraduate,C_Ug,53,53 - 59,Canadian,Female,1,,,,1,,1,5,1,8,6,7,4,3,2,4,2,7,1,6,3,5,2,6,7,5,8,1,4,3,1,3,6,8,7,5,4,2,4,5,1,2,3,7,6,5,2,4,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,4,9,3,5,6,1,2,2,3,4,1,1,-1,-1,1 +89,108.51.245.167,R_5IbEAPOo0nw9V4N,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,0,0,1,2,4,1,1,3,1,1,1,1,1,1,4,1,2,5,2,1,0,0,2,2,3,1,3,3,2,1,1,1,1,1,1,1,1,1,1,20+,2,4,0,0,1,2,4,1,1.83333333333333,1,0,0,2,2,3,1,1.33333333333333,1,3,1,1,1,1,1.4,3,3,2,1,1,1,2,1,1,4,1,2,5,2,2.33333333333333,1,1,1,1,1,1,1,1,3,0,0,-1,0,1,0,0.5,-2,0,-1,0,0,0,-0.6,0,0,3,0,1,4,1,1.33333333333333,0.411111111111111,0.333333333333333,1.125,3,0,1,1,1,0,2,1,-2,-1,0,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,68,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,2,4,3,7,1,1,6,5,7,4,2,3,6,5,8,2,3,4,7,1,1,2,8,5,3,4,6,7,1,4,3,6,5,2,7,5,3,2,8,6,7,4,1,5,3,2,9,6,8,4,1,7,2,3,4,1,2,1,0,2 +90,70.92.78.134,R_5ezUaljEyDE2Zax,self,03VFP,future,1,1,1,4,1,1,1,1,1,4,1,2,2,1,1,2,1,1,1,2,1,1,1,3,0,2,2,1,1,2,1,1,1,5,5,4,4,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,4,1,1,1,1.5,1,1,1,3,0,2,2,1.33333333333333,1,1,4,1,2,2,1.8,1,1,2,1,1,1,1.2,1,1,2,1,1,1,2,1.16666666666667,5,5,4,4,7,6,6,5.16666666666667,0,0,0,1,1,-1,-1,0.166666666666667,0,0,2,0,1,1,0.6,-4,-4,-2,-3,-6,-5,-4,-4,-1.07777777777778,-1.33333333333333,-0.875,0,3,0.4,0.2,0.3,-1,-1,0,2,0,1,1,-1,10 cents,100 minutes,24 days,4,8,It's impossible to tell,57,Tuesday,C,B,C,B,F,Female,1,High School (or equivalent),HS_TS,70,67 - 73,American,Female,1,,,,1,,1,6,1,8,5,3,2,4,7,6,3,7,1,5,4,2,3,4,7,6,8,1,5,2,1,3,2,8,5,7,4,6,4,6,1,5,3,7,2,7,4,5,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,9,4,8,5,1,7,4,3,2,1,-2,0,-1,-1 +91,76.30.206.204,R_1lhmDAo7szHMAeJ,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,2,3,6,3,6,3,3,6,8,6,5,7,6,8,6,8,5,7,4,4,2,2,2,2,2,2,2,5,5,5,5,5,5,1,1,2,2,1,2,1,20+,1,2,3,6,3,6,3,3,3.83333333333333,2,2,2,2,2,2,2,2,6,8,6,5,7,6,6.4,5,5,5,5,5,5,5,8,6,8,5,7,4,4,6.33333333333333,1,1,2,2,1,2,1,1.5,0,1,4,1,4,1,1,1.83333333333333,1,3,1,0,2,1,1.4,7,5,6,3,6,2,3,4.83333333333333,2.68888888888889,1.66666666666667,0.25,1,2,0.4,0.2,0.3,0,-1,1,-1,1,0,-1,1,10 cents,5 minutes,24 days,3,11,It's impossible to tell,47,Tuesday,D,C,E,E,E,Male,0,High School (or equivalent),HS_TS,69,67 - 73,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,7,3,6,5,1,1,5,6,7,4,3,2,4,7,8,6,5,2,3,1,1,7,8,6,2,4,3,5,1,6,3,2,4,5,7,7,5,3,8,2,4,6,1,8,3,2,9,6,7,4,1,5,4,2,3,1,1,-1,0,1 +92,99.44.246.251,R_6LSQzj8XrtffVq0,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,0,0,2,2,1,1,3,1,2,0,1,1,2,2,0,2,2,3,1,2,0,1,0,2,2,1,3,1,2,2,1,0,2,1,0,2,0,2,0,20+,2,2,0,0,2,2,1,1,1.16666666666667,2,0,1,0,2,2,1,1.16666666666667,3,1,2,0,1,1,1.4,3,1,2,2,1,0,1.8,2,2,0,2,2,3,1,1.83333333333333,2,1,0,2,0,2,0,1.16666666666667,0,0,-1,2,0,-1,0,0,0,0,0,-2,0,1,-0.4,0,1,0,0,2,1,1,0.666666666666667,0.0888888888888889,0.666666666666667,1,0,3,0.4,0.4,0.4,0,2,2,-2,0,1,-2,1,10 cents,100 minutes,24 days,2,11,It's impossible to tell,47,Tuesday,D,C,F,B,E,Male,0,High School (or equivalent),HS_TS,62,60 - 66,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,3,2,5,1,1,5,6,7,4,3,2,5,2,8,6,4,7,3,1,1,4,8,2,6,5,7,3,1,4,5,6,2,3,7,2,6,7,8,5,4,3,1,6,9,3,7,5,8,4,1,2,2,3,4,1,2,0,-1,2 +93,149.76.79.180,R_5iqY1cmBomefnTf,self,03VFP,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,2,1,0.8,0.6,0.7,0,0,0,-2,0,-1,-1,-2,5 cents,5 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,D,B,B,B,F,Female,1,University - Graduate (Masters),grad_prof,56,53 - 59,American,Female,1,,,,1,1,,2,1,8,6,3,4,7,5,4,6,7,1,3,2,5,5,6,2,7,8,1,4,3,1,7,3,8,5,2,4,6,3,5,1,4,2,7,6,2,3,6,4,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,6,9,4,8,1,7,3,2,4,1,2,0,1,1 +94,99.238.39.97,R_1eM9ErpbFJmpZVn,self,03VFP,future,2,1,1,4,2,3,2,2,1,2,2,3,2,5,2,3,2,5,4,4,6,1,3,4,3,5,2,3,1,3,1,2,2,5,3,2,2,4,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,4,2,3,2,2.16666666666667,6,1,3,4,3,5,2,3.66666666666667,2,1,2,2,3,2,2,3,1,3,1,2,2,2,5,2,3,2,5,4,4,3.5,5,3,2,2,4,6,3,3.66666666666667,-4,0,-2,0,-1,-2,0,-1.5,-1,0,-1,1,1,0,0,0,-1,1,0,1,-2,1,-0.166666666666667,-0.555555555555556,0.333333333333333,0.25,3,0,1,0.2,0.6,0,0,0,-1,-1,0,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,D,D,B,B,Female,1,University - Undergraduate,C_Ug,48,46 - 52,Canadian,Female,1,,,,1,,1,2,1,8,3,4,6,7,5,2,4,7,1,6,5,3,3,4,6,7,8,1,5,2,1,2,3,8,7,5,6,4,4,6,1,5,2,7,3,5,2,7,6,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,3,5,6,4,2,1,8,2,4,3,1,1,1,0,1 +95,172.219.33.223,R_54hk4HwsI1mdYfD,self,03VFP,future,1,1,1,1,1,2,2,1,1,2,1,2,2,6,1,1,6,3,2,3,1,1,1,2,1,7,1,1,1,1,2,2,1,5,7,4,5,8,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,2,2,1.16666666666667,1,1,1,2,1,7,1,2.16666666666667,1,1,2,1,2,2,1.4,1,1,1,2,2,1,1.4,6,1,1,6,3,2,3,3.16666666666667,5,7,4,5,8,6,6,5.83333333333333,0,0,0,-1,0,-5,1,-1,0,0,1,-1,0,1,0,1,-6,-3,1,-5,-4,-3,-2.66666666666667,-1.22222222222222,-0.333333333333333,0.75,0,3,0.2,0,0.1,0,1,1,-2,-1,-1,-1,-1,10 cents,100 minutes,24 days,3,10,It's impossible to tell,35,Monday,B,D,D,F,F,Female,1,College Diploma/Certificate,C_Ug,59,53 - 59,Canadian,Female,1,,,,1,,1,5,1,8,7,6,3,2,4,6,5,7,1,3,4,2,6,2,3,5,8,1,4,7,1,5,3,8,6,4,2,7,6,5,1,2,3,7,4,6,7,2,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,2,9,3,7,5,1,4,2,4,3,1,2,1,1,1 +96,172.56.97.60,R_6pLZtUdBgIwX2ut,self,02PVF,future,4,4,6,7,5,5,5,7,6,4,6,4,7,5,7,6,4,6,5,8,4,4,7,6,4,5,6,4,5,5,6,6,4,4,6,6,6,5,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,7,5,5,5,5.16666666666667,4,4,7,6,4,5,6,5,7,6,4,6,4,7,5.4,4,5,5,6,6,4,5.2,5,7,6,4,6,5,8,5.5,4,6,6,6,5,4,7,5.16666666666667,0,0,-1,1,1,0,-1,0.166666666666667,3,1,-1,0,-2,3,0.2,1,1,0,-2,1,1,1,0.333333333333333,0.233333333333333,1,0.625,0,3,0.8,0,0.4,0,1,1,-2,1,0,0,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,57,Sunday,C,A,E,A,E,Female,1,College Diploma/Certificate,C_Ug,49,46 - 52,American,Female,1,,,1,,,1,7,1,8,4,5,6,3,2,4,3,7,1,6,2,5,5,4,3,2,8,1,7,6,1,2,3,8,7,6,4,5,6,2,1,5,3,7,4,7,2,4,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,4,2,8,5,7,1,6,2,3,4,1,2,-1,0,0 +97,174.116.49.13,R_7LZIymYpGdDtFZn,self,03VFP,past,5,4,5,7,7,5,5,5,6,4,5,5,5,5,7,6,5,4,4,5,5,5,5,7,6,5,5,6,7,4,5,5,5,6,7,5,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,7,7,5,5,5.5,5,5,5,7,6,5,5,5.5,5,6,4,5,5,5,5,6,7,4,5,5,5,5.4,5,7,6,5,4,4,5,5.16666666666667,6,7,5,5,5,4,5,5.33333333333333,0,-1,0,0,1,0,0,0,-1,-1,0,0,0,0,-0.4,-1,0,1,0,-1,0,0,-0.166666666666667,-0.188888888888889,0,1.375,3,0,1,0.2,0.6,0,2,2,-2,-1,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,D,B,F,C,Male,0,University - Undergraduate,C_Ug,36,32 - 38,Canadian,Male,1,,,,1,1,,4,1,8,3,6,5,2,7,6,2,7,1,3,5,4,2,3,7,4,8,1,6,5,1,3,4,8,5,2,7,6,2,4,1,6,5,7,3,4,2,6,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,2,9,4,6,3,1,8,2,3,4,1,2,1,1,2 +98,207.6.57.139,R_7ZOfCe8fRgdClSS,self,03VFP,future,2,2,3,9,4,4,3,6,7,4,5,6,4,4,5,7,2,2,5,4,4,2,3,8,4,6,2,6,5,4,6,5,6,6,7,8,2,1,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,9,4,4,3,4,4,2,3,8,4,6,2,4.5,6,7,4,5,6,4,5.6,6,5,4,6,5,6,5.2,4,5,7,2,2,5,4,4.16666666666667,6,7,8,2,1,7,4,5.16666666666667,-2,0,0,1,0,-2,1,-0.5,0,2,0,-1,1,-2,0.4,-2,-2,-1,0,1,-2,0,-1,-0.366666666666667,-0.333333333333333,0.5,0,3,1,0.6,0.8,0,0,1,-2,1,-1,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,B,B,B,B,Male,0,University - Graduate (Masters),grad_prof,47,46 - 52,Canadian,Male,1,,,,1,,1,2,1,8,7,6,4,3,5,5,4,7,1,3,6,2,4,6,7,3,8,1,2,5,1,5,3,8,6,4,2,7,2,3,1,4,5,7,6,4,6,5,3,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,8,4,7,5,1,9,2,3,4,1,2,-1,1,1 +99,38.213.168.18,R_7RjrJaHJ2XV1ieG,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,5,6,8,8,8,7,7,7,9,8,10,6,8,7,8,8,8,9,6,6,8,7,7,6,8,6,7,8,8,8,8,7,8,6,8,6,7,8,7,8,5-9,2,5,6,8,8,8,7,7,7,8,7,7,6,8,6,7,7,7,9,8,10,6,8,8,8,8,8,8,7,8,7.8,7,8,8,8,9,6,6,7.66666666666667,6,8,6,7,8,7,8,7,-3,-1,1,2,0,1,0,0,-1,1,0,2,-1,0,0.2,1,0,2,1,1,-1,-2,0.666666666666667,0.288888888888889,-0.666666666666667,0.75,1,2,1,0.8,0.9,0,1,2,-2,2,1,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,E,Male,0,University - Graduate (Masters),grad_prof,32,32 - 38,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,2,3,5,4,1,1,5,6,7,2,4,3,4,7,8,5,2,3,6,1,1,3,8,7,5,2,4,6,1,5,2,6,4,3,7,2,4,7,8,5,6,3,1,9,6,3,7,4,8,5,1,2,4,2,3,1,2,-2,-1,2 +100,73.105.89.205,R_7y9qL4QO62uZFM6,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,1,8,1,6,5,2,6,6,2,1,8,1,6,1,1,7,1,4,1,1,1,8,1,6,6,1,4,1,4,1,5,1,8,1,7,6,2,2,20+,1,3,1,1,8,1,6,5,3.33333333333333,1,1,1,8,1,6,6,3,2,6,6,2,1,8,3.4,1,4,1,4,1,5,2.2,1,6,1,1,7,1,4,2.83333333333333,1,8,1,7,6,2,2,4.16666666666667,2,0,0,0,0,0,-1,0.333333333333333,1,2,5,-2,0,3,1.2,0,-2,0,-6,1,-1,2,-1.33333333333333,0.0666666666666667,1.33333333333333,0.375,0,2,0.4,0.2,0.3,1,0,0,-1,0,0,-1,0,10 cents,100 minutes,15 days,5,11,Richard is taller than Matt,47,Wednesday,B,C,D,B,C,Female,1,College Diploma/Certificate,C_Ug,68,67 - 73,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,4,6,2,1,1,2,5,7,6,4,3,7,5,8,6,2,4,3,1,1,5,8,6,7,2,4,3,1,6,3,5,2,4,7,4,3,6,8,5,2,7,1,7,5,8,4,6,3,9,1,2,3,2,4,1,1,0,0,1 +101,154.5.244.254,R_7gSFCwEcBtweZHd,self,01FPV,future,3,3,4,3,4,4,4,3,3,3,4,3,3,4,3,4,4,3,3,3,4,3,3,4,5,3,4,4,3,4,3,3,3,4,2,3,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,4,4,4,3.5,4,3,3,4,5,3,4,3.66666666666667,3,3,3,4,3,3,3.2,4,3,4,3,3,3,3.4,4,3,4,4,3,3,3,3.5,4,2,3,4,3,4,3,3.33333333333333,-1,0,1,-1,-1,1,0,-0.166666666666667,-1,0,-1,1,0,0,-0.2,0,1,1,0,0,-1,0,0.166666666666667,-0.0666666666666667,0,0.5,0,3,0.4,0.4,0.4,1,1,1,0,0,1,-1,1,10 cents,100 minutes,24 days,5,10,Zach is shorter than Matt,47,Monday,B,B,B,B,B,Female,1,High School (or equivalent),HS_TS,72,67 - 73,Canadian,Female,1,,1,,,,1,5,1,8,6,4,2,3,7,5,4,7,1,6,3,2,2,3,4,5,8,1,6,7,1,4,6,8,7,2,3,5,6,4,1,2,5,7,3,4,3,7,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,2,8,5,7,4,1,6,4,2,3,1,0,0,-1,1 +102,172.58.128.234,R_5KQUYMXebvCbJoB,self,02PVF,future,8,8,9,9,9,9,9,1,9,7,7,7,8,8,8,10,9,8,10,10,9,9,9,10,9,9,9,9,5,5,8,6,8,9,9,9,10,9,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,9,9,9,9,9,8.66666666666667,9,9,9,10,9,9,9,9.16666666666667,1,9,7,7,7,8,6.2,9,5,5,8,6,8,6.6,8,8,10,9,8,10,10,8.83333333333333,9,9,9,10,9,9,10,9.16666666666667,-1,-1,0,-1,0,0,0,-0.5,-8,4,2,-1,1,0,-0.4,-1,-1,1,-1,-1,1,0,-0.333333333333333,-0.411111111111111,0,-0.125,3,0,1,0.8,0.9,0,0,-1,0,-1,1,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Male,0,University - Graduate (Masters),grad_prof,41,39 - 45,American,Male,1,,,1,,,1,2,1,8,5,3,6,7,4,3,2,7,1,4,5,6,3,4,2,6,8,1,7,5,1,7,4,8,2,5,6,3,5,4,1,3,2,7,6,3,6,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,3,8,7,6,5,1,4,2,3,4,1,0,1,-1,-1 +103,23.16.156.64,R_7jTMOqiIIIRNtBP,self,03VFP,future,7,1,4,8,6,5,5,6,4,6,6,4,4,1,2,2,3,2,1,2,1,2,2,3,2,1,2,1,2,2,1,2,2,2,2,3,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1,4,8,6,5,5,5.16666666666667,1,2,2,3,2,1,2,1.83333333333333,6,4,6,6,4,4,5.2,1,2,2,1,2,2,1.6,1,2,2,3,2,1,2,1.83333333333333,2,2,3,2,3,2,2,2.33333333333333,6,-1,2,5,4,4,3,3.33333333333333,5,2,4,5,2,2,3.6,-1,0,-1,1,-1,-1,0,-0.5,2.14444444444444,1.66666666666667,0.625,0,3,0.4,0.2,0.3,1,1,-1,-1,0,-1,-1,1,10 cents,100 minutes,24 days,2,10,It's impossible to tell,47,Tuesday,D,D,C,D,F,Female,1,College Diploma/Certificate,C_Ug,67,67 - 73,Canadian,Female,1,,,,1,,1,4,1,8,5,2,6,3,7,3,4,7,1,2,6,5,4,3,7,5,8,1,2,6,1,5,4,8,2,7,6,3,6,5,1,2,4,7,3,4,5,2,7,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,9,6,2,3,1,5,3,4,2,1,1,0,1,1 +104,68.185.177.98,R_7EEgbd5si62ndeJ,self,01FPV,past,6,3,2,6,5,5,4,5,6,5,4,5,5,4,4,4,4,4,6,5,5,4,4,6,4,5,5,7,3,5,4,5,5,4,3,6,4,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,2,6,5,5,4,4.5,5,4,4,6,4,5,5,4.66666666666667,5,6,5,4,5,5,5,7,3,5,4,5,5,4.8,4,4,4,4,4,6,5,4.33333333333333,4,3,6,4,4,4,5,4.16666666666667,1,-1,-2,0,1,0,-1,-0.166666666666667,-2,3,0,0,0,0,0.2,0,1,-2,0,0,2,0,0.166666666666667,0.0666666666666667,-0.333333333333333,0.625,1,2,0.4,0.4,0.4,0,1,0,-2,0,-1,-1,0,10 cents,5 minutes,24 days,2,8,It's impossible to tell,39,Tuesday,D,D,D,F,D,Female,1,High School (or equivalent),HS_TS,69,67 - 73,American,Female,1,,1,,,1,,5,1,8,7,4,6,2,3,6,3,7,1,5,4,2,7,3,4,5,8,1,6,2,1,6,7,8,4,3,2,5,4,3,1,2,5,7,6,2,6,7,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,6,5,9,4,8,1,3,2,4,3,1,2,0,1,1 +105,142.190.18.210,R_7o5MYlhXW8OjpUL,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10-14,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.666666666666667,-0.666666666666667,0.5,0,3,0.2,0.2,0.2,1,1,1,-1,2,0,0,2,10 cents,100 minutes,24 days,4,11,It's impossible to tell,35,Tuesday,A,C,D,B,A,Female,1,Trade School,HS_TS,69,67 - 73,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,7,3,4,2,1,1,3,5,7,2,6,4,6,3,8,7,4,5,2,1,1,4,8,6,7,2,3,5,1,5,3,2,6,4,7,3,7,2,8,5,6,4,1,4,9,2,3,6,8,7,1,5,3,4,2,1,1,-2,0,0 +106,70.77.254.143,R_60eskoiyY6xqMFa,self,01FPV,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,2,0.6,0.8,0.7,1,2,2,-2,-2,-2,-2,1,10 cents,100 minutes,15 days,5,8,Richard is shorter than Matt,57,Sunday,D,E,B,B,A,Male,0,College Diploma/Certificate,C_Ug,53,53 - 59,Canadian,Male,1,,1,,,1,,4,1,8,3,7,5,6,2,3,5,7,1,2,4,6,6,2,3,5,8,1,7,4,1,7,2,8,3,6,5,4,3,5,1,2,6,7,4,4,7,6,3,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,3,7,6,4,8,1,2,2,3,4,1,2,2,2,2 +107,184.147.94.244,R_3HcQj4gzXVVi3AO,self,01FPV,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.125,3,0,1,0.8,0.9,2,-2,2,-1,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,F,B,B,D,Male,0,University - Undergraduate,C_Ug,42,39 - 45,Canadian,Male,1,,1,,,,1,3,1,8,7,6,5,4,2,5,2,7,1,6,3,4,6,5,3,4,8,1,7,2,1,6,5,8,3,4,2,7,3,2,1,6,5,7,4,6,3,7,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,6,3,8,7,4,1,5,3,2,4,1,1,0,2,2 +108,172.58.240.82,R_1TKLroieW4rkdUO,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,2,0,3,3,0,2,1,0,0,0,0,0,4,4,0,0,0,0,2,1,3,0,1,3,0,2,3,2,0,0,0,0,0,1,4,0,2,1,0,20+,2,3,2,0,3,3,0,2,1.83333333333333,1,3,0,1,3,0,2,1.33333333333333,1,0,0,0,0,0,0.2,3,2,0,0,0,0,1,4,4,0,0,0,0,2,1.33333333333333,0,1,4,0,2,1,0,1.33333333333333,2,-1,0,2,0,0,0,0.5,-2,-2,0,0,0,0,-0.8,4,3,-4,0,-2,-1,2,0,-0.1,0.666666666666667,1,0,2,0.8,0.4,0.6,1,1,1,-2,0,0,-2,1,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Tuesday,D,F,B,C,E,Female,1,College Diploma/Certificate,C_Ug,66,60 - 66,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,3,5,6,4,1,1,3,6,7,4,2,5,4,7,8,3,5,6,2,1,1,6,8,7,3,2,5,4,1,4,6,5,2,3,7,6,3,7,8,2,5,4,1,3,2,7,4,8,9,6,1,5,3,4,2,1,2,0,0,2 +109,47.229.168.175,R_6S6LXxe939NurPg,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,5,7,1,8,5,7,5,10,1,10,3,6,1,7,7,8,7,2,8,1,1,1,1,1,1,1,4,3,2,5,5,5,2,2,2,2,2,2,2,20+,2,7,5,7,1,8,5,7,5.5,1,1,1,1,1,1,1,1,5,10,1,10,3,6,5.8,4,3,2,5,5,5,3.8,1,7,7,8,7,2,8,5.33333333333333,2,2,2,2,2,2,2,2,6,4,6,0,7,4,6,4.5,1,7,-1,5,-2,1,2,-1,5,5,6,5,0,6,3.33333333333333,3.27777777777778,4.33333333333333,0.625,0,3,1,0.6,0.8,0,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,E,B,F,Female,1,High School (or equivalent),HS_TS,70,67 - 73,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,6,2,4,5,1,1,4,6,7,3,2,5,5,3,8,7,6,4,2,1,1,2,8,7,6,3,5,4,1,5,4,6,2,3,7,3,2,6,8,7,5,4,1,9,3,5,2,7,8,6,1,4,2,4,3,1,1,0,0,1 +110,154.20.26.2,R_1PeuzQGHonnOOu5,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,2,2,0,7,7,0,2,2,0,2,0,5,2,0,2,0,0,0,0,0,2,0,0,2,0,2,1,2,0,0,0,0,0,0,2,2,0,0,0,0,10-14,2,2,2,0,7,7,0,2,3,2,0,0,2,0,2,1,1,2,0,2,0,5,2,1.8,2,0,0,0,0,0,0.4,0,2,0,0,0,0,0,0.333333333333333,0,2,2,0,0,0,0,0.666666666666667,0,2,0,5,7,-2,1,2,0,0,2,0,5,2,1.4,0,0,-2,0,0,0,0,-0.333333333333333,1.02222222222222,1,0.125,1,1,0.8,0.4,0.6,0,0,0,0,0,0,0,1,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Monday,B,D,B,F,D,Female,1,University - Graduate (Masters),grad_prof,62,60 - 66,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,7,2,5,6,1,1,5,2,7,4,3,6,3,6,8,7,4,2,5,1,1,6,8,4,5,3,7,2,1,2,5,3,6,4,7,6,4,3,8,5,2,7,1,7,8,6,5,3,9,4,1,2,4,3,2,1,0,0,0,0 +111,38.18.105.192,R_10bO7BAJj0Dw58g,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,20+,2,1,1,1,2,1,1,1,1.16666666666667,1,1,1,3,1,1,1,1.33333333333333,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1.16666666666667,0,0,0,-1,0,0,0,-0.166666666666667,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-0.166666666666667,-0.111111111111111,0,0.25,0,3,0.2,0.4,0.3,0,0,0,-2,1,0,0,1,10 cents,100 minutes,24 days,5,11,Richard is shorter than Matt,57,Tuesday,D,D,C,D,D,Female,1,High School (or equivalent),HS_TS,66,60 - 66,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,2,4,6,3,1,1,4,3,7,5,2,6,6,2,8,4,7,5,3,1,1,4,8,5,7,2,6,3,1,6,3,2,5,4,7,7,2,5,8,4,3,6,1,3,6,8,4,2,5,7,1,9,2,4,3,1,2,-1,0,0 +112,70.249.242.132,R_1kRM7yrJwRaFUMZ,self,03VFP,future,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,4,3,3,1,2,0,1,2,1,1,1,1,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,5,1,1.66666666666667,1,1,1,4,3,3,1,2.16666666666667,1,1,1,1,1,1,1,2,0,1,2,1,1,1.2,1,1,2,1,1,2,1,1.33333333333333,1,1,5,1,1,1,1,1.66666666666667,0,0,0,-3,-2,2,0,-0.5,-1,1,0,-1,0,0,-0.2,0,0,-3,0,0,1,0,-0.333333333333333,-0.344444444444444,0,0.75,0,3,0.6,0.8,0.7,0,2,1,-2,0,0,-1,0,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Tuesday,D,B,B,B,D,Male,0,University - Undergraduate,C_Ug,40,39 - 45,American,Male,1,,,,1,,1,4,1,8,3,5,6,2,7,6,5,7,1,2,4,3,6,3,7,4,8,1,5,2,1,6,4,8,5,7,3,2,4,3,1,2,5,7,6,6,4,2,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,9,7,5,1,4,4,2,3,1,2,0,0,1 +113,24.245.49.195,R_3EbBfHJdI6s7oiY,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,4,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,1,1,0,1,0,0,0,0,0,2,0,1,1,0,20+,2,0,0,4,0,2,0,1,1,1,0,2,2,0,0,1,0.833333333333333,1,0,0,0,0,0,0.2,1,0,1,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0.666666666666667,-1,0,2,-2,2,0,0,0.166666666666667,0,0,-1,0,0,0,-0.2,0,0,-2,0,-1,-1,0,-0.666666666666667,-0.233333333333333,0,1.25,0,3,0.4,0,0.2,0,2,2,-1,-1,-2,-2,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,35,Tuesday,A,F,C,A,A,Female,1,College Diploma/Certificate,C_Ug,64,60 - 66,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,5,6,3,7,1,1,2,3,7,6,4,5,7,2,8,4,5,3,6,1,1,6,8,3,7,4,5,2,1,4,5,2,3,6,7,4,6,3,8,7,5,2,1,2,7,3,5,8,4,6,1,9,3,2,4,1,1,1,2,2 +114,64.7.156.26,R_7mVJuK6RiMmLedH,self,02PVF,future,1,1,6,9,4,9,6,3,3,3,2,2,2,2,4,4,5,7,7,5,1,1,1,3,1,2,3,1,2,2,1,1,2,1,4,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,6,9,4,9,6,5,1,1,1,3,1,2,3,1.5,3,3,3,2,2,2,2.6,1,2,2,1,1,2,1.4,2,4,4,5,7,7,5,4.83333333333333,1,4,2,3,3,3,2,2.66666666666667,0,0,5,6,3,7,3,3.5,2,1,1,1,1,0,1.2,1,0,2,2,4,4,3,2.16666666666667,2.28888888888889,2,0,2,1,0.8,0.6,0.7,0,0,2,1,1,0,1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,E,E,B,E,D,Male,0,College Diploma/Certificate,C_Ug,62,60 - 66,Canadian,Male,1,,,1,,,1,7,1,8,6,4,2,5,3,3,5,7,1,4,6,2,3,5,7,6,8,1,2,4,1,7,4,8,2,3,5,6,5,4,1,6,2,7,3,6,5,7,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,2,3,6,5,7,1,9,4,3,2,1,-1,-1,0,-1 +115,96.53.144.174,R_3vO4kOcljBGsjst,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,7,3,3,5,4,5,4,5,4,6,6,6,6,7,4,3,7,5,7,4,6,6,7,6,7,7,6,7,8,7,7,7,7,6,7,7,6,6,7,7,20+,1,7,3,3,5,4,5,4,4.5,6,6,7,6,7,7,6,6.5,5,4,6,6,6,6,5.4,7,8,7,7,7,7,7.2,7,4,3,7,5,7,4,5.5,6,7,7,6,6,7,7,6.5,1,-3,-4,-1,-3,-2,-2,-2,-2,-4,-1,-1,-1,-1,-1.8,1,-3,-4,1,-1,0,-3,-1,-1.6,-2,0.25,2,0,0.4,0.6,0.5,-1,1,1,-1,1,0,-2,-1,5 cents,5 minutes,15 days,3,8,Richard is as tall as Matt,57,Sunday,D,D,B,B,F,Female,1,College Diploma/Certificate,C_Ug,55,53 - 59,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,2,7,4,5,1,1,5,3,7,4,2,6,6,4,8,2,7,5,3,1,1,2,8,7,5,3,4,6,1,6,5,2,3,4,7,6,5,3,8,2,4,7,1,3,9,2,4,7,8,6,1,5,4,3,2,1,1,-1,0,2 +116,107.77.198.224,R_7HYzcUpCaMCTTbC,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,8,9,7,9,8,9,9,7,8,6,7,9,9,8,8,7,8,8,6,9,7,8,8,9,9,6,6,7,7,8,8,6,9,8,9,8,9,8,9,8,5-9,2,8,9,7,9,8,9,9,8.33333333333333,7,8,8,9,9,6,6,7.83333333333333,7,8,6,7,9,9,7.4,7,7,8,8,6,9,7.2,8,8,7,8,8,6,9,7.5,8,9,8,9,8,9,8,8.5,1,1,-1,0,-1,3,3,0.5,0,1,-2,-1,3,0,0.2,0,-1,-1,-1,0,-3,1,-1,-0.1,1.33333333333333,-0.125,3,0,0.8,0.6,0.7,2,1,1,1,2,1,2,1,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Sunday,D,D,C,B,D,Male,0,University - Graduate (Masters),grad_prof,48,46 - 52,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,6,3,5,1,1,5,6,7,2,4,3,2,5,8,7,4,3,6,1,1,5,8,2,7,6,4,3,1,4,2,3,6,5,7,5,2,4,8,3,7,6,1,4,3,2,9,8,7,5,1,6,3,4,2,1,-1,-2,-1,-2 +117,96.52.17.157,R_7aAcXcqPKC7z93r,self,03VFP,past,7,0,0,8,1,8,5,4,8,1,3,7,2,5,7,5,3,7,6,6,4,0,0,2,0,6,3,2,5,4,5,4,4,5,6,6,5,8,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,0,0,8,1,8,5,4,4,0,0,2,0,6,3,2,4,8,1,3,7,2,4.6,2,5,4,5,4,4,4,5,7,5,3,7,6,6,5.5,5,6,6,5,8,7,4,6.16666666666667,3,0,0,6,1,2,2,2,2,3,-3,-2,3,-2,0.6,0,1,-1,-2,-1,-1,2,-0.666666666666667,0.644444444444444,0.666666666666667,0.125,0,3,0,0.4,0.2,0,0,1,-2,1,1,-1,-1,10 cents,100 minutes,24 days,7,10,Richard is shorter than Matt,57,Tuesday,D,B,A,B,E,Female,1,University - Undergraduate,C_Ug,61,60 - 66,Canadian,Female,1,,,,1,1,,2,1,8,5,3,6,7,4,6,2,7,1,5,4,3,4,2,7,6,8,1,3,5,1,5,3,8,6,7,4,2,2,5,1,6,3,7,4,2,4,6,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,2,5,3,8,4,1,6,2,3,4,1,2,-1,-1,1 +118,170.199.96.217,R_3KHHqa4Os1qsaZ3,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,4,8,3,4,3,3,2,1,1,0,3,0,2,2,2,1,1,1,1,4,8,8,8,4,5,5,5,1,5,1,5,4,4,3,8,2,2,2,3,20+,2,3,4,8,3,4,3,3,4.16666666666667,4,8,8,8,4,5,5,6.16666666666667,2,1,1,0,3,0,1.4,5,1,5,1,5,4,3.4,2,2,2,1,1,1,1,1.5,4,3,8,2,2,2,3,3.5,-1,-4,0,-5,0,-2,-2,-2,-3,0,-4,-1,-2,-4,-2,-2,-1,-6,-1,-1,-1,-2,-2,-2,-2.66666666666667,1,0,3,0.6,0.4,0.5,-1,2,1,-2,1,-2,-1,2,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Tuesday,D,E,E,C,C,Female,1,College Diploma/Certificate,C_Ug,67,67 - 73,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,4,3,6,1,1,6,4,7,5,2,3,3,5,8,7,2,4,6,1,1,5,8,7,3,2,4,6,1,6,4,2,3,5,7,3,4,5,8,2,6,7,1,5,3,4,9,2,6,8,1,7,2,3,4,1,2,-1,2,1 +119,172.56.35.100,R_63WzuNStzEppBLg,self,01FPV,future,0,1,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,1,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,0,0,1,0,0,0.333333333333333,2,2,1,2,3,2,2,2,0,1,1,1,1,0,0.8,2,1,1,1,1,1,1.2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,-2,-2,-2,-2,-1.66666666666667,-2,0,0,0,0,-1,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-1.02222222222222,-1.33333333333333,1.5,2,0,0.4,0.2,0.3,0,2,2,-2,0,-2,-2,2,5 cents,5 minutes,36 days,7,8,It's impossible to tell,39,Monday,F,F,A,B,A,Female,1,High School (or equivalent),HS_TS,72,67 - 73,American,Female,1,,1,,,,1,6,1,8,4,2,7,3,5,3,4,7,1,6,2,5,6,5,2,7,8,1,4,3,1,4,6,8,2,5,3,7,4,3,1,6,5,7,2,4,2,3,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,6,5,4,2,7,1,9,2,3,4,1,2,0,2,2 +120,199.120.252.122,R_5Mu7WwYZqiecEJU,self,01FPV,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,0,-2,0,0,0,0,0,0,0,0,-0.666666666666667,0,2,0,3,0.6,0.4,0.5,2,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,24 days,3,8,Richard is taller than Matt,47,Sunday,B,D,B,D,D,Male,0,High School (or equivalent),HS_TS,50,46 - 52,American,Male,1,,1,,,1,,7,1,8,2,3,6,4,5,6,4,7,1,5,2,3,3,6,2,7,8,1,5,4,1,7,3,8,5,4,2,6,5,4,1,3,2,7,6,4,3,7,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,7,3,6,4,8,1,5,3,4,2,1,2,2,2,2 +121,172.91.49.216,R_7ZglsBGfy25LvmF,self,03VFP,past,5,2,2,7,6,2,4,2,3,5,3,5,5,4,5,5,5,5,4,5,2,1,1,4,1,1,1,3,3,3,3,3,3,5,5,5,5,5,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,2,7,6,2,4,4,2,1,1,4,1,1,1,1.66666666666667,2,3,5,3,5,5,3.6,3,3,3,3,3,3,3,4,5,5,5,5,4,5,4.66666666666667,5,5,5,5,5,3,5,4.66666666666667,3,1,1,3,5,1,3,2.33333333333333,-1,0,2,0,2,2,0.6,-1,0,0,0,0,1,0,0,0.977777777777778,1.66666666666667,0,1,2,0.2,0,0.1,0,1,0,0,0,0,1,0,5 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,57,Wednesday,F,F,D,A,C,Male,0,High School (or equivalent),HS_TS,62,60 - 66,American,Male,1,,,,1,1,,7,1,8,5,6,4,3,2,2,6,7,1,4,3,5,5,3,7,2,8,1,6,4,1,6,7,8,4,2,3,5,3,4,1,6,2,7,5,2,5,7,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,2,6,7,3,5,1,4,4,3,2,1,0,0,0,-1 +122,71.203.87.125,R_5xo1KZ2wM6WhbkR,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,5,0,5,2,5,4,5,6,5,7,2,6,8,4,5,8,1,1,4,3,5,1,8,7,7,5,6,6,5,2,3,6,5,5,7,7,2,2,5,20+,1,1,5,0,5,2,5,4,3,3,5,1,8,7,7,5,5.16666666666667,5,6,5,7,2,6,5,6,6,5,2,3,6,4.4,8,4,5,8,1,1,4,4.5,5,5,7,7,2,2,5,4.66666666666667,-2,0,-1,-3,-5,-2,-1,-2.16666666666667,-1,0,0,5,-1,0,0.6,3,-1,-2,1,-1,-1,-1,-0.166666666666667,-0.577777777777778,-0.666666666666667,1.5,2,1,0.6,0.2,0.4,1,2,2,-2,-1,-2,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Wednesday,D,C,A,F,C,Female,1,College Diploma/Certificate,C_Ug,55,53 - 59,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,7,2,4,1,1,4,2,7,5,3,6,2,7,8,3,5,4,6,1,1,5,8,6,2,4,7,3,1,3,4,5,2,6,7,6,4,2,8,3,7,5,1,8,3,4,7,2,9,5,1,6,4,2,3,1,2,1,2,2 +123,142.166.189.235,R_5lFR1spGbJ6Y13P,self,02PVF,past,6,7,8,6,6,7,6,6,6,7,6,6,7,6,6,6,6,7,6,6,6,5,7,5,6,6,5,6,6,6,6,6,6,5,5,6,7,5,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,6,6,7,6,6.66666666666667,6,5,7,5,6,6,5,5.83333333333333,6,6,7,6,6,7,6.2,6,6,6,6,6,6,6,6,6,6,6,7,6,6,6.16666666666667,5,5,6,7,5,5,6,5.5,0,2,1,1,0,1,1,0.833333333333333,0,0,1,0,0,1,0.2,1,1,0,-1,2,1,0,0.666666666666667,0.566666666666667,0.666666666666667,0,0,2,0.2,0.2,0.2,0,0,0,0,0,0,0,0,10 cents,75 minutes,24 days,4,12,It's impossible to tell,35,Tuesday,A,A,D,D,D,Female,1,High School (or equivalent),HS_TS,72,67 - 73,Canadian,Female,1,,,1,,1,,3,1,8,5,2,4,6,7,5,2,7,1,4,3,6,5,2,7,6,8,1,3,4,1,4,6,8,7,2,3,5,6,2,1,3,4,7,5,3,4,5,2,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,5,3,2,7,6,1,9,3,4,2,1,0,0,0,0 +124,64.201.204.196,R_5OuD2CJYlpl3gWo,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,1,1,4,5,6,6,3,2,3,2,3,2,1,2,2,3,3,2,2,3,2,3,6,3,4,2,2,3,0,0,3,5,0,1,2,2,2,5,1,20+,2,5,1,1,4,5,6,6,3.66666666666667,3,2,3,6,3,4,2,3.5,3,2,3,2,3,2,2.6,2,3,0,0,3,5,1.6,1,2,2,3,3,2,2,2.16666666666667,0,1,2,2,2,5,1,2,2,-1,-2,-2,2,2,4,0.166666666666667,1,-1,3,2,0,-3,1,1,1,0,1,1,-3,1,0.166666666666667,0.444444444444444,0.666666666666667,1.375,3,0,0.8,0.6,0.7,0,2,2,-2,1,-2,-2,2,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,C,B,B,B,Female,1,High School (or equivalent),HS_TS,43,39 - 45,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,2,5,6,4,1,1,4,2,7,3,6,5,6,7,8,2,3,4,5,1,1,6,8,5,4,2,3,7,1,3,6,2,4,5,7,7,6,2,8,5,3,4,1,9,3,7,2,8,6,4,1,5,4,2,3,1,2,-1,2,2 +125,72.143.217.100,R_765wIbjYg9A4q7S,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,10,1,3,8,4,5,4,3,2,3,4,4,5,4,5,4,2,4,5,3,9,2,5,7,7,5,5,5,5,5,5,5,3,6,5,5,6,5,4,20+,2,3,10,1,3,8,4,5,4.83333333333333,3,9,2,5,7,7,5,5.5,4,3,2,3,4,4,3.2,5,5,5,5,5,5,5,5,4,5,4,2,4,5,4,3,6,5,5,6,5,4,5,0,1,-1,-2,1,-3,0,-0.666666666666667,-1,-2,-3,-2,-1,-1,-1.8,2,-2,0,-1,-4,-1,1,-1,-1.15555555555556,0,0.125,0,3,0.4,0.2,0.3,0,0,0,-1,0,0,0,0,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,57,Tuesday,C,D,D,A,D,Female,1,College Diploma/Certificate,C_Ug,37,32 - 38,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,3,6,4,7,1,1,3,5,7,2,6,4,7,4,8,2,3,5,6,1,1,3,8,4,6,2,5,7,1,6,5,4,2,3,7,4,7,2,8,3,5,6,1,9,7,8,5,2,4,6,1,3,2,4,3,1,1,0,0,0 +126,209.29.168.96,R_18TincnJAlEo1lq,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,6,2,6,3,5,3,5,4,3,2,3,1,2,2,5,3,2,3,2,2,3,1,3,1,1,2,2,1,2,2,1,1,2,3,5,3,1,3,2,20+,2,3,6,2,6,3,5,3,4.16666666666667,2,3,1,3,1,1,2,1.83333333333333,5,4,3,2,3,1,3.4,2,1,2,2,1,1,1.6,2,2,5,3,2,3,2,2.83333333333333,2,3,5,3,1,3,2,2.83333333333333,1,3,1,3,2,4,1,2.33333333333333,3,3,1,0,2,0,1.8,0,-1,0,0,1,0,0,0,1.37777777777778,0.333333333333333,0.375,1,2,1,0.4,0.7,1,1,1,0,1,0,-1,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,F,Female,1,High School (or equivalent),HS_TS,64,60 - 66,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,7,2,6,4,1,1,3,2,7,6,4,5,6,5,8,3,4,2,7,1,1,6,8,4,3,7,5,2,1,4,5,2,3,6,7,5,2,4,8,6,3,7,1,6,9,4,3,5,2,7,1,8,2,3,4,1,0,-1,0,1 +127,64.26.97.60,R_5cvWXOndWtLKHJv,self,02PVF,past,6,8,7,5,4,7,7,8,4,5,7,6,7,7,9,5,5,7,8,5,5,5,8,8,5,7,7,4,7,6,5,7,6,5,7,9,8,3,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,7,5,4,7,7,6.16666666666667,5,5,8,8,5,7,7,6.33333333333333,8,4,5,7,6,7,6,4,7,6,5,7,6,5.8,7,9,5,5,7,8,5,6.83333333333333,5,7,9,8,3,6,6,6.33333333333333,1,3,-1,-3,-1,0,0,-0.166666666666667,4,-3,-1,2,-1,1,0.2,2,2,-4,-3,4,2,-1,0.5,0.177777777777778,0,0,0,1,0.6,0,0.3,1,1,2,0,1,2,1,0,15 cents,75 minutes,24 days,5,8,Richard is shorter than Matt,47,Tuesday,B,A,E,C,B,Male,0,College Diploma/Certificate,C_Ug,41,39 - 45,American,Male,1,,,1,,1,,6,1,8,3,4,7,5,2,5,2,7,1,4,3,6,2,5,3,7,8,1,4,6,1,6,5,8,4,7,3,2,2,3,1,6,5,7,4,2,5,3,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,9,4,7,2,6,1,5,2,3,4,1,0,-1,-2,-1 +128,24.19.33.128,R_5WAmc3kcKngujnK,self,01FPV,past,6,1,0,7,7,6,3,4,1,1,1,2,1,1,1,4,1,5,1,1,1,1,0,3,2,2,3,2,1,1,1,1,2,2,2,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,1,0,7,7,6,3,4.5,1,1,0,3,2,2,3,1.5,4,1,1,1,2,1,1.8,2,1,1,1,1,2,1.2,1,1,4,1,5,1,1,2.16666666666667,2,2,2,1,2,1,1,1.66666666666667,5,0,0,4,5,4,0,3,2,0,0,0,1,-1,0.6,-1,-1,2,0,3,0,0,0.5,1.36666666666667,-0.333333333333333,0.75,1,2,0,0.6,0.3,0,2,0,-2,1,-2,-1,0,10 cents,100 minutes,47 days,2,7,Richard is taller than Matt,57,Tuesday,D,C,C,B,D,Female,1,Trade School,HS_TS,69,67 - 73,American,Female,1,,1,,,1,,2,1,8,4,6,5,3,7,2,3,7,1,6,4,5,3,4,2,6,8,1,7,5,1,5,2,8,4,7,6,3,3,6,1,4,2,7,5,4,5,6,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,4,6,5,8,3,1,9,2,3,4,1,2,-1,2,1 +129,99.234.178.176,R_7DoEYSibBeS52PW,self,03VFP,future,1,0,2,2,0,3,3,1,5,2,0,0,3,0,0,9,0,0,6,1,2,0,0,2,0,0,2,0,1,0,1,4,2,0,0,9,0,0,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,2,2,0,3,3,1.33333333333333,2,0,0,2,0,0,2,0.666666666666667,1,5,2,0,0,3,1.6,0,1,0,1,4,2,1.2,0,0,9,0,0,6,1,2.5,0,0,9,0,0,6,2,2.5,-1,0,2,0,0,3,1,0.666666666666667,1,4,2,-1,-4,1,0.4,0,0,0,0,0,0,-1,0,0.355555555555556,0.333333333333333,1.125,0,3,0.2,0.4,0.3,0,2,1,-2,1,-2,-2,1,10 cents,100 minutes,24 days,4,8,Richard is shorter than Matt,57,Tuesday,D,D,D,D,D,Female,1,High School (or equivalent),HS_TS,59,53 - 59,Canadian,Female,1,,,,1,,1,6,1,8,5,3,2,4,7,2,5,7,1,4,6,3,3,5,2,6,8,1,4,7,1,5,6,8,3,2,4,7,2,6,1,5,4,7,3,3,5,7,4,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,7,3,5,6,1,9,4,2,3,1,2,-1,2,2 +130,170.203.209.31,R_7iB7meGFXOhMco1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,2,2,4,8,3,4,8,8,4,6,8,6,6,8,9,6,7,6,7,4,3,4,3,7,3,4,6,7,3,4,7,5,5,6,8,5,9,7,7,20+,2,6,2,2,4,8,3,4,4.16666666666667,4,3,4,3,7,3,4,4,8,8,4,6,8,6,6.8,6,7,3,4,7,5,5.4,6,8,9,6,7,6,7,7,5,6,8,5,9,7,7,6.66666666666667,2,-1,-2,1,1,0,0,0.166666666666667,2,1,1,2,1,1,1.4,1,2,1,1,-2,-1,0,0.333333333333333,0.633333333333333,0.333333333333333,0,0,3,0.8,0.4,0.6,0,-1,-1,-2,1,1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,57,Sunday,E,D,B,A,D,Female,1,High School (or equivalent),HS_TS,57,53 - 59,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,4,2,7,3,1,1,5,6,7,2,3,4,2,3,8,7,5,4,6,1,1,3,8,4,5,6,2,7,1,6,2,5,4,3,7,4,5,2,8,3,6,7,1,2,8,3,4,7,6,9,1,5,2,3,4,1,2,-1,-1,2 +131,71.205.82.245,R_5MA67Za7RB8B5Z7,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,2,3,4,3,2,4,8,4,8,7,4,6,6,5,4,4,7,3,3,2,4,1,2,4,5,3,3,2,3,3,3,2,4,3,3,6,1,4,3,20+,2,4,2,3,4,3,2,4,3,2,4,1,2,4,5,3,3,8,4,8,7,4,6,6.2,3,2,3,3,3,2,2.8,6,5,4,4,7,3,3,4.83333333333333,4,3,3,6,1,4,3,3.5,2,-2,2,2,-1,-3,1,0,5,2,5,4,1,4,3.4,2,2,1,-2,6,-1,0,1.33333333333333,1.57777777777778,1.66666666666667,0.375,0,3,0.4,0.4,0.4,1,1,0,-1,1,0,-1,0,10 cents,100 minutes,24 days,3,9,It's impossible to tell,47,Monday,D,B,E,E,D,Male,0,High School (or equivalent),HS_TS,67,67 - 73,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,2,5,4,1,1,4,3,7,2,5,6,5,7,8,4,6,2,3,1,1,6,8,7,3,5,2,4,1,3,4,6,5,2,7,6,3,5,8,7,4,2,1,2,4,5,7,9,6,3,1,8,4,3,2,1,1,-1,0,1 +132,50.65.136.55,R_1VV9R7YElnJKrXr,self,02PVF,past,8,3,5,6,4,0,3,5,3,2,2,7,2,3,6,3,1,1,1,1,3,3,7,5,4,0,3,6,2,1,0,4,2,0,5,7,0,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,5,6,4,0,3,4.33333333333333,3,3,7,5,4,0,3,3.66666666666667,5,3,2,2,7,2,3.8,6,2,1,0,4,2,2.6,3,6,3,1,1,1,1,2.5,0,5,7,0,0,3,1,2.5,5,0,-2,1,0,0,0,0.666666666666667,-1,1,1,2,3,0,1.2,3,1,-4,1,1,-2,0,0,0.622222222222222,0,0.5,0,3,0.8,0.2,0.5,0,0,1,-2,1,-1,0,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,B,E,C,A,E,Female,1,High School (or equivalent),HS_TS,55,53 - 59,Canadian,Female,1,,,1,,1,,7,1,8,4,5,6,3,2,2,5,7,1,4,6,3,2,3,7,4,8,1,5,6,1,3,7,8,5,2,6,4,2,3,1,6,4,7,5,7,3,4,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,2,4,5,3,6,1,9,4,3,2,1,2,-1,1,0 +133,35.147.7.147,R_3bKrmW58BYIC6Va,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,5,2,9,1,5,5,5,3,5,3,5,6,3,5,5,2,4,5,5,5,5,0,9,1,1,4,5,8,3,5,8,6,5,5,5,5,5,5,5,5,20+,1,5,2,9,1,5,5,5,4.5,5,0,9,1,1,4,5,3.33333333333333,3,5,3,5,6,3,4.4,8,3,5,8,6,5,6,5,5,2,4,5,5,5,4.33333333333333,5,5,5,5,5,5,5,5,0,2,0,0,4,1,0,1.16666666666667,-5,2,-2,-3,0,-2,-1.6,0,0,-3,-1,0,0,0,-0.666666666666667,-0.366666666666667,-0.666666666666667,0,0,3,0.2,0.2,0.2,0,0,0,0,0,0,0,0,10 cents,100 minutes,24 days,4,7,It's impossible to tell,57,Saturday,D,D,D,D,F,Male,0,College Diploma/Certificate,C_Ug,61,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,3,2,7,1,1,5,3,7,4,6,2,2,4,8,3,7,6,5,1,1,5,8,3,7,4,6,2,1,2,3,4,6,5,7,4,6,7,8,2,3,5,1,3,7,6,8,4,9,5,1,2,3,4,2,1,0,0,0,0 +134,174.114.212.136,R_5416HRNBDIjNVSO,self,02PVF,future,10,0,0,10,2,10,7,3,0,10,0,5,5,9,8,8,2,6,8,6,7,0,0,10,0,7,4,0,1,4,3,2,4,0,7,7,2,5,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,0,0,10,2,10,7,5.33333333333333,7,0,0,10,0,7,4,4,3,0,10,0,5,5,3.6,0,1,4,3,2,4,2,9,8,8,2,6,8,6,6.83333333333333,0,7,7,2,5,8,5,4.83333333333333,3,0,0,0,2,3,3,1.33333333333333,3,-1,6,-3,3,1,1.6,9,1,1,0,1,0,1,2,1.64444444444444,1.66666666666667,1.375,1,2,1,0.4,0.7,2,1,1,-2,-1,-2,-1,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,C,A,D,Female,1,University - Undergraduate,C_Ug,69,67 - 73,Canadian,Female,1,,,1,,,1,4,1,8,2,6,3,7,5,2,3,7,1,5,4,6,6,4,7,2,8,1,5,3,1,7,5,8,2,4,3,6,4,3,1,5,2,7,6,2,4,3,5,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,6,5,3,4,7,1,9,3,2,4,1,2,1,2,1 +135,98.169.74.69,R_3chuyVKM0Lk4eFH,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,6,1,1,7,4,1,9,2,1,5,6,10,8,8,3,1,9,7,0,3,7,2,0,8,4,1,8,7,1,8,3,9,8,8,1,1,6,6,20+,2,1,1,6,1,1,7,4,2.83333333333333,0,3,7,2,0,8,4,3.33333333333333,1,9,2,1,5,6,3.6,1,8,7,1,8,3,5,10,8,8,3,1,9,7,6.5,9,8,8,1,1,6,6,5.5,1,-2,-1,-1,1,-1,0,-0.5,0,1,-5,0,-3,3,-1.4,1,0,0,2,0,3,1,1,-0.3,1.33333333333333,0.375,3,0,1,0.8,0.9,0,1,2,-1,1,0,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Female,1,University - Graduate (Masters),grad_prof,69,67 - 73,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,2,6,4,5,1,1,3,6,7,5,4,2,6,4,8,7,3,5,2,1,1,2,8,7,5,4,3,6,1,3,4,2,6,5,7,6,4,2,8,5,7,3,1,7,8,5,2,9,4,6,1,3,2,3,4,1,1,-1,0,1 +136,50.70.217.144,R_7xhmBeZWCBMtCsV,self,01FPV,future,1,2,1,3,1,2,2,2,1,2,1,1,2,1,1,2,1,1,2,2,5,2,2,3,3,5,3,2,2,3,2,2,3,1,3,4,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,3,1,2,2,1.66666666666667,5,2,2,3,3,5,3,3.33333333333333,2,1,2,1,1,2,1.4,2,2,3,2,2,3,2.2,1,1,2,1,1,2,2,1.33333333333333,1,3,4,1,1,2,2,2,-4,0,-1,0,-2,-3,-1,-1.66666666666667,0,-1,-1,-1,-1,-1,-0.8,0,-2,-2,0,0,0,0,-0.666666666666667,-1.04444444444444,-0.666666666666667,1.875,1,2,1,0.4,0.7,2,2,2,-2,-2,-2,-2,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,C,B,B,F,Female,1,College Diploma/Certificate,C_Ug,64,60 - 66,Canadian,Female,1,,1,,,,1,7,1,8,5,4,3,2,6,3,2,7,1,6,4,5,5,4,2,6,8,1,7,3,1,4,6,8,3,5,2,7,6,5,1,2,3,7,4,4,2,7,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,3,7,9,4,2,1,5,2,4,3,1,2,2,2,2 +137,69.118.204.67,R_77CmvewHgzvDE5L,self,01FPV,past,1,1,1,10,3,1,2,1,3,1,1,1,1,1,1,1,1,2,4,1,1,1,1,5,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,10,3,1,2,2.83333333333333,1,1,1,5,1,1,1,1.66666666666667,1,3,1,1,1,1,1.4,1,1,1,1,5,1,1.8,1,1,1,1,2,4,1,1.66666666666667,1,1,1,1,1,1,1,1,0,0,0,5,2,0,1,1.16666666666667,0,2,0,0,-4,0,-0.4,0,0,0,0,1,3,0,0.666666666666667,0.477777777777778,0.333333333333333,1.125,0,3,0.6,0.2,0.4,2,2,2,-2,0,2,-2,1,10 cents,100 minutes,24 days,5,12,Richard is shorter than Matt,47,Sunday,D,D,C,E,F,Male,0,Professional Degree (ex. JD/MD),grad_prof,51,46 - 52,American,Male,1,,1,,,1,,5,1,8,7,2,3,4,6,3,2,7,1,5,4,6,3,7,2,6,8,1,4,5,1,4,3,8,6,5,7,2,6,5,1,3,4,7,2,7,3,4,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,9,2,8,4,5,1,3,4,3,2,1,2,0,-2,2 +138,104.251.240.218,R_5r1j7GJzDmqRi8c,self,02PVF,past,6,2,2,7,5,7,6,4,2,6,6,7,5,6,6,6,5,4,7,5,4,5,6,6,5,6,6,2,2,4,3,5,3,2,2,3,2,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,2,7,5,7,6,4.83333333333333,4,5,6,6,5,6,6,5.33333333333333,4,2,6,6,7,5,5,2,2,4,3,5,3,3.2,6,6,6,5,4,7,5,5.66666666666667,2,2,3,2,1,4,2,2.33333333333333,2,-3,-4,1,0,1,0,-0.5,2,0,2,3,2,2,1.8,4,4,3,3,3,3,3,3.33333333333333,1.54444444444444,1.66666666666667,0.125,1,2,0.6,0.4,0.5,-1,1,-1,-2,1,1,-1,1,10 cents,5 minutes,24 days,5,8,Richard is taller than Matt,39,Sunday,D,D,B,D,F,Female,1,College Diploma/Certificate,C_Ug,61,60 - 66,American,Female,1,,,1,,1,,5,1,8,6,3,7,4,2,6,5,7,1,3,4,2,7,3,4,2,8,1,5,6,1,6,3,8,4,5,2,7,2,4,1,6,3,7,5,5,4,3,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,5,9,6,2,7,3,1,4,3,4,2,1,2,-1,-1,1 +139,198.254.250.50,R_6ef8doWSFbaIwyO,self,03VFP,past,5,5,5,6,5,5,5,6,7,7,8,4,7,8,9,7,9,8,7,8,6,5,5,5,5,5,6,5,5,5,5,6,6,5,5,5,5,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,5,5,5.16666666666667,6,5,5,5,5,5,6,5.16666666666667,6,7,7,8,4,7,6.4,5,5,5,5,6,6,5.2,8,9,7,9,8,7,8,8,5,5,5,5,6,6,6,5.33333333333333,-1,0,0,1,0,0,-1,0,1,2,2,3,-2,1,1.2,3,4,2,4,2,1,2,2.66666666666667,1.28888888888889,0.666666666666667,1.375,0,3,0.2,0.4,0.3,1,2,2,-2,0,-2,-2,0,10 cents,100 minutes,24 days,4,8,Richard is taller than Matt,57,Monday,D,C,B,F,F,Female,1,University - Undergraduate,C_Ug,58,53 - 59,Canadian,Female,1,,,,1,1,,3,1,8,6,4,2,5,7,6,4,7,1,3,5,2,3,4,6,7,8,1,5,2,1,4,2,8,7,3,6,5,2,6,1,3,4,7,5,6,3,4,2,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,6,8,5,9,1,7,3,2,4,1,2,0,2,2 +140,70.71.244.24,R_1R9YOGwT0wQsFlh,self,01FPV,future,0,0,0,2,0,7,1,0,0,6,0,1,1,1,0,5,4,0,3,3,0,0,0,4,0,2,1,0,1,0,0,2,0,0,1,2,1,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,0,7,1,1.5,0,0,0,4,0,2,1,1,0,0,6,0,1,1,1.4,0,1,0,0,2,0,0.6,1,0,5,4,0,3,3,2.16666666666667,0,1,2,1,0,0,1,0.666666666666667,0,0,0,-2,0,5,0,0.5,0,-1,6,0,-1,1,0.8,1,-1,3,3,0,3,2,1.5,0.933333333333333,1,1,3,0,1,1,1,1,1,1,-2,-1,0,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,71,67 - 73,Canadian,Male,1,,1,,,,1,2,1,8,3,5,6,4,7,3,2,7,1,5,4,6,6,7,2,4,8,1,3,5,1,4,2,8,7,6,5,3,4,3,1,6,2,7,5,3,5,6,2,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,4,6,8,9,1,3,3,2,4,1,2,1,0,1 +141,66.226.42.92,R_34JlD6FShjjejuo,self,02PVF,past,1,0,0,1,0,1,1,1,1,1,0,5,1,0,1,1,1,0,8,1,0,0,0,1,0,1,1,0,1,1,0,5,1,0,0,0,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,1,0,1,1,0.5,0,0,0,1,0,1,1,0.333333333333333,1,1,1,0,5,1,1.6,0,1,1,0,5,1,1.4,0,1,1,1,0,8,1,1.83333333333333,0,0,0,1,0,1,1,0.333333333333333,1,0,0,0,0,0,0,0.166666666666667,1,0,0,0,0,0,0.2,0,1,1,0,0,7,0,1.5,0.622222222222222,0,0.25,1,2,0.4,0,0.2,0,1,-1,-2,0,0,0,0,10 cents,5 minutes,24 days,5,12,It's impossible to tell,57,Tuesday,C,F,E,A,F,Female,1,High School (or equivalent),HS_TS,66,60 - 66,American,Female,1,,,1,,1,,3,1,8,7,5,2,6,4,3,4,7,1,2,5,6,4,3,5,6,8,1,7,2,1,6,4,8,2,5,3,7,3,4,1,6,5,7,2,3,5,2,6,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,8,9,6,1,7,2,3,4,1,2,0,0,0 +142,73.48.127.185,R_1QEFbWQgJIrv3CB,self,02PVF,future,10,10,10,10,10,10,10,1,10,10,10,10,10,9,10,7,10,8,8,9,10,10,10,10,10,10,10,6,1,9,8,10,5,10,10,7,7,8,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,1,10,10,10,10,10,8.2,6,1,9,8,10,5,6.8,9,10,7,10,8,8,9,8.66666666666667,10,10,7,7,8,9,10,8.5,0,0,0,0,0,0,0,0,-5,9,1,2,0,5,1.4,-1,0,0,3,0,-1,-1,0.166666666666667,0.522222222222222,1.33333333333333,0.25,0,3,0.8,0.2,0.5,2,1,2,-2,2,2,2,1,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,A,D,D,B,F,Female,1,College Diploma/Certificate,C_Ug,65,60 - 66,American,Female,1,,,1,,,1,2,1,8,3,6,7,4,5,4,3,7,1,2,5,6,2,3,4,6,8,1,7,5,1,6,4,8,3,5,2,7,6,5,1,2,3,7,4,2,5,3,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,9,8,2,4,5,1,7,2,3,4,1,2,-2,-2,-2 +143,32.216.242.163,R_7jCmUUqGqsXiKIz,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like somewhat,9,0,0,6,0,7,5,10,5,5,5,8,10,0,8,7,8,7,0,4,3,0,0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,0,0,0,5-9,1,9,0,0,6,0,7,5,3.66666666666667,3,0,0,0,0,0,0,0.5,10,5,5,5,8,10,6.6,0,0,0,8,0,0,1.6,0,8,7,8,7,0,4,5,5,0,0,0,0,0,0,0.833333333333333,6,0,0,6,0,7,5,3.16666666666667,10,5,5,-3,8,10,5,-5,8,7,8,7,0,4,4.16666666666667,4.11111111111111,6.33333333333333,0,0,3,0,0,0,0,0,0,0,-1,1,0,0,10 cents,100 minutes,24 days,4,10,Richard is taller than Matt,57,Tuesday,B,C,E,D,E,Female,1,University - Undergraduate,C_Ug,37,32 - 38,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,7,5,4,1,1,5,6,7,4,3,2,2,7,8,5,4,3,6,1,1,3,8,4,6,5,7,2,1,2,6,5,4,3,7,6,4,3,8,7,2,5,1,8,3,5,9,6,7,4,1,2,2,4,3,1,0,1,-1,0 +144,99.51.9.58,R_5pcefnamU8yJMu0,self,03VFP,past,2,1,2,6,3,0,2,3,1,3,1,1,3,1,1,0,0,0,5,1,1,1,2,0,2,2,1,2,1,2,1,2,1,2,1,0,1,1,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,6,3,0,2,2.33333333333333,1,1,2,0,2,2,1,1.33333333333333,3,1,3,1,1,3,1.8,2,1,2,1,2,1,1.6,1,1,0,0,0,5,1,1.16666666666667,2,1,0,1,1,4,0,1.5,1,0,0,6,1,-2,1,1,1,0,1,0,-1,2,0.2,-1,0,0,-1,-1,1,1,-0.333333333333333,0.288888888888889,1.33333333333333,-0.125,0,2,0.4,0.2,0.3,0,0,-1,-2,1,1,0,0,10 cents,25 minutes,24 days,2,12,It's impossible to tell,47,Monday,A,B,D,E,D,Female,1,College Diploma/Certificate,C_Ug,66,60 - 66,American,Female,1,,,,1,1,,3,1,8,5,7,2,4,6,6,2,7,1,5,3,4,3,6,5,7,8,1,4,2,1,6,2,8,5,7,3,4,6,3,1,4,2,7,5,7,6,5,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,6,8,3,2,9,1,4,3,2,4,1,2,-1,-1,0 +145,66.133.147.196,R_5dXQP5gvumXkSGZ,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,3,6,6,6,7,6,6,3,2,3,5,6,3,3,3,6,5,5,2,5,3,3,7,3,6,2,5,3,2,2,3,4,2,3,3,5,2,20+,2,2,1,1,3,6,6,6,3.16666666666667,5,2,5,3,3,7,3,4.16666666666667,7,6,6,3,2,3,4.8,6,2,5,3,2,2,3.6,5,6,3,3,3,6,5,4.33333333333333,3,4,2,3,3,5,2,3.33333333333333,-3,-1,-4,0,3,-1,3,-1,1,4,1,0,0,1,1.2,2,2,1,0,0,1,3,1,0.4,2.33333333333333,0.875,0,3,0.6,1,0.8,0,2,1,0,-1,-1,-2,0,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Monday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,53,53 - 59,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,2,5,6,1,1,5,2,7,4,3,6,7,2,8,3,4,5,6,1,1,6,8,7,5,4,3,2,1,6,2,4,5,3,7,3,6,4,8,2,5,7,1,7,2,4,8,9,6,5,1,3,4,2,3,1,0,1,1,2 +146,72.157.222.87,R_7rjYVUBgGZrkVHH,self,03VFP,past,5,5,5,5,5,5,6,5,5,5,5,4,5,6,6,6,6,6,6,6,7,7,5,6,7,4,5,6,6,5,5,6,5,6,6,6,6,6,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,5,6,5,7,7,5,6,7,4,5,6,5,5,5,5,4,5,4.8,6,6,5,5,6,5,5.6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,-2,-2,0,-1,-2,1,1,-1,-1,-1,0,0,-2,0,-0.8,0,0,0,0,0,0,1,0,-0.6,0.666666666666667,-0.25,0,2,0.2,0.2,0.2,0,1,1,1,1,1,1,0,10 cents,100 minutes,36 days,3,9,Richard is shorter than Matt,47,Monday,C,C,B,D,B,Female,1,College Diploma/Certificate,C_Ug,61,60 - 66,American,Female,1,,,,1,1,,5,1,8,2,6,7,3,4,2,6,7,1,5,4,3,3,4,6,7,8,1,2,5,1,2,7,8,4,6,5,3,3,2,1,4,6,7,5,7,2,6,3,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,4,6,8,5,1,9,3,2,4,1,-1,-1,-1,-1 +147,99.253.74.46,R_1is7FAgG2Y70gM0,self,03VFP,future,4,4,4,5,5,4,5,5,5,4,5,4,5,5,5,4,5,5,4,5,5,2,5,4,5,5,4,5,5,4,5,5,5,5,5,5,5,6,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,5,4,5,4.33333333333333,5,2,5,4,5,5,4,4.33333333333333,5,5,4,5,4,5,4.6,5,5,4,5,5,5,4.8,5,5,4,5,5,4,5,4.66666666666667,5,5,5,5,6,3,5,4.83333333333333,-1,2,-1,1,0,-1,1,0,0,0,0,0,-1,0,-0.2,0,0,-1,0,-1,1,0,-0.166666666666667,-0.122222222222222,0.333333333333333,0.875,0,3,1,0.8,0.9,0,2,1,-1,0,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,F,Female,1,College Diploma/Certificate,C_Ug,37,32 - 38,Canadian,Female,1,,,,1,,1,2,1,8,4,7,5,3,6,6,5,7,1,3,4,2,2,5,3,4,8,1,7,6,1,4,3,8,2,5,7,6,2,3,1,6,4,7,5,3,4,5,7,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,3,6,8,2,9,1,4,2,4,3,1,1,0,1,2 +148,192.248.193.20,R_1m9epxEcfmV2k37,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,5,1,5,2,5,4,1,4,1,4,1,4,3,4,4,1,4,2,2,3,1,3,3,2,2,6,3,3,2,7,2,3,2,2,3,3,3,3,20+,1,3,1,5,1,5,2,5,2.83333333333333,2,3,1,3,3,2,2,2.33333333333333,4,1,4,1,4,1,2.8,6,3,3,2,7,2,4.2,4,3,4,4,1,4,2,3.33333333333333,3,2,2,3,3,3,3,2.66666666666667,1,-2,4,-2,2,0,3,0.5,-2,-2,1,-1,-3,-1,-1.4,1,1,2,1,-2,1,-1,0.666666666666667,-0.0777777777777778,0.333333333333333,0.25,0,3,0.2,0.4,0.3,1,2,1,-1,1,2,1,1,10 cents,100 minutes,24 days,5,9,Richard is taller than Matt,57,Tuesday,E,C,B,B,C,Female,1,Professional Degree (ex. JD/MD),grad_prof,68,67 - 73,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,4,3,7,5,1,1,6,4,7,5,2,3,2,4,8,7,5,3,6,1,1,3,8,5,4,6,2,7,1,5,3,2,4,6,7,5,4,7,8,2,3,6,1,6,8,4,9,3,7,5,1,2,3,2,4,1,1,-1,-2,-1 +149,174.3.145.120,R_7mt4BTSLWsvcHWJ,self,03VFP,past,1,1,1,2,1,1,1,4,5,1,6,1,1,1,1,7,7,1,3,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,1,1,1,1.16666666666667,1,1,1,1,1,2,1,1.16666666666667,4,5,1,6,1,1,3.4,2,1,1,1,1,1,1.2,1,1,7,7,1,3,1,3.33333333333333,1,1,1,4,1,1,1,1.5,0,0,0,1,0,-1,0,0,2,4,0,5,0,0,2.2,0,0,6,3,0,2,0,1.83333333333333,1.34444444444444,0,0,0,3,0.4,0.6,0.5,0,0,-1,-2,0,1,-2,-2,10 cents,100 minutes,24 days,4,7,Richard is shorter than Matt,47,Sunday,D,B,B,B,A,Female,1,College Diploma/Certificate,C_Ug,59,53 - 59,Canadian,Female,1,,,,1,1,,6,1,8,2,5,3,4,7,5,3,7,1,4,2,6,6,4,7,2,8,1,5,3,1,3,4,8,6,2,5,7,5,6,1,3,2,7,4,7,6,4,5,3,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,7,6,4,9,5,1,8,3,2,4,1,2,0,-1,2 +150,173.88.221.18,R_7OGDePsyM0FyRtM,self,02PVF,past,2,2,3,1,1,2,1,6,8,5,8,5,5,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3,2,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,1,1,2,1,1.83333333333333,2,2,2,2,1,2,2,1.83333333333333,6,8,5,8,5,5,6.4,2,3,2,1,2,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,-1,0,0,-1,0,4,5,3,7,3,4,4.4,0,0,0,0,0,0,1,0,1.46666666666667,1.33333333333333,0.25,0,3,0.4,0.2,0.3,0,1,0,-1,0,1,0,1,10 cents,100 minutes,24 days,5,7,It's impossible to tell,57,Tuesday,D,F,E,F,B,Male,0,College Diploma/Certificate,C_Ug,61,60 - 66,American,Male,1,,,1,,1,,3,1,8,5,6,7,4,2,3,6,7,1,2,4,5,4,6,2,7,8,1,5,3,1,7,3,8,6,4,2,5,2,5,1,6,4,7,3,3,7,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,2,3,6,7,9,5,1,4,4,2,3,1,1,0,-1,0 +151,99.254.214.153,R_6STJr3WMG4vfZtv,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,3,4,2,2,2,2,3,2,2,2,2,2,2,3,3,1,4,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,2,20+,2,2,3,4,2,2,2,2,2.5,2,2,2,4,2,2,2,2.33333333333333,3,2,2,2,2,2,2.2,4,2,2,2,4,2,2.8,2,3,3,1,4,2,3,2.5,2,2,2,2,2,2,2,2,0,1,2,-2,0,0,0,0.166666666666667,-1,0,0,0,-2,0,-0.6,0,1,1,-1,2,0,1,0.5,0.0222222222222222,0.333333333333333,1,0,3,0.4,0.2,0.3,1,2,1,-2,1,0,-2,1,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,39,Wednesday,A,D,C,B,E,Female,1,High School (or equivalent),HS_TS,71,67 - 73,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,6,2,3,7,1,1,4,5,7,2,3,6,3,6,8,2,7,4,5,1,1,6,8,3,7,4,5,2,1,6,5,3,4,2,7,5,4,2,8,6,3,7,1,5,9,6,4,2,8,7,1,3,2,4,3,1,2,-1,0,2 +152,204.195.170.98,R_7s12RcLZlHOhTmN,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,5,3,3,6,6,3,3,7,1,3,1,2,3,1,1,1,2,4,3,3,3,2,2,2,2,3,2,2,1,2,1,2,1,2,1,1,1,3,2,2,5-9,2,5,3,3,6,6,3,3,4.33333333333333,3,2,2,2,2,3,2,2.33333333333333,7,1,3,1,2,3,2.8,2,1,2,1,2,1,1.6,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,1.66666666666667,2,1,1,4,4,0,1,2,5,0,1,0,0,2,1.2,-1,0,0,1,1,1,1,0.333333333333333,1.17777777777778,1.33333333333333,1.25,2,1,1,0.6,0.8,1,1,1,-1,-1,-2,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,F,A,B,D,Female,1,University - Graduate (Masters),grad_prof,66,60 - 66,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,6,5,2,1,1,3,2,7,6,5,4,7,6,8,4,5,3,2,1,1,4,8,3,7,5,6,2,1,4,3,2,6,5,7,4,7,3,8,6,2,5,1,9,7,5,8,4,2,3,1,6,4,3,2,1,1,1,2,2 +153,75.152.249.196,R_5Yy7TmjAmlmkplu,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,4,0,0,0,0,0,5,0,5,0,0,0,5,1,0,5,2,2,0,0,5,2,2,0,0,0,2,0,3,0,0,0,5,0,0,5,0,20+,2,0,0,0,4,0,0,0,0.666666666666667,2,0,0,5,2,2,0,1.83333333333333,0,0,5,0,5,0,2,0,0,2,0,3,0,1,0,0,5,1,0,5,2,1.83333333333333,0,0,5,0,0,5,0,1.66666666666667,-2,0,0,-1,-2,-2,0,-1.16666666666667,0,0,3,0,2,0,1,0,0,0,1,0,0,2,0.166666666666667,-2.77555756156289E-17,0.666666666666667,1,1,2,1,0.2,0.6,0,2,1,-1,0,-1,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,E,E,F,Female,1,University - Graduate (Masters),grad_prof,72,67 - 73,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,7,4,2,6,1,1,5,4,7,6,2,3,4,5,8,7,6,2,3,1,1,7,8,5,4,6,3,2,1,6,4,3,5,2,7,3,5,7,8,6,2,4,1,7,8,2,9,4,3,6,1,5,2,4,3,1,1,0,1,2 +154,73.244.71.246,R_3yBmgEQoSxIE2Yx,self,01FPV,past,5,6,3,4,4,6,4,7,3,7,5,6,6,7,6,6,7,5,8,6,6,2,3,4,4,4,4,6,6,7,4,7,7,7,7,8,7,6,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,4,4,6,4,4.66666666666667,6,2,3,4,4,4,4,3.83333333333333,7,3,7,5,6,6,5.6,6,6,7,4,7,7,6,7,6,6,7,5,8,6,6.5,7,7,8,7,6,7,6,7,-1,4,0,0,0,2,0,0.833333333333333,1,-3,0,1,-1,-1,-0.4,0,-1,-2,0,-1,1,0,-0.5,-0.0222222222222222,-0.333333333333333,0.375,0,2,0.2,0.6,0.4,0,1,0,-1,1,0,-1,1,10 cents,100 minutes,36 days,5,9,Richard is taller than Matt,44,Monday,A,E,B,B,C,Female,1,College Diploma/Certificate,C_Ug,55,53 - 59,American,Female,1,,1,,,1,,6,1,8,5,7,3,2,4,4,6,7,1,3,5,2,4,3,2,5,8,1,6,7,1,6,7,8,2,4,3,5,6,4,1,5,3,7,2,6,3,2,4,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,6,2,9,3,4,1,5,2,4,3,1,1,-1,0,1 +155,73.221.239.30,R_6cBnn8stcUnbwlH,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Neither like nor dislike,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,5,5,5,5,5-9,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,5,5,5,5,5.16666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-0.166666666666667,-0.0555555555555556,0,0.125,0,3,0.2,0.2,0.2,0,0,0,-1,0,0,0,0,10 cents,100 minutes,24 days,4,11,It's impossible to tell,39,Tuesday,D,C,A,C,F,Female,1,High School (or equivalent),HS_TS,54,53 - 59,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,4,5,3,7,1,1,2,6,7,5,4,3,5,2,8,3,6,7,4,1,1,4,8,7,5,3,6,2,1,3,4,5,6,2,7,7,5,6,8,4,3,2,1,3,7,5,9,4,6,8,1,2,4,3,2,1,1,0,0,0 +156,99.100.101.110,R_7yADvJdmibTypzP,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,10,0,0,10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,10,0,0,0,5,0,0,0,0,0,0,0,0,15-19,2,10,0,0,10,0,5,0,4.16666666666667,10,0,10,0,0,10,0,5,0,0,0,0,0,0,0,10,0,0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,10,0,-5,0,-0.833333333333333,-10,0,0,0,-5,0,-3,0,0,0,0,0,0,0,0,-1.27777777777778,0,1.25,0,3,0.4,0.4,0.4,0,2,2,0,0,-2,-2,2,10 cents,100 minutes,24 days,3,12,It's impossible to tell,47,Tuesday,D,C,A,F,D,Female,1,College Diploma/Certificate,C_Ug,64,60 - 66,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,2,7,4,3,1,1,2,3,7,5,4,6,7,2,8,3,5,6,4,1,1,4,8,5,6,2,7,3,1,4,3,6,5,2,7,3,2,4,8,7,5,6,1,6,9,8,2,4,7,3,1,5,3,4,2,1,0,0,2,2 +157,142.161.73.212,R_14bG6syyYkjQkax,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,4,2,2,2,1,1,2,1,1,2,1,1,1,1,1,3,1,5,3,1,5,3,3,2,5,1,1,2,2,1,1,1,5,1,1,2,1,20+,2,1,1,1,4,2,2,2,1.83333333333333,5,3,1,5,3,3,2,3.33333333333333,1,1,2,1,1,2,1.2,5,1,1,2,2,1,2.2,1,1,1,1,1,3,1,1.33333333333333,1,1,5,1,1,2,1,1.83333333333333,-4,-2,0,-1,-1,-1,0,-1.5,-4,0,1,-1,-1,1,-1,0,0,-4,0,0,1,0,-0.5,-1,0.333333333333333,0.375,0,3,0.2,0,0.1,1,1,2,0,2,2,-1,2,10 cents,100 minutes,24 days,7,8,Richard is shorter than Matt,57,Tuesday,E,A,F,D,B,Female,1,High School (or equivalent),HS_TS,73,67 - 73,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,4,7,5,6,1,1,6,5,7,2,4,3,5,2,8,6,3,4,7,1,1,3,8,4,6,2,7,5,1,4,6,3,5,2,7,3,4,6,8,2,7,5,1,5,7,4,3,9,8,6,1,2,4,2,3,1,0,-2,-2,1 +158,98.122.154.42,R_5NEzGe9KuOl772T,self,02PVF,past,5,1,7,8,5,10,7,6,2,7,7,9,3,8,9,6,9,7,9,3,8,1,5,9,7,7,8,9,6,8,7,10,5,4,7,8,3,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,7,8,5,10,7,6,8,1,5,9,7,7,8,6.16666666666667,6,2,7,7,9,3,6.2,9,6,8,7,10,5,8,8,9,6,9,7,9,3,8,4,7,8,3,5,5,3,5.33333333333333,-3,0,2,-1,-2,3,-1,-0.166666666666667,-3,-4,-1,0,-1,-2,-1.8,4,2,-2,6,2,4,0,2.66666666666667,0.233333333333333,-1,1.125,0,3,0.8,0.4,0.6,0,2,1,-2,2,-2,-2,2,10 cents,100 minutes,24 days,5,8,Zach is shorter than Matt,47,Sunday,E,E,C,B,F,Female,1,University - Graduate (Masters),grad_prof,57,53 - 59,American,Female,1,,,1,,1,,7,1,8,4,2,6,3,5,5,3,7,1,4,6,2,7,6,5,4,8,1,2,3,1,2,3,8,4,5,7,6,3,5,1,4,2,7,6,5,6,3,2,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,2,6,3,4,9,1,7,4,2,3,1,2,-2,2,2 +159,73.101.138.209,R_3w0svZJfSYqqA5G,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,1,6,8,0,6,6,3,6,6,1,0,3,0,1,7,0,0,5,4,2,4,6,1,1,0,3,1,1,2,1,1,0,0,4,3,0,0,0,1,20+,2,6,1,6,8,0,6,6,4.5,2,4,6,1,1,0,3,2.33333333333333,3,6,6,1,0,3,3.2,1,1,2,1,1,0,1.2,0,1,7,0,0,5,4,2.16666666666667,0,4,3,0,0,0,1,1.16666666666667,4,-3,0,7,-1,6,3,2.16666666666667,2,5,4,0,-1,3,2,0,-3,4,0,0,5,3,1,1.72222222222222,3,2,0,3,0.6,0.2,0.4,2,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,24 days,2,11,It's impossible to tell,47,Sunday,A,C,C,B,B,Female,1,College Diploma/Certificate,C_Ug,46,46 - 52,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,6,7,3,2,1,1,5,2,7,6,3,4,5,7,8,6,2,3,4,1,1,5,8,7,6,4,2,3,1,3,4,6,5,2,7,7,3,4,8,5,6,2,1,2,5,9,3,6,4,8,1,7,2,4,3,1,2,2,2,2 +160,70.89.81.37,R_5KkeM15guDtaZtS,self,01FPV,future,1,1,1,4,1,3,3,1,1,2,2,5,2,2,2,3,2,3,2,3,3,1,2,6,1,7,2,3,4,4,1,6,2,5,1,2,5,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,4,1,3,3,1.83333333333333,3,1,2,6,1,7,2,3.33333333333333,1,1,2,2,5,2,2.2,3,4,4,1,6,2,3.6,2,2,3,2,3,2,3,2.33333333333333,5,1,2,5,5,2,1,3.33333333333333,-2,0,-1,-2,0,-4,1,-1.5,-2,-3,-2,1,-1,0,-1.4,-3,1,1,-3,-2,0,2,-1,-1.3,1,0.375,2,1,0.8,0.4,0.6,1,1,1,-1,1,0,1,1,5 cents,100 minutes,47 days,4,8,It's impossible to tell,47,Sunday,A,E,A,D,D,Female,1,University - Graduate (Masters),grad_prof,42,39 - 45,American,Female,1,,1,,,,1,5,1,8,2,6,4,7,3,4,2,7,1,3,6,5,5,4,2,7,8,1,3,6,1,2,4,8,5,7,3,6,3,2,1,4,5,7,6,7,6,3,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,7,3,8,9,1,2,4,3,2,1,1,-1,0,-1 +161,67.209.30.114,R_3QAIeV4HaE2rc4X,self,01FPV,past,5,1,2,10,5,1,3,7,6,9,1,2,2,3,2,5,0,1,6,0,7,4,3,4,2,1,4,5,1,1,0,3,0,0,0,0,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,2,10,5,1,3,4,7,4,3,4,2,1,4,3.5,7,6,9,1,2,2,5,5,1,1,0,3,0,2,3,2,5,0,1,6,0,2.83333333333333,0,0,0,0,0,2,1,0.333333333333333,-2,-3,-1,6,3,0,-1,0.5,2,5,8,1,-1,2,3,3,2,5,0,1,4,-1,2.5,2,0,1.125,1,1,0.8,0.8,0.8,2,2,2,-1,1,-1,-2,0,10 cents,5 minutes,36 days,5,8,It's impossible to tell,47,Monday,D,D,B,B,D,Female,1,College Diploma/Certificate,C_Ug,38,32 - 38,American,Female,1,,1,,,1,,7,1,8,4,6,2,3,5,3,2,7,1,4,5,6,7,5,2,4,8,1,6,3,1,6,3,8,5,7,4,2,3,4,1,2,5,7,6,7,5,3,6,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,9,5,4,2,6,1,8,4,2,3,1,1,-1,1,2 +162,73.12.239.29,R_5MrGB7fwMWqMDqS,self,02PVF,future,6,3,2,0,3,8,5,6,1,7,4,3,4,2,5,6,3,4,8,6,3,2,3,4,2,4,4,4,3,4,7,6,6,1,2,8,5,5,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,2,0,3,8,5,3.66666666666667,3,2,3,4,2,4,4,3,6,1,7,4,3,4,4.2,4,3,4,7,6,6,4.8,2,5,6,3,4,8,6,4.66666666666667,1,2,8,5,5,3,6,4,3,1,-1,-4,1,4,1,0.666666666666667,2,-2,3,-3,-3,-2,-0.6,1,3,-2,-2,-1,5,0,0.666666666666667,0.244444444444444,-0.333333333333333,1.625,2,1,1,0.2,0.6,2,2,2,-2,-1,-1,-2,1,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,D,D,B,Female,1,University - PhD,grad_prof,44,39 - 45,American,Female,1,,,1,,,1,5,1,8,4,7,2,6,3,5,2,7,1,4,6,3,4,3,6,7,8,1,5,2,1,2,3,8,5,7,6,4,3,2,1,5,4,7,6,5,3,7,4,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,3,9,2,8,4,1,5,4,2,3,1,2,1,1,2 +163,173.70.193.36,R_1IEl17m0nyMJSEA,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Dislike a great deal,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,5,5,0,0,0,0,0,0,0,5,0,5,0,5,10,0,5-9,-2,5,0,0,0,0,0,0,0.833333333333333,10,0,0,0,5,5,0,3.33333333333333,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,5,10,0,4.16666666666667,-5,0,0,0,-5,-5,0,-2.5,0,0,5,0,0,0,1,-5,0,-5,0,-5,-10,0,-4.16666666666667,-1.88888888888889,0,0.5,1,2,0.4,0.2,0.3,-2,2,0,-2,2,0,-2,2,10 cents,5 minutes,24 days,5,10,Richard is shorter than Matt,57,Sunday,D,D,C,A,B,Female,1,College Diploma/Certificate,C_Ug,59,53 - 59,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,2,4,3,5,1,1,6,2,7,4,5,3,6,3,8,2,5,4,7,1,1,3,8,2,4,5,7,6,1,6,4,5,3,2,7,5,3,2,8,4,6,7,1,5,7,3,4,8,2,9,1,6,2,3,4,1,2,-2,0,2 +164,174.115.18.69,R_7fHTMaZaOsHb5p0,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,5,2,2,2,3,3,3,2,3,3,5,3,2,2,3,3,3,3,3,1,2,1,2,1,1,1,2,3,2,3,3,2,1,1,1,2,1,2,2,20+,2,4,5,2,2,2,3,3,3,1,2,1,2,1,1,1,1.33333333333333,3,2,3,3,5,3,3.2,2,3,2,3,3,2,2.6,2,2,3,3,3,3,3,2.66666666666667,1,1,1,2,1,2,2,1.33333333333333,3,3,1,0,1,2,2,1.66666666666667,1,-1,1,0,2,1,0.6,1,1,2,1,2,1,1,1.33333333333333,1.2,1.33333333333333,1.375,1,2,1,0.4,0.7,1,2,2,-2,1,-2,-2,1,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,A,B,E,Female,1,College Diploma/Certificate,C_Ug,71,67 - 73,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,4,2,3,1,1,2,6,7,4,5,3,7,5,8,3,6,2,4,1,1,7,8,6,2,5,4,3,1,2,5,3,4,6,7,7,3,5,8,4,2,6,1,7,9,2,6,3,4,5,1,8,4,2,3,1,2,-1,2,2 +165,142.170.160.206,R_7sjmbyS9FzQx3Vv,self,01FPV,future,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,1,3,0,1,0,0,2,0,0,1,1,2,2,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,1,0,0,0,0.166666666666667,2,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,1,0.4,0,2,2,0,0,0,0,0.666666666666667,1,2,2,0,0,1,0,1,-2,0,0,0,-3,0,-1,-0.833333333333333,0,0,-2,0,0,-1,-0.4,-1,0,0,0,0,-1,0,-0.333333333333333,-0.522222222222222,-0.666666666666667,1.25,2,0,0.6,0.2,0.4,1,2,0,-2,-1,-1,-2,1,5 cents,5 minutes,36 days,5,8,Richard is shorter than Matt,47,Monday,D,C,C,E,A,Female,1,High School (or equivalent),HS_TS,59,53 - 59,Canadian,Female,1,,1,,,,1,5,1,8,7,3,6,2,4,2,5,7,1,4,6,3,3,5,2,6,8,1,4,7,1,3,6,8,7,2,4,5,3,5,1,2,6,7,4,7,3,5,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,8,2,9,3,1,4,4,3,2,1,2,1,1,2 +166,45.59.188.162,R_1979eZC5yU0xG3U,self,03VFP,future,2,2,2,3,1,1,2,3,3,2,2,3,4,1,4,8,1,3,5,4,5,5,2,2,2,2,5,5,2,3,2,4,3,6,4,6,4,2,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,1,1,2,1.83333333333333,5,5,2,2,2,2,5,3,3,3,2,2,3,4,2.6,5,2,3,2,4,3,3.2,1,4,8,1,3,5,4,3.66666666666667,6,4,6,4,2,5,4,4.5,-3,-3,0,1,-1,-1,-3,-1.16666666666667,-2,1,-1,0,-1,1,-0.6,-5,0,2,-3,1,0,0,-0.833333333333333,-0.866666666666667,-0.666666666666667,0.75,0,3,1,0.4,0.7,2,1,0,-2,1,-1,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,C,C,Female,1,College Diploma/Certificate,C_Ug,34,32 - 38,Canadian,Female,1,,,,1,,1,3,1,8,7,6,2,4,5,5,4,7,1,3,2,6,4,6,5,2,8,1,7,3,1,7,5,8,2,4,6,3,5,2,1,4,3,7,6,2,6,7,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,7,9,2,8,6,1,3,2,3,4,1,2,-1,1,1 +167,136.226.76.84,R_5emkyuS1OTqJ8cX,self,03VFP,past,10,0,0,0,5,0,0,5,0,0,0,5,0,6,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,3,0,0,5,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,0,0,0,5,0,0,2.5,0,0,0,0,5,0,0,0.833333333333333,5,0,0,0,5,0,2,0,0,0,0,0,0,0,6,0,7,0,0,0,0,2.16666666666667,0,5,3,0,0,5,0,2.16666666666667,10,0,0,0,0,0,0,1.66666666666667,5,0,0,0,5,0,2,6,-5,4,0,0,-5,0,0,1.22222222222222,0,1.375,3,0,0.8,0.6,0.7,2,2,2,-2,1,-2,-2,0,5 cents,5 minutes,47 days,5,9,It's impossible to tell,47,Sunday,B,E,B,B,B,Female,1,University - Undergraduate,C_Ug,49,46 - 52,Canadian,Female,1,,,,1,1,,4,1,8,3,7,6,5,2,6,3,7,1,4,2,5,7,3,5,6,8,1,4,2,1,7,4,8,5,3,6,2,2,3,1,4,6,7,5,3,5,6,7,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,5,6,9,8,1,7,4,3,2,1,2,-1,2,2 +168,206.251.88.239,R_6hlVDDVQuqNjJcZ,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,6,3,1,3,4,8,7,7,6,5,8,8,8,5,3,2,7,8,9,8,1,1,1,4,1,8,2,1,2,1,5,5,4,7,2,8,8,8,1,5,20+,0,6,3,1,3,4,8,7,4.16666666666667,1,1,1,4,1,8,2,2.66666666666667,7,6,5,8,8,8,6.8,1,2,1,5,5,4,2.8,5,3,2,7,8,9,8,5.66666666666667,7,2,8,8,8,1,5,5.66666666666667,5,2,0,-1,3,0,5,1.5,6,4,4,3,3,4,4,-2,1,-6,-1,0,8,3,0,1.83333333333333,4,0.125,1,2,0.8,0.6,0.7,1,0,-1,-2,0,0,-1,-2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Wednesday,D,D,B,B,F,Female,1,College Diploma/Certificate,C_Ug,47,46 - 52,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,2,4,3,6,1,1,6,4,7,2,3,5,2,4,8,3,5,6,7,1,1,6,8,7,3,2,4,5,1,4,3,6,2,5,7,2,4,6,8,3,7,5,1,7,3,2,9,8,6,5,1,4,3,4,2,1,2,0,0,1 +169,151.197.233.82,R_5SIdvg5B0eHFLRP,self,03VFP,future,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1.2,1,1,2,1,1,2,1,1.33333333333333,1,1,2,1,1,2,1,1.33333333333333,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-0.2,0,0,0,0,0,0,0,0,-0.0666666666666667,0,1,0,2,0.6,0.2,0.4,0,1,1,-2,-1,0,-2,1,10 cents,100 minutes,36 days,5,8,It's impossible to tell,57,Tuesday,D,B,E,C,C,Female,1,University - Graduate (Masters),grad_prof,54,53 - 59,American,Female,1,,,,1,,1,4,1,8,5,6,3,7,2,5,3,7,1,2,4,6,4,3,2,5,8,1,7,6,1,7,3,8,4,2,5,6,6,5,1,2,3,7,4,6,2,7,3,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,5,2,6,3,7,1,4,2,3,4,1,2,1,0,2 +170,174.208.163.141,R_6pEdQmNh3h4mdBY,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,2,7,2,5,1,1,1,3,2,3,2,1,3,4,4,6,4,2,4,3,3,8,1,6,1,3,5,3,3,4,1,7,5,4,5,2,1,2,1,1,5-9,2,2,7,2,5,1,1,1,3,3,8,1,6,1,3,5,3.66666666666667,3,2,3,2,1,3,2.2,3,3,4,1,7,5,3.6,4,4,6,4,2,4,3,4,4,5,2,1,2,1,1,2.5,-1,-1,1,-1,0,-2,-4,-0.666666666666667,0,-1,-1,1,-6,-2,-1.4,0,-1,4,3,0,3,2,1.5,-0.188888888888889,-1.33333333333333,0.25,0,3,0.4,0.4,0.4,1,1,0,0,-1,0,2,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,35,Wednesday,D,D,A,A,D,Female,1,University - Undergraduate,C_Ug,40,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,2,7,4,6,1,1,6,3,7,2,4,5,4,3,8,6,2,7,5,1,1,7,8,6,2,5,3,4,1,5,6,2,4,3,7,5,7,3,8,6,2,4,1,4,9,3,5,2,7,6,1,8,2,3,4,1,0,1,0,-2 +171,75.196.15.92,R_7bZ2ausxgE4QiOd,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,6,2,4,5,9,5,7,10,8,5,4,8,8,8,10,8,10,9,7,10,1,1,0,3,5,1,4,2,1,3,2,5,3,1,3,2,3,1,1,3,10-14,2,6,2,4,5,9,5,7,5.16666666666667,1,1,0,3,5,1,4,1.83333333333333,10,8,5,4,8,8,7,2,1,3,2,5,3,2.6,8,10,8,10,9,7,10,8.66666666666667,1,3,2,3,1,1,3,1.83333333333333,5,1,4,2,4,4,3,3.33333333333333,8,7,2,2,3,5,4.4,7,7,6,7,8,6,7,6.83333333333333,4.85555555555556,5,-0.125,0,3,0.4,0.2,0.3,-2,0,2,-2,1,2,1,1,10 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,47,Tuesday,E,D,B,D,E,Female,1,High School (or equivalent),HS_TS,22,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,2,4,3,5,1,1,2,5,7,3,4,6,3,6,8,5,7,2,4,1,1,6,8,5,7,2,4,3,1,2,5,4,6,3,7,7,4,5,8,6,3,2,1,6,3,9,4,7,5,2,1,8,2,3,4,1,2,-1,-2,-1 +172,64.180.78.207,R_7jNsW9q3nxaXJgl,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,0,0,6,0,7,0,0,0,6,4,9,7,0,0,0,7,5,8,0,5,0,0,7,0,8,0,5,0,9,8,8,9,0,4,0,0,0,0,0,20+,2,6,0,0,6,0,7,0,3.16666666666667,5,0,0,7,0,8,0,3.33333333333333,0,0,6,4,9,7,3.8,5,0,9,8,8,9,6,0,0,0,7,5,8,0,3.33333333333333,0,4,0,0,0,0,0,0.666666666666667,1,0,0,-1,0,-1,0,-0.166666666666667,-5,0,-3,-4,1,-2,-2.2,0,-4,0,7,5,8,0,2.66666666666667,0.0999999999999999,-0.666666666666667,0.375,2,1,0.6,0.6,0.6,0,0,0,-2,-1,0,-1,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Monday,E,E,E,B,D,Female,1,High School (or equivalent),HS_TS,68,67 - 73,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,5,6,2,1,1,5,3,7,4,6,2,7,5,8,3,4,6,2,1,1,5,8,4,2,3,6,7,1,5,4,6,2,3,7,5,6,7,8,4,3,2,1,5,8,9,2,4,3,7,1,6,3,4,2,1,2,1,0,1 +173,72.1.195.11,R_5dEXfDaL0D2fqmH,self,02PVF,past,1,1,1,3,1,3,2,3,1,3,1,1,2,4,1,1,1,3,3,2,5,1,5,5,1,3,5,1,1,3,3,3,3,8,1,1,5,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,3,1,3,2,1.66666666666667,5,1,5,5,1,3,5,3.33333333333333,3,1,3,1,1,2,1.8,1,1,3,3,3,3,2.2,4,1,1,1,3,3,2,2.16666666666667,8,1,1,5,3,3,4,3.5,-4,0,-4,-2,0,0,-3,-1.66666666666667,2,0,0,-2,-2,-1,-0.4,-4,0,0,-4,0,0,-2,-1.33333333333333,-1.13333333333333,-2,1.375,3,0,1,0.6,0.8,1,2,1,-1,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,B,Female,1,University - Undergraduate,C_Ug,47,46 - 52,Canadian,Female,1,,,1,,1,,6,1,8,4,3,5,7,2,2,4,7,1,5,6,3,7,5,2,6,8,1,4,3,1,2,4,8,6,5,3,7,5,4,1,6,2,7,3,4,7,3,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,6,3,2,4,8,1,7,2,3,4,1,1,1,2,2 +174,108.170.188.2,R_1LcejuzWYuwVmpU,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,15-19,2,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0.8,0,0.4,2,2,2,2,2,2,2,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,F,C,D,E,B,Female,1,College Diploma/Certificate,C_Ug,33,32 - 38,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,4,5,7,6,1,1,2,5,7,6,3,4,3,4,8,5,7,2,6,1,1,5,8,2,6,3,4,7,1,2,6,4,3,5,7,3,5,4,8,6,2,7,1,3,8,2,4,5,6,9,1,7,4,3,2,1,-2,-2,-2,-2 +175,67.44.224.56,R_74fHLt2I7H6GVy1,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,0,0,1,2,3,2,0,0,2,0,2,1,0,1,1,0,0,0,1,1,0,0,1,2,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,20+,2,3,0,0,1,2,3,2,1.5,1,0,0,1,2,0,1,0.666666666666667,0,0,2,0,2,1,0.8,1,0,0,0,0,0,0.2,0,1,1,0,0,0,1,0.333333333333333,0,0,1,0,0,0,1,0.166666666666667,2,0,0,0,0,3,1,0.833333333333333,-1,0,2,0,2,1,0.6,0,1,0,0,0,0,0,0.166666666666667,0.533333333333333,0.666666666666667,1.625,0,3,0.8,0.6,0.7,1,2,2,-2,-1,-2,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,C,B,B,B,Female,1,University - Undergraduate,C_Ug,65,60 - 66,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,6,7,3,4,1,1,5,3,7,2,4,6,7,3,8,6,2,5,4,1,1,3,8,2,7,6,5,4,1,3,4,6,2,5,7,7,3,2,8,4,6,5,1,8,6,9,3,7,5,4,1,2,2,3,4,1,2,1,2,2 +176,23.154.184.164,R_5ghW0E3NmA301kv,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,3,3,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,10-14,2,1,1,1,2,1,1,1,1.16666666666667,2,1,1,3,3,1,1,1.83333333333333,1,2,1,1,1,1,1.2,2,2,1,1,1,1,1.4,1,1,2,1,1,1,1,1.16666666666667,1,1,2,1,1,1,1,1.16666666666667,-1,0,0,-1,-2,0,0,-0.666666666666667,-1,0,0,0,0,0,-0.2,0,0,0,0,0,0,0,0,-0.288888888888889,0,0.25,1,1,0.4,0.2,0.3,0,0,-1,-2,0,0,-2,-1,10 cents,5 minutes,15 days,2,9,It's impossible to tell,47,Monday,D,D,A,D,F,Female,1,High School (or equivalent),HS_TS,55,53 - 59,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,7,6,4,5,1,1,4,5,7,3,2,6,4,2,8,5,7,6,3,1,1,7,8,2,3,6,5,4,1,6,3,5,2,4,7,2,4,5,8,3,7,6,1,3,5,7,9,6,4,2,1,8,3,2,4,1,2,0,0,2 +177,172.102.229.73,R_68Xh1mj6hRDBycV,self,01FPV,future,1,1,1,1,1,2,1,5,5,5,4,5,5,5,5,5,5,5,5,6,1,1,1,7,1,7,2,2,2,2,5,3,3,1,4,2,7,5,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,2,1,1.16666666666667,1,1,1,7,1,7,2,3,5,5,5,4,5,5,4.8,2,2,2,5,3,3,2.8,5,5,5,5,5,5,6,5,1,4,2,7,5,7,8,4.33333333333333,0,0,0,-6,0,-5,-1,-1.83333333333333,3,3,3,-1,2,2,2,4,1,3,-2,0,-2,-2,0.666666666666667,0.277777777777778,-0.333333333333333,0.25,0,1,0.4,0.2,0.3,0,1,1,-1,1,0,0,0,10 cents,25 minutes,15 days,3,8,It's impossible to tell,53,Tuesday,A,F,B,D,F,Male,0,Trade School,HS_TS,64,60 - 66,Canadian,Male,1,,1,,,,1,5,1,8,2,6,3,4,7,3,2,7,1,4,6,5,2,4,6,3,8,1,5,7,1,3,7,8,4,2,5,6,4,5,1,6,3,7,2,6,3,4,2,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,6,8,7,5,1,9,3,2,4,1,1,-1,0,0 +178,74.12.48.225,R_5lit9e73EtczkFv,self,03VFP,future,5,2,2,0,3,3,3,0,0,1,0,0,0,2,0,1,0,2,2,1,2,2,2,1,3,1,1,3,0,1,0,1,1,0,2,3,1,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,2,0,3,3,3,2.5,2,2,2,1,3,1,1,1.83333333333333,0,0,1,0,0,0,0.2,3,0,1,0,1,1,1,2,0,1,0,2,2,1,1.16666666666667,0,2,3,1,0,3,1,1.5,3,0,0,-1,0,2,2,0.666666666666667,-3,0,0,0,-1,-1,-0.8,2,-2,-2,-1,2,-1,0,-0.333333333333333,-0.155555555555556,0.333333333333333,1.5,3,0,1,0.8,0.9,1,2,1,-2,-2,-2,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,C,D,Female,1,University - Undergraduate,C_Ug,37,32 - 38,Canadian,Female,1,,,,1,,1,7,1,8,4,3,6,5,2,3,5,7,1,2,6,4,3,6,4,7,8,1,2,5,1,4,2,8,3,7,5,6,5,2,1,4,3,7,6,5,4,2,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,5,8,2,6,4,1,7,2,4,3,1,2,2,2,2 +179,76.9.84.130,R_60yR4jxoIfsw9vb,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5-9,2,0,0,0,0,1,2,1,0.5,0,0,0,0,1,0,0,0.166666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0.333333333333333,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0.333333333333333,0.222222222222222,0.333333333333333,0.375,1,2,0.8,0.6,0.7,0,1,0,-1,-1,0,0,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,57,Sunday,D,F,E,B,D,Female,1,University - Undergraduate,C_Ug,65,60 - 66,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,6,5,3,7,1,1,2,5,7,3,6,4,7,4,8,3,5,6,2,1,1,6,8,2,7,4,3,5,1,2,4,3,5,6,7,3,5,2,8,6,7,4,1,8,6,9,2,5,7,3,1,4,3,4,2,1,1,1,0,0 +180,173.33.208.207,R_3bOZ7PtruTYq3Nk,self,03VFP,past,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.2,0,0.1,2,2,2,2,2,2,2,2,20 cents,100 minutes,15 days,6,12,Richard is shorter than Matt,47,Wednesday,F,B,E,E,F,Female,1,University - Undergraduate,C_Ug,25,25 - 31,Canadian,Female,1,,,,1,1,,5,1,8,7,3,4,6,2,4,3,7,1,6,5,2,3,5,2,7,8,1,4,6,1,2,6,8,3,4,7,5,2,3,1,6,4,7,5,2,7,4,6,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,6,9,7,5,2,1,3,3,2,4,1,-2,-2,-2,-2 +181,75.33.88.147,R_54ijQ6ltO8i7hyF,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,5,4,6,4,5,5,6,5,6,5,5,3,5,3,4,7,3,4,6,6,6,5,6,5,6,4,5,4,5,5,5,6,5,6,6,5,5,6,20+,2,5,5,5,4,6,4,5,4.83333333333333,6,6,6,5,6,5,6,5.66666666666667,5,6,5,6,5,5,5.4,4,5,4,5,5,5,4.6,3,5,3,4,7,3,4,4.16666666666667,6,5,6,6,5,5,6,5.5,-1,-1,-1,-1,0,-1,-1,-0.833333333333333,1,1,1,1,0,0,0.8,-3,0,-3,-2,2,-2,-2,-1.33333333333333,-0.455555555555556,-1,0.125,0,3,1,0.4,0.7,0,0,1,-1,1,0,1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,A,B,Female,1,Professional Degree (ex. JD/MD),grad_prof,30,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,5,6,7,1,1,4,3,7,5,6,2,2,6,8,4,7,5,3,1,1,2,8,5,6,7,3,4,1,6,4,2,5,3,7,6,5,3,8,2,7,4,1,4,3,9,2,7,6,8,1,5,3,2,4,1,1,-1,0,-1 +182,172.56.67.185,R_5Y7TmGAfgSs9cSl,self,02PVF,past,7,8,10,5,4,6,9,7,6,8,7,7,5,7,5,6,5,5,10,5,6,7,8,7,7,8,6,5,7,8,8,8,8,10,7,8,9,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,10,5,4,6,9,6.66666666666667,6,7,8,7,7,8,6,7.16666666666667,7,6,8,7,7,5,7,5,7,8,8,8,8,7.2,7,5,6,5,5,10,5,6.33333333333333,10,7,8,9,9,9,8,8.66666666666667,1,1,2,-2,-3,-2,3,-0.5,2,-1,0,-1,-1,-3,-0.2,-3,-2,-2,-4,-4,1,-3,-2.33333333333333,-1.01111111111111,-1,0.375,0,3,0.2,0.4,0.3,-1,1,0,0,-1,0,-1,1,10 cents,100 minutes,24 days,3,11,Richard is taller than Matt,39,Sunday,B,E,B,F,E,Female,1,University - Undergraduate,C_Ug,65,60 - 66,American,Female,1,,,1,,1,,2,1,8,3,4,6,5,7,4,3,7,1,2,5,6,7,6,3,2,8,1,4,5,1,2,6,8,5,4,7,3,2,5,1,4,3,7,6,7,3,4,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,5,6,4,2,9,1,8,2,3,4,1,0,1,0,1 +183,74.135.82.215,R_3fQSaQR0xeuPvSV,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20+,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.375,0,3,0.4,0.2,0.3,0,1,1,-1,0,0,0,0,10 cents,100 minutes,24 days,6,8,Richard is taller than Matt,47,Tuesday,D,F,F,A,E,Male,0,College Diploma/Certificate,C_Ug,68,67 - 73,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,2,4,7,3,1,1,3,5,7,6,2,4,5,4,8,3,6,2,7,1,1,7,8,3,2,5,4,6,1,3,4,5,6,2,7,3,5,6,8,7,2,4,1,5,4,2,9,7,6,8,1,3,2,4,3,1,1,0,0,0 +184,99.232.146.11,R_1ng5n8CyAFaD0pX,self,01FPV,past,1,1,1,2,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,1,1,1,1.16666666666667,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1.4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1.16666666666667,0,0,0,1,0,0,0,0.166666666666667,0,0,0,2,0,0,0.4,0,0,0,0,0,-1,0,-0.166666666666667,0.133333333333333,0,0.125,1,2,0.8,0.8,0.8,0,0,-2,-1,-1,-1,-1,-1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,F,Female,1,University - Graduate (Masters),grad_prof,41,39 - 45,Canadian,Female,1,,1,,,1,,4,1,8,7,6,3,5,2,6,4,7,1,2,5,3,6,5,7,4,8,1,3,2,1,3,4,8,5,2,7,6,4,2,1,3,5,7,6,7,4,2,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,2,9,5,8,3,1,4,4,2,3,1,1,1,1,1 +185,173.238.3.28,R_1DzEVuaXhfNNmVt,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,5,0,8,10,8,5,8,10,10,10,10,10,8,8,5,10,9,5,9,5,9,5,9,10,5,5,9,7,7,7,7,7,7,7,9,10,9,9,8,8,10-14,1,5,0,8,10,8,5,8,6,9,5,9,10,5,5,9,7.16666666666667,10,10,10,10,10,8,10,7,7,7,7,7,7,7,8,5,10,9,5,9,5,7.66666666666667,7,9,10,9,9,8,8,8.66666666666667,-4,-5,-1,0,3,0,-1,-1.16666666666667,3,3,3,3,3,1,3,1,-4,0,0,-4,1,-3,-1,0.277777777777778,-1,0.5,1,2,0.8,0.6,0.7,1,1,1,-1,1,0,-1,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,57,Sunday,D,C,C,B,D,Male,0,High School (or equivalent),HS_TS,55,53 - 59,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,6,5,3,4,1,1,5,2,7,6,4,3,7,3,8,5,4,6,2,1,1,6,8,3,2,7,4,5,1,5,4,3,6,2,7,5,6,4,8,3,2,7,1,3,8,5,6,7,2,4,1,9,3,4,2,1,1,-1,0,1 +186,174.6.12.149,R_62rjslG8oSPf6M3,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,4,1,3,2,6,1,5,1,2,3,1,1,1,1,1,3,2,10-14,2,1,2,2,2,1,1,1,1.5,1,1,1,4,1,3,2,1.83333333333333,1,1,2,1,1,1,1.2,6,1,5,1,2,3,3,1,1,1,1,1,2,1,1.16666666666667,1,1,1,1,1,3,2,1.33333333333333,0,1,1,-2,0,-2,-1,-0.333333333333333,-5,0,-3,0,-1,-2,-1.8,0,0,0,0,0,-1,-1,-0.166666666666667,-0.766666666666667,-1.33333333333333,0.75,1,2,0.6,0.4,0.5,1,1,1,-1,1,-1,-2,0,5 cents,100 minutes,24 days,5,11,Richard is taller than Matt,47,Sunday,B,C,B,B,F,Female,1,University - Undergraduate,C_Ug,36,32 - 38,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,4,3,2,6,1,1,3,2,7,6,5,4,5,7,8,4,2,3,6,1,1,4,8,5,2,3,6,7,1,4,5,3,6,2,7,7,2,4,8,6,3,5,1,8,9,7,4,6,2,3,1,5,4,3,2,1,1,-1,1,2 +187,135.23.41.88,R_10Uojumj1mzlq4m,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,8,9,8,6,9,8,2,2,5,2,2,2,2,2,6,1,6,4,2,3,1,2,3,2,3,2,3,3,3,3,3,3,5,5,5,5,5,5,5,20+,2,8,8,9,8,6,9,8,8,3,1,2,3,2,3,2,2.33333333333333,2,2,5,2,2,2,2.6,3,3,3,3,3,3,3,2,2,6,1,6,4,2,3.5,5,5,5,5,5,5,5,5,5,7,7,5,4,6,6,5.66666666666667,-1,-1,2,-1,-1,-1,-0.4,-3,-3,1,-4,1,-1,-3,-1.5,1.25555555555556,0.666666666666667,-1.875,0,1,0.2,0,0.1,-2,-2,-2,1,2,2,2,-2,10 cents,25 minutes,15 days,2,7,It's impossible to tell,57,Wednesday,A,A,A,F,A,Male,0,High School (or equivalent),HS_TS,51,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,3,7,2,4,1,1,5,3,7,4,2,6,5,6,8,3,2,4,7,1,1,7,8,3,4,6,5,2,1,2,5,4,6,3,7,3,6,5,8,7,4,2,1,5,3,2,4,7,6,8,1,9,3,4,2,1,-1,-2,-2,-2 +188,209.121.229.241,R_15wEmcF3KbEYfxn,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,0,0,0,0,0,0,0,2,0,0,0,0,2,7,7,4,8,8,9,8,0,1,7,1,9,7,5,6,1,7,1,2,1,8,5,1,7,7,6,20+,2,1,0,0,0,0,0,0,0.166666666666667,8,0,1,7,1,9,7,4.33333333333333,0,2,0,0,0,0,0.4,5,6,1,7,1,2,4,2,7,7,4,8,8,9,6,1,8,5,1,7,7,6,4.83333333333333,-7,0,-1,-7,-1,-9,-7,-4.16666666666667,-5,-4,-1,-7,-1,-2,-3.6,1,-1,2,3,1,1,3,1.16666666666667,-2.2,-2,0.75,1,2,0.2,0.4,0.3,1,2,2,-1,1,2,-1,2,10 cents,5 minutes,24 days,3,12,It's impossible to tell,44,Monday,D,B,F,B,E,Male,0,Trade School,HS_TS,68,67 - 73,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,3,2,5,1,1,5,4,7,3,2,6,4,6,8,5,2,3,7,1,1,7,8,6,4,5,2,3,1,6,4,2,5,3,7,7,5,4,8,2,6,3,1,9,5,3,4,7,8,6,1,2,2,3,4,1,1,-1,-2,1 +189,142.198.180.246,R_5ErMgmil09hQ2ub,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,10,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,10,0,0,10,10,10,0,0,10,0,10,10,10,0,0,0,10,20+,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,1.66666666666667,10,0,0,0,10,0,4,10,10,0,0,10,0,6,0,10,10,0,0,0,0,3.33333333333333,10,10,10,0,0,0,10,5,0,0,0,-10,0,0,-10,-1.66666666666667,0,-10,0,0,0,0,-2,-10,0,0,0,0,0,-10,-1.66666666666667,-1.77777777777778,-6.66666666666667,0.125,1,2,0.6,0.2,0.4,-1,0,-1,-1,-1,0,-1,0,10 cents,5 minutes,24 days,5,11,It's impossible to tell,47,Tuesday,D,F,A,F,F,Male,0,University - Undergraduate,C_Ug,64,60 - 66,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,3,7,2,4,1,1,5,2,7,3,6,4,6,4,8,3,2,7,5,1,1,5,8,3,6,2,7,4,1,4,6,2,3,5,7,2,6,5,8,4,7,3,1,7,6,3,2,4,9,8,1,5,4,3,2,1,1,1,0,1 +190,216.66.136.6,R_79wXfwIj6vhiuHf,self,02PVF,future,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,6,4,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0.833333333333333,1,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,2,0,6,4,0,2,0,3,2,0,0,0,0,0.833333333333333,0,-1,-3,0,-1,0,0,-0.833333333333333,1,0,0,0,0,0,0.2,0,-3,0,0,6,4,0,1.16666666666667,0.177777777777778,0,1.375,2,1,0.8,0.2,0.5,0,2,2,-2,-2,-1,-2,0,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Monday,A,C,B,D,B,Male,0,University - Undergraduate,C_Ug,57,53 - 59,Canadian,Male,1,,,1,,,1,2,1,8,4,3,5,6,7,5,3,7,1,2,4,6,2,4,5,3,8,1,6,7,1,6,5,8,3,4,7,2,4,2,1,5,6,7,3,3,2,5,6,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,7,4,3,9,8,1,5,4,3,2,1,2,2,1,2 +191,108.56.219.170,R_6f9OqcIhFfNdkWG,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,4,6,7,8,4,7,3,2,4,7,6,5,5,2,8,4,1,6,3,7,3,7,8,3,8,5,6,5,7,6,7,5,4,7,6,3,4,7,8,20+,2,4,4,6,7,8,4,7,5.5,7,3,7,8,3,8,5,6,3,2,4,7,6,5,4.4,6,5,7,6,7,5,6.2,5,2,8,4,1,6,3,4.33333333333333,4,7,6,3,4,7,8,5.16666666666667,-3,1,-1,-1,5,-4,2,-0.5,-3,-3,-3,1,-1,0,-1.8,1,-5,2,1,-3,-1,-5,-0.833333333333333,-1.04444444444444,-1,0.875,2,0,0.8,0.2,0.5,1,2,1,-1,0,0,-2,0,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Monday,B,D,C,B,F,Male,0,University - Undergraduate,C_Ug,69,67 - 73,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,7,4,5,6,1,1,2,3,7,6,5,4,6,2,8,3,7,4,5,1,1,4,8,7,2,6,3,5,1,5,6,4,3,2,7,5,3,7,8,4,6,2,1,8,7,3,6,2,5,9,1,4,4,2,3,1,1,0,0,2 +192,96.255.238.218,R_55MdkoIAn1HWObs,self,03VFP,past,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,7,5,6,5,5,5,5,5,6,6,6,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,6,6,6,6,5,6,6,6,6,7,5.83333333333333,6,6,6,6,6,6,6,5,6,5,5,5,5,5.2,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,5.83333333333333,0,1,0,0,0,0,-1,0.166666666666667,1,0,1,1,1,1,0.8,1,0,0,0,0,0,0,0.166666666666667,0.377777777777778,0,0,0,3,0.8,0.6,0.7,1,1,1,1,1,1,1,1,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,E,B,D,C,Female,1,University - Graduate (Masters),grad_prof,35,32 - 38,American,Female,1,,,,1,1,,6,1,8,5,4,7,2,3,6,4,7,1,2,3,5,6,2,4,3,8,1,5,7,1,3,6,8,5,4,2,7,4,3,1,6,2,7,5,5,4,7,3,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,9,7,4,8,3,1,6,3,4,2,1,-1,-1,-1,-1 +193,198.16.211.53,R_1qgF2gf2qFnKEzF,self,01FPV,future,0,4,4,9,2,6,6,3,2,3,2,3,3,3,0,3,2,3,1,4,8,0,4,5,1,2,4,5,7,8,5,5,7,5,8,9,1,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,4,4,9,2,6,6,4.16666666666667,8,0,4,5,1,2,4,3.33333333333333,3,2,3,2,3,3,2.6,5,7,8,5,5,7,6,3,0,3,2,3,1,4,2,5,8,9,1,4,2,3,4.83333333333333,-8,4,0,4,1,4,2,0.833333333333333,-2,-5,-5,-3,-2,-4,-3.4,-2,-8,-6,1,-1,-1,1,-2.83333333333333,-1.8,-0.333333333333333,1.125,3,0,0.8,0.4,0.6,1,2,2,-2,-1,-2,1,0,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,E,C,D,B,Male,0,University - Undergraduate,C_Ug,62,60 - 66,Canadian,Male,1,,1,,,,1,4,1,8,5,6,7,3,2,3,6,7,1,5,2,4,3,5,4,6,8,1,7,2,1,4,7,8,6,3,2,5,2,6,1,4,3,7,5,7,6,5,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,9,2,8,5,3,1,7,4,2,3,1,2,1,2,-1 +194,99.251.141.18,R_3hLsRYe2TUd5O8f,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like a great deal,2,1,3,5,2,4,3,5,4,3,2,4,3,2,4,4,3,2,5,3,5,3,5,7,3,6,5,6,4,5,3,4,4,1,5,7,3,2,5,4,15-19,2,2,1,3,5,2,4,3,2.83333333333333,5,3,5,7,3,6,5,4.83333333333333,5,4,3,2,4,3,3.6,6,4,5,3,4,4,4.4,2,4,4,3,2,5,3,3.33333333333333,1,5,7,3,2,5,4,3.83333333333333,-3,-2,-2,-2,-1,-2,-2,-2,-1,0,-2,-1,0,-1,-0.8,1,-1,-3,0,0,0,-1,-0.5,-1.1,-1.33333333333333,-0.375,2,1,1,0.6,0.8,-2,0,-1,-2,0,1,0,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,B,Male,0,High School (or equivalent),HS_TS,71,67 - 73,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,2,5,6,1,1,2,6,7,3,5,4,6,3,8,5,7,4,2,1,1,2,8,3,4,6,5,7,1,5,4,6,2,3,7,5,4,7,8,2,6,3,1,8,3,7,2,6,4,9,1,5,2,4,3,1,2,0,-1,0 +195,99.243.109.196,R_1dyJk0pjJmIW7iG,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,15-19,2,1,1,1,1,2,2,1,1.33333333333333,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1.2,1,1,1,2,2,1,1,1.33333333333333,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0.333333333333333,0,0,0,0,-1,0,-0.2,0,0,0,1,1,0,0,0.333333333333333,0.155555555555556,0,0.875,2,1,0.8,0.4,0.6,0,1,1,-1,0,-1,-2,1,10 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,B,B,F,B,Male,0,University - Undergraduate,C_Ug,60,60 - 66,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,7,4,5,6,1,1,4,2,7,3,6,5,3,5,8,6,7,4,2,1,1,5,8,2,6,4,7,3,1,5,2,4,6,3,7,7,5,4,8,3,2,6,1,2,7,3,4,6,8,9,1,5,4,3,2,1,1,0,1,2 +196,80.71.36.20,R_5shpke7bmFw8KL2,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,6,7,7,6,8,8,6,8,7,7,7,6,6,6,6,7,7,5,8,6,7,7,4,6,7,6,6,6,7,6,5,7,6,7,6,7,7,7,6,20+,2,7,6,7,7,6,8,8,6.83333333333333,6,7,7,4,6,7,6,6.16666666666667,6,8,7,7,7,6,7,6,6,7,6,5,7,6,6,6,6,7,7,5,8,6.16666666666667,6,7,6,7,7,7,6,6.66666666666667,1,-1,0,3,0,1,2,0.666666666666667,0,2,0,1,2,-1,1,0,-1,0,0,0,-2,2,-0.5,0.388888888888889,1,0.25,3,0,1,0.8,0.9,1,0,1,0,0,0,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Female,1,University - Undergraduate,C_Ug,39,39 - 45,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,5,4,2,6,1,1,5,2,7,4,3,6,5,3,8,4,6,7,2,1,1,7,8,6,3,4,2,5,1,2,5,3,6,4,7,4,7,3,8,6,5,2,1,5,6,7,3,2,4,8,1,9,3,4,2,1,0,0,0,-1 +197,76.46.3.149,R_7eUNrbm7ZZr1RcD,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,0,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,3,0,1,1,3,1,1,3,0,3,1,1,2,1,2,2,1,0,3,1,20+,2,1,0,1,1,2,1,1,1,3,0,1,1,3,1,1,1.5,1,0,0,1,1,1,0.6,3,0,3,1,1,2,1.6,1,1,1,1,2,1,1,1.16666666666667,1,2,2,1,0,3,1,1.5,-2,0,0,0,-1,0,0,-0.5,-2,0,-3,0,0,-1,-1,0,-1,-1,0,2,-2,0,-0.333333333333333,-0.611111111111111,-0.333333333333333,0.625,0,3,0.4,0.4,0.4,0,0,1,-2,0,0,-2,0,10 cents,100 minutes,24 days,5,7,It's impossible to tell,57,Monday,D,F,B,F,A,Male,0,University - Graduate (Masters),grad_prof,72,67 - 73,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,6,3,7,4,2,5,2,4,8,3,7,6,5,1,1,6,8,5,2,4,7,3,1,2,6,5,4,3,7,3,7,4,8,5,2,6,1,4,5,2,6,8,9,7,1,3,4,2,3,1,2,0,0,2 +198,206.176.149.176,R_7zlzbCdEcoq7XWN,self,01FPV,future,6,8,6,7,7,7,6,9,6,8,7,8,7,8,6,7,6,8,7,8,7,6,7,6,7,7,7,7,6,7,7,7,8,7,6,7,7,8,8,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,6,7,7,7,6,6.83333333333333,7,6,7,6,7,7,7,6.66666666666667,9,6,8,7,8,7,7.6,7,6,7,7,7,8,6.8,8,6,7,6,8,7,8,7,7,6,7,7,8,8,9,7.16666666666667,-1,2,-1,1,0,0,-1,0.166666666666667,2,0,1,0,1,-1,0.8,1,0,0,-1,0,-1,-1,-0.166666666666667,0.266666666666667,-1,0.25,0,2,0.2,0.2,0.2,2,2,1,0,1,1,1,0,10 cents,75 minutes,24 days,5,9,Richard is as tall as Matt,44,Monday,C,D,D,B,A,Male,0,University - Undergraduate,C_Ug,48,46 - 52,Canadian,Male,1,,1,,,,1,5,1,8,4,6,3,2,7,4,6,7,1,2,3,5,4,3,5,2,8,1,7,6,1,6,7,8,5,2,4,3,6,4,1,2,5,7,3,3,5,2,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,2,9,5,8,1,7,2,4,3,1,0,-1,-1,-1 +199,104.158.197.165,R_3LZ4LsM57Avk5bM,self,01FPV,future,2,1,2,1,2,1,2,2,1,1,2,1,2,1,1,2,1,2,3,2,3,1,4,4,1,1,3,2,1,1,1,1,1,1,1,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,1,2,1,2,1.5,3,1,4,4,1,1,3,2.33333333333333,2,1,1,2,1,2,1.4,2,1,1,1,1,1,1.2,1,1,2,1,2,3,2,1.66666666666667,1,1,1,1,1,3,2,1.33333333333333,-1,0,-2,-3,1,0,-1,-0.833333333333333,0,0,0,1,0,1,0.2,0,0,1,0,1,0,0,0.333333333333333,-0.1,0,0.625,1,2,1,0.8,0.9,0,1,1,-1,0,0,-1,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,49,46 - 52,Canadian,Male,1,,1,,,,1,7,1,8,5,4,3,2,6,6,3,7,1,2,4,5,2,6,7,5,8,1,3,4,1,3,7,8,5,4,6,2,2,4,1,6,3,7,5,7,5,6,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,7,3,8,9,4,1,6,3,2,4,1,1,0,0,1 +200,154.20.38.28,R_36uzSWsOpOQWjwl,self,02PVF,past,10,1,6,10,3,1,5,8,1,9,2,1,4,1,2,9,1,1,1,3,4,1,4,4,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,1,6,10,3,1,5,5.16666666666667,4,1,4,4,5,1,1,3.16666666666667,8,1,9,2,1,4,4.2,1,1,1,1,1,1,1,1,2,9,1,1,1,3,2.5,1,1,1,1,1,1,1,1,6,0,2,6,-2,0,4,2,7,0,8,1,0,3,3.2,0,1,8,0,0,0,2,1.5,2.23333333333333,3,1.75,3,0,0.8,1,0.9,2,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,50,46 - 52,Canadian,Female,1,,,1,,1,,3,1,8,2,4,5,6,7,5,2,7,1,4,3,6,2,3,5,6,8,1,4,7,1,3,4,8,7,2,5,6,2,3,1,6,4,7,5,2,3,5,6,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,3,9,8,5,6,1,2,3,2,4,1,2,0,2,2 +201,100.12.27.170,R_5V7LbLkar6CIjpT,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Dislike somewhat,0,0,0,0,0,3,0,3,1,1,1,2,0,2,1,3,3,0,5,1,0,0,0,0,0,2,0,0,0,0,2,5,1,1,0,1,0,0,2,0,20+,-1,0,0,0,0,0,3,0,0.5,0,0,0,0,0,2,0,0.333333333333333,3,1,1,1,2,0,1.6,0,0,0,2,5,1,1.4,2,1,3,3,0,5,1,2.33333333333333,1,0,1,0,0,2,0,0.666666666666667,0,0,0,0,0,1,0,0.166666666666667,3,1,1,-1,-3,-1,0.2,1,1,2,3,0,3,1,1.66666666666667,0.677777777777778,0,0,1,2,0.6,0.8,0.7,1,-1,0,-1,2,0,-1,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,57,Wednesday,D,C,B,B,D,Male,0,High School (or equivalent),HS_TS,67,67 - 73,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,6,2,4,1,1,4,5,7,3,2,6,4,7,8,3,6,2,5,1,1,4,8,3,2,6,5,7,1,4,6,5,3,2,7,5,2,3,8,4,7,6,1,5,9,3,8,2,6,7,1,4,4,3,2,1,1,-2,0,1 +202,65.31.107.174,R_3PBwhkVA2ghNmO6,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",16,Like a great deal,0,0,1,1,0,0,0,0,0,0,0,1,0,9,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,2,0,15-19,2,0,0,1,1,0,0,0,0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0.2,0,0,1,0,0,0,0.2,9,1,1,0,0,2,0,2.16666666666667,0,1,0,1,0,2,0,0.666666666666667,0,0,1,1,0,0,0,0.333333333333333,0,0,-1,0,1,0,0,9,0,1,-1,0,0,0,1.5,0.611111111111111,0,0.625,1,2,0.2,0.2,0.2,0,1,1,-2,1,0,-1,1,10 cents,5 minutes,24 days,5,7,Zach is shorter than Matt,57,Tuesday,D,B,C,E,B,Male,0,High School (or equivalent),HS_TS,61,60 - 66,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,5,2,6,1,1,4,2,7,5,6,3,6,4,8,2,3,5,7,1,1,6,8,2,7,3,5,4,1,6,3,2,5,4,7,7,6,4,8,5,3,2,1,9,6,5,2,7,4,3,1,8,4,2,3,1,2,-1,0,1 +203,198.55.233.203,R_5J0z6MdJsR2r15L,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,8,8,2,7,5,5,2,7,2,8,6,5,8,8,2,5,8,6,5,2,2,7,2,5,4,5,5,8,2,6,7,3,7,9,2,2,6,6,20+,2,5,5,8,8,2,7,5,5.83333333333333,5,2,2,7,2,5,4,3.83333333333333,5,2,7,2,8,6,4.8,5,5,8,2,6,7,5.2,5,8,8,2,5,8,6,6,3,7,9,2,2,6,6,4.83333333333333,0,3,6,1,0,2,1,2,0,-3,-1,0,2,-1,-0.4,2,1,-1,0,3,2,0,1.16666666666667,0.922222222222222,0,0.625,3,0,1,0.2,0.6,0,1,1,-1,0,-1,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,C,A,Male,0,University - PhD,grad_prof,64,60 - 66,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,4,2,3,6,1,1,5,2,7,6,4,3,4,2,8,6,7,3,5,1,1,6,8,4,3,5,2,7,1,2,3,5,4,6,7,3,2,4,8,7,5,6,1,8,4,2,9,6,5,7,1,3,4,2,3,1,1,0,1,1 +204,208.96.95.203,R_3IhCIYd49zbbX0I,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,0,9,0,8,9,10,5,0,5,8,9,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10-14,1,0,9,0,8,9,10,5,6,0,0,0,0,0,0,0,0,0,5,8,9,0,5,4.4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0.833333333333333,0,0,0,0,0,0,0,0,0,9,0,8,9,10,5,6,0,5,8,9,0,5,4.4,0,0,0,0,0,5,0,0.833333333333333,3.74444444444444,3.33333333333333,1.25,0,3,1,0,0.5,2,2,1,-2,-1,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,A,A,A,A,Male,0,Trade School,HS_TS,45,39 - 45,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,6,5,3,7,1,1,6,5,7,2,4,3,4,5,8,6,2,3,7,1,1,6,8,3,2,7,4,5,1,3,4,5,6,2,7,4,2,5,8,3,6,7,1,5,7,6,2,4,9,8,1,3,4,2,3,1,2,1,0,1 +205,24.71.116.155,R_6kjCxK3ZR0UJkPf,self,01FPV,future,1,0,0,4,0,0,2,0,0,0,2,1,1,0,0,0,0,3,0,1,1,0,0,2,1,1,1,0,0,0,0,2,1,0,1,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,4,0,0,2,0.833333333333333,1,0,0,2,1,1,1,0.833333333333333,0,0,0,2,1,1,0.6,0,0,0,0,2,1,0.4,0,0,0,0,3,0,1,0.5,0,1,0,0,1,1,1,0.5,0,0,0,2,-1,-1,1,0,0,0,0,2,-1,0,0.2,0,-1,0,0,2,-1,0,0,0.0666666666666667,0.333333333333333,1.625,1,2,1,0.2,0.6,1,2,2,-2,-1,-2,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,A,B,Male,0,College Diploma/Certificate,C_Ug,68,67 - 73,Canadian,Male,1,,1,,,,1,6,1,8,7,3,4,2,5,6,4,7,1,2,5,3,5,7,6,2,8,1,3,4,1,7,3,8,4,6,2,5,4,5,1,6,3,7,2,6,2,7,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,9,5,6,2,1,4,4,2,3,1,2,1,2,2 +206,142.161.255.138,R_3fcfNAw5M9wlsqt,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.111111111111111,0,1.125,1,2,0.6,0.4,0.5,0,2,1,-2,0,-2,-2,0,10 cents,5 minutes,24 days,2,8,It's impossible to tell,47,Monday,D,F,E,B,B,Male,0,College Diploma/Certificate,C_Ug,65,60 - 66,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,6,4,3,5,1,1,2,5,7,6,4,3,4,7,8,6,3,2,5,1,1,7,8,5,6,3,2,4,1,4,3,2,5,6,7,5,7,3,8,2,4,6,1,4,8,9,6,2,3,5,1,7,2,3,4,1,2,0,2,2 +207,192.0.216.195,R_1O1WCIFYxPNJqh0,self,01FPV,past,7,6,1,1,1,1,3,2,1,2,2,4,1,4,4,2,2,2,2,4,6,2,2,6,2,2,5,2,6,2,2,6,5,3,4,3,2,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,1,1,1,1,3,2.83333333333333,6,2,2,6,2,2,5,3.33333333333333,2,1,2,2,4,1,2.2,2,6,2,2,6,5,3.6,4,4,2,2,2,2,4,2.66666666666667,3,4,3,2,3,3,3,3,1,4,-1,-5,-1,-1,-2,-0.5,0,-5,0,0,-2,-4,-1.4,1,0,-1,0,-1,-1,1,-0.333333333333333,-0.744444444444444,-1.66666666666667,1.25,1,2,1,0.8,0.9,1,2,2,-1,1,-2,-2,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,B,Male,0,University - Undergraduate,C_Ug,64,60 - 66,Canadian,Male,1,,1,,,1,,7,1,8,4,5,6,2,3,3,5,7,1,4,6,2,5,3,4,2,8,1,6,7,1,5,7,8,3,6,4,2,5,2,1,3,4,7,6,6,7,3,2,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,5,3,4,6,2,1,9,2,3,4,1,1,-1,2,2 +208,70.51.236.71,R_7nLZFWU30FLnCi5,self,01FPV,future,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,4,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1.5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,4,1,1,1,1.83333333333333,2,1,1,1,1,1,1,1.16666666666667,0,0,0,0,-3,0,0,-0.5,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0.666666666666667,0.0555555555555555,0,0.25,2,1,0.6,0.4,0.5,-2,0,1,-1,0,-1,-1,0,10 cents,5 minutes,47 days,5,11,It's impossible to tell,47,Wednesday,D,B,C,B,F,Male,0,University - Undergraduate,C_Ug,66,60 - 66,Canadian,Male,1,,1,,,,1,5,1,8,2,7,6,4,3,3,5,7,1,6,2,4,5,3,2,7,8,1,6,4,1,5,7,8,4,3,6,2,5,2,1,3,6,7,4,5,6,4,3,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,7,4,8,5,2,1,3,3,2,4,1,1,0,1,1 +209,142.68.241.141,R_6DdjtpNkPuTY7bX,self,02PVF,past,5,0,0,2,0,2,1,1,2,6,1,5,3,1,1,5,1,0,1,1,3,0,0,3,0,1,1,0,1,4,0,2,1,0,0,4,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,0,0,2,0,2,1,1.5,3,0,0,3,0,1,1,1.16666666666667,1,2,6,1,5,3,3,0,1,4,0,2,1,1.4,1,1,5,1,0,1,1,1.5,0,0,4,0,0,2,1,1,2,0,0,-1,0,1,0,0.333333333333333,1,1,2,1,3,2,1.6,1,1,1,1,0,-1,0,0.5,0.811111111111111,0.666666666666667,1.125,3,0,1,0.2,0.6,1,2,1,-2,0,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,A,D,D,Female,1,University - Undergraduate,C_Ug,54,53 - 59,Canadian,Female,1,,,1,,1,,7,1,8,5,3,4,6,2,5,4,7,1,6,2,3,4,6,5,2,8,1,7,3,1,5,3,8,2,4,7,6,2,4,1,5,3,7,6,2,6,4,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,3,5,4,9,1,6,4,3,2,1,2,0,1,2 +210,184.64.22.170,R_60tTHIyZIuqgPuC,self,02PVF,past,6,6,5,5,5,5,6,6,5,6,5,5,6,5,6,6,5,5,5,6,6,6,6,5,6,6,6,5,6,6,6,6,6,6,6,6,6,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,5,5,6,5.33333333333333,6,6,6,5,6,6,6,5.83333333333333,6,5,6,5,5,6,5.4,5,6,6,6,6,6,5.8,5,6,6,5,5,5,6,5.33333333333333,6,6,6,6,5,5,5,5.66666666666667,0,0,-1,0,-1,-1,0,-0.5,1,-1,0,-1,-1,0,-0.4,-1,0,0,-1,0,0,1,-0.333333333333333,-0.411111111111111,0.333333333333333,0.375,0,3,0.6,0.2,0.4,0,2,0,-2,1,1,0,1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Wednesday,E,B,D,B,E,Female,1,College Diploma/Certificate,C_Ug,50,46 - 52,Canadian,Female,1,,,1,,1,,5,1,8,4,3,2,6,7,2,5,7,1,4,3,6,3,6,2,7,8,1,4,5,1,4,2,8,5,6,7,3,6,5,1,3,2,7,4,7,3,5,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,6,2,9,3,5,1,8,2,3,4,1,2,-1,-1,0 +211,108.172.29.178,R_1dDPSdwZimjC8dt,self,03VFP,future,2,7,5,0,3,1,2,2,3,3,1,2,2,0,0,1,1,2,2,1,3,2,5,3,1,6,5,1,3,7,6,5,5,5,7,9,2,7,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,0,3,1,2,3,3,2,5,3,1,6,5,3.33333333333333,2,3,3,1,2,2,2.2,1,3,7,6,5,5,4.4,0,0,1,1,2,2,1,1,5,7,9,2,7,9,8,6.5,-1,5,0,-3,2,-5,-3,-0.333333333333333,1,0,-4,-5,-3,-3,-2.2,-5,-7,-8,-1,-5,-7,-7,-5.5,-2.67777777777778,-4.33333333333333,1.25,3,0,1,1,1,1,2,2,-2,2,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,University - Graduate (Masters),grad_prof,37,32 - 38,Canadian,Female,1,,,,1,,1,3,1,8,6,7,2,4,5,6,3,7,1,4,2,5,5,2,4,6,8,1,7,3,1,7,3,8,5,4,2,6,4,5,1,2,6,7,3,7,2,6,3,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,3,8,6,9,4,1,2,4,2,3,1,2,-2,1,2 +212,99.239.32.166,R_7phGa7jbBxOUXRi,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,1,1,0,0,1,0,0,0,0.333333333333333,0,0,0,1,0,0,0,0.166666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.166666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0555555555555556,0,1.125,3,0,1,1,1,1,1,2,-2,0,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,45,39 - 45,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,3,6,4,7,1,1,2,5,7,3,4,6,2,6,8,3,5,4,7,1,1,6,8,3,5,4,7,2,1,4,6,2,5,3,7,2,3,7,8,4,6,5,1,4,6,5,9,3,8,2,1,7,3,4,2,1,2,0,1,2 +213,99.229.9.11,R_6IRGUkL5WBWpyLu,self,03VFP,past,2,0,0,0,0,1,0,3,0,2,0,3,1,0,0,0,8,0,0,2,0,0,0,8,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0,0,0,0,1,0,0.5,0,0,0,8,0,9,2,2.83333333333333,3,0,2,0,3,1,1.6,0,0,0,0,0,0,0,0,0,0,8,0,0,2,1.33333333333333,0,0,0,0,0,0,0,0,2,0,0,-8,0,-8,-2,-2.33333333333333,3,0,2,0,3,1,1.6,0,0,0,8,0,0,2,1.33333333333333,0.2,0.333333333333333,0.625,0,3,0.8,0.4,0.6,0,0,0,-2,0,-2,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,39,Sunday,D,D,B,E,F,Female,1,High School (or equivalent),HS_TS,59,53 - 59,Canadian,Female,1,,,,1,1,,4,1,8,2,7,3,6,5,3,4,7,1,6,5,2,6,2,7,5,8,1,3,4,1,7,3,8,4,5,2,6,2,3,1,5,4,7,6,6,5,2,3,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,9,2,5,6,1,7,3,2,4,1,2,0,2,1 +214,208.161.208.21,R_5OTNuYOq1MEZh9D,self,02PVF,past,2,1,2,2,2,1,2,1,8,1,4,2,4,8,8,2,4,2,8,1,2,1,1,8,5,2,3,8,8,1,1,2,6,2,1,2,1,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,2,2,1,2,1.66666666666667,2,1,1,8,5,2,3,3.16666666666667,1,8,1,4,2,4,3.2,8,8,1,1,2,6,4,8,8,2,4,2,8,1,5.33333333333333,2,1,2,1,4,4,2,2.33333333333333,0,0,1,-6,-3,-1,-1,-1.5,-7,0,0,3,0,-2,-0.8,6,7,0,3,-2,4,-1,3,0.233333333333333,-1.33333333333333,0.625,0,3,1,1,1,0,1,1,-2,1,-1,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,College Diploma/Certificate,C_Ug,56,53 - 59,American,Female,1,,,1,,1,,3,1,8,2,6,7,5,4,5,2,7,1,4,3,6,2,7,3,5,8,1,4,6,1,2,3,8,7,4,5,6,4,2,1,5,3,7,6,4,3,5,7,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,9,3,2,7,8,1,6,3,2,4,1,2,-1,1,1 +215,174.112.117.28,R_7dv2rDE1kigmoMj,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,7,8,8,8,7,8,8,8,9,8,8,2,5,2,6,7,4,4,4,6,4,5,4,7,4,5,7,7,5,6,6,4,4,4,4,4,4,3,5,4,10-14,2,7,8,8,8,7,8,8,7.66666666666667,4,5,4,7,4,5,7,4.83333333333333,8,9,8,8,2,5,7,7,5,6,6,4,4,5.6,2,6,7,4,4,4,6,4.5,4,4,4,4,3,5,4,4,3,3,4,1,3,3,1,2.83333333333333,1,4,2,2,-2,1,1.4,-2,2,3,0,1,-1,2,0.5,1.57777777777778,1.33333333333333,-0.125,3,0,1,0.4,0.7,-2,2,2,2,2,2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,D,E,D,Male,0,University - Undergraduate,C_Ug,44,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,6,2,7,1,1,2,6,7,4,5,3,7,4,8,6,2,3,5,1,1,3,8,4,6,5,2,7,1,3,2,4,5,6,7,5,7,6,8,4,2,3,1,7,3,4,8,2,5,9,1,6,4,3,2,1,-2,-2,-2,2 +216,99.245.157.7,R_5DnzeG3XnzlhAtz,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,2,4,2,4,5,4,3,2,5,3,4,3,5,2,3,4,5,5,4,5,4,4,3,2,4,3,3,2,4,4,4,3,3,4,3,2,3,4,3,20+,2,4,2,4,2,4,5,4,3.5,5,4,4,3,2,4,3,3.66666666666667,3,2,5,3,4,3,3.4,3,2,4,4,4,3,3.4,5,2,3,4,5,5,4,4,3,4,3,2,3,4,3,3.16666666666667,-1,-2,0,-1,2,1,1,-0.166666666666667,0,0,1,-1,0,0,0,2,-2,0,2,2,1,1,0.833333333333333,0.222222222222222,0.666666666666667,1.125,1,1,1,0.6,0.8,0,2,1,-1,-1,-2,-2,0,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,C,Female,1,University - Undergraduate,C_Ug,53,53 - 59,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,6,7,4,3,1,1,6,3,7,5,4,2,3,6,8,4,7,2,5,1,1,6,8,7,4,3,2,5,1,3,6,2,5,4,7,2,5,6,8,3,4,7,1,9,6,5,7,8,2,4,1,3,4,3,2,1,1,1,2,2 +217,69.158.14.169,R_6TFvfHtcY0QBTQ5,self,02PVF,future,0,0,0,0,0,2,1,2,0,3,0,3,2,0,2,0,0,2,0,0,0,0,2,2,0,2,1,1,1,3,1,1,2,0,1,2,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,2,1,0.333333333333333,0,0,2,2,0,2,1,1,2,0,3,0,3,2,1.6,1,1,3,1,1,2,1.4,0,2,0,0,2,0,0,0.666666666666667,0,1,2,0,0,0,1,0.5,0,0,-2,-2,0,0,0,-0.666666666666667,1,-1,0,-1,2,0,0.2,0,1,-2,0,2,0,-1,0.166666666666667,-0.1,-0.333333333333333,1.875,1,2,0.8,0.6,0.7,2,2,2,-2,-1,-2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Monday,A,E,B,B,B,Male,0,University - Undergraduate,C_Ug,72,67 - 73,Canadian,Male,1,,,1,,,1,4,1,8,2,7,3,5,6,4,3,7,1,2,6,5,5,2,4,7,8,1,6,3,1,7,6,8,5,3,2,4,3,5,1,2,6,7,4,7,3,5,6,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,7,8,5,6,4,1,9,2,3,4,1,2,1,2,2 +218,166.182.86.116,R_5Srkr692IrZHd6c,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,20+,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.6,0,0.3,0,0,0,0,0,0,0,0,20 cents,100 minutes,15 days,5,8,It's impossible to tell,57,Tuesday,F,C,E,A,F,Male,0,High School (or equivalent),HS_TS,59,53 - 59,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,6,7,5,1,1,4,2,7,5,6,3,5,7,8,4,2,3,6,1,1,5,8,4,7,6,2,3,1,6,5,2,4,3,7,3,5,4,8,7,2,6,1,4,9,5,3,6,8,7,1,2,4,3,2,1,0,0,0,0 +219,75.158.108.145,R_7QPzbR1u4DAL8Wr,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like somewhat,6,7,7,7,4,8,6,7,3,7,6,6,6,7,4,4,6,5,6,5,7,2,6,7,3,6,6,6,4,7,6,5,6,4,4,6,6,4,4,4,10-14,1,6,7,7,7,4,8,6,6.5,7,2,6,7,3,6,6,5.16666666666667,7,3,7,6,6,6,5.8,6,4,7,6,5,6,5.6,7,4,4,6,5,6,5,5.33333333333333,4,4,6,6,4,4,4,4.66666666666667,-1,5,1,0,1,2,0,1.33333333333333,1,-1,0,0,1,0,0.2,3,0,-2,0,1,2,1,0.666666666666667,0.733333333333333,0.333333333333333,0.25,3,0,1,0.8,0.9,1,1,0,1,-1,-1,-1,-2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,B,B,D,Male,0,University - Undergraduate,C_Ug,42,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,6,7,1,1,3,4,7,6,2,5,6,4,8,2,7,5,3,1,1,3,8,7,6,2,4,5,1,6,5,2,3,4,7,2,4,5,8,6,3,7,1,7,5,4,8,9,3,2,1,6,2,3,4,1,-1,1,1,1 +220,99.241.216.184,R_1RyAW27tZPnjZi9,self,02PVF,future,6,5,5,5,6,5,5,4,6,5,6,6,5,6,5,6,5,6,6,5,6,5,5,5,6,6,5,4,6,5,6,6,5,7,6,6,5,6,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,6,5,5,5.33333333333333,6,5,5,5,6,6,5,5.5,4,6,5,6,6,5,5.4,4,6,5,6,6,5,5.4,6,5,6,5,6,6,5,5.66666666666667,7,6,6,5,6,6,5,6,0,0,0,0,0,-1,0,-0.166666666666667,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-0.333333333333333,-0.166666666666667,0,0.875,3,0,0.6,0.6,0.6,0,1,1,-1,-2,0,-1,1,5 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Tuesday,D,E,D,E,D,Female,1,University - Graduate (Masters),grad_prof,35,32 - 38,Canadian,Female,1,,,1,,,1,2,1,8,5,3,6,4,7,2,4,7,1,3,6,5,3,7,5,6,8,1,2,4,1,2,3,8,4,6,7,5,5,2,1,4,6,7,3,7,4,2,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,4,9,2,3,7,6,1,5,3,2,4,1,1,2,0,1 +221,216.8.157.186,R_5ovGSifgd6YbEj5,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,7,4,7,5,2,8,6,4,3,7,2,5,9,3,9,7,1,1,5,7,8,2,6,4,1,7,6,6,1,9,5,3,8,4,5,3,2,4,4,4,20+,1,7,4,7,5,2,8,6,5.5,8,2,6,4,1,7,6,4.66666666666667,4,3,7,2,5,9,4.2,6,1,9,5,3,8,4.8,3,9,7,1,1,5,7,4.33333333333333,4,5,3,2,4,4,4,3.66666666666667,-1,2,1,1,1,1,0,0.833333333333333,-2,2,-2,-3,2,1,-0.6,-1,4,4,-1,-3,1,3,0.666666666666667,0.3,1.33333333333333,0.5,1,2,0.6,0.2,0.4,0,1,1,-1,0,0,-1,0,10 cents,100 minutes,47 days,5,11,It's impossible to tell,47,Saturday,B,E,E,C,F,Male,0,University - Undergraduate,C_Ug,53,53 - 59,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,5,7,6,3,1,1,5,3,7,2,4,6,3,2,8,5,7,6,4,1,1,6,8,5,7,2,3,4,1,4,2,5,6,3,7,7,4,6,8,3,5,2,1,7,8,6,4,2,3,5,1,9,2,3,4,1,1,0,0,1 +222,99.249.137.2,R_6UVOi5jHAPPoAfi,self,02PVF,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.111111111111111,0,0.875,3,0,1,0.6,0.8,1,2,2,1,-1,1,-1,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,E,Female,1,College Diploma/Certificate,C_Ug,56,53 - 59,Canadian,Female,1,,,1,,,1,5,1,8,7,2,3,4,6,4,2,7,1,6,5,3,2,4,3,7,8,1,6,5,1,2,5,8,3,4,6,7,4,5,1,6,2,7,3,6,4,7,3,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,5,6,3,2,9,1,4,3,2,4,1,-1,1,-1,1 +223,172.58.134.54,R_1tktQU4X6xuzjj3,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,5,4,5,6,6,6,5,5,5,5,4,4,6,6,6,5,5,5,7,7,5,4,6,5,4,5,4,6,4,6,5,5,4,4,4,5,5,5,4,5,5-9,2,5,4,5,6,6,6,5,5.33333333333333,5,4,6,5,4,5,4,4.83333333333333,5,5,5,4,4,6,4.6,6,4,6,5,5,4,5.2,6,6,5,5,5,7,7,5.66666666666667,4,4,5,5,5,4,5,4.5,0,0,-1,1,2,1,1,0.5,-1,1,-1,-1,-1,2,-0.6,2,2,0,0,0,3,2,1.16666666666667,0.355555555555556,1.66666666666667,0.125,3,0,0.8,0.2,0.5,2,2,2,2,2,1,1,1,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Sunday,D,D,C,F,E,Male,0,University - Graduate (Masters),grad_prof,44,39 - 45,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,6,2,5,1,1,3,5,7,2,6,4,3,4,8,2,6,7,5,1,1,5,8,3,2,6,4,7,1,6,4,2,5,3,7,4,6,2,8,5,7,3,1,3,5,8,9,6,2,4,1,7,3,4,2,1,-2,-2,-1,-1 +224,67.225.24.119,R_13UKgpvWwLvsZJS,self,01FPV,past,5,4,2,1,1,10,3,2,3,6,1,4,2,3,5,6,5,3,5,4,3,2,2,3,2,3,4,3,4,4,2,4,3,3,6,4,2,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,2,1,1,10,3,3.83333333333333,3,2,2,3,2,3,4,2.5,2,3,6,1,4,2,3.2,3,4,4,2,4,3,3.4,3,5,6,5,3,5,4,4.5,3,6,4,2,5,2,2,3.66666666666667,2,2,0,-2,-1,7,-1,1.33333333333333,-1,-1,2,-1,0,-1,-0.2,0,-1,2,3,-2,3,2,0.833333333333333,0.655555555555556,0,0.5,0,3,1,0.4,0.7,0,1,1,-1,0,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,B,D,A,B,D,Female,1,High School (or equivalent),HS_TS,28,25 - 31,Canadian,Female,1,,1,,,1,,2,1,8,5,7,6,4,3,4,2,7,1,3,5,6,2,6,4,3,8,1,7,5,1,4,5,8,3,7,2,6,6,2,1,4,3,7,5,7,2,5,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,5,3,6,2,4,1,8,4,2,3,1,1,0,0,1 +225,96.125.252.134,R_7XjnnB02wrjZrrM,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,4,6,4,4,5,4,3,5,3,5,4,5,3,5,5,4,3,4,4,4,4,3,3,4,4,4,3,2,3,3,2,3,3,3,3,3,3,3,3,20+,2,4,4,6,4,4,5,4,4.5,4,4,3,3,4,4,4,3.66666666666667,3,5,3,5,4,5,4,3,2,3,3,2,3,2.6,3,5,5,4,3,4,4,4,3,3,3,3,3,3,3,3,0,0,3,1,0,1,0,0.833333333333333,0,3,0,2,2,2,1.4,0,2,2,1,0,1,1,1,1.07777777777778,1,0.25,1,2,0.6,0.4,0.5,0,1,0,-1,0,0,-1,-1,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,35,Sunday,A,E,E,E,D,Female,1,University - Undergraduate,C_Ug,51,46 - 52,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,4,3,7,1,1,4,3,7,5,6,2,2,5,8,3,6,4,7,1,1,7,8,4,5,6,3,2,1,4,3,5,6,2,7,2,7,3,8,6,5,4,1,7,4,8,3,2,6,9,1,5,4,2,3,1,1,0,0,1 +226,70.53.70.117,R_6Hv5eUrFq2oQwiv,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,6,6,6,5,6,5,5,6,5,6,7,6,5,5,5,5,5,5,5,6,6,6,6,5,5,5,5,6,5,5,7,6,4,5,5,5,5,5,5,20+,2,6,6,6,6,5,6,5,5.83333333333333,6,6,6,6,5,5,5,5.66666666666667,5,6,5,6,7,6,5.8,5,6,5,5,7,6,5.6,5,5,5,5,5,5,5,5,4,5,5,5,5,5,5,4.83333333333333,0,0,0,0,0,1,0,0.166666666666667,0,0,0,1,0,0,0.2,1,0,0,0,0,0,0,0.166666666666667,0.177777777777778,0,0.125,0,3,0.4,0.4,0.4,1,1,-1,-1,0,1,-1,-1,10 cents,100 minutes,24 days,5,11,Richard is as tall as Matt,47,Monday,E,E,A,B,E,Male,0,High School (or equivalent),HS_TS,69,67 - 73,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,3,2,5,4,1,1,3,4,7,6,2,5,2,3,8,7,5,6,4,1,1,4,8,5,3,2,6,7,1,3,5,4,2,6,7,4,3,2,8,5,6,7,1,3,4,7,9,5,8,2,1,6,4,3,2,1,1,0,-1,1 +227,99.244.227.3,R_1jCCpSksfp72HvP,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,7,5,8,5,4,6,5,9,8,6,4,5,5,6,6,6,5,8,5,7,9,4,7,4,7,9,5,5,7,9,5,9,8,4,7,5,5,7,3,20+,2,7,7,5,8,5,4,6,6,7,9,4,7,4,7,9,6.33333333333333,5,9,8,6,4,5,6.4,5,5,7,9,5,9,6.2,5,6,6,6,5,8,5,6,8,4,7,5,5,7,3,6,0,-2,1,1,1,-3,-3,-0.333333333333333,0,4,1,-3,-1,-4,0.2,-3,2,-1,1,0,1,2,0,-0.0444444444444444,-1.66666666666667,-0.125,1,2,0.2,0.4,0.3,1,0,-1,1,0,1,0,1,10 cents,5 minutes,24 days,5,11,Richard is shorter than Matt,57,Monday,E,E,D,C,D,Male,0,High School (or equivalent),HS_TS,50,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,2,5,4,1,1,5,2,7,3,4,6,7,3,8,2,5,6,4,1,1,7,8,6,2,5,4,3,1,2,4,3,5,6,7,4,2,5,8,6,7,3,1,8,2,5,6,4,7,3,1,9,2,4,3,1,-1,0,-1,0 +228,45.44.85.172,R_5Bxk78qLYxbeYRk,self,02PVF,future,5,0,2,3,3,2,2,3,1,1,0,5,1,2,1,2,1,0,1,1,3,0,1,1,3,0,3,6,6,7,7,2,3,2,1,2,3,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,0,2,3,3,2,2,2.5,3,0,1,1,3,0,3,1.33333333333333,3,1,1,0,5,1,2,6,6,7,7,2,3,5.6,2,1,2,1,0,1,1,1.16666666666667,2,1,2,3,2,2,0,2,2,0,1,2,0,2,-1,1.16666666666667,-3,-5,-6,-7,3,-2,-3.6,0,0,0,-2,-2,-1,1,-0.833333333333333,-1.08888888888889,-0.666666666666667,0.5,1,2,0.8,0.8,0.8,0,1,0,-1,-1,0,-1,0,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,B,Male,0,University - Graduate (Masters),grad_prof,50,46 - 52,Canadian,Male,1,,,1,,,1,6,1,8,7,4,3,5,2,4,5,7,1,2,6,3,4,2,6,3,8,1,5,7,1,3,4,8,5,6,7,2,2,6,1,3,5,7,4,3,7,5,2,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,4,9,5,1,7,3,2,4,1,1,1,0,1 +229,99.231.208.76,R_1la7CjUIYtJxAQG,self,01FPV,past,2,1,1,2,4,3,2,1,1,2,1,1,1,2,1,2,2,1,3,1,2,1,1,2,3,2,2,1,2,3,2,2,2,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,2,4,3,2,2.16666666666667,2,1,1,2,3,2,2,1.83333333333333,1,1,2,1,1,1,1.2,1,2,3,2,2,2,2,2,1,2,2,1,3,1,1.83333333333333,2,1,1,2,1,1,1,1.33333333333333,0,0,0,0,1,1,0,0.333333333333333,0,-1,-1,-1,-1,-1,-0.8,0,0,1,0,0,2,0,0.5,0.0111111111111111,-0.333333333333333,1.375,1,2,0.6,0.4,0.5,0,2,2,-2,1,-2,-2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Tuesday,D,C,B,E,C,Male,0,University - Graduate (Masters),grad_prof,71,67 - 73,Canadian,Male,1,,1,,,1,,4,1,8,2,7,3,6,5,4,6,7,1,2,3,5,3,5,4,7,8,1,2,6,1,6,5,8,3,2,4,7,2,3,1,5,4,7,6,3,7,5,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,5,2,9,8,6,1,4,3,2,4,1,2,-1,2,2 +230,172.97.205.131,R_5FmKX8NYnam5xPl,self,02PVF,past,0,0,0,0,0,0,0,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,1,0.8,1,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0.6,0,0,0,0,0,0,0,0,0.2,0.333333333333333,1.25,1,2,0,0,0,1,2,1,-2,1,-1,-2,2,10 cents,100 minutes,47 days,4,11,Richard is as tall as Matt,44,Tuesday,C,C,C,C,C,Female,1,College Diploma/Certificate,C_Ug,44,39 - 45,Canadian,Female,1,,,1,,1,,5,1,8,6,7,4,3,2,4,3,7,1,5,6,2,4,6,3,5,8,1,7,2,1,5,4,8,3,2,7,6,4,5,1,3,6,7,2,4,7,2,3,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,2,9,6,4,7,1,3,4,2,3,1,2,-1,1,2 +231,192.234.159.142,R_7PMu1gMMZblJcot,self,01FPV,future,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,2,0,3,0,0,2,2,1,1,2,2,1,1,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,2,0,3,0,0,2,1,1,2,1,2,1,1,1.4,2,1,1,2,2,1,1.6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1.16666666666667,0,-1,1,-2,1,1,-1,0,-1,1,0,0,-1,0,-0.2,0,0,0,0,-1,0,0,-0.166666666666667,-0.122222222222222,-0.333333333333333,1.75,0,3,0.6,0.4,0.5,2,2,2,-2,-2,-2,-2,0,10 cents,100 minutes,24 days,3,8,Richard is shorter than Matt,47,Sunday,D,C,B,E,B,Male,0,Trade School,HS_TS,71,67 - 73,American,Male,1,,1,,,,1,6,1,8,4,5,2,3,7,4,5,7,1,6,3,2,4,6,5,7,8,1,2,3,1,2,5,8,3,4,7,6,6,3,1,2,5,7,4,7,6,3,4,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,9,5,4,8,6,1,7,2,4,3,1,2,2,2,2 +232,64.180.196.68,R_5eSCaDWFLh7pMJz,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,1,2,5,1,3,2,5,2,2,3,3,3,2,3,2,1,2,2,2,5,2,4,6,2,3,3,5,2,2,2,4,4,2,5,4,2,8,1,3,20+,2,3,1,2,5,1,3,2,2.5,5,2,4,6,2,3,3,3.66666666666667,5,2,2,3,3,3,3,5,2,2,2,4,4,3,2,3,2,1,2,2,2,2,2,5,4,2,8,1,3,3.66666666666667,-2,-1,-2,-1,-1,0,-1,-1.16666666666667,0,0,0,1,-1,-1,0,0,-2,-2,-1,-6,1,-1,-1.66666666666667,-0.944444444444445,-1,0.75,3,0,1,0.6,0.8,0,2,1,-2,1,0,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,B,Female,1,University - Undergraduate,C_Ug,30,25 - 31,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,7,6,5,2,1,1,3,4,7,5,6,2,3,6,8,5,4,2,7,1,1,6,8,4,2,7,3,5,1,6,4,2,5,3,7,4,5,6,8,3,2,7,1,2,8,7,4,9,3,6,1,5,2,4,3,1,2,-1,0,2 +233,99.192.14.4,R_3RSLCN2SHpTbpuN,self,02PVF,past,4,0,0,5,7,0,2,0,0,0,0,1,4,0,0,10,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0,0,5,7,0,2,2.66666666666667,3,0,0,0,0,0,0,0.5,0,0,0,0,1,4,0.2,0,0,0,0,0,0,0,0,0,10,0,0,0,0,1.66666666666667,0,0,0,0,0,0,0,0,1,0,0,5,7,0,2,2.16666666666667,0,0,0,0,1,4,0.2,0,0,10,0,0,0,0,1.66666666666667,1.34444444444444,2,1.125,1,2,0.8,0.2,0.5,0,2,1,-2,-1,-1,-2,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,57,Sunday,D,C,E,D,E,Female,1,High School (or equivalent),HS_TS,41,39 - 45,Canadian,Female,1,,,1,,1,,4,1,8,5,3,2,7,6,4,3,7,1,6,2,5,4,2,3,6,8,1,5,7,1,7,3,8,5,2,6,4,2,4,1,5,6,7,3,4,7,6,3,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,7,5,6,9,1,3,3,4,2,1,2,1,1,2 +234,24.89.87.253,R_1uweiPco4J34T6R,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like somewhat,8,8,8,8,8,8,8,7,8,9,9,8,9,8,8,9,8,8,9,8,7,5,7,6,7,6,7,7,6,7,7,7,7,7,7,7,7,7,6,7,5-9,1,8,8,8,8,8,8,8,8,7,5,7,6,7,6,7,6.33333333333333,7,8,9,9,8,9,8.2,7,6,7,7,7,7,6.8,8,8,9,8,8,9,8,8.33333333333333,7,7,7,7,7,6,7,6.83333333333333,1,3,1,2,1,2,1,1.66666666666667,0,2,2,2,1,2,1.4,1,1,2,1,1,3,1,1.5,1.52222222222222,1.33333333333333,-0.125,0,3,0.8,0.4,0.6,1,1,1,1,1,1,1,0,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,E,E,A,E,Male,0,University - Undergraduate,C_Ug,45,39 - 45,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,3,7,4,1,1,5,2,7,4,6,3,4,7,8,6,3,5,2,1,1,5,8,7,6,2,4,3,1,5,2,6,4,3,7,2,3,4,8,6,7,5,1,6,4,2,5,8,9,3,1,7,3,2,4,1,-1,-1,-1,-1 +235,204.112.166.180,R_7kpI9F1c3dVKZgY,self,02PVF,past,3,0,0,2,0,1,3,5,1,6,6,6,2,0,0,2,4,2,0,0,0,0,0,1,0,2,0,4,0,3,0,1,2,0,0,0,0,0,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0,0,2,0,1,3,1,0,0,0,1,0,2,0,0.5,5,1,6,6,6,2,4.8,4,0,3,0,1,2,1.6,0,0,2,4,2,0,0,1.33333333333333,0,0,0,0,0,3,0,0.5,3,0,0,1,0,-1,3,0.5,1,1,3,6,5,0,3.2,0,0,2,4,2,-3,0,0.833333333333333,1.51111111111111,1,0.875,2,1,0.8,1,0.9,1,1,1,-2,-1,0,-1,0,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,69,67 - 73,Canadian,Male,1,,,1,,1,,3,1,8,7,2,6,4,5,5,2,7,1,4,6,3,4,3,5,6,8,1,7,2,1,7,2,8,4,6,5,3,4,3,1,6,2,7,5,3,7,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,7,2,9,6,4,1,3,4,3,2,1,2,1,0,1 +236,174.236.224.242,R_52r90HwTFtx1Iss,self,03VFP,past,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,3,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0.4,0,0,0,0,0,0,0,0,0.133333333333333,0,0.125,1,0,0.2,0.2,0.2,2,-1,2,2,1,2,-2,1,15 cents,75 minutes,47 days,5,10,Richard is taller than Matt,35,Tuesday,A,E,C,F,B,Female,1,University - Graduate (Masters),grad_prof,38,32 - 38,American,Female,1,,,,1,1,,4,1,8,5,6,2,7,3,5,2,7,1,6,4,3,5,2,3,6,8,1,7,4,1,7,3,8,6,2,5,4,6,5,1,2,3,7,4,4,3,6,5,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,6,5,2,7,8,1,3,2,4,3,1,-2,-1,-2,2 +237,216.102.22.108,R_5wqhlZKxH4VEpxv,self,01FPV,future,1,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,1,2,0,1,0.666666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,2,0,1,0.666666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222222222222222,0.333333333333333,1.375,0,3,0.8,0.4,0.6,1,1,2,-2,-2,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Saturday,C,E,D,B,B,Male,0,High School (or equivalent),HS_TS,30,25 - 31,American,Male,1,,1,,,,1,7,1,8,5,2,3,4,6,2,5,7,1,3,4,6,7,5,2,4,8,1,6,3,1,2,7,8,3,5,6,4,4,3,1,6,5,7,2,7,5,4,2,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,4,3,5,8,9,1,6,3,2,4,1,2,2,1,2 +238,136.175.119.194,R_1g5iR7YsTKCVbmE,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,1,5,1,3,6,6,4,1,1,1,3,6,2,3,3,2,2,3,2,3,1,6,3,5,7,4,6,7,2,2,3,6,6,1,6,4,1,2,1,1,20+,1,1,5,1,3,6,6,4,3.66666666666667,1,6,3,5,7,4,6,4.33333333333333,1,1,1,3,6,2,2.4,7,2,2,3,6,6,4,3,3,2,2,3,2,3,2.5,1,6,4,1,2,1,1,2.5,0,-1,-2,-2,-1,2,-2,-0.666666666666667,-6,-1,-1,0,0,-4,-1.6,2,-3,-2,1,1,1,2,0,-0.755555555555556,-1.33333333333333,0.75,1,2,1,0.6,0.8,1,2,0,-1,1,0,-1,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,F,Female,1,High School (or equivalent),HS_TS,39,39 - 45,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,2,6,3,5,1,1,3,6,7,2,4,5,4,3,8,2,5,7,6,1,1,5,8,7,3,6,4,2,1,2,4,6,3,5,7,7,5,4,8,3,2,6,1,5,2,9,8,4,3,7,1,6,3,4,2,1,1,-1,0,1 +239,142.126.206.16,R_3i42M7ycVtTt2F1,self,02PVF,future,2,3,1,4,1,2,2,4,2,3,3,1,3,3,3,3,3,3,2,3,4,2,3,4,2,3,3,2,2,2,3,1,2,4,2,3,1,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,1,4,1,2,2,2.16666666666667,4,2,3,4,2,3,3,3,4,2,3,3,1,3,2.6,2,2,2,3,1,2,2,3,3,3,3,3,2,3,2.83333333333333,4,2,3,1,3,3,2,2.66666666666667,-2,1,-2,0,-1,-1,-1,-0.833333333333333,2,0,1,0,0,1,0.6,-1,1,0,2,0,-1,1,0.166666666666667,-0.0222222222222222,0.333333333333333,1.5,3,0,1,0.6,0.8,1,2,2,-2,0,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,B,Female,1,Professional Degree (ex. JD/MD),grad_prof,45,39 - 45,Canadian,Female,1,,,1,,,1,5,1,8,2,7,3,6,4,6,2,7,1,3,4,5,5,7,3,4,8,1,6,2,1,2,4,8,3,7,5,6,4,6,1,2,5,7,3,5,3,7,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,6,7,5,4,2,1,9,3,2,4,1,2,0,2,2 +240,142.127.4.14,R_5af3GWdobHETpCk,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,0,4,3,3,0,5,0,0,0,0,0,3,0,3,0,0,0,4,0,2,0,3,2,2,3,3,2,2,2,2,2,2,3,0,0,0,0,0,0,20+,2,5,0,4,3,3,0,5,2.5,2,0,3,2,2,3,3,2,0,0,0,0,0,3,0,2,2,2,2,2,2,2,0,3,0,0,0,4,0,1.16666666666667,3,0,0,0,0,0,0,0.5,3,0,1,1,1,-3,2,0.5,-2,-2,-2,-2,-2,1,-2,-3,3,0,0,0,4,0,0.666666666666667,-0.277777777777778,1,-0.25,1,2,0.8,1,0.9,0,0,0,0,1,1,0,0,10 cents,100 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,59,53 - 59,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,2,4,5,3,1,1,6,5,7,3,4,2,7,4,8,5,6,2,3,1,1,2,8,5,4,6,7,3,1,3,5,4,2,6,7,2,3,6,8,7,4,5,1,8,3,6,9,2,7,4,1,5,3,2,4,1,0,-1,-1,0 +241,50.158.239.98,R_5OgfDkyWj4XfrzP,self,03VFP,past,0,0,0,4,1,1,1,0,0,0,1,3,1,0,1,2,0,0,1,1,0,0,0,2,2,1,1,0,0,1,1,1,1,0,1,0,1,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,4,1,1,1,1,0,0,0,2,2,1,1,0.833333333333333,0,0,0,1,3,1,0.8,0,0,1,1,1,1,0.6,0,1,2,0,0,1,1,0.666666666666667,0,1,0,1,0,0,1,0.333333333333333,0,0,0,2,-1,0,0,0.166666666666667,0,0,-1,0,2,0,0.2,0,0,2,-1,0,1,0,0.333333333333333,0.233333333333333,0,1,3,0,1,0.6,0.8,0,2,1,-2,-1,0,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,C,Male,0,University - Undergraduate,C_Ug,72,67 - 73,American,Male,1,,,,1,1,,7,1,8,6,5,4,3,2,4,5,7,1,6,3,2,2,5,3,6,8,1,4,7,1,4,7,8,6,3,2,5,6,4,1,2,3,7,5,2,4,6,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,3,2,6,8,9,1,5,4,2,3,1,2,1,0,2 +242,75.157.183.68,R_3GLYDrTseavUcVz,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,4,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20+,2,1,1,1,4,1,1,1,1.5,10,10,10,10,10,10,10,10,1,1,0,0,0,1,0.4,10,10,10,10,10,10,10,1,1,1,1,1,1,1,1,10,10,10,10,10,10,10,10,-9,-9,-9,-6,-9,-9,-9,-8.5,-9,-9,-10,-10,-10,-9,-9.6,-9,-9,-9,-9,-9,-9,-9,-9,-9.03333333333333,-9,0.25,2,1,0.6,0.4,0.5,-1,2,0,-2,0,0,1,0,10 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,57,Sunday,B,E,B,E,B,Male,0,Trade School,HS_TS,68,67 - 73,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,7,3,4,5,1,1,5,3,7,4,6,2,7,5,8,6,4,2,3,1,1,4,8,5,2,3,7,6,1,3,4,6,5,2,7,6,2,7,8,3,5,4,1,6,8,3,4,2,7,5,1,9,4,3,2,1,2,0,0,-1 +243,70.26.95.19,R_6WuqFVPMOdjIdkN,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,2,5,1,6,1,6,2,2,5,2,6,3,5,4,3,2,2,2,3,2,1,4,2,4,2,2,3,1,2,4,4,4,1,4,1,3,3,3,5,20+,2,5,2,5,1,6,1,6,3.33333333333333,2,1,4,2,4,2,2,2.5,2,2,5,2,6,3,3.4,3,1,2,4,4,4,2.8,5,4,3,2,2,2,3,3,1,4,1,3,3,3,5,2.5,3,1,1,-1,2,-1,4,0.833333333333333,-1,1,3,-2,2,-1,0.6,4,0,2,-1,-1,-1,-2,0.5,0.644444444444444,0.333333333333333,1.125,0,3,1,0.6,0.8,2,2,0,-2,0,0,-1,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,B,Male,0,College Diploma/Certificate,C_Ug,70,67 - 73,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,7,6,1,1,6,4,7,5,2,3,7,2,8,5,4,6,3,1,1,3,8,6,2,5,7,4,1,3,6,2,5,4,7,5,4,2,8,3,7,6,1,5,4,2,6,7,8,3,1,9,3,4,2,1,2,0,0,1 +244,172.56.64.86,R_6VBhSBcSfa5npp7,self,01FPV,future,6,5,5,6,8,6,7,7,7,6,5,7,6,6,7,7,7,8,6,7,5,5,7,7,6,6,7,8,7,5,8,7,8,7,6,6,6,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,8,6,7,6,5,5,7,7,6,6,7,6,7,7,6,5,7,6,6.4,8,7,5,8,7,8,7,6,7,7,7,8,6,7,6.83333333333333,7,6,6,6,7,7,7,6.5,1,0,-2,-1,2,0,0,0,-1,0,1,-3,0,-2,-0.6,-1,1,1,1,1,-1,0,0.333333333333333,-0.0888888888888889,-0.666666666666667,-0.125,0,2,0.4,0.4,0.4,1,1,1,1,2,1,1,1,10 cents,25 minutes,24 days,5,10,It's impossible to tell,57,Tuesday,D,B,E,D,D,Male,0,University - Undergraduate,C_Ug,34,32 - 38,American,Male,1,,1,,,,1,6,1,8,4,5,2,3,7,2,6,7,1,4,5,3,2,3,7,5,8,1,4,6,1,2,4,8,3,7,5,6,4,2,1,6,5,7,3,4,5,3,2,7,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,4,6,5,2,7,1,8,2,4,3,1,-1,-2,-1,-1 +245,99.250.37.132,R_1er9vKXMT5As656,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,4,2,7,4,0,3,3,5,2,2,2,2,2,2,2,1,2,3,2,2,4,4,5,5,2,2,5,3,2,2,2,2,2,2,2,2,0,0,3,1,20+,0,4,2,7,4,0,3,3,3.33333333333333,4,4,5,5,2,2,5,3.66666666666667,5,2,2,2,2,2,2.6,3,2,2,2,2,2,2.2,2,2,1,2,3,2,2,2,2,2,2,0,0,3,1,1.5,0,-2,2,-1,-2,1,-2,-0.333333333333333,2,0,0,0,0,0,0.4,0,0,-1,2,3,-1,1,0.5,0.188888888888889,-0.333333333333333,0.75,3,0,1,0.8,0.9,1,1,1,-2,0,0,-2,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,B,B,D,Female,1,University - Undergraduate,C_Ug,25,25 - 31,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,7,6,1,1,6,4,7,2,5,3,5,4,8,3,2,6,7,1,1,6,8,5,2,4,3,7,1,2,3,5,6,4,7,4,3,7,8,6,5,2,1,2,3,4,8,9,6,7,1,5,3,4,2,1,2,0,0,2 +246,142.134.193.97,R_7wazjifsky7xf31,self,02PVF,future,7,7,8,7,8,8,8,10,7,6,8,7,6,7,9,6,8,8,6,8,5,3,10,10,6,9,6,8,8,9,9,8,8,7,7,6,4,8,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,8,7,8,8,8,7.5,5,3,10,10,6,9,6,7.16666666666667,10,7,6,8,7,6,7.6,8,8,9,9,8,8,8.4,7,9,6,8,8,6,8,7.33333333333333,7,7,6,4,8,8,6,6.66666666666667,2,4,-2,-3,2,-1,2,0.333333333333333,2,-1,-3,-1,-1,-2,-0.8,0,2,0,4,0,-2,2,0.666666666666667,0.0666666666666666,0.666666666666667,0.5,0,3,0.4,0.4,0.4,2,1,2,-1,2,1,0,1,10 cents,100 minutes,24 days,6,10,Richard is shorter than Matt,47,Sunday,D,F,C,B,B,Female,1,High School (or equivalent),HS_TS,28,25 - 31,Canadian,Female,1,,,1,,,1,2,1,8,3,4,6,7,5,3,2,7,1,6,4,5,4,2,7,5,8,1,3,6,1,5,7,8,2,3,4,6,2,5,1,4,6,7,3,2,7,5,6,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,7,6,9,3,8,1,5,3,2,4,1,1,-2,-1,0 +247,162.156.71.79,R_5QG7Wn09xXSKqPC,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like somewhat,7,7,9,7,9,8,7,8,8,9,9,7,7,5,7,8,9,9,10,6,8,4,9,5,8,7,9,7,6,7,9,8,8,8,7,6,9,9,5,8,5-9,1,7,7,9,7,9,8,7,7.83333333333333,8,4,9,5,8,7,9,6.83333333333333,8,8,9,9,7,7,8.2,7,6,7,9,8,8,7.4,5,7,8,9,9,10,6,8,8,7,6,9,9,5,8,7.33333333333333,-1,3,0,2,1,1,-2,1,1,2,2,0,-1,-1,0.8,-3,0,2,0,0,5,-2,0.666666666666667,0.822222222222222,-1.66666666666667,0.875,1,2,1,0.6,0.8,1,2,1,-2,1,0,-2,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,D,B,B,D,Female,1,University - Undergraduate,C_Ug,43,39 - 45,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,3,5,6,1,1,4,3,7,2,5,6,4,6,8,7,2,3,5,1,1,3,8,7,4,5,2,6,1,3,5,6,4,2,7,6,2,5,8,3,4,7,1,2,8,5,9,7,3,6,1,4,4,2,3,1,2,-1,0,2 +248,166.48.50.98,R_3s5CIY1mmG5MfAz,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like a great deal,1,1,7,7,3,5,4,6,6,3,6,5,5,1,1,3,3,2,5,3,3,5,2,2,2,5,3,5,2,2,6,5,5,1,2,2,5,2,2,3,5-9,2,1,1,7,7,3,5,4,4,3,5,2,2,2,5,3,3.16666666666667,6,6,3,6,5,5,5.2,5,2,2,6,5,5,4,1,1,3,3,2,5,3,2.5,1,2,2,5,2,2,3,2.33333333333333,-2,-4,5,5,1,0,1,0.833333333333333,1,4,1,0,0,0,1.2,0,-1,1,-2,0,3,0,0.166666666666667,0.733333333333333,0.333333333333333,1.125,0,3,0.6,0.2,0.4,1,1,1,-2,-1,-2,-2,-1,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Monday,D,D,A,C,B,Female,1,University - Undergraduate,C_Ug,27,25 - 31,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,6,7,4,2,1,1,5,4,7,6,3,2,4,7,8,2,5,3,6,1,1,7,8,6,2,5,3,4,1,2,3,6,4,5,7,7,3,6,8,2,5,4,1,7,8,3,5,4,9,2,1,6,2,3,4,1,2,1,2,2 +249,170.203.207.252,R_5IfIBhSF6QWEIHR,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,4,3,2,2,1,3,2,6,3,3,6,7,2,3,3,7,2,3,6,3,6,8,2,2,3,4,3,4,4,4,2,7,2,1,5,1,5,5,5,3,20+,2,4,3,2,2,1,3,2,2.5,6,8,2,2,3,4,3,4.16666666666667,6,3,3,6,7,2,5,4,4,4,2,7,2,4.2,3,3,7,2,3,6,3,4,1,5,1,5,5,5,3,3.66666666666667,-2,-5,0,0,-2,-1,-1,-1.66666666666667,2,-1,-1,4,0,0,0.8,2,-2,6,-3,-2,1,0,0.333333333333333,-0.177777777777778,-0.333333333333333,1,1,2,0.2,0.2,0.2,1,2,2,-2,2,-1,-1,1,10 cents,5 minutes,24 days,4,12,It's impossible to tell,53,Saturday,D,C,A,C,F,Female,1,College Diploma/Certificate,C_Ug,46,46 - 52,Both,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,4,6,3,1,1,4,2,7,3,6,5,2,5,8,7,6,4,3,1,1,7,8,5,6,4,3,2,1,2,5,4,6,3,7,5,2,3,8,7,4,6,1,9,4,8,2,6,3,5,1,7,2,3,4,1,2,-2,1,1 +250,174.116.89.222,R_6KvamkPIBYjWL15,self,02PVF,past,8,9,7,9,10,9,10,10,8,8,10,8,10,8,9,8,8,10,9,8,6,8,7,7,7,9,7,9,8,10,10,9,10,8,9,9,9,10,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,7,9,10,9,10,8.66666666666667,6,8,7,7,7,9,7,7.33333333333333,10,8,8,10,8,10,8.8,9,8,10,10,9,10,9.2,8,9,8,8,10,9,8,8.66666666666667,8,9,9,9,10,10,9,9.16666666666667,2,1,0,2,3,0,3,1.33333333333333,1,0,-2,0,-1,0,-0.4,0,0,-1,-1,0,-1,-1,-0.5,0.144444444444444,0.666666666666667,0.5,1,2,1,0.8,0.9,2,2,2,0,2,-2,2,0,5 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,D,Female,1,University - Graduate (Masters),grad_prof,37,32 - 38,Canadian,Female,1,,,1,,1,,3,1,8,5,4,6,2,7,2,4,7,1,5,3,6,4,6,2,3,8,1,5,7,1,4,2,8,7,6,3,5,6,4,1,3,5,7,2,4,7,3,5,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,9,7,6,3,8,1,5,2,3,4,1,0,-2,2,-2 +251,73.145.211.123,R_17WFzDiyJZ39BSg,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,2,3,7,2,5,4,7,6,8,1,5,3,1,1,3,1,1,8,2,7,3,6,7,2,4,2,1,4,4,1,2,5,2,3,8,2,1,1,4,20+,2,7,2,3,7,2,5,4,4.33333333333333,7,3,6,7,2,4,2,4.83333333333333,7,6,8,1,5,3,5.4,1,4,4,1,2,5,2.4,1,1,3,1,1,8,2,2.5,2,3,8,2,1,1,4,2.83333333333333,0,-1,-3,0,0,1,2,-0.5,6,2,4,0,3,-2,3,-1,-2,-5,-1,0,7,-2,-0.333333333333333,0.722222222222222,-0.666666666666667,0.875,1,2,0.8,0.8,0.8,1,1,1,-1,-1,0,-1,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,D,E,B,B,F,Male,0,College Diploma/Certificate,C_Ug,64,60 - 66,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,4,2,3,7,1,1,4,5,7,3,2,6,7,6,8,2,3,5,4,1,1,4,8,5,6,3,7,2,1,4,6,2,3,5,7,5,6,4,8,2,3,7,1,4,7,5,3,8,9,6,1,2,4,2,3,1,1,1,0,1 +252,142.114.241.100,R_1I0EynvQgNiYRLX,self,03VFP,future,7,6,8,8,7,6,7,7,8,7,8,6,6,7,7,7,6,7,6,7,6,6,8,7,5,7,7,8,7,7,6,8,6,6,6,8,8,9,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,8,7,6,7,7,6,6,8,7,5,7,7,6.5,7,8,7,8,6,6,7.2,8,7,7,6,8,6,7.2,7,7,7,6,7,6,7,6.66666666666667,6,6,8,8,9,7,5,7.33333333333333,1,0,0,1,2,-1,0,0.5,-1,1,0,2,-2,0,0,1,1,-1,-2,-2,-1,2,-0.666666666666667,-0.0555555555555555,0.666666666666667,0.625,0,1,0,0.6,0.3,1,2,1,-2,1,1,0,1,15 cents,25 minutes,24 days,3,10,Richard is shorter than Matt,53,Saturday,D,E,D,B,B,Male,0,College Diploma/Certificate,C_Ug,46,46 - 52,Canadian,Male,1,,,,1,,1,2,1,8,5,6,7,3,4,5,3,7,1,6,2,4,6,3,4,7,8,1,2,5,1,3,4,8,6,5,2,7,3,5,1,2,6,7,4,4,7,3,6,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,4,6,3,8,2,1,9,2,3,4,1,2,-1,-1,0 +253,76.11.34.167,R_7IZb0KlGWnmd0k1,self,01FPV,future,2,2,2,2,2,4,2,4,2,2,2,1,2,1,4,4,2,1,2,2,2,1,2,2,2,2,2,4,1,4,1,1,1,1,4,4,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,4,2,2.33333333333333,2,1,2,2,2,2,2,1.83333333333333,4,2,2,2,1,2,2.2,4,1,4,1,1,1,2.2,1,4,4,2,1,2,2,2.33333333333333,1,4,4,2,1,2,1,2.33333333333333,0,1,0,0,0,2,0,0.5,0,1,-2,1,0,1,0,0,0,0,0,0,0,1,0,0.166666666666667,0.666666666666667,1.5,0,3,0.6,0.2,0.4,2,2,2,-2,1,-1,-2,2,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,D,D,C,F,F,Male,0,High School (or equivalent),HS_TS,56,53 - 59,Canadian,Male,1,,1,,,,1,6,1,8,4,7,2,3,5,2,6,7,1,5,4,3,3,7,6,2,8,1,4,5,1,2,3,8,6,5,7,4,2,5,1,3,4,7,6,4,2,6,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,5,8,7,9,1,2,3,2,4,1,2,-1,1,2 +254,166.181.248.92,R_1h9Bcj5rKaaZOwL,self,02PVF,future,4,3,6,5,5,5,6,6,5,6,4,5,6,5,7,8,8,7,6,6,7,5,8,6,5,5,5,5,6,4,7,7,5,5,7,6,6,5,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,5,5,5,6,4.66666666666667,7,5,8,6,5,5,5,6,6,5,6,4,5,6,5.2,5,6,4,7,7,5,5.8,5,7,8,8,7,6,6,6.83333333333333,5,7,6,6,5,4,7,5.5,-3,-2,-2,-1,0,0,1,-1.33333333333333,1,-1,2,-3,-2,1,-0.6,0,0,2,2,2,2,-1,1.33333333333333,-0.2,0.333333333333333,0.375,0,2,0.2,0,0.1,1,1,1,0,1,0,0,1,10 cents,75 minutes,24 days,5,10,Richard is shorter than Matt,39,Wednesday,E,C,C,D,C,Male,0,High School (or equivalent),HS_TS,30,25 - 31,American,Male,1,,,1,,,1,5,1,8,2,7,4,6,3,6,5,7,1,2,3,4,3,7,4,6,8,1,2,5,1,6,2,8,5,4,3,7,2,6,1,5,4,7,3,5,4,2,6,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,6,9,7,8,1,5,3,2,4,1,0,-1,0,0 +255,172.59.210.115,R_1O6OsjC0yo4NMmd,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Like a great deal,4,2,2,3,3,4,3,2,4,2,3,3,3,4,4,3,3,2,3,3,4,2,3,4,3,4,3,3,3,4,3,4,3,3,3,4,3,2,4,3,15-19,2,4,2,2,3,3,4,3,3,4,2,3,4,3,4,3,3.33333333333333,2,4,2,3,3,3,2.8,3,3,4,3,4,3,3.4,4,4,3,3,2,3,3,3.16666666666667,3,3,4,3,2,4,3,3.16666666666667,0,0,-1,-1,0,0,0,-0.333333333333333,-1,1,-2,0,-1,0,-0.6,1,1,-1,0,0,-1,0,0,-0.311111111111111,0,1.5,2,1,1,0.2,0.6,1,2,2,-2,0,-1,-2,2,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,D,C,B,B,Male,0,University - Graduate (Masters),grad_prof,42,39 - 45,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,2,6,7,1,1,5,2,7,3,6,4,3,2,8,5,4,6,7,1,1,2,8,5,7,3,4,6,1,5,3,6,2,4,7,4,2,3,8,5,7,6,1,2,7,9,8,5,4,3,1,6,2,4,3,1,2,0,1,2 +256,99.254.93.171,R_5YXFJsMk7FWbeH7,self,01FPV,past,8,6,2,4,6,7,3,2,2,6,2,3,3,2,5,4,1,2,6,3,3,2,1,4,1,3,2,3,1,3,1,4,2,2,3,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,2,4,6,7,3,5.5,3,2,1,4,1,3,2,2.33333333333333,2,2,6,2,3,3,3,3,1,3,1,4,2,2.4,2,5,4,1,2,6,3,3.33333333333333,2,3,1,1,1,3,2,1.83333333333333,5,4,1,0,5,4,1,3.16666666666667,-1,1,3,1,-1,1,0.6,0,2,3,0,1,3,1,1.5,1.75555555555556,1,1.375,3,0,1,1,1,2,2,2,-2,-2,1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,54,53 - 59,Canadian,Male,1,,1,,,1,,2,1,8,4,6,7,5,3,3,6,7,1,4,2,5,7,3,2,5,8,1,4,6,1,4,3,8,2,5,7,6,5,6,1,4,2,7,3,2,6,4,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,7,4,5,8,6,1,2,3,2,4,1,2,2,-1,1 +257,109.231.100.181,R_72ltPNAXeZGG1eE,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,6,6,7,6,6,7,6,7,6,6,7,7,6,7,6,7,6,6,6,6,6,6,6,5,5,5,6,6,5,5,6,6,5,5,6,7,4,7,5,20+,2,7,6,6,7,6,6,7,6.33333333333333,6,6,6,6,5,5,5,5.66666666666667,6,7,6,6,7,7,6.4,6,6,5,5,6,6,5.6,6,7,6,7,6,6,6,6.33333333333333,5,5,6,7,4,7,5,5.66666666666667,1,0,0,1,1,1,2,0.666666666666667,0,1,1,1,1,1,0.8,1,2,0,0,2,-1,1,0.666666666666667,0.711111111111111,1.33333333333333,-0.125,3,0,1,0.2,0.6,0,0,1,0,1,1,0,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,D,C,C,Male,0,High School (or equivalent),HS_TS,33,32 - 38,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,8,5,6,7,3,1,1,4,5,7,2,3,6,5,2,8,4,6,7,3,1,1,4,8,6,7,3,2,5,1,5,2,3,6,4,7,5,4,2,8,6,3,7,1,5,4,8,2,9,6,3,1,7,2,4,3,1,0,-1,-1,0 +258,74.65.34.138,R_3Cd1xfFMRfuhUwV,self,01FPV,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.125,0,2,0.6,0.6,0.6,1,1,1,-2,-1,-2,-2,-1,20 cents,100 minutes,24 days,5,10,It's impossible to tell,53,Sunday,D,D,B,B,A,Male,0,College Diploma/Certificate,C_Ug,54,53 - 59,American,Male,1,,1,,,1,,5,1,8,3,6,2,7,4,6,4,7,1,2,3,5,3,2,6,4,8,1,7,5,1,6,7,8,4,3,5,2,6,3,1,5,2,7,4,4,5,6,7,3,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,5,6,9,4,1,8,4,2,3,1,2,1,2,2 +259,137.155.29.69,R_6Eb3tHjg08s8TU9,self,02PVF,past,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,1,0.2,0.6,-1,2,2,-1,2,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,E,E,A,E,Male,0,University - Graduate (Masters),grad_prof,48,46 - 52,American,Male,1,,,1,,1,,7,1,8,6,4,5,3,2,6,5,7,1,2,4,3,6,4,5,7,8,1,2,3,1,2,3,8,7,6,5,4,3,2,1,5,6,7,4,7,5,6,3,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,6,2,5,4,7,1,9,4,3,2,1,1,-2,2,2 +260,98.168.183.240,R_1NmHvDvy0QS1wBb,self,03VFP,future,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,5,0,0,0.833333333333333,5,5,0,0,5,0,5,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-5,0,0,0,0,-5,-1.66666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.555555555555556,-1.66666666666667,0.75,0,3,0.6,0.6,0.6,0,2,2,-2,2,-2,-2,-2,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Monday,B,E,B,B,A,Male,0,High School (or equivalent),HS_TS,46,46 - 52,American,Male,1,,,,1,,1,3,1,8,6,7,4,5,2,3,4,7,1,5,6,2,3,4,5,6,8,1,2,7,1,3,7,8,4,6,5,2,6,5,1,4,2,7,3,7,2,5,6,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,3,7,4,9,6,1,2,3,4,2,1,2,-2,2,2 +261,73.26.194.237,R_5Nxj3FM6nCiZJDP,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,5-9,2,3,1,1,1,2,0,0,1.33333333333333,1,1,1,1,2,1,1,1.16666666666667,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0.333333333333333,2,0,0,0,0,-1,-1,0.166666666666667,-1,-1,-1,-1,-1,-1,-1,0,1,1,1,0,1,1,0.666666666666667,-0.0555555555555556,-0.333333333333333,1.125,0,3,0.2,0.2,0.2,1,2,2,-2,0,2,-2,2,10 cents,100 minutes,24 days,7,7,It's impossible to tell,39,Tuesday,F,D,C,A,D,Male,0,College Diploma/Certificate,C_Ug,65,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,6,2,3,5,1,1,6,5,7,3,4,2,2,7,8,4,5,6,3,1,1,3,8,7,6,2,4,5,1,3,2,6,4,5,7,7,2,5,8,3,6,4,1,7,5,2,8,4,9,3,1,6,3,4,2,1,2,0,-2,2 +262,174.27.15.184,R_6YnnHpHyy4ti0yl,self,02PVF,future,9,1,1,10,9,10,3,7,6,3,6,5,2,2,7,2,2,8,4,4,1,1,2,9,1,5,1,5,3,7,5,3,1,7,4,9,8,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,1,1,10,9,10,3,6.66666666666667,1,1,2,9,1,5,1,3.16666666666667,7,6,3,6,5,2,5.4,5,3,7,5,3,1,4.6,2,7,2,2,8,4,4,4.16666666666667,7,4,9,8,1,3,2,5.33333333333333,8,0,-1,1,8,5,2,3.5,2,3,-4,1,2,1,0.8,-5,3,-7,-6,7,1,2,-1.16666666666667,1.04444444444444,1.66666666666667,1.125,0,2,0.4,0.6,0.5,2,2,1,-1,0,-1,-1,1,10 cents,25 minutes,24 days,5,11,Richard is shorter than Matt,47,Monday,D,C,B,A,D,Male,0,Trade School,HS_TS,64,60 - 66,American,Male,1,,,1,,,1,7,1,8,3,2,4,6,5,2,3,7,1,5,6,4,3,6,5,2,8,1,4,7,1,2,5,8,6,3,4,7,5,4,1,6,3,7,2,4,3,7,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,9,2,4,5,3,1,8,2,3,4,1,1,0,1,1 +263,104.159.98.174,R_3nBZjaWtRiMLopr,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,4,2,0,1,3,1,2,1,2,1,2,1,2,2,4,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10-14,2,4,2,0,1,3,1,2,1.83333333333333,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1.4,1,1,1,1,1,1,1,2,4,2,1,1,1,2,1.83333333333333,1,1,1,1,1,1,1,1,3,1,-1,0,2,0,1,0.833333333333333,0,1,0,1,0,1,0.4,1,3,1,0,0,0,1,0.833333333333333,0.688888888888889,1,0.5,0,3,0.2,0,0.1,0,1,1,-2,1,1,-2,0,10 cents,100 minutes,24 days,5,11,Richard is shorter than Matt,57,Saturday,F,B,D,D,C,Female,1,High School (or equivalent),HS_TS,31,25 - 31,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,4,3,7,5,2,6,6,5,8,2,4,3,7,1,1,2,8,4,3,7,5,6,1,5,4,3,6,2,7,3,6,7,8,4,5,2,1,7,4,2,5,3,9,6,1,8,2,4,3,1,2,-1,-1,2 +264,172.88.83.215,R_6aV4sQqepvDNNlu,self,03VFP,past,8,8,7,8,7,8,8,8,8,8,8,8,9,8,8,8,8,8,8,8,8,8,9,8,8,8,9,6,5,5,6,5,4,8,8,8,8,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,7,8,7,8,8,7.66666666666667,8,8,9,8,8,8,9,8.16666666666667,8,8,8,8,8,9,8,6,5,5,6,5,4,5.4,8,8,8,8,8,8,8,8,8,8,8,8,9,9,8,8.33333333333333,0,0,-2,0,-1,0,-1,-0.5,2,3,3,2,3,5,2.6,0,0,0,0,-1,-1,0,-0.333333333333333,0.588888888888889,1.33333333333333,0.5,0,3,0,0,0,0,0,1,-1,0,-1,-1,0,10 cents,100 minutes,24 days,4,9,Richard is taller than Matt,35,Tuesday,B,C,A,C,C,Male,0,College Diploma/Certificate,C_Ug,35,32 - 38,American,Male,1,,,,1,1,,5,1,8,4,3,6,7,2,4,6,7,1,2,5,3,4,6,2,3,8,1,5,7,1,4,7,8,5,3,6,2,2,4,1,6,5,7,3,7,3,6,4,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,7,5,2,3,6,1,4,4,3,2,1,1,0,1,1 +265,75.222.218.7,R_6wbFOpVsg3SyZk0,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like somewhat,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,10,10,0,10,10,10,0,0,10,0,10,10,0,10,10,10,10,10,10,10,10,10,10,10,5-9,1,10,10,10,10,10,10,10,10,10,10,0,0,10,0,10,5,10,10,10,10,10,10,10,10,0,10,10,10,10,8,10,10,0,10,10,0,10,6.66666666666667,10,10,10,10,10,10,10,10,0,0,10,10,0,10,0,5,0,10,0,0,0,0,2,0,0,-10,0,0,-10,0,-3.33333333333333,1.22222222222222,0,0.5,0,3,0.6,0.2,0.4,2,2,2,2,-2,-2,2,-2,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Tuesday,D,D,D,A,B,Male,0,University - Graduate (Masters),grad_prof,36,32 - 38,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,4,2,6,1,1,5,2,7,6,4,3,4,2,8,7,5,3,6,1,1,3,8,4,5,2,6,7,1,6,3,4,2,5,7,2,3,6,8,5,7,4,1,2,4,3,9,6,5,7,1,8,3,4,2,1,-2,2,2,-2 +266,98.242.164.124,R_5kzVP61UUTUKk0P,self,03VFP,future,6,6,8,6,8,9,9,9,7,8,8,6,9,9,8,9,8,8,8,7,10,9,8,8,8,9,8,8,9,9,8,8,9,8,10,10,9,10,8,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,8,6,8,9,9,7.16666666666667,10,9,8,8,8,9,8,8.66666666666667,9,7,8,8,6,9,7.6,8,9,9,8,8,9,8.4,9,8,9,8,8,8,7,8.33333333333333,8,10,10,9,10,8,10,9.16666666666667,-4,-3,0,-2,0,0,1,-1.5,1,-2,-1,0,-2,0,-0.8,1,-2,-1,-1,-2,0,-3,-0.833333333333333,-1.04444444444444,-0.666666666666667,0.25,0,2,0.4,0.2,0.3,2,2,1,1,1,1,1,1,10 cents,100 minutes,36 days,5,8,Richard is taller than Matt,35,Monday,A,B,C,B,C,Male,0,High School (or equivalent),HS_TS,47,46 - 52,American,Male,1,,,,1,,1,3,1,8,6,4,5,2,7,3,5,7,1,4,6,2,4,2,5,6,8,1,3,7,1,3,6,8,7,4,5,2,3,5,1,4,2,7,6,5,7,2,3,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,2,4,9,8,6,1,3,2,3,4,1,-1,-1,-1,-1 +267,76.36.86.74,R_3QQRT7tNVZFSll7,self,03VFP,past,5,1,10,7,4,6,6,7,7,6,9,9,9,8,9,6,10,9,9,7,10,8,10,10,8,8,8,10,8,9,8,10,9,10,8,8,8,10,9,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,10,7,4,6,6,5.5,10,8,10,10,8,8,8,9,7,7,6,9,9,9,7.6,10,8,9,8,10,9,9,8,9,6,10,9,9,7,8.5,10,8,8,8,10,9,7,8.83333333333333,-5,-7,0,-3,-4,-2,-2,-3.5,-3,-1,-3,1,-1,0,-1.4,-2,1,-2,2,-1,0,0,-0.333333333333333,-1.74444444444444,-0.666666666666667,0.75,0,3,0.6,0.4,0.5,1,2,1,-2,1,1,0,2,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Tuesday,D,C,D,B,C,Female,1,High School (or equivalent),HS_TS,33,32 - 38,American,Female,1,,,,1,1,,3,1,8,5,2,6,7,4,2,6,7,1,4,5,3,3,2,5,7,8,1,6,4,1,5,4,8,2,7,3,6,6,2,1,3,5,7,4,7,6,4,2,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,3,6,5,4,2,1,7,3,4,2,1,2,-1,-1,0 +268,38.253.4.235,R_3QfINfyjWpKmkN2,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,6,7,5,2,3,6,0,4,0,0,0,3,0,2,2,0,0,0,1,6,1,7,2,1,1,5,4,0,1,0,2,6,0,7,4,0,0,0,5,20+,2,7,6,7,5,2,3,6,5,6,1,7,2,1,1,5,3,0,4,0,0,0,3,0.8,4,0,1,0,2,6,1.4,0,2,2,0,0,0,1,0.666666666666667,0,7,4,0,0,0,5,1.83333333333333,1,5,0,3,1,2,1,2,-4,4,-1,0,-2,-3,-0.6,0,-5,-2,0,0,0,-4,-1.16666666666667,0.0777777777777778,-2,0.5,1,2,0.8,0.8,0.8,-1,1,0,-2,-1,2,-2,1,10 cents,5 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,B,E,B,B,D,Female,1,University - Undergraduate,C_Ug,25,25 - 31,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,2,7,4,6,1,1,5,4,7,6,3,2,3,4,8,2,6,7,5,1,1,3,8,4,6,5,7,2,1,6,3,4,2,5,7,2,7,4,8,5,3,6,1,4,8,2,3,6,5,7,1,9,4,3,2,1,2,1,-2,2 +269,172.12.182.52,R_5EVA4C5RX92s3K1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Neither like nor dislike,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,1,2,0.4,0.4,0.4,0,2,0,-2,-1,-2,-2,1,10 cents,5 minutes,24 days,6,12,It's impossible to tell,47,Monday,D,C,D,B,F,Male,0,Trade School,HS_TS,59,53 - 59,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,6,4,3,5,1,1,4,2,7,6,3,5,4,3,8,2,7,6,5,1,1,7,8,4,2,3,6,5,1,6,5,4,3,2,7,4,6,5,8,7,2,3,1,4,2,7,6,5,8,9,1,3,2,4,3,1,2,1,2,2 +270,99.227.242.205,R_1f1UabdtM85R01k,self,01FPV,future,3,1,5,5,1,5,1,4,2,0,0,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,1,2,3,1,0,2,1,0,0,2,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,5,5,1,5,1,3.33333333333333,0,0,2,2,0,0,1,0.666666666666667,4,2,0,0,1,1,1.4,2,3,1,0,2,1,1.6,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0.333333333333333,3,1,3,3,1,5,0,2.66666666666667,2,-1,-1,0,-1,0,-0.2,0,0,-2,0,0,0,-1,-0.333333333333333,0.711111111111111,-0.333333333333333,0.125,1,2,0.8,1,0.9,1,1,1,0,0,1,0,-1,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,B,B,D,Male,0,High School (or equivalent),HS_TS,42,39 - 45,Canadian,Male,1,,1,,,,1,2,1,8,7,4,3,6,5,2,4,7,1,3,5,6,6,4,3,5,8,1,2,7,1,4,3,8,5,2,7,6,6,3,1,4,5,7,2,3,2,6,5,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,7,9,3,5,1,4,3,4,2,1,0,0,-1,0 +271,174.85.242.218,R_11FemTYtZwEQdm7,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,8,1,8,2,6,3,1,1,2,2,1,1,1,1,1,5,1,1,1,1,8,1,8,1,1,2,2,3,2,2,1,1,1,1,1,1,1,20+,2,1,1,1,8,1,8,2,3.33333333333333,1,1,1,8,1,8,1,3.33333333333333,6,3,1,1,2,2,2.6,1,2,2,3,2,2,2,1,1,1,1,1,5,1,1.66666666666667,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,0,5,1,-1,-2,0,0,0.6,0,0,0,0,0,4,0,0.666666666666667,0.422222222222222,0.333333333333333,1.375,2,1,0.6,0,0.3,1,2,2,-2,0,-1,-2,1,10 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Tuesday,B,C,F,F,E,Male,0,University - Undergraduate,C_Ug,66,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,3,2,1,1,2,6,7,3,4,5,6,5,8,3,2,7,4,1,1,2,8,3,5,6,7,4,1,3,6,5,4,2,7,5,4,7,8,3,2,6,1,9,5,4,3,7,2,8,1,6,2,3,4,1,2,0,1,2 +272,172.59.194.25,R_1SVgC2pwp2ksrrX,self,03VFP,past,4,2,3,5,3,5,4,4,3,4,3,4,3,4,5,4,4,2,3,4,4,2,3,5,3,4,4,3,2,3,3,4,2,3,4,4,4,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,5,3,5,4,3.66666666666667,4,2,3,5,3,4,4,3.5,4,3,4,3,4,3,3.6,3,2,3,3,4,2,3,4,5,4,4,2,3,4,3.66666666666667,3,4,4,4,2,3,3,3.33333333333333,0,0,0,0,0,1,0,0.166666666666667,1,1,1,0,0,1,0.6,1,1,0,0,0,0,1,0.333333333333333,0.366666666666667,0.666666666666667,1.625,3,0,1,0.8,0.9,1,2,2,-2,-1,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,E,Male,0,University - Graduate (Masters),grad_prof,45,39 - 45,American,Male,1,,,,1,1,,5,1,8,7,6,3,2,4,5,6,7,1,3,2,4,7,2,6,4,8,1,5,3,1,6,5,8,7,4,3,2,3,4,1,2,5,7,6,6,4,3,7,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,8,2,6,7,1,9,2,4,3,1,2,1,1,2 +273,97.146.2.107,R_34BNkZuAtmBlvUJ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",13,Like a great deal,6,6,7,6,6,6,7,5,6,6,7,5,6,5,5,6,7,6,7,5,6,5,6,6,5,6,6,5,6,5,5,5,5,5,5,5,5,5,7,5,10-14,2,6,6,7,6,6,6,7,6.16666666666667,6,5,6,6,5,6,6,5.66666666666667,5,6,6,7,5,6,5.8,5,6,5,5,5,5,5.2,5,5,6,7,6,7,5,6,5,5,5,5,5,7,5,5.33333333333333,0,1,1,0,1,0,1,0.5,0,0,1,2,0,1,0.6,0,0,1,2,1,0,0,0.666666666666667,0.588888888888889,0.666666666666667,0.25,1,2,0.4,0.4,0.4,-1,0,0,-2,0,0,-1,0,5 cents,100 minutes,24 days,5,9,Richard is as tall as Matt,47,Tuesday,D,E,D,C,E,Male,0,College Diploma/Certificate,C_Ug,64,60 - 66,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,3,2,7,1,1,4,2,7,3,6,5,2,6,8,3,7,5,4,1,1,7,8,3,2,5,4,6,1,3,2,4,5,6,7,2,6,3,8,4,7,5,1,6,7,8,9,4,2,3,1,5,3,2,4,1,2,0,0,1 +274,75.136.61.136,R_3IhIUchNEeiOMVU,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,2,5,1,0,2,3,2,0,6,0,2,3,2,0,7,0,1,5,2,5,3,1,3,3,3,2,0,1,4,0,2,0,0,0,6,0,0,5,1,20+,1,3,2,5,1,0,2,3,2.16666666666667,5,3,1,3,3,3,2,3,2,0,6,0,2,3,2,0,1,4,0,2,0,1.4,2,0,7,0,1,5,2,2.5,0,0,6,0,0,5,1,1.83333333333333,-2,-1,4,-2,-3,-1,1,-0.833333333333333,2,-1,2,0,0,3,0.6,2,0,1,0,1,0,1,0.666666666666667,0.144444444444444,1.66666666666667,1.25,2,1,0.6,0.4,0.5,0,2,2,-2,1,-2,-2,1,5 cents,5 minutes,24 days,2,8,Richard is taller than Matt,47,Sunday,A,E,D,D,D,Prefer not to say,2,University - Undergraduate,C_Ug,67,67 - 73,American,Prefer not to say,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,2,3,1,1,4,2,7,5,6,3,2,6,8,5,4,3,7,1,1,7,8,3,4,2,6,5,1,6,3,2,4,5,7,6,4,7,8,5,3,2,1,2,8,6,5,9,4,7,1,3,2,3,4,1,2,-1,2,2 +275,172.58.130.36,R_7cUI9huWEZ9k9ws,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,3,3,5,2,4,4,4,4,3,3,4,4,3,4,4,2,2,3,3,4,3,3,5,2,4,4,3,2,3,2,4,3,3,3,4,2,2,3,3,10-14,2,4,3,3,5,2,4,4,3.5,4,3,3,5,2,4,4,3.5,4,4,3,3,4,4,3.6,3,2,3,2,4,3,2.8,3,4,4,2,2,3,3,3,3,3,4,2,2,3,3,2.83333333333333,0,0,0,0,0,0,0,0,1,2,0,1,0,1,0.8,0,1,0,0,0,0,0,0.166666666666667,0.322222222222222,0.333333333333333,1.375,3,0,0.8,0.4,0.6,2,2,2,-2,1,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,D,D,D,B,B,Male,0,University - Graduate (Masters),grad_prof,41,39 - 45,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,6,7,4,5,1,1,2,3,7,6,4,5,3,4,8,2,6,5,7,1,1,5,8,3,2,6,4,7,1,2,3,4,6,5,7,7,3,6,8,4,2,5,1,4,3,7,2,8,6,9,1,5,3,2,4,1,2,-1,1,2 +276,24.150.3.100,R_1JIrRFBUbzJVagx,self,03VFP,future,1,1,1,4,1,1,1,2,1,1,2,1,2,3,1,1,3,1,4,1,1,1,1,2,1,2,2,1,2,1,1,1,1,9,7,4,7,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,4,1,1,1,1.5,1,1,1,2,1,2,2,1.33333333333333,2,1,1,2,1,2,1.4,1,2,1,1,1,1,1.2,3,1,1,3,1,4,1,2.16666666666667,9,7,4,7,2,2,5,5.16666666666667,0,0,0,2,0,-1,-1,0.166666666666667,1,-1,0,1,0,1,0.2,-6,-6,-3,-4,-1,2,-4,-3,-0.877777777777778,-1.33333333333333,0.875,1,2,1,0.6,0.8,2,1,0,-1,-1,-1,-2,-1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,B,B,F,Male,0,University - Undergraduate,C_Ug,35,32 - 38,Canadian,Male,1,,,,1,,1,3,1,8,7,4,2,5,6,2,4,7,1,3,5,6,2,4,6,3,8,1,5,7,1,2,4,8,3,5,7,6,6,5,1,4,2,7,3,7,2,5,6,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,3,2,4,9,5,1,8,3,4,2,1,1,1,1,2 +277,64.46.15.189,R_6F2U2R4Lrswp5aP,self,02PVF,future,2,3,2,3,5,2,3,4,2,2,6,4,4,2,2,2,4,7,5,3,5,4,5,5,6,5,5,4,1,1,2,3,2,1,1,2,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,3,5,2,3,2.83333333333333,5,4,5,5,6,5,5,5,4,2,2,6,4,4,3.6,4,1,1,2,3,2,2.2,2,2,2,4,7,5,3,3.66666666666667,1,1,2,1,2,1,2,1.33333333333333,-3,-1,-3,-2,-1,-3,-2,-2.16666666666667,0,1,1,4,1,2,1.4,1,1,0,3,5,4,1,2.33333333333333,0.522222222222222,0.333333333333333,1,0,3,1,0.4,0.7,1,1,2,0,0,-1,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,C,F,B,Male,0,University - Graduate (Masters),grad_prof,51,46 - 52,Canadian,Male,1,,,1,,,1,3,1,8,4,6,5,2,7,3,2,7,1,4,5,6,2,6,4,3,8,1,5,7,1,6,5,8,2,4,3,7,5,6,1,3,2,7,4,4,3,7,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,9,5,6,7,8,3,1,4,4,3,2,1,0,0,1,2 +278,172.56.156.217,R_3f0Z8ffCybaiiKn,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,4,2,3,4,3,5,5,3,3,2,4,4,3,3,4,5,5,3,3,2,3,3,4,2,3,3,3,5,3,3,5,4,3,4,4,3,2,4,7,8,10-14,1,4,2,3,4,3,5,5,3.5,3,3,4,2,3,3,3,3,3,3,2,4,4,3,3.2,5,3,3,5,4,3,4,3,4,5,5,3,3,2,3.83333333333333,4,4,3,2,4,7,8,4,1,-1,-1,2,0,2,2,0.5,-2,0,-1,-1,0,0,-0.8,-1,0,2,3,-1,-4,-6,-0.166666666666667,-0.155555555555556,-1.33333333333333,-0.5,0,1,1,0.4,0.7,1,1,-1,2,1,0,2,0,10 cents,25 minutes,15 days,5,8,It's impossible to tell,47,Sunday,A,E,E,B,A,Male,0,University - Graduate (Masters),grad_prof,38,32 - 38,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,2,4,7,1,1,6,3,7,5,2,4,7,6,8,4,2,5,3,1,1,6,8,2,7,5,3,4,1,6,5,2,4,3,7,5,2,7,8,4,6,3,1,9,7,2,6,5,3,8,1,4,4,2,3,1,-2,-1,0,-2 +279,76.28.62.198,R_5tspz5uOKK0KbbP,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20+,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,3,0,0.8,0.4,0,0,0,-1,0,0,0,0,10 cents,100 minutes,24 days,6,9,Richard is taller than Matt,39,Monday,D,E,B,B,F,Female,1,High School (or equivalent),HS_TS,36,32 - 38,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,4,6,2,1,1,6,2,7,3,5,4,3,2,8,5,6,7,4,1,1,5,8,7,4,2,3,6,1,6,4,5,3,2,7,2,7,6,8,5,3,4,1,6,9,3,2,7,8,5,1,4,2,3,4,1,1,0,0,0 +280,172.218.7.172,R_1wuRR8qLYC4YQM1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,0,1,8,10,2,2,5,7,5,6,7,7,1,1,9,2,1,0,3,3,0,1,5,1,2,3,2,2,2,3,2,2,2,2,9,9,2,2,2,20+,2,2,0,1,8,10,2,2,3.83333333333333,3,0,1,5,1,2,3,2,5,7,5,6,7,7,6,2,2,2,3,2,2,2.2,1,1,9,2,1,0,3,2.33333333333333,2,2,9,9,2,2,2,4.33333333333333,-1,0,0,3,9,0,-1,1.83333333333333,3,5,3,3,5,5,3.8,-1,-1,0,-7,-1,-2,1,-2,1.21111111111111,1.66666666666667,0.875,2,0,1,1,1,1,2,2,-2,2,0,-2,0,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,49,46 - 52,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,6,3,4,2,1,1,4,6,7,5,3,2,7,3,8,4,5,6,2,1,1,6,8,5,7,2,3,4,1,6,2,4,3,5,7,4,6,2,8,7,3,5,1,5,8,2,3,7,6,4,1,9,3,2,4,1,2,-2,0,2 +281,174.69.25.145,R_73fedXf3vY2ulAY,self,03VFP,past,6,5,7,7,4,5,7,6,7,7,8,8,7,3,7,5,7,6,4,8,8,6,7,8,7,8,8,6,9,9,8,8,8,8,7,7,6,8,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,4,5,7,5.66666666666667,8,6,7,8,7,8,8,7.33333333333333,6,7,7,8,8,7,7.2,6,9,9,8,8,8,8,3,7,5,7,6,4,8,5.33333333333333,8,7,7,6,8,7,8,7.16666666666667,-2,-1,0,-1,-3,-3,-1,-1.66666666666667,0,-2,-2,0,0,-1,-0.8,-5,0,-2,1,-2,-3,0,-1.83333333333333,-1.43333333333333,-0.666666666666667,0.125,1,2,0.8,0.2,0.5,1,1,1,-1,2,1,1,1,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,A,B,A,B,C,Male,0,High School (or equivalent),HS_TS,19,18 - 24,American,Male,1,,,,1,1,,5,1,8,3,2,4,6,7,5,2,7,1,4,3,6,2,6,4,3,8,1,5,7,1,2,5,8,4,3,6,7,4,6,1,3,5,7,2,7,5,4,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,5,4,9,2,7,1,3,3,2,4,1,1,-2,-1,-1 +282,172.59.194.64,R_3SjZt72Eigx8uor,self,02PVF,future,3,3,3,3,3,3,4,7,7,7,8,8,9,4,3,4,3,4,3,3,8,7,7,8,7,8,8,9,7,8,8,7,8,7,8,8,8,8,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,3,4,3,8,7,7,8,7,8,8,7.5,7,7,7,8,8,9,7.4,9,7,8,8,7,8,7.8,4,3,4,3,4,3,3,3.5,7,8,8,8,8,8,7,7.83333333333333,-5,-4,-4,-5,-4,-5,-4,-4.5,-2,0,-1,0,1,1,-0.4,-3,-5,-4,-5,-4,-5,-4,-4.33333333333333,-3.07777777777778,-2.33333333333333,-0.25,3,0,1,0,0.5,1,1,1,1,2,2,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,C,D,E,E,Male,0,University - Graduate (Masters),grad_prof,40,39 - 45,American,Male,1,,,1,,,1,3,1,8,4,2,7,5,6,2,3,7,1,6,5,4,4,3,7,5,8,1,2,6,1,5,2,8,4,6,7,3,5,2,1,4,6,7,3,3,5,4,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,3,9,7,8,5,1,4,3,2,4,1,-1,-2,-2,-1 +283,67.5.102.253,R_732aj7urEaYfVfW,self,01FPV,future,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,2,1,2,1,0,0,0,0,1,0,0,0,0,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0,0,1,0,0,0,0.5,1,1,1,2,1,2,1,1.33333333333333,0,0,0,0,0,1,0,0,0,0,0,1,0,0.2,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0.5,1,-1,-1,-1,-1,-2,-1,-0.833333333333333,0,0,0,0,-1,1,-0.2,0,0,0,-1,0,-2,0,-0.5,-0.511111111111111,0,0.625,3,0,0.6,0.6,0.6,0,1,1,-2,0,0,-1,0,5 cents,5 minutes,47 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,D,A,Male,0,University - Undergraduate,C_Ug,62,60 - 66,American,Male,1,,1,,,,1,4,1,8,7,3,6,2,5,3,6,7,1,5,2,4,6,7,4,3,8,1,2,5,1,3,4,8,6,5,7,2,2,3,1,5,6,7,4,5,3,6,4,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,9,3,8,7,2,1,6,4,3,2,1,2,0,0,1 +284,108.178.196.58,R_3yMyDJ1hKsBzEWJ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,3,0,0,0,0,0,0,0,0,0,2,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,20+,2,2,1,1,3,0,0,0,1.16666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,1,0,1.16666666666667,0,1,0,0,0,0,0,0.166666666666667,2,1,1,3,0,0,0,1.16666666666667,0,0,0,0,0,0,0,2,-1,4,0,0,1,0,1,0.722222222222222,0,1.5,1,2,0.8,0.4,0.6,-2,2,2,-2,-2,-2,-2,2,10 cents,100 minutes,47 days,5,8,It's impossible to tell,57,Sunday,B,D,E,B,D,Male,0,University - Graduate (Masters),grad_prof,37,32 - 38,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,2,3,4,7,1,1,5,4,7,6,3,2,3,5,8,6,7,4,2,1,1,4,8,3,7,6,5,2,1,4,2,5,6,3,7,7,2,6,8,3,5,4,1,3,5,4,6,8,7,9,1,2,4,3,2,1,2,2,2,2 +285,99.229.54.185,R_3EeSPqAVI5RyhWx,self,02PVF,future,5,6,7,5,6,4,5,6,4,6,4,5,6,7,7,5,7,4,7,6,6,5,4,5,5,3,6,6,5,6,5,4,7,8,6,4,7,5,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,6,4,5,5.5,6,5,4,5,5,3,6,4.66666666666667,6,4,6,4,5,6,5,6,5,6,5,4,7,5.2,7,7,5,7,4,7,6,6.16666666666667,8,6,4,7,5,7,6,6.16666666666667,-1,1,3,0,1,1,-1,0.833333333333333,0,-1,0,-1,1,-1,-0.2,-1,1,1,0,-1,0,0,0,0.211111111111111,-0.666666666666667,0.625,0,3,0.6,0.2,0.4,0,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Wednesday,D,D,A,A,C,Male,0,College Diploma/Certificate,C_Ug,51,46 - 52,Canadian,Male,1,,,1,,,1,7,1,8,2,5,4,6,3,5,3,7,1,6,4,2,4,5,7,6,8,1,2,3,1,2,5,8,3,4,6,7,4,6,1,5,3,7,2,6,7,2,3,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,4,5,8,2,3,1,9,4,3,2,1,1,0,0,1 +286,73.78.59.197,R_5oz6tkfGe0R89zy,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,2,3,0,1,2,2,1,1,0,2,2,2,1,1,2,2,2,2,2,3,1,4,2,4,2,3,1,1,3,2,3,3,2,1,3,1,2,2,20+,2,2,1,2,3,0,1,2,1.5,2,3,1,4,2,4,2,2.66666666666667,2,1,1,0,2,2,1.2,3,1,1,3,2,3,2,2,1,1,2,2,2,2,1.66666666666667,3,2,1,3,1,2,2,2,0,-2,1,-1,-2,-3,0,-1.16666666666667,-1,0,0,-3,0,-1,-0.8,-1,-1,0,-1,1,0,0,-0.333333333333333,-0.766666666666667,-0.333333333333333,0.625,0,3,0.2,0.4,0.3,0,1,1,-1,0,0,-1,1,10 cents,100 minutes,24 days,5,11,Richard is shorter than Matt,44,Tuesday,D,E,C,F,E,Female,1,College Diploma/Certificate,C_Ug,37,32 - 38,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,2,5,4,7,1,1,5,3,7,6,2,4,3,5,8,4,6,2,7,1,1,6,8,7,4,2,5,3,1,2,5,3,4,6,7,7,6,4,8,5,3,2,1,2,8,4,5,3,7,6,1,9,4,3,2,1,1,0,0,1 +287,205.250.196.17,R_6ccKGc1u9Kyqb2p,self,03VFP,past,3,0,0,4,0,2,2,1,2,4,1,3,2,0,0,2,2,2,2,1,2,0,0,1,0,6,2,1,1,2,1,5,2,0,2,2,1,6,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0,0,4,0,2,2,1.5,2,0,0,1,0,6,2,1.5,1,2,4,1,3,2,2.2,1,1,2,1,5,2,2,0,0,2,2,2,2,1,1.33333333333333,0,2,2,1,6,6,2,2.83333333333333,1,0,0,3,0,-4,0,0,0,1,2,0,-2,0,0.2,0,-2,0,1,-4,-4,-1,-1.5,-0.433333333333333,-0.333333333333333,1.375,3,0,1,1,1,2,1,2,-2,0,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,48,46 - 52,Canadian,Male,1,,,,1,1,,3,1,8,4,7,5,6,2,2,6,7,1,3,5,4,7,5,2,6,8,1,4,3,1,6,7,8,3,4,2,5,4,3,1,6,5,7,2,4,5,2,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,8,7,3,9,1,6,3,4,2,1,2,0,1,2 +288,99.239.68.192,R_7k3H8E6SEjE51iV,self,01FPV,past,2,5,4,4,4,2,4,1,1,1,1,2,1,2,0,0,1,0,0,1,2,3,3,2,3,2,3,2,1,0,0,1,1,1,0,1,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,4,4,2,4,3.5,2,3,3,2,3,2,3,2.5,1,1,1,1,2,1,1.2,2,1,0,0,1,1,0.8,2,0,0,1,0,0,1,0.5,1,0,1,0,0,2,1,0.666666666666667,0,2,1,2,1,0,1,1,-1,0,1,1,1,0,0.4,1,0,-1,1,0,-2,0,-0.166666666666667,0.411111111111111,0.333333333333333,1.5,3,0,1,1,1,0,2,2,-2,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - PhD,grad_prof,32,32 - 38,American,Male,1,,1,,,1,,4,1,8,5,6,2,7,3,6,3,7,1,5,2,4,4,5,2,7,8,1,3,6,1,4,7,8,5,2,6,3,5,3,1,6,2,7,4,3,5,7,4,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,5,8,3,7,2,1,4,3,2,4,1,2,1,2,2 +289,70.50.90.175,R_35NWtAhEORHAv6N,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,3,5,6,3,5,4,6,3,6,6,5,3,2,5,2,4,7,7,5,3,6,5,5,3,10,6,7,7,8,10,6,4,8,2,6,1,10,8,4,20+,2,0,3,5,6,3,5,4,3.66666666666667,3,6,5,5,3,10,6,5.33333333333333,6,3,6,6,5,3,5.2,7,7,8,10,6,4,7.6,2,5,2,4,7,7,5,4.5,8,2,6,1,10,8,4,5.83333333333333,-3,-3,0,1,0,-5,-2,-1.66666666666667,-1,-4,-2,-4,-1,-1,-2.4,-6,3,-4,3,-3,-1,1,-1.33333333333333,-1.8,-0.666666666666667,1.375,0,2,0.2,0.2,0.2,2,2,1,-2,0,-2,-2,0,10 cents,75 minutes,24 days,5,7,Richard is shorter than Matt,53,Monday,D,B,A,E,C,Male,0,College Diploma/Certificate,C_Ug,59,53 - 59,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,4,3,2,6,1,1,3,5,7,4,6,2,5,6,8,3,7,4,2,1,1,2,8,6,3,7,4,5,1,6,5,2,3,4,7,4,6,7,8,5,3,2,1,7,8,4,2,3,6,5,1,9,3,4,2,1,2,0,2,2 +290,73.218.82.204,R_3c59Ros8WgrDxmS,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,3,1,2,2,3,5,5,1,5,3,3,3,7,2,1,5,2,5,5,5,5,5,5,5,2,2,2,1,2,2,2,3,3,2,1,2,2,20+,2,2,1,1,3,1,2,2,1.66666666666667,5,5,5,5,5,5,5,5,3,5,5,1,5,3,3.8,2,2,2,1,2,2,1.8,3,3,7,2,1,5,2,3.5,2,3,3,2,1,2,2,2.16666666666667,-3,-4,-4,-2,-4,-3,-3,-3.33333333333333,1,3,3,0,3,1,2,1,0,4,0,0,3,0,1.33333333333333,-7.40148683083438E-17,-0.666666666666667,1,2,1,1,1,1,0,2,0,-2,0,-1,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Prefer not to say,2,University - PhD,grad_prof,47,46 - 52,American,Prefer not to say,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,6,5,4,7,1,1,3,5,7,4,2,6,4,2,8,6,7,3,5,1,1,5,8,7,2,4,6,3,1,4,6,2,3,5,7,5,7,2,8,3,4,6,1,9,6,3,7,2,4,8,1,5,2,3,4,1,2,0,1,2 +291,172.116.70.92,R_7aUYjtPG3r4xZND,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,6,6,6,6,6,6,6,7,6,6,6,7,6,6,7,6,6,7,6,7,7,6,6,6,6,7,7,7,6,7,6,7,6,6,6,6,5,7,6,6,10-14,2,6,6,6,6,6,6,6,6,7,6,6,6,6,7,7,6.33333333333333,7,6,6,6,7,6,6.4,7,6,7,6,7,6,6.6,6,7,6,6,7,6,7,6.33333333333333,6,6,6,5,7,6,6,6,-1,0,0,0,0,-1,-1,-0.333333333333333,0,0,-1,0,0,0,-0.2,0,1,0,1,0,0,1,0.333333333333333,-0.0666666666666667,0,0.125,0,1,0.4,0,0.2,0,0,0,-1,-1,0,1,0,15 cents,100 minutes,36 days,5,10,It's impossible to tell,39,Tuesday,B,D,C,C,C,Female,1,College Diploma/Certificate,C_Ug,44,39 - 45,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,5,7,4,2,1,1,4,3,7,5,6,2,3,4,8,2,5,7,6,1,1,5,8,2,7,6,4,3,1,6,5,2,3,4,7,2,7,4,8,3,6,5,1,2,5,4,3,6,8,9,1,7,4,2,3,1,1,1,0,-1 +292,16.98.10.34,R_72mtH6ho3Qvv930,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,4,2,1,1,1,1,1,1,1,10-14,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,-0.333333333333333,-0.333333333333333,0.25,1,2,0.8,0.2,0.5,0,1,0,-2,0,0,1,0,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Wednesday,F,C,A,B,A,Female,1,High School (or equivalent),HS_TS,41,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,7,4,2,6,1,1,3,5,7,4,6,2,6,5,8,7,2,4,3,1,1,4,8,2,6,5,3,7,1,4,3,5,6,2,7,3,4,7,8,6,5,2,1,5,9,4,2,7,3,8,1,6,4,3,2,1,2,0,0,-1 +293,73.2.73.190,R_7vtObr4rlmo3Fap,self,03VFP,future,0,1,7,0,5,1,0,0,0,0,3,6,0,5,1,1,1,1,1,3,1,0,5,4,1,5,0,4,6,6,2,2,0,7,3,2,2,0,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,7,0,5,1,0,2.33333333333333,1,0,5,4,1,5,0,2.66666666666667,0,0,0,3,6,0,1.8,4,6,6,2,2,0,4,5,1,1,1,1,1,3,1.66666666666667,7,3,2,2,0,4,2,3,-1,1,2,-4,4,-4,0,-0.333333333333333,-4,-6,-6,1,4,0,-2.2,-2,-2,-1,-1,1,-3,1,-1.33333333333333,-1.28888888888889,0.333333333333333,1.125,0,3,0.4,0.4,0.4,2,2,1,-2,1,-1,-2,0,10 cents,100 minutes,24 days,3,9,It's impossible to tell,47,Monday,E,D,A,B,D,Male,0,High School (or equivalent),HS_TS,52,46 - 52,American,Male,1,,,,1,,1,4,1,8,5,7,6,2,3,6,5,7,1,2,4,3,7,6,5,3,8,1,4,2,1,7,2,8,5,6,3,4,6,5,1,2,3,7,4,7,6,2,4,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,8,7,9,4,1,6,3,2,4,1,2,-1,1,2 +294,24.235.191.164,R_5iILY0FyrwZ81Oa,self,02PVF,future,4,4,5,8,2,3,6,6,5,6,4,2,6,5,7,6,5,6,3,5,3,2,8,6,5,4,7,6,9,7,6,3,6,7,9,9,6,9,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,8,2,3,6,4.33333333333333,3,2,8,6,5,4,7,4.66666666666667,6,5,6,4,2,6,4.6,6,9,7,6,3,6,6.2,5,7,6,5,6,3,5,5.33333333333333,7,9,9,6,9,5,7,7.5,1,2,-3,2,-3,-1,-1,-0.333333333333333,0,-4,-1,-2,-1,0,-1.6,-2,-2,-3,-1,-3,-2,-2,-2.16666666666667,-1.36666666666667,-1,1.5,3,0,1,0.6,0.8,2,1,2,-1,-1,-2,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,B,D,Male,0,University - Undergraduate,C_Ug,35,32 - 38,Canadian,Male,1,,,1,,,1,6,1,8,4,7,2,3,5,4,5,7,1,6,2,3,6,7,4,3,8,1,5,2,1,5,3,8,4,2,7,6,4,2,1,3,6,7,5,3,7,2,4,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,4,3,6,2,5,1,7,4,2,3,1,1,1,2,2 +295,108.244.84.60,R_7dwZXD6O1byOAHD,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,8,7,7,7,6,7,7,6,8,7,8,7,6,6,7,6,7,7,8,6,6,6,6,6,7,7,7,6,7,7,6,6,7,6,5,6,5,7,6,7,5-9,1,8,7,7,7,6,7,7,7,6,6,6,6,7,7,7,6.33333333333333,6,8,7,8,7,6,7.2,6,7,7,6,6,7,6.4,6,7,6,7,7,8,6,6.83333333333333,6,5,6,5,7,6,7,5.83333333333333,2,1,1,1,-1,0,0,0.666666666666667,0,1,0,2,1,-1,0.8,0,2,0,2,0,2,-1,1,0.822222222222222,-0.666666666666667,0.25,0,3,0,0.2,0.1,1,1,1,0,1,1,0,1,10 cents,100 minutes,24 days,7,12,Richard is shorter than Matt,35,Tuesday,B,F,C,B,B,Male,0,University - PhD,grad_prof,29,25 - 31,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,7,2,3,1,1,6,5,7,4,3,2,5,6,8,2,7,4,3,1,1,3,8,6,2,7,5,4,1,6,2,5,4,3,7,6,3,5,8,7,4,2,1,3,2,7,6,4,8,9,1,5,4,2,3,1,0,-1,-1,0 +296,174.114.48.68,R_77U4S2yk0SfBYSj,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,5,6,5,5,5,5,5,6,5,5,5,6,5,6,5,5,5,5,5,6,5,5,5,6,5,5,5,5,6,5,5,5,5,5,5,5,6,5,20+,2,5,5,5,6,5,5,5,5.16666666666667,5,6,5,5,5,6,5,5.33333333333333,5,5,6,5,5,5,5.2,5,5,5,6,5,5,5.2,6,5,6,5,5,5,5,5.33333333333333,5,5,5,5,5,6,5,5.16666666666667,0,-1,0,1,0,-1,0,-0.166666666666667,0,0,1,-1,0,0,0,1,0,1,0,0,-1,0,0.166666666666667,0,0,1.375,0,3,0.4,0.2,0.3,1,2,2,-2,0,-1,-2,1,10 cents,100 minutes,24 days,5,10,Richard is as tall as Matt,57,Sunday,C,D,B,A,C,Male,0,University - Graduate (Masters),grad_prof,49,46 - 52,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,2,7,6,1,1,3,2,7,6,5,4,2,6,8,7,5,3,4,1,1,4,8,2,5,7,3,6,1,5,2,3,6,4,7,2,3,4,8,7,5,6,1,7,9,8,6,4,5,3,1,2,2,4,3,1,2,0,1,2 +297,71.83.182.221,R_6OvxHRcgy7XJdmx,self,02PVF,future,8,6,8,9,6,7,7,7,8,7,7,8,6,7,9,8,7,6,7,7,8,7,7,6,6,8,7,7,6,8,8,7,7,6,8,7,6,8,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,8,9,6,7,7,7.33333333333333,8,7,7,6,6,8,7,7,7,8,7,7,8,6,7.4,7,6,8,8,7,7,7.2,7,9,8,7,6,7,7,7.33333333333333,6,8,7,6,8,7,7,7,0,-1,1,3,0,-1,0,0.333333333333333,0,2,-1,-1,1,-1,0.2,1,1,1,1,-2,0,0,0.333333333333333,0.288888888888889,-0.333333333333333,0,0,3,1,0.8,0.9,0,1,1,1,1,1,0,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,D,Female,1,High School (or equivalent),HS_TS,27,25 - 31,American,Female,1,,,1,,,1,2,1,8,7,4,5,3,6,3,4,7,1,2,5,6,3,7,2,6,8,1,5,4,1,4,6,8,5,2,7,3,2,3,1,4,5,7,6,7,3,4,5,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,4,2,5,3,6,1,9,2,3,4,1,-1,-1,-1,0 +298,107.77.227.13,R_5PhdtezmzdRThHH,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,5,1,1,1,2,1,3,1,2,1,4,1,1,3,6,1,1,1,1,6,7,4,6,5,6,6,6,6,5,6,6,6,2,5,2,2,1,2,1,20+,2,1,5,1,1,1,2,1,1.83333333333333,6,7,4,6,5,6,6,5.66666666666667,3,1,2,1,4,1,2.2,6,6,5,6,6,6,5.8,1,3,6,1,1,1,1,2.16666666666667,2,5,2,2,1,2,1,2.33333333333333,-5,-2,-3,-5,-4,-4,-5,-3.83333333333333,-3,-5,-3,-5,-2,-5,-3.6,-1,-2,4,-1,0,-1,0,-0.166666666666667,-2.53333333333333,-3.33333333333333,0.5,1,2,0.4,0.6,0.5,0,2,1,-1,1,1,-1,1,10 cents,5 minutes,24 days,5,7,Richard is as tall as Matt,47,Tuesday,D,E,C,B,F,Male,0,University - Graduate (Masters),grad_prof,61,60 - 66,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,4,5,2,7,1,1,4,6,7,2,3,5,6,2,8,3,7,4,5,1,1,7,8,6,5,4,3,2,1,4,6,2,3,5,7,4,5,2,8,3,6,7,1,6,8,5,9,7,4,2,1,3,4,3,2,1,1,-1,-1,1 +299,174.117.233.123,R_3CDHxPogDwYdAMp,self,02PVF,future,1,2,1,2,7,5,5,8,5,5,5,7,2,5,5,5,2,1,1,2,1,5,1,5,7,1,5,5,3,7,5,6,5,5,5,3,5,1,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,2,7,5,5,3,1,5,1,5,7,1,5,3.33333333333333,8,5,5,5,7,2,6,5,3,7,5,6,5,5.2,5,5,5,2,1,1,2,3.16666666666667,5,5,3,5,1,5,5,4,0,-3,0,-3,0,4,0,-0.333333333333333,3,2,-2,0,1,-3,0.8,0,0,2,-3,0,-4,-3,-0.833333333333333,-0.122222222222222,-2,0.875,2,1,0.4,1,0.7,1,1,1,-2,0,0,-1,1,10 cents,5 minutes,47 days,4,12,Richard is shorter than Matt,47,Sunday,D,E,B,B,D,Male,0,College Diploma/Certificate,C_Ug,37,32 - 38,Canadian,Male,1,,,1,,,1,6,1,8,3,7,5,2,4,6,3,7,1,2,4,5,7,6,2,4,8,1,3,5,1,7,6,8,5,3,2,4,4,6,1,5,3,7,2,7,3,4,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,8,4,9,6,1,7,4,3,2,1,2,0,0,1 +300,99.239.110.186,R_32hkLGt2LHxIeqU,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like somewhat,7,1,2,10,1,8,4,5,4,2,1,3,3,3,1,1,2,2,2,2,8,1,2,8,1,7,5,1,1,2,2,0,1,2,3,1,1,1,4,2,5-9,1,7,1,2,10,1,8,4,4.83333333333333,8,1,2,8,1,7,5,4.5,5,4,2,1,3,3,3,1,1,2,2,0,1,1.2,3,1,1,2,2,2,2,1.83333333333333,2,3,1,1,1,4,2,2,-1,0,0,2,0,1,-1,0.333333333333333,4,3,0,-1,3,2,1.8,1,-2,0,1,1,-2,0,-0.166666666666667,0.655555555555556,0.333333333333333,1.5,2,1,1,1,1,2,2,2,-2,1,-2,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,39,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,7,4,2,5,1,1,2,3,7,6,5,4,6,5,8,2,7,3,4,1,1,7,8,2,4,6,3,5,1,6,3,2,5,4,7,6,2,7,8,4,3,5,1,8,3,4,9,5,7,6,1,2,3,2,4,1,2,-1,2,2 +301,65.92.53.160,R_6dGAZahbVSoqJVm,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,3,0,0,2,6,1,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,1,2,8,1,7,0,1,0,0,0,0,0,0,0,0,0,0,20+,2,6,3,0,0,2,6,1,2.83333333333333,8,1,0,1,2,8,1,3.33333333333333,0,0,0,0,0,0,0,7,0,1,0,0,0,1.6,0,2,0,0,0,0,0,0.333333333333333,0,0,0,0,0,0,0,0,-2,2,0,-1,0,-2,0,-0.5,-7,0,-1,0,0,0,-1.6,0,2,0,0,0,0,0,0.333333333333333,-0.588888888888889,0,1.375,3,0,0.6,1,0.8,0,2,2,-2,-1,-2,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Monday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,57,53 - 59,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,5,7,6,3,1,1,4,3,7,5,6,2,3,7,8,2,6,4,5,1,1,6,8,7,3,2,5,4,1,5,3,2,4,6,7,2,4,6,8,5,3,7,1,8,4,5,7,6,9,3,1,2,4,3,2,1,2,1,2,2 +302,70.70.53.97,R_5YkXGSQuswzX3H6,self,02PVF,future,1,1,2,6,2,2,2,2,1,1,2,5,1,1,2,4,2,3,3,2,3,1,1,7,2,2,2,5,5,5,5,5,5,5,4,4,4,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,6,2,2,2,2.33333333333333,3,1,1,7,2,2,2,2.66666666666667,2,1,1,2,5,1,2.2,5,5,5,5,5,5,5,1,2,4,2,3,3,2,2.5,5,4,4,4,5,4,5,4.33333333333333,-2,0,1,-1,0,0,0,-0.333333333333333,-3,-4,-4,-3,0,-4,-2.8,-4,-2,0,-2,-2,-1,-3,-1.83333333333333,-1.65555555555556,-2.33333333333333,1,0,3,0.8,0.4,0.6,1,1,1,-1,-1,-1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Monday,D,B,C,B,B,Male,0,University - Undergraduate,C_Ug,56,53 - 59,Canadian,Male,1,,,1,,,1,3,1,8,5,6,7,2,4,6,2,7,1,5,4,3,6,2,5,3,8,1,4,7,1,4,6,8,3,2,7,5,4,6,1,3,2,7,5,4,3,2,5,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,2,6,4,3,8,1,9,4,2,3,1,1,1,1,1 +303,199.167.119.206,R_5rD10A6i5j17FvM,self,02PVF,past,1,1,1,10,2,10,5,10,10,10,6,10,10,1,10,10,0,10,10,9,1,1,1,1,1,1,1,1,8,10,3,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,10,2,10,5,4.16666666666667,1,1,1,1,1,1,1,1,10,10,10,6,10,10,9.2,1,8,10,3,1,1,4.6,1,10,10,0,10,10,9,6.83333333333333,1,1,1,1,1,1,1,1,0,0,0,9,1,9,4,3.16666666666667,9,2,0,3,9,9,4.6,0,9,9,-1,9,9,8,5.83333333333333,4.53333333333333,7,0.125,0,3,0.6,0.4,0.5,0,0,0,-2,2,0,-1,0,10 cents,100 minutes,24 days,5,11,It's impossible to tell,47,Wednesday,D,E,E,A,C,Female,1,College Diploma/Certificate,C_Ug,28,25 - 31,Canadian,Female,1,,,1,,1,,2,1,8,6,3,4,5,7,3,6,7,1,4,2,5,7,3,4,2,8,1,6,5,1,4,3,8,5,6,7,2,4,2,1,5,6,7,3,7,4,3,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,3,9,6,1,4,2,4,3,1,2,-2,0,1 +304,141.195.114.182,R_3gMoZSXRne7KTOp,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,4,5,5,6,5,8,4,6,6,4,5,2,4,6,6,6,6,6,5,4,6,5,2,5,5,2,4,7,2,5,2,1,4,7,8,7,4,3,6,4,15-19,2,4,5,5,6,5,8,4,5.5,6,5,2,5,5,2,4,4.16666666666667,6,6,4,5,2,4,4.6,7,2,5,2,1,4,3.4,6,6,6,6,6,5,4,5.83333333333333,7,8,7,4,3,6,4,5.83333333333333,-2,0,3,1,0,6,0,1.33333333333333,-1,4,-1,3,1,0,1.2,-1,-2,-1,2,3,-1,0,0,0.844444444444444,0,1.25,2,1,0.8,1,0.9,0,2,2,-2,0,-1,-1,2,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Saturday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,35,32 - 38,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,7,3,4,1,1,5,3,7,2,4,6,5,7,8,6,3,2,4,1,1,5,8,6,3,7,4,2,1,4,3,5,2,6,7,6,2,4,8,5,7,3,1,2,6,8,7,4,3,9,1,5,3,2,4,1,2,0,1,1 +305,136.56.17.73,R_1Q9JAJe8NMuhzLb,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20+,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0.2,0.6,2,2,2,2,2,2,2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,C,B,E,B,Male,0,High School (or equivalent),HS_TS,30,25 - 31,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,2,6,7,1,1,5,3,7,2,4,6,7,5,8,3,2,6,4,1,1,4,8,5,3,7,6,2,1,3,6,4,2,5,7,7,5,6,8,3,4,2,1,2,9,8,5,6,7,4,1,3,3,2,4,1,-2,-2,-2,-2 +306,173.53.8.215,R_7z9UwnuJx3MYBTH,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,8,7,6,6,6,7,7,7,8,6,6,7,7,7,6,8,7,5,7,6,8,7,7,7,5,8,8,7,7,5,8,8,8,6,8,9,7,7,8,5,10-14,2,8,7,6,6,6,7,7,6.66666666666667,8,7,7,7,5,8,8,7,7,8,6,6,7,7,6.8,7,7,5,8,8,8,7,7,6,8,7,5,7,6,6.66666666666667,6,8,9,7,7,8,5,7.5,0,0,-1,-1,1,-1,-1,-0.333333333333333,0,1,1,-2,-1,-1,-0.2,1,-2,-1,0,-2,-1,1,-0.833333333333333,-0.455555555555556,-0.333333333333333,0.25,3,0,1,0.2,0.6,1,-1,1,1,0,0,0,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,C,E,E,Male,0,University - Undergraduate,C_Ug,35,32 - 38,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,4,6,7,5,1,1,2,3,7,5,4,6,5,2,8,4,7,6,3,1,1,5,8,7,3,2,4,6,1,2,6,5,4,3,7,3,6,4,8,2,7,5,1,2,5,7,3,4,9,6,1,8,2,4,3,1,-1,0,0,0 +307,69.247.78.11,R_1S3r1eJdneTbuIk,self,02PVF,future,4,7,3,5,2,6,3,7,1,1,5,4,6,4,6,5,5,4,6,4,8,4,2,7,4,6,6,0,0,0,0,0,10,5,10,2,3,6,10,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,3,5,2,6,3,4.5,8,4,2,7,4,6,6,5.16666666666667,7,1,1,5,4,6,3.6,0,0,0,0,0,10,0,4,6,5,5,4,6,4,5,5,10,2,3,6,10,7,6,-4,3,1,-2,-2,0,-3,-0.666666666666667,7,1,1,5,4,-4,3.6,-1,-4,3,2,-2,-4,-3,-1,0.644444444444444,-3.33333333333333,-0.125,0,1,0,0.2,0.1,0,-1,0,1,-1,0,0,0,20 cents,100 minutes,15 days,3,10,Richard is as tall as Matt,53,Wednesday,C,E,D,C,B,Female,1,University - Undergraduate,C_Ug,45,39 - 45,American,Female,1,,,1,,,1,3,1,8,6,2,7,4,5,5,3,7,1,2,4,6,5,6,7,2,8,1,3,4,1,2,4,8,3,6,5,7,4,2,1,6,3,7,5,2,7,3,6,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,8,2,7,4,6,1,5,3,2,4,1,-1,1,0,0 +308,172.56.218.22,R_32PEWYFOD00QTch,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like somewhat,3,7,3,4,8,4,4,4,5,5,4,5,5,6,5,4,5,4,4,3,2,5,5,4,6,6,6,3,3,4,4,6,6,6,4,6,3,4,5,3,5-9,1,3,7,3,4,8,4,4,4.83333333333333,2,5,5,4,6,6,6,4.66666666666667,4,5,5,4,5,5,4.6,3,3,4,4,6,6,4,6,5,4,5,4,4,3,4.66666666666667,6,4,6,3,4,5,3,4.66666666666667,1,2,-2,0,2,-2,-2,0.166666666666667,1,2,1,0,-1,-1,0.6,0,1,-2,2,0,-1,0,0,0.255555555555556,-1,-0.375,3,0,1,0,0.5,0,0,-1,0,0,1,1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,F,A,E,F,B,Female,1,University - Undergraduate,C_Ug,30,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,3,4,2,5,1,1,4,6,7,3,5,2,4,3,8,7,6,5,2,1,1,7,8,6,5,3,4,2,1,6,2,5,3,4,7,4,2,7,8,6,5,3,1,7,3,2,8,5,6,9,1,4,4,2,3,1,0,0,-1,-1 +309,172.56.219.159,R_709Y7OoNjuYvctj,self,01FPV,past,2,3,5,4,5,5,3,4,5,7,3,3,3,4,3,5,4,6,3,5,4,5,3,5,3,3,4,4,3,3,4,5,1,2,5,3,2,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,5,5,3,4,4,5,3,5,3,3,4,3.83333333333333,4,5,7,3,3,3,4.4,4,3,3,4,5,1,3.8,4,3,5,4,6,3,5,4.16666666666667,2,5,3,2,5,4,5,3.5,-2,-2,2,-1,2,2,-1,0.166666666666667,0,2,4,-1,-2,2,0.6,2,-2,2,2,1,-1,0,0.666666666666667,0.477777777777778,0.333333333333333,0.25,2,1,1,0,0.5,1,0,1,-1,1,-1,1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,D,A,D,C,Female,1,University - Undergraduate,C_Ug,30,25 - 31,American,Female,1,,1,,,1,,3,1,8,5,6,7,4,2,3,5,7,1,2,6,4,6,5,7,3,8,1,2,4,1,7,4,8,5,2,6,3,4,3,1,5,2,7,6,5,6,2,4,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,8,9,3,4,1,7,3,4,2,1,1,-1,1,-1 +310,172.56.221.79,R_6f3yApTGYoT6RKV,self,01FPV,future,3,4,5,2,4,4,4,3,4,5,3,3,3,3,4,4,3,7,5,4,6,5,4,4,3,6,6,5,4,4,3,6,7,4,4,4,3,5,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,2,4,4,4,3.66666666666667,6,5,4,4,3,6,6,4.66666666666667,3,4,5,3,3,3,3.6,5,4,4,3,6,7,4.4,3,4,4,3,7,5,4,4.33333333333333,4,4,4,3,5,3,4,3.83333333333333,-3,-1,1,-2,1,-2,-2,-1,-2,0,1,0,-3,-4,-0.8,-1,0,0,0,2,2,0,0.5,-0.433333333333333,-2,-0.25,2,1,1,0.4,0.7,2,-1,1,1,1,1,1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,B,D,B,A,Female,1,University - Undergraduate,C_Ug,30,25 - 31,American,Female,1,,1,,,,1,2,1,8,5,4,7,6,3,4,6,7,1,2,3,5,6,4,5,3,8,1,7,2,1,6,3,8,5,7,2,4,6,5,1,2,4,7,3,6,5,4,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,4,5,7,3,9,1,8,3,4,2,1,-1,-1,-1,-1 +311,172.56.223.26,R_3CpiXAB5fYeWHdh,self,03VFP,past,8,5,2,5,3,4,5,3,4,6,3,5,6,6,4,7,4,3,2,4,2,3,5,5,4,6,6,5,2,6,3,7,4,4,7,5,2,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,5,2,5,3,4,5,4.5,2,3,5,5,4,6,6,4.16666666666667,3,4,6,3,5,6,4.2,5,2,6,3,7,4,4.6,6,4,7,4,3,2,4,4.33333333333333,4,7,5,2,4,5,4,4.5,6,2,-3,0,-1,-2,-1,0.333333333333333,-2,2,0,0,-2,2,-0.4,2,-3,2,2,-1,-3,0,-0.166666666666667,-0.0777777777777778,0.333333333333333,-0.25,2,1,1,0,0.5,-1,1,-1,1,0,0,0,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,C,C,D,B,Female,1,University - Undergraduate,C_Ug,30,25 - 31,American,Female,1,,,,1,1,,2,1,8,3,6,5,4,7,6,2,7,1,5,3,4,7,2,6,5,8,1,4,3,1,4,5,8,6,3,2,7,5,6,1,2,4,7,3,5,3,6,7,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,3,2,9,6,8,1,5,3,2,4,1,-1,0,0,0 +312,142.180.11.168,R_3IQv0uWBTl9SILW,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,1,1,8,1,1,3,2,5,2,2,8,3,2,1,9,2,2,2,2,9,1,1,9,1,8,8,4,1,6,1,10,2,1,4,10,1,1,1,1,20+,2,8,1,1,8,1,1,3,3.33333333333333,9,1,1,9,1,8,8,4.83333333333333,2,5,2,2,8,3,3.8,4,1,6,1,10,2,4.4,2,1,9,2,2,2,2,3,1,4,10,1,1,1,1,3,-1,0,0,-1,0,-7,-5,-1.5,-2,4,-4,1,-2,1,-0.6,1,-3,-1,1,1,1,1,0,-0.7,-1,1.75,0,3,1,0.4,0.7,2,2,2,-2,-2,-1,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,E,B,F,Male,0,University - Undergraduate,C_Ug,52,46 - 52,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,6,5,4,2,1,1,6,5,7,3,4,2,2,3,8,6,5,4,7,1,1,6,8,7,2,3,4,5,1,3,6,2,5,4,7,5,7,6,8,4,2,3,1,5,9,4,6,3,8,7,1,2,2,4,3,1,2,2,1,2 +313,184.53.32.39,R_32A78lr0O8VQsyb,self,02PVF,future,5,5,5,7,5,6,4,4,5,4,6,7,6,7,5,4,5,4,5,6,5,5,4,4,5,7,5,6,4,5,6,7,5,4,4,6,6,6,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,7,5,6,4,5.5,5,5,4,4,5,7,5,5,4,5,4,6,7,6,5.2,6,4,5,6,7,5,5.6,7,5,4,5,4,5,6,5,4,4,6,6,6,5,5,5.16666666666667,0,0,1,3,0,-1,-1,0.5,-2,1,-1,0,0,1,-0.4,3,1,-2,-1,-2,0,1,-0.166666666666667,-0.0222222222222222,0.333333333333333,-0.375,0,3,0.4,0.4,0.4,0,0,0,0,1,1,0,-1,10 cents,100 minutes,24 days,3,10,Richard is taller than Matt,47,Sunday,A,E,B,E,E,Female,1,High School (or equivalent),HS_TS,52,46 - 52,American,Female,1,,,1,,,1,5,1,8,2,6,3,7,4,3,5,7,1,6,2,4,3,6,5,2,8,1,4,7,1,7,3,8,2,5,6,4,6,3,1,2,5,7,4,6,5,7,2,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,3,5,8,2,7,1,4,3,2,4,1,0,-1,-1,0 +314,71.224.116.119,R_11FdVEsioL72N8k,self,02PVF,future,1,1,1,2,2,3,1,3,2,4,3,3,3,2,4,3,3,3,3,3,2,4,4,3,5,4,3,3,2,3,1,2,3,3,3,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,3,1,1.66666666666667,2,4,4,3,5,4,3,3.66666666666667,3,2,4,3,3,3,3,3,2,3,1,2,3,2.2,2,4,3,3,3,3,3,3,3,3,3,2,1,2,1,2.33333333333333,-1,-3,-3,-1,-3,-1,-2,-2,0,0,1,2,1,0,0.8,-1,1,0,1,2,1,2,0.666666666666667,-0.177777777777778,0,0.75,0,3,0.6,0.2,0.4,0,1,2,-2,0,0,-1,0,10 cents,100 minutes,24 days,5,10,It's impossible to tell,57,Sunday,D,D,D,E,B,Female,1,University - Undergraduate,C_Ug,37,32 - 38,American,Female,1,,,1,,,1,3,1,8,4,5,6,2,7,6,3,7,1,5,4,2,2,6,5,3,8,1,4,7,1,4,6,8,2,3,5,7,6,2,1,3,4,7,5,6,2,3,5,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,2,3,9,5,4,1,6,3,2,4,1,2,0,0,1 +315,65.195.39.181,R_61bc5RuPWkEFeoB,self,01FPV,future,10,8,8,8,10,9,10,10,8,8,6,8,10,8,6,6,3,6,5,8,8,9,5,8,9,8,8,5,8,8,9,9,8,7,8,9,7,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,8,8,8,10,9,10,8.83333333333333,8,9,5,8,9,8,8,7.83333333333333,10,8,8,6,8,10,8,5,8,8,9,9,8,7.8,8,6,6,3,6,5,8,5.66666666666667,7,8,9,7,9,9,8,8.16666666666667,2,-1,3,0,1,1,2,1,5,0,0,-3,-1,2,0.2,1,-2,-3,-4,-3,-4,0,-2.5,-0.433333333333333,1.33333333333333,-0.25,1,1,0.4,0,0.2,0,1,2,2,1,1,2,1,10 cents,5 minutes,36 days,5,10,It's impossible to tell,39,Monday,E,B,D,D,C,Female,1,University - Undergraduate,C_Ug,24,18 - 24,American,Female,1,,1,,,,1,2,1,8,5,3,7,4,6,2,6,7,1,3,4,5,2,7,3,4,8,1,5,6,1,4,3,8,7,5,6,2,2,4,1,6,3,7,5,3,6,5,4,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,2,9,4,6,7,1,5,4,3,2,1,-2,-1,-1,-2 +316,108.208.180.180,R_3gS5mQCnsB8yIzn,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",19,Like somewhat,1,1,2,2,2,1,2,1,2,2,1,1,2,2,2,1,1,1,1,2,1,1,2,1,2,1,1,1,1,1,1,1,1,2,3,2,1,2,1,2,15-19,1,1,1,2,2,2,1,2,1.5,1,1,2,1,2,1,1,1.33333333333333,1,2,2,1,1,2,1.4,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1.33333333333333,2,3,2,1,2,1,2,1.83333333333333,0,0,0,1,0,0,1,0.166666666666667,0,1,1,0,0,1,0.4,0,-1,-1,0,-1,0,0,-0.5,0.0222222222222222,0.666666666666667,0.75,0,3,0.6,0.4,0.5,2,2,2,0,0,1,-1,0,10 cents,100 minutes,24 days,5,10,Richard is taller than Matt,47,Sunday,D,E,A,F,A,Male,0,High School (or equivalent),HS_TS,37,32 - 38,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,3,2,6,7,1,1,2,3,7,5,6,4,3,7,8,2,4,5,6,1,1,6,8,4,3,5,2,7,1,5,6,3,2,4,7,2,3,7,8,6,4,5,1,7,9,4,2,3,8,5,1,6,4,2,3,1,0,0,-1,1 +317,98.223.153.26,R_1G9DuRCAArltHIR,self,01FPV,past,3,4,1,4,2,0,3,1,3,1,3,6,5,3,5,3,0,2,4,2,5,0,3,6,6,5,5,4,3,5,2,2,4,1,6,4,0,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,1,4,2,0,3,2.33333333333333,5,0,3,6,6,5,5,4.16666666666667,1,3,1,3,6,5,2.8,4,3,5,2,2,4,3.2,3,5,3,0,2,4,2,2.83333333333333,1,6,4,0,4,3,3,3,-2,4,-2,-2,-4,-5,-2,-1.83333333333333,-3,0,-4,1,4,1,-0.4,2,-1,-1,0,-2,1,-1,-0.166666666666667,-0.8,-0.666666666666667,0.625,1,1,0.8,1,0.9,0,1,2,-2,1,1,-2,0,5 cents,25 minutes,24 days,5,8,It's impossible to tell,35,Sunday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,50,46 - 52,American,Female,1,,1,,,1,,5,1,8,2,7,6,3,4,4,3,7,1,6,2,5,2,4,5,7,8,1,6,3,1,2,4,8,3,7,5,6,6,2,1,5,3,7,4,5,3,7,2,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,5,3,8,6,2,1,4,4,2,3,1,2,-1,-1,2 +318,108.167.101.162,R_5uEWkkzDq4xRvmk,self,02PVF,future,7,6,6,7,5,5,9,6,6,5,7,6,7,10,7,9,9,8,8,7,6,5,5,5,6,6,5,5,5,5,5,5,5,6,6,5,5,5,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,7,5,5,9,6,6,5,5,5,6,6,5,5.5,6,6,5,7,6,7,6,5,5,5,5,5,5,5,10,7,9,9,8,8,7,8.5,6,6,5,5,5,6,5,5.5,1,1,1,2,-1,-1,4,0.5,1,1,0,2,1,2,1,4,1,4,4,3,2,2,3,1.5,2.66666666666667,0,0,2,0,0,0,1,1,1,1,1,1,1,1,10 cents,25 minutes,24 days,4,9,Richard is shorter than Matt,35,Tuesday,F,F,D,F,A,Male,0,Trade School,HS_TS,63,60 - 66,American,Male,1,,,1,,,1,2,1,8,5,4,6,3,7,3,6,7,1,4,2,5,7,4,6,3,8,1,5,2,1,4,6,8,7,3,5,2,4,3,1,5,6,7,2,3,7,4,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,4,3,7,9,5,1,8,4,3,2,1,-1,-1,-1,-1 +319,73.252.198.119,R_6j6tmjVssmAVy6w,self,03VFP,past,6,3,7,5,5,6,5,3,4,4,5,3,5,3,4,6,4,4,4,5,4,7,5,4,4,4,5,3,5,6,4,5,4,5,4,6,4,4,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,7,5,5,6,5,5.33333333333333,4,7,5,4,4,4,5,4.66666666666667,3,4,4,5,3,5,3.8,3,5,6,4,5,4,4.6,3,4,6,4,4,4,5,4.16666666666667,5,4,6,4,4,5,5,4.66666666666667,2,-4,2,1,1,2,0,0.666666666666667,0,-1,-2,1,-2,1,-0.8,-2,0,0,0,0,-1,0,-0.5,-0.211111111111111,0.333333333333333,0,3,0,0.8,0.6,0.7,1,1,0,1,0,1,1,1,5 cents,5 minutes,47 days,5,8,Zach is shorter than Matt,47,Sunday,D,E,C,C,D,Male,0,University - Undergraduate,C_Ug,58,53 - 59,American,Male,1,,,,1,1,,6,1,8,2,5,4,3,7,6,2,7,1,4,5,3,2,4,3,5,8,1,7,6,1,4,7,8,6,3,5,2,6,3,1,2,5,7,4,2,3,5,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,8,2,9,3,1,4,2,4,3,1,-1,0,-1,-1 +320,24.89.219.179,R_3V7P3COI1Uq6gAk,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,4,4,5,6,4,5,3,5,6,7,7,5,5,3,5,3,4,5,4,4,4,5,4,3,4,4,3,3,3,4,4,5,4,4,4,4,5,5,4,20+,2,5,4,4,5,6,4,5,4.66666666666667,4,4,5,4,3,4,4,4,3,5,6,7,7,5,5.6,3,3,3,4,4,5,3.4,5,3,5,3,4,5,4,4.16666666666667,4,4,4,4,5,5,4,4.33333333333333,1,0,-1,1,3,0,1,0.666666666666667,0,2,3,3,3,0,2.2,1,-1,1,-1,-1,0,0,-0.166666666666667,0.9,0.333333333333333,0.625,0,3,0.4,0.2,0.3,1,1,0,-1,0,0,-1,1,10 cents,100 minutes,24 days,3,8,It's impossible to tell,57,Tuesday,E,C,B,C,B,Female,1,High School (or equivalent),HS_TS,25,25 - 31,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,2,6,5,1,1,4,5,7,2,3,6,4,7,8,3,6,2,5,1,1,6,8,3,4,2,5,7,1,4,5,3,2,6,7,2,4,6,8,5,3,7,1,9,4,8,6,3,5,2,1,7,4,3,2,1,1,0,0,1 +321,198.53.143.192,R_6SdcBmiFRim89bz,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,5,1,1,1,1,2,1,0,1,1,0,0,1,0,2,1,0,1,1,1,1,1,1,1,0,0,1,0,2,1,0,1,1,0,1,0,0,20+,2,2,1,1,5,1,1,1,1.83333333333333,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,1,0,2,1,0.6,0,0,1,0,2,1,0,0.666666666666667,0,1,1,0,1,0,0,0.5,1,0,0,4,0,0,0,0.833333333333333,1,2,0,0,-1,0,0.4,0,-1,0,0,1,1,0,0.166666666666667,0.466666666666667,0,1.25,3,0,1,1,1,1,1,1,-2,-1,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,48,46 - 52,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,6,7,5,1,1,4,2,7,5,6,3,3,5,8,6,4,7,2,1,1,7,8,6,4,3,5,2,1,5,6,2,3,4,7,7,6,5,8,2,4,3,1,8,7,9,5,3,6,2,1,4,3,4,2,1,2,1,1,2 +322,70.79.232.16,R_3uAmPf7mLGgXM8V,self,01FPV,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,10,0,0,10,10,10,6,6.66666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,0,0,-10,-10,-10,-6,-6.66666666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.22222222222222,-2,0.25,1,2,0.4,0.2,0.3,1,1,-1,-2,1,1,-2,-1,10 cents,100 minutes,47 days,5,12,It's impossible to tell,57,Tuesday,A,E,A,A,B,Male,0,College Diploma/Certificate,C_Ug,40,39 - 45,Canadian,Male,1,,1,,,,1,2,1,8,3,6,5,7,4,3,5,7,1,4,2,6,2,5,6,7,8,1,3,4,1,4,2,8,5,6,3,7,3,2,1,6,4,7,5,2,4,6,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,4,3,5,8,9,1,6,3,4,2,1,2,-1,-1,2 +323,63.88.218.239,R_1woWryLO8QUnr8f,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,3,3,4,4,9,6,7,7,3,4,6,3,5,2,9,7,5,2,7,4,6,5,3,5,4,6,4,6,8,7,5,7,4,5,5,6,6,5,4,5,5-9,2,3,3,4,4,9,6,7,4.83333333333333,6,5,3,5,4,6,4,4.83333333333333,7,3,4,6,3,5,4.6,6,8,7,5,7,4,6.6,2,9,7,5,2,7,4,5.33333333333333,5,5,6,6,5,4,5,5.16666666666667,-3,-2,1,-1,5,0,3,0,1,-5,-3,1,-4,1,-2,-3,4,1,-1,-3,3,-1,0.166666666666667,-0.611111111111111,1,-0.25,0,2,0,0.6,0.3,-1,1,0,0,1,2,-1,0,10 cents,25 minutes,24 days,4,10,Richard is shorter than Matt,44,Saturday,D,E,B,E,B,Male,0,University - Undergraduate,C_Ug,25,25 - 31,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,4,3,2,1,1,4,2,7,5,3,6,5,6,8,4,3,7,2,1,1,6,8,2,5,7,4,3,1,2,4,6,3,5,7,2,4,7,8,5,3,6,1,4,8,7,5,3,6,9,1,2,3,2,4,1,0,-1,-2,1 +324,172.56.65.102,R_1HfztLd76VyOgZr,self,01FPV,future,8,8,7,8,8,8,8,8,8,8,8,7,8,8,9,9,8,8,8,8,7,6,7,7,7,8,7,8,8,8,8,7,8,10,9,9,9,9,8,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,7,8,8,8,8,7.83333333333333,7,6,7,7,7,8,7,7,8,8,8,8,7,8,7.8,8,8,8,8,7,8,7.8,8,9,9,8,8,8,8,8.33333333333333,10,9,9,9,9,8,9,9,1,2,0,1,1,0,1,0.833333333333333,0,0,0,0,0,0,0,-2,0,0,-1,-1,0,-1,-0.666666666666667,0.0555555555555556,0,0.375,1,2,0.2,0.2,0.2,1,1,1,-1,2,1,-1,1,10 cents,5 minutes,24 days,3,8,Richard is as tall as Matt,53,Monday,D,D,A,D,E,Male,0,University - Graduate (Masters),grad_prof,38,32 - 38,American,Male,1,,1,,,,1,2,1,8,5,7,4,6,3,6,2,7,1,3,5,4,7,5,4,6,8,1,3,2,1,5,6,8,3,4,7,2,4,3,1,2,6,7,5,3,7,2,4,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,3,9,8,5,2,1,7,4,2,3,1,1,-2,-1,1 +325,108.170.135.174,R_7dQFYvRuAnneh9h,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5-9,2,0,1,1,0,0,0,0,0.333333333333333,0,0,1,1,0,0,0,0.333333333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.166666666666667,0,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-0.166666666666667,-0.0555555555555556,0,1.5,1,1,1,0.8,0.9,2,2,1,-2,0,-1,-2,2,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,D,Female,1,University - Undergraduate,C_Ug,36,32 - 38,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,2,7,6,1,1,5,2,7,6,4,3,7,6,8,3,2,4,5,1,1,5,8,7,3,2,4,6,1,4,3,6,2,5,7,2,4,5,8,6,7,3,1,6,9,7,4,8,5,2,1,3,3,2,4,1,2,0,1,2 +326,99.248.33.202,R_7ncp03FnOvuth64,self,02PVF,future,2,1,0,6,2,1,2,2,2,0,3,0,2,0,0,0,2,1,3,2,4,1,3,2,2,7,2,3,2,5,2,6,3,0,0,2,1,2,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,0,6,2,1,2,2,4,1,3,2,2,7,2,3.16666666666667,2,2,0,3,0,2,1.4,3,2,5,2,6,3,3.6,0,0,0,2,1,3,2,1,0,0,2,1,2,7,2,2,-2,0,-3,4,0,-6,0,-1.16666666666667,-1,0,-5,1,-6,-1,-2.2,0,0,-2,1,-1,-4,0,-1,-1.45555555555556,-0.333333333333333,1.125,2,1,1,0.6,0.8,1,1,2,-2,0,-1,-2,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,F,Male,0,University - Graduate (Masters),grad_prof,37,32 - 38,Canadian,Male,1,,,1,,,1,3,1,8,6,7,5,4,2,3,5,7,1,2,4,6,7,4,5,3,8,1,2,6,1,5,6,8,4,2,7,3,5,4,1,3,6,7,2,3,5,2,7,4,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,5,7,9,8,1,4,3,2,4,1,2,0,1,2 +327,75.36.104.66,R_3IxLjBW7fUNtiZr,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,10-14,2,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0.666666666666667,0,0,0,0,3,0,0.6,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,-1,-1,0,0,-1,0,-0.666666666666667,-1,-1,-1,-1,2,-1,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-0.688888888888889,-0.666666666666667,1,0,3,0.8,0.6,0.7,1,1,1,-2,0,-1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,D,C,F,B,D,Female,1,High School (or equivalent),HS_TS,24,18 - 24,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,5,6,7,1,1,3,2,7,6,4,5,4,2,8,3,5,7,6,1,1,3,8,7,2,4,5,6,1,3,4,2,6,5,7,3,2,7,8,6,5,4,1,6,7,9,4,3,2,8,1,5,2,3,4,1,2,0,1,1 +328,67.171.91.183,R_7CrdeQuO6RcT1rB,self,01FPV,future,4,3,4,3,4,3,4,4,3,3,2,4,3,4,3,2,5,2,3,4,6,4,3,5,4,6,1,5,3,3,3,3,5,4,8,2,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,4,3,4,3.5,6,4,3,5,4,6,1,4.66666666666667,4,3,3,2,4,3,3.2,5,3,3,3,3,5,3.4,4,3,2,5,2,3,4,3.16666666666667,4,8,2,3,3,3,3,3.83333333333333,-2,-1,1,-2,0,-3,3,-1.16666666666667,-1,0,0,-1,1,-2,-0.2,0,-5,0,2,-1,0,1,-0.666666666666667,-0.677777777777778,0.666666666666667,0.125,0,3,0,0.4,0.2,0,1,-1,-2,1,0,0,0,10 cents,100 minutes,24 days,3,11,Richard is shorter than Matt,57,Monday,D,A,A,D,D,Female,1,High School (or equivalent),HS_TS,51,46 - 52,American,Female,1,,1,,,,1,2,1,8,7,5,3,6,4,4,5,7,1,3,6,2,3,7,6,5,8,1,2,4,1,6,5,8,3,2,7,4,5,3,1,6,2,7,4,5,7,6,3,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,8,5,2,6,4,1,7,3,2,4,1,2,-1,0,0 +329,92.113.191.159,R_8p7Oe2lgMGfiWqZ,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,1,8,2,9,4,4,4,8,5,7,5,6,4,4,5,0,5,3,5,5,3,3,5,1,4,5,4,5,5,5,4,5,6,8,4,6,5,5,5,10-14,2,2,1,8,2,9,4,4,4.33333333333333,5,3,3,5,1,4,5,3.5,4,8,5,7,5,6,5.8,4,5,5,5,4,5,4.6,4,4,5,0,5,3,5,3.5,6,8,4,6,5,5,5,5.66666666666667,-3,-2,5,-3,8,0,-1,0.833333333333333,0,3,0,2,1,1,1.2,-2,-4,1,-6,0,-2,0,-2.16666666666667,-0.0444444444444444,0,1.125,2,1,0.8,0.4,0.6,1,1,1,-2,0,-1,-1,2,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,D,F,A,B,A,Male,0,Professional Degree (ex. JD/MD),grad_prof,30,25 - 31,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,6,2,4,1,1,4,6,7,2,3,5,3,4,8,7,6,5,2,1,1,4,8,3,7,5,2,6,1,6,3,5,2,4,7,6,7,5,8,2,4,3,1,7,6,3,2,5,8,9,1,4,4,2,3,1,2,0,1,1 +330,174.167.61.151,R_1rqCqgHbXs7kZph,self,02PVF,past,5,6,4,3,4,6,5,6,3,1,4,1,4,6,7,6,5,2,4,6,4,2,4,4,4,3,2,4,3,6,3,5,5,3,3,2,3,6,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,3,4,6,5,4.66666666666667,4,2,4,4,4,3,2,3.5,6,3,1,4,1,4,3,4,3,6,3,5,5,4.2,6,7,6,5,2,4,6,5,3,3,2,3,6,5,3,3.66666666666667,1,4,0,-1,0,3,3,1.16666666666667,2,0,-5,1,-4,-1,-1.2,3,4,4,2,-4,-1,3,1.33333333333333,0.433333333333333,1.66666666666667,0.625,0,3,0.8,1,0.9,1,1,1,-2,1,-1,0,0,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,43,39 - 45,American,Male,1,,,1,,1,,4,1,8,2,5,6,7,3,3,2,7,1,5,4,6,7,5,6,3,8,1,4,2,1,7,4,8,3,2,5,6,5,4,1,6,2,7,3,3,2,4,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,6,7,8,4,1,9,4,2,3,1,2,-1,1,0 +331,172.56.101.4,R_56XtSDip0XLrAw9,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,4,2,1,2,1,2,1,0,0,0,2,1,5,2,3,0,0,1,0,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,20+,2,0,4,2,1,2,1,2,1.66666666666667,2,2,2,2,2,2,2,2,1,0,0,0,2,1,0.6,2,2,2,2,2,2,2,5,2,3,0,0,1,0,1.83333333333333,3,2,2,1,0,1,1,1.5,-2,2,0,-1,0,-1,0,-0.333333333333333,-1,-2,-2,-2,0,-1,-1.4,2,0,1,-1,0,0,-1,0.333333333333333,-0.466666666666667,-0.666666666666667,0,0,3,0.6,0.4,0.5,0,0,0,0,0,0,0,0,10 cents,100 minutes,24 days,2,8,It's impossible to tell,47,Monday,D,C,A,B,F,Male,0,College Diploma/Certificate,C_Ug,49,46 - 52,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,2,4,7,3,1,1,3,4,7,5,6,2,4,7,8,5,3,2,6,1,1,7,8,5,6,4,3,2,1,5,4,3,6,2,7,7,3,2,8,4,5,6,1,3,2,8,5,9,4,6,1,7,4,3,2,1,0,0,0,0 +332,70.75.193.94,R_3MyZwpxbLCoNFbn,self,01FPV,past,7,1,1,10,9,0,1,2,8,2,7,7,3,4,5,2,10,6,1,7,3,1,4,5,3,7,5,3,4,8,1,3,2,5,2,2,0,5,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1,1,10,9,0,1,4.66666666666667,3,1,4,5,3,7,5,3.83333333333333,2,8,2,7,7,3,5.2,3,4,8,1,3,2,3.8,4,5,2,10,6,1,7,4.66666666666667,5,2,2,0,5,2,3,2.66666666666667,4,0,-3,5,6,-7,-4,0.833333333333333,-1,4,-6,6,4,1,1.4,-1,3,0,10,1,-1,4,2,1.41111111111111,0.333333333333333,2,2,1,1,1,1,2,2,2,-2,-2,-2,-2,2,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,College Diploma/Certificate,C_Ug,45,39 - 45,Canadian,Male,1,,1,,,1,,6,1,8,7,4,2,5,3,4,2,7,1,5,6,3,4,5,3,2,8,1,6,7,1,2,5,8,6,4,7,3,5,3,1,2,4,7,6,6,7,2,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,9,2,8,7,1,5,3,2,4,1,2,2,2,2 +333,107.171.135.6,R_5K7JbjXDGJQtsLx,self,01FPV,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,3,0,1,0,0.5,0,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,A,A,B,Female,1,University - Undergraduate,C_Ug,48,46 - 52,Canadian,Female,1,,1,,,,1,2,1,8,7,3,5,4,6,4,3,7,1,2,6,5,2,6,3,7,8,1,5,4,1,3,6,8,5,2,4,7,4,6,1,5,2,7,3,4,7,5,3,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,2,3,4,8,5,1,9,4,2,3,1,2,0,2,2 +334,76.88.241.6,R_5s4C4u4pdkJx28U,self,02PVF,past,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,3,0.8,0.4,0.6,1,0,1,-2,1,0,-1,0,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,C,B,C,E,Male,0,University - Graduate (Masters),grad_prof,62,60 - 66,American,Male,1,,,1,,1,,6,1,8,3,7,5,4,2,3,5,7,1,6,2,4,5,4,3,6,8,1,7,2,1,7,6,8,4,2,5,3,3,4,1,2,5,7,6,5,4,7,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,4,9,2,5,3,1,6,2,4,3,1,2,-1,0,1 +335,69.142.96.12,R_5Fb0rPfsNUlYJQP,self,03VFP,past,1,1,1,8,1,1,2,1,5,2,2,9,8,7,3,6,10,8,8,8,2,2,1,4,4,5,5,1,6,8,6,4,6,2,2,1,8,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,8,1,1,2,2.16666666666667,2,2,1,4,4,5,5,3,1,5,2,2,9,8,3.8,1,6,8,6,4,6,5,7,3,6,10,8,8,8,7,2,2,1,8,1,2,2,2.66666666666667,-1,-1,0,4,-3,-4,-3,-0.833333333333333,0,-1,-6,-4,5,2,-1.2,5,1,5,2,7,6,6,4.33333333333333,0.766666666666667,1.66666666666667,1,0,3,0.6,0.4,0.5,1,2,2,-1,-1,1,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,44,Wednesday,A,E,C,A,D,Male,0,High School (or equivalent),HS_TS,45,39 - 45,American,Male,1,,,,1,1,,7,1,8,2,3,4,5,6,5,2,7,1,4,3,6,2,3,4,6,8,1,7,5,1,2,3,8,5,4,7,6,5,6,1,3,4,7,2,4,6,2,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,7,4,3,9,1,8,3,2,4,1,1,1,-1,1 +336,174.244.145.141,R_7cjgCcG3JLxcq1H,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,6,6,6,6,6,6,7,6,6,6,6,6,6,3,4,5,4,6,6,6,6,7,4,6,5,5,7,6,5,5,6,6,6,6,6,6,6,5,6,6,5-9,1,6,6,6,6,6,6,7,6,6,7,4,6,5,5,7,5.5,6,6,6,6,6,6,6,6,5,5,6,6,6,5.6,3,4,5,4,6,6,6,4.66666666666667,6,6,6,6,5,6,6,5.83333333333333,0,-1,2,0,1,1,0,0.5,0,1,1,0,0,0,0.4,-3,-2,-1,-2,1,0,0,-1.16666666666667,-0.0888888888888889,0,0.25,0,3,0.2,0.4,0.3,0,1,0,-2,2,0,-1,0,10 cents,100 minutes,24 days,3,8,Richard is as tall as Matt,39,Monday,A,E,D,B,F,Female,1,University - Undergraduate,C_Ug,41,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,5,6,3,2,1,1,3,2,7,6,5,4,4,3,8,5,7,2,6,1,1,4,8,5,6,7,3,2,1,2,3,5,4,6,7,4,7,3,8,6,5,2,1,5,9,2,6,4,3,8,1,7,4,3,2,1,2,-2,0,1 +337,64.253.87.161,R_7r5C4iFwSIHglBn,self,03VFP,future,5,3,5,5,3,5,5,10,10,5,8,2,7,10,10,8,7,9,10,9,5,3,2,5,4,10,5,10,10,5,3,1,5,10,7,10,5,7,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,3,5,5,4.33333333333333,5,3,2,5,4,10,5,4.83333333333333,10,10,5,8,2,7,7,10,10,5,3,1,5,5.8,10,10,8,7,9,10,9,9,10,7,10,5,7,5,10,7.33333333333333,0,0,3,0,-1,-5,0,-0.5,0,0,0,5,1,2,1.2,0,3,-2,2,2,5,-1,1.66666666666667,0.788888888888889,0.333333333333333,0.375,1,2,0.6,0.2,0.4,-1,0,1,-2,2,-2,0,1,10 cents,5 minutes,24 days,6,8,Richard is as tall as Matt,47,Sunday,A,C,B,D,B,Female,1,University - Undergraduate,C_Ug,27,25 - 31,American,Female,1,,,,1,,1,4,1,8,6,7,3,2,5,3,4,7,1,6,2,5,4,6,5,7,8,1,3,2,1,4,5,8,6,7,3,2,5,3,1,6,4,7,2,2,7,6,5,3,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,9,6,7,2,5,1,4,4,3,2,1,2,-2,2,0 +338,192.204.50.52,R_77IR8u37y0ytZia,self,02PVF,future,6,5,4,3,5,3,7,4,5,7,6,7,6,4,5,7,6,6,5,3,6,8,4,7,5,7,6,6,5,7,6,9,4,6,5,6,7,8,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,4,3,5,3,7,4.33333333333333,6,8,4,7,5,7,6,6.16666666666667,4,5,7,6,7,6,5.8,6,5,7,6,9,4,6.6,4,5,7,6,6,5,3,5.5,6,5,6,7,8,6,4,6.33333333333333,0,-3,0,-4,0,-4,1,-1.83333333333333,-2,0,0,0,-2,2,-0.8,-2,0,1,-1,-2,-1,-1,-0.833333333333333,-1.15555555555556,0.666666666666667,0.125,1,2,0.8,0.4,0.6,1,1,0,1,1,0,0,1,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,B,C,D,B,D,Male,0,University - Graduate (Masters),grad_prof,43,39 - 45,American,Male,1,,,1,,,1,6,1,8,2,7,5,4,3,5,3,7,1,2,4,6,6,5,7,2,8,1,4,3,1,6,7,8,4,2,3,5,4,5,1,6,2,7,3,2,6,7,4,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,7,9,6,4,1,5,3,2,4,1,-1,-1,0,0 +339,68.145.28.151,R_1tkTwMNDx2wLAQw,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,4,4,6,4,3,5,4,6,6,6,7,4,4,7,6,6,6,6,6,4,4,3,4,6,2,6,4,6,6,6,6,6,6,4,6,4,4,3,3,4,15-19,2,4,4,6,4,3,5,4,4.33333333333333,4,3,4,6,2,6,4,4.16666666666667,6,6,6,7,4,4,5.8,6,6,6,6,6,6,6,7,6,6,6,6,6,4,6.16666666666667,4,6,4,4,3,3,4,4,0,1,2,-2,1,-1,0,0.166666666666667,0,0,0,1,-2,-2,-0.2,3,0,2,2,3,3,0,2.16666666666667,0.711111111111111,-0.666666666666667,0.875,2,1,0.6,0.8,0.7,1,1,1,-1,1,-1,-2,1,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Monday,D,E,B,E,D,Male,0,University - Undergraduate,C_Ug,37,32 - 38,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,7,2,4,3,1,1,2,4,7,5,3,6,6,4,8,5,2,3,7,1,1,2,8,6,5,4,7,3,1,6,4,3,2,5,7,5,3,4,8,7,2,6,1,3,7,6,9,8,2,4,1,5,2,4,3,1,1,-1,1,2 +340,216.232.177.75,R_69gMNQdMil4Ifkp,self,03VFP,past,3,3,6,4,3,10,4,9,5,10,10,8,3,5,5,10,8,10,10,6,9,3,7,3,8,10,10,8,8,10,3,6,6,4,3,10,10,0,10,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,4,3,10,4,4.83333333333333,9,3,7,3,8,10,10,6.66666666666667,9,5,10,10,8,3,8.4,8,8,10,3,6,6,7,5,5,10,8,10,10,6,8,4,3,10,10,0,10,4,6.16666666666667,-6,0,-1,1,-5,0,-6,-1.83333333333333,1,-3,0,7,2,-3,1.4,1,2,0,-2,10,0,2,1.83333333333333,0.466666666666667,-2.33333333333333,0.375,2,1,0.8,0.8,0.8,1,1,1,0,1,-1,1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,A,E,B,B,D,Male,0,University - Undergraduate,C_Ug,34,32 - 38,Canadian,Male,1,,,,1,1,,7,1,8,3,6,5,4,2,6,2,7,1,4,3,5,7,4,3,2,8,1,5,6,1,3,7,8,6,5,4,2,5,2,1,3,6,7,4,7,2,3,4,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,9,6,5,3,2,1,8,2,4,3,1,0,-1,1,-1 +341,184.53.0.73,R_1ujK126JYRnMr9D,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,3,0,1,4,1,1,0,4,0,0,0,1,2,2,2,1,1,2,1,0,2,0,0,3,0,1,0,0,0,0,0,0,1,1,4,1,0,0,0,20+,2,0,3,0,1,4,1,1,1.5,0,2,0,0,3,0,1,0.833333333333333,0,4,0,0,0,1,0.8,0,0,0,0,0,0,0,2,2,2,1,1,2,1,1.66666666666667,1,1,4,1,0,0,0,1.16666666666667,0,1,0,1,1,1,0,0.666666666666667,0,4,0,0,0,1,0.8,1,1,-2,0,1,2,1,0.5,0.655555555555556,0.666666666666667,0.5,3,0,0.4,0.4,0.4,1,1,-1,-2,-1,1,-1,0,5 cents,5 minutes,47 days,2,8,Richard is as tall as Matt,47,Tuesday,D,E,D,D,F,Female,1,High School (or equivalent),HS_TS,40,39 - 45,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,4,7,3,5,1,1,4,5,7,2,6,3,5,2,8,7,4,3,6,1,1,6,8,4,7,2,5,3,1,5,6,4,2,3,7,2,7,6,8,4,3,5,1,7,2,9,4,8,5,3,1,6,4,2,3,1,2,1,-1,1 +342,72.136.102.30,R_3gVHynVWVGZTk4N,self,02PVF,future,5,6,4,5,3,7,5,6,4,4,7,6,6,7,5,7,4,5,6,5,4,5,4,6,6,3,6,6,4,7,5,7,5,5,6,7,6,5,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,5,3,7,5,5,4,5,4,6,6,3,6,4.66666666666667,6,4,4,7,6,6,5.4,6,4,7,5,7,5,5.8,7,5,7,4,5,6,5,5.66666666666667,5,6,7,6,5,6,6,5.83333333333333,1,1,0,-1,-3,4,-1,0.333333333333333,0,0,-3,2,-1,1,-0.4,2,-1,0,-2,0,0,-1,-0.166666666666667,-0.0777777777777778,-0.333333333333333,0.125,0,2,0.4,0.4,0.4,1,0,0,-1,1,-1,1,0,10 cents,25 minutes,24 days,5,9,Richard is shorter than Matt,47,Wednesday,D,C,B,A,E,Male,0,High School (or equivalent),HS_TS,36,32 - 38,Both,Male,1,,,1,,,1,7,1,8,5,4,3,2,6,3,2,7,1,6,4,5,4,7,3,6,8,1,2,5,1,3,7,8,4,6,2,5,4,5,1,6,2,7,3,7,4,3,6,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,3,7,4,9,1,8,4,2,3,1,1,-1,1,-1 +343,38.240.45.211,R_5O78ZGBd3K0pGNz,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,1,1,1,1,1,2,2,5,1,2,0,0,1,3,2,3,0,3,2,2,2,0,5,0,1,1,0,5,0,0,0,0,0,0,5,5,1,1,5,0,5-9,2,1,1,1,1,1,2,2,1.16666666666667,2,0,5,0,1,1,0,1.5,5,1,2,0,0,1,1.6,5,0,0,0,0,0,1,3,2,3,0,3,2,2,2.16666666666667,0,5,5,1,1,5,0,2.83333333333333,-1,1,-4,1,0,1,2,-0.333333333333333,0,1,2,0,0,1,0.6,3,-3,-2,-1,2,-3,2,-0.666666666666667,-0.133333333333333,1.66666666666667,0,3,0,1,0.4,0.7,0,0,0,-2,1,0,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,B,D,C,Female,1,University - Undergraduate,C_Ug,26,25 - 31,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,4,5,3,6,1,1,2,5,7,3,6,4,6,2,8,4,3,5,7,1,1,3,8,7,5,2,6,4,1,4,3,2,6,5,7,5,4,7,8,2,3,6,1,4,7,8,6,9,2,5,1,3,2,3,4,1,2,-1,0,0 +344,70.54.87.197,R_6LMY1FDHF0KWnOW,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,5,2,3,3,4,5,3,4,5,3,2,4,2,4,2,3,4,2,4,3,2,2,3,3,4,3,2,2,3,3,3,4,3,2,4,2,2,1,4,10-14,2,4,5,2,3,3,4,5,3.5,3,2,2,3,3,4,3,2.83333333333333,3,4,5,3,2,4,3.4,2,2,3,3,3,4,2.6,2,4,2,3,4,2,4,2.83333333333333,3,2,4,2,2,1,4,2.33333333333333,1,3,0,0,0,0,2,0.666666666666667,1,2,2,0,-1,0,0.8,-1,2,-2,1,2,1,0,0.5,0.655555555555556,0.666666666666667,1.625,2,1,0.2,0.2,0.2,1,2,2,-1,-1,-2,-2,2,5 cents,100 minutes,47 days,4,7,Richard is shorter than Matt,39,Sunday,D,D,E,E,C,Male,0,University - Undergraduate,C_Ug,32,32 - 38,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,7,5,4,1,1,6,3,7,2,4,5,3,5,8,2,7,6,4,1,1,4,8,6,3,5,2,7,1,5,3,6,2,4,7,5,2,3,8,4,7,6,1,4,6,5,3,7,9,2,1,8,3,4,2,1,1,1,2,2 +345,99.234.39.103,R_7QWQdtB7jP4j62s,self,01FPV,past,5,2,5,2,1,3,3,5,1,3,4,4,5,5,4,5,4,6,6,2,3,4,2,5,3,2,4,4,2,4,4,3,5,5,6,5,7,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,2,1,3,3,3,3,4,2,5,3,2,4,3.16666666666667,5,1,3,4,4,5,3.4,4,2,4,4,3,5,3.4,5,4,5,4,6,6,2,5,5,6,5,7,3,5,2,5.16666666666667,2,-2,3,-3,-2,1,-1,-0.166666666666667,1,-1,-1,0,1,0,0,0,-2,0,-3,3,1,0,-0.166666666666667,-0.111111111111111,-0.333333333333333,0.125,2,0,0.4,0.2,0.3,0,1,0,-2,0,2,1,1,5 cents,25 minutes,47 days,5,8,Richard is as tall as Matt,44,Tuesday,D,D,E,D,B,Female,1,University - Undergraduate,C_Ug,32,32 - 38,Canadian,Female,1,,1,,,1,,2,1,8,6,4,7,3,5,4,6,7,1,5,2,3,5,7,2,6,8,1,4,3,1,3,2,8,6,4,7,5,2,5,1,6,3,7,4,6,4,2,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,5,7,6,2,4,1,3,2,3,4,1,2,0,-2,-1 +346,104.246.217.228,R_65QruUrLN9vrvwH,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,9,6,9,5,1,3,5,4,0,0,3,0,2,7,0,0,2,2,0,2,4,3,2,0,2,4,3,0,0,0,0,1,0,4,1,1,1,1,0,2,5-9,2,9,6,9,5,1,3,5,5.5,4,3,2,0,2,4,3,2.5,4,0,0,3,0,2,1.4,0,0,0,0,1,0,0.2,7,0,0,2,2,0,2,1.83333333333333,4,1,1,1,1,0,2,1.33333333333333,5,3,7,5,-1,-1,2,3,4,0,0,3,-1,2,1.2,3,-1,-1,1,1,0,0,0.5,1.56666666666667,1.33333333333333,1.5,3,0,1,0.4,0.7,1,1,2,-2,-1,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,A,B,B,Prefer not to say,2,High School (or equivalent),HS_TS,32,32 - 38,Canadian,Prefer not to say,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,7,4,2,1,1,5,6,7,3,4,2,2,5,8,6,7,4,3,1,1,4,8,5,6,3,7,2,1,6,4,5,2,3,7,5,3,2,8,4,6,7,1,8,3,2,9,7,5,6,1,4,4,2,3,1,2,1,1,2 +347,173.177.25.250,R_70vZpGFVeJvqpdB,self,02PVF,past,3,4,0,3,3,2,2,2,2,2,4,5,2,1,2,5,3,5,4,3,3,2,0,2,4,3,3,3,3,3,4,6,3,2,5,4,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,0,3,3,2,2,2.5,3,2,0,2,4,3,3,2.33333333333333,2,2,2,4,5,2,3,3,3,3,4,6,3,3.8,1,2,5,3,5,4,3,3.33333333333333,2,5,4,3,3,2,3,3.16666666666667,0,2,0,1,-1,-1,-1,0.166666666666667,-1,-1,-1,0,-1,-1,-0.8,-1,-3,1,0,2,2,0,0.166666666666667,-0.155555555555556,-0.666666666666667,0.75,1,1,0.6,0.2,0.4,1,1,2,-1,0,0,-1,0,10 cents,5 minutes,15 days,5,8,Richard is taller than Matt,47,Monday,B,D,A,B,F,Female,1,Trade School,HS_TS,27,25 - 31,Canadian,Female,1,,,1,,1,,6,1,8,5,2,4,3,7,4,6,7,1,2,5,3,6,7,3,5,8,1,2,4,1,7,2,8,6,3,4,5,6,3,1,2,4,7,5,5,4,6,7,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,2,9,4,5,7,6,1,3,3,4,2,1,1,0,0,1 +348,64.20.22.21,R_7hheUffkpGknKiU,self,02PVF,future,7,3,2,1,4,6,6,3,6,9,7,5,2,3,3,2,4,5,7,4,4,6,3,5,6,4,9,7,7,2,6,3,3,5,3,5,2,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,2,1,4,6,6,3.83333333333333,4,6,3,5,6,4,9,4.66666666666667,3,6,9,7,5,2,6,7,7,2,6,3,3,5,3,3,2,4,5,7,4,4,5,3,5,2,6,6,6,4.5,3,-3,-1,-4,-2,2,-3,-0.833333333333333,-4,-1,7,1,2,-1,1,-2,0,-3,2,-1,1,-2,-0.5,-0.111111111111111,-2,0,0,3,0,0.2,0.1,0,1,2,2,0,1,1,1,10 cents,100 minutes,24 days,3,11,Richard is taller than Zach,39,Tuesday,D,C,C,F,C,Male,0,High School (or equivalent),HS_TS,22,18 - 24,American,Male,1,,,1,,,1,4,1,8,3,5,7,2,6,2,4,7,1,6,3,5,7,6,4,3,8,1,2,5,1,2,5,8,3,7,4,6,4,5,1,6,3,7,2,3,4,6,7,5,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,6,7,4,8,1,9,3,4,2,1,-2,0,-1,-1 +349,207.6.163.66,R_5n6RjxtZo2Fbddr,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",17,Like somewhat,7,7,4,3,5,6,6,2,0,2,1,0,1,0,0,1,0,0,1,0,4,5,2,2,2,1,3,1,0,1,0,1,1,0,0,0,0,0,0,0,15-19,1,7,7,4,3,5,6,6,5.33333333333333,4,5,2,2,2,1,3,2.66666666666667,2,0,2,1,0,1,1,1,0,1,0,1,1,0.6,0,0,1,0,0,1,0,0.333333333333333,0,0,0,0,0,0,0,0,3,2,2,1,3,5,3,2.66666666666667,1,0,1,1,-1,0,0.4,0,0,1,0,0,1,0,0.333333333333333,1.13333333333333,1,0.875,3,0,1,1,1,0,1,1,-1,-1,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,High School (or equivalent),HS_TS,19,18 - 24,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,2,5,3,7,1,1,5,3,7,6,2,4,3,2,8,5,7,6,4,1,1,4,8,5,2,3,7,6,1,6,3,2,4,5,7,4,3,7,8,2,6,5,1,6,3,9,7,4,5,8,1,2,4,2,3,1,1,1,1,2 +350,173.210.218.223,R_7oBiVJ0EeRvd9gm,self,02PVF,future,5,2,3,5,4,7,7,6,7,6,7,7,7,2,1,5,4,4,5,5,5,4,1,4,1,4,3,8,6,10,7,5,7,4,5,3,5,10,2,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,3,5,4,7,7,4.33333333333333,5,4,1,4,1,4,3,3.16666666666667,6,7,6,7,7,7,6.6,8,6,10,7,5,7,7.2,2,1,5,4,4,5,5,3.5,4,5,3,5,10,2,6,4.83333333333333,0,-2,2,1,3,3,4,1.16666666666667,-2,1,-4,0,2,0,-0.6,-2,-4,2,-1,-6,3,-1,-1.33333333333333,-0.255555555555555,1,0.125,2,0,0.8,0.4,0.6,1,0,1,-1,1,2,0,1,15 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,E,F,E,Male,0,High School (or equivalent),HS_TS,31,25 - 31,Canadian,Male,1,,,1,,,1,3,1,8,2,5,4,6,7,2,6,7,1,3,4,5,3,4,2,7,8,1,5,6,1,5,4,8,6,7,3,2,4,5,1,6,3,7,2,5,7,2,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,7,8,9,3,1,4,4,3,2,1,1,-1,-2,0 +351,217.67.71.79,R_5gI9Kgdq4aAqHZG,self,03VFP,future,0,5,5,9,1,5,5,8,5,8,5,9,5,0,5,9,0,10,5,0,9,5,9,10,5,8,7,8,0,5,0,5,0,4,5,2,5,7,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,5,5,9,1,5,5,4.16666666666667,9,5,9,10,5,8,7,7.66666666666667,8,5,8,5,9,5,7,8,0,5,0,5,0,3.6,0,5,9,0,10,5,0,4.83333333333333,4,5,2,5,7,3,5,4.33333333333333,-9,0,-4,-1,-4,-3,-2,-3.5,0,5,3,5,4,5,3.4,-4,0,7,-5,3,2,-5,0.5,0.133333333333333,-0.666666666666667,0.875,0,3,1,0.4,0.7,1,1,0,-2,1,-2,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,E,Female,1,University - Undergraduate,C_Ug,25,25 - 31,American,Female,1,,,,1,,1,2,1,8,7,5,3,6,4,2,5,7,1,4,3,6,5,4,7,3,8,1,6,2,1,5,2,8,7,4,6,3,4,3,1,2,6,7,5,6,3,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,5,9,2,4,7,1,3,3,4,2,1,2,-1,2,1 +352,99.227.189.7,R_3spqWjjI5WXsuQ5,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,4,3,8,6,2,2,4,6,4,4,5,2,5,5,7,4,4,4,4,3,5,6,7,4,5,6,3,3,3,8,5,3,5,6,4,4,4,5,4,6,20+,1,4,3,8,6,2,2,4,4.16666666666667,5,6,7,4,5,6,3,5.5,6,4,4,5,2,5,4.2,3,3,8,5,3,5,4.4,5,7,4,4,4,4,3,4.66666666666667,6,4,4,4,5,4,6,4.5,-1,-3,1,2,-3,-4,1,-1.33333333333333,3,1,-4,0,-1,0,-0.2,-1,3,0,0,-1,0,-3,0.166666666666667,-0.455555555555556,-0.666666666666667,-0.125,0,1,0.2,0,0.1,0,1,0,0,-1,1,1,-1,10 cents,25 minutes,15 days,5,9,Richard is shorter than Matt,39,Saturday,B,D,D,C,A,Male,0,University - Undergraduate,C_Ug,28,25 - 31,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,3,2,6,5,1,1,3,2,7,4,6,5,7,6,8,2,5,4,3,1,1,7,8,4,6,3,2,5,1,3,6,2,5,4,7,6,5,7,8,3,4,2,1,7,3,5,8,2,9,6,1,4,3,4,2,1,0,1,-1,-1 +353,72.143.66.178,R_1QEerraAVAokZdi,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,6,6,6,7,6,7,7,3,3,6,3,6,3,5,6,5,6,6,6,6,7,9,8,7,8,8,8,7,7,8,6,7,7,7,8,6,8,7,8,8,5-9,2,6,6,6,7,6,7,7,6.33333333333333,7,9,8,7,8,8,8,7.83333333333333,3,3,6,3,6,3,4.2,7,7,8,6,7,7,7,5,6,5,6,6,6,6,5.66666666666667,7,8,6,8,7,8,8,7.33333333333333,-1,-3,-2,0,-2,-1,-1,-1.5,-4,-4,-2,-3,-1,-4,-2.8,-2,-2,-1,-2,-1,-2,-2,-1.66666666666667,-1.98888888888889,-2.33333333333333,-0.125,2,1,1,0.4,0.7,1,2,0,2,1,1,1,1,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,B,B,A,Male,0,University - PhD,grad_prof,30,25 - 31,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,6,2,1,1,4,2,7,5,6,3,6,3,8,2,7,5,4,1,1,2,8,5,3,4,6,7,1,3,6,4,5,2,7,2,7,5,8,3,6,4,1,4,2,9,3,5,8,7,1,6,3,4,2,1,-2,-1,-1,-1 +354,192.230.188.17,R_38HCN3TQTLZizLG,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,2,10,5,5,5,5,2,7,5,7,5,1,10,5,10,5,5,1,4,1,1,5,7,7,7,5,5,5,5,5,5,2,8,4,5,7,6,6,20+,2,2,1,2,10,5,5,5,4.16666666666667,4,1,1,5,7,7,7,4.16666666666667,5,2,7,5,7,5,5.2,5,5,5,5,5,5,5,1,10,5,10,5,5,1,6,2,8,4,5,7,6,6,5.33333333333333,-2,0,1,5,-2,-2,-2,0,0,-3,2,0,2,0,0.2,-1,2,1,5,-2,-1,-5,0.666666666666667,0.288888888888889,-2.33333333333333,1.25,0,2,0,0.4,0.2,0,2,2,-2,0,-1,-1,2,10 cents,75 minutes,24 days,6,12,Richard is shorter than Matt,53,Monday,C,C,B,F,D,Female,1,High School (or equivalent),HS_TS,33,32 - 38,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,4,6,7,3,1,1,5,6,7,3,4,2,6,5,8,2,7,4,3,1,1,5,8,6,4,3,2,7,1,3,4,6,5,2,7,3,6,4,8,2,7,5,1,4,5,2,7,8,6,9,1,3,4,2,3,1,2,0,1,1 +355,97.171.10.40,R_5GKcBulhFn6Uxtc,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,8,7,5,6,9,7,7,7,8,5,7,7,8,6,6,4,7,7,4,5,6,9,4,6,5,6,6,5,8,8,4,7,7,5,6,7,7,5,8,7,5-9,2,8,7,5,6,9,7,7,7,6,9,4,6,5,6,6,6,7,8,5,7,7,8,6.8,5,8,8,4,7,7,6.4,6,6,4,7,7,4,5,5.66666666666667,5,6,7,7,5,8,7,6.33333333333333,2,-2,1,0,4,1,1,1,2,0,-3,3,0,1,0.4,1,0,-3,0,2,-4,-2,-0.666666666666667,0.244444444444444,0,0.125,0,3,0.6,0.4,0.5,0,1,1,1,0,1,0,1,10 cents,100 minutes,24 days,2,8,It's impossible to tell,57,Sunday,B,E,B,F,C,Male,0,College Diploma/Certificate,C_Ug,32,32 - 38,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,6,4,7,2,1,1,5,2,7,6,3,4,7,6,8,2,5,3,4,1,1,4,8,3,5,6,7,2,1,4,5,3,6,2,7,7,6,2,8,4,3,5,1,8,2,4,9,7,3,6,1,5,4,3,2,1,-1,0,-1,0 +356,65.37.98.229,R_5hSUPHjmDAIh6Bb,self,02PVF,future,7,4,4,5,7,10,3,4,8,4,2,5,5,10,2,5,1,6,8,4,7,8,5,6,6,6,9,6,4,7,9,5,3,2,4,6,4,4,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,4,5,7,10,3,6.16666666666667,7,8,5,6,6,6,9,6.33333333333333,4,8,4,2,5,5,4.6,6,4,7,9,5,3,6.2,10,2,5,1,6,8,4,5.33333333333333,2,4,6,4,4,5,7,4.16666666666667,0,-4,-1,-1,1,4,-6,-0.166666666666667,-2,4,-3,-7,0,2,-1.6,8,-2,-1,-3,2,3,-3,1.16666666666667,-0.2,-2.33333333333333,-0.25,0,3,0.8,0,0.4,-1,0,0,1,0,2,0,2,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,A,C,D,A,F,Male,0,High School (or equivalent),HS_TS,31,25 - 31,American,Male,1,,,1,,,1,4,1,8,2,5,6,3,7,4,2,7,1,6,3,5,5,3,7,4,8,1,6,2,1,5,6,8,4,2,7,3,4,6,1,5,2,7,3,2,3,4,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,9,2,4,3,5,1,7,2,4,3,1,-1,0,-2,0 +357,52.119.90.162,R_1nwqjmQGf6cN0db,self,03VFP,future,9,9,8,8,10,8,8,8,9,9,8,9,8,8,8,9,8,7,9,9,9,7,5,8,9,8,8,8,8,9,9,6,8,7,7,8,9,7,8,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,9,8,8,10,8,8,8.66666666666667,9,7,5,8,9,8,8,7.66666666666667,8,9,9,8,9,8,8.6,8,8,9,9,6,8,8,8,8,9,8,7,9,9,8.16666666666667,7,7,8,9,7,8,9,7.66666666666667,0,2,3,0,1,0,0,1,0,1,0,-1,3,0,0.6,1,1,1,-1,0,1,0,0.5,0.7,0,0.5,0,2,0,0.2,0.1,1,0,1,-2,1,-1,1,1,10 cents,25 minutes,24 days,3,11,Richard is shorter than Matt,53,Tuesday,B,E,C,F,C,Male,0,College Diploma/Certificate,C_Ug,33,32 - 38,American,Male,1,,,,1,,1,7,1,8,6,2,3,5,4,5,4,7,1,2,6,3,5,6,7,4,8,1,2,3,1,5,6,8,3,2,4,7,4,5,1,3,2,7,6,5,6,7,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,4,7,3,5,8,1,2,2,4,3,1,2,-1,1,-1 +358,72.84.211.234,R_1X2NVnuUmzp2wXD,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,6,3,3,7,3,7,5,3,5,3,5,5,6,6,8,8,6,7,7,7,4,4,4,4,4,4,5,4,6,4,5,6,5,6,6,5,5,6,5,5,20+,1,6,3,3,7,3,7,5,4.83333333333333,4,4,4,4,4,4,5,4,3,5,3,5,5,6,4.2,4,6,4,5,6,5,5,6,8,8,6,7,7,7,7,6,6,5,5,6,5,5,5.5,2,-1,-1,3,-1,3,0,0.833333333333333,-1,-1,-1,0,-1,1,-0.8,0,2,3,1,1,2,2,1.5,0.511111111111111,1,1,0,3,0,0.6,0.3,0,2,1,-2,0,-1,-2,0,10 cents,100 minutes,24 days,3,10,Richard is taller than Matt,53,Tuesday,D,C,B,B,B,Female,1,College Diploma/Certificate,C_Ug,31,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,2,3,5,1,1,5,6,7,2,4,3,3,4,8,7,5,2,6,1,1,4,8,2,3,7,6,5,1,5,2,6,4,3,7,5,4,7,8,2,3,6,1,8,7,6,9,4,5,3,1,2,2,3,4,1,2,0,1,2 +359,73.213.176.242,R_6DIEabrc8rsEPf3,self,01FPV,past,5,8,5,7,9,7,5,7,5,7,7,7,8,5,7,7,10,7,9,8,7,6,8,10,5,9,7,8,8,9,4,6,7,6,3,9,8,9,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,5,7,9,7,5,6.83333333333333,7,6,8,10,5,9,7,7.5,7,5,7,7,7,8,6.6,8,8,9,4,6,7,7,5,7,7,10,7,9,8,7.5,6,3,9,8,9,6,9,6.83333333333333,-2,2,-3,-3,4,-2,-2,-0.666666666666667,-1,-3,-2,3,1,1,-0.4,-1,4,-2,2,-2,3,-1,0.666666666666667,-0.133333333333333,-0.666666666666667,0.625,1,2,0.6,0.4,0.5,0,2,1,-1,-1,0,1,1,10 cents,5 minutes,24 days,5,10,It's impossible to tell,47,Tuesday,B,E,B,D,C,Male,0,Trade School,HS_TS,24,18 - 24,American,Male,1,,1,,,1,,7,1,8,3,4,2,5,6,4,3,7,1,6,5,2,2,7,3,6,8,1,5,4,1,3,2,8,5,6,7,4,2,4,1,6,3,7,5,7,6,5,4,3,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,4,3,5,7,6,1,9,2,3,4,1,1,1,0,-1 +360,72.84.68.110,R_10vLGpnvfGWD3JT,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,10,10,10,10,10,0,10,10,10,0,0,0,10,10,10,10,10,10,10,10,10,10,10,5,5,5,5,10,10,0,0,0,0,0,10,10,0,10,10,10,15-19,2,10,10,10,10,10,0,10,8.33333333333333,10,10,10,5,5,5,5,7.5,10,10,0,0,0,10,4,10,10,0,0,0,0,4,10,10,10,10,10,10,10,10,0,10,10,0,10,10,10,6.66666666666667,0,0,0,5,5,-5,5,0.833333333333333,0,0,0,0,0,10,0,10,0,0,10,0,0,0,3.33333333333333,1.38888888888889,5,0.25,1,2,1,0.4,0.7,2,-2,-2,-2,1,1,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,A,B,F,Male,0,High School (or equivalent),HS_TS,24,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,5,3,2,1,1,5,3,7,2,6,4,2,5,8,7,6,3,4,1,1,3,8,7,5,4,6,2,1,6,4,3,2,5,7,5,4,2,8,6,3,7,1,2,4,8,6,3,7,5,1,9,3,2,4,1,2,-1,-1,2 +361,74.192.10.82,R_5KwlOBIClKlLze8,self,02PVF,future,2,8,3,7,4,2,6,3,2,1,2,4,2,2,7,5,1,2,6,5,5,0,2,3,2,3,5,1,3,1,1,2,2,1,3,3,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,3,7,4,2,6,4.33333333333333,5,0,2,3,2,3,5,2.5,3,2,1,2,4,2,2.4,1,3,1,1,2,2,1.6,2,7,5,1,2,6,5,3.83333333333333,1,3,3,1,1,3,2,2,-3,8,1,4,2,-1,1,1.83333333333333,2,-1,0,1,2,0,0.8,1,4,2,0,1,3,3,1.83333333333333,1.48888888888889,1.33333333333333,0.75,0,3,0.8,0.2,0.5,-1,-1,1,-2,0,-2,-2,1,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Sunday,D,F,D,F,F,Female,1,High School (or equivalent),HS_TS,19,18 - 24,American,Female,1,,,1,,,1,2,1,8,4,5,3,6,7,5,4,7,1,6,2,3,4,3,6,2,8,1,7,5,1,3,7,8,4,6,2,5,4,6,1,5,3,7,2,2,4,6,5,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,9,6,4,1,3,4,2,3,1,2,0,2,2 +362,73.32.80.54,R_1cuR1q14B7f0LmN,self,01FPV,past,0,6,0,0,0,5,0,3,4,3,5,7,4,5,7,4,6,6,5,3,1,2,1,1,1,1,1,3,2,1,1,2,1,2,1,3,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,6,0,0,0,5,0,1.83333333333333,1,2,1,1,1,1,1,1.16666666666667,3,4,3,5,7,4,4.4,3,2,1,1,2,1,1.8,5,7,4,6,6,5,3,5.5,2,1,3,2,2,1,1,1.83333333333333,-1,4,-1,-1,-1,4,-1,0.666666666666667,0,2,2,4,5,3,2.6,3,6,1,4,4,4,2,3.66666666666667,2.31111111111111,1.33333333333333,1.125,0,3,0.8,0.4,0.6,0,2,1,-2,-1,0,-2,1,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,D,F,B,D,A,Male,0,High School (or equivalent),HS_TS,24,18 - 24,American,Male,1,,1,,,1,,3,1,8,2,6,5,7,4,2,3,7,1,5,6,4,6,3,4,2,8,1,5,7,1,6,5,8,4,2,7,3,5,3,1,4,2,7,6,7,2,3,5,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,2,6,3,9,4,1,7,3,2,4,1,2,1,0,2 +363,99.236.105.99,R_6HkvwxSgrYQF8BI,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20+,2,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0.8,0.4,0.6,2,2,2,2,2,2,2,2,10 cents,100 minutes,24 days,5,10,It's impossible to tell,47,Sunday,D,E,C,A,B,Male,0,Professional Degree (ex. JD/MD),grad_prof,25,25 - 31,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,6,4,3,1,1,2,3,7,5,6,4,2,4,8,7,3,5,6,1,1,7,8,5,4,3,6,2,1,3,2,6,4,5,7,3,7,2,8,5,4,6,1,9,4,8,6,7,3,2,1,5,3,2,4,1,-2,-2,-2,-2 +364,71.194.5.167,R_51cTE5Xav3rgMqf,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Dislike somewhat,6,4,8,5,5,4,3,6,4,2,6,4,5,6,6,3,7,5,4,3,4,8,3,5,6,4,5,4,6,3,5,3,3,3,3,4,3,6,5,5,15-19,-1,6,4,8,5,5,4,3,5.33333333333333,4,8,3,5,6,4,5,5,6,4,2,6,4,5,4.4,4,6,3,5,3,3,4.2,6,6,3,7,5,4,3,5.16666666666667,3,3,4,3,6,5,5,4,2,-4,5,0,-1,0,-2,0.333333333333333,2,-2,-1,1,1,2,0.2,3,3,-1,4,-1,-1,-2,1.16666666666667,0.566666666666667,-0.666666666666667,-0.125,0,3,0,0.2,0.1,1,-1,1,-1,2,1,0,0,10 cents,100 minutes,24 days,4,9,Richard is taller than Zach,57,Tuesday,D,C,A,A,C,Female,1,High School (or equivalent),HS_TS,30,25 - 31,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,7,2,4,1,1,4,3,7,5,6,2,5,3,8,7,2,6,4,1,1,4,8,3,6,7,2,5,1,3,6,2,5,4,7,4,5,3,8,6,2,7,1,8,2,4,9,5,3,6,1,7,2,4,3,1,1,-2,-1,0 +365,104.251.32.27,R_60oWVSHf3rLrzW1,self,01FPV,past,5,8,7,7,8,9,8,9,10,8,9,7,8,8,6,7,5,8,7,8,10,5,8,9,8,7,7,7,9,6,8,8,10,6,9,6,5,7,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,8,7,7,8,9,8,7.33333333333333,10,5,8,9,8,7,7,7.83333333333333,9,10,8,9,7,8,8.6,7,9,6,8,8,10,7.6,8,6,7,5,8,7,8,6.83333333333333,6,9,6,5,7,8,6,6.83333333333333,-5,3,-1,-2,0,2,1,-0.5,2,1,2,1,-1,-2,1,2,-3,1,0,1,-1,2,0,0.166666666666667,0.333333333333333,0.5,3,0,1,0.2,0.6,1,2,0,-1,1,0,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,C,D,B,C,Male,0,University - Undergraduate,C_Ug,25,25 - 31,Canadian,Male,1,,1,,,1,,3,1,8,2,5,4,6,7,2,6,7,1,4,5,3,7,3,5,6,8,1,4,2,1,3,2,8,6,5,4,7,2,6,1,4,3,7,5,4,5,2,7,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,6,5,7,4,2,1,9,3,4,2,1,1,-1,0,0 +366,24.233.225.42,R_5l5F8sxBoddTdmh,self,01FPV,future,4,3,3,5,3,2,5,4,3,3,6,3,2,5,6,2,1,3,2,2,3,7,5,3,4,6,5,3,5,2,4,2,3,4,3,1,3,4,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,5,3,2,5,3.33333333333333,3,7,5,3,4,6,5,4.66666666666667,4,3,3,6,3,2,3.8,3,5,2,4,2,3,3.2,5,6,2,1,3,2,2,3.16666666666667,4,3,1,3,4,6,2,3.5,1,-4,-2,2,-1,-4,0,-1.33333333333333,1,-2,1,2,1,-1,0.6,1,3,1,-2,-1,-4,0,-0.333333333333333,-0.355555555555556,-0.333333333333333,0,0,1,0.2,0.8,0.5,1,1,2,1,1,1,2,1,20 cents,100 minutes,36 days,4,8,Richard is taller than Zach,35,Tuesday,D,E,B,A,D,Male,0,High School (or equivalent),HS_TS,27,25 - 31,American,Male,1,,1,,,,1,4,1,8,7,2,5,6,3,3,5,7,1,2,4,6,4,2,6,7,8,1,3,5,1,2,4,8,6,3,5,7,6,2,1,4,5,7,3,2,7,5,4,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,8,9,3,6,4,1,5,2,3,4,1,-1,-1,-1,-2 +367,47.133.95.66,R_35YekCKfJdd0wAo,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,5,6,6,6,6,6,6,6,6,7,5,6,6,5,6,5,5,6,6,6,6,6,5,6,4,6,5,5,5,5,6,6,5,5,6,5,6,5,6,7,10-14,2,5,6,6,6,6,6,6,5.83333333333333,6,6,5,6,4,6,5,5.5,6,6,7,5,6,6,6,5,5,5,6,6,5,5.4,5,6,5,5,6,6,6,5.5,5,6,5,6,5,6,7,5.5,-1,0,1,0,2,0,1,0.333333333333333,1,1,2,-1,0,1,0.6,0,0,0,-1,1,0,-1,0,0.311111111111111,0.333333333333333,2,3,0,0.2,0.6,0.4,2,2,2,-2,-2,-2,-2,2,5 cents,5 minutes,47 days,4,7,Richard is as tall as Matt,47,Monday,D,E,B,A,F,Male,0,University - PhD,grad_prof,24,18 - 24,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,3,4,6,7,1,1,3,6,7,5,2,4,5,2,8,4,6,7,3,1,1,4,8,3,2,5,6,7,1,6,4,3,2,5,7,5,4,7,8,2,3,6,1,5,3,9,8,4,2,6,1,7,4,3,2,1,2,2,2,2 +368,108.255.196.116,R_62BTBqHqCTRxGcp,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,2,3,4,1,4,3,4,4,3,2,3,3,2,2,2,4,2,3,3,4,3,1,1,1,2,2,4,3,4,3,3,3,2,3,3,4,3,4,3,10-14,2,2,2,3,4,1,4,3,2.66666666666667,4,3,1,1,1,2,2,2,4,4,3,2,3,3,3.2,4,3,4,3,3,3,3.4,2,2,2,4,2,3,3,2.5,2,3,3,4,3,4,3,3.16666666666667,-2,-1,2,3,0,2,1,0.666666666666667,0,1,-1,-1,0,0,-0.2,0,-1,-1,0,-1,-1,0,-0.666666666666667,-0.0666666666666667,0.333333333333333,1.375,2,1,1,0.8,0.9,1,1,2,-2,-1,-1,-2,1,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,E,B,B,D,Female,1,University - Undergraduate,C_Ug,25,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,2,4,6,5,1,1,2,4,7,6,5,3,2,6,8,4,7,5,3,1,1,4,8,6,2,3,7,5,1,5,2,6,3,4,7,7,3,4,8,5,6,2,1,2,6,5,4,9,8,3,1,7,2,4,3,1,2,1,1,2 +369,76.140.135.0,R_3IoMGiUvnysJXuY,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,6,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,4,0,0,3,0,0,0,0,0,0,0,0,1,0,1.625,0,2,0.4,0,0.2,2,2,2,-2,1,-2,-2,2,10 cents,25 minutes,24 days,5,9,It's impossible to tell,35,Tuesday,B,A,C,C,C,Female,1,College Diploma/Certificate,C_Ug,28,25 - 31,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,5,2,7,3,1,1,4,2,7,3,5,6,7,3,8,4,2,5,6,1,1,3,8,2,5,6,4,7,1,5,6,2,4,3,7,3,2,6,8,4,5,7,1,2,6,4,5,8,7,3,1,9,4,3,2,1,2,-1,2,2 +370,99.138.46.73,R_5HJABPeTraXnFoB,self,01FPV,past,5,1,1,8,0,0,3,4,3,0,0,4,4,2,2,2,1,6,0,1,1,0,1,3,1,0,1,3,6,3,0,0,2,0,5,6,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,1,8,0,0,3,2.5,1,0,1,3,1,0,1,1,4,3,0,0,4,4,2.2,3,6,3,0,0,2,2.4,2,2,2,1,6,0,1,2.16666666666667,0,5,6,0,0,0,2,1.83333333333333,4,1,0,5,-1,0,2,1.5,1,-3,-3,0,4,2,-0.2,2,-3,-4,1,6,0,-1,0.333333333333333,0.544444444444444,1,1.375,2,1,1,1,1,2,2,2,0,-1,-1,-2,1,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,26,25 - 31,American,Male,1,,1,,,1,,7,1,8,5,4,2,6,3,3,5,7,1,4,6,2,4,3,7,6,8,1,5,2,1,6,4,8,7,5,2,3,2,4,1,6,5,7,3,4,3,7,5,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,9,8,6,7,1,4,4,3,2,1,0,1,1,2 +371,216.231.33.105,R_33VIa5s3BMWSVCJ,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,9,10,10,0,0,5,5-9,2,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,0,9,10,10,0,0,5,4.83333333333333,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,1,0,0,10,10,5,5.16666666666667,5.05555555555556,5,1.625,0,3,0.6,0.2,0.4,1,2,2,-2,0,-2,-2,2,10 cents,100 minutes,24 days,5,8,Richard is shorter than Matt,39,Sunday,D,D,F,C,A,Male,0,University - Undergraduate,C_Ug,27,25 - 31,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,2,3,7,4,5,6,3,2,8,7,4,6,5,1,1,6,8,3,4,7,2,5,1,3,2,6,5,4,7,7,4,5,8,2,3,6,1,5,7,4,9,6,3,2,1,8,4,2,3,1,2,0,2,2 +372,174.83.3.58,R_6kMx8fNBaGeV7HP,self,02PVF,past,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,3,0.6,0,0.3,1,1,1,-1,0,1,-1,0,10 cents,100 minutes,24 days,5,7,It's impossible to tell,57,Sunday,C,C,E,E,B,Prefer not to say,2,High School (or equivalent),HS_TS,32,32 - 38,American,Prefer not to say,1,,,1,,1,,7,1,8,6,5,3,2,4,2,5,7,1,3,4,6,5,4,2,6,8,1,7,3,1,7,4,8,2,6,3,5,4,6,1,5,2,7,3,3,2,4,7,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,7,5,8,3,4,1,2,2,4,3,1,1,0,-1,1 +373,174.117.206.241,R_1MLtPpFn7eAJ7ot,self,02PVF,future,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,3,0.4,0.2,0.3,0,0,0,-2,0,0,0,0,10 cents,100 minutes,24 days,5,12,Richard is taller than Matt,47,Tuesday,D,C,C,A,B,Male,0,High School (or equivalent),HS_TS,32,32 - 38,Canadian,Male,1,,,1,,,1,6,1,8,4,7,3,2,5,4,6,7,1,2,3,5,5,2,4,3,8,1,6,7,1,4,5,8,6,7,2,3,6,4,1,3,5,7,2,3,7,4,5,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6,9,5,2,4,7,1,3,2,4,3,1,2,0,0,0 +374,75.207.71.222,R_7uEbKSnI1GWBlUC,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,5,3,6,8,6,6,4,5,3,2,6,4,4,5,6,4,5,3,3,5,4,4,6,3,3,2,5,5,4,5,3,4,6,5,3,4,3,3,4,3,20+,1,5,3,6,8,6,6,4,5.66666666666667,4,4,6,3,3,2,5,3.66666666666667,5,3,2,6,4,4,4,5,4,5,3,4,6,4.2,5,6,4,5,3,3,5,4.33333333333333,5,3,4,3,3,4,3,3.66666666666667,1,-1,0,5,3,4,-1,2,0,-1,-3,3,0,-2,-0.2,0,3,0,2,0,-1,2,0.666666666666667,0.822222222222222,-0.333333333333333,0.5,0,3,0.4,0.2,0.3,0,-1,2,-2,-1,1,0,1,10 cents,100 minutes,24 days,5,12,Richard is shorter than Matt,47,Saturday,E,B,D,E,D,Female,1,High School (or equivalent),HS_TS,20,18 - 24,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,3,7,2,5,1,1,4,2,7,3,5,6,6,7,8,2,5,4,3,1,1,3,8,2,6,5,4,7,1,4,2,5,6,3,7,6,2,3,8,5,4,7,1,2,5,7,3,4,6,8,1,9,4,3,2,1,2,1,-1,0 +375,65.195.34.134,R_1eQr71jlOG8k0nm,self,01FPV,future,7,9,5,7,8,9,9,7,8,9,9,7,9,8,9,7,9,9,9,7,5,8,8,8,7,1,6,7,8,4,7,8,8,1,1,1,1,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,5,7,8,9,9,7.5,5,8,8,8,7,1,6,6.16666666666667,7,8,9,9,7,9,8,7,8,4,7,8,8,6.8,8,9,7,9,9,9,7,8.5,1,1,1,1,2,4,4,1.66666666666667,2,1,-3,-1,1,8,3,1.33333333333333,0,0,5,2,-1,1,1.2,7,8,6,8,7,5,3,6.83333333333333,3.12222222222222,2.33333333333333,0.875,2,0,1,0.6,0.8,0,2,2,-1,1,-1,-1,1,5 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,E,F,B,B,D,Male,0,University - Graduate (Masters),grad_prof,40,39 - 45,American,Male,1,,1,,,,1,7,1,8,4,5,2,3,6,4,3,7,1,5,2,6,6,7,3,2,8,1,4,5,1,2,6,8,4,3,7,5,6,3,1,2,4,7,5,7,5,2,4,3,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,8,5,6,2,3,1,7,3,4,2,1,1,-1,1,1 +376,172.59.88.189,R_5lE3HkFajdEOHva,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,9,6,6,4,7,4,6,5,7,5,8,6,8,6,7,5,6,6,3,4,5,5,5,3,5,6,4,5,6,6,4,7,6,9,6,6,6,5,6,7,5-9,2,9,6,6,4,7,4,6,6,5,5,5,3,5,6,4,4.83333333333333,5,7,5,8,6,8,6.2,5,6,6,4,7,6,5.6,6,7,5,6,6,3,4,5.5,9,6,6,6,5,6,7,6.33333333333333,4,1,1,1,2,-2,2,1.16666666666667,0,1,-1,4,-1,2,0.6,-3,1,-1,0,1,-3,-3,-0.833333333333333,0.311111111111111,0.333333333333333,0.375,0,3,0.2,0.4,0.3,0,1,0,0,-1,0,0,1,10 cents,100 minutes,24 days,5,12,Richard is shorter than Matt,39,Wednesday,D,D,B,D,B,Female,1,Professional Degree (ex. JD/MD),grad_prof,27,25 - 31,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,7,2,5,4,1,1,5,4,7,2,6,3,7,6,8,5,3,2,4,1,1,4,8,7,5,6,2,3,1,2,6,5,3,4,7,5,6,2,8,3,7,4,1,9,2,4,6,5,3,8,1,7,3,2,4,1,0,1,0,0 +377,45.23.160.159,R_67C1bFWw9BrW0rS,self,01FPV,past,8,7,7,9,8,7,8,8,7,7,9,8,7,9,9,9,8,8,7,8,8,7,9,8,7,9,8,8,7,7,9,9,8,9,7,9,8,8,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,7,7,9,8,7,8,7.66666666666667,8,7,9,8,7,9,8,8,8,7,7,9,8,7,7.8,8,7,7,9,9,8,8,9,9,9,8,8,7,8,8.33333333333333,9,7,9,8,8,7,7,8,0,0,-2,1,1,-2,0,-0.333333333333333,0,0,0,0,-1,-1,-0.2,0,2,0,0,0,0,1,0.333333333333333,-0.0666666666666667,0,0.25,0,3,0.8,0.8,0.8,1,2,2,1,1,2,1,2,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Sunday,D,E,D,B,D,Male,0,High School (or equivalent),HS_TS,22,18 - 24,American,Male,1,,1,,,1,,4,1,8,6,3,7,5,2,2,4,7,1,6,5,3,6,7,3,5,8,1,2,4,1,7,6,8,3,2,4,5,5,3,1,4,2,7,6,5,3,6,7,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,6,3,8,4,2,1,7,4,3,2,1,-1,-1,-2,-1 +378,184.145.5.158,R_5j0zwcw3OovhBLP,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,3,2,1,2,1,1,1,1,3,5,1,1,1,1,1,3,1,1,3,1,3,1,3,1,1,1,1,5,6,5,3,1,1,1,1,1,3,1,1,1,5-9,2,3,2,1,2,1,1,1,1.66666666666667,3,1,3,1,1,1,1,1.66666666666667,1,3,5,1,1,1,2.2,5,6,5,3,1,1,4,1,1,3,1,1,3,1,1.66666666666667,1,1,1,3,1,1,1,1.33333333333333,0,1,-2,1,0,0,0,0,-4,-3,0,-2,0,0,-1.8,0,0,2,-2,0,2,0,0.333333333333333,-0.488888888888889,0,0.875,0,3,0,0.2,0.1,1,2,0,-2,0,0,-1,1,10 cents,100 minutes,24 days,3,12,Richard is shorter than Matt,57,Tuesday,E,F,D,D,D,Female,1,University - Undergraduate,C_Ug,26,25 - 31,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,2,6,4,7,1,1,4,2,7,3,6,5,2,3,8,5,4,7,6,1,1,2,8,6,3,4,5,7,1,6,4,2,3,5,7,5,6,2,8,4,7,3,1,7,2,6,9,4,3,5,1,8,2,4,3,1,2,0,0,1 +379,107.77.236.181,R_5zq1rl9D92kHs0d,self,02PVF,future,10,1,7,1,1,10,5,8,9,8,1,2,8,7,1,8,1,8,8,8,9,1,3,10,1,9,8,5,9,4,9,3,2,1,7,6,1,8,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,1,7,1,1,10,5,5,9,1,3,10,1,9,8,5.5,8,9,8,1,2,8,5.6,5,9,4,9,3,2,6,7,1,8,1,8,8,8,5.5,1,7,6,1,8,4,1,4.5,1,0,4,-9,0,1,-3,-0.5,3,0,4,-8,-1,6,-0.4,6,-6,2,0,0,4,7,1,0.0333333333333333,3.33333333333333,-0.5,0,3,0.4,0,0.2,0,-2,0,-2,2,1,-1,-2,10 cents,100 minutes,24 days,3,9,It's impossible to tell,53,Sunday,A,C,E,A,F,Female,1,College Diploma/Certificate,C_Ug,26,25 - 31,American,Female,1,,,1,,,1,6,1,8,4,2,5,3,7,3,4,7,1,6,5,2,2,4,5,3,8,1,7,6,1,2,3,8,4,7,5,6,3,2,1,4,6,7,5,2,7,6,3,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,3,2,8,7,5,1,9,2,3,4,1,2,-2,-1,1 +380,142.127.170.82,R_7gGx2o7gknVPNRy,self,03VFP,past,9,3,8,8,5,10,8,9,7,10,7,6,9,10,10,10,10,7,7,8,9,10,7,9,8,10,9,9,10,10,10,9,9,7,6,10,8,10,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3,8,8,5,10,8,7.16666666666667,9,10,7,9,8,10,9,8.83333333333333,9,7,10,7,6,9,7.8,9,10,10,10,9,9,9.6,10,10,10,10,7,7,8,9,7,6,10,8,10,10,9,8.5,0,-7,1,-1,-3,0,-1,-1.66666666666667,0,-3,0,-3,-3,0,-1.8,3,4,0,2,-3,-3,-1,0.5,-0.988888888888889,-0.666666666666667,0.75,3,0,1,0.6,0.8,2,1,0,-1,-1,-1,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,E,C,B,D,Male,0,University - Undergraduate,C_Ug,31,25 - 31,Canadian,Male,1,,,,1,1,,5,1,8,4,6,7,3,2,5,4,7,1,2,6,3,6,2,3,7,8,1,5,4,1,7,2,8,6,3,5,4,6,2,1,5,3,7,4,4,6,3,7,2,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,9,8,3,5,2,1,7,3,4,2,1,1,1,1,1 +381,154.5.142.100,R_3NakrBlLXVOR13X,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,6,6,8,1,6,3,5,4,4,4,3,5,4,3,6,6,4,3,4,4,3,4,3,4,5,2,4,3,3,3,3,3,3,2,3,2,1,1,3,2,10-14,2,6,6,8,1,6,3,5,5,3,4,3,4,5,2,4,3.5,4,4,4,3,5,4,4,3,3,3,3,3,3,3,3,6,6,4,3,4,4,4.33333333333333,2,3,2,1,1,3,2,2,3,2,5,-3,1,1,1,1.5,1,1,1,0,2,1,1,1,3,4,3,2,1,2,2.33333333333333,1.61111111111111,1.33333333333333,1.125,1,2,0.6,0.4,0.5,2,1,0,-2,-2,1,-2,1,10 cents,100 minutes,47 days,5,11,Richard is as tall as Matt,47,Sunday,D,D,A,B,B,Male,0,Trade School,HS_TS,25,25 - 31,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,6,4,2,1,1,5,3,7,4,6,2,3,2,8,6,5,7,4,1,1,4,8,5,6,2,7,3,1,3,2,4,6,5,7,7,6,3,8,5,4,2,1,8,2,9,7,5,6,3,1,4,2,4,3,1,2,2,-1,2 +382,207.148.176.80,R_5z7IufDWQKJ5wZy,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,8,9,7,8,8,8,8,8,7,9,8,8,7,8,9,7,7,9,8,6,8,7,8,7,8,9,8,7,8,8,8,8,8,7,8,9,7,8,8,8,5-9,2,8,9,7,8,8,8,8,8,8,7,8,7,8,9,8,7.83333333333333,8,7,9,8,8,7,8,7,8,8,8,8,8,7.8,8,9,7,7,9,8,6,8,7,8,9,7,8,8,8,7.83333333333333,0,2,-1,1,0,-1,0,0.166666666666667,1,-1,1,0,0,-1,0.2,1,1,-2,0,1,0,-2,0.166666666666667,0.177777777777778,-1,0.375,1,2,0.2,0.4,0.3,1,1,1,-1,0,0,0,-1,10 cents,5 minutes,24 days,4,8,Richard is shorter than Matt,57,Tuesday,D,B,E,C,D,Male,0,College Diploma/Certificate,C_Ug,25,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,4,5,7,1,1,4,2,7,6,3,5,4,7,8,2,5,3,6,1,1,6,8,7,5,4,2,3,1,4,3,2,5,6,7,7,5,2,8,3,6,4,1,5,6,7,9,2,4,3,1,8,3,2,4,1,1,0,0,0 +383,96.51.146.255,R_6RhqbauH8w4vHJT,self,03VFP,future,3,1,2,3,2,2,3,2,2,2,1,3,3,1,3,2,3,3,2,3,2,1,3,1,3,3,2,1,2,1,2,4,3,4,2,1,3,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,2,3,2,2,3,2.16666666666667,2,1,3,1,3,3,2,2.16666666666667,2,2,2,1,3,3,2,1,2,1,2,4,3,2,1,3,2,3,3,2,3,2.33333333333333,4,2,1,3,4,4,5,3,1,0,-1,2,-1,-1,1,0,1,0,1,-1,-1,0,0,-3,1,1,0,-1,-2,-2,-0.666666666666667,-0.222222222222222,-0.333333333333333,0.125,2,1,0.6,0,0.3,0,2,-1,-1,1,1,-1,0,10 cents,5 minutes,47 days,6,8,Zach is shorter than Matt,47,Sunday,E,D,C,D,A,Male,0,University - Graduate (Masters),grad_prof,20,18 - 24,Canadian,Male,1,,,,1,,1,4,1,8,5,6,3,7,2,4,6,7,1,2,5,3,4,7,5,3,8,1,2,6,1,3,5,8,2,7,6,4,2,4,1,3,5,7,6,6,3,5,2,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,9,6,7,5,3,2,1,8,4,2,3,1,1,-1,-1,1 +384,76.125.50.5,R_3vVBHXD1pXCgXi9,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,8,10,8,8,10,6,6,4,9,10,7,7,7,5,3,9,1,7,4,5,8,7,7,4,5,6,8,6,4,6,4,4,1,6,4,3,1,6,6,20+,2,6,8,10,8,8,10,6,8.33333333333333,5,8,7,7,4,5,6,6,6,4,9,10,7,7,7.2,8,6,4,6,4,4,5.6,7,5,3,9,1,7,4,5.33333333333333,1,6,4,3,1,6,6,3.5,1,0,3,1,4,5,0,2.33333333333333,-2,-2,5,4,3,3,1.6,6,-1,-1,6,0,1,-2,1.83333333333333,1.92222222222222,0.333333333333333,-0.125,2,1,0.6,0,0.3,0,0,-1,-2,1,2,-1,0,10 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Tuesday,E,C,E,A,F,Female,1,High School (or equivalent),HS_TS,20,18 - 24,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,4,5,6,7,1,1,3,6,7,4,5,2,6,2,8,4,5,7,3,1,1,6,8,7,4,3,2,5,1,4,2,3,6,5,7,2,7,5,8,6,3,4,1,6,3,5,9,2,4,7,1,8,2,3,4,1,2,-1,-2,1 +385,98.176.223.247,R_3D1qPnh1CbqZgq9,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like a great deal,3,1,5,1,1,2,3,6,1,8,4,4,4,1,4,6,3,2,5,4,1,1,4,1,4,1,2,3,5,1,1,3,3,2,2,8,3,1,3,7,5-9,2,3,1,5,1,1,2,3,2.16666666666667,1,1,4,1,4,1,2,2,6,1,8,4,4,4,4.6,3,5,1,1,3,3,2.6,1,4,6,3,2,5,4,3.5,2,2,8,3,1,3,7,3.16666666666667,2,0,1,0,-3,1,1,0.166666666666667,3,-4,7,3,1,1,2,-1,2,-2,0,1,2,-3,0.333333333333333,0.833333333333333,-0.333333333333333,1.125,3,0,1,0.8,0.9,0,1,2,-2,-2,-1,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Female,1,High School (or equivalent),HS_TS,20,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,3,4,5,7,1,1,3,4,7,2,6,5,5,6,8,7,3,4,2,1,1,6,8,4,5,7,2,3,1,4,3,6,2,5,7,6,2,5,8,3,4,7,1,5,7,8,2,3,4,9,1,6,3,2,4,1,2,2,1,1 +386,68.145.152.10,R_5fH7YriYxeG4Bim,self,02PVF,past,0,0,2,0,0,1,0,4,2,0,0,1,3,0,0,1,2,2,4,1,0,0,0,0,0,0,0,2,1,0,0,4,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,2,0,0,1,0,0.5,0,0,0,0,0,0,0,0,4,2,0,0,1,3,1.4,2,1,0,0,4,1,1.4,0,0,1,2,2,4,1,1.5,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0.5,2,1,0,0,-3,2,0,0,0,1,2,2,4,1,1.5,0.666666666666667,1,0.5,2,0,0.4,0.4,0.4,-1,1,2,-1,0,1,-1,1,5 cents,25 minutes,47 days,5,8,Richard is as tall as Matt,53,Wednesday,C,E,B,C,E,Male,0,High School (or equivalent),HS_TS,25,25 - 31,Canadian,Male,1,,,1,,1,,5,1,8,7,4,3,2,6,4,3,7,1,6,2,5,5,6,3,7,8,1,2,4,1,2,5,8,6,4,3,7,4,5,1,3,2,7,6,5,2,6,4,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,4,9,5,3,6,1,2,3,4,2,1,1,0,-1,1 +387,172.58.120.144,R_5HRg2amxN9F3wsG,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,2,4,7,3,5,3,3,4,4,4,2,6,5,5,2,5,5,5,5,4,5,5,5,5,5,5,5,6,4,4,5,4,3,3,3,3,2,1,4,5,5-9,2,2,4,7,3,5,3,3,4,5,5,5,5,5,5,5,5,4,4,4,2,6,5,4,6,4,4,5,4,3,4.6,5,2,5,5,5,5,4,4.5,3,3,3,2,1,4,5,2.66666666666667,-3,-1,2,-2,0,-2,-2,-1,-2,0,0,-3,2,2,-0.6,2,-1,2,3,4,1,-1,1.83333333333333,0.0777777777777778,-0.333333333333333,0,0,3,0.2,0.2,0.2,0,0,0,-1,1,0,0,0,10 cents,100 minutes,24 days,7,10,Richard is as tall as Matt,47,Tuesday,C,B,E,B,F,Female,1,High School (or equivalent),HS_TS,18,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,2,3,7,1,1,5,4,7,6,2,3,3,4,8,6,7,5,2,1,1,6,8,5,2,3,7,4,1,5,3,2,4,6,7,3,5,4,8,7,2,6,1,2,9,6,7,5,3,4,1,8,3,4,2,1,1,-1,0,0 +388,98.188.174.46,R_5pxtmR0BAzQUOXi,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10-14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,3,1,0.4,0.7,1,1,2,1,1,-2,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,A,C,Female,1,High School (or equivalent),HS_TS,21,18 - 24,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,4,7,2,1,1,6,4,7,5,2,3,6,5,8,2,4,7,3,1,1,4,8,5,6,2,7,3,1,5,6,2,3,4,7,2,3,6,8,4,5,7,1,3,4,6,9,7,2,8,1,5,4,3,2,1,-1,-1,2,2 +389,108.162.167.39,R_6zAweMChNFT1Lm7,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,10,0,5,2,6,3,3,4,7,2,6,1,2,3,1,6,9,0,3,3,10,0,6,2,6,5,2,3,7,5,0,3,2,5,4,3,2,2,2,2,10-14,2,10,0,5,2,6,3,3,4.33333333333333,10,0,6,2,6,5,2,4.83333333333333,4,7,2,6,1,2,4,3,7,5,0,3,2,3.6,3,1,6,9,0,3,3,3.66666666666667,5,4,3,2,2,2,2,3,0,0,-1,0,0,-2,1,-0.5,1,0,-3,6,-2,0,0.4,-2,-3,3,7,-2,1,1,0.666666666666667,0.188888888888889,0.666666666666667,0.625,2,1,0.2,1,0.6,0,1,2,-2,-2,0,1,-1,5 cents,100 minutes,47 days,4,9,Richard is taller than Matt,47,Monday,D,E,B,B,D,Male,0,University - Graduate (Masters),grad_prof,32,32 - 38,Canadian,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,3,2,4,5,1,1,2,6,7,3,5,4,5,2,8,4,6,3,7,1,1,3,8,4,5,6,2,7,1,3,6,4,5,2,7,6,3,4,8,2,7,5,1,6,5,7,8,3,9,4,1,2,4,2,3,1,2,2,0,-1 +390,192.139.122.26,R_5jd0PLutNEvdjMJ,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.375,1,2,1,0.4,0.7,1,2,1,-2,1,-2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,C,Male,0,University - Undergraduate,C_Ug,43,39 - 45,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,2,5,6,4,1,1,2,5,7,4,3,6,6,2,8,7,5,3,4,1,1,3,8,4,2,7,6,5,1,5,2,4,6,3,7,5,6,4,8,2,3,7,1,4,3,8,7,6,2,5,1,9,3,2,4,1,2,-1,2,2 +391,67.71.90.140,R_1V4QW9S2LiT2ZEd,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,9,5,7,6,7,6,5,6,5,7,6,6,4,1,7,2,1,1,4,2,5,6,7,8,5,8,6,6,7,5,8,6,6,7,5,7,7,6,6,6,20+,2,9,5,7,6,7,6,5,6.66666666666667,5,6,7,8,5,8,6,6.5,6,5,7,6,6,4,6,6,7,5,8,6,6,6.4,1,7,2,1,1,4,2,2.66666666666667,7,5,7,7,6,6,6,6.33333333333333,4,-1,0,-2,2,-2,-1,0.166666666666667,0,-2,2,-2,0,-2,-0.4,-6,2,-5,-6,-5,-2,-4,-3.66666666666667,-1.3,-2.33333333333333,1.125,1,1,1,0.4,0.7,1,2,0,-2,-1,-1,-2,0,10 cents,5 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,D,D,F,Female,1,College Diploma/Certificate,C_Ug,48,46 - 52,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,4,7,5,2,1,1,2,4,7,3,6,5,2,3,8,4,7,5,6,1,1,5,8,6,3,2,4,7,1,4,6,5,3,2,7,3,5,7,8,2,4,6,1,5,9,3,4,7,2,8,1,6,3,2,4,1,2,1,1,2 +392,8.9.95.52,R_5FLCzsLNfvMQWq1,self,02PVF,future,3,4,4,6,3,4,4,6,4,5,3,3,5,4,6,5,3,2,6,3,4,5,4,4,3,5,3,4,3,3,2,3,5,3,2,5,4,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,6,3,4,4,4,4,5,4,4,3,5,3,4.16666666666667,6,4,5,3,3,5,4.2,4,3,3,2,3,5,3,4,6,5,3,2,6,3,4.33333333333333,3,2,5,4,2,4,3,3.33333333333333,-1,-1,0,2,0,-1,1,-0.166666666666667,2,1,2,1,0,0,1.2,1,4,0,-1,0,2,0,1,0.677777777777778,0.333333333333333,0.125,3,0,1,0.4,0.7,0,0,0,-1,1,0,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,A,B,A,Female,1,University - Graduate (Masters),grad_prof,50,46 - 52,American,Female,1,,,1,,,1,4,1,8,6,3,5,2,7,3,6,7,1,2,5,4,7,5,2,3,8,1,4,6,1,3,4,8,6,5,7,2,3,6,1,2,5,7,4,4,7,6,2,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,7,9,4,8,1,6,4,3,2,1,1,-1,0,1 +393,72.225.10.191,R_6PHzxeHQoj4VUPn,self,02PVF,past,1,0,1,0,1,2,1,10,8,5,10,0,6,6,8,8,8,3,6,3,1,0,0,0,2,0,0,5,0,0,2,0,1,1,0,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,1,0,1,2,1,0.833333333333333,1,0,0,0,2,0,0,0.5,10,8,5,10,0,6,6.6,5,0,0,2,0,1,1.4,6,8,8,8,3,6,3,6.5,1,0,1,1,2,1,1,1,0,0,1,0,-1,2,1,0.333333333333333,5,8,5,8,0,5,5.2,5,8,7,7,1,5,2,5.5,3.67777777777778,2.66666666666667,0.75,0,3,0.4,0.6,0.5,1,0,0,-2,0,0,-2,1,10 cents,100 minutes,24 days,4,7,It's impossible to tell,57,Sunday,D,A,B,B,F,Male,0,University - Undergraduate,C_Ug,55,53 - 59,American,Male,1,,,1,,1,,6,1,8,4,3,5,2,7,6,5,7,1,4,3,2,2,4,6,7,8,1,3,5,1,3,7,8,6,2,4,5,3,4,1,2,6,7,5,2,7,6,5,4,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,3,4,2,5,8,1,9,4,3,2,1,2,0,0,2 +394,24.57.143.238,R_3eKqYIzGF1s2Hh1,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,10,8,2,4,5,2,2,6,2,4,2,2,6,6,2,2,8,5,4,2,6,6,2,4,2,2,1,6,1,2,2,2,4,8,1,1,8,2,20+,2,2,2,10,8,2,4,5,4.66666666666667,4,2,6,6,2,4,2,4,2,2,6,2,4,2,3.2,2,1,6,1,2,2,2.4,2,6,6,2,2,8,5,4.33333333333333,2,4,8,1,1,8,2,4,-2,0,4,2,0,0,3,0.666666666666667,0,1,0,1,2,0,0.8,0,2,-2,1,1,0,3,0.333333333333333,0.6,2,1.375,2,0,0.8,0.4,0.6,0,2,2,-2,-1,-1,-2,1,5 cents,5 minutes,15 days,5,7,It's impossible to tell,47,Sunday,D,B,D,E,D,Female,1,University - Graduate (Masters),grad_prof,52,46 - 52,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,3,5,2,7,1,1,4,5,7,2,3,6,3,2,8,4,7,5,6,1,1,2,8,7,4,3,5,6,1,6,2,4,3,5,7,7,3,5,8,4,6,2,1,4,9,6,8,3,5,2,1,7,2,4,3,1,2,1,1,2 +395,173.252.52.111,R_3VdN2gLDMhsYZ4k,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,0,0,0,0,2,2,2,10,4,0,2,1,0,2,0,0,1,3,2,1,0,0,0,0,0,1,2,0,0,0,0,0,0,3,0,10,0,0,0,20+,2,3,0,0,0,0,2,2,0.833333333333333,1,0,0,0,0,0,1,0.166666666666667,2,10,4,0,2,1,3.6,2,0,0,0,0,0,0.4,0,2,0,0,1,3,2,1,0,3,0,10,0,0,0,2.16666666666667,2,0,0,0,0,2,1,0.666666666666667,0,10,4,0,2,1,3.2,0,-1,0,-10,1,3,2,-1.16666666666667,0.9,1.33333333333333,1,0,3,1,0.2,0.6,0,2,2,-1,0,0,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,E,D,B,Female,1,University - Undergraduate,C_Ug,49,46 - 52,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,2,3,5,7,1,1,5,6,7,2,4,3,6,7,8,2,3,4,5,1,1,6,8,7,4,2,3,5,1,4,2,3,6,5,7,5,2,3,8,6,7,4,1,8,4,6,5,9,3,2,1,7,4,3,2,1,1,0,0,2 +396,172.58.0.105,R_3eJq3TLILK6QKSv,self,02PVF,past,5,1,10,10,5,1,10,8,10,7,1,10,8,10,10,10,1,5,1,10,10,1,10,6,1,1,5,10,10,5,1,10,5,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,10,10,5,1,10,5.33333333333333,10,1,10,6,1,1,5,4.83333333333333,8,10,7,1,10,8,7.2,10,10,5,1,10,5,7.2,10,10,10,1,5,1,10,6.16666666666667,1,1,1,1,1,1,1,1,-5,0,0,4,4,0,5,0.5,-2,0,2,0,0,3,0,9,9,9,0,4,0,9,5.16666666666667,1.88888888888889,5.66666666666667,1,0,2,0,0.6,0.3,1,1,1,-2,1,-1,-2,1,10 cents,25 minutes,24 days,4,10,Richard is taller than Matt,53,Tuesday,D,D,B,B,F,Female,1,University - Undergraduate,C_Ug,47,46 - 52,American,Female,1,,,1,,1,,3,1,8,5,7,2,4,6,5,6,7,1,3,2,4,4,6,3,2,8,1,5,7,1,6,2,8,5,4,7,3,2,5,1,4,3,7,6,4,3,5,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2,6,3,4,5,7,1,8,4,3,2,1,2,-1,1,2 +397,64.203.50.157,R_5pwLnc9yoHKUWJ3,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,3,1,1,4,1,2,1,1,4,1,4,6,5,1,1,1,1,1,2,2,2,1,5,1,2,1,1,1,1,1,2,3,1,1,1,1,2,4,1,1,20+,1,3,1,1,4,1,2,1,2,2,1,5,1,2,1,1,2,1,4,1,4,6,5,3.2,1,1,1,2,3,1,1.6,1,1,1,1,1,2,2,1.16666666666667,1,1,1,2,4,1,1,1.66666666666667,1,0,-4,3,-1,1,0,0,0,3,0,2,3,4,1.6,0,0,0,-1,-3,1,1,-0.5,0.366666666666667,1.66666666666667,0.5,0,3,1,0.2,0.6,1,1,1,-1,0,0,0,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,C,E,C,Female,1,College Diploma/Certificate,C_Ug,49,46 - 52,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,4,2,6,3,1,1,2,5,7,4,6,3,4,3,8,6,2,5,7,1,1,4,8,5,3,6,2,7,1,6,4,5,2,3,7,6,2,7,8,4,5,3,1,3,4,9,2,7,6,8,1,5,4,3,2,1,1,0,0,0 +398,71.250.85.11,R_1dn43ob5ZmYI0bS,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Dislike somewhat,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,4,4,6,0,10-14,-1,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,6,0,2.33333333333333,0,0,0,-4,-5,0,0,-1.5,0,0,0,0,0,0,0,0,0,0,-4,-4,-6,0,-2.33333333333333,-1.27777777777778,0,0.125,0,3,0.8,0.2,0.5,-1,0,0,-2,1,0,-1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Tuesday,A,B,B,F,C,Female,1,College Diploma/Certificate,C_Ug,43,39 - 45,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,4,2,3,5,1,1,5,3,7,2,4,6,7,4,8,3,5,6,2,1,1,5,8,2,7,4,6,3,1,2,4,5,3,6,7,4,2,3,8,6,5,7,1,7,5,8,9,6,4,3,1,2,4,3,2,1,2,-1,0,1 +399,24.102.244.88,R_3g1Ou3iWHxnVHNb,self,03VFP,past,6,0,0,2,3,0,1,1,6,1,3,4,2,0,0,0,3,4,4,1,4,0,0,1,1,1,1,1,4,1,2,1,2,0,0,0,5,5,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,0,0,2,3,0,1,1.83333333333333,4,0,0,1,1,1,1,1.16666666666667,1,6,1,3,4,2,3,1,4,1,2,1,2,1.8,0,0,0,3,4,4,1,1.83333333333333,0,0,0,5,5,1,2,1.83333333333333,2,0,0,1,2,-1,0,0.666666666666667,0,2,0,1,3,0,1.2,0,0,0,-2,-1,3,-1,0,0.622222222222222,-0.333333333333333,1.375,0,3,1,0.6,0.8,1,1,2,-2,-1,-2,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,B,B,F,Male,0,University - Undergraduate,C_Ug,57,53 - 59,American,Male,1,,,,1,1,,6,1,8,3,7,4,2,5,2,6,7,1,5,3,4,4,7,3,5,8,1,2,6,1,2,7,8,4,5,6,3,5,3,1,2,4,7,6,3,4,6,5,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,9,2,7,5,3,1,8,4,2,3,1,2,1,2,2 +400,98.97.137.6,R_5Lek5PdC1LGFrLb,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Neither like nor dislike,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,15-19,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0.2,0.2,0.2,0,0,0,0,0,0,0,0,10 cents,25 minutes,24 days,5,12,Richard is taller than Zach,53,Wednesday,E,C,B,C,C,Male,0,University - Undergraduate,C_Ug,53,53 - 59,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,5,3,6,2,1,1,3,4,7,5,2,6,6,5,8,7,3,2,4,1,1,4,8,6,3,2,5,7,1,6,5,3,4,2,7,6,3,2,8,7,5,4,1,6,5,9,4,8,2,7,1,3,4,3,2,1,0,0,0,0 +401,173.238.78.187,R_3Qh1bIVKAUw3eXD,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,4,4,5,6,6,3,6,6,5,4,4,5,5,6,5,4,6,5,7,5,6,5,4,4,5,5,4,4,5,5,4,6,3,6,6,6,6,4,5,6,10-14,2,4,4,5,6,6,3,6,4.66666666666667,6,5,4,4,5,5,4,4.83333333333333,6,5,4,4,5,5,4.8,4,5,5,4,6,3,4.8,6,5,4,6,5,7,5,5.5,6,6,6,6,4,5,6,5.5,-2,-1,1,2,1,-2,2,-0.166666666666667,2,0,-1,0,-1,2,0,0,-1,-2,0,1,2,-1,0,-0.0555555555555556,1,0.5,0,3,0.2,0.4,0.3,1,0,0,-1,0,-1,0,1,10 cents,100 minutes,24 days,5,12,Richard is as tall as Matt,35,Tuesday,D,E,D,C,E,Female,1,High School (or equivalent),HS_TS,18,18 - 24,Canadian,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,5,3,2,6,1,1,3,5,7,4,2,6,5,7,8,2,3,6,4,1,1,4,8,2,7,6,3,5,1,3,4,6,5,2,7,4,7,5,8,2,3,6,1,4,8,5,2,7,3,6,1,9,3,4,2,1,1,0,1,0 +402,73.168.75.51,R_1kmJHoPDpOYpIpq,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,2,2,1,5,2,1,3,2,2,2,4,4,4,4,5,5,5,8,2,5,1,2,2,5,2,5,5,8,7,2,7,5,8,8,2,2,9,9,2,7,20+,1,2,2,1,5,2,1,3,2.16666666666667,1,2,2,5,2,5,5,2.83333333333333,2,2,2,4,4,4,2.8,8,7,2,7,5,8,5.8,4,5,5,5,8,2,5,4.83333333333333,8,2,2,9,9,2,7,5.33333333333333,1,0,-1,0,0,-4,-2,-0.666666666666667,-6,-5,0,-3,-1,-4,-3,-4,3,3,-4,-1,0,-2,-0.5,-1.38888888888889,-2.66666666666667,0.625,0,3,0,0.2,0.1,2,1,1,0,1,1,-1,2,10 cents,100 minutes,24 days,4,7,Richard is shorter than Matt,39,Tuesday,C,B,D,B,F,Male,0,Trade School,HS_TS,55,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,8,2,3,5,6,1,1,6,5,7,4,3,2,3,7,8,6,2,4,5,1,1,3,8,5,7,2,4,6,1,5,2,3,6,4,7,6,7,5,8,2,4,3,1,7,4,3,9,5,6,8,1,2,3,4,2,1,0,-1,-1,1 +403,70.92.175.225,R_3v7hTpxvuMrbgCF,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,2,1,2,1,2,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,15-19,2,2,1,2,1,2,0,1,1.33333333333333,2,0,0,1,0,0,0,0.5,0,0,0,0,1,1,0.2,0,0,0,0,1,0,0.2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0.166666666666667,0,1,2,0,2,0,1,0.833333333333333,0,0,0,0,0,1,0,0,0,-1,0,0,0,0,-0.166666666666667,0.222222222222222,0.666666666666667,0.25,0,3,0.2,0.2,0.2,0,2,2,-2,2,2,2,2,10 cents,100 minutes,24 days,5,12,Richard is as tall as Matt,39,Monday,E,B,D,D,D,Female,1,College Diploma/Certificate,C_Ug,44,39 - 45,American,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,5,6,2,1,1,6,4,7,5,2,3,4,7,8,3,6,2,5,1,1,6,8,2,4,7,3,5,1,2,5,4,3,6,7,6,5,3,8,7,2,4,1,8,3,5,9,4,2,7,1,6,2,3,4,1,2,-2,-2,-2 +404,98.43.192.81,R_6EaIUClpubFnSRP,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,8,1,1,4,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,3,1,2,2,1,0,0,0,0,0,1,0,20+,2,1,1,1,8,1,1,4,2.16666666666667,1,1,1,1,0,1,0,0.833333333333333,1,1,1,0,0,0,0.6,1,3,1,2,2,1,1.8,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0.166666666666667,0,0,0,7,1,0,4,1.33333333333333,0,-2,0,-2,-2,-1,-1.2,1,1,1,1,1,0,1,0.833333333333333,0.322222222222222,1.33333333333333,0.625,3,0,1,0,0.5,2,2,0,-2,0,0,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,D,C,C,A,Male,0,University - Undergraduate,C_Ug,49,46 - 52,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,2,6,3,7,1,1,6,5,7,3,2,4,6,5,8,7,3,4,2,1,1,4,8,7,6,2,5,3,1,6,3,5,2,4,7,4,5,2,8,6,7,3,1,3,8,9,5,7,2,4,1,6,2,3,4,1,2,0,0,0 +405,173.206.16.114,R_3QWN691vvWo8CFn,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,9,8,8,8,9,8,8,8,8,8,8,8,8,8,8,8,9,8,9,8,7,8,8,6,8,8,8,8,7,8,8,9,8,8,8,8,9,8,9,8,10-14,1,9,8,8,8,9,8,8,8.33333333333333,7,8,8,6,8,8,8,7.5,8,8,8,8,8,8,8,8,7,8,8,9,8,8,8,8,8,9,8,9,8,8.33333333333333,8,8,8,9,8,9,8,8.33333333333333,2,0,0,2,1,0,0,0.833333333333333,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0.277777777777778,0,0.25,0,2,0.6,0,0.3,1,1,2,1,1,1,1,2,10 cents,100 minutes,36 days,5,8,Richard is shorter than Matt,47,Tuesday,B,B,C,D,B,Male,0,University - Undergraduate,C_Ug,26,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,7,6,2,5,1,1,6,3,7,4,2,5,5,2,8,6,3,4,7,1,1,6,8,3,5,7,4,2,1,6,2,5,4,3,7,6,2,3,8,5,7,4,1,7,6,4,8,5,2,3,1,9,4,2,3,1,-1,-1,-1,-1 +406,67.208.31.167,R_7R1SLdgqNYtRdUg,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,8,4,6,7,6,6,6,8,7,8,7,7,7,3,5,8,2,7,7,4,7,6,7,3,6,6,3,6,7,6,6,6,6,7,6,6,6,4,7,6,20+,2,8,4,6,7,6,6,6,6.16666666666667,7,6,7,3,6,6,3,5.83333333333333,8,7,8,7,7,7,7.4,6,7,6,6,6,6,6.2,3,5,8,2,7,7,4,5.33333333333333,7,6,6,6,4,7,6,6,1,-2,-1,4,0,0,3,0.333333333333333,2,0,2,1,1,1,1.2,-4,-1,2,-4,3,0,-2,-0.666666666666667,0.288888888888889,0.666666666666667,0.25,0,3,0.2,0,0.1,1,1,1,-1,1,1,-1,-1,10 cents,100 minutes,24 days,4,11,It's impossible to tell,57,Saturday,A,B,F,E,A,Male,0,University - Undergraduate,C_Ug,30,25 - 31,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,5,2,7,3,1,1,5,2,7,6,3,4,2,4,8,6,5,3,7,1,1,7,8,2,4,3,5,6,1,4,5,2,6,3,7,7,2,3,8,6,4,5,1,3,7,8,4,2,6,5,1,9,4,3,2,1,1,-1,-1,1 +407,97.70.193.27,R_6yM0L86NkF7PuN3,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,1,3,1,1,1,1,2,1,1,1,1,2,3,2,1,1,1,1,2,1,2,1,2,2,1,3,2,3,2,2,2,2,1,2,3,2,2,2,2,10-14,2,2,1,3,1,1,1,1,1.5,1,2,1,2,2,1,3,1.5,2,1,1,1,1,2,1.2,2,3,2,2,2,2,2.2,3,2,1,1,1,1,2,1.5,1,2,3,2,2,2,2,2,1,-1,2,-1,-1,0,-2,0,0,-2,-1,-1,-1,0,-1,2,0,-2,-1,-1,-1,0,-0.5,-0.5,-0.666666666666667,-0.125,3,0,1,0.6,0.8,0,-1,-1,-1,1,0,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,D,B,Male,0,University - Undergraduate,C_Ug,23,18 - 24,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,2,4,1,1,4,6,7,2,5,3,4,6,8,5,7,3,2,1,1,4,8,3,7,2,6,5,1,6,4,2,5,3,7,4,7,6,8,3,2,5,1,5,7,4,8,3,6,9,1,2,2,4,3,1,1,-1,0,0 +408,99.192.124.197,R_3A4BpmGsewhTpOV,self,03VFP,future,0,3,0,2,2,5,3,3,2,3,3,3,3,0,5,0,5,5,6,3,0,5,1,5,2,4,3,4,1,5,3,2,3,0,5,0,0,3,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,3,0,2,2,5,3,2,0,5,1,5,2,4,3,2.83333333333333,3,2,3,3,3,3,2.8,4,1,5,3,2,3,3,0,5,0,5,5,6,3,3.5,0,5,0,0,3,6,3,2.33333333333333,0,-2,-1,-3,0,1,0,-0.833333333333333,-1,1,-2,0,1,0,-0.2,0,0,0,5,2,0,0,1.16666666666667,0.0444444444444445,0,0.75,1,2,1,0.6,0.8,1,1,1,-1,1,-1,-1,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,F,B,B,Male,0,College Diploma/Certificate,C_Ug,31,25 - 31,Canadian,Male,1,,,,1,,1,7,1,8,6,3,4,2,5,5,4,7,1,6,2,3,6,2,7,5,8,1,3,4,1,4,7,8,5,2,3,6,5,3,1,4,6,7,2,6,5,2,3,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,5,9,7,2,1,8,3,2,4,1,1,-1,1,1 +409,74.56.27.249,R_5FXFgGNV9QGmhgZ,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like somewhat,9,8,2,9,3,8,6,1,1,2,2,1,2,2,5,2,2,2,8,3,6,5,1,7,1,3,4,1,1,2,2,1,1,2,2,4,1,3,2,2,10-14,1,9,8,2,9,3,8,6,6.5,6,5,1,7,1,3,4,3.83333333333333,1,1,2,2,1,2,1.4,1,1,2,2,1,1,1.4,2,5,2,2,2,8,3,3.5,2,2,4,1,3,2,2,2.33333333333333,3,3,1,2,2,5,2,2.66666666666667,0,0,0,0,0,1,0,0,3,-2,1,-1,6,1,1.16666666666667,1.27777777777778,1.33333333333333,0.875,0,3,1,0.2,0.6,1,2,1,-2,1,0,-1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,A,F,B,Male,0,College Diploma/Certificate,C_Ug,25,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,2,7,4,1,1,5,4,7,3,2,6,5,4,8,7,3,6,2,1,1,6,8,3,2,5,4,7,1,2,6,5,4,3,7,3,6,7,8,4,5,2,1,5,2,3,6,9,7,4,1,8,4,2,3,1,2,-1,0,1 +410,142.134.226.145,R_6OI1mDql1ScXJHO,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,3,4,6,5,5,4,6,7,0,4,2,4,1,3,3,4,4,3,5,4,3,6,4,2,6,3,6,7,0,6,1,4,0,0,8,6,6,6,6,3,10-14,2,3,4,6,5,5,4,6,4.5,3,6,4,2,6,3,6,4,7,0,4,2,4,1,3.4,7,0,6,1,4,0,3.6,3,3,4,4,3,5,4,3.66666666666667,0,8,6,6,6,6,3,5.33333333333333,0,-2,2,3,-1,1,0,0.5,0,0,-2,1,0,1,-0.2,3,-5,-2,-2,-3,-1,1,-1.66666666666667,-0.455555555555556,0.666666666666667,-0.375,1,2,0.4,0.4,0.4,-2,-2,0,-2,1,0,0,0,10 cents,5 minutes,24 days,5,7,It's impossible to tell,35,Saturday,D,C,C,B,F,Female,1,University - Graduate (Masters),grad_prof,31,25 - 31,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,6,3,5,4,1,1,6,3,7,5,2,4,4,5,8,3,2,6,7,1,1,4,8,7,5,2,6,3,1,3,6,5,2,4,7,7,6,4,8,2,5,3,1,7,9,3,6,4,2,8,1,5,4,3,2,1,2,-1,0,0 +411,24.36.110.149,R_3S8dKCJT2AZlpzb,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,2,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,5,0,0,2,0,0,0,0,5,2,0,0,0,0,0,0,0,20+,2,0,2,0,2,1,0,1,0.833333333333333,0,2,3,5,0,0,2,1.66666666666667,0,0,0,0,0,0,0,0,0,0,0,5,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-3,1,0,-1,-0.833333333333333,0,0,0,0,-5,-2,-1,0,0,0,0,0,0,0,0,-0.611111111111111,-1,2,3,0,1,0.4,0.7,2,2,2,-2,-2,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,E,B,A,Female,1,University - Undergraduate,C_Ug,28,25 - 31,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,3,4,5,2,1,1,2,6,7,3,4,5,7,6,8,3,2,4,5,1,1,3,8,6,4,2,5,7,1,4,2,5,3,6,7,7,2,5,8,6,3,4,1,9,5,8,4,7,6,3,1,2,3,2,4,1,2,2,2,2 +412,69.232.41.217,R_7AMuxZJzTVlrQgW,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,6,8,5,8,6,3,6,0,0,0,9,0,1,5,0,0,9,0,0,0,8,5,6,2,3,7,7,6,6,7,9,9,3,6,7,9,6,8,5,9,5-9,2,6,8,5,8,6,3,6,6,8,5,6,2,3,7,7,5.16666666666667,0,0,0,9,0,1,1.8,6,6,7,9,9,3,7.4,5,0,0,9,0,0,0,2.33333333333333,6,7,9,6,8,5,9,6.83333333333333,-2,3,-1,6,3,-4,-1,0.833333333333333,-6,-6,-7,0,-9,-2,-5.6,-1,-7,-9,3,-8,-5,-9,-4.5,-3.08888888888889,-4,0.375,0,3,0,0.2,0.1,1,2,-1,-2,-1,1,-1,-2,10 cents,100 minutes,24 days,6,10,Richard is as tall as Matt,39,Saturday,D,B,E,C,F,Female,1,University - Graduate (Masters),grad_prof,24,18 - 24,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,5,4,6,2,1,1,4,6,7,5,3,2,5,4,8,7,6,3,2,1,1,4,8,7,5,6,2,3,1,4,6,2,3,5,7,7,2,6,8,3,5,4,1,3,7,2,4,5,8,6,1,9,3,2,4,1,2,1,-1,1 +413,35.147.98.47,R_6SHyHM0QnE1W8cU,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,3,2,4,4,4,4,5,5,4,1,5,3,3,3,4,1,4,3,2,3,3,1,5,3,3,2,3,5,2,2,5,2,4,6,4,3,1,3,5,4,5-9,2,3,2,4,4,4,4,5,3.5,3,1,5,3,3,2,3,2.83333333333333,5,4,1,5,3,3,3.6,5,2,2,5,2,4,3.2,3,4,1,4,3,2,3,2.83333333333333,6,4,3,1,3,5,4,3.66666666666667,0,1,-1,1,1,2,2,0.666666666666667,0,2,-1,0,1,-1,0.4,-3,0,-2,3,0,-3,-1,-0.833333333333333,0.0777777777777778,0,0.75,3,0,0.8,0,0.4,1,1,1,-2,-1,0,0,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,F,D,F,F,A,Female,1,College Diploma/Certificate,C_Ug,21,18 - 24,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,4,2,7,1,1,4,6,7,3,2,5,7,2,8,4,3,6,5,1,1,4,8,5,2,7,3,6,1,3,6,2,4,5,7,3,7,5,8,4,2,6,1,3,4,9,2,5,7,8,1,6,3,4,2,1,2,1,0,0 +414,98.48.179.84,R_6Kgc1zEBXD7tYsI,self,03VFP,past,10,1,2,9,3,4,8,0,10,1,10,10,6,7,10,10,1,10,8,7,9,1,2,9,1,6,3,2,10,8,9,3,8,10,6,10,3,10,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,1,2,9,3,4,8,4.83333333333333,9,1,2,9,1,6,3,4.66666666666667,0,10,1,10,10,6,6.2,2,10,8,9,3,8,6.4,7,10,10,1,10,8,7,7.66666666666667,10,6,10,3,10,4,5,7.16666666666667,1,0,0,0,2,-2,5,0.166666666666667,-2,0,-7,1,7,-2,-0.2,-3,4,0,-2,0,4,2,0.5,0.155555555555556,1.66666666666667,1,0,3,0.8,0.4,0.6,1,2,2,-1,1,-2,-2,-1,10 cents,100 minutes,24 days,6,8,It's impossible to tell,47,Sunday,D,E,F,A,C,Male,0,High School (or equivalent),HS_TS,24,18 - 24,American,Male,1,,,,1,1,,7,1,8,5,2,6,4,3,2,4,7,1,5,6,3,2,4,5,3,8,1,6,7,1,5,7,8,3,2,6,4,4,5,1,6,2,7,3,7,5,4,3,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,7,6,4,2,5,1,8,2,4,3,1,1,-1,2,2 +415,172.56.188.226,R_1L8eEleGH0UKknX,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,3,3,0,1,1,2,0,0,2,0,0,3,0,0,0,0,0,0,0,2,3,2,0,3,3,3,0,0,0,0,2,0,0,3,4,0,1,2,1,20+,2,3,3,3,0,1,1,2,1.83333333333333,2,3,2,0,3,3,3,2.16666666666667,0,0,2,0,0,3,0.4,0,0,0,0,2,0,0.4,0,0,0,0,0,0,0,0,0,3,4,0,1,2,1,1.66666666666667,1,0,1,0,-2,-2,-1,-0.333333333333333,0,0,2,0,-2,3,0,0,-3,-4,0,-1,-2,-1,-1.66666666666667,-0.666666666666667,0.333333333333333,0.875,3,0,1,1,1,0,2,1,-2,-1,1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Male,0,University - Undergraduate,C_Ug,24,18 - 24,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,6,5,2,7,1,1,2,5,7,3,4,6,2,3,8,6,7,5,4,1,1,7,8,4,2,6,5,3,1,6,4,5,3,2,7,6,3,7,8,2,5,4,1,4,5,3,6,2,9,7,1,8,2,4,3,1,2,1,-1,2 +416,223.29.130.245,R_5VD4KJHMcXWdzOi,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,5,4,1,3,3,3,2,6,3,7,6,3,3,6,4,6,7,5,6,7,6,6,5,5,7,6,5,5,3,4,4,5,6,7,7,6,5,6,8,6,10-14,1,5,4,1,3,3,3,2,3.16666666666667,6,6,5,5,7,6,5,5.83333333333333,6,3,7,6,3,3,5,5,3,4,4,5,6,4.2,6,4,6,7,5,6,7,5.66666666666667,7,7,6,5,6,8,6,6.5,-1,-2,-4,-2,-4,-3,-3,-2.66666666666667,1,0,3,2,-2,-3,0.8,-1,-3,0,2,-1,-2,1,-0.833333333333333,-0.9,-1.66666666666667,0.75,1,2,0.8,0.6,0.7,1,0,1,-2,-2,0,1,1,5 cents,100 minutes,24 days,5,8,It's impossible to tell,44,Sunday,D,C,B,B,B,Male,0,University - Undergraduate,C_Ug,24,18 - 24,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,7,2,3,4,1,1,5,3,7,2,4,6,4,7,8,6,3,2,5,1,1,5,8,7,2,6,4,3,1,4,3,6,2,5,7,4,3,2,8,6,5,7,1,4,6,7,3,2,9,5,1,8,3,4,2,1,2,2,0,-1 +417,185.113.181.31,R_5FFcLoImbeOXa7d,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like somewhat,6,7,6,6,7,6,7,6,6,7,7,6,8,6,7,7,6,6,5,6,4,6,5,6,5,4,6,6,6,5,5,6,6,4,5,6,7,6,4,7,5-9,1,6,7,6,6,7,6,7,6.33333333333333,4,6,5,6,5,4,6,5,6,6,7,7,6,8,6.4,6,6,5,5,6,6,5.6,6,7,7,6,6,5,6,6.16666666666667,4,5,6,7,6,4,7,5.33333333333333,2,1,1,0,2,2,1,1.33333333333333,0,0,2,2,0,2,0.8,2,2,1,-1,0,1,-1,0.833333333333333,0.988888888888889,0.666666666666667,0.875,2,1,0.6,0.2,0.4,2,1,0,-2,0,-1,0,1,5 cents,100 minutes,47 days,5,8,Richard is as tall as Matt,47,Monday,F,C,B,D,C,Male,0,University - Undergraduate,C_Ug,21,18 - 24,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,3,2,7,1,1,4,5,7,2,3,6,3,4,8,6,2,7,5,1,1,7,8,2,3,6,5,4,1,6,2,5,3,4,7,4,2,6,8,5,3,7,1,2,3,8,6,5,7,9,1,4,2,4,3,1,2,0,1,0 +418,130.113.109.48,R_7e1dY5cjTtDeyGZ,self,01FPV,future,5,6,5,5,3,7,6,5,9,8,6,6,5,5,6,6,8,7,5,9,8,6,7,5,4,5,6,5,7,8,6,4,6,9,5,3,6,5,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,7,6,5.16666666666667,8,6,7,5,4,5,6,5.83333333333333,5,9,8,6,6,5,6.8,5,7,8,6,4,6,6,5,6,6,8,7,5,9,6.16666666666667,9,5,3,6,5,7,7,5.83333333333333,-3,0,-2,0,-1,2,0,-0.666666666666667,0,2,0,0,2,-1,0.8,-4,1,3,2,2,-2,2,0.333333333333333,0.155555555555556,0.333333333333333,0.125,0,3,1,0.2,0.6,0,0,1,1,1,0,0,2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,D,B,C,B,Female,1,University - Undergraduate,C_Ug,24,18 - 24,Canadian,Female,1,,1,,,,1,3,1,8,6,2,5,4,7,4,2,7,1,3,6,5,3,2,4,5,8,1,6,7,1,4,5,8,6,7,2,3,4,5,1,6,2,7,3,4,5,2,6,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,9,7,6,8,3,1,2,4,2,3,1,-1,-1,0,0 +419,97.64.116.142,R_1YE4Q3pxC6BcXTA,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,3,3,4,9,3,5,3,2,1,6,2,8,4,0,1,3,0,2,4,3,7,9,8,4,4,10,5,10,1,2,10,4,6,1,1,3,1,5,2,3,10-14,1,3,3,4,9,3,5,3,4.5,7,9,8,4,4,10,5,7,2,1,6,2,8,4,3.8,10,1,2,10,4,6,5.4,0,1,3,0,2,4,3,1.66666666666667,1,1,3,1,5,2,3,2.16666666666667,-4,-6,-4,5,-1,-5,-2,-2.5,-8,0,4,-8,4,-2,-1.6,-1,0,0,-1,-3,2,0,-0.5,-1.53333333333333,-1.33333333333333,1,0,3,0.8,0.8,0.8,1,1,1,-2,0,-1,-1,1,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,B,C,D,Female,1,University - Graduate (Masters),grad_prof,37,32 - 38,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,2,7,5,6,1,1,2,5,7,4,6,3,5,4,8,6,3,2,7,1,1,7,8,5,2,6,3,4,1,4,5,2,6,3,7,6,4,3,8,7,5,2,1,9,3,4,5,7,2,8,1,6,2,3,4,1,2,0,1,1 +420,69.58.32.211,R_1UWWJId1qYm83Vn,self,01FPV,future,7,1,7,7,2,7,5,5,5,5,6,5,5,7,5,5,5,5,5,4,7,2,7,7,8,8,6,6,6,6,7,7,6,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1,7,7,2,7,5,5.16666666666667,7,2,7,7,8,8,6,6.5,5,5,5,6,5,5,5.2,6,6,6,7,7,6,6.4,7,5,5,5,5,5,4,5.33333333333333,2,2,2,2,2,2,2,2,0,-1,0,0,-6,-1,-1,-1.33333333333333,-1,-1,-1,-1,-2,-1,-1.2,5,3,3,3,3,3,2,3.33333333333333,0.266666666666667,0,-0.375,0,3,1,0.2,0.6,-2,-2,-1,-2,-1,0,1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,A,D,A,B,F,Female,1,University - Graduate (Masters),grad_prof,40,39 - 45,American,Female,1,,1,,,,1,2,1,8,6,4,3,7,5,3,5,7,1,4,6,2,5,3,6,2,8,1,7,4,1,4,2,8,7,3,5,6,3,4,1,2,5,7,6,6,5,7,4,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,4,9,7,8,1,2,3,4,2,1,2,1,0,-1 +421,50.27.0.105,R_7EEgA0eaSpasrvx,self,01FPV,future,1,0,0,1,1,1,1,1,0,1,1,1,1,0,0,1,0,0,0,0,2,1,0,2,1,2,2,3,0,1,1,0,1,0,2,3,0,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,0,1,1,1,1,0.666666666666667,2,1,0,2,1,2,2,1.33333333333333,1,0,1,1,1,1,0.8,3,0,1,1,0,1,1,0,0,1,0,0,0,0,0.166666666666667,0,2,3,0,1,1,2,1.16666666666667,-1,-1,0,-1,0,-1,-1,-0.666666666666667,-2,0,0,0,1,0,-0.2,0,-2,-2,0,-1,-1,-2,-1,-0.622222222222222,-1,1.75,3,0,1,0.4,0.7,2,2,2,-2,-1,-1,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,B,E,D,D,D,Male,0,High School (or equivalent),HS_TS,45,39 - 45,American,Male,1,,1,,,,1,7,1,8,2,5,4,6,3,4,2,7,1,6,5,3,6,3,7,2,8,1,4,5,1,4,6,8,5,2,7,3,5,2,1,6,4,7,3,7,6,3,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,3,7,5,6,9,1,4,2,3,4,1,2,1,1,2 +422,71.197.6.198,R_7VdoFtj6jr0YNR5,self,03VFP,future,6,6,6,8,6,8,5,6,5,8,8,6,8,9,9,7,6,8,5,7,8,10,7,7,9,8,8,7,8,7,6,4,9,9,8,8,8,9,8,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,8,6,8,5,6.66666666666667,8,10,7,7,9,8,8,8.16666666666667,6,5,8,8,6,8,6.6,7,8,7,6,4,9,6.4,9,9,7,6,8,5,7,7.33333333333333,9,8,8,8,9,8,10,8.33333333333333,-2,-4,-1,1,-3,0,-3,-1.5,-1,-3,1,2,2,-1,0.2,0,1,-1,-2,-1,-3,-3,-1,-0.766666666666667,-2.33333333333333,0,0,3,0.2,0.2,0.2,1,1,1,1,1,2,-1,0,10 cents,100 minutes,24 days,4,10,Richard is taller than Matt,47,Saturday,D,D,D,F,B,Female,1,Professional Degree (ex. JD/MD),grad_prof,36,32 - 38,American,Female,1,,,,1,,1,3,1,8,6,4,5,2,7,4,2,7,1,3,5,6,4,5,7,2,8,1,6,3,1,5,7,8,6,4,2,3,3,6,1,2,4,7,5,2,6,7,4,3,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,7,4,6,9,2,1,8,3,2,4,1,-1,-1,-2,1 +423,38.56.137.140,R_3pNfwEOlOylPkZ3,self,02PVF,past,3,1,1,1,1,2,1,2,3,2,1,1,1,1,2,2,1,2,1,2,1,1,1,1,2,2,1,2,1,2,1,2,2,3,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,1,1,1,2,1,1.5,1,1,1,1,2,2,1,1.33333333333333,2,3,2,1,1,1,1.8,2,1,2,1,2,2,1.6,1,2,2,1,2,1,2,1.5,3,1,2,2,1,2,2,1.83333333333333,2,0,0,0,-1,0,0,0.166666666666667,0,2,0,0,-1,-1,0.2,-2,1,0,-1,1,-1,0,-0.333333333333333,0.0111111111111111,-0.333333333333333,0.25,0,2,0.4,0.2,0.3,-1,0,0,-2,-1,0,0,0,10 cents,25 minutes,24 days,2,11,It's impossible to tell,47,Tuesday,E,D,B,D,C,Male,0,University - Graduate (Masters),grad_prof,55,53 - 59,American,Male,1,,,1,,1,,6,1,8,3,7,5,4,2,5,4,7,1,2,6,3,4,2,6,7,8,1,5,3,1,7,6,8,5,4,3,2,6,4,1,2,5,7,3,4,2,6,3,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,2,8,7,9,1,6,2,3,4,1,2,1,0,0 +424,71.244.212.152,R_5eViwysYaSl4wEV,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,1,1,5,1,6,3,3,2,2,2,6,2,6,3,6,2,3,3,3,1,1,1,2,3,2,2,3,2,2,2,2,4,1,1,2,1,1,1,1,20+,2,1,1,1,5,1,6,3,2.5,1,1,1,2,3,2,2,1.66666666666667,3,2,2,2,6,2,3,3,2,2,2,2,4,2.2,6,3,6,2,3,3,3,3.83333333333333,1,1,2,1,1,1,1,1.16666666666667,0,0,0,3,-2,4,1,0.833333333333333,0,0,0,0,4,-2,0.8,5,2,4,1,2,2,2,2.66666666666667,1.43333333333333,0.333333333333333,0.75,2,1,0.4,0.6,0.5,0,1,0,-1,-1,-1,-1,1,10 cents,5 minutes,47 days,3,8,Richard is taller than Matt,47,Tuesday,D,D,B,B,C,Male,0,University - Undergraduate,C_Ug,38,32 - 38,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,6,2,7,1,1,5,4,7,6,2,3,7,2,8,6,3,5,4,1,1,6,8,5,3,4,2,7,1,2,4,3,5,6,7,2,4,6,8,3,7,5,1,7,3,9,2,5,6,4,1,8,4,2,3,1,1,1,1,1 +425,99.233.158.246,R_50UYiSlA41mNxIh,self,01FPV,past,6,7,7,5,6,5,6,8,5,6,5,7,5,6,6,6,5,6,6,6,6,7,6,5,6,5,6,5,5,6,5,5,5,5,4,6,6,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,6,5,6,6,6,7,6,5,6,5,6,5.83333333333333,8,5,6,5,7,5,6.2,5,5,6,5,5,5,5.2,6,6,6,5,6,6,6,5.83333333333333,5,4,6,6,7,6,6,5.66666666666667,0,0,1,0,0,0,0,0.166666666666667,3,0,0,0,2,0,1,1,2,0,-1,-1,0,0,0.166666666666667,0.444444444444444,0,-0.125,3,0,1,0.4,0.7,0,0,0,1,0,0,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,B,D,C,Male,0,College Diploma/Certificate,C_Ug,20,18 - 24,Canadian,Male,1,,1,,,1,,5,1,8,4,3,7,2,6,3,5,7,1,4,6,2,4,7,3,6,8,1,5,2,1,3,4,8,2,7,6,5,5,6,1,3,2,7,4,3,5,7,2,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,3,8,5,6,9,1,4,4,2,3,1,-1,0,0,-1 +426,47.219.242.246,R_7KVfUI5dgK72NHb,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like a great deal,6,5,6,6,3,4,4,6,5,4,4,2,4,2,1,1,0,0,4,1,5,5,6,6,2,4,6,6,1,6,1,6,3,3,2,1,0,0,1,0,15-19,2,6,5,6,6,3,4,4,5,5,5,6,6,2,4,6,4.66666666666667,6,5,4,4,2,4,4.2,6,1,6,1,6,3,4,2,1,1,0,0,4,1,1.33333333333333,3,2,1,0,0,1,0,1.16666666666667,1,0,0,0,1,0,-2,0.333333333333333,0,4,-2,3,-4,1,0.2,-1,-1,0,0,0,3,1,0.166666666666667,0.233333333333333,0,0.375,1,2,0.6,0.8,0.7,1,2,-1,-2,1,1,-2,-1,5 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,D,E,B,B,F,Female,1,College Diploma/Certificate,C_Ug,21,18 - 24,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,6,3,7,2,1,1,2,6,7,4,3,5,5,4,8,2,6,3,7,1,1,6,8,7,2,4,3,5,1,2,6,3,5,4,7,6,5,7,8,4,2,3,1,5,8,9,3,7,6,2,1,4,3,4,2,1,2,-1,-1,2 +427,142.165.36.87,R_7Gt9KaV8NT2oVEZ,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,3,0,2,1,2,2,3,1,3,5,7,2,1,2,2,0,2,0,1,0,1,2,2,0,3,1,0,0,1,0,1,0,0,1,1,2,1,0,1,20+,2,1,3,0,2,1,2,2,1.5,0,1,2,2,0,3,1,1.33333333333333,3,1,3,5,7,2,3.8,0,0,1,0,1,0,0.4,1,2,2,0,2,0,1,1.16666666666667,0,1,1,2,1,0,1,0.833333333333333,1,2,-2,0,1,-1,1,0.166666666666667,3,1,2,5,6,2,3.4,1,1,1,-2,1,0,0,0.333333333333333,1.3,1,1.125,3,0,0.6,0.6,0.6,1,1,1,-1,-1,-1,-2,1,5 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,57,Sunday,D,D,A,B,D,Male,0,High School (or equivalent),HS_TS,22,18 - 24,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,2,5,4,3,1,1,4,5,7,6,3,2,2,4,8,5,6,3,7,1,1,6,8,5,3,7,4,2,1,2,6,5,3,4,7,4,6,7,8,5,3,2,1,2,6,3,5,8,4,9,1,7,2,3,4,1,1,1,1,2 +428,71.62.93.92,R_5Jud7qA7emHTnJn,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,1,2,2,1,2,3,1,2,2,2,1,1,2,2,3,2,1,3,1,2,3,3,4,3,4,2,2,2,3,2,2,3,2,3,1,3,2,2,2,3,20+,2,1,2,2,1,2,3,1,1.83333333333333,3,3,4,3,4,2,2,3.16666666666667,2,2,2,1,1,2,1.6,2,3,2,2,3,2,2.4,2,3,2,1,3,1,2,2,3,1,3,2,2,2,3,2.16666666666667,-2,-1,-2,-2,-2,1,-1,-1.33333333333333,0,-1,0,-1,-2,0,-0.8,-1,2,-1,-1,1,-1,-1,-0.166666666666667,-0.766666666666667,-0.666666666666667,0.625,2,1,0.8,0.2,0.5,0,1,0,-1,-2,0,-2,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,C,D,C,B,C,Male,0,University - Graduate (Masters),grad_prof,52,46 - 52,American,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,4,5,3,7,1,1,3,5,7,6,4,2,6,2,8,4,3,7,5,1,1,5,8,2,3,6,4,7,1,4,5,3,6,2,7,2,7,5,8,6,3,4,1,2,5,3,6,4,7,9,1,8,3,2,4,1,1,2,0,2 +429,97.204.198.145,R_7zutYLK27PLIqWd,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,4,2,4,9,8,3,4,7,7,6,7,2,4,8,8,8,9,9,8,6,1,6,1,3,1,6,4,1,8,2,4,9,6,2,6,2,1,1,2,4,10-14,2,4,2,4,9,8,3,4,5,1,6,1,3,1,6,4,3,7,7,6,7,2,4,5.8,1,8,2,4,9,6,4.8,8,8,8,9,9,8,6,8.33333333333333,2,6,2,1,1,2,4,2.33333333333333,3,-4,3,6,7,-3,0,2,6,-1,4,3,-7,-2,1,6,2,6,8,8,6,2,6,3,0,1.625,3,0,0.8,0.8,0.8,1,2,2,-2,-2,-1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Saturday,D,E,B,B,C,Male,0,Trade School,HS_TS,21,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,6,7,4,2,1,1,3,2,7,6,4,5,3,7,8,2,5,4,6,1,1,2,8,5,7,6,3,4,1,3,4,2,6,5,7,3,6,7,8,2,4,5,1,6,8,3,2,5,4,7,1,9,2,4,3,1,2,2,1,2 +430,142.232.152.22,R_7zevqe6JEsBvB81,self,03VFP,future,7,5,7,5,8,8,7,6,7,6,7,8,7,7,8,7,7,6,7,6,5,8,6,6,6,5,7,7,7,8,8,6,7,8,6,7,7,6,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,7,5,8,8,7,6.66666666666667,5,8,6,6,6,5,7,6,6,7,6,7,8,7,6.8,7,7,8,8,6,7,7.2,7,8,7,7,6,7,6,7,8,6,7,7,6,8,7,7,2,-3,1,-1,2,3,0,0.666666666666667,-1,0,-2,-1,2,0,-0.4,-1,2,0,0,0,-1,-1,0,0.0888888888888889,-0.333333333333333,0.125,2,1,1,0.8,0.9,1,1,0,1,0,0,1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Male,0,University - Undergraduate,C_Ug,22,18 - 24,Canadian,Male,1,,,,1,,1,7,1,8,3,5,6,4,2,3,6,7,1,4,5,2,5,6,7,2,8,1,3,4,1,4,6,8,7,3,5,2,5,6,1,2,3,7,4,4,3,7,2,5,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,5,9,6,4,1,7,3,2,4,1,-1,0,0,-1 +431,38.15.87.165,R_7zN2IHwjOKXwqnR,self,02PVF,future,7,8,7,1,1,5,6,6,8,8,2,7,6,7,7,8,1,5,8,6,3,8,7,1,1,4,5,8,6,8,3,7,7,8,3,2,1,1,9,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,7,1,1,5,6,4.83333333333333,3,8,7,1,1,4,5,4,6,8,8,2,7,6,6.2,8,6,8,3,7,7,6.4,7,7,8,1,5,8,6,6,8,3,2,1,1,9,5,4,4,0,0,0,0,1,1,0.833333333333333,-2,2,0,-1,0,-1,-0.2,-1,4,6,0,4,-1,1,2,0.877777777777778,0.333333333333333,1,1,2,1,0.6,0.8,0,2,2,-1,-1,2,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,B,B,B,Female,1,University - Undergraduate,C_Ug,21,18 - 24,Canadian,Female,1,,,1,,,1,4,1,8,7,6,2,3,5,6,3,7,1,5,4,2,4,3,6,5,8,1,2,7,1,3,5,8,4,7,2,6,6,2,1,4,3,7,5,2,4,6,7,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,3,8,5,9,4,1,2,3,2,4,1,1,1,-2,2 +432,47.55.230.209,R_7QJGpChMosm2slY,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,5,5,5,6,6,5,8,7,7,7,7,7,7,7,3,7,5,3,8,6,7,7,7,7,7,7,6,7,7,7,7,8,7,7,7,7,6,7,7,7,5-9,2,5,5,5,6,6,5,8,5.33333333333333,7,7,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7.2,7,3,7,5,3,8,6,5.5,7,7,7,6,7,7,7,6.83333333333333,-2,-2,-2,-1,-1,-2,2,-1.66666666666667,0,0,0,0,-1,0,-0.2,0,-4,0,-1,-4,1,-1,-1.33333333333333,-1.06666666666667,0.333333333333333,0,1,2,0.4,0.2,0.3,0,0,0,-2,2,1,0,1,10 cents,5 minutes,24 days,3,7,It's impossible to tell,47,Saturday,A,B,D,B,E,Female,1,University - Undergraduate,C_Ug,24,18 - 24,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,8,4,6,7,2,1,1,2,5,7,3,4,6,6,2,8,3,4,5,7,1,1,7,8,5,3,2,6,4,1,4,2,5,3,6,7,2,5,4,8,7,6,3,1,6,3,2,7,5,8,9,1,4,2,4,3,1,2,-2,-1,0 +433,174.114.62.90,R_1cCLty0mSqotM0j,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like somewhat,6,5,6,8,2,9,9,7,10,5,8,7,3,5,5,4,8,3,6,10,8,4,6,7,2,8,7,9,7,3,8,1,1,4,8,5,7,1,3,1,15-19,1,6,5,6,8,2,9,9,6,8,4,6,7,2,8,7,5.83333333333333,7,10,5,8,7,3,7.4,9,7,3,8,1,1,5.6,5,5,4,8,3,6,10,5.16666666666667,4,8,5,7,1,3,1,4.66666666666667,-2,1,0,1,0,1,2,0.166666666666667,-2,3,2,0,6,2,1.8,1,-3,-1,1,2,3,9,0.5,0.822222222222222,4.33333333333333,0,0,3,0.8,0.2,0.5,-1,0,-1,-2,-1,0,0,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,57,Sunday,D,C,A,A,F,Female,1,High School (or equivalent),HS_TS,18,18 - 24,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,4,5,3,6,1,1,6,4,7,2,3,5,2,6,8,4,3,7,5,1,1,7,8,4,5,3,6,2,1,3,2,6,4,5,7,4,5,6,8,3,7,2,1,8,2,4,3,7,6,5,1,9,3,4,2,1,2,1,0,0 +434,206.12.14.66,R_7e4uq1KExPGUBuA,self,03VFP,past,3,2,2,6,2,2,6,1,3,2,3,2,2,5,1,3,7,2,4,2,6,3,5,4,5,4,4,5,4,2,2,4,4,4,1,3,1,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,6,2,2,6,2.83333333333333,6,3,5,4,5,4,4,4.5,1,3,2,3,2,2,2.2,5,4,2,2,4,4,3.4,5,1,3,7,2,4,2,3.66666666666667,4,1,3,1,3,3,2,2.5,-3,-1,-3,2,-3,-2,2,-1.66666666666667,-4,-1,0,1,-2,-2,-1.2,1,0,0,6,-1,1,0,1.16666666666667,-0.566666666666667,0,-0.375,2,1,0.8,0.6,0.7,0,-1,-1,1,0,-1,1,0,5 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Saturday,D,E,A,B,C,Female,1,High School (or equivalent),HS_TS,19,18 - 24,Canadian,Female,1,,,,1,1,,4,1,8,6,2,3,7,5,6,5,7,1,3,4,2,6,4,5,3,8,1,2,7,1,5,4,8,6,7,2,3,4,5,1,3,2,7,6,5,3,7,4,2,1,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,5,2,7,6,4,8,1,3,2,4,3,1,-1,0,1,-1 +435,72.139.193.52,R_1hncitrSn18O0FB,self,02PVF,future,3,6,4,10,5,10,5,8,10,8,3,10,8,8,10,6,6,8,8,8,8,10,8,4,6,7,8,3,5,5,2,6,6,6,6,2,6,8,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,10,5,10,5,6.33333333333333,8,10,8,4,6,7,8,7.16666666666667,8,10,8,3,10,8,7.8,3,5,5,2,6,6,4.2,8,10,6,6,8,8,8,7.66666666666667,6,6,2,6,8,7,7,5.83333333333333,-5,-4,-4,6,-1,3,-3,-0.833333333333333,5,5,3,1,4,2,3.6,2,4,4,0,0,1,1,1.83333333333333,1.53333333333333,0,1.25,3,0,1,0.4,0.7,1,2,2,-2,1,-2,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,A,B,C,Female,1,High School (or equivalent),HS_TS,21,18 - 24,Canadian,Female,1,,,1,,,1,6,1,8,3,4,5,2,7,3,5,7,1,6,4,2,3,5,7,4,8,1,6,2,1,4,6,8,7,5,3,2,2,5,1,6,4,7,3,7,3,2,6,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,6,4,8,3,1,9,4,3,2,1,2,-1,2,2 +436,96.225.22.26,R_3U8ULanD1q88rYw,self,03VFP,future,7,5,2,6,4,7,8,4,5,5,7,3,8,3,4,10,5,5,3,4,5,7,3,2,6,5,4,8,6,4,3,5,9,8,5,4,6,3,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,2,6,4,7,8,5.16666666666667,5,7,3,2,6,5,4,4.66666666666667,4,5,5,7,3,8,4.8,8,6,4,3,5,9,5.2,3,4,10,5,5,3,4,5,8,5,4,6,3,7,4,5.5,2,-2,-1,4,-2,2,4,0.5,-4,-1,1,4,-2,-1,-0.4,-5,-1,6,-1,2,-4,0,-0.5,-0.133333333333333,1,-0.375,3,0,0.8,0.4,0.6,0,0,-1,0,1,1,1,1,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,A,E,D,D,Male,0,Professional Degree (ex. JD/MD),grad_prof,26,25 - 31,American,Male,1,,,,1,,1,6,1,8,2,5,7,4,3,6,2,7,1,3,4,5,4,2,3,6,8,1,7,5,1,6,2,8,4,5,7,3,6,4,1,5,2,7,3,3,2,6,5,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,9,6,7,8,1,5,3,2,4,1,0,-1,-1,-1 +437,129.222.137.144,R_5V21CP4D902wuSB,self,03VFP,past,3,3,1,3,1,1,5,4,4,1,1,10,8,10,10,6,7,8,3,7,2,4,2,4,2,3,1,5,2,1,1,5,3,3,2,1,4,6,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,1,3,1,1,5,2,2,4,2,4,2,3,1,2.83333333333333,4,4,1,1,10,8,4,5,2,1,1,5,3,2.8,10,10,6,7,8,3,7,7.33333333333333,3,2,1,4,6,3,4,3.16666666666667,1,-1,-1,-1,-1,-2,4,-0.833333333333333,-1,2,0,0,5,5,1.2,7,8,5,3,2,0,3,4.16666666666667,1.51111111111111,4,1.75,2,1,0.6,0.4,0.5,2,2,2,-2,-1,-1,-2,2,5 cents,100 minutes,47 days,5,9,Richard is shorter than Matt,47,Sunday,C,D,C,B,D,Male,0,High School (or equivalent),HS_TS,23,18 - 24,Canadian,Male,1,,,,1,1,,5,1,8,7,2,3,6,4,2,6,7,1,5,4,3,6,7,4,5,8,1,3,2,1,7,3,8,5,2,6,4,2,4,1,3,5,7,6,6,7,3,5,2,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,3,2,4,9,6,1,5,4,3,2,1,2,1,1,2 +438,162.156.94.73,R_5f2TurcYNVUY7EM,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,0,0,0,-0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.166666666666667,0,0,1,2,0.8,0.8,0.8,-2,1,-1,-2,1,-1,-2,-2,10 cents,100 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,D,E,A,B,D,Female,1,University - Undergraduate,C_Ug,24,18 - 24,Canadian,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,5,2,7,6,1,1,4,6,7,2,3,5,7,2,8,4,6,3,5,1,1,7,8,5,3,4,2,6,1,6,3,5,4,2,7,7,4,2,8,3,5,6,1,3,4,2,7,8,6,5,1,9,4,2,3,1,2,-1,1,2 +439,73.244.185.115,R_31KrJoFQWL1wDo3,self,01FPV,future,7,9,5,5,8,7,7,7,8,8,6,5,9,5,10,8,9,6,6,5,9,2,3,7,3,6,6,8,10,8,4,8,8,9,9,7,7,8,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,5,5,8,7,7,6.83333333333333,9,2,3,7,3,6,6,5,7,8,8,6,5,9,6.8,8,10,8,4,8,8,7.6,5,10,8,9,6,6,5,7.33333333333333,9,9,7,7,8,6,6,7.66666666666667,-2,7,2,-2,5,1,1,1.83333333333333,-1,-2,0,2,-3,1,-0.8,-4,1,1,2,-2,0,-1,-0.333333333333333,0.233333333333333,0.333333333333333,-0.25,2,1,0.8,0.4,0.6,-1,0,1,1,2,2,-2,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,F,C,B,Male,0,High School (or equivalent),HS_TS,22,18 - 24,American,Male,1,,1,,,,1,6,1,8,5,4,7,2,3,5,4,7,1,3,2,6,6,5,7,2,8,1,4,3,1,3,2,8,4,7,5,6,5,4,1,6,2,7,3,3,7,2,5,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,8,2,9,3,1,7,2,3,4,1,-1,-2,-2,2 +440,50.65.185.128,R_3ARPABhv6tJZOLv,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,10,6,10,1,2,9,8,3,6,8,1,10,7,6,4,5,2,2,3,5,6,3,2,8,1,8,5,7,4,7,2,6,4,1,1,2,2,2,4,2,5-9,2,10,6,10,1,2,9,8,6.33333333333333,6,3,2,8,1,8,5,4.66666666666667,3,6,8,1,10,7,5.6,7,4,7,2,6,4,5.2,6,4,5,2,2,3,5,3.66666666666667,1,1,2,2,2,4,2,2,4,3,8,-7,1,1,3,1.66666666666667,-4,2,1,-1,4,3,0.4,5,3,3,0,0,-1,3,1.66666666666667,1.24444444444444,3,1,1,2,0.8,0.4,0.6,1,1,2,-2,0,0,-1,1,5 cents,100 minutes,24 days,5,9,It's impossible to tell,47,Sunday,D,C,A,B,E,Female,1,University - Undergraduate,C_Ug,23,18 - 24,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,6,4,5,2,1,1,6,4,7,5,3,2,2,4,8,7,5,3,6,1,1,7,8,2,4,3,5,6,1,5,4,6,3,2,7,2,5,4,8,3,7,6,1,3,7,5,9,4,8,6,1,2,4,2,3,1,2,0,0,1 +441,174.92.29.98,R_7fLO7uGbZLG7wEp,self,03VFP,future,7,7,8,4,3,5,7,4,5,7,3,5,7,8,5,4,3,6,5,3,4,4,3,5,2,5,4,4,4,5,2,6,5,6,4,4,2,8,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,8,4,3,5,7,5.66666666666667,4,4,3,5,2,5,4,3.83333333333333,4,5,7,3,5,7,4.8,4,4,5,2,6,5,4.2,8,5,4,3,6,5,3,5.16666666666667,6,4,4,2,8,3,4,4.5,3,3,5,-1,1,0,3,1.83333333333333,0,1,2,1,-1,2,0.6,2,1,0,1,-2,2,-1,0.666666666666667,1.03333333333333,1.33333333333333,0.75,3,0,0.8,0,0.4,1,2,1,-2,0,0,-1,-1,5 cents,5 minutes,47 days,5,8,Richard is taller than Zach,47,Sunday,E,C,D,D,A,Female,1,High School (or equivalent),HS_TS,21,18 - 24,Canadian,Female,1,,,,1,,1,2,1,8,7,6,4,5,3,3,2,7,1,5,6,4,7,5,4,2,8,1,6,3,1,5,7,8,4,2,6,3,3,6,1,4,5,7,2,2,6,3,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,6,4,9,2,7,1,5,4,2,3,1,2,0,0,1 +442,139.57.217.30,R_6JfzeMPbx8LFTyh,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Like a great deal,7,1,2,1,1,3,1,1,1,1,1,2,1,2,2,4,1,1,1,1,6,1,1,4,1,10,2,1,1,2,1,7,2,3,4,1,1,2,1,1,15-19,2,7,1,2,1,1,3,1,2.5,6,1,1,4,1,10,2,3.83333333333333,1,1,1,1,2,1,1.2,1,1,2,1,7,2,2.4,2,2,4,1,1,1,1,1.83333333333333,3,4,1,1,2,1,1,2,1,0,1,-3,0,-7,-1,-1.33333333333333,0,0,-1,0,-5,-1,-1.2,-1,-2,3,0,-1,0,0,-0.166666666666667,-0.9,-0.666666666666667,0.375,2,1,0.8,0.8,0.8,0,2,1,0,1,0,-2,-1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,44,Sunday,D,E,A,B,D,Female,1,High School (or equivalent),HS_TS,18,18 - 24,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,8,7,5,2,3,1,1,5,3,7,4,6,2,7,4,8,3,2,5,6,1,1,5,8,2,6,3,7,4,1,3,6,4,5,2,7,3,6,7,8,4,5,2,1,9,5,3,8,6,7,4,1,2,4,2,3,1,0,-1,0,2 +443,47.146.35.219,R_58n30RcKJanhspH,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like somewhat,3,4,6,1,2,5,5,2,5,2,3,3,4,5,5,4,3,1,3,5,2,2,2,0,1,5,1,1,3,2,2,5,3,2,2,2,2,3,4,5,5-9,1,3,4,6,1,2,5,5,3.5,2,2,2,0,1,5,1,2,2,5,2,3,3,4,3,1,3,2,2,5,3,2.6,5,5,4,3,1,3,5,3.5,2,2,2,2,3,4,5,2.5,1,2,4,1,1,0,4,1.5,1,2,0,1,-2,1,0.4,3,3,2,1,-2,-1,0,1,0.966666666666667,1.66666666666667,0,3,0,0.6,0.4,0.5,0,0,0,0,1,1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,44,Monday,D,E,D,E,E,Male,0,University - Undergraduate,C_Ug,28,25 - 31,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,6,2,1,1,2,5,7,6,4,3,4,7,8,6,3,2,5,1,1,5,8,6,2,3,7,4,1,4,3,2,6,5,7,7,6,4,8,5,3,2,1,7,6,5,3,9,4,2,1,8,2,4,3,1,0,-1,-1,1 +444,24.207.74.3,R_7Oi8TSxNH9MDhSW,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,6,4,5,7,7,5,6,4,4,5,5,6,6,5,4,5,6,6,5,5,0,2,0,2,4,0,6,6,4,4,6,5,5,0,0,0,0,0,0,0,5-9,2,6,4,5,7,7,5,6,5.66666666666667,0,2,0,2,4,0,6,1.33333333333333,4,4,5,5,6,6,4.8,6,4,4,6,5,5,5,5,4,5,6,6,5,5,5.16666666666667,0,0,0,0,0,0,0,0,6,2,5,5,3,5,0,4.33333333333333,-2,0,1,-1,1,1,-0.2,5,4,5,6,6,5,5,5.16666666666667,3.1,2,-0.125,3,0,1,0.4,0.7,1,-1,1,1,0,0,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,B,D,B,Female,1,High School (or equivalent),HS_TS,19,18 - 24,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,5,2,3,7,1,1,2,3,7,6,4,5,6,5,8,7,3,2,4,1,1,2,8,7,4,5,3,6,1,6,5,2,3,4,7,6,5,2,8,4,7,3,1,7,6,4,8,2,9,3,1,5,3,2,4,1,-1,0,0,0 +445,76.128.149.53,R_70vpthhnT9Db8Vi,self,01FPV,future,6,7,5,7,7,7,6,7,7,7,6,6,5,6,8,7,7,6,5,8,6,8,5,7,8,6,6,7,7,5,6,8,6,5,5,7,5,8,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,7,7,7,6,6.5,6,8,5,7,8,6,6,6.66666666666667,7,7,7,6,6,5,6.6,7,7,5,6,8,6,6.6,6,8,7,7,6,5,8,6.5,5,5,7,5,8,6,7,6,0,-1,0,0,-1,1,0,-0.166666666666667,0,0,2,0,-2,-1,0,1,3,0,2,-2,-1,1,0.5,0.111111111111111,0,0.25,3,0,0.8,0.6,0.7,1,1,1,0,1,1,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,44,Sunday,D,E,D,A,D,Male,0,University - Undergraduate,C_Ug,31,25 - 31,American,Male,1,,1,,,,1,5,1,8,7,4,2,3,6,5,2,7,1,3,4,6,7,2,4,5,8,1,3,6,1,4,6,8,5,2,3,7,4,2,1,3,6,7,5,3,4,6,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,9,7,4,6,8,5,1,2,2,4,3,1,0,-1,-1,0 +446,184.144.125.32,R_5DZJdjFzc6chJ1Z,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,2,1,2,2,1,2,2,2,3,6,1,7,3,1,6,4,1,1,6,2,1,1,5,3,1,6,2,6,1,6,2,10,4,1,6,6,1,1,3,2,5-9,2,2,1,2,2,1,2,2,1.66666666666667,1,1,5,3,1,6,2,2.83333333333333,2,3,6,1,7,3,3.8,6,1,6,2,10,4,5,1,6,4,1,1,6,2,3.16666666666667,1,6,6,1,1,3,2,3,1,0,-3,-1,0,-4,0,-1.16666666666667,-4,2,0,-1,-3,-1,-1.2,0,0,-2,0,0,3,0,0.166666666666667,-0.733333333333333,-0.333333333333333,1.125,1,2,0.6,0.4,0.5,2,2,1,-2,1,0,-2,1,5 cents,100 minutes,24 days,3,8,It's impossible to tell,53,Sunday,C,E,A,B,E,Female,1,University - Undergraduate,C_Ug,23,18 - 24,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,6,4,3,7,1,1,4,3,7,5,6,2,4,5,8,3,7,2,6,1,1,7,8,5,2,6,4,3,1,4,5,3,2,6,7,4,6,3,8,2,5,7,1,9,3,7,4,6,5,2,1,8,4,3,2,1,2,-1,0,2 +447,96.247.192.168,R_6fCH1s1k2SeAJvm,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like a great deal,6,2,2,7,8,8,6,6,8,1,7,2,6,4,3,9,4,2,3,3,8,2,1,2,1,7,4,8,4,2,3,6,6,1,3,7,2,1,6,7,5-9,2,6,2,2,7,8,8,6,5.5,8,2,1,2,1,7,4,3.5,6,8,1,7,2,6,4.8,8,4,2,3,6,6,4.6,4,3,9,4,2,3,3,4.16666666666667,1,3,7,2,1,6,7,3.33333333333333,-2,0,1,5,7,1,2,2,-2,4,-1,4,-4,0,0.2,3,0,2,2,1,-3,-4,0.833333333333333,1.01111111111111,-0.666666666666667,0.5,1,2,0.8,0.4,0.6,0,1,1,-1,2,-1,-1,1,10 cents,100 minutes,47 days,5,8,It's impossible to tell,47,Tuesday,D,D,A,B,C,Female,1,University - Undergraduate,C_Ug,36,32 - 38,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,2,7,4,5,1,1,6,2,7,5,4,3,2,3,8,6,7,5,4,1,1,5,8,6,4,3,7,2,1,5,3,6,2,4,7,4,3,5,8,6,7,2,1,6,8,9,7,5,3,4,1,2,3,4,2,1,1,-2,1,1 +448,69.235.35.205,R_6usLiPkSyqGyF31,self,02PVF,future,1,1,1,1,0,0,2,1,0,2,3,1,1,2,0,2,1,1,1,0,0,1,1,2,2,0,1,1,2,0,1,2,2,2,1,1,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,0,0,2,0.666666666666667,0,1,1,2,2,0,1,1,1,0,2,3,1,1,1.4,1,2,0,1,2,2,1.2,2,0,2,1,1,1,0,1.16666666666667,2,1,1,0,0,0,2,0.666666666666667,1,0,0,-1,-2,0,1,-0.333333333333333,0,-2,2,2,-1,-1,0.2,0,-1,1,1,1,1,-2,0.5,0.122222222222222,-0.666666666666667,0.125,0,3,0,0.4,0.2,0,0,0,-2,1,2,-1,1,10 cents,100 minutes,24 days,3,10,Richard is taller than Matt,35,Monday,D,E,C,D,A,Female,1,High School (or equivalent),HS_TS,49,46 - 52,American,Female,1,,,1,,,1,5,1,8,2,6,7,4,3,3,2,7,1,6,4,5,7,3,2,6,8,1,4,5,1,6,5,8,2,3,7,4,2,6,1,3,5,7,4,7,2,3,4,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,7,2,6,4,3,1,5,2,4,3,1,2,-1,-2,1 +449,205.206.139.96,R_1o6xJ3eW4KgPs7H,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,20+,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.125,0,3,0.6,0.2,0.4,0,0,0,0,1,0,0,0,10 cents,100 minutes,24 days,5,8,Richard is taller than Matt,47,Tuesday,D,C,E,C,C,Female,1,University - Undergraduate,C_Ug,41,39 - 45,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,4,5,6,2,1,1,4,2,7,5,6,3,4,6,8,5,3,2,7,1,1,7,8,2,6,3,5,4,1,2,3,4,5,6,7,3,6,2,8,7,5,4,1,8,5,9,3,6,7,2,1,4,3,2,4,1,0,-1,0,0 +450,209.121.38.16,R_6bFqG1DLTJCHDX3,self,01FPV,past,1,1,1,2,2,2,1,1,1,1,1,5,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,6,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,2,1,1.5,1,1,1,2,2,2,1,1.5,1,1,1,1,5,2,1.8,1,1,2,1,6,1,2.2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,1,-0.4,0,0,0,0,0,0,0,0,-0.133333333333333,0.333333333333333,1.5,1,2,0.8,0.4,0.6,0,2,2,-2,0,-2,-2,2,10 cents,5 minutes,24 days,5,9,It's impossible to tell,47,Sunday,D,E,A,A,E,Female,1,University - Graduate (Masters),grad_prof,70,67 - 73,Canadian,Female,1,,1,,,1,,4,1,8,6,5,2,3,7,3,5,7,1,6,4,2,3,7,5,4,8,1,6,2,1,7,6,8,2,4,5,3,5,6,1,3,4,7,2,7,4,2,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,2,3,8,6,5,1,4,2,3,4,1,2,0,2,2 +451,144.172.223.96,R_31WIJPbAvEaDbiZ,self,03VFP,future,2,1,2,1,2,1,1,2,1,2,2,3,3,2,1,0,3,5,2,0,5,2,4,3,4,2,1,2,0,2,1,6,2,2,0,0,1,3,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,1,2,1,1,1.5,5,2,4,3,4,2,1,3.33333333333333,2,1,2,2,3,3,2,2,0,2,1,6,2,2.2,2,1,0,3,5,2,0,2.16666666666667,2,0,0,1,3,3,0,1.5,-3,-1,-2,-2,-2,-1,0,-1.83333333333333,0,1,0,1,-3,1,-0.2,0,1,0,2,2,-1,0,0.666666666666667,-0.455555555555556,0.333333333333333,0.625,2,1,1,0.2,0.6,1,1,1,-2,0,0,0,0,5 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,C,A,B,Female,1,University - Graduate (Masters),grad_prof,46,46 - 52,Canadian,Female,1,,,,1,,1,7,1,8,6,2,3,5,4,6,4,7,1,2,3,5,7,6,2,4,8,1,5,3,1,5,2,8,7,3,6,4,5,3,1,2,6,7,4,7,5,3,6,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,9,3,4,1,6,3,4,2,1,2,0,0,0 +452,99.241.245.96,R_1xSTnU3mCNuX0tz,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,3,9,7,7,7,3,8,8,8,7,7,7,8,7,8,6,5,5,6,6,5,3,7,8,7,7,7,8,2,6,7,8,2,9,8,8,9,7,7,4,20+,2,3,9,7,7,7,3,8,6,5,3,7,8,7,7,7,6.16666666666667,8,8,7,7,7,8,7.4,8,2,6,7,8,2,6.2,7,8,6,5,5,6,6,6.16666666666667,9,8,8,9,7,7,4,8,-2,6,0,-1,0,-4,1,-0.166666666666667,0,6,1,0,-1,6,1.2,-2,0,-2,-4,-2,-1,2,-1.83333333333333,-0.266666666666667,3,-0.25,1,2,0.6,0.2,0.4,1,1,2,-1,2,2,1,-2,10 cents,5 minutes,24 days,4,8,It's impossible to tell,47,Saturday,B,E,D,C,C,Female,1,University - Undergraduate,C_Ug,28,25 - 31,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,3,4,7,1,1,2,6,7,5,3,4,2,6,8,5,7,3,4,1,1,6,8,4,3,5,2,7,1,5,2,6,4,3,7,2,3,7,8,6,5,4,1,4,2,3,7,8,6,9,1,5,4,2,3,1,1,-2,-2,-1 +453,172.58.255.77,R_1NJea0ifFvWBJ6h,self,03VFP,future,6,1,1,4,3,1,2,1,2,2,0,4,2,0,3,6,0,2,2,2,4,1,1,3,2,2,2,0,1,2,0,3,2,3,1,6,0,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,1,1,4,3,1,2,2.66666666666667,4,1,1,3,2,2,2,2.16666666666667,1,2,2,0,4,2,1.8,0,1,2,0,3,2,1.2,0,3,6,0,2,2,2,2.16666666666667,3,1,6,0,2,4,2,2.66666666666667,2,0,0,1,1,-1,0,0.5,1,1,0,0,1,0,0.6,-3,2,0,0,0,-2,0,-0.5,0.2,0,1,1,2,0.6,0,0.3,0,1,2,-2,-1,-2,-1,-1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,44,Monday,C,D,D,C,A,Male,0,University - PhD,grad_prof,57,53 - 59,American,Male,1,,,,1,,1,3,1,8,4,2,5,7,6,6,5,7,1,4,2,3,7,4,6,3,8,1,2,5,1,7,2,8,3,4,6,5,3,4,1,2,6,7,5,3,6,2,7,4,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,3,6,5,8,9,1,4,3,4,2,1,2,1,2,1 +454,96.52.250.15,R_7z7ohJlFu0ZSSVv,self,02PVF,past,3,2,9,10,8,7,7,10,10,10,6,10,10,6,7,7,6,9,7,8,8,10,5,9,9,6,6,10,9,9,9,10,8,10,10,10,10,8,10,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,9,10,8,7,7,6.5,8,10,5,9,9,6,6,7.83333333333333,10,10,10,6,10,10,9.2,10,9,9,9,10,8,9.4,6,7,7,6,9,7,8,7,10,10,10,10,8,10,6,9.66666666666667,-5,-8,4,1,-1,1,1,-1.33333333333333,0,1,1,-3,0,2,-0.2,-4,-3,-3,-4,1,-3,2,-2.66666666666667,-1.4,1.66666666666667,-0.25,0,1,0.4,0.2,0.3,1,2,-1,-1,2,0,2,-1,10 cents,75 minutes,15 days,7,8,Zach is shorter than Matt,47,Friday,D,F,C,F,B,Male,0,High School (or equivalent),HS_TS,28,25 - 31,Canadian,Male,1,,,1,,1,,4,1,8,2,7,3,5,6,6,4,7,1,2,5,3,7,4,5,3,8,1,6,2,1,3,4,8,6,5,7,2,4,5,1,2,3,7,6,6,4,2,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,9,5,8,3,2,1,6,2,4,3,1,1,-2,0,-2 +455,74.12.35.245,R_51cfYISWM39UcfD,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,6,7,5,7,6,5,6,4,5,5,8,7,5,4,5,4,5,7,7,6,3,6,7,5,3,4,7,5,5,3,5,7,7,3,2,5,7,6,4,7,10-14,1,6,7,5,7,6,5,6,6,3,6,7,5,3,4,7,4.66666666666667,4,5,5,8,7,5,5.8,5,5,3,5,7,7,5,4,5,4,5,7,7,6,5.33333333333333,3,2,5,7,6,4,7,4.5,3,1,-2,2,3,1,-1,1.33333333333333,-1,0,2,3,0,-2,0.8,1,3,-1,-2,1,3,-1,0.833333333333333,0.988888888888889,-1.33333333333333,0.5,1,2,1,0.8,0.9,0,1,1,0,1,-1,-1,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,D,Male,0,University - Undergraduate,C_Ug,25,25 - 31,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,4,5,3,2,1,1,2,6,7,3,4,5,2,3,8,6,4,7,5,1,1,5,8,4,7,6,3,2,1,2,6,3,5,4,7,7,2,6,8,3,5,4,1,3,7,5,6,9,2,8,1,4,3,4,2,1,0,-1,1,1 +456,98.5.241.246,R_1GrUaB2MxbedwA1,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,7,5,6,6,5,5,8,8,5,6,6,8,5,5,7,8,6,5,6,8,8,5,5,6,7,6,5,5,6,7,4,8,3,7,8,8,7,5,6,9,20+,2,7,5,6,6,5,5,8,5.66666666666667,8,5,5,6,7,6,5,6.16666666666667,8,5,6,6,8,5,6.6,5,6,7,4,8,3,6,5,7,8,6,5,6,8,6.16666666666667,7,8,8,7,5,6,9,6.83333333333333,-1,0,1,0,-2,-1,3,-0.5,3,-1,-1,2,0,2,0.6,-2,-1,0,-1,0,0,-1,-0.666666666666667,-0.188888888888889,1.33333333333333,0.75,0,3,1,0.6,0.8,-2,2,2,-2,-1,-1,-2,-2,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,D,C,D,Male,0,High School (or equivalent),HS_TS,46,46 - 52,American,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,8,5,4,3,6,1,1,5,6,7,4,3,2,7,2,8,3,4,6,5,1,1,6,8,3,5,2,7,4,1,4,3,5,2,6,7,2,3,5,8,7,6,4,1,8,2,4,5,6,7,3,1,9,4,3,2,1,2,1,1,2 +457,75.157.209.140,R_1KWbqeO0e9eHpjf,self,01FPV,past,3,0,2,2,0,3,2,1,0,0,4,2,2,4,1,6,5,0,1,2,3,0,0,3,0,3,2,1,0,1,4,2,2,3,1,3,3,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0,2,2,0,3,2,1.66666666666667,3,0,0,3,0,3,2,1.5,1,0,0,4,2,2,1.4,1,0,1,4,2,2,1.6,4,1,6,5,0,1,2,2.83333333333333,3,1,3,3,0,1,2,1.83333333333333,0,0,2,-1,0,0,0,0.166666666666667,0,0,-1,0,0,0,-0.2,1,0,3,2,0,0,0,1,0.322222222222222,0,1,3,0,1,0.8,0.9,1,2,2,0,-1,-1,-1,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,D,B,B,D,Male,0,University - Graduate (Masters),grad_prof,65,60 - 66,Canadian,Male,1,,1,,,1,,2,1,8,7,5,4,6,3,6,3,7,1,4,2,5,4,7,5,3,8,1,2,6,1,3,4,8,2,7,5,6,6,2,1,4,3,7,5,6,3,7,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,6,5,2,3,4,7,1,8,4,2,3,1,0,1,1,1 +458,67.193.104.43,R_3U9IAJkILq5ixEt,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,0,1,1,1,0,0,0,0,1,0,1,3,0,1,1,1,1,0,0,1,0,0,1,3,1,0,1,1,2,0,1,4,0,0,0,1,0,0,0,0,5-9,1,0,1,1,1,0,0,0,0.5,0,0,1,3,1,0,1,0.833333333333333,0,1,0,1,3,0,1,1,2,0,1,4,0,1.6,1,1,1,1,0,0,1,0.666666666666667,0,0,1,0,0,0,0,0.166666666666667,0,1,0,-2,-1,0,-1,-0.333333333333333,-1,-1,0,0,-1,0,-0.6,1,1,0,1,0,0,1,0.5,-0.144444444444444,0,1,3,0,1,0.6,0.8,1,2,1,-2,0,1,-2,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,C,Male,0,University - Undergraduate,C_Ug,69,67 - 73,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,7,6,4,2,1,1,6,3,7,4,2,5,6,5,8,7,3,4,2,1,1,4,8,6,5,3,2,7,1,5,6,4,3,2,7,7,2,6,8,3,4,5,1,5,8,9,7,4,6,2,1,3,4,2,3,1,2,0,-1,2 +459,98.151.80.203,R_1IHkAEkWdGKL5iK,self,01FPV,future,2,3,3,5,4,2,1,2,1,2,2,1,1,1,1,1,2,1,2,1,6,4,6,2,3,3,3,1,1,2,1,1,1,1,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,4,2,1,3.16666666666667,6,4,6,2,3,3,3,4,2,1,2,2,1,1,1.6,1,1,2,1,1,1,1.2,1,1,1,2,1,2,1,1.33333333333333,1,1,1,2,1,3,1,1.5,-4,-1,-3,3,1,-1,-2,-0.833333333333333,1,0,0,1,0,0,0.4,0,0,0,0,0,-1,0,-0.166666666666667,-0.2,-0.666666666666667,0.375,0,3,0.6,0.2,0.4,2,2,0,-2,2,1,-1,-1,10 cents,100 minutes,24 days,5,11,It's impossible to tell,47,Monday,D,D,D,C,A,Male,0,High School (or equivalent),HS_TS,50,46 - 52,American,Male,1,,1,,,,1,7,1,8,6,3,5,4,2,6,3,7,1,5,2,4,3,7,6,4,8,1,5,2,1,5,4,8,3,7,6,2,2,5,1,3,4,7,6,4,6,2,5,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,5,6,2,1,9,4,2,3,1,2,-2,-1,1 +460,72.76.251.111,R_3NyozEmuO42XPnm,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like somewhat,5,4,4,4,4,6,5,6,5,5,5,6,6,6,6,5,5,5,5,5,5,5,6,4,5,4,3,5,5,5,5,5,5,4,5,6,6,5,5,7,10-14,1,5,4,4,4,4,6,5,4.5,5,5,6,4,5,4,3,4.83333333333333,6,5,5,5,6,6,5.4,5,5,5,5,5,5,5,6,6,5,5,5,5,5,5.33333333333333,4,5,6,6,5,5,7,5.16666666666667,0,-1,-2,0,-1,2,2,-0.333333333333333,1,0,0,0,1,1,0.4,2,1,-1,-1,0,0,-2,0.166666666666667,0.0777777777777778,0.333333333333333,0,1,2,0.2,0,0.1,0,0,0,-2,1,0,0,-1,10 cents,5 minutes,24 days,7,7,Richard is taller than Zach,47,Tuesday,C,C,C,C,C,Female,1,College Diploma/Certificate,C_Ug,50,46 - 52,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,2,3,4,5,1,1,4,2,7,6,3,5,2,4,8,3,6,7,5,1,1,7,8,5,2,3,4,6,1,6,2,4,3,5,7,2,5,3,8,4,6,7,1,3,5,4,6,7,8,9,1,2,3,4,2,1,2,-1,0,0 +461,99.247.235.166,R_7gjdUGqzVazVeie,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",18,Like a great deal,3,1,1,1,1,1,1,4,3,1,1,6,1,1,3,1,1,1,1,1,3,3,3,3,3,3,3,2,4,1,1,5,3,1,4,1,1,1,1,1,15-19,2,3,1,1,1,1,1,1,1.33333333333333,3,3,3,3,3,3,3,3,4,3,1,1,6,1,3,2,4,1,1,5,3,2.6,1,3,1,1,1,1,1,1.33333333333333,1,4,1,1,1,1,1,1.5,0,-2,-2,-2,-2,-2,-2,-1.66666666666667,2,-1,0,0,1,-2,0.4,0,-1,0,0,0,0,0,-0.166666666666667,-0.477777777777778,-1.33333333333333,1.25,0,3,1,0.6,0.8,1,1,1,-2,0,-2,-2,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,A,B,F,Female,1,University - Graduate (Masters),grad_prof,42,39 - 45,Canadian,Female,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,3,5,2,4,1,1,6,4,7,3,2,5,5,3,8,7,2,4,6,1,1,4,8,5,3,6,2,7,1,2,6,5,4,3,7,5,2,7,8,3,6,4,1,6,4,3,8,5,9,2,1,7,2,3,4,1,2,0,2,2 +462,70.50.42.95,R_7JRCfiCRiHyWCzJ,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",11,Like a great deal,9,10,8,8,10,6,5,8,10,8,6,7,9,5,8,5,5,5,7,7,8,8,10,5,7,10,8,7,6,7,8,0,8,7,9,9,5,8,8,8,10-14,2,9,10,8,8,10,6,5,8.5,8,8,10,5,7,10,8,8,8,10,8,6,7,9,7.8,7,6,7,8,0,8,5.6,5,8,5,5,5,7,7,5.83333333333333,7,9,9,5,8,8,8,7.66666666666667,1,2,-2,3,3,-4,-3,0.5,1,4,1,-2,7,1,2.2,-2,-1,-4,0,-3,-1,-1,-1.83333333333333,0.288888888888889,-1,0.125,0,3,1,0.4,0.7,0,0,1,-1,1,0,0,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,F,D,D,B,D,Male,0,University - Graduate (Masters),grad_prof,38,32 - 38,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,5,6,4,2,1,1,5,4,7,6,2,3,4,6,8,3,7,5,2,1,1,4,8,2,3,6,5,7,1,2,3,5,6,4,7,4,7,2,8,5,6,3,1,5,9,3,4,2,6,8,1,7,2,4,3,1,1,-1,0,0 +463,162.157.178.242,R_3kMKk354Cf74Jv9,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,2,4,10,4,5,4,2,5,6,6,1,4,3,6,5,3,5,7,4,2,1,5,7,2,5,2,2,1,2,2,2,2,2,1,4,4,4,2,3,20+,2,6,2,4,10,4,5,4,5.16666666666667,2,1,5,7,2,5,2,3.66666666666667,2,5,6,6,1,4,4,2,1,2,2,2,2,1.8,3,6,5,3,5,7,4,4.83333333333333,2,1,4,4,4,2,3,2.83333333333333,4,1,-1,3,2,0,2,1.5,0,4,4,4,-1,2,2.2,1,5,1,-1,1,5,1,2,1.9,1.66666666666667,1.25,3,0,1,0.4,0.7,1,2,2,-1,-1,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,F,F,B,F,Female,1,University - Undergraduate,C_Ug,49,46 - 52,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,3,7,4,6,1,1,5,3,7,2,6,4,2,5,8,7,3,6,4,1,1,6,8,3,2,7,4,5,1,2,3,5,4,6,7,2,5,4,8,3,6,7,1,2,3,7,4,6,9,8,1,5,4,3,2,1,1,1,1,2 +464,172.59.193.61,R_3dpkXS920BkAbie,self,02PVF,future,4,3,2,4,2,3,3,4,3,3,2,5,3,3,4,4,2,6,3,3,3,2,2,4,2,3,3,3,2,3,2,4,3,2,3,3,2,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,2,4,2,3,3,3,3,2,2,4,2,3,3,2.66666666666667,4,3,3,2,5,3,3.4,3,2,3,2,4,3,2.8,3,4,4,2,6,3,3,3.66666666666667,2,3,3,2,1,3,2,2.33333333333333,1,1,0,0,0,0,0,0.333333333333333,1,1,0,0,1,0,0.6,1,1,1,0,5,0,1,1.33333333333333,0.755555555555556,0.333333333333333,1.625,3,0,1,0.4,0.7,2,2,2,-2,1,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,C,E,B,A,F,Male,0,University - Graduate (Masters),grad_prof,53,53 - 59,American,Male,1,,,1,,,1,5,1,8,4,7,2,3,6,5,4,7,1,3,2,6,5,3,4,7,8,1,2,6,1,2,7,8,6,3,4,5,4,5,1,6,3,7,2,7,6,3,5,4,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,7,6,3,9,5,1,2,2,4,3,1,2,-1,2,2 +465,142.127.9.170,R_7FDjflDoZ3vnpzF,self,01FPV,future,8,1,1,4,3,1,9,4,2,10,3,9,1,7,4,6,1,1,5,4,7,1,2,6,2,5,3,5,10,3,2,3,0,5,8,10,1,2,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,1,1,4,3,1,9,3,7,1,2,6,2,5,3,3.83333333333333,4,2,10,3,9,1,5.6,5,10,3,2,3,0,4.6,7,4,6,1,1,5,4,4,5,8,10,1,2,3,5,4.83333333333333,1,0,-1,-2,1,-4,6,-0.833333333333333,-1,-8,7,1,6,1,1,2,-4,-4,0,-1,2,-1,-0.833333333333333,-0.222222222222222,2,0.5,0,3,0.2,0.4,0.3,1,0,2,-1,0,2,0,2,10 cents,100 minutes,24 days,2,10,It's impossible to tell,35,Tuesday,F,E,B,D,A,Female,1,High School (or equivalent),HS_TS,35,32 - 38,Canadian,Female,1,,1,,,,1,2,1,8,5,7,6,3,4,6,3,7,1,2,5,4,6,2,7,5,8,1,3,4,1,6,7,8,3,4,2,5,2,5,1,3,4,7,6,2,4,6,3,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,9,8,3,7,1,6,3,2,4,1,1,0,-2,0 +466,142.182.128.142,R_5y3gA20PXofyJX1,self,03VFP,past,9,8,8,9,8,7,9,9,8,8,7,7,4,9,9,8,8,9,8,9,7,8,5,7,5,4,6,7,4,5,7,7,7,3,7,7,3,8,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,8,9,8,7,9,8.16666666666667,7,8,5,7,5,4,6,6,9,8,8,7,7,4,7.8,7,4,5,7,7,7,6,9,9,8,8,9,8,9,8.5,3,7,7,3,8,7,4,5.83333333333333,2,0,3,2,3,3,3,2.16666666666667,2,4,3,0,0,-3,1.8,6,2,1,5,1,1,5,2.66666666666667,2.21111111111111,1.66666666666667,0.5,2,1,1,0.8,0.9,0,1,2,-1,1,1,-1,1,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,A,D,Male,0,College Diploma/Certificate,C_Ug,32,32 - 38,Canadian,Male,1,,,,1,1,,3,1,8,6,2,5,7,4,3,6,7,1,4,5,2,2,5,7,3,8,1,4,6,1,4,5,8,2,3,7,6,5,3,1,6,4,7,2,4,3,7,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,2,8,5,6,9,1,3,2,3,4,1,1,-1,-1,1 +467,69.156.166.205,R_5QLYgD7xbqAj7Ty,self,02PVF,past,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0.8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-0.2,0,0,0,0,0,0,0,0,-0.0666666666666667,0,-0.375,2,1,0.8,0.8,0.8,-1,0,-1,0,-1,1,-1,-2,10 cents,5 minutes,47 days,5,8,It's impossible to tell,57,Sunday,D,E,B,B,E,Male,0,Trade School,HS_TS,21,18 - 24,Canadian,Male,1,,,1,,1,,2,1,8,3,6,7,4,5,3,2,7,1,4,5,6,3,2,5,6,8,1,4,7,1,3,5,8,7,2,4,6,5,6,1,4,2,7,3,6,2,3,7,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,7,5,8,9,6,1,2,4,3,2,1,0,1,-1,1 +468,147.26.140.4,R_1EX7MPUF3uaqmnT,self,02PVF,future,6,7,8,8,9,7,6,8,6,8,7,8,7,9,7,8,8,7,7,7,8,6,8,8,7,7,6,7,8,6,7,8,7,7,7,5,8,8,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,8,8,9,7,6,7.5,8,6,8,8,7,7,6,7.33333333333333,8,6,8,7,8,7,7.4,7,8,6,7,8,7,7.2,9,7,8,8,7,7,7,7.66666666666667,7,7,5,8,8,7,6,7,-2,1,0,0,2,0,0,0.166666666666667,1,-2,2,0,0,0,0.2,2,0,3,0,-1,0,1,0.666666666666667,0.344444444444444,0.333333333333333,0.375,3,0,0.8,0,0.4,1,1,1,-1,1,1,0,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,E,B,C,A,C,Female,1,University - Undergraduate,C_Ug,46,46 - 52,American,Female,1,,,1,,,1,4,1,8,6,2,3,5,7,5,6,7,1,3,2,4,6,3,4,2,8,1,7,5,1,2,6,8,3,7,5,4,4,2,1,3,6,7,5,3,6,4,5,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,3,7,6,9,2,1,8,2,4,3,1,1,-1,-1,0 +469,129.222.159.34,R_1jdg9BUAqp6JwFD,self,03VFP,past,7,9,10,10,9,10,7,10,9,8,8,10,10,9,10,10,10,9,10,10,8,8,8,10,10,10,10,8,10,10,8,9,8,7,10,7,10,7,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,10,10,9,10,7,9.16666666666667,8,8,8,10,10,10,10,9,10,9,8,8,10,10,9,8,10,10,8,9,8,9,9,10,10,10,9,10,10,9.66666666666667,7,10,7,10,7,10,10,8.5,-1,1,2,0,-1,0,-3,0.166666666666667,2,-1,-2,0,1,2,0,2,0,3,0,2,0,0,1.16666666666667,0.444444444444444,-0.333333333333333,0.125,1,2,0.6,0.2,0.4,1,1,2,2,1,1,1,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,A,C,C,B,E,Male,0,University - Undergraduate,C_Ug,18,18 - 24,Canadian,Male,1,,,,1,1,,3,1,8,2,7,5,4,6,4,5,7,1,3,2,6,2,3,5,4,8,1,6,7,1,3,4,8,7,5,2,6,6,4,1,5,3,7,2,2,4,3,6,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,5,9,6,2,7,1,3,2,4,3,1,-2,-1,-1,-1 +470,99.65.58.68,R_5fOTiGlxirk98Tt,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",15,Like somewhat,5,5,6,6,6,5,5,6,5,5,6,5,6,5,5,5,6,5,6,5,6,7,5,8,7,7,6,5,5,5,6,6,6,6,6,6,5,5,4,5,15-19,1,5,5,6,6,6,5,5,5.5,6,7,5,8,7,7,6,6.66666666666667,6,5,5,6,5,6,5.4,5,5,5,6,6,6,5.4,5,5,5,6,5,6,5,5.33333333333333,6,6,6,5,5,4,5,5.33333333333333,-1,-2,1,-2,-1,-2,-1,-1.16666666666667,1,0,0,0,-1,0,0,-1,-1,-1,1,0,2,0,0,-0.388888888888889,-0.333333333333333,0.125,0,3,0.2,0.2,0.2,0,0,0,0,0,0,-1,0,10 cents,100 minutes,24 days,5,9,Richard is as tall as Matt,39,Tuesday,B,C,B,C,C,Male,0,College Diploma/Certificate,C_Ug,56,53 - 59,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,6,4,7,5,1,1,4,3,7,2,5,6,3,2,8,6,4,7,5,1,1,4,8,2,6,5,7,3,1,6,5,2,3,4,7,6,3,7,8,4,2,5,1,2,5,9,3,6,8,7,1,4,2,4,3,1,0,0,0,1 +471,99.227.147.21,R_71cHtlddLQljLw1,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like somewhat,8,2,9,9,9,8,9,8,8,10,9,9,10,7,8,7,8,9,10,9,9,10,10,9,8,10,9,10,8,10,8,9,8,8,9,8,9,10,10,8,5-9,1,8,2,9,9,9,8,9,7.5,9,10,10,9,8,10,9,9.33333333333333,8,8,10,9,9,10,8.8,10,8,10,8,9,8,9,7,8,7,8,9,10,9,8.16666666666667,8,9,8,9,10,10,8,9,-1,-8,-1,0,1,-2,0,-1.83333333333333,-2,0,0,1,0,2,-0.2,-1,-1,-1,-1,-1,0,1,-0.833333333333333,-0.955555555555555,1,-0.375,3,0,1,0.6,0.8,2,-2,2,1,2,2,1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,D,B,B,Male,0,University - Undergraduate,C_Ug,41,39 - 45,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,8,2,7,3,6,1,1,2,5,7,4,6,3,5,7,8,4,6,3,2,1,1,5,8,2,6,7,3,4,1,4,5,6,3,2,7,2,5,3,8,4,7,6,1,9,7,2,6,3,4,8,1,5,3,4,2,1,-1,-2,-2,-1 +472,64.72.232.198,R_3TXcF6uFt072ae7,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Dislike somewhat,6,5,3,7,2,8,7,8,10,7,7,3,8,7,8,9,8,5,8,9,6,2,3,2,6,7,7,8,7,8,8,4,8,8,8,8,8,8,7,8,5-9,-1,6,5,3,7,2,8,7,5.16666666666667,6,2,3,2,6,7,7,4.33333333333333,8,10,7,7,3,8,7,8,7,8,8,4,8,7,7,8,9,8,5,8,9,7.5,8,8,8,8,8,7,8,7.83333333333333,0,3,0,5,-4,1,0,0.833333333333333,0,3,-1,-1,-1,0,0,-1,0,1,0,-3,1,1,-0.333333333333333,0.166666666666667,0.333333333333333,1.75,3,0,1,0.6,0.8,1,2,2,-2,-1,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,C,Male,0,University - PhD,grad_prof,40,39 - 45,Canadian,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,5,7,6,2,1,1,5,3,7,2,6,4,4,7,8,3,5,2,6,1,1,5,8,6,7,2,3,4,1,4,2,5,3,6,7,3,2,4,8,7,6,5,1,3,2,8,7,4,6,5,1,9,3,4,2,1,2,1,2,2 +473,108.173.38.222,R_6LUwl4lDv3XCSz1,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,9,10,8,8,10,10,10,10,10,10,10,10,10,4,4,5,10,4,4,4,9,10,10,8,9,9,10,10,9,8,9,10,9,10,10,10,10,8,10,10,5-9,1,9,10,8,8,10,10,10,9.16666666666667,9,10,10,8,9,9,10,9.16666666666667,10,10,10,10,10,10,10,10,9,8,9,10,9,9.2,4,4,5,10,4,4,4,5.16666666666667,10,10,10,10,8,10,10,9.66666666666667,0,0,-2,0,1,1,0,0,0,1,2,1,0,1,0.8,-6,-6,-5,0,-4,-6,-6,-4.5,-1.23333333333333,-1.66666666666667,0,1,2,0.6,0,0.3,2,2,2,2,2,2,2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,C,B,A,C,C,Male,0,University - Undergraduate,C_Ug,18,18 - 24,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,8,3,6,2,4,1,1,4,2,7,5,6,3,5,4,8,7,3,6,2,1,1,4,8,5,6,2,7,3,1,2,3,4,5,6,7,5,3,2,8,7,6,4,1,3,7,8,9,6,2,4,1,5,4,2,3,1,-2,-2,-2,-2 +474,23.233.244.160,R_1N7ALhMzYJmKuCl,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like somewhat,10,10,10,10,10,10,8,10,5,4,4,4,4,10,10,10,10,9,8,10,10,9,8,9,9,10,6,8,10,10,10,10,10,9,10,8,9,10,9,10,5-9,1,10,10,10,10,10,10,8,10,10,9,8,9,9,10,6,9.16666666666667,10,5,4,4,4,4,5.4,8,10,10,10,10,10,9.6,10,10,10,10,9,8,10,9.5,9,10,8,9,10,9,10,9.16666666666667,0,1,2,1,1,0,2,0.833333333333333,2,-5,-6,-6,-6,-6,-4.2,1,0,2,1,-1,-1,0,0.333333333333333,-1.01111111111111,-1.33333333333333,0,1,2,0.6,0,0.3,2,2,2,2,2,2,2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,C,B,A,C,C,Male,0,University - Undergraduate,C_Ug,18,18 - 24,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,2,4,7,1,1,5,4,7,2,6,3,3,4,8,7,2,5,6,1,1,2,8,3,6,5,4,7,1,3,5,6,4,2,7,5,2,6,8,4,7,3,1,8,5,2,9,3,6,4,1,7,2,3,4,1,-2,-2,-2,-2 +475,74.56.176.91,R_11atSoMCmVyZnz3,self,02PVF,past,10,10,10,10,10,10,8,4,4,4,5,10,4,9,8,10,10,10,8,10,10,8,9,9,9,10,6,10,10,10,10,8,10,10,10,8,9,9,9,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10,10,10,10,10,8,10,10,8,9,9,9,10,6,9.16666666666667,4,4,4,5,10,4,5.4,10,10,10,10,8,10,9.6,9,8,10,10,10,8,10,9.16666666666667,10,10,8,9,9,9,10,9.16666666666667,0,2,1,1,1,0,2,0.833333333333333,-6,-6,-6,-5,2,-6,-4.2,-1,-2,2,1,1,-1,0,0,-1.12222222222222,-1.33333333333333,0,1,2,0.6,0,0.3,2,2,2,2,2,2,2,2,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Friday,C,B,A,C,C,Male,0,University - Undergraduate,C_Ug,18,18 - 24,Canadian,Male,1,,,1,,1,,3,1,8,4,7,6,5,2,6,2,7,1,4,3,5,2,7,6,5,8,1,3,4,1,6,2,8,4,5,3,7,6,5,1,4,3,7,2,5,2,3,4,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,4,2,5,9,3,1,7,2,4,3,1,-2,-2,-2,-2 +476,69.154.150.24,R_1JDSnM1XteMbGTO,self,01FPV,future,2,4,1,7,1,6,2,4,1,6,6,2,4,1,1,4,1,1,2,1,6,6,6,7,6,7,6,6,6,6,5,4,7,2,2,7,1,7,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,1,7,1,6,2,3.5,6,6,6,7,6,7,6,6.33333333333333,4,1,6,6,2,4,3.8,6,6,6,5,4,7,5.4,1,1,4,1,1,2,1,1.66666666666667,2,2,7,1,7,7,2,4.33333333333333,-4,-2,-5,0,-5,-1,-4,-2.83333333333333,-2,-5,0,1,-2,-3,-1.6,-1,-1,-3,0,-6,-5,-1,-2.66666666666667,-2.36666666666667,-2.66666666666667,1.25,0,3,0.6,0.4,0.5,2,2,2,-2,1,1,-2,2,10 cents,100 minutes,24 days,5,8,Richard is as tall as Matt,47,Monday,C,E,D,B,F,Male,0,College Diploma/Certificate,C_Ug,48,46 - 52,American,Male,1,,1,,,,1,6,1,8,2,4,3,5,7,2,5,7,1,3,4,6,5,3,4,2,8,1,6,7,1,2,7,8,3,5,4,6,3,2,1,4,6,7,5,5,3,4,2,6,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,7,5,2,3,6,8,1,4,3,2,4,1,2,-1,-1,2 +477,134.41.246.9,R_6SHwiPhmWttSuxr,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,0,0,0,0,2,2,0,1,1,0,0,0,1,2,2,1,1,0,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,4,2,2,2,7,2,2,20+,1,0,0,0,0,2,2,0,0.666666666666667,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0.4,0,0,1,1,1,0,0.6,2,2,1,1,0,2,1,1.33333333333333,4,2,2,2,7,2,2,3.16666666666667,0,0,0,0,2,2,0,0.666666666666667,1,1,-1,-1,-1,1,-0.2,-2,0,-1,-1,-7,0,-1,-1.83333333333333,-0.455555555555556,0,1.625,3,0,1,0.8,0.9,2,2,2,-2,-1,0,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,F,B,D,Female,1,University - Graduate (Masters),grad_prof,31,25 - 31,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,8,6,4,7,5,1,1,3,6,7,4,2,5,6,5,8,4,2,7,3,1,1,4,8,5,7,2,3,6,1,6,4,3,2,5,7,6,2,4,8,3,5,7,1,9,6,8,7,4,3,2,1,5,3,4,2,1,2,1,0,2 +478,174.170.20.86,R_5PAflzHpaoFTbtl,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",5,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5-9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.875,0,3,0,0.4,0.2,0,2,2,-2,1,1,-2,1,10 cents,100 minutes,24 days,4,12,Richard is taller than Matt,57,Tuesday,D,E,D,A,B,Male,0,Trade School,HS_TS,53,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,8,2,4,6,5,1,1,2,5,7,4,6,3,2,5,8,6,3,4,7,1,1,4,8,5,3,6,7,2,1,6,3,4,2,5,7,2,7,4,8,3,5,6,1,4,7,6,3,2,8,9,1,5,3,4,2,1,2,-1,-1,2 +479,209.253.171.218,R_6yuZB2pjee6q2YN,self,03VFP,future,4,5,6,6,7,5,5,5,4,6,4,5,7,6,4,6,5,5,5,5,5,5,5,6,6,5,6,5,5,6,5,5,4,5,5,6,5,6,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,7,5,5,5.5,5,5,5,6,6,5,6,5.33333333333333,5,4,6,4,5,7,4.8,5,5,6,5,5,4,5.2,6,4,6,5,5,5,5,5.16666666666667,5,5,6,5,6,5,6,5.33333333333333,-1,0,1,0,1,0,-1,0.166666666666667,0,-1,0,-1,0,3,-0.4,1,-1,0,0,-1,0,-1,-0.166666666666667,-0.133333333333333,0.333333333333333,0.125,0,3,0.2,0.6,0.4,0,0,-1,-1,0,0,-1,0,10 cents,100 minutes,24 days,3,12,Richard is taller than Zach,47,Tuesday,D,D,B,E,D,Female,1,High School (or equivalent),HS_TS,50,46 - 52,American,Female,1,,,,1,,1,2,1,8,5,3,6,4,7,6,4,7,1,2,3,5,2,5,6,3,8,1,7,4,1,3,5,8,7,2,4,6,4,2,1,3,6,7,5,4,3,2,6,7,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,7,8,2,5,1,9,2,3,4,1,1,0,0,1 +480,73.213.52.58,R_5gtHIlVOAYbib6g,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,0,4,1,3,2,5,1,1,1,4,1,1,0,0,0,0,1,0,2,2,2,4,0,2,1,3,0,1,1,2,1,0,2,0,0,2,0,0,20+,2,2,2,0,4,1,3,2,2,2,2,2,4,0,2,1,2,5,1,1,1,4,1,2.4,3,0,1,1,2,1,1.4,1,0,0,0,0,1,0,0.333333333333333,0,2,0,0,2,0,0,0.666666666666667,0,0,-2,0,1,1,1,0,2,1,0,0,2,0,1,1,-2,0,0,-2,1,0,-0.333333333333333,0.222222222222222,0.333333333333333,1.375,1,1,0.8,0.6,0.7,1,2,2,-2,0,-1,-2,1,10 cents,5 minutes,15 days,5,8,Richard is shorter than Matt,47,Sunday,D,E,C,B,B,Female,1,University - Undergraduate,C_Ug,61,60 - 66,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,2,4,7,1,1,5,4,7,6,3,2,2,6,8,4,3,7,5,1,1,4,8,6,5,2,3,7,1,2,5,3,6,4,7,6,4,2,8,3,7,5,1,8,2,4,5,3,6,7,1,9,2,4,3,1,2,0,1,2 +481,142.177.159.189,R_7hbjAoMCuNwCIMr,self,03VFP,past,3,1,8,2,2,1,2,6,7,2,2,6,6,6,7,8,6,7,4,5,8,2,6,7,2,4,6,7,7,5,2,5,7,2,9,9,3,3,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,8,2,2,1,2,2.83333333333333,8,2,6,7,2,4,6,4.83333333333333,6,7,2,2,6,6,4.6,7,7,5,2,5,7,5.2,6,7,8,6,7,4,5,6.33333333333333,2,9,9,3,3,3,6,4.83333333333333,-5,-1,2,-5,0,-3,-4,-2,-1,0,-3,0,1,-1,-0.6,4,-2,-1,3,4,1,-1,1.5,-0.366666666666667,-2,1.375,0,3,0.8,0,0.4,1,2,2,-2,1,-2,-2,1,10 cents,100 minutes,24 days,5,12,It's impossible to tell,47,Sunday,B,F,D,A,E,Female,1,University - Graduate (Masters),grad_prof,38,32 - 38,Canadian,Female,1,,,,1,1,,5,1,8,4,3,2,6,7,4,6,7,1,2,3,5,7,5,2,4,8,1,3,6,1,2,3,8,5,4,6,7,3,6,1,4,2,7,5,3,6,4,2,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,9,3,4,6,5,1,8,3,2,4,1,2,-1,2,2 +482,173.206.34.146,R_6sbreZCqUrDr1n6,self,01FPV,past,2,2,4,4,3,2,3,2,2,5,1,5,5,5,5,5,1,5,1,1,1,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,4,3,2,3,2.83333333333333,1,5,5,1,1,1,1,2.33333333333333,2,2,5,1,5,5,3,1,1,1,1,1,1,1,5,5,5,1,5,1,1,3.66666666666667,1,1,1,1,1,1,1,1,1,-3,-1,3,2,1,2,0.5,1,1,4,0,4,4,2,4,4,4,0,4,0,0,2.66666666666667,1.72222222222222,2,1.625,2,1,1,0.2,0.6,1,2,2,-2,-2,-2,-2,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,B,F,F,Male,0,University - Undergraduate,C_Ug,45,39 - 45,Canadian,Male,1,,1,,,1,,3,1,8,2,6,4,7,5,2,6,7,1,3,4,5,7,4,6,3,8,1,5,2,1,5,4,8,2,3,6,7,5,3,1,4,6,7,2,3,4,5,7,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,4,2,8,7,3,6,1,5,2,4,3,1,2,2,2,2 +483,165.225.210.104,R_1XbSB4Y3cwz7CPw,self,01FPV,past,3,3,7,7,7,7,7,7,6,3,5,7,6,7,6,6,5,6,5,6,6,3,7,6,6,7,7,5,6,4,4,7,6,5,6,7,4,7,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,7,7,7,7,7,5.66666666666667,6,3,7,6,6,7,7,5.83333333333333,7,6,3,5,7,6,5.6,5,6,4,4,7,6,5.2,7,6,6,5,6,5,6,5.83333333333333,5,6,7,4,7,4,7,5.5,-3,0,0,1,1,0,0,-0.166666666666667,2,0,-1,1,0,0,0.4,2,0,-1,1,-1,1,-1,0.333333333333333,0.188888888888889,-0.333333333333333,0.25,2,1,1,0,0.5,-1,1,0,1,-1,-1,-1,0,10 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,D,D,C,B,Male,0,High School (or equivalent),HS_TS,39,39 - 45,Canadian,Male,1,,1,,,1,,3,1,8,7,4,5,2,6,2,3,7,1,5,4,6,2,6,5,4,8,1,7,3,1,3,4,8,5,7,2,6,3,4,1,6,2,7,5,4,3,5,6,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,4,2,6,8,5,3,1,7,2,4,3,1,-1,1,1,1 +484,71.72.1.109,R_7S2GbG5MZ1VHYwD,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20+,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.625,1,2,0.8,0.4,0.6,1,0,0,-2,0,0,-1,1,10 cents,5 minutes,24 days,5,8,Richard is as tall as Matt,47,Sunday,D,E,A,D,F,Male,0,High School (or equivalent),HS_TS,55,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,8,3,7,2,4,1,1,5,6,7,2,4,3,7,6,8,4,3,5,2,1,1,3,8,7,5,2,4,6,1,2,3,6,5,4,7,3,5,7,8,2,6,4,1,8,4,5,2,9,6,7,1,3,3,4,2,1,2,0,0,1 +485,24.218.194.48,R_7FsLngIgiROJICT,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,3,2,2,1,2,1,2,2,2,1,2,2,2,1,1,1,1,4,2,1,1,1,1,2,20+,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,1.66666666666667,2,2,2,1,1,2,1.6,2,2,1,1,1,1,1.4,1,2,2,3,2,2,1,2,4,2,1,1,1,1,2,1.66666666666667,0,1,0,0,0,1,1,0.333333333333333,0,0,1,0,0,1,0.2,-3,0,1,2,1,1,-1,0.333333333333333,0.288888888888889,0.333333333333333,0,0,3,0.4,0,0.2,0,0,1,-1,2,0,0,0,10 cents,100 minutes,24 days,5,10,It's impossible to tell,57,Tuesday,F,C,C,F,E,Female,1,University - Undergraduate,C_Ug,45,39 - 45,American,Female,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,7,3,2,4,1,1,3,2,7,4,6,5,7,2,8,5,3,6,4,1,1,5,8,2,4,6,7,3,1,4,3,2,5,6,7,3,4,6,8,7,5,2,1,2,7,6,4,8,5,9,1,3,2,4,3,1,1,-2,0,0 +486,73.89.250.55,R_7QmdrxOQfjD0DCQ,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like somewhat,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,20+,1,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0.2,0.2,0.2,0,0,0,0,0,0,0,0,10 cents,5 minutes,24 days,5,11,Richard is as tall as Matt,35,Saturday,D,D,C,C,C,Male,0,Trade School,HS_TS,54,53 - 59,American,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,8,7,6,5,2,1,1,6,2,7,3,5,4,2,5,8,3,6,4,7,1,1,3,8,5,6,4,7,2,1,4,3,2,6,5,7,5,4,7,8,6,3,2,1,8,3,5,6,9,7,4,1,2,4,3,2,1,0,0,0,0 +487,68.204.96.133,R_5yaxJCi7syOFxdP,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",9,Like somewhat,1,1,3,3,1,7,2,4,3,5,3,2,3,3,3,2,3,3,7,4,3,3,2,2,3,7,2,3,3,4,3,3,3,3,3,3,3,3,3,3,5-9,1,1,1,3,3,1,7,2,2.66666666666667,3,3,2,2,3,7,2,3.33333333333333,4,3,5,3,2,3,3.4,3,3,4,3,3,3,3.2,3,3,2,3,3,7,4,3.5,3,3,3,3,3,3,3,3,-2,-2,1,1,-2,0,0,-0.666666666666667,1,0,1,0,-1,0,0.2,0,0,-1,0,0,4,1,0.5,0.0111111111111111,0.333333333333333,0.75,0,3,1,0.4,0.7,1,2,1,-1,0,-1,-1,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,D,B,E,Female,1,College Diploma/Certificate,C_Ug,44,39 - 45,American,Female,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,8,5,4,7,2,1,1,3,6,7,5,4,2,6,5,8,2,4,3,7,1,1,2,8,4,5,3,6,7,1,3,2,4,5,6,7,5,4,6,8,3,7,2,1,7,9,8,2,4,5,6,1,3,4,3,2,1,1,0,1,1 +488,172.56.69.102,R_5B5bvk6BNXSyOgV,self,02PVF,future,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,4,1,0,0,0,0,0,0,1,0,0,0,1,0,0,2,2,1,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.166666666666667,1,0,0,1,1,0,0.6,1,0,0,2,2,1,1,0,1,4,1,0,0,0,1,0,0,0,0,0,1,0,0.166666666666667,0,0,0,-1,0,0,0,-0.166666666666667,0,0,0,-1,-1,-1,-0.4,0,1,4,1,0,-1,0,0.833333333333333,0.0888888888888889,-0.333333333333333,0.625,3,0,1,0.6,0.8,0,1,0,-2,-1,1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,C,D,B,D,Male,0,Trade School,HS_TS,64,60 - 66,American,Male,1,,,1,,,1,4,1,8,2,6,5,7,3,3,4,7,1,5,2,6,4,3,5,6,8,1,7,2,1,7,4,8,3,6,2,5,2,4,1,3,6,7,5,2,6,5,3,7,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,7,8,6,9,1,2,3,4,2,1,2,1,-1,1 +489,99.11.95.84,R_1CvZc5lAKCDp6lS,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5-9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,3,0,0.2,0.1,2,2,2,-2,2,-2,-2,2,10 cents,100 minutes,24 days,2,12,Richard is shorter than Matt,57,Saturday,D,C,C,D,E,Female,1,University - Graduate (Masters),grad_prof,55,53 - 59,American,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,3,7,2,6,1,1,6,5,7,4,3,2,7,5,8,4,2,6,3,1,1,5,8,2,3,6,7,4,1,4,2,6,5,3,7,4,5,6,8,2,7,3,1,9,6,5,4,2,8,7,1,3,3,4,2,1,2,-2,2,2 +490,198.209.40.94,R_54GgOAL1OP6NYIM,other,01FPV,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,0,0,2,2,4,4,0,6,1,0,3,0,0,0,0,4,2,4,7,0,3,0,2,5,0,2,1,2,0,3,0,2,1,0,0,5,3,1,4,0,20+,2,0,0,2,2,4,4,0,2,3,0,2,5,0,2,1,2,6,1,0,3,0,0,2,2,0,3,0,2,1,1.4,0,0,4,2,4,7,0,2.83333333333333,0,0,5,3,1,4,0,2.16666666666667,-3,0,0,-3,4,2,-1,0,4,1,-3,3,-2,-1,0.6,0,0,-1,-1,3,3,0,0.666666666666667,0.422222222222222,-0.666666666666667,1.5,0,3,1,0.6,0.8,2,2,2,-2,-1,-1,-2,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,C,D,B,D,Male,0,College Diploma/Certificate,C_Ug,56,53 - 59,American,Male,,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,5,7,2,3,1,1,4,2,7,6,5,3,6,4,8,7,2,3,5,1,1,7,8,6,4,2,3,5,1,6,3,4,2,5,7,3,4,2,8,7,6,5,1,7,8,3,4,5,9,2,1,6,2,4,3,1,2,1,1,2 +491,72.190.160.147,R_7zcJDRCCSuqZJ7E,self,03VFP,future,1,1,3,8,7,3,6,5,2,3,5,7,6,6,6,5,3,5,5,6,5,5,5,3,3,5,5,6,5,3,6,7,5,3,5,3,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,3,8,7,3,6,3.83333333333333,5,5,5,3,3,5,5,4.33333333333333,5,2,3,5,7,6,4.4,6,5,3,6,7,5,5.4,6,6,5,3,5,5,6,5,3,5,3,5,5,5,5,4.33333333333333,-4,-4,-2,5,4,-2,1,-0.5,-1,-3,0,-1,0,1,-1,3,1,2,-2,0,0,1,0.666666666666667,-0.277777777777778,1,1.25,1,2,1,0.6,0.8,2,2,2,-2,1,1,-2,2,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,F,B,Female,1,College Diploma/Certificate,C_Ug,64,60 - 66,American,Female,1,,,,1,,1,5,1,8,2,4,7,6,3,4,5,7,1,3,6,2,5,4,3,6,8,1,2,7,1,7,6,8,4,5,3,2,5,4,1,3,6,7,2,4,5,3,6,7,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,4,3,8,6,9,1,2,3,2,4,1,2,-1,-1,2 +492,65.49.154.117,R_7OVt9V0wy8Vc8bn,self,01FPV,future,2,4,0,3,1,2,2,6,1,3,2,1,2,0,2,3,1,0,1,2,1,0,0,2,1,2,1,2,1,2,0,1,1,1,0,1,0,0,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,0,3,1,2,2,2,1,0,0,2,1,2,1,1,6,1,3,2,1,2,2.6,2,1,2,0,1,1,1.2,0,2,3,1,0,1,2,1.16666666666667,1,0,1,0,0,3,2,0.833333333333333,1,4,0,1,0,0,1,1,4,0,1,2,0,1,1.4,-1,2,2,1,0,-2,0,0.333333333333333,0.911111111111111,0.666666666666667,0.875,3,0,1,0.6,0.8,-1,1,1,-2,-1,-2,-2,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,E,C,Male,0,High School (or equivalent),HS_TS,39,39 - 45,Canadian,Male,1,,1,,,,1,7,1,8,6,4,2,5,3,3,4,7,1,2,6,5,4,2,6,5,8,1,7,3,1,5,2,8,4,7,3,6,3,2,1,6,4,7,5,5,3,7,4,6,1,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,4,7,6,2,3,1,5,3,2,4,1,2,1,2,2 +493,67.220.42.144,R_5fP3UDU0ZP5yILu,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,3,1,3,2,2,2,2,1,2,1,1,3,3,1,1,1,1,1,2,2,2,2,1,2,2,3,2,2,2,2,2,1,2,2,2,2,0,2,2,20+,2,2,3,1,3,2,2,2,2.16666666666667,2,2,2,1,2,2,3,1.83333333333333,2,1,2,1,1,3,1.4,2,2,2,2,2,1,2,3,1,1,1,1,1,2,1.33333333333333,2,2,2,2,0,2,2,1.66666666666667,0,1,-1,2,0,0,-1,0.333333333333333,0,-1,0,-1,-1,2,-0.6,1,-1,-1,-1,1,-1,0,-0.333333333333333,-0.2,0.333333333333333,0.625,0,3,1,0.4,0.7,1,1,0,-2,1,-1,-2,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,D,A,A,Female,1,University - Undergraduate,C_Ug,48,46 - 52,Canadian,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,6,3,4,2,1,1,2,5,7,6,4,3,7,5,8,3,2,6,4,1,1,4,8,5,7,3,6,2,1,6,2,5,4,3,7,3,5,6,8,4,2,7,1,6,3,9,5,4,2,8,1,7,2,4,3,1,2,-1,1,2 +494,207.148.176.141,R_7OE4lG30tG0P0OL,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,1,3,2,1,3,2,1,5,5,3,6,5,2,2,2,2,2,1,2,2,1,3,0,1,1,1,2,2,3,1,1,2,1,1,2,4,2,2,2,1,10-14,2,1,3,2,1,3,2,1,2,1,3,0,1,1,1,2,1.16666666666667,5,5,3,6,5,2,4.8,2,3,1,1,2,1,1.8,2,2,2,2,1,2,2,1.83333333333333,1,2,4,2,2,2,1,2.16666666666667,0,0,2,0,2,1,-1,0.833333333333333,3,2,2,5,3,1,3,1,0,-2,0,-1,0,1,-0.333333333333333,1.16666666666667,0.333333333333333,0.25,0,2,0.2,0.2,0.2,1,2,1,-1,1,2,0,0,20 cents,100 minutes,24 days,4,8,Richard is shorter than Matt,44,Monday,A,A,A,B,A,Male,0,College Diploma/Certificate,C_Ug,72,67 - 73,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,8,7,6,3,4,1,1,2,3,7,5,4,6,6,2,8,7,4,5,3,1,1,3,8,7,4,6,2,5,1,4,6,3,2,5,7,4,3,2,8,7,6,5,1,2,4,8,6,7,5,3,1,9,3,2,4,1,1,-1,-2,0 +495,142.114.204.104,R_5pXYctZg259RwTG,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,2,2,2,2,2,2,2,3,1,2,1,2,1,2,2,2,2,2,2,2,3,2,2,2,1,1,3,2,1,2,3,1,1,2,1,3,1,2,1,3,10-14,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,3,1.83333333333333,3,1,2,1,2,1,1.8,2,1,2,3,1,1,1.8,2,2,2,2,2,2,2,2,2,1,3,1,2,1,3,1.66666666666667,-1,0,0,0,1,1,-1,0.166666666666667,1,0,0,-2,1,0,0,0,1,-1,1,0,1,-1,0.333333333333333,0.166666666666667,-0.666666666666667,0.375,3,0,1,0.2,0.6,-1,0,1,-1,0,-1,1,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,F,E,D,C,F,Male,0,University - Undergraduate,C_Ug,29,25 - 31,Canadian,Male,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,2,4,5,1,1,2,6,7,3,5,4,2,5,8,7,3,4,6,1,1,3,8,6,4,2,5,7,1,6,2,3,5,4,7,7,6,5,8,3,2,4,1,4,8,7,6,5,9,3,1,2,4,3,2,1,1,0,1,-1 +496,207.81.65.49,R_33msX6RzzA7lQ0V,self,03VFP,future,4,2,1,5,2,3,3,3,4,5,5,6,4,3,6,7,5,5,7,5,6,4,7,7,3,5,6,6,4,6,3,6,3,7,2,5,6,0,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,1,5,2,3,3,2.83333333333333,6,4,7,7,3,5,6,5.33333333333333,3,4,5,5,6,4,4.6,6,4,6,3,6,3,5,3,6,7,5,5,7,5,5.5,7,2,5,6,0,5,4,4.16666666666667,-2,-2,-6,-2,-1,-2,-3,-2.5,-3,0,-1,2,0,1,-0.4,-4,4,2,-1,5,2,1,1.33333333333333,-0.522222222222222,-0.333333333333333,1.5,0,2,1,1,1,2,2,2,-2,-1,0,-2,1,10 cents,100 minutes,15 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,63,60 - 66,Canadian,Female,1,,,,1,,1,3,1,8,2,5,6,4,7,3,2,7,1,4,6,5,2,4,3,7,8,1,6,5,1,4,7,8,6,2,3,5,2,3,1,6,5,7,4,4,5,6,2,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,9,4,5,7,3,1,2,3,2,4,1,2,1,0,2 +497,99.170.154.63,R_5V8G0ha49XeQRgp,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,5,3,4,4,2,5,6,7,7,5,7,5,7,5,6,7,5,3,5,4,5,6,4,2,5,5,6,7,5,6,5,5,7,6,4,2,5,5,4,5,20+,2,5,3,4,4,2,5,6,3.83333333333333,5,6,4,2,5,5,6,4.5,7,7,5,7,5,7,6.2,7,5,6,5,5,7,5.6,5,6,7,5,3,5,4,5.16666666666667,6,4,2,5,5,4,5,4.33333333333333,0,-3,0,2,-3,0,0,-0.666666666666667,0,2,-1,2,0,0,0.6,-1,2,5,0,-2,1,-1,0.833333333333333,0.255555555555556,-0.333333333333333,0.125,0,3,0.2,0.6,0.4,0,1,2,-1,2,1,0,0,10 cents,100 minutes,24 days,3,10,It's impossible to tell,39,Tuesday,D,F,A,B,D,Male,0,College Diploma/Certificate,C_Ug,45,39 - 45,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,6,2,7,1,1,2,3,7,4,6,5,3,2,8,4,6,5,7,1,1,5,8,2,6,3,7,4,1,5,4,3,2,6,7,7,3,6,8,5,4,2,1,7,4,3,2,8,6,5,1,9,2,3,4,1,1,-2,-1,0 +498,24.143.87.138,R_6IRHlYTGaJaGvS4,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,2,1,1,2,1,3,1,4,2,2,4,1,1,1,3,5,2,3,1,1,1,1,2,5,1,3,1,1,2,4,2,2,2,3,2,2,3,2,4,1,20+,2,2,1,1,2,1,3,1,1.66666666666667,1,1,2,5,1,3,1,2.16666666666667,4,2,2,4,1,1,2.6,1,2,4,2,2,2,2.2,1,3,5,2,3,1,1,2.5,3,2,2,3,2,4,1,2.66666666666667,1,0,-1,-3,0,0,0,-0.5,3,0,-2,2,-1,-1,0.4,-2,1,3,-1,1,-3,0,-0.166666666666667,-0.0888888888888889,-0.333333333333333,0,0,3,0.4,0.4,0.4,0,1,0,-1,2,2,-1,1,10 cents,100 minutes,24 days,3,8,It's impossible to tell,39,Tuesday,D,D,B,C,E,Male,0,High School (or equivalent),HS_TS,51,46 - 52,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,8,7,4,5,6,1,1,5,6,7,2,3,4,4,7,8,6,3,2,5,1,1,6,8,2,7,3,4,5,1,3,4,5,2,6,7,3,2,7,8,5,4,6,1,9,4,8,5,7,6,3,1,2,2,4,3,1,1,-2,-2,1 +499,76.22.53.154,R_62VnbJU9Jar2rFF,self,01FPV,future,3,0,0,6,0,0,3,4,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,3,0,0,5,0,4,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0,0,6,0,0,3,1.5,0,0,0,1,0,0,0,0.166666666666667,4,0,0,0,5,1,1.8,3,3,0,0,5,0,2.2,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0.666666666666667,3,0,0,5,0,0,3,1.33333333333333,1,-3,0,0,0,1,-0.4,-4,0,0,0,0,0,-1,-0.666666666666667,0.0888888888888889,1,1.875,3,0,0.8,1,0.9,2,2,2,-2,-1,-2,-2,2,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Monday,D,E,B,B,D,Female,1,University - Undergraduate,C_Ug,45,39 - 45,American,Female,1,,1,,,,1,3,1,8,4,2,6,5,7,3,4,7,1,5,6,2,4,7,6,2,8,1,5,3,1,3,5,8,7,6,2,4,6,3,1,2,4,7,5,2,3,5,6,4,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,8,5,6,4,9,7,1,3,2,3,4,1,2,1,2,2 +500,98.41.84.136,R_7eWP3QGUW5IoqZW,self,02PVF,past,6,0,2,6,2,8,5,1,2,4,0,4,4,2,1,3,1,4,2,7,7,5,7,8,8,8,8,3,8,5,3,5,5,5,2,5,7,7,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,0,2,6,2,8,5,4,7,5,7,8,8,8,8,7.16666666666667,1,2,4,0,4,4,2.2,3,8,5,3,5,5,4.8,2,1,3,1,4,2,7,2.16666666666667,5,2,5,7,7,8,6,5.66666666666667,-1,-5,-5,-2,-6,0,-3,-3.16666666666667,-2,-6,-1,-3,-1,-1,-2.6,-3,-1,-2,-6,-3,-6,1,-3.5,-3.08888888888889,-1,0.25,0,1,0.2,0.2,0.2,0,2,0,-2,1,1,-1,-1,20 cents,100 minutes,36 days,6,9,Zach is shorter than Matt,47,Tuesday,D,C,D,E,B,Male,0,College Diploma/Certificate,C_Ug,23,18 - 24,American,Male,1,,,1,,1,,6,1,8,7,5,3,4,2,5,2,7,1,3,4,6,7,6,2,4,8,1,5,3,1,6,7,8,4,3,2,5,5,6,1,2,4,7,3,5,2,4,6,7,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,9,3,2,7,1,8,4,3,2,1,2,-1,-1,1 +501,172.59.155.152,R_3IRV9r2HR3Skjh7,self,01FPV,future,0,6,0,0,1,1,2,1,4,1,2,5,3,5,8,8,2,7,3,6,7,2,3,8,3,7,3,8,1,4,6,6,5,2,6,4,3,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,6,0,0,1,1,2,1.33333333333333,7,2,3,8,3,7,3,5,1,4,1,2,5,3,2.6,8,1,4,6,6,5,5,5,8,8,2,7,3,6,5.5,2,6,4,3,3,5,4,3.83333333333333,-7,4,-3,-8,-2,-6,-1,-3.66666666666667,-7,3,-3,-4,-1,-2,-2.4,3,2,4,-1,4,-2,2,1.66666666666667,-1.46666666666667,-0.333333333333333,0.125,2,1,0.8,1,0.9,0,1,1,1,0,0,-2,-2,5 cents,100 minutes,47 days,2,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,High School (or equivalent),HS_TS,22,18 - 24,American,Female,1,,1,,,,1,2,1,8,7,6,3,5,4,4,3,7,1,2,5,6,2,6,7,4,8,1,5,3,1,4,6,8,3,2,7,5,3,2,1,4,5,7,6,6,5,3,4,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,8,7,3,2,9,1,5,2,3,4,1,-1,0,0,2 +502,68.194.90.25,R_5FW0TLFkz6hKIBa,self,03VFP,past,9,1,2,7,6,4,6,8,9,6,7,7,6,5,7,8,8,9,7,6,6,6,8,8,6,7,7,7,6,9,5,10,8,9,8,7,7,6,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,1,2,7,6,4,6,4.83333333333333,6,6,8,8,6,7,7,6.83333333333333,8,9,6,7,7,6,7.4,7,6,9,5,10,8,7.4,5,7,8,8,9,7,6,7.33333333333333,9,8,7,7,6,7,6,7.33333333333333,3,-5,-6,-1,0,-3,-1,-2,1,3,-3,2,-3,-2,0,-4,-1,1,1,3,0,0,0,-0.666666666666667,-1,-0.25,0,1,0.4,0.6,0.5,1,1,2,0,2,1,2,-1,15 cents,25 minutes,24 days,5,10,It's impossible to tell,57,Monday,D,A,E,B,D,Male,0,Professional Degree (ex. JD/MD),grad_prof,22,18 - 24,American,Male,1,,,,1,1,,4,1,8,6,3,7,5,2,3,6,7,1,4,2,5,4,5,6,2,8,1,3,7,1,4,2,8,6,3,5,7,3,6,1,2,5,7,4,7,2,4,6,5,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,4,5,6,7,8,3,1,2,3,4,2,1,0,-2,-1,-2 +503,47.150.217.201,R_7QfZ4gUkrgl3QA2,self,02PVF,future,7,5,5,5,7,6,6,7,7,5,6,7,7,5,4,5,4,8,5,7,8,5,5,5,7,6,7,6,7,6,5,10,5,5,7,7,1,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,5,5,7,6,6,5.83333333333333,8,5,5,5,7,6,7,6,7,7,5,6,7,7,6.4,6,7,6,5,10,5,6.8,5,4,5,4,8,5,7,5.16666666666667,5,7,7,1,5,5,5,5,-1,0,0,0,0,0,-1,-0.166666666666667,1,0,-1,1,-3,2,-0.4,0,-3,-2,3,3,0,2,0.166666666666667,-0.133333333333333,1,1.125,0,3,0.6,0.6,0.6,2,2,1,-2,1,-1,-1,1,10 cents,100 minutes,24 days,5,7,It's impossible to tell,47,Tuesday,A,E,B,B,C,Female,1,High School (or equivalent),HS_TS,21,18 - 24,American,Female,1,,,1,,,1,2,1,8,4,5,3,6,7,4,3,7,1,2,6,5,6,5,4,7,8,1,2,3,1,7,4,8,6,3,2,5,5,3,1,2,4,7,6,2,3,6,7,5,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,9,8,2,7,4,1,3,4,2,3,1,2,-1,1,1 +504,97.235.112.106,R_3bSm234PQ5A6PQZ,self,02PVF,future,9,1,10,4,7,6,8,6,6,0,0,3,3,1,7,5,4,2,6,8,3,6,10,10,6,3,3,8,9,7,7,2,3,1,2,8,6,5,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,1,10,4,7,6,8,6.16666666666667,3,6,10,10,6,3,3,6.33333333333333,6,6,0,0,3,3,3,8,9,7,7,2,3,6.6,1,7,5,4,2,6,8,4.16666666666667,1,2,8,6,5,7,4,4.83333333333333,6,-5,0,-6,1,3,5,-0.166666666666667,-2,-3,-7,-7,1,0,-3.6,0,5,-3,-2,-3,-1,4,-0.666666666666667,-1.47777777777778,3,1.625,1,2,0.6,0.2,0.4,2,2,2,-2,1,-2,-2,2,10 cents,5 minutes,24 days,5,11,Richard is as tall as Matt,47,Sunday,A,D,A,B,B,Female,1,High School (or equivalent),HS_TS,20,18 - 24,American,Female,1,,,1,,,1,5,1,8,7,4,2,3,6,3,4,7,1,2,5,6,2,7,4,6,8,1,3,5,1,5,2,8,3,7,4,6,3,2,1,4,5,7,6,6,3,2,4,5,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,7,4,3,2,8,1,5,2,4,3,1,2,-1,2,2 +505,24.208.175.120,R_65FnbiDetioxUG6,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",12,Like a great deal,4,4,2,4,2,5,3,1,2,2,1,2,2,1,5,6,3,3,4,4,1,6,4,3,2,2,3,4,2,1,3,2,2,1,2,3,2,2,2,4,10-14,2,4,4,2,4,2,5,3,3.5,1,6,4,3,2,2,3,3,1,2,2,1,2,2,1.6,4,2,1,3,2,2,2.4,1,5,6,3,3,4,4,3.66666666666667,1,2,3,2,2,2,4,2,3,-2,-2,1,0,3,0,0.5,-3,0,1,-2,0,0,-0.8,0,3,3,1,1,2,0,1.66666666666667,0.455555555555556,0,1,3,0,1,0.6,0.8,1,2,0,-2,0,-1,-1,1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,C,B,B,D,Male,0,High School (or equivalent),HS_TS,19,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,8,5,2,3,4,1,1,3,6,7,4,5,2,4,5,8,2,3,6,7,1,1,7,8,5,6,4,3,2,1,2,4,5,3,6,7,7,5,6,8,2,4,3,1,4,2,7,9,3,5,8,1,6,2,3,4,1,2,0,1,1 +506,107.128.1.97,R_3YbyCqCezhR7avL,self,02PVF,past,5,2,7,2,4,2,3,4,8,7,4,6,8,5,8,6,4,7,4,6,6,5,6,8,3,4,6,7,6,4,2,4,5,5,4,5,3,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,7,2,4,2,3,3.66666666666667,6,5,6,8,3,4,6,5.33333333333333,4,8,7,4,6,8,5.8,7,6,4,2,4,5,4.6,5,8,6,4,7,4,6,5.66666666666667,5,4,5,3,4,2,4,3.83333333333333,-1,-3,1,-6,1,-2,-3,-1.66666666666667,-3,2,3,2,2,3,1.2,0,4,1,1,3,2,2,1.83333333333333,0.455555555555555,0.666666666666667,1.375,3,0,1,1,1,2,2,1,-2,-1,-1,-2,0,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,College Diploma/Certificate,C_Ug,22,18 - 24,American,Female,1,,,1,,1,,3,1,8,2,6,7,4,5,6,4,7,1,5,3,2,2,3,5,6,8,1,4,7,1,4,7,8,3,2,6,5,4,5,1,2,3,7,6,4,2,7,5,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,8,3,6,7,5,4,1,2,2,4,3,1,2,1,1,2 +507,71.77.227.133,R_384eXA30yoaSBax,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,10,0,2,7,7,6,7,5,7,6,4,7,7,3,2,3,0,8,7,4,8,0,2,5,6,5,7,7,4,4,6,7,7,3,3,3,1,6,5,7,20+,2,10,0,2,7,7,6,7,5.33333333333333,8,0,2,5,6,5,7,4.33333333333333,5,7,6,4,7,7,5.8,7,4,4,6,7,7,5.6,3,2,3,0,8,7,4,3.83333333333333,3,3,3,1,6,5,7,3.5,2,0,0,2,1,1,0,1,-2,3,2,-2,0,0,0.2,0,-1,0,-1,2,2,-3,0.333333333333333,0.511111111111111,-1,1,3,0,0.6,0.6,0.6,0,1,2,-2,0,-2,-2,-1,5 cents,5 minutes,47 days,5,10,It's impossible to tell,53,Sunday,D,B,D,B,D,Female,1,High School (or equivalent),HS_TS,24,18 - 24,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,8,4,5,7,2,1,1,3,2,7,6,5,4,7,2,8,6,5,3,4,1,1,2,8,6,5,3,7,4,1,3,5,2,6,4,7,3,5,4,8,2,6,7,1,8,6,9,7,4,3,5,1,2,3,2,4,1,2,0,2,2 +508,70.52.48.57,R_7k6d4hvNQj4iQVs,self,02PVF,past,10,10,2,8,2,6,2,6,7,10,0,4,10,10,4,8,3,8,6,10,2,3,6,4,6,1,1,2,0,3,6,5,5,8,8,2,2,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10,2,8,2,6,2,6.33333333333333,2,3,6,4,6,1,1,3.66666666666667,6,7,10,0,4,10,5.4,2,0,3,6,5,5,3.2,10,4,8,3,8,6,10,6.5,8,8,2,2,3,5,1,4.66666666666667,8,7,-4,4,-4,5,1,2.66666666666667,4,7,7,-6,-1,5,2.2,2,-4,6,1,5,1,9,1.83333333333333,2.23333333333333,5,1.625,3,0,0.8,0.2,0.5,2,2,2,-2,1,-2,-2,2,5 cents,5 minutes,47 days,5,8,Richard is taller than Matt,47,Sunday,D,F,D,C,A,Male,0,College Diploma/Certificate,C_Ug,23,18 - 24,Canadian,Male,1,,,1,,1,,2,1,8,4,7,5,3,6,6,5,7,1,2,4,3,5,6,7,2,8,1,3,4,1,2,3,8,4,7,5,6,2,3,1,4,6,7,5,7,4,6,5,2,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,3,5,9,6,1,2,2,3,4,1,2,-1,2,2 +509,99.234.132.15,R_1BnOKkJOdoUhbOh,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",16,Like a great deal,5,3,4,3,7,6,4,4,6,8,7,7,3,4,3,3,7,3,5,5,2,3,2,2,3,3,2,3,4,4,3,4,4,3,4,3,2,3,2,4,15-19,2,5,3,4,3,7,6,4,4.66666666666667,2,3,2,2,3,3,2,2.5,4,6,8,7,7,3,6.4,3,4,4,3,4,4,3.6,4,3,3,7,3,5,5,4.16666666666667,3,4,3,2,3,2,4,2.83333333333333,3,0,2,1,4,3,2,2.16666666666667,1,2,4,4,3,-1,2.8,1,-1,0,5,0,3,1,1.33333333333333,2.1,0.666666666666667,1.75,3,0,0.8,1,0.9,2,2,2,-2,0,-2,-2,2,5 cents,5 minutes,47 days,5,8,Richard is shorter than Matt,47,Sunday,D,E,B,B,D,Male,0,Professional Degree (ex. JD/MD),grad_prof,24,18 - 24,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,8,2,7,6,5,1,1,4,5,7,6,2,3,4,2,8,3,6,7,5,1,1,7,8,2,6,5,3,4,1,6,3,2,4,5,7,3,5,2,8,4,6,7,1,9,4,3,6,2,5,7,1,8,4,3,2,1,2,0,2,2 +510,76.23.57.88,R_7i56aBpzWrpm4XA,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",6,Like a great deal,0,0,1,0,1,2,2,0,1,2,1,2,0,0,2,0,1,2,0,3,3,1,2,3,1,1,1,1,1,1,1,3,1,0,0,1,0,0,1,0,5-9,2,0,0,1,0,1,2,2,0.666666666666667,3,1,2,3,1,1,1,1.83333333333333,0,1,2,1,2,0,1.2,1,1,1,1,3,1,1.4,0,2,0,1,2,0,3,0.833333333333333,0,0,1,0,0,1,0,0.333333333333333,-3,-1,-1,-3,0,1,1,-1.16666666666667,-1,0,1,0,-1,-1,-0.2,0,2,-1,1,2,-1,3,0.5,-0.288888888888889,1,-0.25,0,3,1,0.6,0.8,0,0,-1,1,0,-1,1,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,B,B,B,Male,0,High School (or equivalent),HS_TS,23,18 - 24,American,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,8,6,4,2,5,1,1,2,5,7,4,6,3,4,6,8,5,7,2,3,1,1,7,8,6,3,5,2,4,1,4,3,5,2,6,7,6,2,3,8,7,5,4,1,7,3,6,2,4,8,9,1,5,3,2,4,1,-1,0,1,-1 +511,68.146.63.119,R_5GPopW1GUWqxqFT,self,03VFP,past,6,3,4,5,1,1,5,4,4,5,2,6,4,1,6,5,1,2,2,4,1,1,3,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,4,5,1,1,5,3.33333333333333,1,1,3,1,1,1,1,1.33333333333333,4,4,5,2,6,4,4.2,1,1,2,1,1,1,1.2,1,6,5,1,2,2,4,2.83333333333333,1,1,1,1,1,1,1,1,5,2,1,4,0,0,4,2,3,3,3,1,5,3,3,0,5,4,0,1,1,3,1.83333333333333,2.27777777777778,3.33333333333333,0.875,1,2,1,1,1,1,1,1,-2,1,-1,-2,0,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,B,B,D,Female,1,High School (or equivalent),HS_TS,22,18 - 24,Canadian,Female,1,,,,1,1,,3,1,8,7,5,4,2,6,4,6,7,1,2,5,3,3,6,7,4,8,1,5,2,1,5,4,8,6,2,7,3,3,2,1,6,4,7,5,7,5,4,2,6,1,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,4,2,5,6,9,1,8,2,4,3,1,2,-1,1,2 +512,184.163.42.151,R_6HHLGnX0FHnCggg,self,03VFP,past,8,3,4,3,6,7,7,8,7,2,3,5,3,3,7,5,8,5,8,4,4,7,4,4,7,7,8,6,4,7,8,3,4,7,4,4,8,4,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,3,4,3,6,7,7,5.16666666666667,4,7,4,4,7,7,8,5.5,8,7,2,3,5,3,5,6,4,7,8,3,4,5.6,3,7,5,8,5,8,4,6,7,4,4,8,4,8,4,5.83333333333333,4,-4,0,-1,-1,0,-1,-0.333333333333333,2,3,-5,-5,2,-1,-0.6,-4,3,1,0,1,0,0,0.166666666666667,-0.255555555555556,-0.666666666666667,0.125,3,0,1,0.4,0.7,-2,1,1,-1,-2,1,0,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,E,B,B,B,B,Prefer not to say,2,Trade School,HS_TS,21,18 - 24,Canadian,Prefer not to say,1,,,,1,1,,4,1,8,7,5,3,2,6,4,5,7,1,6,3,2,7,4,5,6,8,1,3,2,1,5,4,8,2,7,3,6,3,6,1,2,5,7,4,7,3,4,2,6,1,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,8,3,5,4,9,1,7,3,4,2,1,1,2,-1,0 +513,72.28.228.98,R_3xGSbiotlAQC4BX,other,03VFP,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,6,6,7,4,5,7,5,8,6,6,5,6,5,6,5,4,7,7,5,5,6,6,7,6,9,5,8,5,9,5,7,8,7,9,7,7,5,5,5,8,10-14,2,6,6,7,4,5,7,5,5.83333333333333,6,6,7,6,9,5,8,6.5,8,6,6,5,6,5,6.2,5,9,5,7,8,7,6.8,6,5,4,7,7,5,5,5.66666666666667,9,7,7,5,5,5,8,6.33333333333333,0,0,0,-2,-4,2,-3,-0.666666666666667,3,-3,1,-2,-2,-2,-0.6,-3,-2,-3,2,2,0,-3,-0.666666666666667,-0.644444444444444,-2.66666666666667,0.125,0,3,0.8,0.4,0.6,1,0,1,-2,1,2,0,0,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Saturday,D,E,E,A,B,Female,1,High School (or equivalent),HS_TS,23,18 - 24,American,Female,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,8,4,7,2,3,1,1,3,6,7,4,5,2,6,5,8,7,3,2,4,1,1,4,8,3,2,7,5,6,1,2,6,5,4,3,7,5,7,3,8,4,6,2,1,2,8,4,5,7,9,3,1,6,2,3,4,1,2,-1,-2,0 +514,64.58.206.255,R_1rTUUHS801BV2kp,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",20+,Like a great deal,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,5,6,6,6,6,7,7,6,7,7,7,7,20+,2,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,5.83333333333333,6,6,6,5,6,6,5.8,6,5,6,6,6,6,5.8,6,6,6,6,6,6,6,6,7,7,6,7,7,7,7,6.83333333333333,0,0,0,1,0,0,0,0.166666666666667,0,1,0,-1,0,0,0,-1,-1,0,-1,-1,-1,-1,-0.833333333333333,-0.222222222222222,-0.333333333333333,0,1,2,1,0.2,0.6,1,1,0,1,1,1,0,1,10 cents,5 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,D,C,C,B,Female,1,High School (or equivalent),HS_TS,20,18 - 24,American,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,8,5,7,3,4,1,1,2,5,7,3,4,6,5,4,8,6,2,3,7,1,1,7,8,2,3,5,4,6,1,2,6,3,5,4,7,7,5,3,8,6,4,2,1,3,7,8,6,2,5,4,1,9,2,4,3,1,-1,-1,-1,0 +515,98.16.11.118,R_73unDbcTsqFJ18R,other,02PVF,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,6,5,5,7,3,6,7,3,6,6,3,3,5,6,5,7,3,6,7,7,5,3,3,8,1,6,3,3,2,3,5,4,4,2,2,3,4,3,3,4,5-9,2,6,5,5,7,3,6,7,5.33333333333333,5,3,3,8,1,6,3,4.33333333333333,3,6,6,3,3,5,4.2,3,2,3,5,4,4,3.4,6,5,7,3,6,7,7,5.66666666666667,2,2,3,4,3,3,4,2.83333333333333,1,2,2,-1,2,0,4,1,0,4,3,-2,-1,1,0.8,4,3,4,-1,3,4,3,2.83333333333333,1.54444444444444,2.66666666666667,0.5,1,2,0.6,0.2,0.4,1,1,1,-1,0,0,0,0,10 cents,100 minutes,47 days,5,7,Richard is taller than Matt,47,Sunday,D,C,C,C,C,Male,0,High School (or equivalent),HS_TS,21,18 - 24,American,Male,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,8,2,3,7,6,1,1,2,3,7,4,6,5,6,4,8,2,3,7,5,1,1,4,8,2,6,5,3,7,1,5,2,6,4,3,7,3,2,5,8,7,4,6,1,7,2,4,9,6,8,5,1,3,2,3,4,1,1,0,0,0 +516,207.195.120.248,R_74eo3DDGJqiwaVW,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",7,Like a great deal,4,3,3,1,7,3,1,1,5,3,4,10,2,3,4,8,7,8,8,3,4,5,2,2,6,2,4,2,3,6,2,3,3,2,3,1,2,6,3,3,5-9,2,4,3,3,1,7,3,1,3.5,4,5,2,2,6,2,4,3.5,1,5,3,4,10,2,4.6,2,3,6,2,3,3,3.2,3,4,8,7,8,8,3,6.33333333333333,2,3,1,2,6,3,3,2.83333333333333,0,-2,1,-1,1,1,-3,0,-1,2,-3,2,7,-1,1.4,1,1,7,5,2,5,0,3.5,1.63333333333333,-1.33333333333333,1.125,0,3,0.4,0.2,0.3,1,2,2,-2,2,-1,-2,1,10 cents,100 minutes,24 days,5,11,It's impossible to tell,57,Monday,D,B,A,F,B,Female,1,High School (or equivalent),HS_TS,21,18 - 24,Canadian,Female,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,8,2,6,5,3,1,1,5,4,7,3,2,6,6,7,8,4,5,3,2,1,1,5,8,7,3,4,2,6,1,2,3,5,6,4,7,4,3,5,8,2,7,6,1,6,4,7,9,2,5,3,1,8,4,2,3,1,2,-2,1,2 +517,66.244.237.35,R_5kLZMR15dZhxr8v,self,02PVF,past,6,6,7,6,5,8,8,7,6,6,7,7,7,6,6,4,7,4,6,6,7,7,6,7,6,6,7,6,6,7,7,5,8,7,7,6,6,5,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,8,8,6.33333333333333,7,7,6,7,6,6,7,6.5,7,6,6,7,7,7,6.6,6,6,7,7,5,8,6.2,6,6,4,7,4,6,6,5.5,7,7,6,6,5,6,6,6.16666666666667,-1,-1,1,-1,-1,2,1,-0.166666666666667,1,0,-1,0,2,-1,0.4,-1,-1,-2,1,-1,0,0,-0.666666666666667,-0.144444444444444,0,0,0,3,1,0.4,0.7,0,1,1,0,1,1,1,1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,F,B,B,B,B,Male,0,High School (or equivalent),HS_TS,22,18 - 24,Canadian,Male,1,,,1,,1,,6,1,8,5,2,7,3,4,2,4,7,1,3,6,5,3,6,5,4,8,1,2,7,1,5,7,8,2,4,6,3,6,4,1,3,5,7,2,2,5,6,4,3,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,9,8,5,4,7,1,6,4,2,3,1,0,-1,-1,-1 +518,65.94.203.5,R_5jJkwF9IX92fxc8,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",8,Like a great deal,2,3,6,2,4,1,4,5,3,1,2,2,3,5,2,3,2,1,2,3,3,3,7,6,5,2,2,7,1,2,1,2,2,6,3,1,2,1,5,1,5-9,2,2,3,6,2,4,1,4,3,3,3,7,6,5,2,2,4.33333333333333,5,3,1,2,2,3,2.6,7,1,2,1,2,2,2.6,5,2,3,2,1,2,3,2.5,6,3,1,2,1,5,1,3,-1,0,-1,-4,-1,-1,2,-1.33333333333333,-2,2,-1,1,0,1,0,-1,-1,2,0,0,-3,2,-0.5,-0.611111111111111,1.66666666666667,0.625,0,3,1,0.4,0.7,1,1,1,-1,0,-1,-1,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,D,E,F,C,C,Female,1,University - Graduate (Masters),grad_prof,23,18 - 24,Canadian,Female,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,8,4,6,2,7,1,1,5,6,7,4,2,3,7,2,8,6,5,3,4,1,1,7,8,2,3,5,4,6,1,3,4,5,6,2,7,7,5,6,8,4,2,3,1,7,2,9,3,5,8,4,1,6,2,4,3,1,1,0,1,1 +519,198.166.98.254,R_5bD7Asfr8Y3iTxn,self,03VFP,past,4,8,9,6,3,8,5,5,5,3,2,7,4,1,4,2,6,1,7,3,5,8,8,4,4,5,5,4,7,7,3,3,4,6,6,2,3,1,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,9,6,3,8,5,6.33333333333333,5,8,8,4,4,5,5,5.66666666666667,5,5,3,2,7,4,4.4,4,7,7,3,3,4,4.8,1,4,2,6,1,7,3,3.5,6,6,2,3,1,4,5,3.66666666666667,-1,0,1,2,-1,3,0,0.666666666666667,1,-2,-4,-1,4,0,-0.4,-5,-2,0,3,0,3,-2,-0.166666666666667,0.0333333333333333,-0.666666666666667,0.5,0,3,1,0.6,0.8,1,0,1,-2,1,-1,-1,-1,10 cents,100 minutes,24 days,5,8,It's impossible to tell,47,Sunday,E,E,D,B,D,Female,1,High School (or equivalent),HS_TS,19,18 - 24,Canadian,Female,1,,,,1,1,,2,1,8,6,3,4,7,5,5,6,7,1,3,2,4,6,3,4,5,8,1,7,2,1,5,2,8,4,6,7,3,3,6,1,2,4,7,5,6,5,3,4,2,1,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,4,7,8,3,9,1,2,3,4,2,1,2,-1,1,1 +520,134.117.249.49,R_6dLLEenjojAooZU,other,03VFP,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,3,5,6,4,4,4,4,6,3,3,5,6,4,2,7,3,4,3,7,9,4,3,8,2,4,7,5,7,6,5,5,3,4,7,7,8,5,3,5,2,10-14,2,3,5,6,4,4,4,4,4.33333333333333,4,3,8,2,4,7,5,4.66666666666667,6,3,3,5,6,4,4.6,7,6,5,5,3,4,5.2,2,7,3,4,3,7,9,4.33333333333333,7,7,8,5,3,5,2,5.83333333333333,-1,2,-2,2,0,-3,-1,-0.333333333333333,-1,-3,-2,0,3,0,-0.6,-5,0,-5,-1,0,2,7,-1.5,-0.811111111111111,2,0.875,3,0,1,0.4,0.7,0,1,2,-2,-1,-1,-1,-1,5 cents,5 minutes,47 days,5,8,It's impossible to tell,47,Sunday,A,E,B,A,C,Male,0,University - Undergraduate,C_Ug,35,32 - 38,Canadian,Male,,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,8,7,6,3,5,1,1,2,6,7,4,5,3,2,6,8,4,3,5,7,1,1,4,8,5,3,6,2,7,1,5,2,6,3,4,7,7,4,6,8,5,2,3,1,5,9,2,6,7,3,8,1,4,2,3,4,1,2,1,1,1 +521,96.21.170.141,R_1ls22RL71rJCWIr,other,02PVF,past,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",10,Like a great deal,7,8,6,7,10,8,5,6,7,5,4,7,7,6,5,6,6,6,5,5,10,10,5,10,10,3,3,5,7,6,5,6,6,4,4,6,3,7,1,9,10-14,2,7,8,6,7,10,8,5,7.66666666666667,10,10,5,10,10,3,3,8,6,7,5,4,7,7,5.8,5,7,6,5,6,6,5.8,6,5,6,6,6,5,5,5.66666666666667,4,4,6,3,7,1,9,4.16666666666667,-3,-2,1,-3,0,5,2,-0.333333333333333,1,0,-1,-1,1,1,0,2,1,0,3,-1,4,-4,1.5,0.388888888888889,-0.333333333333333,-0.25,0,2,0.8,0.2,0.5,0,0,1,0,1,1,0,-1,10 cents,25 minutes,24 days,5,8,Richard is shorter than Matt,47,Sunday,B,C,D,C,D,Male,0,High School (or equivalent),HS_TS,24,18 - 24,Canadian,Male,,1,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,8,3,2,6,4,1,1,4,3,7,5,2,6,4,3,8,6,2,5,7,1,1,6,8,4,2,5,3,7,1,3,2,4,5,6,7,4,5,7,8,3,6,2,1,4,9,7,3,8,5,6,1,2,2,3,4,1,0,-1,-1,0 +522,198.52.132.28,R_1NIgjJZ3DsPMFmq,other,01FPV,future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Yes, there is a person that I know very well and can speak to their preferences, personality, and values.",14,Like a great deal,9,2,6,3,7,8,2,6,5,2,3,7,8,3,7,4,8,2,5,5,8,7,6,9,4,4,8,1,2,4,5,8,3,6,6,6,5,4,2,3,10-14,2,9,2,6,3,7,8,2,5.83333333333333,8,7,6,9,4,4,8,6.33333333333333,6,5,2,3,7,8,4.6,1,2,4,5,8,3,4,3,7,4,8,2,5,5,4.83333333333333,6,6,6,5,4,2,3,4.83333333333333,1,-5,0,-6,3,4,-6,-0.5,5,3,-2,-2,-1,5,0.6,-3,1,-2,3,-2,3,2,0,0.0333333333333333,0.333333333333333,-0.25,0,3,0.4,0,0.2,1,-1,0,1,2,-1,1,1,10 cents,100 minutes,24 days,4,11,It's impossible to tell,57,Sunday,A,A,A,A,C,Male,0,High School (or equivalent),HS_TS,23,18 - 24,Canadian,Male,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,8,7,4,3,6,1,1,3,2,7,6,4,5,3,5,8,4,6,7,2,1,1,7,8,6,5,3,2,4,1,2,5,3,6,4,7,7,2,6,8,5,3,4,1,3,7,2,9,4,5,8,1,6,2,4,3,1,-1,-2,1,-1 -- 2.49.1